From d745fbdde437061be734ec496f32bd0f99623dac Mon Sep 17 00:00:00 2001 From: Daniel K Date: Mon, 30 Sep 2024 14:15:56 -0700 Subject: [PATCH] feat: Consolidate Easyship integration with live tests --- .../easyship/karrio/mappers/easyship/proxy.py | 48 +- .../karrio/providers/easyship/rate.py | 36 +- .../providers/easyship/shipment/create.py | 76 +- .../karrio/providers/easyship/units.py | 42 +- .../karrio/schemas/easyship/rate_request.py | 1 + .../easyship/schemas/rate_request.json | 3 +- .../easyship/tests/easyship/test_rate.py | 1141 +- .../easyship/tests/easyship/test_shipment.py | 4 + packages/types/graphql/types.ts | 8 + packages/types/rest/api.ts | 105 +- packages/types/rest/base.ts | 4 +- packages/types/rest/common.ts | 4 +- packages/types/rest/configuration.ts | 4 +- packages/types/rest/index.ts | 4 +- schemas/graphql.json | 17091 ++++------------ schemas/openapi.yml | 716 +- 16 files changed, 5342 insertions(+), 13945 deletions(-) diff --git a/modules/connectors/easyship/karrio/mappers/easyship/proxy.py b/modules/connectors/easyship/karrio/mappers/easyship/proxy.py index 22b8702cc..04edd41b7 100644 --- a/modules/connectors/easyship/karrio/mappers/easyship/proxy.py +++ b/modules/connectors/easyship/karrio/mappers/easyship/proxy.py @@ -14,7 +14,11 @@ def get_rates(self, request: lib.Serializable) -> lib.Deserializable[str]: data=lib.to_json(request.serialize()), trace=self.trace_as("json"), method="POST", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "Content-Type": "application/json", + "user-agent": "app/1.0", + }, ) return lib.Deserializable(response, lib.to_dict) @@ -26,7 +30,11 @@ def create_shipment(self, request: lib.Serializable) -> lib.Deserializable[str]: data=lib.to_json(request.serialize()), trace=self.trace_as("json"), method="POST", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "Content-Type": "application/json", + "user-agent": "app/1.0", + }, ) return lib.Deserializable(response, lib.to_dict, request.ctx) @@ -37,7 +45,11 @@ def cancel_shipment(self, request: lib.Serializable) -> lib.Deserializable[str]: url=f"{self.settings.server_url}/2023-01/shipments/{easyship_shipment_id}/cancel", trace=self.trace_as("json"), method="POST", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "Content-Type": "application/json", + "user-agent": "app/1.0", + }, ) return lib.Deserializable(response, lib.to_dict) @@ -50,7 +62,11 @@ def get_tracking(self, request: lib.Serializable) -> lib.Deserializable[str]: url=f"{self.settings.server_url}/2023-01/shipments/{easyship_shipment_id}", trace=self.trace_as("json"), method="GET", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "Content-Type": "application/json", + "user-agent": "app/1.0", + }, ), ), request.serialize(), @@ -67,7 +83,11 @@ def schedule_pickup(self, request: lib.Serializable) -> lib.Deserializable[str]: data=lib.to_json(request.serialize()), trace=self.trace_as("json"), method="POST", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "Content-Type": "application/json", + "user-agent": "app/1.0", + }, ) return lib.Deserializable(response, lib.to_dict) @@ -86,7 +106,11 @@ def cancel_pickup(self, request: lib.Serializable) -> lib.Deserializable[str]: url=f"{self.settings.server_url}/2023-01/pickups/{easyship_pickup_id}/cancel", trace=self.trace_as("json"), method="POST", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "Content-Type": "application/json", + "user-agent": "app/1.0", + }, ) return lib.Deserializable(response, lib.to_dict) @@ -99,7 +123,11 @@ def create_manifest(self, request: lib.Serializable) -> lib.Deserializable[str]: data=lib.to_json(request.serialize()), trace=self.trace_as("json"), method="POST", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "Content-Type": "application/json", + "user-agent": "app/1.0", + }, ) ) @@ -114,7 +142,11 @@ def create_manifest(self, request: lib.Serializable) -> lib.Deserializable[str]: else lib.request( url=manifest_url, method="GET", - headers={"Authorization": f"Bearer {self.settings.access_token}"}, + headers={ + "Authorization": f"Bearer {self.settings.access_token}", + "origin": "http://localhost:5002", + "user-agent": "app/1.0", + }, decoder=lib.encode_base64, ) ) diff --git a/modules/connectors/easyship/karrio/providers/easyship/rate.py b/modules/connectors/easyship/karrio/providers/easyship/rate.py index 30bd2a440..8060fce92 100644 --- a/modules/connectors/easyship/karrio/providers/easyship/rate.py +++ b/modules/connectors/easyship/karrio/providers/easyship/rate.py @@ -29,8 +29,9 @@ def _extract_details( settings: provider_utils.Settings, ) -> models.RateDetails: details = lib.to_object(rating.RateType, data) - service = provider_units.ShippingService.map(details.courier_id) - courier = provider_units.ShippingCourierID.map(details.courier_id) + service = provider_units.ShippingServiceID.map(details.courier_id) + courier = provider_units.ShippingCourierID.find(service.value_or_key) + charges = [ ("Shipment Charge", details.shipment_charge), ("Insurance", details.insurance_fee), @@ -51,7 +52,7 @@ def _extract_details( return models.RateDetails( carrier_id=settings.carrier_id, carrier_name=settings.carrier_name, - service=service.name_or_key, + service=service.value_or_key, total_charge=lib.to_money(details.total_charge), currency=details.currency, transit_days=details.max_delivery_time, @@ -65,10 +66,10 @@ def _extract_details( if amount is not None ], meta=dict( - rate_provider=courier.name, + rate_provider=courier.name_or_key, easyship_incoterms=details.incoterms, easyship_courier_id=details.courier_id, - service_name=service.name or details.courier_name, + service_name=service.value or details.courier_name, available_handover_options=details.available_handover_options, value_for_money_rank=details.value_for_money_rank, tracking_rating=details.tracking_rating, @@ -167,17 +168,34 @@ def rate_request( "contains_battery_pi967" ), contains_liquids=item.metadata.get("contains_liquids"), - declared_currency=item.value_currency or options.currency.state, + declared_currency=lib.identity( + item.value_currency or options.currency.state or "USD" + ), dimensions=None, origin_country_alpha2=item.origin_country, quantity=item.quantity, actual_weight=item.weight, category=item.category, declared_customs_value=item.value_amount, - description=item.description or item.title, - sku=item.sku, + description=item.description or item.title or "N/A", + sku=item.sku or "N/A", + hs_code=item.hs_code or "N/A", + ) + for item in lib.identity( + package.items + if any(package.items) + else [ + models.Commodity( + title=lib.text(package.description, max=35), + description=package.description, + quantity=1, + hs_code="N/A", + value_amount=1.0, + value_currency=options.currency.state or "USD", + category="bags_luggages", + ) + ] ) - for item in package.items ], total_actual_weight=package.weight.value, ) diff --git a/modules/connectors/easyship/karrio/providers/easyship/shipment/create.py b/modules/connectors/easyship/karrio/providers/easyship/shipment/create.py index 7b24b7e81..32dc5277d 100644 --- a/modules/connectors/easyship/karrio/providers/easyship/shipment/create.py +++ b/modules/connectors/easyship/karrio/providers/easyship/shipment/create.py @@ -52,6 +52,8 @@ def _extract_details( docs=models.Documents(label=label), meta=dict( tracking_numbers=tracking_numbers, + rate_provider=ctx["rate_provider"], + easyship_courier_id=ctx["courier_id"], easyship_shipment_id=details.easyship_shipment_id, easyship_courier_account_id=details.courier.id, ), @@ -67,13 +69,16 @@ def shipment_request( return_address = lib.to_address(payload.return_address or payload.shipper) packages = lib.to_packages(payload.parcels, options=payload.options) weight_unit, dimension_unit = packages.compatible_units - service = provider_units.ShippingService.map(payload.service).name_or_key - courrier_id = provider_units.ShippingServiceID.map(service).value_or_key options = lib.to_shipping_options( payload.options, package_options=packages.options, initializer=provider_units.shipping_options_initializer, ) + service = lib.identity( + options.easyship_courier_id.state + or provider_units.ShippingServiceID.map(payload.service).name_or_key + ) + courier = provider_units.ShippingCourierID.find(service) customs = lib.to_customs_info( payload.customs, shipper=payload.shipper, @@ -81,7 +86,7 @@ def shipment_request( weight_unit=weight_unit.name, ) incoterms = lib.identity( - options.easyship_incoterms.state or customs.options.incoterm + options.easyship_incoterms.state or customs.options.incoterm.state or "DDU" ) label_type = provider_units.LabelFormat.map(payload.label_type) @@ -116,14 +121,18 @@ def shipment_request( if options.easyship_list_unavailable_couriers.state is not None else False ), - selected_courier_id=courrier_id, + selected_courier_id=service, ), destination_address=easyship.AddressType( city=recipient.city, - company_name=recipient.company_name, - contact_email=recipient.email, + company_name=recipient.company_name or "N/A", + contact_email=lib.identity( + recipient.email + or options.email_notification_to.state + or "user@mail.com" + ), contact_name=recipient.person_name, - contact_phone=recipient.phone_number, + contact_phone=recipient.phone_number or "N/A", country_alpha2=recipient.country_code, line_1=recipient.address_line1, line_2=recipient.address_line2, @@ -140,10 +149,14 @@ def shipment_request( order_data=None, origin_address=easyship.AddressType( city=return_address.city, - company_name=return_address.company_name, - contact_email=return_address.email, + company_name=return_address.company_name or "N/A", + contact_email=lib.identity( + return_address.email + or options.email_notification_to.state + or "user@mail.com" + ), contact_name=return_address.person_name, - contact_phone=return_address.phone_number, + contact_phone=return_address.phone_number or "N/A", country_alpha2=return_address.country_code, line_1=return_address.address_line1, line_2=return_address.address_line2, @@ -168,10 +181,14 @@ def shipment_request( shipment_request_return=options.is_return.state, return_address=easyship.AddressType( city=return_address.city, - company_name=return_address.company_name, - contact_email=return_address.email, + company_name=return_address.company_name or "N/A", + contact_email=lib.identity( + return_address.email + or options.email_notification_to.state + or "user@mail.com" + ), contact_name=return_address.person_name, - contact_phone=return_address.phone_number, + contact_phone=return_address.phone_number or "N/A", country_alpha2=return_address.country_code, line_1=return_address.address_line1, line_2=return_address.address_line2, @@ -181,10 +198,12 @@ def shipment_request( return_address_id=options.easyship_return_address_id.state, sender_address=easyship.AddressType( city=shipper.city, - company_name=shipper.company_name, - contact_email=shipper.email, + company_name=shipper.company_name or "N/A", + contact_email=lib.identity( + shipper.email or options.email_notification_to.state or "user@mail.com" + ), contact_name=shipper.person_name, - contact_phone=shipper.phone_number, + contact_phone=shipper.phone_number or "N/A", country_alpha2=shipper.country_code, line_1=shipper.address_line1, line_2=shipper.address_line2, @@ -233,15 +252,17 @@ def shipment_request( items=[ easyship.ItemType( dimensions=None, - declared_currency=item.value_currency or options.currency.state, + declared_currency=lib.identity( + item.value_currency or options.currency.state or "USD" + ), origin_country_alpha2=item.origin_country, quantity=item.quantity, actual_weight=item.weight, - category=item.category, + category=item.category or "bags_luggages", declared_customs_value=item.value_amount, - description=item.description or item.title, + description=item.description or item.title or "Item", sku=item.sku, - hs_code=item.hs_code, + hs_code=item.hs_code or "N/A", contains_liquids=item.metadata.get("contains_liquids"), contains_battery_pi966=item.metadata.get( "contains_battery_pi966" @@ -250,7 +271,17 @@ def shipment_request( "contains_battery_pi967" ), ) - for item in package.items + for item in lib.identity( + (package.items if any(package.items) else customs.commodities) + if any(package.items) or any(payload.customs or "") + else [ + models.Commodity( + title=lib.text(package.description, max=35), + quantity=1, + value_amount=1.0, + ) + ] + ) ], total_actual_weight=package.weight.value, ) @@ -264,7 +295,8 @@ def shipment_request( lib.to_json(_).replace("shipment_request_return", "return") ), ctx=dict( - courier_id=courrier_id, + courier_id=service, + rate_provider=courier.name, label_type=label_type.name or "PDF", ), ) diff --git a/modules/connectors/easyship/karrio/providers/easyship/units.py b/modules/connectors/easyship/karrio/providers/easyship/units.py index cb4f8610e..461bb6136 100644 --- a/modules/connectors/easyship/karrio/providers/easyship/units.py +++ b/modules/connectors/easyship/karrio/providers/easyship/units.py @@ -5,6 +5,10 @@ METADATA_JSON = lib.load_json(pathlib.Path(__file__).resolve().parent / "metadata.json") EASYSHIP_CARRIER_METADATA = [_ for sublist in METADATA_JSON for _ in sublist] +KARRIO_CARRIER_MAPPING = { + "canada_post": "canadapost", + "dhl": "dhl_express", +} class LabelFormat(lib.StrEnum): @@ -103,11 +107,33 @@ class TrackingStatus(lib.Enum): def to_service_code(service: typing.Dict[str, str]) -> str: - return f'easyship_{service["umbrella_name"].lower()}_{lib.to_snake_case(service["service_name"])}' + return lib.to_slug( + f'easyship_{to_carrier_code(service)}_{lib.to_snake_case(service["service_name"])}' + ) -def get_easyship_service_id(service: str) -> str: - return ShippingService[f"easyship_{service}"] +def to_carrier_code(service: typing.Dict[str, str]) -> str: + code = lib.to_slug(service["umbrella_name"]) + return KARRIO_CARRIER_MAPPING.get(code, code) + + +def find_courier(search: str): + courier = next( + ( + item + for item in EASYSHIP_CARRIER_METADATA + if item["name"] == search + or item["id"] == search + or item["umbrella_name"] == search + or to_service_code(item) == search + or to_carrier_code(item) == search + ), + {}, + ) + if courier: + return ShippingCourierID.map(to_carrier_code(courier)) + + return ShippingCourierID.map(search) ShippingService = lib.StrEnum( @@ -120,13 +146,17 @@ def get_easyship_service_id(service: str) -> str: ShippingServiceID = lib.StrEnum( "ShippingServiceID", - {to_service_code(service): service["id"] for service in EASYSHIP_CARRIER_METADATA}, + {service["id"]: to_service_code(service) for service in EASYSHIP_CARRIER_METADATA}, ) ShippingCourierID = lib.StrEnum( "ShippingCourierID", { - lib.to_slug(name): name - for name in list(set([_["umbrella_name"] for _ in EASYSHIP_CARRIER_METADATA])) + to_carrier_code(courier): courier["name"] + for courier in { + _["umbrella_name"]: _ for _ in EASYSHIP_CARRIER_METADATA + }.values() }, ) + +setattr(ShippingCourierID, "find", find_courier) diff --git a/modules/connectors/easyship/karrio/schemas/easyship/rate_request.py b/modules/connectors/easyship/karrio/schemas/easyship/rate_request.py index 3f43c746d..79127f84f 100644 --- a/modules/connectors/easyship/karrio/schemas/easyship/rate_request.py +++ b/modules/connectors/easyship/karrio/schemas/easyship/rate_request.py @@ -67,6 +67,7 @@ class ItemType: declared_customs_value: Optional[int] = None description: Optional[str] = None sku: Optional[str] = None + hs_code: Optional[str] = None @s(auto_attribs=True) diff --git a/modules/connectors/easyship/schemas/rate_request.json b/modules/connectors/easyship/schemas/rate_request.json index 884ced1e3..582e28d2d 100644 --- a/modules/connectors/easyship/schemas/rate_request.json +++ b/modules/connectors/easyship/schemas/rate_request.json @@ -67,7 +67,8 @@ "category": "fashion", "declared_customs_value": 20, "description": "item", - "sku": "sku" + "sku": "sku", + "hs_code": "sku" } ], "total_actual_weight": 1 diff --git a/modules/connectors/easyship/tests/easyship/test_rate.py b/modules/connectors/easyship/tests/easyship/test_rate.py index fddb74a41..5e6f8e46e 100644 --- a/modules/connectors/easyship/tests/easyship/test_rate.py +++ b/modules/connectors/easyship/tests/easyship/test_rate.py @@ -34,7 +34,6 @@ def test_parse_rate_response(self): parsed_response = ( karrio.Rating.fetch(self.RateRequest).from_(gateway).parse() ) - self.assertListEqual(lib.to_dict(parsed_response), ParsedRateResponse) @@ -109,7 +108,79 @@ def test_parse_rate_response(self): "carrier_name": "easyship", "currency": "USD", "extra_charges": [ - {"amount": 2.8, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 34.96, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 5.59, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff"], + "cost_rank": 2, + "delivery_time_rank": 6, + "easyship_courier_id": "4cf66d63-4e4a-456b-86c1-50964ad9f7b7", + "easyship_incoterms": "DDU", + "max_delivery_time": 3, + "min_delivery_time": 1, + "rate_provider": "fedex", + "service_name": "easyship_fedex_ground", + "tracking_rating": 3, + "value_for_money_rank": 1, + }, + "service": "easyship_fedex_ground", + "total_charge": 40.55, + "transit_days": 3, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 76.2, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 0.0, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 5, + "delivery_time_rank": 8, + "easyship_courier_id": "7505df80-af51-46a0-b2ee-ac9eacfcd3e4", + "easyship_incoterms": "DDU", + "max_delivery_time": 3, + "min_delivery_time": 1, + "rate_provider": "usps", + "service_name": "easyship_usps_priority_mail", + "tracking_rating": 2, + "value_for_money_rank": 2, + }, + "service": "easyship_usps_priority_mail", + "total_charge": 76.2, + "transit_days": 3, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 79.9, "currency": "USD", "name": "Shipment Charge"}, {"amount": 0.0, "currency": "USD", "name": "Insurance"}, {"amount": 0.0, "currency": "USD", "name": "Fuel Surcharge"}, {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, @@ -125,18 +196,163 @@ def test_parse_rate_response(self): ], "meta": { "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 6, + "delivery_time_rank": 7, + "easyship_courier_id": "137a79e8-ae1c-4369-9855-44cf8ff784c4", + "easyship_incoterms": "DDU", + "max_delivery_time": 3, + "min_delivery_time": 1, + "rate_provider": "usps", + "service_name": "easyship_usps_priority_mail_signature", + "tracking_rating": 2, + "value_for_money_rank": 3, + }, + "service": "easyship_usps_priority_mail_signature", + "total_charge": 79.9, + "transit_days": 3, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 26.29, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 0.0, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff"], "cost_rank": 1, - "delivery_time_rank": 1, - "easyship_courier_id": "64b5d8b2-4c60-4faf-bf1b-9f7b1b7ca1c8", + "delivery_time_rank": 10, + "easyship_courier_id": "eac604a4-34c9-41b6-b5b1-231fb785d071", + "easyship_incoterms": "DDU", + "max_delivery_time": 5, + "min_delivery_time": 2, + "rate_provider": "fedex", + "service_name": "easyship_fedex_smart_post", + "tracking_rating": 3, + "value_for_money_rank": 4, + }, + "service": "easyship_fedex_smart_post", + "total_charge": 26.29, + "transit_days": 5, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 48.56, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 0.0, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 3, + "delivery_time_rank": 12, + "easyship_courier_id": "c3e97b11-2842-44f1-84d1-afaa6b3f0a7c", + "easyship_incoterms": "DDU", + "max_delivery_time": 5, + "min_delivery_time": 2, + "rate_provider": "usps", + "service_name": "easyship_usps_ground_advantage", + "tracking_rating": 2, + "value_for_money_rank": 5, + }, + "service": "easyship_usps_ground_advantage", + "total_charge": 48.56, + "transit_days": 5, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 52.26, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 0.0, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 4, + "delivery_time_rank": 11, + "easyship_courier_id": "7a1424ff-0d4e-4d55-bdfe-e4c6661debbf", + "easyship_incoterms": "DDU", + "max_delivery_time": 5, + "min_delivery_time": 2, + "rate_provider": "usps", + "service_name": "easyship_usps_ground_advantage", + "tracking_rating": 2, + "value_for_money_rank": 6, + }, + "service": "easyship_usps_ground_advantage", + "total_charge": 52.26, + "transit_days": 5, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 91.69, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 0.0, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff"], + "cost_rank": 7, + "delivery_time_rank": 5, + "easyship_courier_id": "84135827-1538-4be2-b26e-afd8b3f3b4bd", "easyship_incoterms": "DDU", "max_delivery_time": 2, - "min_delivery_time": 1, - "service_name": "SF Express - Domestic", + "min_delivery_time": 2, + "rate_provider": "fedex", + "service_name": "easyship_fedex_2_day", "tracking_rating": 3, - "value_for_money_rank": 1, + "value_for_money_rank": 7, }, - "service": "64b5d8b2-4c60-4faf-bf1b-9f7b1b7ca1c8", - "total_charge": 2.8, + "service": "easyship_fedex_2_day", + "total_charge": 91.69, "transit_days": 2, }, { @@ -144,7 +360,7 @@ def test_parse_rate_response(self): "carrier_name": "easyship", "currency": "USD", "extra_charges": [ - {"amount": 9.56, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 180.55, "currency": "USD", "name": "Shipment Charge"}, {"amount": 0.0, "currency": "USD", "name": "Insurance"}, {"amount": 0.0, "currency": "USD", "name": "Fuel Surcharge"}, {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, @@ -158,21 +374,166 @@ def test_parse_rate_response(self): {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, {"amount": 0.0, "currency": "USD", "name": "Discount"}, ], + "meta": { + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 9, + "delivery_time_rank": 3, + "easyship_courier_id": "a623a62b-5631-4dce-ae15-bbcf89e49c52", + "easyship_incoterms": "DDU", + "max_delivery_time": 2, + "min_delivery_time": 1, + "rate_provider": "usps", + "service_name": "easyship_usps_priority_mail_express", + "tracking_rating": 2, + "value_for_money_rank": 8, + }, + "service": "easyship_usps_priority_mail_express", + "total_charge": 180.55, + "transit_days": 2, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 120.64, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 19.0, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], "meta": { "available_handover_options": ["dropoff"], - "cost_rank": 2, + "cost_rank": 8, + "delivery_time_rank": 9, + "easyship_courier_id": "a9e3f424-713c-4efa-b445-71cd60c88ccd", + "easyship_incoterms": "DDU", + "max_delivery_time": 3, + "min_delivery_time": 2, + "rate_provider": "fedex", + "service_name": "easyship_fedex_express_saver", + "tracking_rating": 3, + "value_for_money_rank": 9, + }, + "service": "easyship_fedex_express_saver", + "total_charge": 139.64, + "transit_days": 3, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 202.79, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 31.94, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff"], + "cost_rank": 11, "delivery_time_rank": 2, - "easyship_courier_id": "d6cfc6d2-3857-4f42-a2a4-9e10ac9766ac", + "easyship_courier_id": "de8835b8-17c5-4878-b636-9f9fdbab9265", + "easyship_incoterms": "DDU", + "max_delivery_time": 1, + "min_delivery_time": 1, + "rate_provider": "fedex", + "service_name": "easyship_fedex_standard_overnight", + "tracking_rating": 3, + "value_for_money_rank": 10, + }, + "service": "easyship_fedex_standard_overnight", + "total_charge": 234.73, + "transit_days": 1, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 210.72, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 33.19, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff"], + "cost_rank": 12, + "delivery_time_rank": 1, + "easyship_courier_id": "8fb58899-7c4d-43b3-be2c-ec4c2d3ba375", + "easyship_incoterms": "DDU", + "max_delivery_time": 1, + "min_delivery_time": 1, + "rate_provider": "fedex", + "service_name": "easyship_fedex_priority_overnight", + "tracking_rating": 3, + "value_for_money_rank": 11, + }, + "service": "easyship_fedex_priority_overnight", + "total_charge": 243.91, + "transit_days": 1, + }, + { + "carrier_id": "easyship", + "carrier_name": "easyship", + "currency": "USD", + "extra_charges": [ + {"amount": 170.04, "currency": "USD", "name": "Shipment Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Insurance"}, + {"amount": 26.78, "currency": "USD", "name": "Fuel Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Additional Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Duty Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Import Tax Charge"}, + {"amount": 0.0, "currency": "USD", "name": "Minimum Pickup Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Oversized Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Provincial Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Remote Area Surcharge"}, + {"amount": 0.0, "currency": "USD", "name": "Sales Tax"}, + {"amount": 0.0, "currency": "USD", "name": "Warehouse Handling Fee"}, + {"amount": 0.0, "currency": "USD", "name": "Discount"}, + ], + "meta": { + "available_handover_options": ["dropoff"], + "cost_rank": 10, + "delivery_time_rank": 4, + "easyship_courier_id": "5eee483f-1416-42bb-8f7d-3ad384f3ee36", "easyship_incoterms": "DDU", - "max_delivery_time": 10, + "max_delivery_time": 2, "min_delivery_time": 2, - "service_name": "HK Post - Local Parcel", - "tracking_rating": 1, - "value_for_money_rank": 2, + "rate_provider": "fedex", + "service_name": "easyship_fedex_2_day_a_m", + "tracking_rating": 3, + "value_for_money_rank": 12, }, - "service": "d6cfc6d2-3857-4f42-a2a4-9e10ac9766ac", - "total_charge": 9.56, - "transit_days": 10, + "service": "easyship_fedex_2_day_a_m", + "total_charge": 196.82, + "transit_days": 2, }, ], [], @@ -228,6 +589,7 @@ def test_parse_rate_response(self): "declared_customs_value": 20, "description": "item", "sku": "sku", + "hs_code": "N/A", } ], "total_actual_weight": 1.0, @@ -240,28 +602,484 @@ def test_parse_rate_response(self): "rates": [ { "additional_services_surcharge": 0, - "available_handover_options": [ - "dropoff", - "free_pickup" - ], + "available_handover_options": ["dropoff"], + "cost_rank": 2, + "courier_id": "4cf66d63-4e4a-456b-86c1-50964ad9f7b7", + "courier_logo_url": null, + "courier_name": "FedEx Ground®", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 6, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 5.59, + "full_description": "FedEx Ground® (1-3 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 3, + "min_delivery_time": 1, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 5.59, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 34.96, + "shipment_charge_total": 40.55, + "total_charge": 40.55, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 34.96, + "shipment_charge_total": 40.55, + "total_charge": 40.55, + "tracking_rating": 3, + "value_for_money_rank": 1, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 5, + "courier_id": "7505df80-af51-46a0-b2ee-ac9eacfcd3e4", + "courier_logo_url": null, + "courier_name": "USPS - Priority Mail", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 8, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "full_description": "USPS - Priority Mail (1-3 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 3, + "min_delivery_time": 1, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 76.2, + "shipment_charge_total": 76.2, + "total_charge": 76.2, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 76.2, + "shipment_charge_total": 76.2, + "total_charge": 76.2, + "tracking_rating": 2, + "value_for_money_rank": 2, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 6, + "courier_id": "137a79e8-ae1c-4369-9855-44cf8ff784c4", + "courier_logo_url": null, + "courier_name": "USPS - Priority Mail Signature", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 7, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "full_description": "USPS - Priority Mail Signature (1-3 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 3, + "min_delivery_time": 1, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 79.9, + "shipment_charge_total": 79.9, + "total_charge": 79.9, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 79.9, + "shipment_charge_total": 79.9, + "total_charge": 79.9, + "tracking_rating": 2, + "value_for_money_rank": 3, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff"], "cost_rank": 1, - "courier_id": "64b5d8b2-4c60-4faf-bf1b-9f7b1b7ca1c8", + "courier_id": "eac604a4-34c9-41b6-b5b1-231fb785d071", "courier_logo_url": null, - "courier_name": "SF Express - Domestic", + "courier_name": "FedEx Ground® Economy", "courier_remarks": null, "currency": "USD", "ddp_handling_fee": 0, - "delivery_time_rank": 1, + "delivery_time_rank": 10, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "full_description": "FedEx Ground® Economy (2-5 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 5, + "min_delivery_time": 2, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 26.29, + "shipment_charge_total": 26.29, + "total_charge": 26.29, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 26.29, + "shipment_charge_total": 26.29, + "total_charge": 26.29, + "tracking_rating": 3, + "value_for_money_rank": 4, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 3, + "courier_id": "c3e97b11-2842-44f1-84d1-afaa6b3f0a7c", + "courier_logo_url": null, + "courier_name": "USPS - Ground Advantage", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 12, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "full_description": "USPS - Ground Advantage (2-5 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 5, + "min_delivery_time": 2, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 48.56, + "shipment_charge_total": 48.56, + "total_charge": 48.56, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 48.56, + "shipment_charge_total": 48.56, + "total_charge": 48.56, + "tracking_rating": 2, + "value_for_money_rank": 5, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 4, + "courier_id": "7a1424ff-0d4e-4d55-bdfe-e4c6661debbf", + "courier_logo_url": null, + "courier_name": "USPS - Ground Advantage Signature", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 11, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "full_description": "USPS - Ground Advantage Signature (2-5 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 5, + "min_delivery_time": 2, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 52.26, + "shipment_charge_total": 52.26, + "total_charge": 52.26, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 52.26, + "shipment_charge_total": 52.26, + "total_charge": 52.26, + "tracking_rating": 2, + "value_for_money_rank": 6, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff"], + "cost_rank": 7, + "courier_id": "84135827-1538-4be2-b26e-afd8b3f3b4bd", + "courier_logo_url": null, + "courier_name": "FedEx 2Day®", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 5, "description": "No additional taxes to be paid at delivery", - "discount": { - "amount": 0, - "origin_amount": 0 + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "full_description": "FedEx 2Day® (2 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 2, + "min_delivery_time": 2, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 0, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 91.69, + "shipment_charge_total": 91.69, + "total_charge": 91.69, + "warehouse_handling_fee": 0 }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 91.69, + "shipment_charge_total": 91.69, + "total_charge": 91.69, + "tracking_rating": 3, + "value_for_money_rank": 7, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff", "free_pickup"], + "cost_rank": 9, + "courier_id": "a623a62b-5631-4dce-ae15-bbcf89e49c52", + "courier_logo_url": null, + "courier_name": "USPS - Priority Mail Express", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 3, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, "easyship_rating": null, "estimated_import_duty": 0, "estimated_import_tax": 0, "fuel_surcharge": 0, - "full_description": "SF Express - Domestic (1-2 working days) No additional taxes to be paid at delivery", + "full_description": "USPS - Priority Mail Express (1-2 working days) No additional taxes to be paid at delivery", "import_duty_charge": 0, "import_tax_charge": 0, "import_tax_non_chargeable": 0, @@ -277,7 +1095,7 @@ def test_parse_rate_response(self): "provincial_sales_tax": 0, "rates_in_origin_currency": { "additional_services_surcharge": 0, - "currency": "HKD", + "currency": "USD", "ddp_handling_fee": 0, "estimated_import_duty": 0, "estimated_import_tax": 0, @@ -293,9 +1111,75 @@ def test_parse_rate_response(self): "residential_discounted_fee": null, "residential_full_fee": null, "sales_tax": 0, - "shipment_charge": 22, - "shipment_charge_total": 22, - "total_charge": 22, + "shipment_charge": 180.55, + "shipment_charge_total": 180.55, + "total_charge": 180.55, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 180.55, + "shipment_charge_total": 180.55, + "total_charge": 180.55, + "tracking_rating": 2, + "value_for_money_rank": 8, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff"], + "cost_rank": 8, + "courier_id": "a9e3f424-713c-4efa-b445-71cd60c88ccd", + "courier_logo_url": null, + "courier_name": "FedEx Express Saver®", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 9, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 19, + "full_description": "FedEx Express Saver® (2-3 working days) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 3, + "min_delivery_time": 2, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 19, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 120.64, + "shipment_charge_total": 139.64, + "total_charge": 139.64, "warehouse_handling_fee": 0 }, "remote_area_surcharge": 0, @@ -303,56 +1187,183 @@ def test_parse_rate_response(self): "residential_discounted_fee": null, "residential_full_fee": null, "sales_tax": 0, - "shipment_charge": 2.8, - "shipment_charge_total": 2.8, - "total_charge": 2.8, + "shipment_charge": 120.64, + "shipment_charge_total": 139.64, + "total_charge": 139.64, "tracking_rating": 3, - "value_for_money_rank": 1, + "value_for_money_rank": 9, "warehouse_handling_fee": 0 }, { "additional_services_surcharge": 0, - "available_handover_options": [ - "dropoff" - ], - "cost_rank": 2, - "courier_id": "d6cfc6d2-3857-4f42-a2a4-9e10ac9766ac", + "available_handover_options": ["dropoff"], + "cost_rank": 11, + "courier_id": "de8835b8-17c5-4878-b636-9f9fdbab9265", "courier_logo_url": null, - "courier_name": "HK Post - Local Parcel", + "courier_name": "FedEx Standard Overnight®", "courier_remarks": null, "currency": "USD", "ddp_handling_fee": 0, "delivery_time_rank": 2, "description": "No additional taxes to be paid at delivery", - "discount": { - "amount": 0, - "origin_amount": 0 + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 31.94, + "full_description": "FedEx Standard Overnight® (1 working day) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 1, + "min_delivery_time": 1, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 31.94, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 202.79, + "shipment_charge_total": 234.73, + "total_charge": 234.73, + "warehouse_handling_fee": 0 }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 202.79, + "shipment_charge_total": 234.73, + "total_charge": 234.73, + "tracking_rating": 3, + "value_for_money_rank": 10, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff"], + "cost_rank": 12, + "courier_id": "8fb58899-7c4d-43b3-be2c-ec4c2d3ba375", + "courier_logo_url": null, + "courier_name": "FedEx Priority Overnight®", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 1, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, "easyship_rating": null, "estimated_import_duty": 0, "estimated_import_tax": 0, - "fuel_surcharge": 0, - "full_description": "HK Post - Local Parcel (2-10 working days) No additional taxes to be paid at delivery", + "fuel_surcharge": 33.19, + "full_description": "FedEx Priority Overnight® (1 working day) No additional taxes to be paid at delivery", + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "incoterms": "DDU", + "insurance_fee": 0, + "is_above_threshold": false, + "max_delivery_time": 1, + "min_delivery_time": 1, + "minimum_pickup_fee": 0, + "other_surcharges": null, + "oversized_surcharge": 0, + "payment_recipient": "Easyship", + "provincial_sales_tax": 0, + "rates_in_origin_currency": { + "additional_services_surcharge": 0, + "currency": "USD", + "ddp_handling_fee": 0, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 33.19, + "import_duty_charge": 0, + "import_tax_charge": 0, + "import_tax_non_chargeable": 0, + "insurance_fee": 0, + "minimum_pickup_fee": 0, + "oversized_surcharge": 0, + "provincial_sales_tax": 0, + "remote_area_surcharge": 0, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 210.72, + "shipment_charge_total": 243.91, + "total_charge": 243.91, + "warehouse_handling_fee": 0 + }, + "remote_area_surcharge": 0, + "remote_area_surcharges": null, + "residential_discounted_fee": null, + "residential_full_fee": null, + "sales_tax": 0, + "shipment_charge": 210.72, + "shipment_charge_total": 243.91, + "total_charge": 243.91, + "tracking_rating": 3, + "value_for_money_rank": 11, + "warehouse_handling_fee": 0 + }, + { + "additional_services_surcharge": 0, + "available_handover_options": ["dropoff"], + "cost_rank": 10, + "courier_id": "5eee483f-1416-42bb-8f7d-3ad384f3ee36", + "courier_logo_url": null, + "courier_name": "FedEx 2Day® A.M.", + "courier_remarks": null, + "currency": "USD", + "ddp_handling_fee": 0, + "delivery_time_rank": 4, + "description": "No additional taxes to be paid at delivery", + "discount": { "amount": 0, "origin_amount": 0 }, + "easyship_rating": null, + "estimated_import_duty": 0, + "estimated_import_tax": 0, + "fuel_surcharge": 26.78, + "full_description": "FedEx 2Day® A.M. (2 working days) No additional taxes to be paid at delivery", "import_duty_charge": 0, "import_tax_charge": 0, "import_tax_non_chargeable": 0, "incoterms": "DDU", "insurance_fee": 0, "is_above_threshold": false, - "max_delivery_time": 10, + "max_delivery_time": 2, "min_delivery_time": 2, "minimum_pickup_fee": 0, "other_surcharges": null, "oversized_surcharge": 0, - "payment_recipient": "Courier", + "payment_recipient": "Easyship", "provincial_sales_tax": 0, "rates_in_origin_currency": { "additional_services_surcharge": 0, - "currency": "HKD", + "currency": "USD", "ddp_handling_fee": 0, "estimated_import_duty": 0, "estimated_import_tax": 0, - "fuel_surcharge": 0, + "fuel_surcharge": 26.78, "import_duty_charge": 0, "import_tax_charge": 0, "import_tax_non_chargeable": 0, @@ -364,9 +1375,9 @@ def test_parse_rate_response(self): "residential_discounted_fee": null, "residential_full_fee": null, "sales_tax": 0, - "shipment_charge": 75, - "shipment_charge_total": 75, - "total_charge": 75, + "shipment_charge": 170.04, + "shipment_charge_total": 196.82, + "total_charge": 196.82, "warehouse_handling_fee": 0 }, "remote_area_surcharge": 0, @@ -374,21 +1385,17 @@ def test_parse_rate_response(self): "residential_discounted_fee": null, "residential_full_fee": null, "sales_tax": 0, - "shipment_charge": 9.56, - "shipment_charge_total": 9.56, - "total_charge": 9.56, - "tracking_rating": 1, - "value_for_money_rank": 2, + "shipment_charge": 170.04, + "shipment_charge_total": 196.82, + "total_charge": 196.82, + "tracking_rating": 3, + "value_for_money_rank": 12, "warehouse_handling_fee": 0 } ], "meta": { - "pagination": { - "page": 1, - "next": null, - "count": 2 - }, - "request_id": "d5f9d482b46f9ac995f7b56228305713" + "pagination": { "page": 1, "next": null, "count": 12 }, + "request_id": "269d0680c54e55d25df3fa09191f07ad" } } """ diff --git a/modules/connectors/easyship/tests/easyship/test_shipment.py b/modules/connectors/easyship/tests/easyship/test_shipment.py index 77657c84b..81ff230f8 100644 --- a/modules/connectors/easyship/tests/easyship/test_shipment.py +++ b/modules/connectors/easyship/tests/easyship/test_shipment.py @@ -139,6 +139,7 @@ def test_parse_cancel_shipment_response(self): "easyship_apply_shipping_rules": True, "easyship_list_unavailable_couriers": True, "easyship_incoterms": "DDU", + "easyship_courier_id": "b85683b8-1d32-41d7-b9af-63ae712ef3fe", }, } @@ -154,8 +155,10 @@ def test_parse_cancel_shipment_response(self): "label_type": "PNG", "meta": { "easyship_courier_account_id": "7505df80-af51-46a0-b2ee-ac9eacfcd3e4", + "easyship_courier_id": "b85683b8-1d32-41d7-b9af-63ae712ef3fe", "easyship_shipment_id": "ESUS220509144", "tracking_numbers": ["9405509104250026972189"], + "rate_provider": "ups", }, "shipment_identifier": "ESUS220509144", "tracking_number": "9405509104250026972189", @@ -257,6 +260,7 @@ def test_parse_cancel_shipment_response(self): }, "items": [ { + "category": "bags_luggages", "actual_weight": 10.0, "contains_battery_pi966": True, "contains_battery_pi967": True, diff --git a/packages/types/graphql/types.ts b/packages/types/graphql/types.ts index f7cf3d7bd..232c14bf0 100644 --- a/packages/types/graphql/types.ts +++ b/packages/types/graphql/types.ts @@ -4407,6 +4407,7 @@ export interface search_dataVariables { //============================================================== export enum CountryCodeEnum { + AC = "AC", AD = "AD", AE = "AE", AF = "AF", @@ -4431,6 +4432,7 @@ export enum CountryCodeEnum { BH = "BH", BI = "BI", BJ = "BJ", + BL = "BL", BM = "BM", BN = "BN", BO = "BO", @@ -4465,6 +4467,7 @@ export enum CountryCodeEnum { EC = "EC", EE = "EE", EG = "EG", + EH = "EH", ER = "ER", ES = "ES", ET = "ET", @@ -4501,6 +4504,7 @@ export enum CountryCodeEnum { ID = "ID", IE = "IE", IL = "IL", + IM = "IM", IN = "IN", IQ = "IQ", IR = "IR", @@ -4537,6 +4541,7 @@ export enum CountryCodeEnum { MC = "MC", MD = "MD", ME = "ME", + MF = "MF", MG = "MG", MH = "MH", MK = "MK", @@ -4601,6 +4606,7 @@ export enum CountryCodeEnum { SS = "SS", ST = "ST", SV = "SV", + SX = "SX", SY = "SY", SZ = "SZ", TC = "TC", @@ -4853,6 +4859,7 @@ export enum CarrierNameEnum { dpd = "dpd", dpdhl = "dpdhl", easypost = "easypost", + easyship = "easyship", eshipper = "eshipper", fedex = "fedex", fedex_ws = "fedex_ws", @@ -4867,6 +4874,7 @@ export enum CarrierNameEnum { roadie = "roadie", royalmail = "royalmail", sapient = "sapient", + seko = "seko", sendle = "sendle", tge = "tge", tnt = "tnt", diff --git a/packages/types/rest/api.ts b/packages/types/rest/api.ts index 0cbb18757..6e4a7da2f 100644 --- a/packages/types/rest/api.ts +++ b/packages/types/rest/api.ts @@ -1411,6 +1411,7 @@ export const CarrierConnectionCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -1425,6 +1426,7 @@ export const CarrierConnectionCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -1509,6 +1511,7 @@ export const CarrierConnectionDataCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -1523,6 +1526,7 @@ export const CarrierConnectionDataCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -1626,6 +1630,7 @@ export const CarrierDetailsCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -1640,6 +1645,7 @@ export const CarrierDetailsCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -2722,7 +2728,7 @@ export type CommodityDataOriginCountryEnum = typeof CommodityDataOriginCountryEn * @type ConnectionCredentialsField * @export */ -export type ConnectionCredentialsField = AlliedExpress | AlliedExpressLocal | AmazonShipping | Aramex | AsendiaUs | Australiapost | Boxknight | Bpost | Canadapost | Canpar | Chronopost | Colissimo | DhlExpress | DhlParcelDe | DhlPoland | DhlUniversal | Dicom | Dpd | Dpdhl | Easypost | Eshipper | Fedex | FedexWs | Freightcom | Generic | Geodis | HayPost | Laposte | Locate2u | Nationex | Purolator | Roadie | Royalmail | Sapient | Sendle | Tge | Tnt | Ups | Usps | UspsInternational | UspsWt | UspsWtInternational | Zoom2u; +export type ConnectionCredentialsField = AlliedExpress | AlliedExpressLocal | AmazonShipping | Aramex | AsendiaUs | Australiapost | Boxknight | Bpost | Canadapost | Canpar | Chronopost | Colissimo | DhlExpress | DhlParcelDe | DhlPoland | DhlUniversal | Dicom | Dpd | Dpdhl | Easypost | Easyship | Eshipper | Fedex | FedexWs | Freightcom | Generic | Geodis | HayPost | Laposte | Locate2u | Nationex | Purolator | Roadie | Royalmail | Sapient | Seko | Sendle | Tge | Tnt | Ups | Usps | UspsInternational | UspsWt | UspsWtInternational | Zoom2u; /** * @@ -3775,6 +3781,19 @@ export interface Easypost { */ 'api_key': string; } +/** + * + * @export + * @interface Easyship + */ +export interface Easyship { + /** + * + * @type {string} + * @memberof Easyship + */ + 'access_token': string; +} /** * * @export @@ -5948,6 +5967,7 @@ export const PatchedCarrierConnectionDataCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -5962,6 +5982,7 @@ export const PatchedCarrierConnectionDataCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -6987,7 +7008,7 @@ export interface RateRequest { */ 'services'?: Array | null; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof RateRequest */ @@ -7098,6 +7119,19 @@ export const SapientCarrierCodeEnum = { export type SapientCarrierCodeEnum = typeof SapientCarrierCodeEnum[keyof typeof SapientCarrierCodeEnum]; +/** + * + * @export + * @interface Seko + */ +export interface Seko { + /** + * + * @type {string} + * @memberof Seko + */ + 'access_key': string; +} /** * * @export @@ -7184,7 +7218,7 @@ export interface Shipment { */ 'services'?: Array | null; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof Shipment */ @@ -7414,7 +7448,7 @@ export interface ShipmentData { */ 'parcels': Array; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof ShipmentData */ @@ -7514,7 +7548,7 @@ export interface ShipmentDataReference { */ 'parcels': Array; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof ShipmentDataReference */ @@ -7648,7 +7682,7 @@ export interface ShipmentRateData { */ 'carrier_ids'?: Array | null; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof ShipmentRateData */ @@ -7685,7 +7719,7 @@ export interface ShipmentUpdateData { */ 'payment'?: Payment; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof ShipmentUpdateData */ @@ -7749,7 +7783,7 @@ export interface ShippingRequest { */ 'parcels': Array; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof ShippingRequest */ @@ -7861,7 +7895,7 @@ export interface ShippingResponse { */ 'services'?: Array | null; /** - *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
+ *
The options available for the shipment. { \"currency\": \"USD\", \"insurance\": 100.00, \"cash_on_delivery\": 30.00, \"dangerous_good\": true, \"declared_value\": 150.00, \"sms_notification\": true, \"email_notification\": true, \"email_notification_to\": \"shipper@mail.com\", \"hold_at_location\": true, \"paperless_trade\": true, \"preferred_service\": \"fedex_express_saver\", \"shipment_date\": \"2020-01-01\", # TODO: deprecate \"shipping_date\": \"2020-01-01T00:00\", \"shipment_note\": \"This is a shipment note\", \"signature_confirmation\": true, \"saturday_delivery\": true, \"is_return\": true, \"doc_files\": [ { \"doc_type\": \"commercial_invoice\", \"doc_file\": \"base64 encoded file\", \"doc_name\": \"commercial_invoice.pdf\", \"doc_format\": \"pdf\", } ], \"doc_references\": [ { \"doc_id\": \"123456789\", \"doc_type\": \"commercial_invoice\", } ], }
* @type {{ [key: string]: any; }} * @memberof ShippingResponse */ @@ -8422,6 +8456,7 @@ export const TrackingDataCarrierNameEnum = { Purolator: 'purolator', Roadie: 'roadie', Royalmail: 'royalmail', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -10886,7 +10921,7 @@ export const CarriersApiAxiosParamCreator = function (configuration?: Configurat /** * Retrieve a carrier\'s services * @summary Get carrier services - * @param {string} carrierName The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} carrierName The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -10960,7 +10995,7 @@ export const CarriersApiFp = function(configuration?: Configuration) { /** * Retrieve a carrier\'s services * @summary Get carrier services - * @param {string} carrierName The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} carrierName The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -11021,7 +11056,7 @@ export const CarriersApiFactory = function (configuration?: Configuration, baseP */ export interface CarriersApiGetServicesRequest { /** - * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @type {string} * @memberof CarriersApiGetServices */ @@ -11121,7 +11156,7 @@ export const ConnectionsApiAxiosParamCreator = function (configuration?: Configu * Retrieve all carrier connections * @summary List carrier connections * @param {boolean} [active] - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [metadataKey] * @param {string} [metadataValue] * @param {boolean} [systemOnly] @@ -11361,7 +11396,7 @@ export const ConnectionsApiFp = function(configuration?: Configuration) { * Retrieve all carrier connections * @summary List carrier connections * @param {boolean} [active] - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [metadataKey] * @param {string} [metadataValue] * @param {boolean} [systemOnly] @@ -11505,7 +11540,7 @@ export interface ConnectionsApiListRequest { readonly active?: boolean /** - * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @type {string} * @memberof ConnectionsApiList */ @@ -12649,7 +12684,7 @@ export const ManifestsApiAxiosParamCreator = function (configuration?: Configura /** * Retrieve all manifests. * @summary List manifests - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [createdAfter] * @param {string} [createdBefore] * @param {*} [options] Override http request option. @@ -12783,7 +12818,7 @@ export const ManifestsApiFp = function(configuration?: Configuration) { /** * Retrieve all manifests. * @summary List manifests - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [createdAfter] * @param {string} [createdBefore] * @param {*} [options] Override http request option. @@ -12872,7 +12907,7 @@ export interface ManifestsApiCreateRequest { */ export interface ManifestsApiListRequest { /** - * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @type {string} * @memberof ManifestsApiList */ @@ -15377,7 +15412,7 @@ export interface ProxyApiBuyLabelRequest { export interface ProxyApiCancelPickupRequest { /** * - * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} + * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'easyship' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'seko' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} * @memberof ProxyApiCancelPickup */ readonly carrierName: CancelPickupCarrierNameEnum @@ -15447,7 +15482,7 @@ export interface ProxyApiGetTrackingRequest { export interface ProxyApiSchedulePickupRequest { /** * - * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} + * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'easyship' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'seko' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} * @memberof ProxyApiSchedulePickup */ readonly carrierName: SchedulePickupCarrierNameEnum @@ -15468,7 +15503,7 @@ export interface ProxyApiSchedulePickupRequest { export interface ProxyApiTrackShipmentRequest { /** * - * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'fedex' | 'fedex_ws' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} + * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'fedex' | 'fedex_ws' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'seko' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} * @memberof ProxyApiTrackShipment */ readonly carrierName: TrackShipmentCarrierNameEnum @@ -15496,7 +15531,7 @@ export interface ProxyApiTrackShipmentRequest { export interface ProxyApiUpdatePickupRequest { /** * - * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} + * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'easyship' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'seko' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} * @memberof ProxyApiUpdatePickup */ readonly carrierName: UpdatePickupCarrierNameEnum @@ -15517,7 +15552,7 @@ export interface ProxyApiUpdatePickupRequest { export interface ProxyApiVoidLabelRequest { /** * - * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} + * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'easypost' | 'easyship' | 'eshipper' | 'fedex' | 'fedex_ws' | 'freightcom' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sapient' | 'seko' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} * @memberof ProxyApiVoidLabel */ readonly carrierName: VoidLabelCarrierNameEnum @@ -15671,6 +15706,7 @@ export const CancelPickupCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -15685,6 +15721,7 @@ export const CancelPickupCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -15720,6 +15757,7 @@ export const SchedulePickupCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -15734,6 +15772,7 @@ export const SchedulePickupCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -15779,6 +15818,7 @@ export const TrackShipmentCarrierNameEnum = { Purolator: 'purolator', Roadie: 'roadie', Royalmail: 'royalmail', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -15814,6 +15854,7 @@ export const UpdatePickupCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -15828,6 +15869,7 @@ export const UpdatePickupCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -15863,6 +15905,7 @@ export const VoidLabelCarrierNameEnum = { Dpd: 'dpd', Dpdhl: 'dpdhl', Easypost: 'easypost', + Easyship: 'easyship', Eshipper: 'eshipper', Fedex: 'fedex', FedexWs: 'fedex_ws', @@ -15877,6 +15920,7 @@ export const VoidLabelCarrierNameEnum = { Roadie: 'roadie', Royalmail: 'royalmail', Sapient: 'sapient', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', @@ -15998,7 +16042,7 @@ export const ShipmentsApiAxiosParamCreator = function (configuration?: Configura * Retrieve all shipments. * @summary List all shipments * @param {string} [address] - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [createdAfter] * @param {string} [createdBefore] * @param {boolean} [hasManifest] @@ -16378,7 +16422,7 @@ export const ShipmentsApiFp = function(configuration?: Configuration) { * Retrieve all shipments. * @summary List all shipments * @param {string} [address] - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [createdAfter] * @param {string} [createdBefore] * @param {boolean} [hasManifest] @@ -16584,7 +16628,7 @@ export interface ShipmentsApiListRequest { readonly address?: string /** - * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @type {string} * @memberof ShipmentsApiList */ @@ -17008,7 +17052,7 @@ export const TrackersApiAxiosParamCreator = function (configuration?: Configurat /** * Retrieve all shipment trackers. * @summary List all package trackers - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [createdAfter] * @param {string} [createdBefore] * @param {string} [status] Valid tracker status. <br/>Values: `pending`, `unknown`, `on_hold`, `delivered`, `in_transit`, `delivery_delayed`, `out_for_delivery`, `ready_for_pickup`, `delivery_failed` @@ -17271,7 +17315,7 @@ export const TrackersApiFp = function(configuration?: Configuration) { /** * Retrieve all shipment trackers. * @summary List all package trackers - * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * @param {string} [carrierName] The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @param {string} [createdAfter] * @param {string} [createdBefore] * @param {string} [status] Valid tracker status. <br/>Values: `pending`, `unknown`, `on_hold`, `delivered`, `in_transit`, `delivery_delayed`, `out_for_delivery`, `ready_for_pickup`, `delivery_failed` @@ -17442,7 +17486,7 @@ export interface TrackersApiCreateRequest { /** * - * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'fedex' | 'fedex_ws' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} + * @type {'allied_express' | 'allied_express_local' | 'amazon_shipping' | 'aramex' | 'asendia_us' | 'australiapost' | 'boxknight' | 'bpost' | 'canadapost' | 'canpar' | 'chronopost' | 'colissimo' | 'dhl_express' | 'dhl_parcel_de' | 'dhl_poland' | 'dhl_universal' | 'dicom' | 'dpd' | 'dpdhl' | 'fedex' | 'fedex_ws' | 'generic' | 'geodis' | 'hay_post' | 'laposte' | 'locate2u' | 'nationex' | 'purolator' | 'roadie' | 'royalmail' | 'seko' | 'sendle' | 'tge' | 'tnt' | 'ups' | 'usps' | 'usps_international' | 'usps_wt' | 'usps_wt_international' | 'zoom2u'} * @memberof TrackersApiCreate */ readonly carrierName2: CreateCarrierNameEnum @@ -17469,7 +17513,7 @@ export interface TrackersApiCreateRequest { */ export interface TrackersApiListRequest { /** - * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` + * The unique carrier slug. <br/>Values: `allied_express`, `allied_express_local`, `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u` * @type {string} * @memberof TrackersApiList */ @@ -17668,6 +17712,7 @@ export const CreateCarrierNameEnum = { Purolator: 'purolator', Roadie: 'roadie', Royalmail: 'royalmail', + Seko: 'seko', Sendle: 'sendle', Tge: 'tge', Tnt: 'tnt', diff --git a/packages/types/rest/base.ts b/packages/types/rest/base.ts index d42b832f3..a7a962249 100644 --- a/packages/types/rest/base.ts +++ b/packages/types/rest/base.ts @@ -2,9 +2,9 @@ /* eslint-disable */ /** * Karrio API - * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.1`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. + * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.7`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. * - * The version of the OpenAPI document: 2024.6.1 + * The version of the OpenAPI document: 2024.6.7 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/types/rest/common.ts b/packages/types/rest/common.ts index 2c8feb9de..db3f12783 100644 --- a/packages/types/rest/common.ts +++ b/packages/types/rest/common.ts @@ -2,9 +2,9 @@ /* eslint-disable */ /** * Karrio API - * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.1`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. + * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.7`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. * - * The version of the OpenAPI document: 2024.6.1 + * The version of the OpenAPI document: 2024.6.7 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/types/rest/configuration.ts b/packages/types/rest/configuration.ts index 9eb86f3a9..2a283e3c2 100644 --- a/packages/types/rest/configuration.ts +++ b/packages/types/rest/configuration.ts @@ -2,9 +2,9 @@ /* eslint-disable */ /** * Karrio API - * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.1`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. + * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.7`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. * - * The version of the OpenAPI document: 2024.6.1 + * The version of the OpenAPI document: 2024.6.7 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/types/rest/index.ts b/packages/types/rest/index.ts index db8478bb2..89e94040e 100644 --- a/packages/types/rest/index.ts +++ b/packages/types/rest/index.ts @@ -2,9 +2,9 @@ /* eslint-disable */ /** * Karrio API - * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.1`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. + * Karrio is a multi-carrier shipping API that simplifies the integration of logistics carrier services. The Karrio API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. The Karrio API differs for every account as we release new versions. These docs are customized to your version of the API. ## Versioning When backwards-incompatible changes are made to the API, a new, dated version is released. The current version is `2024.6.7`. Read our API changelog to learn more about backwards compatibility. As a precaution, use API versioning to check a new API version before committing to an upgrade. ## Environments The Karrio API offer the possibility to create and retrieve certain objects in `test_mode`. In development, it is therefore possible to add carrier connections, get live rates, buy labels, create trackers and schedule pickups in `test_mode`. ## Pagination All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can list addresses, list shipments, and list trackers. These list API methods share a common structure, taking at least these two parameters: limit, and offset. Karrio utilizes offset-based pagination via the offset and limit parameters. Both parameters take a number as value (see below) and return objects in reverse chronological order. The offset parameter returns objects listed after an index. The limit parameter take a limit on the number of objects to be returned from 1 to 100. ```json { \"count\": 100, \"next\": \"/v1/shipments?limit=25&offset=50\", \"previous\": \"/v1/shipments?limit=25&offset=25\", \"results\": [ { ... }, ] } ``` ## Metadata Updateable Karrio objects—including Shipment and Order have a metadata parameter. You can use this parameter to attach key-value data to these Karrio objects. Metadata is useful for storing additional, structured information on an object. As an example, you could store your user\'s full name and corresponding unique identifier from your system on a Karrio Order object. Do not store any sensitive information as metadata. ## Authentication API keys are used to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via HTTP Basic Auth. Provide your API token as the basic auth username value. You do not need to provide a password. ```shell $ curl https://instance.api.com/v1/shipments \\ -u key_xxxxxx: # The colon prevents curl from asking for a password. ``` If you need to authenticate via bearer auth (e.g., for a cross-origin request), use `-H \"Authorization: Token key_xxxxxx\"` instead of `-u key_xxxxxx`. All API requests must be made over [HTTPS](http://en.wikipedia.org/wiki/HTTP_Secure). API requests without authentication will also fail. * - * The version of the OpenAPI document: 2024.6.1 + * The version of the OpenAPI document: 2024.6.7 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/schemas/graphql.json b/schemas/graphql.json index d85045d52..7cb3a88b1 100644 --- a/schemas/graphql.json +++ b/schemas/graphql.json @@ -984,32 +984,28 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserType", + "description": null, + "fields": [ { - "name": "app", + "name": "email", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AppType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1017,26 +1013,15 @@ "deprecationReason": null }, { - "name": "apps", + "name": "full_name", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AppFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AppTypeConnection", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1044,30 +1029,15 @@ "deprecationReason": null }, { - "name": "private_app", + "name": "is_staff", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PrivateAppType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -1075,26 +1045,15 @@ "deprecationReason": null }, { - "name": "private_apps", + "name": "is_active", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AppFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PrivateAppTypeConnection", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -1102,26 +1061,15 @@ "deprecationReason": null }, { - "name": "installations", + "name": "date_joined", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AppInstallationFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AppInstallationTypeConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, @@ -1129,111 +1077,116 @@ "deprecationReason": null }, { - "name": "auditlog", + "name": "is_superuser", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuditLogEntryType", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auditlogs", + "name": "last_login", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AuditLogEntryFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AuditLogEntryTypeConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "Date with time (isoformat)", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TokenType", + "description": null, + "fields": [ { - "name": "workflow", + "name": "object_type", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "WorkflowType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "workflows", + "name": "key", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WorkflowTypeConnection", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1241,53 +1194,15 @@ "deprecationReason": null }, { - "name": "workflow_action", + "name": "label", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "WorkflowActionType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflow_actions", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowActionFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionTypeConnection", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1295,53 +1210,31 @@ "deprecationReason": null }, { - "name": "workflow_connection", + "name": "test_mode", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "WorkflowConnectionType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "workflow_connections", + "name": "created", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowConnectionFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WorkflowConnectionTypeConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, @@ -1349,53 +1242,46 @@ "deprecationReason": null }, { - "name": "workflow_event", + "name": "permissions", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "WorkflowEventType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "APIKeyType", + "description": null, + "fields": [ { - "name": "workflow_events", + "name": "object_type", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowEventFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WorkflowEventTypeConnection", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1403,26 +1289,15 @@ "deprecationReason": null }, { - "name": "workflow_templates", + "name": "key", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WorkflowTemplateTypeConnection", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1430,26 +1305,15 @@ "deprecationReason": null }, { - "name": "workflow_action_templates", + "name": "label", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowActionFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionTemplateTypeConnection", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1457,26 +1321,15 @@ "deprecationReason": null }, { - "name": "workflow_connection_templates", + "name": "test_mode", "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowConnectionFilter", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "WorkflowConnectionTemplateTypeConnection", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -1484,81 +1337,37 @@ "deprecationReason": null }, { - "name": "organization", + "name": "created", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "OrganizationType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "organizations", + "name": "permissions", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization_invitation", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "guid", - "description": null, - "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitationType", - "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -1571,11 +1380,11 @@ }, { "kind": "OBJECT", - "name": "UserType", + "name": "WorkspaceConfigType", "description": null, "fields": [ { - "name": "email", + "name": "object_type", "description": null, "args": [], "type": { @@ -1591,870 +1400,483 @@ "deprecationReason": null }, { - "name": "full_name", + "name": "default_currency", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "CurrencyCodeEnum", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_staff", + "name": "default_country_code", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "ENUM", + "name": "CountryCodeEnum", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_active", + "name": "default_weight_unit", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "ENUM", + "name": "WeightUnitEnum", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "date_joined", + "name": "default_dimension_unit", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "ENUM", + "name": "DimensionUnitEnum", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_superuser", + "name": "state_tax_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "last_login", + "name": "federal_tax_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", + "name": "default_label_type", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "LabelTypeEnum", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "Date with time (isoformat)", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TokenType", - "description": null, - "fields": [ + }, { - "name": "object_type", + "name": "insured_by_default", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "key", + "name": "customs_aes", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", + "name": "customs_eel_pfc", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "test_mode", + "name": "customs_license_number", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created", + "name": "customs_certificate_number", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", + "name": "customs_nip_number", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "APIKeyType", - "description": null, - "fields": [ + }, { - "name": "object_type", + "name": "customs_eori_number", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "key", + "name": "customs_vat_registration_number", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CurrencyCodeEnum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "label", + "name": "EUR", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "test_mode", + "name": "AED", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created", + "name": "USD", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", + "name": "XCD", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkspaceConfigType", - "description": null, - "fields": [ + }, { - "name": "object_type", + "name": "AMD", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "default_currency", + "name": "ANG", "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "default_country_code", + "name": "AOA", "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CountryCodeEnum", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "default_weight_unit", + "name": "ARS", "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "WeightUnitEnum", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "default_dimension_unit", + "name": "AUD", "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DimensionUnitEnum", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state_tax_id", + "name": "AWG", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "federal_tax_id", + "name": "AZN", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "default_label_type", + "name": "BAM", "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "LabelTypeEnum", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insured_by_default", + "name": "BBD", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customs_aes", + "name": "BDT", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customs_eel_pfc", + "name": "XOF", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customs_license_number", + "name": "BGN", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customs_certificate_number", + "name": "BHD", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customs_nip_number", + "name": "BIF", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customs_eori_number", + "name": "BMD", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customs_vat_registration_number", + "name": "BND", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "EUR", + "name": "BOB", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "AED", + "name": "BRL", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "USD", + "name": "BSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "XCD", + "name": "BTN", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "AMD", + "name": "BWP", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ANG", + "name": "BYN", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "AOA", + "name": "BZD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ARS", + "name": "CAD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "AUD", + "name": "CDF", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "AWG", + "name": "XAF", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "AZN", + "name": "CHF", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BAM", + "name": "NZD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BBD", + "name": "CLP", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BDT", + "name": "CNY", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "XOF", + "name": "COP", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BGN", + "name": "CRC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BHD", + "name": "CUC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BIF", + "name": "CVE", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BMD", + "name": "CZK", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BND", + "name": "DJF", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BOB", + "name": "DKK", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BRL", + "name": "DOP", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BSD", + "name": "DZD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BTN", + "name": "EGP", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BWP", + "name": "ERN", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BYN", + "name": "ETB", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "BZD", + "name": "FJD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "CAD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CDF", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "XAF", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CHF", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NZD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CLP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CNY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CRC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CUC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CVE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CZK", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DJF", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DKK", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DZD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EGP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ERN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ETB", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FJD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GBP", + "name": "GBP", "description": null, "isDeprecated": false, "deprecationReason": null @@ -5117,6 +4539,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "easyship", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "eshipper", "description": null, @@ -5201,6 +4629,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "seko", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "sendle", "description": null, @@ -14442,35 +13876,34 @@ }, { "kind": "OBJECT", - "name": "AppType", + "name": "Mutation", "description": null, "fields": [ { - "name": "object_type", + "name": "update_user", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserInput", + "ofType": null + } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UserUpdateMutation", "ofType": null } }, @@ -14478,15 +13911,30 @@ "deprecationReason": null }, { - "name": "display_name", + "name": "register_user", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RegisterUserMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RegisterUserMutation", "ofType": null } }, @@ -14494,15 +13942,30 @@ "deprecationReason": null }, { - "name": "developer_name", + "name": "update_workspace_config", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WorkspaceConfigMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "WorkspaceConfigMutation", "ofType": null } }, @@ -14510,15 +13973,30 @@ "deprecationReason": null }, { - "name": "is_public", + "name": "mutate_token", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "TokenMutation", "ofType": null } }, @@ -14526,15 +14004,30 @@ "deprecationReason": null }, { - "name": "is_builtin", + "name": "create_api_key", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateAPIKeyMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CreateAPIKeyMutation", "ofType": null } }, @@ -14542,15 +14035,30 @@ "deprecationReason": null }, { - "name": "is_embedded", + "name": "delete_api_key", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteAPIKeyMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "DeleteAPIKeyMutation", "ofType": null } }, @@ -14558,15 +14066,30 @@ "deprecationReason": null }, { - "name": "is_published", + "name": "request_email_change", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestEmailChangeMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "RequestEmailChangeMutation", "ofType": null } }, @@ -14574,15 +14097,30 @@ "deprecationReason": null }, { - "name": "launch_url", + "name": "confirm_email_change", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConfirmEmailChangeMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ConfirmEmailChangeMutation", "ofType": null } }, @@ -14590,39 +14128,30 @@ "deprecationReason": null }, { - "name": "features", + "name": "confirm_email", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ConfirmEmailMutationInput", "ofType": null } - } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "ConfirmEmailMutation", "ofType": null } }, @@ -14630,15 +14159,30 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "change_password", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangePasswordMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "ChangePasswordMutation", "ofType": null } }, @@ -14646,15 +14190,30 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "request_password_reset", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestPasswordResetMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "UserType", + "name": "RequestPasswordResetMutation", "ofType": null } }, @@ -14662,50 +14221,30 @@ "deprecationReason": null }, { - "name": "metadata", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "installation", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "AppInstallationType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppInstallationType", - "description": null, - "fields": [ - { - "name": "object_type", + "name": "confirm_password_reset", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConfirmPasswordResetMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ConfirmPasswordResetMutation", "ofType": null } }, @@ -14713,15 +14252,30 @@ "deprecationReason": null }, { - "name": "id", + "name": "enable_multi_factor", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnableMultiFactorMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "EnableMultiFactorMutation", "ofType": null } }, @@ -14729,15 +14283,30 @@ "deprecationReason": null }, { - "name": "app", + "name": "confirm_multi_factor", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConfirmMultiFactorMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AppType", + "name": "ConfirmMultiFactorMutation", "ofType": null } }, @@ -14745,39 +14314,30 @@ "deprecationReason": null }, { - "name": "access_scopes", + "name": "disable_multi_factor", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "DisableMultiFactorMutationInput", "ofType": null } - } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "DisableMultiFactorMutation", "ofType": null } }, @@ -14785,15 +14345,30 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "create_address_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateAddressTemplateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "CreateAddressTemplateMutation", "ofType": null } }, @@ -14801,15 +14376,30 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "update_address_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAddressTemplateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "UserType", + "name": "UpdateAddressTemplateMutation", "ofType": null } }, @@ -14817,127 +14407,30 @@ "deprecationReason": null }, { - "name": "metadata", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AppFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "features", + "name": "create_customs_template", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCustomsTemplateInput", + "ofType": null + } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "metadata_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata_value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "CreateCustomsTemplateMutation", "ofType": null } }, @@ -14945,50 +14438,30 @@ "deprecationReason": null }, { - "name": "edges", + "name": "update_customs_template", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AppTypeEdge", + "kind": "INPUT_OBJECT", + "name": "UpdateCustomsTemplateInput", "ofType": null } - } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AppType", + "name": "UpdateCustomsTemplateMutation", "ofType": null } }, @@ -14996,42 +14469,61 @@ "deprecationReason": null }, { - "name": "cursor", + "name": "create_parcel_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateParcelTemplateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CreateParcelTemplateMutation", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PrivateAppType", - "description": null, - "fields": [ + }, { - "name": "object_type", + "name": "update_parcel_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateParcelTemplateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UpdateParcelTemplateMutation", "ofType": null } }, @@ -15039,15 +14531,30 @@ "deprecationReason": null }, { - "name": "id", + "name": "create_carrier_connection", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCarrierConnectionMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CreateCarrierConnectionMutation", "ofType": null } }, @@ -15055,15 +14562,30 @@ "deprecationReason": null }, { - "name": "display_name", + "name": "update_carrier_connection", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCarrierConnectionMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UpdateCarrierConnectionMutation", "ofType": null } }, @@ -15071,15 +14593,30 @@ "deprecationReason": null }, { - "name": "developer_name", + "name": "mutate_system_connection", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SystemCarrierMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SystemCarrierMutation", "ofType": null } }, @@ -15087,15 +14624,30 @@ "deprecationReason": null }, { - "name": "is_public", + "name": "delete_carrier_connection", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "DeleteMutation", "ofType": null } }, @@ -15103,15 +14655,30 @@ "deprecationReason": null }, { - "name": "is_builtin", + "name": "partial_shipment_update", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PartialShipmentMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "PartialShipmentMutation", "ofType": null } }, @@ -15119,15 +14686,30 @@ "deprecationReason": null }, { - "name": "is_embedded", + "name": "mutate_metadata", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MetadataMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "MetadataMutation", "ofType": null } }, @@ -15135,15 +14717,30 @@ "deprecationReason": null }, { - "name": "is_published", + "name": "change_shipment_status", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeShipmentStatusMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "ChangeShipmentStatusMutation", "ofType": null } }, @@ -15151,15 +14748,30 @@ "deprecationReason": null }, { - "name": "launch_url", + "name": "delete_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DeleteMutation", "ofType": null } }, @@ -15167,39 +14779,30 @@ "deprecationReason": null }, { - "name": "features", + "name": "discard_commodity", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", "ofType": null } - } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "client_id", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DeleteMutation", "ofType": null } }, @@ -15207,31 +14810,30 @@ "deprecationReason": null }, { - "name": "redirect_uris", + "name": "discard_customs", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "DeleteMutation", "ofType": null } }, @@ -15239,15 +14841,30 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "discard_parcel", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "DeleteMutation", "ofType": null } }, @@ -15255,15 +14872,30 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "create_rate_sheet", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateRateSheetMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "UserType", + "name": "CreateRateSheetMutation", "ofType": null } }, @@ -15271,50 +14903,92 @@ "deprecationReason": null }, { - "name": "metadata", + "name": "update_rate_sheet", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRateSheetMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateRateSheetMutation", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "installation", + "name": "delete_rate_sheet", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "OBJECT", - "name": "AppInstallationType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteMutation", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PrivateAppTypeConnection", - "description": null, - "fields": [ + }, { - "name": "page_info", + "name": "delete_metafield", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "DeleteMutation", "ofType": null } }, @@ -15322,50 +14996,61 @@ "deprecationReason": null }, { - "name": "edges", + "name": "create_webhook", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PrivateAppTypeEdge", + "kind": "INPUT_OBJECT", + "name": "CreateWebhookMutationInput", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateWebhookMutation", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PrivateAppTypeEdge", - "description": null, - "fields": [ + }, { - "name": "node", + "name": "update_webhook", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateWebhookMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PrivateAppType", + "name": "UpdateWebhookMutation", "ofType": null } }, @@ -15373,113 +15058,61 @@ "deprecationReason": null }, { - "name": "cursor", + "name": "delete_webhook", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DeleteMutation", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AppInstallationFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata_value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null }, { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppInstallationTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", + "name": "create_order", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateOrderMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "CreateOrderMutation", "ofType": null } }, @@ -15487,50 +15120,30 @@ "deprecationReason": null }, { - "name": "edges", + "name": "update_order", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AppInstallationTypeEdge", + "kind": "INPUT_OBJECT", + "name": "UpdateOrderMutationInput", "ofType": null } - } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppInstallationTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AppInstallationType", + "name": "UpdateOrderMutation", "ofType": null } }, @@ -15538,42 +15151,30 @@ "deprecationReason": null }, { - "name": "cursor", + "name": "delete_order", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteOrderMutationInput", + "ofType": null + } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuditLogEntryType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DeleteOrderMutation", "ofType": null } }, @@ -15581,15 +15182,30 @@ "deprecationReason": null }, { - "name": "id", + "name": "create_document_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDocumentTemplateMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CreateDocumentTemplateMutation", "ofType": null } }, @@ -15597,15 +15213,30 @@ "deprecationReason": null }, { - "name": "object_pk", + "name": "update_document_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDocumentTemplateMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UpdateDocumentTemplateMutation", "ofType": null } }, @@ -15613,15 +15244,30 @@ "deprecationReason": null }, { - "name": "object_id", + "name": "delete_document_template", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "DeleteMutation", "ofType": null } }, @@ -15629,9412 +15275,112 @@ "deprecationReason": null }, { - "name": "object_str", + "name": "create_data_template", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LogEntryAction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LogEntryAction", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "create", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AuditLogEntryFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "object_pk", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuditLogEntryTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "input", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AuditLogEntryTypeEdge", + "kind": "INPUT_OBJECT", + "name": "CreateDataTemplateMutationInput", "ofType": null } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuditLogEntryTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuditLogEntryType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowTriggerType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionNodeType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadata", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowTriggerType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationTriggerType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "secret", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "secret_key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationTriggerType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "manual", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scheduled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhook", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowActionNodeType", - "description": null, - "fields": [ - { - "name": "order", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowActionType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationActionType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "port", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endpoint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AutomationHTTPMethod", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters_type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AutomationParametersType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "header_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AutomationHTTPContentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "connection", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowConnectionType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metafields", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetafieldType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadata", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationActionType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "http_request", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_mapping", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "function_call", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "conditional", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationHTTPMethod", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "get", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "post", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "put", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "patch", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationParametersType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "data", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "querystring", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationHTTPContentType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "json", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "form", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "xml", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowConnectionType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationAuthType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "port", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endpoint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metafields", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetafieldType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credentials", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadata", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationAuthType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "basic", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oauth2", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "api_key", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jwt", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MetafieldType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_required", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MetafieldTypeEnum", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MetafieldTypeEnum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "text", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "boolean", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "keyword", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowTypeEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowActionFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "keyword", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationActionType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowActionTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionTypeEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowActionTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowConnectionFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "keyword", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationAuthType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowConnectionTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowConnectionTypeEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowConnectionTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowConnectionType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowEventType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "test_mode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationEventStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "event_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationEventType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflow", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "records", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TracingRecordType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationEventStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "pending", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "running", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aborted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cancelled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AutomationEventType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "manual", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scheduled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhook", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auto", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowEventFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "keyword", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parameters_key", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationEventStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationEventType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowEventTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowEventTypeEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowEventTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowEventType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowTemplateTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowTemplateTypeEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowTemplateTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowTemplateType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowTemplateType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowTriggerTemplateType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionNodeType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionTemplateType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowTriggerTemplateType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationTriggerType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowActionTemplateType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationActionType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "port", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endpoint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AutomationHTTPMethod", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters_type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AutomationParametersType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "header_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AutomationHTTPContentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "connection", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowConnectionTemplateType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metafields", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetafieldType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowConnectionTemplateType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationAuthType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "port", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endpoint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metafields", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetafieldType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowActionTemplateTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionTemplateTypeEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowActionTemplateTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowActionTemplateType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowConnectionTemplateTypeConnection", - "description": null, - "fields": [ - { - "name": "page_info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowConnectionTemplateTypeEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowConnectionTemplateTypeEdge", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowConnectionTemplateType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationType", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_active", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modified", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization_invites", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationInvitationType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current_user", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationMemberType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationMemberType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workspace_config", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkspaceConfigType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "usage", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UsageFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrgUsageType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitationType", - "description": null, - "fields": [ - { - "name": "object_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "guid", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invitee_identifier", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modified", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invited_by", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invitee", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization_name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationMemberType", - "description": null, - "fields": [ - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_admin", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UserRole", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "full_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last_login", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invitation", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitationType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UserRole", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "member", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "developer", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UsageFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "date_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "omit", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrgUsageType", - "description": null, - "fields": [ - { - "name": "members", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total_errors", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_volume", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total_requests", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total_trackers", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total_shipments", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unfulfilled_orders", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total_shipping_spend", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "api_errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsageStatType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "api_requests", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsageStatType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_volumes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsageStatType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shipment_count", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsageStatType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shipping_spend", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsageStatType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tracker_count", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsageStatType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UsageStatType", - "description": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": null, - "fields": [ - { - "name": "update_user", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateUserInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserUpdateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "register_user", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RegisterUserMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RegisterUserMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_workspace_config", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorkspaceConfigMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkspaceConfigMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutate_token", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_api_key", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateAPIKeyMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateAPIKeyMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_api_key", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteAPIKeyMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteAPIKeyMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_email_change", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestEmailChangeMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestEmailChangeMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confirm_email_change", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConfirmEmailChangeMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConfirmEmailChangeMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confirm_email", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConfirmEmailMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConfirmEmailMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "change_password", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangePasswordMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChangePasswordMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_password_reset", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestPasswordResetMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestPasswordResetMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confirm_password_reset", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConfirmPasswordResetMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConfirmPasswordResetMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enable_multi_factor", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EnableMultiFactorMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EnableMultiFactorMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confirm_multi_factor", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConfirmMultiFactorMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConfirmMultiFactorMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disable_multi_factor", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DisableMultiFactorMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DisableMultiFactorMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_address_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateAddressTemplateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateAddressTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_address_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressTemplateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateAddressTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_customs_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCustomsTemplateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateCustomsTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_customs_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCustomsTemplateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateCustomsTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_parcel_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateParcelTemplateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateParcelTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_parcel_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateParcelTemplateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateParcelTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_carrier_connection", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCarrierConnectionMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateCarrierConnectionMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_carrier_connection", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCarrierConnectionMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateCarrierConnectionMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutate_system_connection", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SystemCarrierMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SystemCarrierMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_carrier_connection", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "partial_shipment_update", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PartialShipmentMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PartialShipmentMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutate_metadata", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MetadataMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetadataMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "change_shipment_status", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeShipmentStatusMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChangeShipmentStatusMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discard_commodity", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discard_customs", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discard_parcel", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_rate_sheet", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateRateSheetMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateRateSheetMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_rate_sheet", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRateSheetMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateRateSheetMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_rate_sheet", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_metafield", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_webhook", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateWebhookMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateWebhookMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_webhook", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateWebhookMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateWebhookMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_webhook", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_order", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateOrderMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateOrderMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_order", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrderMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateOrderMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_order", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteOrderMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteOrderMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_document_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDocumentTemplateMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateDocumentTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_document_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDocumentTemplateMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateDocumentTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_document_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_data_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDataTemplateMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateDataTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_data_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDataTemplateMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateDataTemplateMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_data_template", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_app", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateAppMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateAppMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_app", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateAppMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateAppMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_app", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "install_app", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InstallAppMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InstallAppMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uninstall_app", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UninstallAppMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UninstallAppMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_workflow", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateWorkflowMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateWorkflowMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_workflow", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateWorkflowMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_workflow", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_workflow_action", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateWorkflowActionMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateWorkflowActionMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_workflow_action", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowActionMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateWorkflowActionMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_workflow_action", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_workflow_connection", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateWorkflowConnectionMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateWorkflowConnectionMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_workflow_connection", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowConnectionMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateWorkflowConnectionMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_workflow_connection", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_workflow_event", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateWorkflowEventMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateWorkflowEventMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cancel_workflow_event", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CancelWorkflowEventMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CancelWorkflowEventMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_workflow_trigger", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateWorkflowTriggerMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateWorkflowTriggerMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_workflow_trigger", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowTriggerMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateWorkflowTriggerMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_workflow_trigger", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_organization", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateOrganizationMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateOrganizationMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_organization", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateOrganizationMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_organization", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteOrganizationMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteOrganizationMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "change_organization_owner", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeOrganizationOwnerMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChangeOrganizationOwnerMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "set_organization_user_roles", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetOrganizationUserRolesMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SetOrganizationUserRolesMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "send_organization_invites", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SendOrganizationInvitesMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SendOrganizationInvitesMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accept_organization_invitation", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AcceptOrganizationInvitationMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AcceptOrganizationInvitationMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_organization_invitation", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeleteMutation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateUserInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "full_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserUpdateMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ErrorType", - "description": null, - "fields": [ - { - "name": "field", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messages", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RegisterUserMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "password1", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "password2", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "redirect_url", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "full_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RegisterUserMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkspaceConfigMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "default_currency", - "description": null, - "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_country_code", - "description": null, - "type": { - "kind": "ENUM", - "name": "CountryCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_label_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "LabelTypeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_weight_unit", - "description": null, - "type": { - "kind": "ENUM", - "name": "WeightUnitEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_dimension_unit", - "description": null, - "type": { - "kind": "ENUM", - "name": "DimensionUnitEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_tax_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "federal_tax_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs_aes", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs_eel_pfc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs_eori_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs_license_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs_certificate_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs_nip_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs_vat_registration_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "insured_by_default", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkspaceConfigMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workspace_config", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkspaceConfigType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TokenMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TokenMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TokenType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateAPIKeyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "permissions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateAPIKeyMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "api_key", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "APIKeyType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteAPIKeyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteAPIKeyMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestEmailChangeMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "redirect_url", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestEmailChangeMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ConfirmEmailChangeMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConfirmEmailChangeMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ConfirmEmailMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConfirmEmailMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangePasswordMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "old_password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "new_password1", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "new_password2", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChangePasswordMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestPasswordResetMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "redirect_url", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestPasswordResetMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "redirect_url", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ConfirmPasswordResetMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "uid", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "new_password1", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "new_password2", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConfirmPasswordResetMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnableMultiFactorMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnableMultiFactorMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ConfirmMultiFactorMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConfirmMultiFactorMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DisableMultiFactorMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DisableMultiFactorMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateAddressTemplateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "is_default", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "country_code", - "description": null, - "type": { - "kind": "ENUM", - "name": "CountryCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "postal_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "city", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "federal_tax_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_tax_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "company_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "suburb", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "residential", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "street_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_line1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_line2", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "validate_location", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateAddressTemplateMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "AddressTemplateType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressTemplateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_default", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "country_code", - "description": null, - "type": { - "kind": "ENUM", - "name": "CountryCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "postal_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "city", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "federal_tax_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_tax_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "company_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "suburb", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "residential", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "street_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_line1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_line2", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "validate_location", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateAddressTemplateMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "AddressTemplateType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCustomsTemplateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "customs", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomsInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "is_default", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "commodities", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommodityInput", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "certify", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commercial_invoice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "CustomsContentTypeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "incoterm", - "description": null, - "type": { - "kind": "ENUM", - "name": "IncotermCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "invoice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "invoice_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "signer", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duty", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DutyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duty_billing_address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommodityInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "weight", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "weight_unit", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WeightUnitEnum", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "1" - }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hs_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "origin_country", - "description": null, - "type": { - "kind": "ENUM", - "name": "CountryCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_currency", - "description": null, - "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parent_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DutyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "paid_by", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PaidByEnum", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "currency", - "description": null, - "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "declared_value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bill_to", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateCustomsTemplateMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomsTemplateType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCustomsTemplateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateCustomsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_default", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCustomsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "commodities", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCommodityInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "certify", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commercial_invoice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "CustomsContentTypeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "incoterm", - "description": null, - "type": { - "kind": "ENUM", - "name": "IncotermCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "invoice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "invoice_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "signer", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duty", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateDutyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duty_billing_address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCommodityInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "weight", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "weight_unit", - "description": null, - "type": { - "kind": "ENUM", - "name": "WeightUnitEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hs_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "origin_country", - "description": null, - "type": { - "kind": "ENUM", - "name": "CountryCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_currency", - "description": null, - "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateDataTemplateMutation", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parent_id", + "name": "update_data_template", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDataTemplateMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateDataTemplateMutation", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", + "name": "delete_data_template", "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMutationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteMutation", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "UpdateDutyInput", + "name": "UpdateUserInput", "description": null, "fields": null, "inputFields": [ { - "name": "paid_by", - "description": null, - "type": { - "kind": "ENUM", - "name": "PaidByEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "currency", - "description": null, - "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_number", + "name": "full_name", "description": null, "type": { "kind": "SCALAR", @@ -25044,21 +15390,11 @@ "defaultValue": null }, { - "name": "declared_value", + "name": "is_active", "description": null, "type": { "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bill_to", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -25070,7 +15406,7 @@ }, { "kind": "OBJECT", - "name": "UpdateCustomsTemplateMutation", + "name": "UserUpdateMutation", "description": null, "fields": [ { @@ -25094,12 +15430,12 @@ "deprecationReason": null }, { - "name": "template", + "name": "user", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "CustomsTemplateType", + "name": "UserType", "ofType": null }, "isDeprecated": false, @@ -25112,14 +15448,14 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CreateParcelTemplateInput", + "kind": "OBJECT", + "name": "ErrorType", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "label", + "name": "field", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -25129,173 +15465,103 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parcel", + "name": "messages", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ParcelInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, - "defaultValue": null - }, - { - "name": "is_default", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ParcelInput", + "name": "RegisterUserMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "weight", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "weight_unit", + "name": "email", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WeightUnitEnum", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "width", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "height", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "length", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "packaging_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "package_preset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "is_document", + "name": "password1", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "dimension_unit", + "name": "password2", "description": null, "type": { - "kind": "ENUM", - "name": "DimensionUnitEnum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "reference_number", + "name": "redirect_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "freight_class", + "name": "full_name", "description": null, "type": { "kind": "SCALAR", @@ -25303,24 +15569,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "items", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommodityInput", - "ofType": null - } - } - }, - "defaultValue": null } ], "interfaces": null, @@ -25329,7 +15577,7 @@ }, { "kind": "OBJECT", - "name": "CreateParcelTemplateMutation", + "name": "RegisterUserMutation", "description": null, "fields": [ { @@ -25353,12 +15601,12 @@ "deprecationReason": null }, { - "name": "template", + "name": "user", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "ParcelTemplateType", + "name": "UserType", "ofType": null }, "isDeprecated": false, @@ -25372,77 +15620,42 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateParcelTemplateInput", + "name": "WorkspaceConfigMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parcel", + "name": "default_currency", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateParcelInput", + "kind": "ENUM", + "name": "CurrencyCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "is_default", + "name": "default_country_code", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "CountryCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateParcelInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "weight", + "name": "default_label_type", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "LabelTypeEnum", "ofType": null }, "defaultValue": null }, { - "name": "weight_unit", + "name": "default_weight_unit", "description": null, "type": { "kind": "ENUM", @@ -25452,37 +15665,37 @@ "defaultValue": null }, { - "name": "width", + "name": "default_dimension_unit", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "DimensionUnitEnum", "ofType": null }, "defaultValue": null }, { - "name": "height", + "name": "state_tax_id", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "length", + "name": "federal_tax_id", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "packaging_type", + "name": "customs_aes", "description": null, "type": { "kind": "SCALAR", @@ -25492,7 +15705,7 @@ "defaultValue": null }, { - "name": "package_preset", + "name": "customs_eel_pfc", "description": null, "type": { "kind": "SCALAR", @@ -25502,7 +15715,7 @@ "defaultValue": null }, { - "name": "description", + "name": "customs_eori_number", "description": null, "type": { "kind": "SCALAR", @@ -25512,7 +15725,7 @@ "defaultValue": null }, { - "name": "content", + "name": "customs_license_number", "description": null, "type": { "kind": "SCALAR", @@ -25522,27 +15735,27 @@ "defaultValue": null }, { - "name": "is_document", + "name": "customs_certificate_number", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "dimension_unit", + "name": "customs_nip_number", "description": null, "type": { - "kind": "ENUM", - "name": "DimensionUnitEnum", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "reference_number", + "name": "customs_vat_registration_number", "description": null, "type": { "kind": "SCALAR", @@ -25552,18 +15765,29 @@ "defaultValue": null }, { - "name": "freight_class", + "name": "insured_by_default", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkspaceConfigMutation", + "description": null, + "fields": [ { - "name": "items", + "name": "errors", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -25571,16 +15795,55 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCommodityInput", + "kind": "OBJECT", + "name": "ErrorType", "ofType": null } } }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workspace_config", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkspaceConfigType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TokenMutationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "defaultValue": null }, { - "name": "id", + "name": "password", "description": null, "type": { "kind": "SCALAR", @@ -25588,6 +15851,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "refresh", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -25596,7 +15869,7 @@ }, { "kind": "OBJECT", - "name": "UpdateParcelTemplateMutation", + "name": "TokenMutation", "description": null, "fields": [ { @@ -25620,12 +15893,12 @@ "deprecationReason": null }, { - "name": "template", + "name": "token", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "ParcelTemplateType", + "name": "TokenType", "ofType": null }, "isDeprecated": false, @@ -25639,26 +15912,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateCarrierConnectionMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "carrier_name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CarrierNameEnum", - "ofType": null - } - }, - "defaultValue": null - }, + "name": "CreateAPIKeyMutationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "carrier_id", + "name": "password", "description": null, "type": { "kind": "NON_NULL", @@ -25672,51 +15931,21 @@ "defaultValue": null }, { - "name": "credentials", + "name": "label", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - }, - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "capabilities", + "name": "permissions", "description": null, "type": { "kind": "LIST", @@ -25740,7 +15969,7 @@ }, { "kind": "OBJECT", - "name": "CreateCarrierConnectionMutation", + "name": "CreateAPIKeyMutation", "description": null, "fields": [ { @@ -25764,17 +15993,13 @@ "deprecationReason": null }, { - "name": "connection", + "name": "api_key", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CarrierConnectionType", - "ofType": null - } + "kind": "OBJECT", + "name": "APIKeyType", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -25787,12 +16012,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateCarrierConnectionMutationInput", + "name": "DeleteAPIKeyMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "password", "description": null, "type": { "kind": "NON_NULL", @@ -25806,69 +16031,15 @@ "defaultValue": null }, { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - }, - { - "name": "carrier_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "credentials", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "capabilities", + "name": "key", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null @@ -25880,7 +16051,7 @@ }, { "kind": "OBJECT", - "name": "UpdateCarrierConnectionMutation", + "name": "DeleteAPIKeyMutation", "description": null, "fields": [ { @@ -25904,17 +16075,13 @@ "deprecationReason": null }, { - "name": "connection", + "name": "label", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CarrierConnectionType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -25927,12 +16094,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "SystemCarrierMutationInput", + "name": "RequestEmailChangeMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "email", "description": null, "type": { "kind": "NON_NULL", @@ -25946,22 +16113,30 @@ "defaultValue": null }, { - "name": "enable", + "name": "password", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "config", + "name": "redirect_url", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -25972,7 +16147,7 @@ }, { "kind": "OBJECT", - "name": "SystemCarrierMutation", + "name": "RequestEmailChangeMutation", "description": null, "fields": [ { @@ -25996,12 +16171,12 @@ "deprecationReason": null }, { - "name": "carrier", + "name": "user", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "SystemConnectionType", + "name": "UserType", "ofType": null }, "isDeprecated": false, @@ -26015,12 +16190,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "DeleteMutationInput", + "name": "ConfirmEmailChangeMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "token", "description": null, "type": { "kind": "NON_NULL", @@ -26040,7 +16215,7 @@ }, { "kind": "OBJECT", - "name": "DeleteMutation", + "name": "ConfirmEmailChangeMutation", "description": null, "fields": [ { @@ -26064,17 +16239,13 @@ "deprecationReason": null }, { - "name": "id", + "name": "user", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "UserType", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -26087,12 +16258,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "PartialShipmentMutationInput", + "name": "ConfirmEmailMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "token", "description": null, "type": { "kind": "NON_NULL", @@ -26104,60 +16275,21 @@ } }, "defaultValue": null - }, - { - "name": "recipient", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shipper", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "return_address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "billing_address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateCustomsInput", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ConfirmEmailMutation", + "description": null, + "fields": [ { - "name": "parcels", + "name": "errors", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -26165,102 +16297,164 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateParcelInput", + "kind": "OBJECT", + "name": "ErrorType", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "payment", + "name": "success", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PaymentInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangePasswordMutationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "label_type", + "name": "old_password", "description": null, "type": { - "kind": "ENUM", - "name": "LabelTypeEnum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "metadata", + "name": "new_password1", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "options", + "name": "new_password2", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangePasswordMutation", + "description": null, + "fields": [ + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ErrorType", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "reference", + "name": "user", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UserType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "PaymentInput", + "name": "RequestPasswordResetMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "account_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "paid_by", + "name": "email", "description": null, "type": { - "kind": "ENUM", - "name": "PaidByEnum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "currency", + "name": "redirect_url", "description": null, "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -26271,7 +16465,7 @@ }, { "kind": "OBJECT", - "name": "PartialShipmentMutation", + "name": "RequestPasswordResetMutation", "description": null, "fields": [ { @@ -26295,13 +16489,33 @@ "deprecationReason": null }, { - "name": "shipment", + "name": "email", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "ShipmentType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "redirect_url", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -26314,12 +16528,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "MetadataMutationInput", + "name": "ConfirmPasswordResetMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "uid", "description": null, "type": { "kind": "NON_NULL", @@ -26333,47 +16547,43 @@ "defaultValue": null }, { - "name": "object_type", + "name": "token", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MetadataObjectTypeEnum", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "added_values", + "name": "new_password1", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "discarded_keys", + "name": "new_password2", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null @@ -26384,49 +16594,76 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "MetadataObjectTypeEnum", + "kind": "OBJECT", + "name": "ConfirmPasswordResetMutation", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "carrier", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commodity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "shipment", + "name": "errors", "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ErrorType", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tracker", + "name": "user", "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "UserType", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EnableMultiFactorMutationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "order", + "name": "password", "description": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "MetadataMutation", + "name": "EnableMultiFactorMutation", "description": null, "fields": [ { @@ -26450,33 +16687,13 @@ "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadata", + "name": "user", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } + "kind": "OBJECT", + "name": "UserType", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -26489,12 +16706,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ChangeShipmentStatusMutationInput", + "name": "ConfirmMultiFactorMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "token", "description": null, "type": { "kind": "NON_NULL", @@ -26506,16 +16723,6 @@ } }, "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ManualShipmentStatusEnum", - "ofType": null - }, - "defaultValue": null } ], "interfaces": null, @@ -26523,43 +16730,76 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "ManualShipmentStatusEnum", + "kind": "OBJECT", + "name": "ConfirmMultiFactorMutation", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "in_transit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "needs_attention", + "name": "errors", "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ErrorType", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delivery_failed", + "name": "user", "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "UserType", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DisableMultiFactorMutationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "delivered", + "name": "password", "description": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ChangeShipmentStatusMutation", + "name": "DisableMultiFactorMutation", "description": null, "fields": [ { @@ -26583,12 +16823,12 @@ "deprecationReason": null }, { - "name": "shipment", + "name": "user", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "ShipmentType", + "name": "UserType", "ofType": null }, "isDeprecated": false, @@ -26602,12 +16842,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateRateSheetMutationInput", + "name": "CreateAddressTemplateInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "label", "description": null, "type": { "kind": "NON_NULL", @@ -26621,52 +16861,26 @@ "defaultValue": null }, { - "name": "carrier_name", + "name": "address", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CarrierNameEnum", + "kind": "INPUT_OBJECT", + "name": "AddressInput", "ofType": null } }, "defaultValue": null }, { - "name": "services", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateServiceLevelInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "carriers", + "name": "is_default", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null } @@ -26677,76 +16891,62 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateServiceLevelInput", + "name": "AddressInput", "description": null, "fields": null, "inputFields": [ { - "name": "service_name", + "name": "country_code", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "CountryCodeEnum", + "ofType": null }, "defaultValue": null }, { - "name": "service_code", + "name": "postal_code", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "currency", + "name": "city", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "zones", + "name": "federal_tax_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceZoneInput", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state_tax_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "carrier_service_code", + "name": "person_name", "description": null, "type": { "kind": "SCALAR", @@ -26756,7 +16956,7 @@ "defaultValue": null }, { - "name": "description", + "name": "company_name", "description": null, "type": { "kind": "SCALAR", @@ -26766,117 +16966,171 @@ "defaultValue": null }, { - "name": "active", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transit_days", + "name": "phone_number", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transit_time", + "name": "state_code", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "max_width", + "name": "suburb", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "max_height", + "name": "residential", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "max_length", + "name": "street_number", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "dimension_unit", + "name": "address_line1", "description": null, "type": { - "kind": "ENUM", - "name": "DimensionUnitEnum", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "min_weight", + "name": "address_line2", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "max_weight", + "name": "validate_location", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateAddressTemplateMutation", + "description": null, + "fields": [ + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ErrorType", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "weight_unit", + "name": "template", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "WeightUnitEnum", + "kind": "OBJECT", + "name": "AddressTemplateType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateAddressTemplateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "label", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "domicile", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", "ofType": null }, "defaultValue": null }, { - "name": "international", + "name": "is_default", "description": null, "type": { "kind": "SCALAR", @@ -26886,12 +17140,16 @@ "defaultValue": null }, { - "name": "metadata", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -26902,26 +17160,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceZoneInput", + "name": "UpdateAddressInput", "description": null, "fields": null, "inputFields": [ { - "name": "rate", + "name": "country_code", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } + "kind": "ENUM", + "name": "CountryCodeEnum", + "ofType": null }, "defaultValue": null }, { - "name": "label", + "name": "postal_code", "description": null, "type": { "kind": "SCALAR", @@ -26931,126 +17185,152 @@ "defaultValue": null }, { - "name": "min_weight", + "name": "city", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "max_weight", + "name": "federal_tax_id", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transit_days", + "name": "state_tax_id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transit_time", + "name": "person_name", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "radius", + "name": "company_name", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "latitude", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "longitude", + "name": "phone_number", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "cities", + "name": "state_code", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "postal_codes", + "name": "suburb", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "country_codes", + "name": "residential", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "street_number", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address_line1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address_line2", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validate_location", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } @@ -27061,7 +17341,7 @@ }, { "kind": "OBJECT", - "name": "CreateRateSheetMutation", + "name": "UpdateAddressTemplateMutation", "description": null, "fields": [ { @@ -27085,12 +17365,12 @@ "deprecationReason": null }, { - "name": "rate_sheet", + "name": "template", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "RateSheetType", + "name": "AddressTemplateType", "ofType": null }, "isDeprecated": false, @@ -27104,12 +17384,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateRateSheetMutationInput", + "name": "CreateCustomsTemplateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "label", "description": null, "type": { "kind": "NON_NULL", @@ -27123,48 +17403,26 @@ "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "services", + "name": "customs", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateServiceLevelInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomsInput", + "ofType": null } }, "defaultValue": null }, { - "name": "carriers", + "name": "is_default", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null } @@ -27175,80 +17433,34 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateServiceLevelInput", + "name": "CustomsInput", "description": null, "fields": null, "inputFields": [ { - "name": "service_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "service_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "currency", - "description": null, - "type": { - "kind": "ENUM", - "name": "CurrencyCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "zones", + "name": "commodities", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateServiceZoneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommodityInput", + "ofType": null + } } } }, "defaultValue": null }, { - "name": "carrier_service_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", + "name": "certify", "description": null, "type": { "kind": "SCALAR", @@ -27258,131 +17470,101 @@ "defaultValue": null }, { - "name": "transit_days", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transit_time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max_width", + "name": "commercial_invoice", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "max_height", + "name": "content_type", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "CustomsContentTypeEnum", "ofType": null }, "defaultValue": null }, { - "name": "max_length", + "name": "content_description", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "dimension_unit", + "name": "incoterm", "description": null, "type": { "kind": "ENUM", - "name": "DimensionUnitEnum", + "name": "IncotermCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "min_weight", + "name": "invoice", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "max_weight", + "name": "invoice_date", "description": null, "type": { "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "weight_unit", - "description": null, - "type": { - "kind": "ENUM", - "name": "WeightUnitEnum", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "domicile", + "name": "signer", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "international", + "name": "duty", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "DutyInput", "ofType": null }, "defaultValue": null }, { - "name": "metadata", + "name": "duty_billing_address", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "options", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null @@ -27394,92 +17576,90 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateServiceZoneInput", + "name": "CommodityInput", "description": null, "fields": null, "inputFields": [ { - "name": "rate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "label", + "name": "weight", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, "defaultValue": null }, { - "name": "min_weight", + "name": "weight_unit", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WeightUnitEnum", + "ofType": null + } }, "defaultValue": null }, { - "name": "max_weight", + "name": "quantity", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, - "defaultValue": null + "defaultValue": "1" }, { - "name": "transit_days", + "name": "sku", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transit_time", + "name": "title", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "radius", + "name": "hs_code", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "latitude", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "longitude", + "name": "value_amount", "description": null, "type": { "kind": "SCALAR", @@ -27489,151 +17669,82 @@ "defaultValue": null }, { - "name": "cities", + "name": "origin_country", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "CountryCodeEnum", + "ofType": null }, "defaultValue": null }, { - "name": "postal_codes", + "name": "value_currency", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "CurrencyCodeEnum", + "ofType": null }, "defaultValue": null }, { - "name": "country_codes", + "name": "metadata", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateRateSheetMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "rate_sheet", + "name": "parent_id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "RateSheetType", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "CreateWebhookMutationInput", + "name": "DutyInput", "description": null, "fields": null, "inputFields": [ { - "name": "url", + "name": "paid_by", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PaidByEnum", "ofType": null } }, "defaultValue": null }, { - "name": "enabled_events", + "name": "currency", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventTypes", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "CurrencyCodeEnum", + "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "account_number", "description": null, "type": { "kind": "SCALAR", @@ -27643,14 +17754,24 @@ "defaultValue": null }, { - "name": "disabled", + "name": "declared_value", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, - "defaultValue": "false" + "defaultValue": null + }, + { + "name": "bill_to", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -27659,7 +17780,7 @@ }, { "kind": "OBJECT", - "name": "CreateWebhookMutation", + "name": "CreateCustomsTemplateMutation", "description": null, "fields": [ { @@ -27683,12 +17804,12 @@ "deprecationReason": null }, { - "name": "webhook", + "name": "template", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "WebhookType", + "name": "CustomsTemplateType", "ofType": null }, "isDeprecated": false, @@ -27702,26 +17823,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateWebhookMutationInput", + "name": "UpdateCustomsTemplateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", + "name": "label", "description": null, "type": { "kind": "SCALAR", @@ -27731,44 +17838,36 @@ "defaultValue": null }, { - "name": "enabled_events", + "name": "customs", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventTypes", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "UpdateCustomsInput", + "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "is_default", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "disabled", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -27778,14 +17877,14 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "UpdateWebhookMutation", + "kind": "INPUT_OBJECT", + "name": "UpdateCustomsInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "errors", + "name": "commodities", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -27793,77 +17892,66 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ErrorType", + "kind": "INPUT_OBJECT", + "name": "UpdateCommodityInput", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "webhook", + "name": "certify", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "WebhookType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateOrderMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, + { + "name": "commercial_invoice", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { - "name": "shipping_to", + "name": "content_type", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - } + "kind": "ENUM", + "name": "CustomsContentTypeEnum", + "ofType": null }, "defaultValue": null }, { - "name": "line_items", + "name": "content_description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommodityInput", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "order_id", + "name": "incoterm", + "description": null, + "type": { + "kind": "ENUM", + "name": "IncotermCodeEnum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "invoice", "description": null, "type": { "kind": "SCALAR", @@ -27873,7 +17961,7 @@ "defaultValue": null }, { - "name": "order_date", + "name": "invoice_date", "description": null, "type": { "kind": "SCALAR", @@ -27883,31 +17971,31 @@ "defaultValue": null }, { - "name": "shipping_from", + "name": "signer", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "billing_address", + "name": "duty", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "AddressInput", + "name": "UpdateDutyInput", "ofType": null }, "defaultValue": null }, { - "name": "metadata", + "name": "duty_billing_address", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", "ofType": null }, "defaultValue": null @@ -27921,339 +18009,191 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateOrderMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "order", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "OrderType", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "UpdateOrderMutationInput", + "name": "UpdateCommodityInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "weight", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "order_id", + "name": "weight_unit", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "WeightUnitEnum", "ofType": null }, "defaultValue": null }, { - "name": "order_date", + "name": "quantity", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "shipping_to", + "name": "sku", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "shipping_from", + "name": "title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "billing_address", + "name": "hs_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateAddressInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "metadata", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "options", + "name": "value_amount", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "line_items", + "name": "origin_country", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCommodityInput", - "ofType": null - } - } + "kind": "ENUM", + "name": "CountryCodeEnum", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateOrderMutation", - "description": null, - "fields": [ - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "order", + "name": "value_currency", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "OrderType", + "kind": "ENUM", + "name": "CurrencyCodeEnum", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteOrderMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "id", + "name": "metadata", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteOrderMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "parent_id", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "CreateDocumentTemplateMutationInput", + "name": "UpdateDutyInput", "description": null, "fields": null, "inputFields": [ { - "name": "slug", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "template", + "name": "paid_by", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "PaidByEnum", + "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "currency", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "CurrencyCodeEnum", "ofType": null }, - "defaultValue": "true" + "defaultValue": null }, { - "name": "description", + "name": "account_number", "description": null, "type": { "kind": "SCALAR", @@ -28263,21 +18203,21 @@ "defaultValue": null }, { - "name": "metadata", + "name": "declared_value", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "related_object", + "name": "bill_to", "description": null, "type": { - "kind": "ENUM", - "name": "TemplateRelatedObject", + "kind": "INPUT_OBJECT", + "name": "AddressInput", "ofType": null }, "defaultValue": null @@ -28289,7 +18229,7 @@ }, { "kind": "OBJECT", - "name": "CreateDocumentTemplateMutation", + "name": "UpdateCustomsTemplateMutation", "description": null, "fields": [ { @@ -28318,7 +18258,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "DocumentTemplateType", + "name": "CustomsTemplateType", "ofType": null }, "isDeprecated": false, @@ -28332,12 +18272,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDocumentTemplateMutationInput", + "name": "CreateParcelTemplateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "label", "description": null, "type": { "kind": "NON_NULL", @@ -28351,47 +18291,100 @@ "defaultValue": null }, { - "name": "slug", + "name": "parcel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ParcelInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "is_default", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ParcelInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "weight", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "name", + "name": "weight_unit", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WeightUnitEnum", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "width", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "height", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "length", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "packaging_type", "description": null, "type": { "kind": "SCALAR", @@ -28401,121 +18394,89 @@ "defaultValue": null }, { - "name": "related_object", + "name": "package_preset", "description": null, "type": { - "kind": "ENUM", - "name": "TemplateRelatedObject", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateDocumentTemplateMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "description", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "template", + "name": "content", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "DocumentTemplateType", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateDataTemplateMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "slug", + "name": "is_document", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "dimension_unit", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "DimensionUnitEnum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reference_number", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "fields_mapping", + "name": "freight_class", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "resource_type", + "name": "items", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ResourceStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommodityInput", + "ofType": null + } } }, "defaultValue": null @@ -28527,7 +18488,7 @@ }, { "kind": "OBJECT", - "name": "CreateDataTemplateMutation", + "name": "CreateParcelTemplateMutation", "description": null, "fields": [ { @@ -28556,7 +18517,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "DataTemplateType", + "name": "ParcelTemplateType", "ofType": null }, "isDeprecated": false, @@ -28570,10 +18531,40 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateDataTemplateMutationInput", + "name": "UpdateParcelTemplateInput", "description": null, "fields": null, "inputFields": [ + { + "name": "label", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parcel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateParcelInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_default", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": null, @@ -28587,205 +18578,172 @@ } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateParcelInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "slug", + "name": "weight", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "weight_unit", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "WeightUnitEnum", "ofType": null }, "defaultValue": null }, { - "name": "fields_mapping", + "name": "width", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "resource_type", + "name": "height", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateDataTemplateMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "length", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "template", + "name": "packaging_type", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "DataTemplateType", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateAppMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "display_name", + "name": "package_preset", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "developer_name", + "name": "description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "launch_url", + "name": "content", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "is_embedded", + "name": "is_document", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "features", + "name": "dimension_unit", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "DimensionUnitEnum", + "ofType": null }, "defaultValue": null }, { - "name": "redirect_uris", + "name": "reference_number", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "is_public", + "name": "freight_class", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": "false" + "defaultValue": null }, { - "name": "metadata", + "name": "items", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCommodityInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null }, "defaultValue": null @@ -28797,7 +18755,7 @@ }, { "kind": "OBJECT", - "name": "CreateAppMutation", + "name": "UpdateParcelTemplateMutation", "description": null, "fields": [ { @@ -28821,24 +18779,12 @@ "deprecationReason": null }, { - "name": "app", + "name": "template", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "AppType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "client_secret", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + "name": "ParcelTemplateType", "ofType": null }, "isDeprecated": false, @@ -28852,12 +18798,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateAppMutationInput", + "name": "CreateCarrierConnectionMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "carrier_name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CarrierNameEnum", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "carrier_id", "description": null, "type": { "kind": "NON_NULL", @@ -28871,47 +18831,51 @@ "defaultValue": null }, { - "name": "display_name", + "name": "credentials", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } }, "defaultValue": null }, { - "name": "developer_name", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "defaultValue": "true" }, { - "name": "launch_url", + "name": "config", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null }, { - "name": "is_embedded", + "name": "metadata", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JSON", "ofType": null }, "defaultValue": null }, { - "name": "features", + "name": "capabilities", "description": null, "type": { "kind": "LIST", @@ -28927,36 +18891,6 @@ } }, "defaultValue": null - }, - { - "name": "redirect_uris", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null } ], "interfaces": null, @@ -28965,7 +18899,7 @@ }, { "kind": "OBJECT", - "name": "UpdateAppMutation", + "name": "CreateCarrierConnectionMutation", "description": null, "fields": [ { @@ -28989,13 +18923,17 @@ "deprecationReason": null }, { - "name": "app", + "name": "connection", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "AppType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CarrierConnectionType", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -29008,12 +18946,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "InstallAppMutationInput", + "name": "UpdateCarrierConnectionMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "app_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -29027,7 +18965,27 @@ "defaultValue": null }, { - "name": "metadata", + "name": "active", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "carrier_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "credentials", "description": null, "type": { "kind": "SCALAR", @@ -29035,71 +18993,41 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InstallAppMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "config", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "installation", + "name": "metadata", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "AppInstallationType", + "kind": "SCALAR", + "name": "JSON", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UninstallAppMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "app_id", + "name": "capabilities", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null @@ -29111,7 +19039,7 @@ }, { "kind": "OBJECT", - "name": "UninstallAppMutation", + "name": "UpdateCarrierConnectionMutation", "description": null, "fields": [ { @@ -29135,13 +19063,17 @@ "deprecationReason": null }, { - "name": "app", + "name": "connection", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "AppType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CarrierConnectionType", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -29154,12 +19086,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateWorkflowMutationInput", + "name": "SystemCarrierMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -29173,39 +19105,17 @@ "defaultValue": null }, { - "name": "action_nodes", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ActionNodeInput", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "description", + "name": "enable", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "metadata", + "name": "config", "description": null, "type": { "kind": "SCALAR", @@ -29213,30 +19123,21 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "template_slug", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowTriggerMutationInput", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SystemCarrierMutation", + "description": null, + "fields": [ { - "name": "actions", + "name": "errors", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -29244,67 +19145,108 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowActionMutationInput", + "kind": "OBJECT", + "name": "ErrorType", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carrier", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SystemConnectionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ActionNodeInput", + "name": "DeleteMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "order", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeleteMutation", + "description": null, + "fields": [ { - "name": "slug", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ErrorType", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "index", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "PartialWorkflowTriggerMutationInput", + "name": "PartialShipmentMutationInput", "description": null, "fields": null, "inputFields": [ @@ -29312,155 +19254,126 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "trigger_type", + "name": "recipient", "description": null, "type": { - "kind": "ENUM", - "name": "AutomationTriggerType", + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", "ofType": null }, "defaultValue": null }, { - "name": "schedule", + "name": "shipper", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", "ofType": null }, "defaultValue": null }, { - "name": "secret", + "name": "return_address", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", "ofType": null }, "defaultValue": null }, { - "name": "secret_key", + "name": "billing_address", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", "ofType": null }, "defaultValue": null }, { - "name": "template_slug", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowActionMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "customs", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UpdateCustomsInput", "ofType": null }, "defaultValue": null }, { - "name": "action_type", + "name": "parcels", "description": null, "type": { - "kind": "ENUM", - "name": "AutomationActionType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateParcelInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "port", + "name": "payment", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "PaymentInput", "ofType": null }, "defaultValue": null }, { - "name": "host", + "name": "label_type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LabelTypeEnum", "ofType": null }, "defaultValue": null }, { - "name": "endpoint", + "name": "metadata", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "options", "description": null, "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "method", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationHTTPMethod", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parameters_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationParametersType", + "name": "JSON", "ofType": null }, "defaultValue": null }, { - "name": "parameters_template", + "name": "reference", "description": null, "type": { "kind": "SCALAR", @@ -29468,9 +19381,20 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "header_template", + "name": "account_number", "description": null, "type": { "kind": "SCALAR", @@ -29480,38 +19404,39 @@ "defaultValue": null }, { - "name": "content_type", + "name": "paid_by", "description": null, "type": { "kind": "ENUM", - "name": "AutomationHTTPContentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", + "name": "PaidByEnum", "ofType": null }, "defaultValue": null }, { - "name": "template_slug", + "name": "currency", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CurrencyCodeEnum", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PartialShipmentMutation", + "description": null, + "fields": [ { - "name": "metafields", + "name": "errors", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -29519,57 +19444,41 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "MetafieldInput", + "kind": "OBJECT", + "name": "ErrorType", "ofType": null } } }, - "defaultValue": null - }, - { - "name": "connection", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowConnectionMutationInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "slug", + "name": "shipment", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ShipmentType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "MetafieldInput", + "name": "MetadataMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "key", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -29583,56 +19492,48 @@ "defaultValue": null }, { - "name": "type", + "name": "object_type", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "MetafieldTypeEnum", + "name": "MetadataObjectTypeEnum", "ofType": null } }, "defaultValue": null }, { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_required", + "name": "added_values", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } }, "defaultValue": null }, { - "name": "id", + "name": "discarded_keys", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null } @@ -29642,157 +19543,182 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowConnectionMutationInput", + "kind": "ENUM", + "name": "MetadataObjectTypeEnum", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "carrier", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "auth_type", + "name": "commodity", "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationAuthType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "port", + "name": "shipment", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "host", + "name": "tracker", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endpoint", + "name": "order", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MetadataMutation", + "description": null, + "fields": [ { - "name": "description", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ErrorType", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "credentials", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "auth_template", + "name": "metadata", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShipmentStatusMutationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "metadata", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "parameters_template", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ManualShipmentStatusEnum", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ManualShipmentStatusEnum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "template_slug", + "name": "in_transit", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "metafields", + "name": "needs_attention", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MetafieldInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", + "name": "delivery_failed", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delivered", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CreateWorkflowMutation", + "name": "ChangeShipmentStatusMutation", "description": null, "fields": [ { @@ -29816,12 +19742,12 @@ "deprecationReason": null }, { - "name": "workflow", + "name": "shipment", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "WorkflowType", + "name": "ShipmentType", "ofType": null }, "isDeprecated": false, @@ -29835,12 +19761,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowMutationInput", + "name": "CreateRateSheetMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "NON_NULL", @@ -29854,75 +19780,21 @@ "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_nodes", + "name": "carrier_name", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ActionNodeInput", - "ofType": null - } + "kind": "ENUM", + "name": "CarrierNameEnum", + "ofType": null } }, "defaultValue": null }, { - "name": "template_slug", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowTriggerMutationInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "actions", + "name": "services", "description": null, "type": { "kind": "LIST", @@ -29932,27 +19804,16 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PartialWorkflowActionMutationInput", + "name": "CreateServiceLevelInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateWorkflowMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "carriers", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -29960,41 +19821,27 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ErrorType", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflow", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "CreateWorkflowActionMutationInput", + "name": "CreateServiceLevelInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "service_name", "description": null, "type": { "kind": "NON_NULL", @@ -30008,41 +19855,57 @@ "defaultValue": null }, { - "name": "action_type", + "name": "service_code", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AutomationActionType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "port", + "name": "currency", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CurrencyCodeEnum", + "ofType": null + } }, "defaultValue": null }, { - "name": "host", + "name": "zones", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ServiceZoneInput", + "ofType": null + } + } + } }, "defaultValue": null }, { - "name": "endpoint", + "name": "carrier_service_code", "description": null, "type": { "kind": "SCALAR", @@ -30062,278 +19925,162 @@ "defaultValue": null }, { - "name": "method", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationHTTPMethod", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parameters_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationParametersType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parameters_template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "header_template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "AutomationHTTPContentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadata", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "template_slug", + "name": "transit_days", "description": null, "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metafields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateMetafieldInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "connection", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowConnectionMutationInput", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateMetafieldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MetafieldTypeEnum", - "ofType": null - } + "name": "transit_time", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "value", + "name": "max_width", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "namespace", + "name": "max_height", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "is_required", + "name": "max_length", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateWorkflowActionMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "dimension_unit", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } + "kind": "ENUM", + "name": "DimensionUnitEnum", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "workflow_action", + "name": "min_weight", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "WorkflowActionType", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowActionMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "name", + "name": "max_weight", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "action_type", + "name": "weight_unit", "description": null, "type": { "kind": "ENUM", - "name": "AutomationActionType", + "name": "WeightUnitEnum", "ofType": null }, "defaultValue": null }, { - "name": "port", + "name": "domicile", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "host", + "name": "international", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "endpoint", + "name": "metadata", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ServiceZoneInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "rate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "description", + "name": "label", "description": null, "type": { "kind": "SCALAR", @@ -30343,77 +20090,77 @@ "defaultValue": null }, { - "name": "method", + "name": "min_weight", "description": null, "type": { - "kind": "ENUM", - "name": "AutomationHTTPMethod", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "parameters_type", + "name": "max_weight", "description": null, "type": { - "kind": "ENUM", - "name": "AutomationParametersType", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "parameters_template", + "name": "transit_days", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "header_template", + "name": "transit_time", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "content_type", + "name": "radius", "description": null, "type": { - "kind": "ENUM", - "name": "AutomationHTTPContentType", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "metadata", + "name": "latitude", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "template_slug", + "name": "longitude", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "metafields", + "name": "cities", "description": null, "type": { "kind": "LIST", @@ -30422,8 +20169,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "MetafieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -30431,25 +20178,37 @@ "defaultValue": null }, { - "name": "connection", + "name": "postal_codes", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PartialWorkflowConnectionMutationInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "id", + "name": "country_codes", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null @@ -30461,7 +20220,7 @@ }, { "kind": "OBJECT", - "name": "UpdateWorkflowActionMutation", + "name": "CreateRateSheetMutation", "description": null, "fields": [ { @@ -30485,12 +20244,12 @@ "deprecationReason": null }, { - "name": "workflow_action", + "name": "rate_sheet", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "WorkflowActionType", + "name": "RateSheetType", "ofType": null }, "isDeprecated": false, @@ -30504,12 +20263,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateWorkflowConnectionMutationInput", + "name": "UpdateRateSheetMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -30523,31 +20282,122 @@ "defaultValue": null }, { - "name": "auth_type", + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "services", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateServiceLevelInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "carriers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateServiceLevelInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "service_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "service_code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "currency", + "description": null, + "type": { + "kind": "ENUM", + "name": "CurrencyCodeEnum", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "zones", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "AutomationAuthType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateServiceZoneInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "port", + "name": "carrier_service_code", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "host", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -30557,179 +20407,137 @@ "defaultValue": null }, { - "name": "endpoint", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "transit_days", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "credentials", + "name": "transit_time", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "auth_template", + "name": "max_width", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "metadata", + "name": "max_height", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "parameters_template", + "name": "max_length", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "template_slug", + "name": "dimension_unit", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "DimensionUnitEnum", "ofType": null }, "defaultValue": null }, { - "name": "metafields", + "name": "min_weight", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateMetafieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateWorkflowConnectionMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "max_weight", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "workflow_connection", + "name": "weight_unit", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "WorkflowConnectionType", + "kind": "ENUM", + "name": "WeightUnitEnum", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowConnectionMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "name", + "name": "domicile", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "auth_type", + "name": "international", "description": null, "type": { - "kind": "ENUM", - "name": "AutomationAuthType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "port", + "name": "metadata", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "JSON", "ofType": null }, "defaultValue": null }, { - "name": "host", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -30737,19 +20545,30 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateServiceZoneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "endpoint", + "name": "rate", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "label", "description": null, "type": { "kind": "SCALAR", @@ -30759,101 +20578,78 @@ "defaultValue": null }, { - "name": "credentials", + "name": "min_weight", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "auth_template", + "name": "max_weight", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "metadata", + "name": "transit_days", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "parameters_template", + "name": "transit_time", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "template_slug", + "name": "radius", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "metafields", + "name": "latitude", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MetafieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "longitude", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateWorkflowConnectionMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "cities", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -30861,74 +20657,47 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ErrorType", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflow_connection", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowConnectionType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateWorkflowEventMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "workflow_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "defaultValue": null }, { - "name": "event_type", + "name": "postal_codes", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "AutomationEventType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "parameters", + "name": "country_codes", "description": null, "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null } @@ -30939,7 +20708,7 @@ }, { "kind": "OBJECT", - "name": "CreateWorkflowEventMutation", + "name": "UpdateRateSheetMutation", "description": null, "fields": [ { @@ -30963,12 +20732,12 @@ "deprecationReason": null }, { - "name": "workflow_event", + "name": "rate_sheet", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "WorkflowEventType", + "name": "RateSheetType", "ofType": null }, "isDeprecated": false, @@ -30982,12 +20751,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CancelWorkflowEventMutationInput", + "name": "CreateWebhookMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "url", "description": null, "type": { "kind": "NON_NULL", @@ -30999,6 +20768,48 @@ } }, "defaultValue": null + }, + { + "name": "enabled_events", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventTypes", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "disabled", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" } ], "interfaces": null, @@ -31007,7 +20818,7 @@ }, { "kind": "OBJECT", - "name": "CancelWorkflowEventMutation", + "name": "CreateWebhookMutation", "description": null, "fields": [ { @@ -31031,12 +20842,12 @@ "deprecationReason": null }, { - "name": "workflow_event", + "name": "webhook", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "WorkflowEventType", + "name": "WebhookType", "ofType": null }, "isDeprecated": false, @@ -31050,12 +20861,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateWorkflowTriggerMutationInput", + "name": "UpdateWebhookMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "workflow_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -31069,21 +20880,7 @@ "defaultValue": null }, { - "name": "trigger_type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AutomationTriggerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "schedule", + "name": "url", "description": null, "type": { "kind": "SCALAR", @@ -31093,17 +20890,29 @@ "defaultValue": null }, { - "name": "secret", + "name": "enabled_events", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventTypes", + "ofType": null + } + } + } }, "defaultValue": null }, { - "name": "secret_key", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -31113,11 +20922,11 @@ "defaultValue": null }, { - "name": "template_slug", + "name": "disabled", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -31129,7 +20938,7 @@ }, { "kind": "OBJECT", - "name": "CreateWorkflowTriggerMutation", + "name": "UpdateWebhookMutation", "description": null, "fields": [ { @@ -31153,12 +20962,12 @@ "deprecationReason": null }, { - "name": "workflow_trigger", + "name": "webhook", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "WorkflowTriggerType", + "name": "WebhookType", "ofType": null }, "isDeprecated": false, @@ -31172,36 +20981,48 @@ }, { "kind": "INPUT_OBJECT", - "name": "UpdateWorkflowTriggerMutationInput", + "name": "CreateOrderMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "shipping_to", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AddressInput", "ofType": null } }, "defaultValue": null }, { - "name": "trigger_type", + "name": "line_items", "description": null, "type": { - "kind": "ENUM", - "name": "AutomationTriggerType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommodityInput", + "ofType": null + } + } + } }, "defaultValue": null }, { - "name": "schedule", + "name": "order_id", "description": null, "type": { "kind": "SCALAR", @@ -31211,7 +21032,7 @@ "defaultValue": null }, { - "name": "secret", + "name": "order_date", "description": null, "type": { "kind": "SCALAR", @@ -31221,21 +21042,41 @@ "defaultValue": null }, { - "name": "secret_key", + "name": "shipping_from", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "billing_address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metadata", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null }, { - "name": "template_slug", + "name": "options", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null @@ -31247,7 +21088,7 @@ }, { "kind": "OBJECT", - "name": "UpdateWorkflowTriggerMutation", + "name": "CreateOrderMutation", "description": null, "fields": [ { @@ -31271,12 +21112,12 @@ "deprecationReason": null }, { - "name": "workflow_trigger", + "name": "order", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "WorkflowTriggerType", + "name": "OrderType", "ofType": null }, "isDeprecated": false, @@ -31290,12 +21131,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CreateOrganizationMutationInput", + "name": "UpdateOrderMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -31307,84 +21148,94 @@ } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateOrganizationMutation", - "description": null, - "fields": [ + }, { - "name": "errors", + "name": "order_id", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ErrorType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "organization", + "name": "order_date", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "OrganizationType", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "id", + "name": "shipping_to", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shipping_from", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "billing_address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metadata", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "options", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null + }, + { + "name": "line_items", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCommodityInput", + "ofType": null + } + } + }, + "defaultValue": null } ], "interfaces": null, @@ -31393,7 +21244,7 @@ }, { "kind": "OBJECT", - "name": "UpdateOrganizationMutation", + "name": "UpdateOrderMutation", "description": null, "fields": [ { @@ -31417,12 +21268,12 @@ "deprecationReason": null }, { - "name": "organization", + "name": "order", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "OrganizationType", + "name": "OrderType", "ofType": null }, "isDeprecated": false, @@ -31436,7 +21287,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "DeleteOrganizationMutationInput", + "name": "DeleteOrderMutationInput", "description": null, "fields": null, "inputFields": [ @@ -31453,20 +21304,6 @@ } }, "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null } ], "interfaces": null, @@ -31475,7 +21312,7 @@ }, { "kind": "OBJECT", - "name": "DeleteOrganizationMutation", + "name": "DeleteOrderMutation", "description": null, "fields": [ { @@ -31499,12 +21336,12 @@ "deprecationReason": null }, { - "name": "organization", + "name": "id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "OrganizationType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -31518,12 +21355,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ChangeOrganizationOwnerMutationInput", + "name": "CreateDocumentTemplateMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "org_id", + "name": "slug", "description": null, "type": { "kind": "NON_NULL", @@ -31537,7 +21374,7 @@ "defaultValue": null }, { - "name": "email", + "name": "name", "description": null, "type": { "kind": "NON_NULL", @@ -31551,7 +21388,7 @@ "defaultValue": null }, { - "name": "password", + "name": "template", "description": null, "type": { "kind": "NON_NULL", @@ -31563,6 +21400,46 @@ } }, "defaultValue": null + }, + { + "name": "active", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metadata", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "related_object", + "description": null, + "type": { + "kind": "ENUM", + "name": "TemplateRelatedObject", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -31571,7 +21448,7 @@ }, { "kind": "OBJECT", - "name": "ChangeOrganizationOwnerMutation", + "name": "CreateDocumentTemplateMutation", "description": null, "fields": [ { @@ -31595,12 +21472,12 @@ "deprecationReason": null }, { - "name": "organization", + "name": "template", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "OrganizationType", + "name": "DocumentTemplateType", "ofType": null }, "isDeprecated": false, @@ -31614,12 +21491,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "SetOrganizationUserRolesMutationInput", + "name": "UpdateDocumentTemplateMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "org_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -31633,38 +21510,62 @@ "defaultValue": null }, { - "name": "user_id", + "name": "slug", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "roles", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UserRole", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "template", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "active", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "related_object", + "description": null, + "type": { + "kind": "ENUM", + "name": "TemplateRelatedObject", + "ofType": null }, "defaultValue": null } @@ -31675,7 +21576,7 @@ }, { "kind": "OBJECT", - "name": "SetOrganizationUserRolesMutation", + "name": "UpdateDocumentTemplateMutation", "description": null, "fields": [ { @@ -31699,12 +21600,12 @@ "deprecationReason": null }, { - "name": "organization", + "name": "template", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "OrganizationType", + "name": "DocumentTemplateType", "ofType": null }, "isDeprecated": false, @@ -31718,12 +21619,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "SendOrganizationInvitesMutationInput", + "name": "CreateDataTemplateMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "org_id", + "name": "slug", "description": null, "type": { "kind": "NON_NULL", @@ -31737,36 +21638,42 @@ "defaultValue": null }, { - "name": "emails", + "name": "name", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null }, { - "name": "redirect_url", + "name": "fields_mapping", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "JSON", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resource_type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceStatus", "ofType": null } }, @@ -31779,7 +21686,7 @@ }, { "kind": "OBJECT", - "name": "SendOrganizationInvitesMutation", + "name": "CreateDataTemplateMutation", "description": null, "fields": [ { @@ -31803,12 +21710,12 @@ "deprecationReason": null }, { - "name": "organization", + "name": "template", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "OrganizationType", + "name": "DataTemplateType", "ofType": null }, "isDeprecated": false, @@ -31822,12 +21729,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "AcceptOrganizationInvitationMutationInput", + "name": "UpdateDataTemplateMutationInput", "description": null, "fields": null, "inputFields": [ { - "name": "guid", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -31839,6 +21746,46 @@ } }, "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fields_mapping", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resource_type", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceStatus", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -31847,7 +21794,7 @@ }, { "kind": "OBJECT", - "name": "AcceptOrganizationInvitationMutation", + "name": "UpdateDataTemplateMutation", "description": null, "fields": [ { @@ -31871,12 +21818,12 @@ "deprecationReason": null }, { - "name": "organization", + "name": "template", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "OrganizationType", + "name": "DataTemplateType", "ofType": null }, "isDeprecated": false, diff --git a/schemas/openapi.yml b/schemas/openapi.yml index 1a6d6ab17..ff1083144 100644 --- a/schemas/openapi.yml +++ b/schemas/openapi.yml @@ -751,9 +751,9 @@ paths: `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, - `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, - `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, - `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, + `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, + `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, + `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u`' required: true tags: @@ -824,9 +824,9 @@ paths: `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, - `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, - `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, - `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, + `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, + `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, + `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u`' - in: query name: metadata_key @@ -1415,9 +1415,9 @@ paths: `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, - `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, - `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, - `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, + `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, + `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, + `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u`' - in: query name: created_after @@ -2302,6 +2302,7 @@ paths: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -2316,6 +2317,7 @@ paths: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -2396,6 +2398,7 @@ paths: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -2410,6 +2413,7 @@ paths: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -2490,6 +2494,7 @@ paths: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -2504,6 +2509,7 @@ paths: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -2677,6 +2683,7 @@ paths: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -2691,6 +2698,7 @@ paths: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -2826,6 +2834,7 @@ paths: - purolator - roadie - royalmail + - seko - sendle - tge - tnt @@ -2955,9 +2964,9 @@ paths: `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, - `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, - `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, - `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, + `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, + `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, + `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u`' - in: query name: created_after @@ -3389,9 +3398,9 @@ paths: `amazon_shipping`, `aramex`, `asendia_us`, `australiapost`, `boxknight`, `bpost`, `canadapost`, `canpar`, `chronopost`, `colissimo`, `dhl_express`, `dhl_parcel_de`, `dhl_poland`, `dhl_universal`, `dicom`, `dpd`, `dpdhl`, - `easypost`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, `geodis`, - `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, `royalmail`, - `sapient`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, + `easypost`, `easyship`, `eshipper`, `fedex`, `fedex_ws`, `freightcom`, `generic`, + `geodis`, `hay_post`, `laposte`, `locate2u`, `nationex`, `purolator`, `roadie`, + `royalmail`, `sapient`, `seko`, `sendle`, `tge`, `tnt`, `ups`, `usps`, `usps_international`, `usps_wt`, `usps_wt_international`, `zoom2u`' - in: query name: created_after @@ -3546,6 +3555,7 @@ paths: - purolator - roadie - royalmail + - seko - sendle - tge - tnt @@ -4818,6 +4828,7 @@ components: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -4832,6 +4843,7 @@ components: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -4842,7 +4854,7 @@ components: - usps_wt_international - zoom2u type: string - x-spec-enum-id: 43d080c02eec5b40 + x-spec-enum-id: 3812983dc743ed62 description: A carrier connection type. display_name: type: string @@ -4913,6 +4925,7 @@ components: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -4927,6 +4940,7 @@ components: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -4937,7 +4951,7 @@ components: - usps_wt_international - zoom2u type: string - x-spec-enum-id: 43d080c02eec5b40 + x-spec-enum-id: 3812983dc743ed62 description: A carrier connection type. carrier_id: type: string @@ -5016,6 +5030,7 @@ components: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -5030,6 +5045,7 @@ components: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -5040,7 +5056,7 @@ components: - usps_wt_international - zoom2u type: string - x-spec-enum-id: 43d080c02eec5b40 + x-spec-enum-id: 3812983dc743ed62 description: Indicates a carrier (type) display_name: type: string @@ -6014,6 +6030,7 @@ components: - $ref: '#/components/schemas/tnt' - $ref: '#/components/schemas/tge' - $ref: '#/components/schemas/sendle' + - $ref: '#/components/schemas/seko' - $ref: '#/components/schemas/sapient' - $ref: '#/components/schemas/royalmail' - $ref: '#/components/schemas/roadie' @@ -6028,6 +6045,7 @@ components: - $ref: '#/components/schemas/fedex_ws' - $ref: '#/components/schemas/fedex' - $ref: '#/components/schemas/eshipper' + - $ref: '#/components/schemas/easyship' - $ref: '#/components/schemas/easypost' - $ref: '#/components/schemas/dpdhl' - $ref: '#/components/schemas/dpd' @@ -8189,6 +8207,7 @@ components: - dpd - dpdhl - easypost + - easyship - eshipper - fedex - fedex_ws @@ -8203,6 +8222,7 @@ components: - roadie - royalmail - sapient + - seko - sendle - tge - tnt @@ -8213,7 +8233,7 @@ components: - usps_wt_international - zoom2u type: string - x-spec-enum-id: 43d080c02eec5b40 + x-spec-enum-id: 3812983dc743ed62 description: A carrier connection type. carrier_id: type: string @@ -9014,7 +9034,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -9120,7 +9141,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -9325,7 +9347,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -9438,7 +9461,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -9573,7 +9597,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -9620,7 +9645,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -9682,7 +9708,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -9800,7 +9827,8 @@ components: : true,\n \"email_notification_to\": \"shipper@mail.com\",\n\ \ \"hold_at_location\": true,\n \"paperless_trade\"\ : true,\n \"preferred_service\": \"fedex_express_saver\",\n\ - \ \"shipment_date\": \"2020-01-01\",\n \"shipment_note\"\ + \ \"shipment_date\": \"2020-01-01\", # TODO: deprecate\n \ + \ \"shipping_date\": \"2020-01-01T00:00\",\n \"shipment_note\"\ : \"This is a shipment note\",\n \"signature_confirmation\"\ : true,\n \"saturday_delivery\": true,\n \"is_return\"\ : true,\n \"doc_files\": [\n {\n \ @@ -10149,6 +10177,7 @@ components: - purolator - roadie - royalmail + - seko - sendle - tge - tnt @@ -10159,7 +10188,7 @@ components: - usps_wt_international - zoom2u type: string - x-spec-enum-id: 5af7591a7c1a0806 + x-spec-enum-id: 0253dcf2d811f867 description: The tracking carrier account_number: type: string @@ -10878,6 +10907,13 @@ components: type: string required: - api_key + easyship: + type: object + properties: + access_token: + type: string + required: + - access_token eshipper: type: object properties: @@ -11084,6 +11120,13 @@ components: - client_id - client_secret - shipping_account_id + seko: + type: object + properties: + access_key: + type: string + required: + - access_key sendle: type: object properties: @@ -11337,6 +11380,7 @@ tags: | tnt | TNT | | tge | TGE | | sendle | Sendle | + | seko | SEKO Logistics | | sapient | SAPIENT | | royalmail | Royal Mail | | roadie | Roadie | @@ -11350,6 +11394,7 @@ tags: | fedex_ws | FedEx Web Service | | fedex | FedEx | | eshipper | eShipper | + | easyship | Easyship | | easypost | EasyPost | | dpdhl | Deutsche Post DHL | | dpd | DPD | @@ -11573,6 +11618,15 @@ tags: | sendle_standard_dropoff | STANDARD-DROPOFF | | sendle_express_pickup | EXPRESS-PICKUP | + ### SEKO Logistics + | Code | Service Name | + | ------------ | ------------ | + | seko_ecommerce_standard_tracked | eCommerce Standard Tracked | + | seko_ecommerce_express_tracked | eCommerce Express Tracked | + | seko_domestic_express | Domestic Express | + | seko_domestic_standard | Domestic Standard | + | seko_domestic_large_parcel | Domestic Large Parcel | + ### SAPIENT | Code | Service Name | | ------------ | ------------ | @@ -12026,200 +12080,418 @@ tags: ### eShipper | Code | Service Name | | ------------ | ------------ | - | eshipper_aramex_economy_document_express | 5000049 | - | eshipper_aramex_economy_parcel_express | 5000048 | - | eshipper_aramex_priority_letter_express | 5000046 | - | eshipper_aramex_priority_parcel_express | 5000047 | - | eshipper_canada_post_air_parcel_intl | 5000030 | - | eshipper_canada_post_expedited | 5000026 | - | eshipper_canada_post_expedited_parcel_usa | 5000032 | - | eshipper_canada_post_priority_courier | 5000024 | - | eshipper_canada_post_regular | 5000027 | - | eshipper_canada_post_small_packet | 5000033 | - | eshipper_canada_post_small_packet_international_air | 5000034 | - | eshipper_canada_post_small_packet_international_surface | 5000035 | - | eshipper_canada_post_surface_parcel_intl | 5000031 | - | eshipper_canada_post_xpress_post | 5000025 | - | eshipper_canada_post_xpress_post_intl | 5000029 | - | eshipper_canada_post_xpress_post_usa | 5000028 | - | eshipper_canada_post_xpresspost | 5000181 | - | eshipper_canpar_express_letter | 5000129 | - | eshipper_canpar_express_pak | 5000130 | - | eshipper_canpar_express_parcel | 5000131 | - | eshipper_canpar_ground | 5000184 | - | eshipper_canpar_international | 5000135 | - | eshipper_canpar_select_letter | 5000126 | - | eshipper_canpar_select_pak | 5000127 | - | eshipper_canpar_select_parcel | 5000128 | - | eshipper_canpar_usa | 5000125 | - | eshipper_canpar_usa_select_letter | 5000132 | - | eshipper_canpar_usa_select_pak | 5000133 | - | eshipper_canpar_usa_select_parcel | 5000134 | - | eshipper_cpx_canada_post | 5000454 | - | eshipper_day_ross_ltl | 5000457 | - | eshipper_dhl_dhl_ground | 5000022 | - | eshipper_dhl_economy_select | 5000186 | - | eshipper_dhl_esi_export | 5000018 | - | eshipper_dhl_express_1030am | 5000016 | - | eshipper_dhl_express_12pm | 5000017 | - | eshipper_dhl_express_900 | 5000180 | - | eshipper_dhl_express_9am | 5000014 | - | eshipper_dhl_express_envelope | 5000023 | - | eshipper_dhl_express_worldwide | 5000015 | - | eshipper_dhl_import_express | 5000019 | - | eshipper_dhl_import_express_12pm | 5000021 | - | eshipper_dhl_import_express_9am | 5000020 | - | eshipper_ltl_apex_v | 5000414 | - | eshipper_ltl_apex_trucking | 5000120 | - | eshipper_ltl_apex_trucking_v | 5000124 | - | eshipper_ltl_fastfrate_rail | 5000118 | - | eshipper_ltl_kindersley_expedited | 5000420 | - | eshipper_ltl_kindersley_rail | 5000121 | - | eshipper_ltl_kindersley_regular | 5000421 | - | eshipper_ltl_kindersley_road | 5000122 | - | eshipper_ltl_kingsway_road | 5000117 | - | eshipper_ltl_m_o_eastbound | 5000123 | - | eshipper_ltl_mo_rail | 5000116 | - | eshipper_ltl_national_fastfreight_rail | 5000114 | - | eshipper_ltl_national_fastfreight_road | 5000119 | - | eshipper_ltl_vitran_rail | 5000112 | - | eshipper_ltl_vitran_road | 5000113 | - | eshipper_ltl_western_canada_rail | 5000115 | - | eshipper_federal_express_2day_freight | 5000177 | - | eshipper_federal_express_3day_freight | 5000178 | - | eshipper_federal_express_fedex_2nd_day | 5000173 | - | eshipper_federal_express_fedex_economy | 5000174 | - | eshipper_federal_express_fedex_first_overnight | 5000170 | - | eshipper_federal_express_fedex_ground | 5000171 | - | eshipper_federal_express_fedex_ground_us | 5000183 | - | eshipper_federal_express_fedex_international_priority | 8000017 | - | eshipper_federal_express_fedex_international_priority_express | 8000018 | - | eshipper_federal_express_fedex_intl_economy | 5000179 | - | eshipper_federal_express_fedex_intl_economy_freight | 5000176 | - | eshipper_federal_express_fedex_intl_priority | 8000022 | - | eshipper_federal_express_fedex_intl_priority_express | 8000023 | - | eshipper_federal_express_fedex_intl_priority_freight | 5000175 | - | eshipper_federal_express_fedex_priority | 5000169 | - | eshipper_federal_express_fedex_standard_overnight | 5000172 | - | eshipper_flashbird_ground | 8000032 | - | eshipper_fleet_optics_ground | 5000458 | - | eshipper_project44_a_duie_pyle | 5000103 | - | eshipper_project44_aaa_cooper_transportation | 5000081 | - | eshipper_project44_aberdeen_express | 5000092 | - | eshipper_project44_abfs | 5000111 | - | eshipper_project44_averitt_express | 5000079 | - | eshipper_project44_brown_transfer_company | 5000102 | - | eshipper_project44_central_freight_lines | 5000066 | - | eshipper_project44_central_transport | 5000085 | - | eshipper_project44_chicago_suburban_express | 5000086 | - | eshipper_project44_clear_lane_freight | 5000095 | - | eshipper_project44_con_way_freight | 5000057 | - | eshipper_project44_crosscountry_courier | 5000083 | - | eshipper_project44_day_ross | 5000099 | - | eshipper_project44_day_ross_v | 5000101 | - | eshipper_project44_dayton_freight_lines | 5000072 | - | eshipper_project44_dependable_highway_express | 5000091 | - | eshipper_project44_dohrn_transfer_company | 5000078 | - | eshipper_project44_dugan_truck_line | 5000076 | - | eshipper_project44_estes_express_lines | 5000061 | - | eshipper_project44_expedited_freight_systems | 5000077 | - | eshipper_project44_fedex_freight_canada | 5000105 | - | eshipper_project44_fedex_freight_east | 5000059 | - | eshipper_project44_fedex_freight_national_canada | 5000107 | - | eshipper_project44_fedex_freight_national_usa | 5000108 | - | eshipper_project44_fedex_freight_usa | 5000106 | - | eshipper_project44_fedex_national | 5000060 | - | eshipper_project44_forwardair | 5000062 | - | eshipper_project44_frontline_freight | 5000096 | - | eshipper_project44_holland_motor_express | 5000051 | - | eshipper_project44_lakeville_motor_express | 5000074 | - | eshipper_project44_manitoulin_tlx_inc | 5000104 | - | eshipper_project44_midwest_motor_express | 5000075 | - | eshipper_project44_monroe_transportation_services | 5000087 | - | eshipper_project44_n_m_transfer | 5000090 | - | eshipper_project44_new_england_motor_freight | 5000064 | - | eshipper_project44_new_penn_motor_express | 5000054 | - | eshipper_project44_pitt_ohio | 5000071 | - | eshipper_project44_polaris | 5000094 | - | eshipper_project44_purolator_freight | 5000100 | - | eshipper_project44_rl_carriers | 5000058 | - | eshipper_project44_roadrunner_transportation_services | 5000052 | - | eshipper_project44_saia_motor_freight | 5000067 | - | eshipper_project44_southeastern_freight_lines | 5000082 | - | eshipper_project44_southwestern_motor_transport | 5000084 | - | eshipper_project44_standard_forwarding | 5000093 | - | eshipper_project44_total_transportation_distribution | 5000097 | - | eshipper_project44_tst_overland_express | 5000098 | - | eshipper_project44_ups | 5000073 | - | eshipper_project44_usf_reddaway | 5000080 | - | eshipper_project44_valley_cartage | 5000089 | - | eshipper_project44_vision_express_ltl | 5000065 | - | eshipper_project44_ward_trucking | 5000088 | - | eshipper_project44_xpo_logistics | 5000110 | - | eshipper_project44_xpress_global_systems | 5000109 | - | eshipper_project44_yrc | 5000053 | - | eshipper_purolator_express | 5000001 | - | eshipper_purolator_express_1030 | 5000003 | - | eshipper_purolator_express_9am | 5000002 | - | eshipper_purolator_expresscheque | 5000011 | - | eshipper_purolator_ground | 5000010 | - | eshipper_purolator_ground_1030 | 5000013 | - | eshipper_purolator_ground_9am | 5000012 | - | eshipper_purolator_puroletter | 5000004 | - | eshipper_purolator_puroletter_1030 | 5000006 | - | eshipper_purolator_puroletter_9am | 5000005 | - | eshipper_purolator_puropak | 5000007 | - | eshipper_purolator_puropak_1030 | 5000009 | - | eshipper_purolator_puropak_9am | 5000008 | - | eshipper_pyk_ground_advantage | 5000459 | - | eshipper_pyk_priority_mail | 5000460 | - | eshipper_sameday_9am_guaranteed | 5000156 | - | eshipper_sameday_am_service | 5000157 | - | eshipper_sameday_ground_service | 5000158 | - | eshipper_sameday_h1_deliver_to_curbside | 5000159 | - | eshipper_sameday_h2_delivery_to_room_of_choice | 5000160 | - | eshipper_sameday_h3_delivery_packaging_removal | 5000161 | - | eshipper_sameday_h4_delivery_to_curbside | 5000162 | - | eshipper_sameday_h5_delivery_to_room_of_choice_2_man | 5000163 | - | eshipper_sameday_h6_delivery_packaging_removal_2_man | 5000164 | - | eshipper_sameday_ltl_service | 5000165 | - | eshipper_sameday_pm_service | 5000166 | - | eshipper_sameday_urgent_letter | 5000167 | - | eshipper_sameday_urgent_pac | 5000168 | - | eshipper_skip | 8000019 | - | eshipper_smartepost_intl_dhl_parcel_international_direct_ngr | 8000053 | - | eshipper_smartepost_intl_global_mail_business_priority | 5000137 | - | eshipper_smartepost_intl_global_mail_business_standard | 5000138 | - | eshipper_smartepost_intl_global_mail_packet_plus_priority | 5000139 | - | eshipper_smartepost_intl_global_mail_packet_priority | 5000140 | - | eshipper_smartepost_intl_global_mail_packet_standard | 5000141 | - | eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz | 5000142 | - | eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz | 5000143 | - | eshipper_smartepost_intl_global_mail_parcel_priority | 5000144 | - | eshipper_smartepost_intl_global_mail_parcel_standard | 5000145 | - | eshipper_ups_expedited | 5000182 | - | eshipper_ups_express | 5000036 | - | eshipper_ups_express_early_am | 5000040 | - | eshipper_ups_ground | 5000043 | - | eshipper_ups_second_day_air_am | 5000045 | - | eshipper_ups_standard | 5000039 | - | eshipper_ups_three_day_select | 5000041 | - | eshipper_ups_ups_saver | 5000042 | - | eshipper_ups_worldwide_expedited | 5000038 | - | eshipper_ups_worldwide_express | 5000037 | - | eshipper_ups_worldwide_express_plus | 5000044 | - | eshipper_usps_first_class_mail | 5000146 | - | eshipper_usps_first_class_package_return_service | 8000002 | - | eshipper_usps_library_mail | 5000147 | - | eshipper_usps_media_mail | 5000148 | - | eshipper_usps_parcel_select | 5000149 | - | eshipper_usps_pbx | 5000154 | - | eshipper_usps_pbx_lightweight | 5000155 | - | eshipper_usps_priority_mail | 5000150 | - | eshipper_usps_priority_mail_express | 5000151 | - | eshipper_usps_priority_mail_open_and_distribute | 5000152 | - | eshipper_usps_priority_mail_return_service | 8000003 | - | eshipper_usps_retail_ground_formerly_standard_post | 5000153 | + | eshipper_fedex_2day_freight | 2Day Freight | + | eshipper_fedex_3day_freight | 3Day Freight | + | eshipper_sameday_9_am_guaranteed | 9:AM GUARANTEED | + | eshipper_project44_a_duie_pyle | A Duie Pyle` | + | eshipper_project44_aaa_cooper_transportation | AAA Cooper Transportation`` | + | eshipper_project44_aberdeen_express | Aberdeen Express` | + | eshipper_project44_abf_freight | ABF Freight`` | + | eshipper_project44_abfs | ABFS | + | eshipper_sameday_am_service | AM Service | + | eshipper_apex_trucking | Apex Trucking | + | eshipper_project44_averitt_express | Averitt Express` | + | eshipper_project44_brown_transfer_company | BROWN TRANSFER COMPANY` | + | eshipper_canada_worldwide_next_flight_out | Canada Worldwide Next Flight Out | + | eshipper_project44_central_freight_lines | Central Freight Lines` | + | eshipper_project44_central_transport | Central Transport`` | + | eshipper_project44_chicago_suburban_express | Chicago Suburban Express` | + | eshipper_project44_clear_lane_freight | Clear Lane Freight` | + | eshipper_project44_con_way_freight | Con-way Freight` | + | eshipper_project44_conway_freight | Con-way Freight`` | + | eshipper_project44_crosscountry_courier | Crosscountry Courier` | + | eshipper_project44_day_ross | Day & Ross | + | eshipper_day_and_ross | DAY AND ROSS | + | eshipper_day_ross_r_and_l | DAY AND ROSS (R AND L) | + | eshipper_project44_daylight_transport | Daylight Transport`` | + | eshipper_project44_dayton_freight_lines | Dayton Freight Lines` | + | eshipper_project44_dependable_highway_express | Dependable Highway Express`` | + | eshipper_dhl_ground | DHL Ground | + | eshipper_smarte_post_int_l_dhl_packet_international | DHL Packet International | + | eshipper_smarte_post_int_l_dhl_parcel_international_direct | DHL Parcel International Direct | + | eshipper_smarte_post_int_l_dhl_parcel_international_standard | DHL Parcel International Standard | + | eshipper_project44_dohrn_transfer_company | Dohrn Transfer Company` | + | eshipper_project44_dugan_truck_line | Dugan Truck Line` | + | eshipper_aramex_economy_document_express | Economy Document Express | + | eshipper_aramex_economy_parcel_express | Economy Parcel Express | + | eshipper_envoi_same_day_delivery | Envoi - Same Day Delivery | + | eshipper_dhl_esi_export | ESI Export | + | eshipper_project44_estes_express_lines | Estes`` | + | eshipper_ups_expedited | Expedited | + | eshipper_project44_expedited_freight_systems | Expedited Freight Systems` | + | eshipper_ups_express | Express | + | eshipper_dhl_express_1030am | Express 1030AM | + | eshipper_dhl_express_12pm | Express 12PM | + | eshipper_dhl_express_9am | EXPRESS 9:00 | + | eshipper_dhl_express_envelope | Express Envelope | + | eshipper_canpar_express_letter | Express Letter | + | eshipper_canpar_express_pak | Express Pak | + | eshipper_canpar_express_parcel | Express Parcel | + | eshipper_dhl_express_worldwide | Express Worldwide | + | eshipper_fastfrate_rail | RAIL | + | eshipper_fedex_2nd_day | Fedex 2nd Day | + | eshipper_fedex_economy | Fedex Economy | + | eshipper_fedex_first_overnight | Fedex First Overnight | + | eshipper_project44_fedex_freight_canada | Fedex Freight Canada` | + | eshipper_project44_fedex_freight_east | FedEx Freight East` | + | eshipper_fedex_freight_economy | FedEx Freight Economy | + | eshipper_project44_fedex_freight_national_canada | FedEx Freight National Canada | + | eshipper_project44_fedex_freight_national_usa | FedEx Freight National USA | + | eshipper_fedex_freight_priority | FedEx Freight Priority | + | eshipper_project44_fedex_freight_usa | Fedex Freight USA | + | eshipper_fedex_ground | Fedex Ground | + | eshipper_fedex_international_connect_plus | FedEx Intl Connect Plus | + | eshipper_fedex_intl_economy | Fedex Intl Economy | + | eshipper_fedex_intl_economy_freight | Fedex Intl Economy Freight | + | eshipper_fedex_intl_priority | Fedex Intl Priority | + | eshipper_fedex_intl_priority_express | Fedex Intl Priority Express | + | eshipper_fedex_intl_priority_freight | Fedex Intl Priority Freight | + | eshipper_project44_fedex_national | FedEx National` | + | eshipper_fedex_priority | Fedex Priority | + | eshipper_fedex_standard_overnight | Fedex Standard Overnight | + | eshipper_project44_forwardair | ForwardAir` | + | eshipper_project44_frontline_freight | Frontline Freight` | + | eshipper_ups_ground | Ground | + | eshipper_sameday_ground_service | GROUND SERVICE | + | eshipper_sameday_h1_deliver_to_curbside | H1 Deliver to Curbside | + | eshipper_sameday_h3_delivery_packaging_removal | H3 Delivery & Packaging Removal | + | eshipper_sameday_h4_delivery_to_curbside | H4 Delivery to Curbside | + | eshipper_sameday_h5_delivery_to_room_of_choice_2_man | H5 Delivery to Room of Choice - 2 man | + | eshipper_sameday_h6_delivery_packaging_removal_2_man | H6 Delivery & packaging Removal - 2 man | + | eshipper_project44_holland_motor_express | Holland Motor Express` | + | eshipper_dhl_import_express | Import Express | + | eshipper_dhl_import_express_12pm | Import Express 12PM | + | eshipper_dhl_import_express_9am | Import Express 9AM | + | eshipper_project44_jp_express | J.P. Express`` | + | eshipper_kindersley_expedited | Kindersley Expedited | + | eshipper_kindersley_rail | Kindersley Rail * | + | eshipper_kindersley_regular | Kindersley Regular | + | eshipper_kindersley_road | Kindersley Road * | + | eshipper_project44_lakeville_motor_express | Lakeville Motor Express` | + | eshipper_day_ross_ltl | LTL | + | eshipper_sameday_ltl_service | LTL SERVICE | + | eshipper_mainliner_road | Mainliner Road | + | eshipper_project44_manitoulin_tlx_inc | MANITOULIN TLX INC` | + | eshipper_project44_midwest_motor_express | Midwest Motor Express` | + | eshipper_mo_rail | MO Rail | + | eshipper_project44_monroe_transportation_services | Monroe Transportation Services` | + | eshipper_project44_mountain_valley_express | Mountain Valley Express`` | + | eshipper_project44_n_m_transfer | N&M Transfer` | + | eshipper_project44_new_england_motor_freight | New England Motor Freight` | + | eshipper_project44_new_penn_motor_express | New Penn Motor Express` | + | eshipper_project44_oak_harbor_freight | Oak Harbor Freight`` | + | eshipper_project44_old_dominion_freight | Old Dominion Freight`` | + | eshipper_project44_pitt_ohio | Pitt Ohio`` | + | eshipper_sameday_pm_service | PM SERVICE | + | eshipper_project44_polaris | Polaris | + | eshipper_aramex_priority_letter_express | Priority Letter Express | + | eshipper_aramex_priority_parcel_express | Priority Parcel Express | + | eshipper_purolator_express | Purolator Express | + | eshipper_purolator_express_1030 | Purolator Express 1030 | + | eshipper_purolator_express_9am | Purolator Express 9AM | + | eshipper_purolator_expresscheque | Purolator ExpressCheque | + | eshipper_purolator_ground | Purolator Ground | + | eshipper_purolator_ground_1030 | Purolator Ground 1030 | + | eshipper_purolator_ground_9am | Purolator Ground 9AM | + | eshipper_purolator | Puroletter | + | eshipper_purolator_10_30 | Puroletter 10:30 | + | eshipper_purolator_9am | Puroletter 9AM | + | eshipper_purolator_puropak | PuroPak | + | eshipper_purolator_puropak_10_30 | PuroPak 10:30 | + | eshipper_purolator_puropak_9am | PuroPak 9AM | + | eshipper_project44_rl_carriers | R+L Carriers`` | + | eshipper_project44_roadrunner_transportation_services | Roadrunner Transportation Systems`` | + | eshipper_project44_saia_ltl_freight | Saia LTL Freight`` | + | eshipper_project44_saia_motor_freight | SAIA Motor Freight` | + | eshipper_ups_second_day_air_a_m | Second Day Air A.M. | + | eshipper_canpar_select_letter | Select Letter | + | eshipper_canpar_select_pak | Select Pak | + | eshipper_canpar_select_parcel | Select Parcel | + | eshipper_project44_southeastern_freight_lines | SouthEastern Freight`` | + | eshipper_project44_southwestern_motor_transport | Southwestern Motor Transport` | + | eshipper_speedy | Speedy | + | eshipper_ups_standard | Standard | + | eshipper_project44_standard_forwarding | Standard Forwarding` | + | eshipper_tforce_freight_ltl | TForce Freight LTL | + | eshipper_tforce_freight_ltl_guaranteed | TForce Freight LTL - Guaranteed | + | eshipper_tforce_freight_ltl_guaranteed_a_m | TForce Freight LTL - Guaranteed A.M. | + | eshipper_tforce_standard_ltl | TForce Standard LTL | + | eshipper_ups_three_day_select | Three-Day Select | + | eshipper_project44_total_transportation_distribution | Total Transportation & Distribution` | + | eshipper_project44_tst_overland_express | TST Overland Express | + | eshipper_project44_ups | UPS`` | + | eshipper_ups_freight | UPS-Freight | + | eshipper_ups_freight_canada | UPS Freight Canada | + | eshipper_ups_saver | UPS Saver | + | eshipper_sameday_urgent_letter | URGENT LETTER | + | eshipper_sameday_urgent_pac | URGENT PAC | + | eshipper_canpar_usa | USA | + | eshipper_project44_usf_reddaway | USF Reddaway` | + | eshipper_ods_usps_light_weight_parcel_budget | USPS Light Weight Parcel Budget | + | eshipper_ods_usps_light_weight_parcel_expedited | USPS Light Weight Parcel Expedited | + | eshipper_ods_usps_parcel_select_budget | USPS Parcel Select Budget | + | eshipper_ods_usps_parcel_select_expedited | USPS Parcel Select Expedited | + | eshipper_project44_valley_cartage | Valley Cartage` | + | eshipper_project44_vision_express_ltl | Vision Express LTL` | + | eshipper_project44_ward_trucking | WARD Trucking`` | + | eshipper_western_canada_rail | Western Canada Rail | + | eshipper_ups_worldwide_expedited | Worldwide Expedited | + | eshipper_ups_worldwide_express | Worldwide Express | + | eshipper_project44_xpo_logistics | XPO Logistics | + | eshipper_project44_xpress_global_systems | Xpress Global Systems | + | eshipper_canadapost_xpress_post | Xpress Post | + | eshipper_project44_yrc | YRC` | + | eshipper_canadapost_air_parcel_intl | Air Parcel Intl | + | eshipper_canadapost_expedited_parcel_usa | Expedited Parcel USA | + | eshipper_canadapost_priority_courier | Priority Courier | + | eshipper_canadapost_regular | Regular | + | eshipper_canadapost_small_packet | Small Packet | + | eshipper_canadapost_small_packet_international_air | Small Packet International Air | + | eshipper_canadapost_small_packet_international_surface | Small Packet International Surface | + | eshipper_canadapost_surface_parcel_intl | Surface Parcel Intl | + | eshipper_canadapost_xpress_post_intl | Xpress Post Intl | + | eshipper_canadapost_xpress_post_usa | Xpress Post USA | + | eshipper_canpar_international | International | + | eshipper_canpar_usa_select_letter | USA Select Letter | + | eshipper_canpar_usa_select_pak | USA Select Pak | + | eshipper_canpar_usa_select_parcel | USA Select Parcel | + | eshipper_cpx_canada_post | Canada Post | + | eshipper_dhl_economy_select | ECONOMY SELECT | + | eshipper_apex_v | Apex - V | + | eshipper_apex_trucking_v | Apex Trucking-V | + | eshipper_kingsway_road | Kingsway Road | + | eshipper_m_o_eastbound | M-O Eastbound | + | eshipper_national_fastfreight_rail | National Fastfreight Rail | + | eshipper_national_fastfreight_road | National Fastfreight Road | + | eshipper_vitran_rail | Vitran Rail | + | eshipper_vitran_road | Vitran Road | + | eshipper_fedex_ground_us | Fedex Ground US | + | eshipper_fedex_international_priority | FedEx International Priority | + | eshipper_fedex_international_priority_express | FedEx International Priority Express | + | eshipper_project44_day_ross_v | Day & Ross-V | + | eshipper_project44_purolator_freight | Purolator Freight | + | eshipper_project44_r_l_carriers | R+L Carriers` | + | eshipper_pyk_ground_advantage | Ground Advantage | + | eshipper_usps_priority_mail | Priority Mail | + | eshipper_skip | Skip | + | eshipper_smarte_post_intl_dhl_parcel_international_direct_ngr | DHL Parcel International Direct (NGR) | + | eshipper_smarte_post_intl_global_mail_business_priority | GLOBAL Mail Business Priority | + | eshipper_smarte_post_intl_global_mail_business_standard | GLOBAL Mail Business Standard | + | eshipper_smarte_post_intl_global_mail_packet_plus_priority | Global Mail Packet Plus Priority | + | eshipper_smarte_post_intl_global_mail_packet_priority | Global Mail Packet Priority | + | eshipper_smarte_post_intl_global_mail_packet_standard | GLOBAL Mail Packet Standard | + | eshipper_smarte_post_intl_global_mail_parcel_direct_priority_yyz | Global Mail Parcel Direct Priority (YYZ) | + | eshipper_smarte_post_intl_global_mail_parcel_direct_standard_yyz | Global Mail Parcel Direct Standard (YYZ) | + | eshipper_smarte_post_intl_global_mail_parcel_priority | Global Mail Parcel Priority | + | eshipper_smarte_post_intl_global_mail_parcel_standard | Global Mail Parcel Standard | + | eshipper_ups_express_early_am | Express Early AM | + | eshipper_ups_worldwide_express_plus | Worldwide Express Plus | + | eshipper_usps_first_class_package_return_service | First-Class Package Return Service | + | eshipper_usps_library_mail | Library Mail | + | eshipper_usps_media_mail | Media Mail | + | eshipper_usps_parcel_select | Parcel Select | + | eshipper_usps_pbx | PBX | + | eshipper_usps_pbx_lightweight | PBX Lightweight | + | eshipper_usps_priority_mail_express | Priority Mail Express | + | eshipper_usps_priority_mail_open_and_distribute | Priority Mail Open AND Distribute | + | eshipper_usps_priority_mail_return_service | Priority Mail Return Service | + | eshipper_usps_retail_ground_formerly_standard_post | Retail Ground (formerly Standard Post) | + + ### Easyship + | Code | Service Name | + | ------------ | ------------ | + | easyship_aramex_parcel | Parcel | + | easyship_sfexpress_domestic | Domestic | + | easyship_hkpost_speedpost | Speedpost | + | easyship_hkpost_air_mail_tracking | Air Mail Tracking | + | easyship_hkpost_eexpress | EExpress | + | easyship_hkpost_air_parcel | Air Parcel | + | easyship_sfexpress_mail | Mail | + | easyship_hkpost_local_parcel | Local Parcel | + | easyship_ups_saver_net_battery | SaverNet Battery | + | easyship_ups_worldwide_saver | Worldwide Saver® | + | easyship_hkpost_air_parcel_xp | Air Parcel XP | + | easyship_singpost_airmail | Airmail | + | easyship_simplypost_express | Express | + | easyship_singpost_e_pack | ePack | + | easyship_usps_priority_mail_express | Priority Mail Express | + | easyship_usps_first_class_international | First Class International | + | easyship_usps_priority_mail_international_express | Priority Mail International Express | + | easyship_usps_priority_mail_international | Priority Mail International | + | easyship_fedex_international_priority | InternationalPriority | + | easyship_usps_ground_advantage | GroundAdvantage | + | easyship_usps_priority_mail | PriorityMail | + | easyship_ups_worldwide_express | Worldwide Express® | + | easyship_ups_ground | Ground | + | easyship_ups_worldwide_expedited | Worldwide Expedited® | + | easyship_fedex_international_economy | International Economy® | + | easyship_fedex_priority_overnight | Priority Overnight® | + | easyship_fedex_standard_overnight | Standard Overnight® | + | easyship_fedex_2_day_a_m | 2Day® A.M. | + | easyship_fedex_2_day | 2Day® | + | easyship_fedex_express_saver | Express Saver® | + | easyship_ups_next_day_air | Next Day Air® | + | easyship_ups_2nd_day_air | 2nd Day Air® | + | easyship_ups_3_day_select | 3DaySelect | + | easyship_ups_standard | Standard | + | easyship_usps_media | Media | + | easyship_sfexpress_standard_express | Standard Express | + | easyship_sfexpress_economy_express | Economy Express | + | easyship_global post_global_post_economy | GlobalPost Economy | + | easyship_global post_global_post_priority | GlobalPost Priority | + | easyship_singpost_speed_post_priority | SpeedPost Priority | + | easyship_skypostal_standard_private_delivery | Standard Private Delivery | + | easyship_tnt_1000_express | 1000Express | + | easyship_toll_express_parcel | Express Parcel | + | easyship_sendle_premium_international | Premium International | + | easyship_sendle_premium_domestic | PremiumDomestic | + | easyship_sendle_pro_domestic | Pro Domestic | + | easyship_quantium_e_pac | ePac | + | easyship_usps_pm_flat_rate | PM Flat Rate | + | easyship_usps_pmi_flat_rate | PMI Flat Rate | + | easyship_quantium_mail | Mail | + | easyship_quantium_international_mail | International Mail | + | easyship_apc_parcel_connect_expedited | ParcelConnect Expedited | + | easyship_aramex_epx | EPX | + | easyship_tnt_road_express | Road Express | + | easyship_tnt_overnight | Overnight | + | easyship_usps_pme_flat_rate | PME Flat Rate | + | easyship_usps_pmei_flat_rate | PMEI Flat Rate | + | easyship_easyship_cdek_russia | CDEK Russia | + | easyship_usps_pmei_flat_rate_padded_envelope | PMEI Flat Rate Padded Envelope | + | easyship_easyship_mate_bike_shipping_services | Mate Bike Shipping Services | + | easyship_dhl_documents | Documents | + | easyship_evri_uk_home_delivery | UK_HomeDelivery | + | easyship_evri_home_delivery | HomeDelivery | + | easyship_dpd_next_day | NextDay | + | easyship_dpd_classic_parcel | ClassicParcel | + | easyship_dpd_classic_expresspak | ClassicExpresspak | + | easyship_dpd_air_classic | AirClassic | + | easyship_singpost_speed_post_express | SpeedPostExpress | + | easyship_ups_expedited | Expedited | + | easyship_tnt_0900_express | 0900Express | + | easyship_tnt_1200_express | 1200Express | + | easyship_canada post_domestic_regular_parcel | Domestic Regular Parcel | + | easyship_canada post_domestic_expedited_parcel | Domestic Expedited Parcel | + | easyship_canada post_domestic_xpresspost_domestic | Domestic Xpresspost Domestic | + | easyship_canada post_domestic_priority | Domestic Priority | + | easyship_canada post_usa_small_packet_air | USA Small Packet Air | + | easyship_canada post_usa_expedited_parcel | USA Expedited Parcel | + | easyship_canada post_usa_tracked_parcel | USA Tracked Parcel | + | easyship_canada post_usa_xpresspost | USA Xpresspost | + | easyship_canada post_international_xpresspost | International Xpresspost | + | easyship_canada post_international_small_packet_air | International Small Packet Air | + | easyship_canada post_international_tracked_packet | International Tracked Packet | + | easyship_canada post_international_small_packet_surface | International Small Packet Surface | + | easyship_canada post_international_parcel_surface | International Parcel Surface | + | easyship_canada post_international_parcel_air | International Parcel Air | + | easyship_couriersplease_atl | ATL | + | easyship_couriersplease_signature | Signature | + | easyship_canpar_international | International | + | easyship_canpar_usa | USA | + | easyship_canpar_select_usa | Select USA | + | easyship_canpar_usa_pak | USA Pak | + | easyship_canpar_overnight_pak | Overnight Pak | + | easyship_canpar_select_pak | Select Pak | + | easyship_canpar_select | Select | + | easyship_ups_express_saver | ExpressSaver | + | easyship_ebay send_sf_express_economy_express | SF Express Economy Express | + | easyship_ups_worldwide_express_plus | Worldwide Express Plus® | + | easyship_quantium_intl_priority | IntlPriority | + | easyship_ups_next_day_air_early | Next Day Air® Early | + | easyship_ups_next_day_air_saver | Next Day Air Saver® | + | easyship_ups_2nd_day_air_a_m | 2nd Day Air® A.M. | + | easyship_fedex_home_delivery | Home Delivery® | + | easyship_asendia_country_tracked | CountryTracked | + | easyship_asendia_fully_tracked | FullyTracked | + | easyship_dhl_express_dg | ExpressDG | + | easyship_fedex_international_priority_dg | InternationalPriorityDG | + | easyship_colissimo_expert | Expert | + | easyship_colissimo_access | Access | + | easyship_mondialrelay_international_home_delivery | InternationalHomeDelivery | + | easyship_fedex_economy | Economy | + | easyship_dhl_express1200 | Express1200 | + | easyship_dhl_express0900 | Express0900 | + | easyship_dhl_express1800 | Express1800 | + | easyship_dhl_express_worldwide | ExpressWorldwide | + | easyship_dhl_economy_select | EconomySelect | + | easyship_dhl_express1030_international | Express1030International | + | easyship_dhl_domestic_express0900 | DomesticExpress0900 | + | easyship_dhl_domestic_express1200 | DomesticExpress1200 | + | easyship_evri_lightand_large | LightandLarge | + | easyship_ninjavan_standard_deliveries | Standard Deliveries | + | easyship_couriersplease_parcel_tier2 | ParcelTier2 | + | easyship_skypostal_postal_packet_standard | Postal Packet Standard | + | easyship_easyshipdemo_basic | Basic | + | easyship_easyshipdemo_tracked | Tracked | + | easyship_easyshipdemo_battery | Battery | + | easyship_dhl_domestic_express | DomesticExpress | + | easyship_fedex_smart_post | SmartPost | + | easyship_fedex_international_connect_plus | InternationalConnectPlus | + | easyship_ups_saver_net | SaverNet | + | easyship_chronopost_chrono_classic | ChronoClassic | + | easyship_chronopost_chrono_express | ChronoExpress | + | easyship_chronopost_chrono10 | Chrono10 | + | easyship_chronopost_chrono13 | Chrono13 | + | easyship_chronopost_chrono18 | Chrono18 | + | easyship_omniparcel_parcel_expedited | Parcel Expedited | + | easyship_omniparcel_parcel_expedited_plus | Parcel Expedited Plus | + | easyship_evri_home_delivery_domestic | HomeDeliveryDomestic | + | easyship_evri_home_domestic_postable | HomeDomesticPostable | + | easyship_skypostal_packet_express | PacketExpress | + | easyship_parcelforce_express48_large | Express48Large | + | easyship_parcelforce_express24 | Express24 | + | easyship_parcelforce_express1000 | Express1000 | + | easyship_parcelforce_express_am | ExpressAM | + | easyship_parcelforce_express48 | Express48 | + | easyship_parcelforce_euro_economy | EuroEconomy | + | easyship_parcelforce_global_priority | GlobalPriority | + | easyship_fedex cross border_trakpak_worldwide_hermes | TrakpakWorldwideHermes | + | easyship_fedex cross border_trakpak_worldwide | TrakpakWorldwide | + | easyship_evri_home_domestic_postable_next_day | HomeDomesticPostableNextDay | + | easyship_dpd_express_pak_next_day | ExpressPakNextDay | + | easyship_dpd_classic_express_pak | ClassicExpressPak | + | easyship_evri_light_and_large | LightAndLarge | + | easyship_evri_home_delivery_domestic_next_day | Home Delivery Domestic NextDay | + | easyship_evri_home_delivery_eu | HomeDeliveryEU | + | easyship_asendia_epaq_plus | EpaqPlus | + | easyship_asendia_epaq_select | EpaqSelect | + | easyship_usps_lightweight_standard | LightweightStandard | + | easyship_usps_lightweight_economy | LightweightEconomy | + | easyship_ups_domestic_express_saver | DomesticExpressSaver | + | easyship_apg_e_packet | ePacket | + | easyship_apg_e_packet_plus | ePacketPlus | + | easyship_couriersplease_ecom_base_kilo | EComBaseKilo | + | easyship_couriersplease_stdatlbase_kilo | STDATLBaseKilo | + | easyship_nz post_international_courier | InternationalCourier | + | easyship_nz post_air_small_parcel | AirSmallParcel | + | easyship_nz post_tracked_air_satchel | TrackedAirSatchel | + | easyship_nz post_economy_parcel | Economy Parcel | + | easyship_nz post_parcel_local | ParcelLocal | + | easyship_dhl_express_domestic | ExpressDomestic | + | easyship_alliedexpress_roadexpress | Roadexpress | + | easyship_flatexportrate_asendiae_paqselect | AsendiaePAQSelect | + | easyship_flatexportrate_asendia_country_tracked | AsendiaCountryTracked | + | easyship_singpost_nsaver | NSaver | + | easyship_colisprive_home | Home | + | easyship_osm_domestic_parcel | Domestic Parcel | + | easyship_malca amit_door_to_door | Door To Door | + | easyship_ninjavan_next_day_deliveries | Next Day Deliveries | + | easyship_asendia_e_paqselect | ePAQSelect | + | easyship_dpd_classic | Classic | + | easyship_usps_priority_mail_signature | PriorityMailSignature | + | easyship_bringer_packet_standard | PacketStandard | + | easyship_bringer_prime | Prime | + | easyship_orangeds_expedited_ddp | ExpeditedDDP | + | easyship_orangeds_expedited_ddu | ExpeditedDDU | + | easyship_sendle_preferred | Preferred | + | easyship_ups_ground_saver | GroundSaver | + | easyship_ups_upsground_saver_us | UPSGroundSaverUS | + | easyship_passport_priority_delcon_dduewr | PriorityDelconDDUEWR | + | easyship_passport_priority_delcon_ddpewr | PriorityDelconDDPEWR | + | easyship_bringer_tracked_parcel | TrackedParcel | + | easyship_ups_express_early | ExpressEarly | + | easyship_ups_wolrdwide_express | WolrdwideExpress | ### EasyPost | Code | Service Name |