@whiplashmerch/whiplash-api-client 3.0.11 → 3.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1984,184 +1984,6 @@ const getApiV21CarrierAccountsIdProviderAccount = (client, id, params = {}) => {
1984
1984
  });
1985
1985
  };
1986
1986
 
1987
- /* eslint-disable */
1988
- /* tslint:disable */
1989
- /*
1990
- * ---------------------------------------------------------------
1991
- * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
1992
- * ## ##
1993
- * ## AUTHOR: acacode ##
1994
- * ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
1995
- * ---------------------------------------------------------------
1996
- */
1997
- /**
1998
- * @description Get a list of carrier_aliases
1999
- *
2000
- * @tags carrier_aliases
2001
- * @name GetApiV2CarrierAliases
2002
- * @summary List all carrier_aliases
2003
- * @request GET:/api/v2/carrier_aliases
2004
- */
2005
- const getApiV2CarrierAliases = (client, query, params = {}) => {
2006
- return client.request({
2007
- path: `/api/v2/carrier_aliases`,
2008
- method: "GET",
2009
- query: query,
2010
- format: "json",
2011
- ...params,
2012
- });
2013
- };
2014
- /**
2015
- * @description Create a carrier_alias
2016
- *
2017
- * @tags carrier_aliases
2018
- * @name PostApiV2CarrierAliases
2019
- * @summary Create a carrier_alias
2020
- * @request POST:/api/v2/carrier_aliases
2021
- */
2022
- const postApiV2CarrierAliases = (client, data, params = {}) => {
2023
- return client.request({
2024
- path: `/api/v2/carrier_aliases`,
2025
- method: "POST",
2026
- body: data,
2027
- type: ContentType.Json,
2028
- format: "json",
2029
- ...params,
2030
- });
2031
- };
2032
- /**
2033
- * @description Get a carrier_alias
2034
- *
2035
- * @tags carrier_aliases
2036
- * @name GetApiV2CarrierAliasesId
2037
- * @summary Retrieve a carrier_alias
2038
- * @request GET:/api/v2/carrier_aliases/{id}
2039
- */
2040
- const getApiV2CarrierAliasesId = (client, id, params = {}) => {
2041
- return client.request({
2042
- path: `/api/v2/carrier_aliases/${id}`,
2043
- method: "GET",
2044
- format: "json",
2045
- ...params,
2046
- });
2047
- };
2048
- /**
2049
- * @description Update a carrier_alias
2050
- *
2051
- * @tags carrier_aliases
2052
- * @name PutApiV2CarrierAliasesId
2053
- * @summary Update a carrier_alias
2054
- * @request PUT:/api/v2/carrier_aliases/{id}
2055
- */
2056
- const putApiV2CarrierAliasesId = (client, id, data, params = {}) => {
2057
- return client.request({
2058
- path: `/api/v2/carrier_aliases/${id}`,
2059
- method: "PUT",
2060
- body: data,
2061
- type: ContentType.Json,
2062
- format: "json",
2063
- ...params,
2064
- });
2065
- };
2066
- /**
2067
- * @description Destroy a carrier_alias
2068
- *
2069
- * @tags carrier_aliases
2070
- * @name DeleteApiV2CarrierAliasesId
2071
- * @summary Destroy a carrier_alias
2072
- * @request DELETE:/api/v2/carrier_aliases/{id}
2073
- */
2074
- const deleteApiV2CarrierAliasesId = (client, id, params = {}) => {
2075
- return client.request({
2076
- path: `/api/v2/carrier_aliases/${id}`,
2077
- method: "DELETE",
2078
- ...params,
2079
- });
2080
- };
2081
- /**
2082
- * @description Get a list of carrier_aliases
2083
- *
2084
- * @tags carrier_aliases
2085
- * @name GetApiV21CarrierAliases
2086
- * @summary List all carrier_aliases
2087
- * @request GET:/api/v2.1/carrier_aliases
2088
- */
2089
- const getApiV21CarrierAliases = (client, query, params = {}) => {
2090
- return client.request({
2091
- path: `/api/v2.1/carrier_aliases`,
2092
- method: "GET",
2093
- query: query,
2094
- format: "json",
2095
- ...params,
2096
- });
2097
- };
2098
- /**
2099
- * @description Create a carrier_alias
2100
- *
2101
- * @tags carrier_aliases
2102
- * @name PostApiV21CarrierAliases
2103
- * @summary Create a carrier_alias
2104
- * @request POST:/api/v2.1/carrier_aliases
2105
- */
2106
- const postApiV21CarrierAliases = (client, data, params = {}) => {
2107
- return client.request({
2108
- path: `/api/v2.1/carrier_aliases`,
2109
- method: "POST",
2110
- body: data,
2111
- type: ContentType.Json,
2112
- format: "json",
2113
- ...params,
2114
- });
2115
- };
2116
- /**
2117
- * @description Get a carrier_alias
2118
- *
2119
- * @tags carrier_aliases
2120
- * @name GetApiV21CarrierAliasesId
2121
- * @summary Retrieve a carrier_alias
2122
- * @request GET:/api/v2.1/carrier_aliases/{id}
2123
- */
2124
- const getApiV21CarrierAliasesId = (client, id, params = {}) => {
2125
- return client.request({
2126
- path: `/api/v2.1/carrier_aliases/${id}`,
2127
- method: "GET",
2128
- format: "json",
2129
- ...params,
2130
- });
2131
- };
2132
- /**
2133
- * @description Update a carrier_alias
2134
- *
2135
- * @tags carrier_aliases
2136
- * @name PutApiV21CarrierAliasesId
2137
- * @summary Update a carrier_alias
2138
- * @request PUT:/api/v2.1/carrier_aliases/{id}
2139
- */
2140
- const putApiV21CarrierAliasesId = (client, id, data, params = {}) => {
2141
- return client.request({
2142
- path: `/api/v2.1/carrier_aliases/${id}`,
2143
- method: "PUT",
2144
- body: data,
2145
- type: ContentType.Json,
2146
- ...params,
2147
- });
2148
- };
2149
- /**
2150
- * @description Destroy a carrier_alias
2151
- *
2152
- * @tags carrier_aliases
2153
- * @name DeleteApiV21CarrierAliasesId
2154
- * @summary Destroy a carrier_alias
2155
- * @request DELETE:/api/v2.1/carrier_aliases/{id}
2156
- */
2157
- const deleteApiV21CarrierAliasesId = (client, id, params = {}) => {
2158
- return client.request({
2159
- path: `/api/v2.1/carrier_aliases/${id}`,
2160
- method: "DELETE",
2161
- ...params,
2162
- });
2163
- };
2164
-
2165
1987
  /* eslint-disable */
2166
1988
  /* tslint:disable */
2167
1989
  /*
@@ -7147,6 +6969,218 @@ const getApiV21ItemsIdWarehouseQuantities = (client, id, params = {}) => {
7147
6969
  });
7148
6970
  };
7149
6971
 
6972
+ /* eslint-disable */
6973
+ /* tslint:disable */
6974
+ /*
6975
+ * ---------------------------------------------------------------
6976
+ * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
6977
+ * ## ##
6978
+ * ## AUTHOR: acacode ##
6979
+ * ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
6980
+ * ---------------------------------------------------------------
6981
+ */
6982
+ /**
6983
+ * @description Get a list of load scacs
6984
+ *
6985
+ * @tags load_scacs
6986
+ * @name GetApiV2LoadScacs
6987
+ * @summary List all load scacs
6988
+ * @request GET:/api/v2/load_scacs
6989
+ */
6990
+ const getApiV2LoadScacs = (client, query, params = {}) => {
6991
+ return client.request({
6992
+ path: `/api/v2/load_scacs`,
6993
+ method: "GET",
6994
+ query: query,
6995
+ format: "json",
6996
+ ...params,
6997
+ });
6998
+ };
6999
+ /**
7000
+ * @description Create a load_scac
7001
+ *
7002
+ * @tags load_scacs
7003
+ * @name PostApiV2LoadScacs
7004
+ * @summary Create a load_scac
7005
+ * @request POST:/api/v2/load_scacs
7006
+ */
7007
+ const postApiV2LoadScacs = (client, data, params = {}) => {
7008
+ return client.request({
7009
+ path: `/api/v2/load_scacs`,
7010
+ method: "POST",
7011
+ body: data,
7012
+ type: ContentType.Json,
7013
+ format: "json",
7014
+ ...params,
7015
+ });
7016
+ };
7017
+ /**
7018
+ * @description Returns count of load scacs
7019
+ *
7020
+ * @tags load_scacs
7021
+ * @name GetApiV2LoadScacsCount
7022
+ * @summary Count load scacs
7023
+ * @request GET:/api/v2/load_scacs/count
7024
+ */
7025
+ const getApiV2LoadScacsCount = (client, query, params = {}) => {
7026
+ return client.request({
7027
+ path: `/api/v2/load_scacs/count`,
7028
+ method: "GET",
7029
+ query: query,
7030
+ format: "json",
7031
+ ...params,
7032
+ });
7033
+ };
7034
+ /**
7035
+ * @description Get a load_scac
7036
+ *
7037
+ * @tags load_scacs
7038
+ * @name GetApiV2LoadScacsId
7039
+ * @summary Retrieve a load_scac
7040
+ * @request GET:/api/v2/load_scacs/{id}
7041
+ */
7042
+ const getApiV2LoadScacsId = (client, id, params = {}) => {
7043
+ return client.request({
7044
+ path: `/api/v2/load_scacs/${id}`,
7045
+ method: "GET",
7046
+ format: "json",
7047
+ ...params,
7048
+ });
7049
+ };
7050
+ /**
7051
+ * @description Update a load_scac
7052
+ *
7053
+ * @tags load_scacs
7054
+ * @name PutApiV2LoadScacsId
7055
+ * @summary Update a load_scac
7056
+ * @request PUT:/api/v2/load_scacs/{id}
7057
+ */
7058
+ const putApiV2LoadScacsId = (client, id, data, params = {}) => {
7059
+ return client.request({
7060
+ path: `/api/v2/load_scacs/${id}`,
7061
+ method: "PUT",
7062
+ body: data,
7063
+ type: ContentType.Json,
7064
+ format: "json",
7065
+ ...params,
7066
+ });
7067
+ };
7068
+ /**
7069
+ * @description Destroy a load_scac
7070
+ *
7071
+ * @tags load_scacs
7072
+ * @name DeleteApiV2LoadScacsId
7073
+ * @summary Destroy a load_scac
7074
+ * @request DELETE:/api/v2/load_scacs/{id}
7075
+ */
7076
+ const deleteApiV2LoadScacsId = (client, id, params = {}) => {
7077
+ return client.request({
7078
+ path: `/api/v2/load_scacs/${id}`,
7079
+ method: "DELETE",
7080
+ ...params,
7081
+ });
7082
+ };
7083
+ /**
7084
+ * @description Get a list of load scacs
7085
+ *
7086
+ * @tags load_scacs
7087
+ * @name GetApiV21LoadScacs
7088
+ * @summary List all load scacs
7089
+ * @request GET:/api/v2.1/load_scacs
7090
+ */
7091
+ const getApiV21LoadScacs = (client, query, params = {}) => {
7092
+ return client.request({
7093
+ path: `/api/v2.1/load_scacs`,
7094
+ method: "GET",
7095
+ query: query,
7096
+ format: "json",
7097
+ ...params,
7098
+ });
7099
+ };
7100
+ /**
7101
+ * @description Create a load_scac
7102
+ *
7103
+ * @tags load_scacs
7104
+ * @name PostApiV21LoadScacs
7105
+ * @summary Create a load_scac
7106
+ * @request POST:/api/v2.1/load_scacs
7107
+ */
7108
+ const postApiV21LoadScacs = (client, data, params = {}) => {
7109
+ return client.request({
7110
+ path: `/api/v2.1/load_scacs`,
7111
+ method: "POST",
7112
+ body: data,
7113
+ type: ContentType.Json,
7114
+ format: "json",
7115
+ ...params,
7116
+ });
7117
+ };
7118
+ /**
7119
+ * @description Returns count of load scacs
7120
+ *
7121
+ * @tags load_scacs
7122
+ * @name GetApiV21LoadScacsCount
7123
+ * @summary Count load scacs
7124
+ * @request GET:/api/v2.1/load_scacs/count
7125
+ */
7126
+ const getApiV21LoadScacsCount = (client, query, params = {}) => {
7127
+ return client.request({
7128
+ path: `/api/v2.1/load_scacs/count`,
7129
+ method: "GET",
7130
+ query: query,
7131
+ format: "json",
7132
+ ...params,
7133
+ });
7134
+ };
7135
+ /**
7136
+ * @description Get a load_scac
7137
+ *
7138
+ * @tags load_scacs
7139
+ * @name GetApiV21LoadScacsId
7140
+ * @summary Retrieve a load_scac
7141
+ * @request GET:/api/v2.1/load_scacs/{id}
7142
+ */
7143
+ const getApiV21LoadScacsId = (client, id, params = {}) => {
7144
+ return client.request({
7145
+ path: `/api/v2.1/load_scacs/${id}`,
7146
+ method: "GET",
7147
+ format: "json",
7148
+ ...params,
7149
+ });
7150
+ };
7151
+ /**
7152
+ * @description Update a load_scac
7153
+ *
7154
+ * @tags load_scacs
7155
+ * @name PutApiV21LoadScacsId
7156
+ * @summary Update a load_scac
7157
+ * @request PUT:/api/v2.1/load_scacs/{id}
7158
+ */
7159
+ const putApiV21LoadScacsId = (client, id, data, params = {}) => {
7160
+ return client.request({
7161
+ path: `/api/v2.1/load_scacs/${id}`,
7162
+ method: "PUT",
7163
+ body: data,
7164
+ type: ContentType.Json,
7165
+ ...params,
7166
+ });
7167
+ };
7168
+ /**
7169
+ * @description Destroy a load_scac
7170
+ *
7171
+ * @tags load_scacs
7172
+ * @name DeleteApiV21LoadScacsId
7173
+ * @summary Destroy a load_scac
7174
+ * @request DELETE:/api/v2.1/load_scacs/{id}
7175
+ */
7176
+ const deleteApiV21LoadScacsId = (client, id, params = {}) => {
7177
+ return client.request({
7178
+ path: `/api/v2.1/load_scacs/${id}`,
7179
+ method: "DELETE",
7180
+ ...params,
7181
+ });
7182
+ };
7183
+
7150
7184
  /* eslint-disable */
7151
7185
  /* tslint:disable */
7152
7186
  /*
@@ -36682,8 +36716,6 @@ const ApiV21BundleItemCreatedExample = '{"id":123}';
36682
36716
 
36683
36717
  const ApiV21CarrierAccountCreatedExample = '{"id":123}';
36684
36718
 
36685
- const ApiV21CarrierAliasCreatedExample = '{"id":123}';
36686
-
36687
36719
  const ApiV21CarrierCreatedExample = '{"id":123}';
36688
36720
 
36689
36721
  const ApiV21ChromalistCreatedExample = '{"id":123}';
@@ -37292,6 +37324,8 @@ const ApiV21ItemBundleExample = [
37292
37324
 
37293
37325
  const ApiV21ItemCreatedExample = '{"id":123}';
37294
37326
 
37327
+ const ApiV21LoadScacCreatedExample = '{"id":123}';
37328
+
37295
37329
  const ApiV21LoadOpenNoBolExample = [
37296
37330
  {
37297
37331
  id: 10,
@@ -41279,5 +41313,5 @@ const putApiV21SerialNumbersIdRestore = (client, serialNoId) => {
41279
41313
  });
41280
41314
  };
41281
41315
 
41282
- export { ApiV21AccountCreatedExample, ApiV21AccountTransactionCreatedExample, ApiV21AddressCreatedExample, ApiV21BillOfLadingCreatedExample, ApiV21BroadcastCreatedExample, ApiV21BundleItemCreatedExample, ApiV21CarrierAccountCreatedExample, ApiV21CarrierAliasCreatedExample, ApiV21CarrierCreatedExample, ApiV21ChromalistCreatedExample, ApiV21ConsumerReturnAllExample, ApiV21ConsumerReturnCreatedExample, ApiV21ConsumerReturnInTransitExample, ApiV21CountCreatedExample, ApiV21CurrencyCreatedExample, ApiV21CustomerCreatedExample, ApiV21DocumentCreatedExample, ApiV21EntitiesBillOfLadingBolType, ApiV21EntitiesBillOfLadingFreightCharge, ApiV21EntitiesChromalistChroma, ApiV21EntitiesChromalistResourceType, ApiV21EntitiesItemHazmatType, ApiV21EntitiesItemLabelFormat, ApiV21EntitiesItemLocationRole, ApiV21EntitiesItemOriginCountry, ApiV21EntitiesItemPackagingType, ApiV21EntitiesLocationRole, ApiV21EntitiesOrderIncoterm, ApiV21EntitiesOrderOrderType, ApiV21EntitiesOrderPaymentType, ApiV21EntitiesOrderStatus, ApiV21EntitiesReturnAddressCountryIso2, ApiV21EntitiesUserLocale, ApiV21EntitiesUserRole, ApiV21FilterSetCreatedExample, ApiV21ImporterOfRecordCreatedExample, ApiV21IncidentCreatedExample, ApiV21ItemBundleExample, ApiV21ItemCreatedExample, ApiV21ItemMerchExample, ApiV21ItemPackagingExample, ApiV21ItemSingleExample, ApiV21LoadCreatedExample, ApiV21LoadOpenNoBolExample, ApiV21LocationAuditCreatedExample, ApiV21LocationCreatedExample, ApiV21LocationMultipleExample, ApiV21LocationSingleExample, ApiV21LotCreatedExample, ApiV21MessageCreatedExample, ApiV21MetaKeyCreatedExample, ApiV21NavNormalExample, ApiV21NotificationSubscriptionCreatedExample, ApiV21OrderAllExample, ApiV21OrderBatchInLoadExample, ApiV21OrderBatchWholesaleAvailableExample, ApiV21OrderCreatedExample, ApiV21OrderDocumentCreatedExample, ApiV21OrderItemCreatedExample, ApiV21OrderProcessingExample, ApiV21OriginatorCreatedExample, ApiV21PackageCreatedExample, ApiV21PalletCreatedExample, ApiV21PartnerCreatedExample, ApiV21PrepackCreatedExample, ApiV21ProjectCreatedExample, ApiV21ProjectTaskCreatedExample, ApiV21ResultCreatedExample, ApiV21ReturnAddressCreatedExample, ApiV21RuleCreatedExample, ApiV21RuleDismissalCreatedExample, ApiV21ShipnoticeAllExample, ApiV21ShipnoticeCreatedExample, ApiV21ShipnoticeInTransitExample, ApiV21ShipnoticeItemCreatedExample, ApiV21ShipnoticeProcessingExample, ApiV21ShippingAliasCreatedExample, ApiV21ShippingBlacklistedMethodCreatedExample, ApiV21ShippingMethodCreatedExample, ApiV21SurchargeMarkupCreatedExample, ApiV21TagCreatedExample, ApiV21TemplateCreatedExample, ApiV21TransportationMarkupCreatedExample, ApiV21UserCreatedExample, ApiV21WarehouseCreatedExample, ApiV21WarehouseFeatureCreatedExample, ApiV2ConsumerReturnAllExample, ApiV2ConsumerReturnInTransitExample, ApiV2CustomerNormalExample, ApiV2EntitiesBillOfLadingBolType, ApiV2EntitiesBillOfLadingFreightCharge, ApiV2EntitiesChromalistChroma, ApiV2EntitiesChromalistResourceType, ApiV2EntitiesItemHazmatType, ApiV2EntitiesItemLabelFormat, ApiV2EntitiesItemLocationRole, ApiV2EntitiesItemOriginCountry, ApiV2EntitiesItemPackagingType, ApiV2EntitiesLocationRole, ApiV2EntitiesOrderIncoterm, ApiV2EntitiesOrderOrderType, ApiV2EntitiesOrderPaymentType, ApiV2EntitiesOrderStatus, ApiV2EntitiesReturnAddressCountryIso2, ApiV2EntitiesUserLocale, ApiV2EntitiesUserRole, ApiV2ItemBundleExample, ApiV2ItemMerchExample, ApiV2ItemPackagingExample, ApiV2ItemSingleExample, ApiV2LoadCreatedExample, ApiV2LoadOpenNoBolExample, ApiV2LocationMultipleExample, ApiV2LocationSingleExample, ApiV2NavNormalExample, ApiV2OrderAllExample, ApiV2OrderBatchInLoadExample, ApiV2OrderBatchWholesaleAvailableExample, ApiV2OrderProcessingExample, ApiV2ShipnoticeAllExample, ApiV2ShipnoticeInTransitExample, ApiV2ShipnoticeProcessingExample, ApiV2UserNormalExample, ApiV2WarehouseNormalExample, ContentType, DhlPackagingType, FedExPackagingType, GetApiV21ItemsIdInboundParamsType, GetApiV21ItemsIdLocationsWithTransferCountParamsRole, GetApiV21SchemasLotsParamsSchema, GetApiV2ItemsIdInboundParamsType, GetApiV2ItemsIdLocationsWithTransferCountParamsRole, GetApiV2SchemasLotsParamsSchema, HttpClient, ItemOutboundTabs, LabeledDhlPackagingType, LabeledFedExPackagingType, LabeledHazmatTypes, LabeledRoyalMailPackagingType, LabeledUpsPackagingType, LabeledUspsPackagingType, LabeledWhiplashPackagingType, LocationRelations, PostApiV21BillOfLadingsIdAddressesRequestAddressType, PostApiV21BillOfLadingsRequestBolType, PostApiV21BillOfLadingsRequestFreightCharge, PostApiV21CarrierAccountsRequestProvider, PostApiV21ChromalistsRequestChroma, PostApiV21ChromalistsRequestResourceType, PostApiV21FilterSetsRequestType, PostApiV21ItemsIdLocationsRequestOwnerType, PostApiV21ItemsIdLocationsRequestRole, PostApiV21ItemsRequestHazmatType, PostApiV21ItemsRequestLabelFormat, PostApiV21ItemsRequestOriginCountry, PostApiV21ItemsRequestPackagingType, PostApiV21LocationAuditsRequestState, PostApiV21MetaKeysRequestOwnerType, PostApiV21MetaKeysRequestValueType, PostApiV21OrdersBulkRequestIncoterm, PostApiV21OrdersBulkRequestOrderType, PostApiV21OrdersBulkRequestPaymentType, PostApiV21OrdersBulkRequestStatus, PostApiV21OrdersRequestIncoterm, PostApiV21OrdersRequestOrderType, PostApiV21OrdersRequestPaymentType, PostApiV21OrdersRequestStatus, PostApiV21ReturnAddressesRequestCountryIso2, PostApiV21RulesRequestState, PostApiV21RulesRequestType, PostApiV21UsersRequestLocale, PostApiV21UsersRequestRole, PostApiV21UtilitiesPresignUrlRequestResourceType, PostApiV21WarehousesRequestDefaultPickStrategy, PostApiV21WarehousesRequestShippingLabelFormat, PostApiV2BillOfLadingsIdAddressesRequestAddressType, PostApiV2BillOfLadingsRequestBolType, PostApiV2BillOfLadingsRequestFreightCharge, PostApiV2CarrierAccountsRequestProvider, PostApiV2ChromalistsRequestChroma, PostApiV2ChromalistsRequestResourceType, PostApiV2FilterSetsRequestType, PostApiV2ItemsIdLocationsRequestOwnerType, PostApiV2ItemsIdLocationsRequestRole, PostApiV2ItemsRequestHazmatType, PostApiV2ItemsRequestLabelFormat, PostApiV2ItemsRequestOriginCountry, PostApiV2ItemsRequestPackagingType, PostApiV2LocationAuditsRequestState, PostApiV2MetaKeysRequestOwnerType, PostApiV2MetaKeysRequestValueType, PostApiV2OrdersBulkRequestIncoterm, PostApiV2OrdersBulkRequestOrderType, PostApiV2OrdersBulkRequestPaymentType, PostApiV2OrdersBulkRequestStatus, PostApiV2OrdersRequestIncoterm, PostApiV2OrdersRequestOrderType, PostApiV2OrdersRequestPaymentType, PostApiV2OrdersRequestStatus, PostApiV2ReturnAddressesRequestCountryIso2, PostApiV2RulesRequestState, PostApiV2RulesRequestType, PostApiV2UsersRequestLocale, PostApiV2UsersRequestRole, PostApiV2UtilitiesPresignUrlRequestResourceType, PostApiV2WarehousesRequestDefaultPickStrategy, PostApiV2WarehousesRequestShippingLabelFormat, PusherBatchResponses, PusherEventTypes, PusherJobStatus, PutApiV21BillOfLadingsIdRequestBolType, PutApiV21BillOfLadingsIdRequestFreightCharge, PutApiV21FilterSetsIdBatchRequestGroupBy, PutApiV21FilterSetsIdBatchRequestLocationRoles, PutApiV21FilterSetsIdBatchRequestPickStrategy, PutApiV21FilterSetsIdBatchRequestWaveStrategy, PutApiV21FilterSetsUpsertRequestType, PutApiV21IncidentsIdRequestHazmatType, PutApiV21IncidentsIdRequestLabelFormat, PutApiV21IncidentsIdRequestOriginCountry, PutApiV21IncidentsIdRequestPackagingType, PutApiV21ItemsIdRequestHazmatType, PutApiV21ItemsIdRequestLabelFormat, PutApiV21ItemsIdRequestOriginCountry, PutApiV21ItemsIdRequestPackagingType, PutApiV21LocationsIdRequestRole, PutApiV21LocationsIdUpdateQuantityRequestOwnerType, PutApiV21MetaKeysIdRequestOwnerType, PutApiV21MetaKeysIdRequestValueType, PutApiV21OrdersIdRequestIncoterm, PutApiV21OrdersIdRequestOrderType, PutApiV21OrdersIdRequestPaymentType, PutApiV21ReturnAddressesIdRequestCountryIso2, PutApiV21RulesIdRequestState, PutApiV21SimulateOrdersOrderIdProcessingRequestStatus, PutApiV21UsersIdRequestLocale, PutApiV21UsersIdRequestRole, PutApiV2BillOfLadingsIdRequestBolType, PutApiV2BillOfLadingsIdRequestFreightCharge, PutApiV2FilterSetsIdBatchRequestGroupBy, PutApiV2FilterSetsIdBatchRequestLocationRoles, PutApiV2FilterSetsIdBatchRequestPickStrategy, PutApiV2FilterSetsIdBatchRequestWaveStrategy, PutApiV2FilterSetsUpsertRequestType, PutApiV2IncidentsIdRequestHazmatType, PutApiV2IncidentsIdRequestLabelFormat, PutApiV2IncidentsIdRequestOriginCountry, PutApiV2IncidentsIdRequestPackagingType, PutApiV2ItemsIdRequestHazmatType, PutApiV2ItemsIdRequestLabelFormat, PutApiV2ItemsIdRequestOriginCountry, PutApiV2ItemsIdRequestPackagingType, PutApiV2LocationsIdRequestRole, PutApiV2LocationsIdUpdateQuantityRequestOwnerType, PutApiV2MetaKeysIdRequestOwnerType, PutApiV2MetaKeysIdRequestValueType, PutApiV2OrdersIdRequestIncoterm, PutApiV2OrdersIdRequestOrderType, PutApiV2OrdersIdRequestPaymentType, PutApiV2ReturnAddressesIdRequestCountryIso2, PutApiV2RulesIdRequestState, PutApiV2SimulateOrdersOrderIdProcessingRequestStatus, PutApiV2UsersIdRequestLocale, PutApiV2UsersIdRequestRole, RelationType, RoyalMailPackagingType, ShipnoticeStatus, UpsPackagingType, UspsPackagingType, WhiplashPackagingType, customerMock, deleteApiV21AccountsId, deleteApiV21AddressesId, deleteApiV21AllocationsId, deleteApiV21BillOfLadingsId, deleteApiV21BroadcastsId, deleteApiV21BundleItemsId, deleteApiV21CacheKey, deleteApiV21CarrierAccountsId, deleteApiV21CarrierAliasesId, deleteApiV21CarriersId, deleteApiV21ChromalistsId, deleteApiV21ConsumerReturnsId, deleteApiV21CurrenciesId, deleteApiV21DocumentsId, deleteApiV21FilterSetsId, deleteApiV21ImporterOfRecordsId, deleteApiV21IncidentsId, deleteApiV21ItemsId, deleteApiV21LoadsId, deleteApiV21LocationAdjustmentsIdTags, deleteApiV21LocationAuditsId, deleteApiV21LocationTransfersId, deleteApiV21LocationsId, deleteApiV21LotsId, deleteApiV21MetaKeysId, deleteApiV21NotificationSubscriptionsId, deleteApiV21OrderDocumentsId, deleteApiV21OrderItemsId, deleteApiV21PackagesId, deleteApiV21PalletsId, deleteApiV21PartnersId, deleteApiV21ProjectTasksId, deleteApiV21ProjectsId, deleteApiV21ReturnAddressesId, deleteApiV21RuleDismissalsId, deleteApiV21RulesId, deleteApiV21ShipnoticeItemsId, deleteApiV21ShipnoticeItemsIdTags, deleteApiV21ShipnoticesId, deleteApiV21ShippingAliasesId, deleteApiV21ShippingBlacklistedMethodsId, deleteApiV21ShippingMethodsId, deleteApiV21SurchargeMarkupsId, deleteApiV21TemplatesId, deleteApiV21TransportationMarkupsId, deleteApiV21UsersId, deleteApiV21WarehouseFeaturesId, deleteApiV21WarehousesId, deleteApiV21WholesaleItemsId, deleteApiV2AccountsId, deleteApiV2AddressesId, deleteApiV2AllocationsId, deleteApiV2BillOfLadingsId, deleteApiV2BroadcastsId, deleteApiV2BundleItemsId, deleteApiV2CacheKey, deleteApiV2CarrierAccountsId, deleteApiV2CarrierAliasesId, deleteApiV2CarriersId, deleteApiV2ChromalistsId, deleteApiV2ConsumerReturnsId, deleteApiV2CurrenciesId, deleteApiV2DocumentsId, deleteApiV2FilterSetsId, deleteApiV2ImporterOfRecordsId, deleteApiV2IncidentsId, deleteApiV2ItemsId, deleteApiV2LoadsId, deleteApiV2LocationAdjustmentsIdTags, deleteApiV2LocationAuditsId, deleteApiV2LocationTransfersId, deleteApiV2LocationsId, deleteApiV2LotsId, deleteApiV2MetaKeysId, deleteApiV2NotificationSubscriptionsId, deleteApiV2OrderDocumentsId, deleteApiV2OrderItemsId, deleteApiV2PackagesId, deleteApiV2PalletsId, deleteApiV2PartnersId, deleteApiV2ProjectTasksId, deleteApiV2ProjectsId, deleteApiV2ReturnAddressesId, deleteApiV2RuleDismissalsId, deleteApiV2RulesId, deleteApiV2ShipnoticeItemsId, deleteApiV2ShipnoticeItemsIdTags, deleteApiV2ShipnoticesId, deleteApiV2ShippingAliasesId, deleteApiV2ShippingBlacklistedMethodsId, deleteApiV2ShippingMethodsId, deleteApiV2SurchargeMarkupsId, deleteApiV2TemplatesId, deleteApiV2TransportationMarkupsId, deleteApiV2UsersId, deleteApiV2WarehouseFeaturesId, deleteApiV2WarehousesId, deleteApiV2WholesaleItemsId, errorHandler, generateErrorString, getAllCustomersUrl, getAllWarehousesUrl, getApi21InboundConsumerReturnUnitCount, getApi21InboundShipnoticeUnitCount, getApi21ItemLocationRoleQuantitiesByWarehouse, getApi21UnbtachedOrderCount, getApi21UserCanReleasePlan, getApiItemQuantities, getApiV21AccountTransactions, getApiV21AccountTransactionsCount, getApiV21AccountTransactionsId, getApiV21Accounts, getApiV21AccountsCount, getApiV21AccountsId, getApiV21AccountsIdAccountTransactions, getApiV21AccountsIdAudits, getApiV21AccountsIdSuggestedRefill, getApiV21Allocations, getApiV21BatchedUnshippedCount, getApiV21BillOfLadings, getApiV21BillOfLadingsActions, getApiV21BillOfLadingsId, getApiV21BillOfLadingsIdAddresses, getApiV21Broadcasts, getApiV21BroadcastsCount, getApiV21BroadcastsId, getApiV21BroadcastsLevels, getApiV21BundleItemsId, getApiV21CacheKey, getApiV21CarrierAccounts, getApiV21CarrierAccountsCount, getApiV21CarrierAccountsEasypost, getApiV21CarrierAccountsId, getApiV21CarrierAccountsIdAudits, getApiV21CarrierAccountsIdEasypostAccount, getApiV21CarrierAccountsIdMetaFields, getApiV21CarrierAccountsIdProviderAccount, getApiV21CarrierAccountsProviderAccounts, getApiV21CarrierAliases, getApiV21CarrierAliasesId, getApiV21Carriers, getApiV21CarriersId, getApiV21ChaosCpuSpin, getApiV21ChaosDbSleep, getApiV21ChaosDbSpin, getApiV21ChaosDbWrite, getApiV21ChaosRackTimeout, getApiV21ChaosSleep, getApiV21Chromalists, getApiV21ConsumerReturnIdReturnItems, getApiV21ConsumerReturns, getApiV21ConsumerReturnsAggregate, getApiV21ConsumerReturnsCount, getApiV21ConsumerReturnsId, getApiV21ConsumerReturnsIdCallTrait, getApiV21ConsumerReturnsIdIncidents, getApiV21ConsumerReturnsIdIncidentsCount, getApiV21ConsumerReturnsIdMetaFields, getApiV21ConsumerReturnsIdOriginator, getApiV21ConsumerReturnsIdTraits, getApiV21ConsumerReturnsTraits, getApiV21Currencies, getApiV21Customers, getApiV21CustomersActions, getApiV21CustomersCount, getApiV21CustomersId, getApiV21CustomersIdAudits, getApiV21CustomersIdCallTrait, getApiV21CustomersIdDefaultReturnLocationRole, getApiV21CustomersIdEnablePendingReturns, getApiV21CustomersIdGoEnabled, getApiV21CustomersIdMetaFields, getApiV21CustomersIdShops, getApiV21CustomersIdTraits, getApiV21CustomersTraits, getApiV21CustomsInfos, getApiV21CustomsInfosId, getApiV21Dashboards, getApiV21DashboardsId, getApiV21Documents, getApiV21DocumentsActions, getApiV21DocumentsId, getApiV21FilterSets, getApiV21FilterSetsCount, getApiV21FilterSetsId, getApiV21FilterSetsIdCallTrait, getApiV21FilterSetsIdResults, getApiV21FilterSetsIdResultsAggregate, getApiV21FilterSetsIdResultsCount, getApiV21FilterSetsIdTraits, getApiV21FilterSetsOptions, getApiV21FilterSetsTraits, getApiV21ImporterOfRecords, getApiV21ImporterOfRecordsId, getApiV21Incidents, getApiV21IncidentsActions, getApiV21IncidentsCount, getApiV21InvoiceItems, getApiV21InvoiceItemsCount, getApiV21InvoiceItemsId, getApiV21Invoices, getApiV21InvoicesCount, getApiV21InvoicesId, getApiV21InvoicesIdCallTrait, getApiV21InvoicesIdTraits, getApiV21InvoicesTraits, getApiV21ItemOutboundInfo, getApiV21ItemQuantitiesByRoles, getApiV21Items, getApiV21ItemsActions, getApiV21ItemsAggregate, getApiV21ItemsCount, getApiV21ItemsHazmatTypes, getApiV21ItemsId, getApiV21ItemsIdAudits, getApiV21ItemsIdBundleItems, getApiV21ItemsIdCallTrait, getApiV21ItemsIdInBundles, getApiV21ItemsIdInbound, getApiV21ItemsIdIncidents, getApiV21ItemsIdIncidentsCount, getApiV21ItemsIdLocations, getApiV21ItemsIdLocationsCount, getApiV21ItemsIdLocationsWithTransferCount, getApiV21ItemsIdMessages, getApiV21ItemsIdMessagesCount, getApiV21ItemsIdMetaFields, getApiV21ItemsIdOriginators, getApiV21ItemsIdOriginatorsCount, getApiV21ItemsIdScancodeAliases, getApiV21ItemsIdScancodes, getApiV21ItemsIdScancodesCount, getApiV21ItemsIdShipnoticeItems, getApiV21ItemsIdShipnoticeItemsCount, getApiV21ItemsIdTraits, getApiV21ItemsIdTransactions, getApiV21ItemsIdTransactionsCount, getApiV21ItemsIdTransactionsExport, getApiV21ItemsIdWarehouseQuantities, getApiV21ItemsTraits, getApiV21Loads, getApiV21LoadsActions, getApiV21LoadsCount, getApiV21LoadsExtended, getApiV21LoadsId, getApiV21LoadsIdCallTrait, getApiV21LoadsIdOrderBatches, getApiV21LoadsIdTraits, getApiV21LoadsTraits, getApiV21Locales, getApiV21LocationAdjustments, getApiV21LocationAdjustmentsCount, getApiV21LocationAdjustmentsId, getApiV21LocationAdjustmentsIdTags, getApiV21LocationAudits, getApiV21LocationAuditsAggregate, getApiV21LocationAuditsCount, getApiV21LocationAuditsId, getApiV21LocationAuditsIdAllocations, getApiV21LocationTransfers, getApiV21LocationTransfersAggregate, getApiV21LocationTransfersCount, getApiV21LocationTransfersId, getApiV21LocationTransfersIdAllocations, getApiV21Locations, getApiV21LocationsActions, getApiV21LocationsAggregate, getApiV21LocationsCount, getApiV21LocationsExtended, getApiV21LocationsId, getApiV21LocationsIdAudits, getApiV21LocationsIdIncidents, getApiV21LocationsIdIncidentsCount, getApiV21Lots, getApiV21LotsCount, getApiV21LotsExtended, getApiV21LotsId, getApiV21LotsIdAudits, getApiV21Manifests, getApiV21ManifestsCount, getApiV21ManifestsId, getApiV21ManifestsIdBatch, getApiV21ManifestsIdScanForm, getApiV21Me, getApiV21MetaKeys, getApiV21MetaKeysCount, getApiV21MetaKeysId, getApiV21Nav, getApiV21NavItems, getApiV21NotificationEvents, getApiV21NotificationEventsId, getApiV21NotificationSubscriptions, getApiV21NotificationSubscriptionsCount, getApiV21NotificationSubscriptionsId, getApiV21NotificationSubscriptionsIdAudits, getApiV21NotificationSubscriptionsIdTest, getApiV21OrderBatchItems, getApiV21OrderBatchItemsAggregate, getApiV21OrderBatchRequests, getApiV21OrderBatchRequestsCount, getApiV21OrderBatchRequestsExtended, getApiV21OrderBatchRequestsId, getApiV21OrderBatches, getApiV21OrderBatchesActions, getApiV21OrderBatchesAggregate, getApiV21OrderBatchesExtended, getApiV21OrderBatchesId, getApiV21OrderBatchesIdAudits, getApiV21OrderBatchesIdCallTrait, getApiV21OrderBatchesIdIncidents, getApiV21OrderBatchesIdIncidentsCount, getApiV21OrderBatchesIdMetaFields, getApiV21OrderBatchesIdOrderBatchItems, getApiV21OrderBatchesIdOrderCountsByStatus, getApiV21OrderBatchesIdPackedPercent, getApiV21OrderBatchesIdPackingslips, getApiV21OrderBatchesIdPublicPackingslipUrl, getApiV21OrderBatchesIdPublicPicklistUrl, getApiV21OrderBatchesIdSummary, getApiV21OrderBatchesIdTraits, getApiV21OrderBatchesTraits, getApiV21OrderDocumentsId, getApiV21OrderItems, getApiV21OrderItemsActions, getApiV21OrderItemsAggregate, getApiV21OrderItemsId, getApiV21OrderItemsIdAudits, getApiV21OrderItemsIdLots, getApiV21OrderItemsIdMetaFields, getApiV21OrderItemsIdOriginator, getApiV21OrderItemsIdSerialNumbers, getApiV21OrderItemsIdWholesaleItem, getApiV21OrderTotes, getApiV21OrderTotesCodeOrderItems, getApiV21OrderTotesCodeOrderItemsCount, getApiV21OrderTotesCodeOrders, getApiV21OrderTotesCodeOrdersCount, getApiV21Orders, getApiV21OrdersActions, getApiV21OrdersAggregate, getApiV21OrdersCount, getApiV21OrdersId, getApiV21OrdersIdAudits, getApiV21OrdersIdCallTrait, getApiV21OrdersIdCommercialInvoice, getApiV21OrdersIdCustomsInfo, getApiV21OrdersIdEvents, getApiV21OrdersIdEventsCount, getApiV21OrdersIdHasGlobalEInvoice, getApiV21OrdersIdHasOuterPackaging, getApiV21OrdersIdIncidents, getApiV21OrdersIdIncidentsCount, getApiV21OrdersIdLots, getApiV21OrdersIdMessages, getApiV21OrdersIdMessagesCount, getApiV21OrdersIdMeta, getApiV21OrdersIdMetaFields, getApiV21OrdersIdOrderDocuments, getApiV21OrdersIdOrderItems, getApiV21OrdersIdOrderItemsCount, getApiV21OrdersIdOriginator, getApiV21OrdersIdPackages, getApiV21OrdersIdPackagesCount, getApiV21OrdersIdPackingRulesWithSuggestedItems, getApiV21OrdersIdPackingslip, getApiV21OrdersIdPublicInsertUrl, getApiV21OrdersIdPublicPackingslipUrl, getApiV21OrdersIdRuleDismissals, getApiV21OrdersIdSerialNumbers, getApiV21OrdersIdShipmentRates, getApiV21OrdersIdShippingRates, getApiV21OrdersIdShippingWeight, getApiV21OrdersIdSkipPackingslip, getApiV21OrdersIdToteCode, getApiV21OrdersIdTraits, getApiV21OrdersIdWholesale, getApiV21OrdersOrderTypes, getApiV21OrdersTraits, getApiV21Originators, getApiV21OriginatorsIdAudits, getApiV21Packages, getApiV21PackagesActions, getApiV21PackagesAggregate, getApiV21PackagesId, getApiV21PackagesIdAudits, getApiV21PackagesIdCallTrait, getApiV21PackagesIdShipment, getApiV21PackagesIdTraits, getApiV21PackagesTraits, getApiV21Pallets, getApiV21PalletsCount, getApiV21PalletsId, getApiV21PalletsIdPackages, getApiV21Partners, getApiV21PartnersCount, getApiV21PartnersId, getApiV21ProjectTasksId, getApiV21Projects, getApiV21ProjectsCount, getApiV21ProjectsId, getApiV21ProjectsIdProjectTasks, getApiV21ProjectsIdProjectTasksCount, getApiV21PublicCarrierStatus, getApiV21PublicNotificationEvents, getApiV21PublicStatus, getApiV21Rates, getApiV21RatesCount, getApiV21RatesId, getApiV21RatesIdAudits, getApiV21ReasonCodes, getApiV21ReasonCodesId, getApiV21RelocateInventoryTransfers, getApiV21RelocateInventoryTransfersCount, getApiV21ReturnAddresses, getApiV21ReturnAddressesId, getApiV21Rules, getApiV21RulesCount, getApiV21RulesId, getApiV21RulesIdAudits, getApiV21RulesIdHistory, getApiV21ScancodeAliases, getApiV21Scancodes, getApiV21SchemasLots, getApiV21SerialNumbers, getApiV21SerialNumbersActions, getApiV21ShipNoticeItemTotalReceivedAllocated, getApiV21ShipnoticeItems, getApiV21ShipnoticeItemsActions, getApiV21ShipnoticeItemsAggregate, getApiV21ShipnoticeItemsCount, getApiV21ShipnoticeItemsId, getApiV21ShipnoticeItemsIdAllocations, getApiV21ShipnoticeItemsIdAudits, getApiV21ShipnoticeItemsIdCallTrait, getApiV21ShipnoticeItemsIdLocations, getApiV21ShipnoticeItemsIdMetaFields, getApiV21ShipnoticeItemsIdOriginator, getApiV21ShipnoticeItemsIdReceived, getApiV21ShipnoticeItemsIdTags, getApiV21ShipnoticeItemsIdTraits, getApiV21ShipnoticeItemsTraits, getApiV21Shipnotices, getApiV21ShipnoticesActions, getApiV21ShipnoticesAggregate, getApiV21ShipnoticesCount, getApiV21ShipnoticesId, getApiV21ShipnoticesIdAudits, getApiV21ShipnoticesIdCallTrait, getApiV21ShipnoticesIdCustomerReservedReceiving, getApiV21ShipnoticesIdIncidents, getApiV21ShipnoticesIdIncidentsCount, getApiV21ShipnoticesIdMessages, getApiV21ShipnoticesIdMessagesCount, getApiV21ShipnoticesIdMetaFields, getApiV21ShipnoticesIdOrdersWaiting, getApiV21ShipnoticesIdOriginator, getApiV21ShipnoticesIdShipnoticeItems, getApiV21ShipnoticesIdShipnoticeItemsCount, getApiV21ShipnoticesIdTraits, getApiV21ShipnoticesTraits, getApiV21ShippingAliases, getApiV21ShippingAliasesCount, getApiV21ShippingAliasesId, getApiV21ShippingAliasesIdAudits, getApiV21ShippingBlacklistedMethods, getApiV21ShippingBlacklistedMethodsCount, getApiV21ShippingBlacklistedMethodsId, getApiV21ShippingMethodMarkupsIdAudits, getApiV21ShippingMethods, getApiV21ShippingMethodsCount, getApiV21ShippingMethodsId, getApiV21ShopsIdAudits, getApiV21ShopsIdMetaFields, getApiV21SipnoticeItemReceivingTimeline, getApiV21StatsAppConfig, getApiV21StatsSidekiq, getApiV21StatsSidekiqBatchStatusId, getApiV21StatsSidekiqName, getApiV21SurchargeMarkups, getApiV21SurchargeMarkupsCount, getApiV21SurchargeMarkupsId, getApiV21TemplateTypes, getApiV21Templates, getApiV21TemplatesId, getApiV21TemplatesIdAudits, getApiV21TemplatesIdRenderResourceId, getApiV21TemplatesRenderTypeTemplateTypeSlugResourceId, getApiV21TemplatesRenderTypeToFileTemplateTypeSlugResourceId, getApiV21TransactionsIdAudits, getApiV21TransportationMarkups, getApiV21TransportationMarkupsCount, getApiV21TransportationMarkupsId, getApiV21Users, getApiV21UsersBroadcasts, getApiV21UsersCount, getApiV21UsersId, getApiV21UsersIdAudits, getApiV21UsersIdCallTrait, getApiV21UsersIdTraits, getApiV21UsersJwt, getApiV21UsersTraits, getApiV21WarehouseFeatures, getApiV21WarehouseFeaturesCount, getApiV21WarehouseFeaturesId, getApiV21Warehouses, getApiV21WarehousesActions, getApiV21WarehousesAddresses, getApiV21WarehousesCount, getApiV21WarehousesId, getApiV21WarehousesIdCallTrait, getApiV21WarehousesIdCarrierAccounts, getApiV21WarehousesIdTraits, getApiV21WarehousesTraits, getApiV21WholesaleItems, getApiV21WholesaleItemsId, getApiV21Wholesales, getApiV21WholesalesAddresses, getApiV21WholesalesId, getApiV2AccountTransactions, getApiV2AccountTransactionsCount, getApiV2AccountTransactionsId, getApiV2Accounts, getApiV2AccountsCount, getApiV2AccountsId, getApiV2AccountsIdAccountTransactions, getApiV2AccountsIdAudits, getApiV2AccountsIdSuggestedRefill, getApiV2Allocations, getApiV2BillOfLadings, getApiV2BillOfLadingsActions, getApiV2BillOfLadingsId, getApiV2BillOfLadingsIdAddresses, getApiV2Broadcasts, getApiV2BroadcastsCount, getApiV2BroadcastsId, getApiV2BroadcastsLevels, getApiV2BundleItemsId, getApiV2CacheKey, getApiV2CarrierAccounts, getApiV2CarrierAccountsCount, getApiV2CarrierAccountsEasypost, getApiV2CarrierAccountsId, getApiV2CarrierAccountsIdAudits, getApiV2CarrierAccountsIdEasypostAccount, getApiV2CarrierAccountsIdMetaFields, getApiV2CarrierAccountsIdProviderAccount, getApiV2CarrierAccountsProviderAccounts, getApiV2CarrierAliases, getApiV2CarrierAliasesId, getApiV2Carriers, getApiV2CarriersId, getApiV2ChaosCpuSpin, getApiV2ChaosDbSleep, getApiV2ChaosDbSpin, getApiV2ChaosDbWrite, getApiV2ChaosRackTimeout, getApiV2ChaosSleep, getApiV2Chromalists, getApiV2ConsumerReturns, getApiV2ConsumerReturnsAggregate, getApiV2ConsumerReturnsCount, getApiV2ConsumerReturnsId, getApiV2ConsumerReturnsIdCallTrait, getApiV2ConsumerReturnsIdIncidents, getApiV2ConsumerReturnsIdIncidentsCount, getApiV2ConsumerReturnsIdMetaFields, getApiV2ConsumerReturnsIdOriginator, getApiV2ConsumerReturnsIdTraits, getApiV2ConsumerReturnsTraits, getApiV2Currencies, getApiV2Customers, getApiV2CustomersActions, getApiV2CustomersCount, getApiV2CustomersId, getApiV2CustomersIdAudits, getApiV2CustomersIdCallTrait, getApiV2CustomersIdMetaFields, getApiV2CustomersIdShops, getApiV2CustomersIdTraits, getApiV2CustomersTraits, getApiV2CustomsInfos, getApiV2CustomsInfosId, getApiV2Dashboards, getApiV2DashboardsId, getApiV2Documents, getApiV2DocumentsActions, getApiV2DocumentsId, getApiV2FilterSets, getApiV2FilterSetsCount, getApiV2FilterSetsId, getApiV2FilterSetsIdCallTrait, getApiV2FilterSetsIdResults, getApiV2FilterSetsIdResultsAggregate, getApiV2FilterSetsIdResultsCount, getApiV2FilterSetsIdTraits, getApiV2FilterSetsOptions, getApiV2FilterSetsTraits, getApiV2ImporterOfRecords, getApiV2ImporterOfRecordsId, getApiV2Incidents, getApiV2IncidentsActions, getApiV2IncidentsCount, getApiV2InvoiceItems, getApiV2InvoiceItemsCount, getApiV2InvoiceItemsId, getApiV2Invoices, getApiV2InvoicesCount, getApiV2InvoicesId, getApiV2InvoicesIdCallTrait, getApiV2InvoicesIdTraits, getApiV2InvoicesTraits, getApiV2ItemRules, getApiV2Items, getApiV2ItemsActions, getApiV2ItemsAggregate, getApiV2ItemsCount, getApiV2ItemsHazmatTypes, getApiV2ItemsId, getApiV2ItemsIdAudits, getApiV2ItemsIdBundleItems, getApiV2ItemsIdCallTrait, getApiV2ItemsIdInBundles, getApiV2ItemsIdInbound, getApiV2ItemsIdIncidents, getApiV2ItemsIdIncidentsCount, getApiV2ItemsIdLocations, getApiV2ItemsIdLocationsCount, getApiV2ItemsIdLocationsWithTransferCount, getApiV2ItemsIdMessages, getApiV2ItemsIdMessagesCount, getApiV2ItemsIdMetaFields, getApiV2ItemsIdOriginators, getApiV2ItemsIdOriginatorsCount, getApiV2ItemsIdScancodeAliases, getApiV2ItemsIdScancodes, getApiV2ItemsIdScancodesCount, getApiV2ItemsIdShipnoticeItems, getApiV2ItemsIdShipnoticeItemsCount, getApiV2ItemsIdTraits, getApiV2ItemsIdTransactions, getApiV2ItemsIdTransactionsCount, getApiV2ItemsIdTransactionsExport, getApiV2ItemsIdWarehouseQuantities, getApiV2ItemsTraits, getApiV2Loads, getApiV2LoadsActions, getApiV2LoadsCount, getApiV2LoadsId, getApiV2LoadsIdCallTrait, getApiV2LoadsIdOrderBatches, getApiV2LoadsIdTraits, getApiV2LoadsTraits, getApiV2Locales, getApiV2LocationAdjustments, getApiV2LocationAdjustmentsCount, getApiV2LocationAdjustmentsId, getApiV2LocationAdjustmentsIdTags, getApiV2LocationAudits, getApiV2LocationAuditsAggregate, getApiV2LocationAuditsCount, getApiV2LocationAuditsId, getApiV2LocationAuditsIdAllocations, getApiV2LocationTransfers, getApiV2LocationTransfersAggregate, getApiV2LocationTransfersCount, getApiV2LocationTransfersId, getApiV2LocationTransfersIdAllocations, getApiV2Locations, getApiV2LocationsActions, getApiV2LocationsAggregate, getApiV2LocationsCount, getApiV2LocationsId, getApiV2LocationsIdAudits, getApiV2LocationsIdIncidents, getApiV2LocationsIdIncidentsCount, getApiV2Lots, getApiV2LotsCount, getApiV2LotsId, getApiV2LotsIdAudits, getApiV2Manifests, getApiV2ManifestsCount, getApiV2ManifestsId, getApiV2ManifestsIdBatch, getApiV2ManifestsIdScanForm, getApiV2Me, getApiV2MetaKeys, getApiV2MetaKeysCount, getApiV2MetaKeysId, getApiV2Nav, getApiV2NavItems, getApiV2NotificationEvents, getApiV2NotificationEventsId, getApiV2NotificationSubscriptions, getApiV2NotificationSubscriptionsCount, getApiV2NotificationSubscriptionsId, getApiV2NotificationSubscriptionsIdAudits, getApiV2NotificationSubscriptionsIdTest, getApiV2OrderBatchItems, getApiV2OrderBatchItemsAggregate, getApiV2OrderBatchRequests, getApiV2OrderBatchRequestsCount, getApiV2OrderBatchRequestsId, getApiV2OrderBatches, getApiV2OrderBatchesActions, getApiV2OrderBatchesAggregate, getApiV2OrderBatchesId, getApiV2OrderBatchesIdAudits, getApiV2OrderBatchesIdCallTrait, getApiV2OrderBatchesIdIncidents, getApiV2OrderBatchesIdIncidentsCount, getApiV2OrderBatchesIdMetaFields, getApiV2OrderBatchesIdOrderBatchItems, getApiV2OrderBatchesIdPackingslips, getApiV2OrderBatchesIdTraits, getApiV2OrderBatchesTraits, getApiV2OrderDocumentsId, getApiV2OrderItems, getApiV2OrderItemsActions, getApiV2OrderItemsAggregate, getApiV2OrderItemsId, getApiV2OrderItemsIdAudits, getApiV2OrderItemsIdLots, getApiV2OrderItemsIdMetaFields, getApiV2OrderItemsIdOriginator, getApiV2OrderItemsIdSerialNumbers, getApiV2OrderItemsIdWholesaleItem, getApiV2OrderTotes, getApiV2OrderTotesCodeOrderItems, getApiV2OrderTotesCodeOrderItemsCount, getApiV2OrderTotesCodeOrders, getApiV2OrderTotesCodeOrdersCount, getApiV2Orders, getApiV2OrdersActions, getApiV2OrdersAggregate, getApiV2OrdersCount, getApiV2OrdersId, getApiV2OrdersIdAudits, getApiV2OrdersIdCallTrait, getApiV2OrdersIdCustomsInfo, getApiV2OrdersIdEvents, getApiV2OrdersIdEventsCount, getApiV2OrdersIdIncidents, getApiV2OrdersIdIncidentsCount, getApiV2OrdersIdLots, getApiV2OrdersIdMessages, getApiV2OrdersIdMessagesCount, getApiV2OrdersIdMeta, getApiV2OrdersIdMetaFields, getApiV2OrdersIdOrderDocuments, getApiV2OrdersIdOrderItems, getApiV2OrdersIdOrderItemsCount, getApiV2OrdersIdOriginator, getApiV2OrdersIdPackages, getApiV2OrdersIdPackagesCount, getApiV2OrdersIdPackingslip, getApiV2OrdersIdRuleDismissals, getApiV2OrdersIdSerialNumbers, getApiV2OrdersIdShipmentRates, getApiV2OrdersIdShippingRates, getApiV2OrdersIdShippingWeight, getApiV2OrdersIdTraits, getApiV2OrdersIdWholesale, getApiV2OrdersOrderTypes, getApiV2OrdersTraits, getApiV2Originators, getApiV2OriginatorsIdAudits, getApiV2Packages, getApiV2PackagesActions, getApiV2PackagesAggregate, getApiV2PackagesId, getApiV2PackagesIdAudits, getApiV2PackagesIdCallTrait, getApiV2PackagesIdShipment, getApiV2PackagesIdTraits, getApiV2PackagesTraits, getApiV2Pallets, getApiV2PalletsCount, getApiV2PalletsId, getApiV2PalletsIdPackages, getApiV2Partners, getApiV2PartnersCount, getApiV2PartnersId, getApiV2ProjectTasksId, getApiV2Projects, getApiV2ProjectsCount, getApiV2ProjectsId, getApiV2ProjectsIdProjectTasks, getApiV2ProjectsIdProjectTasksCount, getApiV2PublicCarrierStatus, getApiV2PublicNotificationEvents, getApiV2PublicStatus, getApiV2Rates, getApiV2RatesCount, getApiV2RatesId, getApiV2RatesIdAudits, getApiV2ReasonCodes, getApiV2ReasonCodesId, getApiV2RelocateInventoryTransfers, getApiV2RelocateInventoryTransfersCount, getApiV2ReturnAddresses, getApiV2ReturnAddressesId, getApiV2Rules, getApiV2RulesCount, getApiV2RulesId, getApiV2RulesIdAudits, getApiV2RulesIdHistory, getApiV2ScancodeAliases, getApiV2Scancodes, getApiV2SchemasLots, getApiV2SerialNumbers, getApiV2SerialNumbersActions, getApiV2ShipnoticeItems, getApiV2ShipnoticeItemsActions, getApiV2ShipnoticeItemsAggregate, getApiV2ShipnoticeItemsCount, getApiV2ShipnoticeItemsId, getApiV2ShipnoticeItemsIdAllocations, getApiV2ShipnoticeItemsIdAudits, getApiV2ShipnoticeItemsIdCallTrait, getApiV2ShipnoticeItemsIdLocations, getApiV2ShipnoticeItemsIdMetaFields, getApiV2ShipnoticeItemsIdOriginator, getApiV2ShipnoticeItemsIdReceived, getApiV2ShipnoticeItemsIdTags, getApiV2ShipnoticeItemsIdTraits, getApiV2ShipnoticeItemsTraits, getApiV2Shipnotices, getApiV2ShipnoticesActions, getApiV2ShipnoticesAggregate, getApiV2ShipnoticesCount, getApiV2ShipnoticesId, getApiV2ShipnoticesIdAudits, getApiV2ShipnoticesIdCallTrait, getApiV2ShipnoticesIdIncidents, getApiV2ShipnoticesIdIncidentsCount, getApiV2ShipnoticesIdMessages, getApiV2ShipnoticesIdMessagesCount, getApiV2ShipnoticesIdMetaFields, getApiV2ShipnoticesIdOrdersWaiting, getApiV2ShipnoticesIdOriginator, getApiV2ShipnoticesIdShipnoticeItems, getApiV2ShipnoticesIdShipnoticeItemsCount, getApiV2ShipnoticesIdTraits, getApiV2ShipnoticesTraits, getApiV2ShippingAliases, getApiV2ShippingAliasesCount, getApiV2ShippingAliasesId, getApiV2ShippingAliasesIdAudits, getApiV2ShippingBlacklistedMethods, getApiV2ShippingBlacklistedMethodsCount, getApiV2ShippingBlacklistedMethodsId, getApiV2ShippingMethodMarkupsIdAudits, getApiV2ShippingMethods, getApiV2ShippingMethodsCount, getApiV2ShippingMethodsId, getApiV2ShopsIdAudits, getApiV2ShopsIdMetaFields, getApiV2StatsAppConfig, getApiV2StatsSidekiq, getApiV2StatsSidekiqBatchStatusId, getApiV2StatsSidekiqName, getApiV2SurchargeMarkups, getApiV2SurchargeMarkupsCount, getApiV2SurchargeMarkupsId, getApiV2TemplateTypes, getApiV2Templates, getApiV2TemplatesId, getApiV2TemplatesIdAudits, getApiV2TemplatesIdRenderResourceId, getApiV2TemplatesRenderTypeTemplateTypeSlugResourceId, getApiV2TemplatesRenderTypeToFileTemplateTypeSlugResourceId, getApiV2TransactionsIdAudits, getApiV2TransportationMarkups, getApiV2TransportationMarkupsCount, getApiV2TransportationMarkupsId, getApiV2Users, getApiV2UsersBroadcasts, getApiV2UsersCount, getApiV2UsersId, getApiV2UsersIdAudits, getApiV2UsersIdCallTrait, getApiV2UsersIdTraits, getApiV2UsersJwt, getApiV2UsersTraits, getApiV2WarehouseFeatures, getApiV2WarehouseFeaturesCount, getApiV2WarehouseFeaturesId, getApiV2Warehouses, getApiV2WarehousesActions, getApiV2WarehousesAddresses, getApiV2WarehousesCount, getApiV2WarehousesId, getApiV2WarehousesIdCallTrait, getApiV2WarehousesIdCarrierAccounts, getApiV2WarehousesIdTraits, getApiV2WarehousesTraits, getApiV2WholesaleItems, getApiV2WholesaleItemsId, getApiV2Wholesales, getApiV2WholesalesAddresses, getApiV2WholesalesId, getBroadcastFromPusherResponse, getLocaleUrl, getLogoutUrl, getNavDataUrlBySlug, getPartnerBillingUrl, getSearchUrl, getUserChannelName, getUserSummary, getWarehouseIdOpenBatchesAgainstShelf, getWarehouseIdValidForDuplicatedLotRelocate, handleApiError, labeledSearchTypes, loadDirectlyRelatedObjects, loadIndirectlyRelatedObjects, loadRelatedObjects, multiPageGet, multiPageGetApiV21Documents, multiPageGetApiV21OrderBatchItems, multiPageGetApiV21OrderItems, multiPageGetApiV21Orders, multiPageGetApiV21SerialNumbers, navMock, postApiV21Accounts, postApiV21AccountsIdAccountTransactions, postApiV21BillOfLadings, postApiV21BillOfLadingsIdAddresses, postApiV21Broadcasts, postApiV21Cache, postApiV21CarrierAccounts, postApiV21CarrierAliases, postApiV21Carriers, postApiV21Chromalists, postApiV21ConsumerReturns, postApiV21ConsumerReturnsBulk, postApiV21ConsumerReturnsIdIncidents, postApiV21Currencies, postApiV21Customers, postApiV21Documents, postApiV21FilterSets, postApiV21ImporterOfRecords, postApiV21Incidents, postApiV21Items, postApiV21ItemsIdBundleItems, postApiV21ItemsIdIncidents, postApiV21ItemsIdLocations, postApiV21ItemsIdMessages, postApiV21ItemsIdOriginators, postApiV21Loads, postApiV21LocationAdjustments, postApiV21LocationAdjustmentsIdTags, postApiV21LocationAudits, postApiV21LocationTransfers, postApiV21LocationsIdIncidents, postApiV21Lots, postApiV21Manifests, postApiV21MetaKeys, postApiV21NotificationSubscriptions, postApiV21OrderBatchesIdIncidents, postApiV21Orders, postApiV21OrdersBulk, postApiV21OrdersIdDuplicate, postApiV21OrdersIdIncidents, postApiV21OrdersIdMessages, postApiV21OrdersIdOrderDocuments, postApiV21OrdersIdOrderItems, postApiV21OrdersIdPackages, postApiV21OrdersIdRuleDismissals, postApiV21Pallets, postApiV21Partners, postApiV21Prepacks, postApiV21Projects, postApiV21ProjectsIdProjectTasks, postApiV21Rates, postApiV21ReturnAddresses, postApiV21Rules, postApiV21ShipnoticeItemsIdTags, postApiV21Shipnotices, postApiV21ShipnoticesBulk, postApiV21ShipnoticesIdIncidents, postApiV21ShipnoticesIdMessages, postApiV21ShipnoticesIdShipnoticeItems, postApiV21ShippingAliases, postApiV21ShippingBlacklistedMethods, postApiV21ShippingMethods, postApiV21SimulateConsumerReturnsCreate, postApiV21SimulateOrdersCreate, postApiV21SimulateShipnoticesCreate, postApiV21SurchargeMarkups, postApiV21Templates, postApiV21TransportationMarkups, postApiV21Users, postApiV21UsersAuthorize, postApiV21UtilitiesPresignUrl, postApiV21UtilitiesPublicUrl, postApiV21UtilsPublicUrl, postApiV21WarehouseFeatures, postApiV21Warehouses, postApiV2Accounts, postApiV2AccountsIdAccountTransactions, postApiV2BillOfLadings, postApiV2BillOfLadingsIdAddresses, postApiV2Broadcasts, postApiV2Cache, postApiV2CarrierAccounts, postApiV2CarrierAliases, postApiV2Carriers, postApiV2Chromalists, postApiV2ConsumerReturns, postApiV2ConsumerReturnsBulk, postApiV2ConsumerReturnsIdIncidents, postApiV2Currencies, postApiV2Customers, postApiV2Documents, postApiV2FilterSets, postApiV2ImporterOfRecords, postApiV2Incidents, postApiV2Items, postApiV2ItemsIdBundleItems, postApiV2ItemsIdIncidents, postApiV2ItemsIdLocations, postApiV2ItemsIdMessages, postApiV2ItemsIdOriginators, postApiV2Loads, postApiV2LocationAdjustments, postApiV2LocationAdjustmentsIdTags, postApiV2LocationAudits, postApiV2LocationTransfers, postApiV2LocationsIdIncidents, postApiV2Lots, postApiV2Manifests, postApiV2MetaKeys, postApiV2NotificationSubscriptions, postApiV2OrderBatchesIdIncidents, postApiV2Orders, postApiV2OrdersBulk, postApiV2OrdersIdDuplicate, postApiV2OrdersIdIncidents, postApiV2OrdersIdMessages, postApiV2OrdersIdOrderDocuments, postApiV2OrdersIdOrderItems, postApiV2OrdersIdPackages, postApiV2OrdersIdRuleDismissals, postApiV2Pallets, postApiV2Partners, postApiV2Prepacks, postApiV2Projects, postApiV2ProjectsIdProjectTasks, postApiV2Rates, postApiV2ReturnAddresses, postApiV2Rules, postApiV2ShipnoticeItemsIdTags, postApiV2Shipnotices, postApiV2ShipnoticesBulk, postApiV2ShipnoticesIdIncidents, postApiV2ShipnoticesIdMessages, postApiV2ShipnoticesIdShipnoticeItems, postApiV2ShippingAliases, postApiV2ShippingBlacklistedMethods, postApiV2ShippingMethods, postApiV2SimulateConsumerReturnsCreate, postApiV2SimulateOrdersCreate, postApiV2SimulateShipnoticesCreate, postApiV2SurchargeMarkups, postApiV2Templates, postApiV2TransportationMarkups, postApiV2Users, postApiV2UsersAuthorize, postApiV2UtilitiesPresignUrl, postApiV2UtilitiesPublicUrl, postApiV2WarehouseFeatures, postApiV2Warehouses, putApiV21AccountsId, putApiV21AddressesId, putApiV21BillOfLadingsId, putApiV21BillOfLadingsIdCallAction, putApiV21BroadcastsId, putApiV21BroadcastsIdConsume, putApiV21BroadcastsIdExpire, putApiV21BundleItemsId, putApiV21CarrierAccountsId, putApiV21CarrierAccountsIdMetaFields, putApiV21CarrierAliasesId, putApiV21CarriersId, putApiV21ConsumerReturnsId, putApiV21ConsumerReturnsIdMetaFields, putApiV21CustomersId, putApiV21CustomersIdCallAction, putApiV21CustomersIdCallAsyncAction, putApiV21CustomersIdMetaFields, putApiV21CustomsInfosId, putApiV21DocumentsIdCallAction, putApiV21DocumentsIdCallAsyncAction, putApiV21FilterSetsId, putApiV21FilterSetsIdBatch, putApiV21FilterSetsIdCallAction, putApiV21FilterSetsIdCallEachAction, putApiV21FilterSetsIdExport, putApiV21FilterSetsIdSnapshot, putApiV21FilterSetsUpsert, putApiV21ImporterOfRecordsId, putApiV21IncidentsId, putApiV21IncidentsIdCallAction, putApiV21ItemsId, putApiV21ItemsIdCallAction, putApiV21ItemsIdCallAsyncAction, putApiV21ItemsIdMetaFields, putApiV21LoadsId, putApiV21LoadsIdCallAction, putApiV21LoadsIdGenerateBol, putApiV21LocationAuditsId, putApiV21LocationAuditsIdCallAction, putApiV21LocationTransfersId, putApiV21LocationTransfersIdCallAction, putApiV21LocationsId, putApiV21LocationsIdCallAction, putApiV21LocationsIdUpdateQuantity, putApiV21LocationsReassign, putApiV21LocationsRoleConvert, putApiV21LotsId, putApiV21ManifestsIdCallAction, putApiV21MetaKeysId, putApiV21NotificationSubscriptionsId, putApiV21OrderBatchItemsIdCallAction, putApiV21OrderBatchesId, putApiV21OrderBatchesIdCallAction, putApiV21OrderBatchesIdCallAsyncAction, putApiV21OrderBatchesIdForcePick, putApiV21OrderBatchesIdGenerateBol, putApiV21OrderBatchesIdMetaFields, putApiV21OrderBatchesIdReleaseUnshipped, putApiV21OrderBatchesIdSetCache, putApiV21OrderBatchesIdbuyLabels, putApiV21OrderDocumentsId, putApiV21OrderItemsId, putApiV21OrderItemsIdCallAction, putApiV21OrderItemsIdMetaFields, putApiV21OrderItemsIdSeparate, putApiV21OrderItemsIdSplit, putApiV21OrderItemsIdWholesaleItem, putApiV21OrdersId, putApiV21OrdersIdBatch, putApiV21OrdersIdCallAction, putApiV21OrdersIdCallAsyncAction, putApiV21OrdersIdCustomsInfo, putApiV21OrdersIdMetaFields, putApiV21OrdersIdPackItem, putApiV21OrdersIdWholesale, putApiV21OriginatorsId, putApiV21PackagesId, putApiV21PackagesIdCallAction, putApiV21PalletsId, putApiV21PalletsIdCallAction, putApiV21PartnersId, putApiV21ProjectTasksId, putApiV21ProjectsId, putApiV21ProjectsIdCallAction, putApiV21RatesId, putApiV21RatesIdCallAction, putApiV21ReturnAddressesId, putApiV21RulesId, putApiV21RulesIdCallAction, putApiV21ScancodeAliasesId, putApiV21ScancodesId, putApiV21SerialNumbersIdCallAction, putApiV21SerialNumbersIdRestore, putApiV21ShipnoticeItemIdDeleteSerials, putApiV21ShipnoticeItemsId, putApiV21ShipnoticeItemsIdCallAction, putApiV21ShipnoticeItemsIdCallAsyncAction, putApiV21ShipnoticeItemsIdMetaFields, putApiV21ShipnoticeItemsIdReceive, putApiV21ShipnoticesId, putApiV21ShipnoticesIdBulkReceive, putApiV21ShipnoticesIdBulkReceiveAsync, putApiV21ShipnoticesIdCallAction, putApiV21ShipnoticesIdCallAsyncAction, putApiV21ShipnoticesIdMetaFields, putApiV21ShippingAliasesId, putApiV21ShippingBlacklistedMethodsId, putApiV21ShippingMethodsId, putApiV21ShopsIdMetaFields, putApiV21SimulateConsumerReturnsConsumerReturnIdProcessing, putApiV21SimulateOrdersOrderIdProcessing, putApiV21SimulateShipnoticesShipnoticeIdProcessing, putApiV21SurchargeMarkupsId, putApiV21TemplatesId, putApiV21TemplatesIdCallAction, putApiV21TemplatesIdCallAsyncAction, putApiV21TransportationMarkupsId, putApiV21UsersId, putApiV21UsersIdCallAction, putApiV21WarehouseFeaturesId, putApiV21WarehousesId, putApiV21WarehousesIdCallAction, putApiV21WarehousesIdCallAsyncAction, putApiV21WholesaleItemsId, putApiV21WholesalesId, putApiV2AccountsId, putApiV2AddressesId, putApiV2BillOfLadingsId, putApiV2BillOfLadingsIdCallAction, putApiV2BroadcastsId, putApiV2BroadcastsIdConsume, putApiV2BroadcastsIdExpire, putApiV2BundleItemsId, putApiV2CarrierAccountsId, putApiV2CarrierAccountsIdMetaFields, putApiV2CarrierAliasesId, putApiV2CarriersId, putApiV2ConsumerReturnsId, putApiV2ConsumerReturnsIdMetaFields, putApiV2CustomersId, putApiV2CustomersIdCallAction, putApiV2CustomersIdCallAsyncAction, putApiV2CustomersIdMetaFields, putApiV2CustomsInfosId, putApiV2DocumentsIdCallAction, putApiV2DocumentsIdCallAsyncAction, putApiV2FilterSetsId, putApiV2FilterSetsIdBatch, putApiV2FilterSetsIdCallAction, putApiV2FilterSetsIdCallEachAction, putApiV2FilterSetsIdExport, putApiV2FilterSetsIdSnapshot, putApiV2FilterSetsUpsert, putApiV2ImporterOfRecordsId, putApiV2IncidentsId, putApiV2IncidentsIdCallAction, putApiV2ItemsId, putApiV2ItemsIdCallAction, putApiV2ItemsIdCallAsyncAction, putApiV2ItemsIdMetaFields, putApiV2LoadsId, putApiV2LoadsIdCallAction, putApiV2LocationAuditsId, putApiV2LocationAuditsIdCallAction, putApiV2LocationTransfersId, putApiV2LocationTransfersIdCallAction, putApiV2LocationsId, putApiV2LocationsIdCallAction, putApiV2LocationsIdUpdateQuantity, putApiV2LotsId, putApiV2ManifestsIdCallAction, putApiV2MetaKeysId, putApiV2NotificationSubscriptionsId, putApiV2OrderBatchItemsIdCallAction, putApiV2OrderBatchesId, putApiV2OrderBatchesIdCallAction, putApiV2OrderBatchesIdCallAsyncAction, putApiV2OrderBatchesIdMetaFields, putApiV2OrderDocumentsId, putApiV2OrderItemsId, putApiV2OrderItemsIdCallAction, putApiV2OrderItemsIdMetaFields, putApiV2OrderItemsIdSeparate, putApiV2OrderItemsIdSplit, putApiV2OrderItemsIdWholesaleItem, putApiV2OrdersId, putApiV2OrdersIdCallAction, putApiV2OrdersIdCallAsyncAction, putApiV2OrdersIdCustomsInfo, putApiV2OrdersIdMetaFields, putApiV2OrdersIdWholesale, putApiV2OriginatorsId, putApiV2PackagesId, putApiV2PackagesIdCallAction, putApiV2PalletsId, putApiV2PalletsIdCallAction, putApiV2PartnersId, putApiV2ProjectTasksId, putApiV2ProjectsId, putApiV2ProjectsIdCallAction, putApiV2RatesId, putApiV2RatesIdCallAction, putApiV2ReturnAddressesId, putApiV2RulesId, putApiV2RulesIdCallAction, putApiV2ScancodeAliasesId, putApiV2ScancodesId, putApiV2SerialNumbersIdCallAction, putApiV2ShipnoticeItemsId, putApiV2ShipnoticeItemsIdCallAction, putApiV2ShipnoticeItemsIdCallAsyncAction, putApiV2ShipnoticeItemsIdMetaFields, putApiV2ShipnoticeItemsIdReceive, putApiV2ShipnoticesId, putApiV2ShipnoticesIdCallAction, putApiV2ShipnoticesIdCallAsyncAction, putApiV2ShipnoticesIdMetaFields, putApiV2ShippingAliasesId, putApiV2ShippingBlacklistedMethodsId, putApiV2ShippingMethodsId, putApiV2ShopsIdMetaFields, putApiV2SimulateConsumerReturnsConsumerReturnIdProcessing, putApiV2SimulateOrdersOrderIdProcessing, putApiV2SimulateShipnoticesShipnoticeIdProcessing, putApiV2SurchargeMarkupsId, putApiV2TemplatesId, putApiV2TemplatesIdCallAction, putApiV2TemplatesIdCallAsyncAction, putApiV2TransportationMarkupsId, putApiV2UsersId, putApiV2UsersIdCallAction, putApiV2WarehouseFeaturesId, putApiV2WarehousesId, putApiV2WarehousesIdCallAction, putApiV2WarehousesIdCallAsyncAction, putApiV2WholesaleItemsId, putApiV2WholesalesId, putProcessShelfToShelfTransfer, searchTypes, setApiV21ItemAvailable, setUserCustomer, setUserWarehouse, subscribe, subscribeToUserChannel, toSentence, unsetApiV21ItemAvailable, unsetUserCustomer, unsetUserWarehouse, unsubscribe, unsubscribeFromUserChannel, userMock, waitForBatch, waitForJob, warehouseMock };
41316
+ export { ApiV21AccountCreatedExample, ApiV21AccountTransactionCreatedExample, ApiV21AddressCreatedExample, ApiV21BillOfLadingCreatedExample, ApiV21BroadcastCreatedExample, ApiV21BundleItemCreatedExample, ApiV21CarrierAccountCreatedExample, ApiV21CarrierCreatedExample, ApiV21ChromalistCreatedExample, ApiV21ConsumerReturnAllExample, ApiV21ConsumerReturnCreatedExample, ApiV21ConsumerReturnInTransitExample, ApiV21CountCreatedExample, ApiV21CurrencyCreatedExample, ApiV21CustomerCreatedExample, ApiV21DocumentCreatedExample, ApiV21EntitiesBillOfLadingBolType, ApiV21EntitiesBillOfLadingFreightCharge, ApiV21EntitiesChromalistChroma, ApiV21EntitiesChromalistResourceType, ApiV21EntitiesItemHazmatType, ApiV21EntitiesItemLabelFormat, ApiV21EntitiesItemLocationRole, ApiV21EntitiesItemOriginCountry, ApiV21EntitiesItemPackagingType, ApiV21EntitiesLocationRole, ApiV21EntitiesOrderIncoterm, ApiV21EntitiesOrderOrderType, ApiV21EntitiesOrderPaymentType, ApiV21EntitiesOrderStatus, ApiV21EntitiesReturnAddressCountryIso2, ApiV21EntitiesUserLocale, ApiV21EntitiesUserRole, ApiV21FilterSetCreatedExample, ApiV21ImporterOfRecordCreatedExample, ApiV21IncidentCreatedExample, ApiV21ItemBundleExample, ApiV21ItemCreatedExample, ApiV21ItemMerchExample, ApiV21ItemPackagingExample, ApiV21ItemSingleExample, ApiV21LoadCreatedExample, ApiV21LoadOpenNoBolExample, ApiV21LoadScacCreatedExample, ApiV21LocationAuditCreatedExample, ApiV21LocationCreatedExample, ApiV21LocationMultipleExample, ApiV21LocationSingleExample, ApiV21LotCreatedExample, ApiV21MessageCreatedExample, ApiV21MetaKeyCreatedExample, ApiV21NavNormalExample, ApiV21NotificationSubscriptionCreatedExample, ApiV21OrderAllExample, ApiV21OrderBatchInLoadExample, ApiV21OrderBatchWholesaleAvailableExample, ApiV21OrderCreatedExample, ApiV21OrderDocumentCreatedExample, ApiV21OrderItemCreatedExample, ApiV21OrderProcessingExample, ApiV21OriginatorCreatedExample, ApiV21PackageCreatedExample, ApiV21PalletCreatedExample, ApiV21PartnerCreatedExample, ApiV21PrepackCreatedExample, ApiV21ProjectCreatedExample, ApiV21ProjectTaskCreatedExample, ApiV21ResultCreatedExample, ApiV21ReturnAddressCreatedExample, ApiV21RuleCreatedExample, ApiV21RuleDismissalCreatedExample, ApiV21ShipnoticeAllExample, ApiV21ShipnoticeCreatedExample, ApiV21ShipnoticeInTransitExample, ApiV21ShipnoticeItemCreatedExample, ApiV21ShipnoticeProcessingExample, ApiV21ShippingAliasCreatedExample, ApiV21ShippingBlacklistedMethodCreatedExample, ApiV21ShippingMethodCreatedExample, ApiV21SurchargeMarkupCreatedExample, ApiV21TagCreatedExample, ApiV21TemplateCreatedExample, ApiV21TransportationMarkupCreatedExample, ApiV21UserCreatedExample, ApiV21WarehouseCreatedExample, ApiV21WarehouseFeatureCreatedExample, ApiV2ConsumerReturnAllExample, ApiV2ConsumerReturnInTransitExample, ApiV2CustomerNormalExample, ApiV2EntitiesBillOfLadingBolType, ApiV2EntitiesBillOfLadingFreightCharge, ApiV2EntitiesChromalistChroma, ApiV2EntitiesChromalistResourceType, ApiV2EntitiesItemHazmatType, ApiV2EntitiesItemLabelFormat, ApiV2EntitiesItemLocationRole, ApiV2EntitiesItemOriginCountry, ApiV2EntitiesItemPackagingType, ApiV2EntitiesLocationRole, ApiV2EntitiesOrderIncoterm, ApiV2EntitiesOrderOrderType, ApiV2EntitiesOrderPaymentType, ApiV2EntitiesOrderStatus, ApiV2EntitiesReturnAddressCountryIso2, ApiV2EntitiesUserLocale, ApiV2EntitiesUserRole, ApiV2ItemBundleExample, ApiV2ItemMerchExample, ApiV2ItemPackagingExample, ApiV2ItemSingleExample, ApiV2LoadCreatedExample, ApiV2LoadOpenNoBolExample, ApiV2LocationMultipleExample, ApiV2LocationSingleExample, ApiV2NavNormalExample, ApiV2OrderAllExample, ApiV2OrderBatchInLoadExample, ApiV2OrderBatchWholesaleAvailableExample, ApiV2OrderProcessingExample, ApiV2ShipnoticeAllExample, ApiV2ShipnoticeInTransitExample, ApiV2ShipnoticeProcessingExample, ApiV2UserNormalExample, ApiV2WarehouseNormalExample, ContentType, DhlPackagingType, FedExPackagingType, GetApiV21ItemsIdInboundParamsType, GetApiV21ItemsIdLocationsWithTransferCountParamsRole, GetApiV21SchemasLotsParamsSchema, GetApiV2ItemsIdInboundParamsType, GetApiV2ItemsIdLocationsWithTransferCountParamsRole, GetApiV2SchemasLotsParamsSchema, HttpClient, ItemOutboundTabs, LabeledDhlPackagingType, LabeledFedExPackagingType, LabeledHazmatTypes, LabeledRoyalMailPackagingType, LabeledUpsPackagingType, LabeledUspsPackagingType, LabeledWhiplashPackagingType, LocationRelations, PostApiV21BillOfLadingsIdAddressesRequestAddressType, PostApiV21BillOfLadingsRequestBolType, PostApiV21BillOfLadingsRequestFreightCharge, PostApiV21CarrierAccountsRequestProvider, PostApiV21ChromalistsRequestChroma, PostApiV21ChromalistsRequestResourceType, PostApiV21FilterSetsRequestType, PostApiV21ItemsIdLocationsRequestOwnerType, PostApiV21ItemsIdLocationsRequestRole, PostApiV21ItemsRequestHazmatType, PostApiV21ItemsRequestLabelFormat, PostApiV21ItemsRequestOriginCountry, PostApiV21ItemsRequestPackagingType, PostApiV21LocationAuditsRequestState, PostApiV21MetaKeysRequestOwnerType, PostApiV21MetaKeysRequestValueType, PostApiV21OrdersBulkRequestIncoterm, PostApiV21OrdersBulkRequestOrderType, PostApiV21OrdersBulkRequestPaymentType, PostApiV21OrdersBulkRequestStatus, PostApiV21OrdersRequestIncoterm, PostApiV21OrdersRequestOrderType, PostApiV21OrdersRequestPaymentType, PostApiV21OrdersRequestStatus, PostApiV21ReturnAddressesRequestCountryIso2, PostApiV21RulesRequestState, PostApiV21RulesRequestType, PostApiV21UsersRequestLocale, PostApiV21UsersRequestRole, PostApiV21UtilitiesPresignUrlRequestResourceType, PostApiV21WarehousesRequestDefaultPickStrategy, PostApiV21WarehousesRequestShippingLabelFormat, PostApiV2BillOfLadingsIdAddressesRequestAddressType, PostApiV2BillOfLadingsRequestBolType, PostApiV2BillOfLadingsRequestFreightCharge, PostApiV2CarrierAccountsRequestProvider, PostApiV2ChromalistsRequestChroma, PostApiV2ChromalistsRequestResourceType, PostApiV2FilterSetsRequestType, PostApiV2ItemsIdLocationsRequestOwnerType, PostApiV2ItemsIdLocationsRequestRole, PostApiV2ItemsRequestHazmatType, PostApiV2ItemsRequestLabelFormat, PostApiV2ItemsRequestOriginCountry, PostApiV2ItemsRequestPackagingType, PostApiV2LocationAuditsRequestState, PostApiV2MetaKeysRequestOwnerType, PostApiV2MetaKeysRequestValueType, PostApiV2OrdersBulkRequestIncoterm, PostApiV2OrdersBulkRequestOrderType, PostApiV2OrdersBulkRequestPaymentType, PostApiV2OrdersBulkRequestStatus, PostApiV2OrdersRequestIncoterm, PostApiV2OrdersRequestOrderType, PostApiV2OrdersRequestPaymentType, PostApiV2OrdersRequestStatus, PostApiV2ReturnAddressesRequestCountryIso2, PostApiV2RulesRequestState, PostApiV2RulesRequestType, PostApiV2UsersRequestLocale, PostApiV2UsersRequestRole, PostApiV2UtilitiesPresignUrlRequestResourceType, PostApiV2WarehousesRequestDefaultPickStrategy, PostApiV2WarehousesRequestShippingLabelFormat, PusherBatchResponses, PusherEventTypes, PusherJobStatus, PutApiV21BillOfLadingsIdRequestBolType, PutApiV21BillOfLadingsIdRequestFreightCharge, PutApiV21FilterSetsIdBatchRequestGroupBy, PutApiV21FilterSetsIdBatchRequestLocationRoles, PutApiV21FilterSetsIdBatchRequestPickStrategy, PutApiV21FilterSetsIdBatchRequestWaveStrategy, PutApiV21FilterSetsUpsertRequestType, PutApiV21IncidentsIdRequestHazmatType, PutApiV21IncidentsIdRequestLabelFormat, PutApiV21IncidentsIdRequestOriginCountry, PutApiV21IncidentsIdRequestPackagingType, PutApiV21ItemsIdRequestHazmatType, PutApiV21ItemsIdRequestLabelFormat, PutApiV21ItemsIdRequestOriginCountry, PutApiV21ItemsIdRequestPackagingType, PutApiV21LocationsIdRequestRole, PutApiV21LocationsIdUpdateQuantityRequestOwnerType, PutApiV21MetaKeysIdRequestOwnerType, PutApiV21MetaKeysIdRequestValueType, PutApiV21OrdersIdRequestIncoterm, PutApiV21OrdersIdRequestOrderType, PutApiV21OrdersIdRequestPaymentType, PutApiV21ReturnAddressesIdRequestCountryIso2, PutApiV21RulesIdRequestState, PutApiV21SimulateOrdersOrderIdProcessingRequestStatus, PutApiV21UsersIdRequestLocale, PutApiV21UsersIdRequestRole, PutApiV2BillOfLadingsIdRequestBolType, PutApiV2BillOfLadingsIdRequestFreightCharge, PutApiV2FilterSetsIdBatchRequestGroupBy, PutApiV2FilterSetsIdBatchRequestLocationRoles, PutApiV2FilterSetsIdBatchRequestPickStrategy, PutApiV2FilterSetsIdBatchRequestWaveStrategy, PutApiV2FilterSetsUpsertRequestType, PutApiV2IncidentsIdRequestHazmatType, PutApiV2IncidentsIdRequestLabelFormat, PutApiV2IncidentsIdRequestOriginCountry, PutApiV2IncidentsIdRequestPackagingType, PutApiV2ItemsIdRequestHazmatType, PutApiV2ItemsIdRequestLabelFormat, PutApiV2ItemsIdRequestOriginCountry, PutApiV2ItemsIdRequestPackagingType, PutApiV2LocationsIdRequestRole, PutApiV2LocationsIdUpdateQuantityRequestOwnerType, PutApiV2MetaKeysIdRequestOwnerType, PutApiV2MetaKeysIdRequestValueType, PutApiV2OrdersIdRequestIncoterm, PutApiV2OrdersIdRequestOrderType, PutApiV2OrdersIdRequestPaymentType, PutApiV2ReturnAddressesIdRequestCountryIso2, PutApiV2RulesIdRequestState, PutApiV2SimulateOrdersOrderIdProcessingRequestStatus, PutApiV2UsersIdRequestLocale, PutApiV2UsersIdRequestRole, RelationType, RoyalMailPackagingType, ShipnoticeStatus, UpsPackagingType, UspsPackagingType, WhiplashPackagingType, customerMock, deleteApiV21AccountsId, deleteApiV21AddressesId, deleteApiV21AllocationsId, deleteApiV21BillOfLadingsId, deleteApiV21BroadcastsId, deleteApiV21BundleItemsId, deleteApiV21CacheKey, deleteApiV21CarrierAccountsId, deleteApiV21CarriersId, deleteApiV21ChromalistsId, deleteApiV21ConsumerReturnsId, deleteApiV21CurrenciesId, deleteApiV21DocumentsId, deleteApiV21FilterSetsId, deleteApiV21ImporterOfRecordsId, deleteApiV21IncidentsId, deleteApiV21ItemsId, deleteApiV21LoadScacsId, deleteApiV21LoadsId, deleteApiV21LocationAdjustmentsIdTags, deleteApiV21LocationAuditsId, deleteApiV21LocationTransfersId, deleteApiV21LocationsId, deleteApiV21LotsId, deleteApiV21MetaKeysId, deleteApiV21NotificationSubscriptionsId, deleteApiV21OrderDocumentsId, deleteApiV21OrderItemsId, deleteApiV21PackagesId, deleteApiV21PalletsId, deleteApiV21PartnersId, deleteApiV21ProjectTasksId, deleteApiV21ProjectsId, deleteApiV21ReturnAddressesId, deleteApiV21RuleDismissalsId, deleteApiV21RulesId, deleteApiV21ShipnoticeItemsId, deleteApiV21ShipnoticeItemsIdTags, deleteApiV21ShipnoticesId, deleteApiV21ShippingAliasesId, deleteApiV21ShippingBlacklistedMethodsId, deleteApiV21ShippingMethodsId, deleteApiV21SurchargeMarkupsId, deleteApiV21TemplatesId, deleteApiV21TransportationMarkupsId, deleteApiV21UsersId, deleteApiV21WarehouseFeaturesId, deleteApiV21WarehousesId, deleteApiV21WholesaleItemsId, deleteApiV2AccountsId, deleteApiV2AddressesId, deleteApiV2AllocationsId, deleteApiV2BillOfLadingsId, deleteApiV2BroadcastsId, deleteApiV2BundleItemsId, deleteApiV2CacheKey, deleteApiV2CarrierAccountsId, deleteApiV2CarriersId, deleteApiV2ChromalistsId, deleteApiV2ConsumerReturnsId, deleteApiV2CurrenciesId, deleteApiV2DocumentsId, deleteApiV2FilterSetsId, deleteApiV2ImporterOfRecordsId, deleteApiV2IncidentsId, deleteApiV2ItemsId, deleteApiV2LoadScacsId, deleteApiV2LoadsId, deleteApiV2LocationAdjustmentsIdTags, deleteApiV2LocationAuditsId, deleteApiV2LocationTransfersId, deleteApiV2LocationsId, deleteApiV2LotsId, deleteApiV2MetaKeysId, deleteApiV2NotificationSubscriptionsId, deleteApiV2OrderDocumentsId, deleteApiV2OrderItemsId, deleteApiV2PackagesId, deleteApiV2PalletsId, deleteApiV2PartnersId, deleteApiV2ProjectTasksId, deleteApiV2ProjectsId, deleteApiV2ReturnAddressesId, deleteApiV2RuleDismissalsId, deleteApiV2RulesId, deleteApiV2ShipnoticeItemsId, deleteApiV2ShipnoticeItemsIdTags, deleteApiV2ShipnoticesId, deleteApiV2ShippingAliasesId, deleteApiV2ShippingBlacklistedMethodsId, deleteApiV2ShippingMethodsId, deleteApiV2SurchargeMarkupsId, deleteApiV2TemplatesId, deleteApiV2TransportationMarkupsId, deleteApiV2UsersId, deleteApiV2WarehouseFeaturesId, deleteApiV2WarehousesId, deleteApiV2WholesaleItemsId, errorHandler, generateErrorString, getAllCustomersUrl, getAllWarehousesUrl, getApi21InboundConsumerReturnUnitCount, getApi21InboundShipnoticeUnitCount, getApi21ItemLocationRoleQuantitiesByWarehouse, getApi21UnbtachedOrderCount, getApi21UserCanReleasePlan, getApiItemQuantities, getApiV21AccountTransactions, getApiV21AccountTransactionsCount, getApiV21AccountTransactionsId, getApiV21Accounts, getApiV21AccountsCount, getApiV21AccountsId, getApiV21AccountsIdAccountTransactions, getApiV21AccountsIdAudits, getApiV21AccountsIdSuggestedRefill, getApiV21Allocations, getApiV21BatchedUnshippedCount, getApiV21BillOfLadings, getApiV21BillOfLadingsActions, getApiV21BillOfLadingsId, getApiV21BillOfLadingsIdAddresses, getApiV21Broadcasts, getApiV21BroadcastsCount, getApiV21BroadcastsId, getApiV21BroadcastsLevels, getApiV21BundleItemsId, getApiV21CacheKey, getApiV21CarrierAccounts, getApiV21CarrierAccountsCount, getApiV21CarrierAccountsEasypost, getApiV21CarrierAccountsId, getApiV21CarrierAccountsIdAudits, getApiV21CarrierAccountsIdEasypostAccount, getApiV21CarrierAccountsIdMetaFields, getApiV21CarrierAccountsIdProviderAccount, getApiV21CarrierAccountsProviderAccounts, getApiV21Carriers, getApiV21CarriersId, getApiV21ChaosCpuSpin, getApiV21ChaosDbSleep, getApiV21ChaosDbSpin, getApiV21ChaosDbWrite, getApiV21ChaosRackTimeout, getApiV21ChaosSleep, getApiV21Chromalists, getApiV21ConsumerReturnIdReturnItems, getApiV21ConsumerReturns, getApiV21ConsumerReturnsAggregate, getApiV21ConsumerReturnsCount, getApiV21ConsumerReturnsId, getApiV21ConsumerReturnsIdCallTrait, getApiV21ConsumerReturnsIdIncidents, getApiV21ConsumerReturnsIdIncidentsCount, getApiV21ConsumerReturnsIdMetaFields, getApiV21ConsumerReturnsIdOriginator, getApiV21ConsumerReturnsIdTraits, getApiV21ConsumerReturnsTraits, getApiV21Currencies, getApiV21Customers, getApiV21CustomersActions, getApiV21CustomersCount, getApiV21CustomersId, getApiV21CustomersIdAudits, getApiV21CustomersIdCallTrait, getApiV21CustomersIdDefaultReturnLocationRole, getApiV21CustomersIdEnablePendingReturns, getApiV21CustomersIdGoEnabled, getApiV21CustomersIdMetaFields, getApiV21CustomersIdShops, getApiV21CustomersIdTraits, getApiV21CustomersTraits, getApiV21CustomsInfos, getApiV21CustomsInfosId, getApiV21Dashboards, getApiV21DashboardsId, getApiV21Documents, getApiV21DocumentsActions, getApiV21DocumentsId, getApiV21FilterSets, getApiV21FilterSetsCount, getApiV21FilterSetsId, getApiV21FilterSetsIdCallTrait, getApiV21FilterSetsIdResults, getApiV21FilterSetsIdResultsAggregate, getApiV21FilterSetsIdResultsCount, getApiV21FilterSetsIdTraits, getApiV21FilterSetsOptions, getApiV21FilterSetsTraits, getApiV21ImporterOfRecords, getApiV21ImporterOfRecordsId, getApiV21Incidents, getApiV21IncidentsActions, getApiV21IncidentsCount, getApiV21InvoiceItems, getApiV21InvoiceItemsCount, getApiV21InvoiceItemsId, getApiV21Invoices, getApiV21InvoicesCount, getApiV21InvoicesId, getApiV21InvoicesIdCallTrait, getApiV21InvoicesIdTraits, getApiV21InvoicesTraits, getApiV21ItemOutboundInfo, getApiV21ItemQuantitiesByRoles, getApiV21Items, getApiV21ItemsActions, getApiV21ItemsAggregate, getApiV21ItemsCount, getApiV21ItemsHazmatTypes, getApiV21ItemsId, getApiV21ItemsIdAudits, getApiV21ItemsIdBundleItems, getApiV21ItemsIdCallTrait, getApiV21ItemsIdInBundles, getApiV21ItemsIdInbound, getApiV21ItemsIdIncidents, getApiV21ItemsIdIncidentsCount, getApiV21ItemsIdLocations, getApiV21ItemsIdLocationsCount, getApiV21ItemsIdLocationsWithTransferCount, getApiV21ItemsIdMessages, getApiV21ItemsIdMessagesCount, getApiV21ItemsIdMetaFields, getApiV21ItemsIdOriginators, getApiV21ItemsIdOriginatorsCount, getApiV21ItemsIdScancodeAliases, getApiV21ItemsIdScancodes, getApiV21ItemsIdScancodesCount, getApiV21ItemsIdShipnoticeItems, getApiV21ItemsIdShipnoticeItemsCount, getApiV21ItemsIdTraits, getApiV21ItemsIdTransactions, getApiV21ItemsIdTransactionsCount, getApiV21ItemsIdTransactionsExport, getApiV21ItemsIdWarehouseQuantities, getApiV21ItemsTraits, getApiV21LoadScacs, getApiV21LoadScacsCount, getApiV21LoadScacsId, getApiV21Loads, getApiV21LoadsActions, getApiV21LoadsCount, getApiV21LoadsExtended, getApiV21LoadsId, getApiV21LoadsIdCallTrait, getApiV21LoadsIdOrderBatches, getApiV21LoadsIdTraits, getApiV21LoadsTraits, getApiV21Locales, getApiV21LocationAdjustments, getApiV21LocationAdjustmentsCount, getApiV21LocationAdjustmentsId, getApiV21LocationAdjustmentsIdTags, getApiV21LocationAudits, getApiV21LocationAuditsAggregate, getApiV21LocationAuditsCount, getApiV21LocationAuditsId, getApiV21LocationAuditsIdAllocations, getApiV21LocationTransfers, getApiV21LocationTransfersAggregate, getApiV21LocationTransfersCount, getApiV21LocationTransfersId, getApiV21LocationTransfersIdAllocations, getApiV21Locations, getApiV21LocationsActions, getApiV21LocationsAggregate, getApiV21LocationsCount, getApiV21LocationsExtended, getApiV21LocationsId, getApiV21LocationsIdAudits, getApiV21LocationsIdIncidents, getApiV21LocationsIdIncidentsCount, getApiV21Lots, getApiV21LotsCount, getApiV21LotsExtended, getApiV21LotsId, getApiV21LotsIdAudits, getApiV21Manifests, getApiV21ManifestsCount, getApiV21ManifestsId, getApiV21ManifestsIdBatch, getApiV21ManifestsIdScanForm, getApiV21Me, getApiV21MetaKeys, getApiV21MetaKeysCount, getApiV21MetaKeysId, getApiV21Nav, getApiV21NavItems, getApiV21NotificationEvents, getApiV21NotificationEventsId, getApiV21NotificationSubscriptions, getApiV21NotificationSubscriptionsCount, getApiV21NotificationSubscriptionsId, getApiV21NotificationSubscriptionsIdAudits, getApiV21NotificationSubscriptionsIdTest, getApiV21OrderBatchItems, getApiV21OrderBatchItemsAggregate, getApiV21OrderBatchRequests, getApiV21OrderBatchRequestsCount, getApiV21OrderBatchRequestsExtended, getApiV21OrderBatchRequestsId, getApiV21OrderBatches, getApiV21OrderBatchesActions, getApiV21OrderBatchesAggregate, getApiV21OrderBatchesExtended, getApiV21OrderBatchesId, getApiV21OrderBatchesIdAudits, getApiV21OrderBatchesIdCallTrait, getApiV21OrderBatchesIdIncidents, getApiV21OrderBatchesIdIncidentsCount, getApiV21OrderBatchesIdMetaFields, getApiV21OrderBatchesIdOrderBatchItems, getApiV21OrderBatchesIdOrderCountsByStatus, getApiV21OrderBatchesIdPackedPercent, getApiV21OrderBatchesIdPackingslips, getApiV21OrderBatchesIdPublicPackingslipUrl, getApiV21OrderBatchesIdPublicPicklistUrl, getApiV21OrderBatchesIdSummary, getApiV21OrderBatchesIdTraits, getApiV21OrderBatchesTraits, getApiV21OrderDocumentsId, getApiV21OrderItems, getApiV21OrderItemsActions, getApiV21OrderItemsAggregate, getApiV21OrderItemsId, getApiV21OrderItemsIdAudits, getApiV21OrderItemsIdLots, getApiV21OrderItemsIdMetaFields, getApiV21OrderItemsIdOriginator, getApiV21OrderItemsIdSerialNumbers, getApiV21OrderItemsIdWholesaleItem, getApiV21OrderTotes, getApiV21OrderTotesCodeOrderItems, getApiV21OrderTotesCodeOrderItemsCount, getApiV21OrderTotesCodeOrders, getApiV21OrderTotesCodeOrdersCount, getApiV21Orders, getApiV21OrdersActions, getApiV21OrdersAggregate, getApiV21OrdersCount, getApiV21OrdersId, getApiV21OrdersIdAudits, getApiV21OrdersIdCallTrait, getApiV21OrdersIdCommercialInvoice, getApiV21OrdersIdCustomsInfo, getApiV21OrdersIdEvents, getApiV21OrdersIdEventsCount, getApiV21OrdersIdHasGlobalEInvoice, getApiV21OrdersIdHasOuterPackaging, getApiV21OrdersIdIncidents, getApiV21OrdersIdIncidentsCount, getApiV21OrdersIdLots, getApiV21OrdersIdMessages, getApiV21OrdersIdMessagesCount, getApiV21OrdersIdMeta, getApiV21OrdersIdMetaFields, getApiV21OrdersIdOrderDocuments, getApiV21OrdersIdOrderItems, getApiV21OrdersIdOrderItemsCount, getApiV21OrdersIdOriginator, getApiV21OrdersIdPackages, getApiV21OrdersIdPackagesCount, getApiV21OrdersIdPackingRulesWithSuggestedItems, getApiV21OrdersIdPackingslip, getApiV21OrdersIdPublicInsertUrl, getApiV21OrdersIdPublicPackingslipUrl, getApiV21OrdersIdRuleDismissals, getApiV21OrdersIdSerialNumbers, getApiV21OrdersIdShipmentRates, getApiV21OrdersIdShippingRates, getApiV21OrdersIdShippingWeight, getApiV21OrdersIdSkipPackingslip, getApiV21OrdersIdToteCode, getApiV21OrdersIdTraits, getApiV21OrdersIdWholesale, getApiV21OrdersOrderTypes, getApiV21OrdersTraits, getApiV21Originators, getApiV21OriginatorsIdAudits, getApiV21Packages, getApiV21PackagesActions, getApiV21PackagesAggregate, getApiV21PackagesId, getApiV21PackagesIdAudits, getApiV21PackagesIdCallTrait, getApiV21PackagesIdShipment, getApiV21PackagesIdTraits, getApiV21PackagesTraits, getApiV21Pallets, getApiV21PalletsCount, getApiV21PalletsId, getApiV21PalletsIdPackages, getApiV21Partners, getApiV21PartnersCount, getApiV21PartnersId, getApiV21ProjectTasksId, getApiV21Projects, getApiV21ProjectsCount, getApiV21ProjectsId, getApiV21ProjectsIdProjectTasks, getApiV21ProjectsIdProjectTasksCount, getApiV21PublicCarrierStatus, getApiV21PublicNotificationEvents, getApiV21PublicStatus, getApiV21Rates, getApiV21RatesCount, getApiV21RatesId, getApiV21RatesIdAudits, getApiV21ReasonCodes, getApiV21ReasonCodesId, getApiV21RelocateInventoryTransfers, getApiV21RelocateInventoryTransfersCount, getApiV21ReturnAddresses, getApiV21ReturnAddressesId, getApiV21Rules, getApiV21RulesCount, getApiV21RulesId, getApiV21RulesIdAudits, getApiV21RulesIdHistory, getApiV21ScancodeAliases, getApiV21Scancodes, getApiV21SchemasLots, getApiV21SerialNumbers, getApiV21SerialNumbersActions, getApiV21ShipNoticeItemTotalReceivedAllocated, getApiV21ShipnoticeItems, getApiV21ShipnoticeItemsActions, getApiV21ShipnoticeItemsAggregate, getApiV21ShipnoticeItemsCount, getApiV21ShipnoticeItemsId, getApiV21ShipnoticeItemsIdAllocations, getApiV21ShipnoticeItemsIdAudits, getApiV21ShipnoticeItemsIdCallTrait, getApiV21ShipnoticeItemsIdLocations, getApiV21ShipnoticeItemsIdMetaFields, getApiV21ShipnoticeItemsIdOriginator, getApiV21ShipnoticeItemsIdReceived, getApiV21ShipnoticeItemsIdTags, getApiV21ShipnoticeItemsIdTraits, getApiV21ShipnoticeItemsTraits, getApiV21Shipnotices, getApiV21ShipnoticesActions, getApiV21ShipnoticesAggregate, getApiV21ShipnoticesCount, getApiV21ShipnoticesId, getApiV21ShipnoticesIdAudits, getApiV21ShipnoticesIdCallTrait, getApiV21ShipnoticesIdCustomerReservedReceiving, getApiV21ShipnoticesIdIncidents, getApiV21ShipnoticesIdIncidentsCount, getApiV21ShipnoticesIdMessages, getApiV21ShipnoticesIdMessagesCount, getApiV21ShipnoticesIdMetaFields, getApiV21ShipnoticesIdOrdersWaiting, getApiV21ShipnoticesIdOriginator, getApiV21ShipnoticesIdShipnoticeItems, getApiV21ShipnoticesIdShipnoticeItemsCount, getApiV21ShipnoticesIdTraits, getApiV21ShipnoticesTraits, getApiV21ShippingAliases, getApiV21ShippingAliasesCount, getApiV21ShippingAliasesId, getApiV21ShippingAliasesIdAudits, getApiV21ShippingBlacklistedMethods, getApiV21ShippingBlacklistedMethodsCount, getApiV21ShippingBlacklistedMethodsId, getApiV21ShippingMethodMarkupsIdAudits, getApiV21ShippingMethods, getApiV21ShippingMethodsCount, getApiV21ShippingMethodsId, getApiV21ShopsIdAudits, getApiV21ShopsIdMetaFields, getApiV21SipnoticeItemReceivingTimeline, getApiV21StatsAppConfig, getApiV21StatsSidekiq, getApiV21StatsSidekiqBatchStatusId, getApiV21StatsSidekiqName, getApiV21SurchargeMarkups, getApiV21SurchargeMarkupsCount, getApiV21SurchargeMarkupsId, getApiV21TemplateTypes, getApiV21Templates, getApiV21TemplatesId, getApiV21TemplatesIdAudits, getApiV21TemplatesIdRenderResourceId, getApiV21TemplatesRenderTypeTemplateTypeSlugResourceId, getApiV21TemplatesRenderTypeToFileTemplateTypeSlugResourceId, getApiV21TransactionsIdAudits, getApiV21TransportationMarkups, getApiV21TransportationMarkupsCount, getApiV21TransportationMarkupsId, getApiV21Users, getApiV21UsersBroadcasts, getApiV21UsersCount, getApiV21UsersId, getApiV21UsersIdAudits, getApiV21UsersIdCallTrait, getApiV21UsersIdTraits, getApiV21UsersJwt, getApiV21UsersTraits, getApiV21WarehouseFeatures, getApiV21WarehouseFeaturesCount, getApiV21WarehouseFeaturesId, getApiV21Warehouses, getApiV21WarehousesActions, getApiV21WarehousesAddresses, getApiV21WarehousesCount, getApiV21WarehousesId, getApiV21WarehousesIdCallTrait, getApiV21WarehousesIdCarrierAccounts, getApiV21WarehousesIdTraits, getApiV21WarehousesTraits, getApiV21WholesaleItems, getApiV21WholesaleItemsId, getApiV21Wholesales, getApiV21WholesalesAddresses, getApiV21WholesalesId, getApiV2AccountTransactions, getApiV2AccountTransactionsCount, getApiV2AccountTransactionsId, getApiV2Accounts, getApiV2AccountsCount, getApiV2AccountsId, getApiV2AccountsIdAccountTransactions, getApiV2AccountsIdAudits, getApiV2AccountsIdSuggestedRefill, getApiV2Allocations, getApiV2BillOfLadings, getApiV2BillOfLadingsActions, getApiV2BillOfLadingsId, getApiV2BillOfLadingsIdAddresses, getApiV2Broadcasts, getApiV2BroadcastsCount, getApiV2BroadcastsId, getApiV2BroadcastsLevels, getApiV2BundleItemsId, getApiV2CacheKey, getApiV2CarrierAccounts, getApiV2CarrierAccountsCount, getApiV2CarrierAccountsEasypost, getApiV2CarrierAccountsId, getApiV2CarrierAccountsIdAudits, getApiV2CarrierAccountsIdEasypostAccount, getApiV2CarrierAccountsIdMetaFields, getApiV2CarrierAccountsIdProviderAccount, getApiV2CarrierAccountsProviderAccounts, getApiV2Carriers, getApiV2CarriersId, getApiV2ChaosCpuSpin, getApiV2ChaosDbSleep, getApiV2ChaosDbSpin, getApiV2ChaosDbWrite, getApiV2ChaosRackTimeout, getApiV2ChaosSleep, getApiV2Chromalists, getApiV2ConsumerReturns, getApiV2ConsumerReturnsAggregate, getApiV2ConsumerReturnsCount, getApiV2ConsumerReturnsId, getApiV2ConsumerReturnsIdCallTrait, getApiV2ConsumerReturnsIdIncidents, getApiV2ConsumerReturnsIdIncidentsCount, getApiV2ConsumerReturnsIdMetaFields, getApiV2ConsumerReturnsIdOriginator, getApiV2ConsumerReturnsIdTraits, getApiV2ConsumerReturnsTraits, getApiV2Currencies, getApiV2Customers, getApiV2CustomersActions, getApiV2CustomersCount, getApiV2CustomersId, getApiV2CustomersIdAudits, getApiV2CustomersIdCallTrait, getApiV2CustomersIdMetaFields, getApiV2CustomersIdShops, getApiV2CustomersIdTraits, getApiV2CustomersTraits, getApiV2CustomsInfos, getApiV2CustomsInfosId, getApiV2Dashboards, getApiV2DashboardsId, getApiV2Documents, getApiV2DocumentsActions, getApiV2DocumentsId, getApiV2FilterSets, getApiV2FilterSetsCount, getApiV2FilterSetsId, getApiV2FilterSetsIdCallTrait, getApiV2FilterSetsIdResults, getApiV2FilterSetsIdResultsAggregate, getApiV2FilterSetsIdResultsCount, getApiV2FilterSetsIdTraits, getApiV2FilterSetsOptions, getApiV2FilterSetsTraits, getApiV2ImporterOfRecords, getApiV2ImporterOfRecordsId, getApiV2Incidents, getApiV2IncidentsActions, getApiV2IncidentsCount, getApiV2InvoiceItems, getApiV2InvoiceItemsCount, getApiV2InvoiceItemsId, getApiV2Invoices, getApiV2InvoicesCount, getApiV2InvoicesId, getApiV2InvoicesIdCallTrait, getApiV2InvoicesIdTraits, getApiV2InvoicesTraits, getApiV2ItemRules, getApiV2Items, getApiV2ItemsActions, getApiV2ItemsAggregate, getApiV2ItemsCount, getApiV2ItemsHazmatTypes, getApiV2ItemsId, getApiV2ItemsIdAudits, getApiV2ItemsIdBundleItems, getApiV2ItemsIdCallTrait, getApiV2ItemsIdInBundles, getApiV2ItemsIdInbound, getApiV2ItemsIdIncidents, getApiV2ItemsIdIncidentsCount, getApiV2ItemsIdLocations, getApiV2ItemsIdLocationsCount, getApiV2ItemsIdLocationsWithTransferCount, getApiV2ItemsIdMessages, getApiV2ItemsIdMessagesCount, getApiV2ItemsIdMetaFields, getApiV2ItemsIdOriginators, getApiV2ItemsIdOriginatorsCount, getApiV2ItemsIdScancodeAliases, getApiV2ItemsIdScancodes, getApiV2ItemsIdScancodesCount, getApiV2ItemsIdShipnoticeItems, getApiV2ItemsIdShipnoticeItemsCount, getApiV2ItemsIdTraits, getApiV2ItemsIdTransactions, getApiV2ItemsIdTransactionsCount, getApiV2ItemsIdTransactionsExport, getApiV2ItemsIdWarehouseQuantities, getApiV2ItemsTraits, getApiV2LoadScacs, getApiV2LoadScacsCount, getApiV2LoadScacsId, getApiV2Loads, getApiV2LoadsActions, getApiV2LoadsCount, getApiV2LoadsId, getApiV2LoadsIdCallTrait, getApiV2LoadsIdOrderBatches, getApiV2LoadsIdTraits, getApiV2LoadsTraits, getApiV2Locales, getApiV2LocationAdjustments, getApiV2LocationAdjustmentsCount, getApiV2LocationAdjustmentsId, getApiV2LocationAdjustmentsIdTags, getApiV2LocationAudits, getApiV2LocationAuditsAggregate, getApiV2LocationAuditsCount, getApiV2LocationAuditsId, getApiV2LocationAuditsIdAllocations, getApiV2LocationTransfers, getApiV2LocationTransfersAggregate, getApiV2LocationTransfersCount, getApiV2LocationTransfersId, getApiV2LocationTransfersIdAllocations, getApiV2Locations, getApiV2LocationsActions, getApiV2LocationsAggregate, getApiV2LocationsCount, getApiV2LocationsId, getApiV2LocationsIdAudits, getApiV2LocationsIdIncidents, getApiV2LocationsIdIncidentsCount, getApiV2Lots, getApiV2LotsCount, getApiV2LotsId, getApiV2LotsIdAudits, getApiV2Manifests, getApiV2ManifestsCount, getApiV2ManifestsId, getApiV2ManifestsIdBatch, getApiV2ManifestsIdScanForm, getApiV2Me, getApiV2MetaKeys, getApiV2MetaKeysCount, getApiV2MetaKeysId, getApiV2Nav, getApiV2NavItems, getApiV2NotificationEvents, getApiV2NotificationEventsId, getApiV2NotificationSubscriptions, getApiV2NotificationSubscriptionsCount, getApiV2NotificationSubscriptionsId, getApiV2NotificationSubscriptionsIdAudits, getApiV2NotificationSubscriptionsIdTest, getApiV2OrderBatchItems, getApiV2OrderBatchItemsAggregate, getApiV2OrderBatchRequests, getApiV2OrderBatchRequestsCount, getApiV2OrderBatchRequestsId, getApiV2OrderBatches, getApiV2OrderBatchesActions, getApiV2OrderBatchesAggregate, getApiV2OrderBatchesId, getApiV2OrderBatchesIdAudits, getApiV2OrderBatchesIdCallTrait, getApiV2OrderBatchesIdIncidents, getApiV2OrderBatchesIdIncidentsCount, getApiV2OrderBatchesIdMetaFields, getApiV2OrderBatchesIdOrderBatchItems, getApiV2OrderBatchesIdPackingslips, getApiV2OrderBatchesIdTraits, getApiV2OrderBatchesTraits, getApiV2OrderDocumentsId, getApiV2OrderItems, getApiV2OrderItemsActions, getApiV2OrderItemsAggregate, getApiV2OrderItemsId, getApiV2OrderItemsIdAudits, getApiV2OrderItemsIdLots, getApiV2OrderItemsIdMetaFields, getApiV2OrderItemsIdOriginator, getApiV2OrderItemsIdSerialNumbers, getApiV2OrderItemsIdWholesaleItem, getApiV2OrderTotes, getApiV2OrderTotesCodeOrderItems, getApiV2OrderTotesCodeOrderItemsCount, getApiV2OrderTotesCodeOrders, getApiV2OrderTotesCodeOrdersCount, getApiV2Orders, getApiV2OrdersActions, getApiV2OrdersAggregate, getApiV2OrdersCount, getApiV2OrdersId, getApiV2OrdersIdAudits, getApiV2OrdersIdCallTrait, getApiV2OrdersIdCustomsInfo, getApiV2OrdersIdEvents, getApiV2OrdersIdEventsCount, getApiV2OrdersIdIncidents, getApiV2OrdersIdIncidentsCount, getApiV2OrdersIdLots, getApiV2OrdersIdMessages, getApiV2OrdersIdMessagesCount, getApiV2OrdersIdMeta, getApiV2OrdersIdMetaFields, getApiV2OrdersIdOrderDocuments, getApiV2OrdersIdOrderItems, getApiV2OrdersIdOrderItemsCount, getApiV2OrdersIdOriginator, getApiV2OrdersIdPackages, getApiV2OrdersIdPackagesCount, getApiV2OrdersIdPackingslip, getApiV2OrdersIdRuleDismissals, getApiV2OrdersIdSerialNumbers, getApiV2OrdersIdShipmentRates, getApiV2OrdersIdShippingRates, getApiV2OrdersIdShippingWeight, getApiV2OrdersIdTraits, getApiV2OrdersIdWholesale, getApiV2OrdersOrderTypes, getApiV2OrdersTraits, getApiV2Originators, getApiV2OriginatorsIdAudits, getApiV2Packages, getApiV2PackagesActions, getApiV2PackagesAggregate, getApiV2PackagesId, getApiV2PackagesIdAudits, getApiV2PackagesIdCallTrait, getApiV2PackagesIdShipment, getApiV2PackagesIdTraits, getApiV2PackagesTraits, getApiV2Pallets, getApiV2PalletsCount, getApiV2PalletsId, getApiV2PalletsIdPackages, getApiV2Partners, getApiV2PartnersCount, getApiV2PartnersId, getApiV2ProjectTasksId, getApiV2Projects, getApiV2ProjectsCount, getApiV2ProjectsId, getApiV2ProjectsIdProjectTasks, getApiV2ProjectsIdProjectTasksCount, getApiV2PublicCarrierStatus, getApiV2PublicNotificationEvents, getApiV2PublicStatus, getApiV2Rates, getApiV2RatesCount, getApiV2RatesId, getApiV2RatesIdAudits, getApiV2ReasonCodes, getApiV2ReasonCodesId, getApiV2RelocateInventoryTransfers, getApiV2RelocateInventoryTransfersCount, getApiV2ReturnAddresses, getApiV2ReturnAddressesId, getApiV2Rules, getApiV2RulesCount, getApiV2RulesId, getApiV2RulesIdAudits, getApiV2RulesIdHistory, getApiV2ScancodeAliases, getApiV2Scancodes, getApiV2SchemasLots, getApiV2SerialNumbers, getApiV2SerialNumbersActions, getApiV2ShipnoticeItems, getApiV2ShipnoticeItemsActions, getApiV2ShipnoticeItemsAggregate, getApiV2ShipnoticeItemsCount, getApiV2ShipnoticeItemsId, getApiV2ShipnoticeItemsIdAllocations, getApiV2ShipnoticeItemsIdAudits, getApiV2ShipnoticeItemsIdCallTrait, getApiV2ShipnoticeItemsIdLocations, getApiV2ShipnoticeItemsIdMetaFields, getApiV2ShipnoticeItemsIdOriginator, getApiV2ShipnoticeItemsIdReceived, getApiV2ShipnoticeItemsIdTags, getApiV2ShipnoticeItemsIdTraits, getApiV2ShipnoticeItemsTraits, getApiV2Shipnotices, getApiV2ShipnoticesActions, getApiV2ShipnoticesAggregate, getApiV2ShipnoticesCount, getApiV2ShipnoticesId, getApiV2ShipnoticesIdAudits, getApiV2ShipnoticesIdCallTrait, getApiV2ShipnoticesIdIncidents, getApiV2ShipnoticesIdIncidentsCount, getApiV2ShipnoticesIdMessages, getApiV2ShipnoticesIdMessagesCount, getApiV2ShipnoticesIdMetaFields, getApiV2ShipnoticesIdOrdersWaiting, getApiV2ShipnoticesIdOriginator, getApiV2ShipnoticesIdShipnoticeItems, getApiV2ShipnoticesIdShipnoticeItemsCount, getApiV2ShipnoticesIdTraits, getApiV2ShipnoticesTraits, getApiV2ShippingAliases, getApiV2ShippingAliasesCount, getApiV2ShippingAliasesId, getApiV2ShippingAliasesIdAudits, getApiV2ShippingBlacklistedMethods, getApiV2ShippingBlacklistedMethodsCount, getApiV2ShippingBlacklistedMethodsId, getApiV2ShippingMethodMarkupsIdAudits, getApiV2ShippingMethods, getApiV2ShippingMethodsCount, getApiV2ShippingMethodsId, getApiV2ShopsIdAudits, getApiV2ShopsIdMetaFields, getApiV2StatsAppConfig, getApiV2StatsSidekiq, getApiV2StatsSidekiqBatchStatusId, getApiV2StatsSidekiqName, getApiV2SurchargeMarkups, getApiV2SurchargeMarkupsCount, getApiV2SurchargeMarkupsId, getApiV2TemplateTypes, getApiV2Templates, getApiV2TemplatesId, getApiV2TemplatesIdAudits, getApiV2TemplatesIdRenderResourceId, getApiV2TemplatesRenderTypeTemplateTypeSlugResourceId, getApiV2TemplatesRenderTypeToFileTemplateTypeSlugResourceId, getApiV2TransactionsIdAudits, getApiV2TransportationMarkups, getApiV2TransportationMarkupsCount, getApiV2TransportationMarkupsId, getApiV2Users, getApiV2UsersBroadcasts, getApiV2UsersCount, getApiV2UsersId, getApiV2UsersIdAudits, getApiV2UsersIdCallTrait, getApiV2UsersIdTraits, getApiV2UsersJwt, getApiV2UsersTraits, getApiV2WarehouseFeatures, getApiV2WarehouseFeaturesCount, getApiV2WarehouseFeaturesId, getApiV2Warehouses, getApiV2WarehousesActions, getApiV2WarehousesAddresses, getApiV2WarehousesCount, getApiV2WarehousesId, getApiV2WarehousesIdCallTrait, getApiV2WarehousesIdCarrierAccounts, getApiV2WarehousesIdTraits, getApiV2WarehousesTraits, getApiV2WholesaleItems, getApiV2WholesaleItemsId, getApiV2Wholesales, getApiV2WholesalesAddresses, getApiV2WholesalesId, getBroadcastFromPusherResponse, getLocaleUrl, getLogoutUrl, getNavDataUrlBySlug, getPartnerBillingUrl, getSearchUrl, getUserChannelName, getUserSummary, getWarehouseIdOpenBatchesAgainstShelf, getWarehouseIdValidForDuplicatedLotRelocate, handleApiError, labeledSearchTypes, loadDirectlyRelatedObjects, loadIndirectlyRelatedObjects, loadRelatedObjects, multiPageGet, multiPageGetApiV21Documents, multiPageGetApiV21OrderBatchItems, multiPageGetApiV21OrderItems, multiPageGetApiV21Orders, multiPageGetApiV21SerialNumbers, navMock, postApiV21Accounts, postApiV21AccountsIdAccountTransactions, postApiV21BillOfLadings, postApiV21BillOfLadingsIdAddresses, postApiV21Broadcasts, postApiV21Cache, postApiV21CarrierAccounts, postApiV21Carriers, postApiV21Chromalists, postApiV21ConsumerReturns, postApiV21ConsumerReturnsBulk, postApiV21ConsumerReturnsIdIncidents, postApiV21Currencies, postApiV21Customers, postApiV21Documents, postApiV21FilterSets, postApiV21ImporterOfRecords, postApiV21Incidents, postApiV21Items, postApiV21ItemsIdBundleItems, postApiV21ItemsIdIncidents, postApiV21ItemsIdLocations, postApiV21ItemsIdMessages, postApiV21ItemsIdOriginators, postApiV21LoadScacs, postApiV21Loads, postApiV21LocationAdjustments, postApiV21LocationAdjustmentsIdTags, postApiV21LocationAudits, postApiV21LocationTransfers, postApiV21LocationsIdIncidents, postApiV21Lots, postApiV21Manifests, postApiV21MetaKeys, postApiV21NotificationSubscriptions, postApiV21OrderBatchesIdIncidents, postApiV21Orders, postApiV21OrdersBulk, postApiV21OrdersIdDuplicate, postApiV21OrdersIdIncidents, postApiV21OrdersIdMessages, postApiV21OrdersIdOrderDocuments, postApiV21OrdersIdOrderItems, postApiV21OrdersIdPackages, postApiV21OrdersIdRuleDismissals, postApiV21Pallets, postApiV21Partners, postApiV21Prepacks, postApiV21Projects, postApiV21ProjectsIdProjectTasks, postApiV21Rates, postApiV21ReturnAddresses, postApiV21Rules, postApiV21ShipnoticeItemsIdTags, postApiV21Shipnotices, postApiV21ShipnoticesBulk, postApiV21ShipnoticesIdIncidents, postApiV21ShipnoticesIdMessages, postApiV21ShipnoticesIdShipnoticeItems, postApiV21ShippingAliases, postApiV21ShippingBlacklistedMethods, postApiV21ShippingMethods, postApiV21SimulateConsumerReturnsCreate, postApiV21SimulateOrdersCreate, postApiV21SimulateShipnoticesCreate, postApiV21SurchargeMarkups, postApiV21Templates, postApiV21TransportationMarkups, postApiV21Users, postApiV21UsersAuthorize, postApiV21UtilitiesPresignUrl, postApiV21UtilitiesPublicUrl, postApiV21UtilsPublicUrl, postApiV21WarehouseFeatures, postApiV21Warehouses, postApiV2Accounts, postApiV2AccountsIdAccountTransactions, postApiV2BillOfLadings, postApiV2BillOfLadingsIdAddresses, postApiV2Broadcasts, postApiV2Cache, postApiV2CarrierAccounts, postApiV2Carriers, postApiV2Chromalists, postApiV2ConsumerReturns, postApiV2ConsumerReturnsBulk, postApiV2ConsumerReturnsIdIncidents, postApiV2Currencies, postApiV2Customers, postApiV2Documents, postApiV2FilterSets, postApiV2ImporterOfRecords, postApiV2Incidents, postApiV2Items, postApiV2ItemsIdBundleItems, postApiV2ItemsIdIncidents, postApiV2ItemsIdLocations, postApiV2ItemsIdMessages, postApiV2ItemsIdOriginators, postApiV2LoadScacs, postApiV2Loads, postApiV2LocationAdjustments, postApiV2LocationAdjustmentsIdTags, postApiV2LocationAudits, postApiV2LocationTransfers, postApiV2LocationsIdIncidents, postApiV2Lots, postApiV2Manifests, postApiV2MetaKeys, postApiV2NotificationSubscriptions, postApiV2OrderBatchesIdIncidents, postApiV2Orders, postApiV2OrdersBulk, postApiV2OrdersIdDuplicate, postApiV2OrdersIdIncidents, postApiV2OrdersIdMessages, postApiV2OrdersIdOrderDocuments, postApiV2OrdersIdOrderItems, postApiV2OrdersIdPackages, postApiV2OrdersIdRuleDismissals, postApiV2Pallets, postApiV2Partners, postApiV2Prepacks, postApiV2Projects, postApiV2ProjectsIdProjectTasks, postApiV2Rates, postApiV2ReturnAddresses, postApiV2Rules, postApiV2ShipnoticeItemsIdTags, postApiV2Shipnotices, postApiV2ShipnoticesBulk, postApiV2ShipnoticesIdIncidents, postApiV2ShipnoticesIdMessages, postApiV2ShipnoticesIdShipnoticeItems, postApiV2ShippingAliases, postApiV2ShippingBlacklistedMethods, postApiV2ShippingMethods, postApiV2SimulateConsumerReturnsCreate, postApiV2SimulateOrdersCreate, postApiV2SimulateShipnoticesCreate, postApiV2SurchargeMarkups, postApiV2Templates, postApiV2TransportationMarkups, postApiV2Users, postApiV2UsersAuthorize, postApiV2UtilitiesPresignUrl, postApiV2UtilitiesPublicUrl, postApiV2WarehouseFeatures, postApiV2Warehouses, putApiV21AccountsId, putApiV21AddressesId, putApiV21BillOfLadingsId, putApiV21BillOfLadingsIdCallAction, putApiV21BroadcastsId, putApiV21BroadcastsIdConsume, putApiV21BroadcastsIdExpire, putApiV21BundleItemsId, putApiV21CarrierAccountsId, putApiV21CarrierAccountsIdMetaFields, putApiV21CarriersId, putApiV21ConsumerReturnsId, putApiV21ConsumerReturnsIdMetaFields, putApiV21CustomersId, putApiV21CustomersIdCallAction, putApiV21CustomersIdCallAsyncAction, putApiV21CustomersIdMetaFields, putApiV21CustomsInfosId, putApiV21DocumentsIdCallAction, putApiV21DocumentsIdCallAsyncAction, putApiV21FilterSetsId, putApiV21FilterSetsIdBatch, putApiV21FilterSetsIdCallAction, putApiV21FilterSetsIdCallEachAction, putApiV21FilterSetsIdExport, putApiV21FilterSetsIdSnapshot, putApiV21FilterSetsUpsert, putApiV21ImporterOfRecordsId, putApiV21IncidentsId, putApiV21IncidentsIdCallAction, putApiV21ItemsId, putApiV21ItemsIdCallAction, putApiV21ItemsIdCallAsyncAction, putApiV21ItemsIdMetaFields, putApiV21LoadScacsId, putApiV21LoadsId, putApiV21LoadsIdCallAction, putApiV21LoadsIdGenerateBol, putApiV21LocationAuditsId, putApiV21LocationAuditsIdCallAction, putApiV21LocationTransfersId, putApiV21LocationTransfersIdCallAction, putApiV21LocationsId, putApiV21LocationsIdCallAction, putApiV21LocationsIdUpdateQuantity, putApiV21LocationsReassign, putApiV21LocationsRoleConvert, putApiV21LotsId, putApiV21ManifestsIdCallAction, putApiV21MetaKeysId, putApiV21NotificationSubscriptionsId, putApiV21OrderBatchItemsIdCallAction, putApiV21OrderBatchesId, putApiV21OrderBatchesIdCallAction, putApiV21OrderBatchesIdCallAsyncAction, putApiV21OrderBatchesIdForcePick, putApiV21OrderBatchesIdGenerateBol, putApiV21OrderBatchesIdMetaFields, putApiV21OrderBatchesIdReleaseUnshipped, putApiV21OrderBatchesIdSetCache, putApiV21OrderBatchesIdbuyLabels, putApiV21OrderDocumentsId, putApiV21OrderItemsId, putApiV21OrderItemsIdCallAction, putApiV21OrderItemsIdMetaFields, putApiV21OrderItemsIdSeparate, putApiV21OrderItemsIdSplit, putApiV21OrderItemsIdWholesaleItem, putApiV21OrdersId, putApiV21OrdersIdBatch, putApiV21OrdersIdCallAction, putApiV21OrdersIdCallAsyncAction, putApiV21OrdersIdCustomsInfo, putApiV21OrdersIdMetaFields, putApiV21OrdersIdPackItem, putApiV21OrdersIdWholesale, putApiV21OriginatorsId, putApiV21PackagesId, putApiV21PackagesIdCallAction, putApiV21PalletsId, putApiV21PalletsIdCallAction, putApiV21PartnersId, putApiV21ProjectTasksId, putApiV21ProjectsId, putApiV21ProjectsIdCallAction, putApiV21RatesId, putApiV21RatesIdCallAction, putApiV21ReturnAddressesId, putApiV21RulesId, putApiV21RulesIdCallAction, putApiV21ScancodeAliasesId, putApiV21ScancodesId, putApiV21SerialNumbersIdCallAction, putApiV21SerialNumbersIdRestore, putApiV21ShipnoticeItemIdDeleteSerials, putApiV21ShipnoticeItemsId, putApiV21ShipnoticeItemsIdCallAction, putApiV21ShipnoticeItemsIdCallAsyncAction, putApiV21ShipnoticeItemsIdMetaFields, putApiV21ShipnoticeItemsIdReceive, putApiV21ShipnoticesId, putApiV21ShipnoticesIdBulkReceive, putApiV21ShipnoticesIdBulkReceiveAsync, putApiV21ShipnoticesIdCallAction, putApiV21ShipnoticesIdCallAsyncAction, putApiV21ShipnoticesIdMetaFields, putApiV21ShippingAliasesId, putApiV21ShippingBlacklistedMethodsId, putApiV21ShippingMethodsId, putApiV21ShopsIdMetaFields, putApiV21SimulateConsumerReturnsConsumerReturnIdProcessing, putApiV21SimulateOrdersOrderIdProcessing, putApiV21SimulateShipnoticesShipnoticeIdProcessing, putApiV21SurchargeMarkupsId, putApiV21TemplatesId, putApiV21TemplatesIdCallAction, putApiV21TemplatesIdCallAsyncAction, putApiV21TransportationMarkupsId, putApiV21UsersId, putApiV21UsersIdCallAction, putApiV21WarehouseFeaturesId, putApiV21WarehousesId, putApiV21WarehousesIdCallAction, putApiV21WarehousesIdCallAsyncAction, putApiV21WholesaleItemsId, putApiV21WholesalesId, putApiV2AccountsId, putApiV2AddressesId, putApiV2BillOfLadingsId, putApiV2BillOfLadingsIdCallAction, putApiV2BroadcastsId, putApiV2BroadcastsIdConsume, putApiV2BroadcastsIdExpire, putApiV2BundleItemsId, putApiV2CarrierAccountsId, putApiV2CarrierAccountsIdMetaFields, putApiV2CarriersId, putApiV2ConsumerReturnsId, putApiV2ConsumerReturnsIdMetaFields, putApiV2CustomersId, putApiV2CustomersIdCallAction, putApiV2CustomersIdCallAsyncAction, putApiV2CustomersIdMetaFields, putApiV2CustomsInfosId, putApiV2DocumentsIdCallAction, putApiV2DocumentsIdCallAsyncAction, putApiV2FilterSetsId, putApiV2FilterSetsIdBatch, putApiV2FilterSetsIdCallAction, putApiV2FilterSetsIdCallEachAction, putApiV2FilterSetsIdExport, putApiV2FilterSetsIdSnapshot, putApiV2FilterSetsUpsert, putApiV2ImporterOfRecordsId, putApiV2IncidentsId, putApiV2IncidentsIdCallAction, putApiV2ItemsId, putApiV2ItemsIdCallAction, putApiV2ItemsIdCallAsyncAction, putApiV2ItemsIdMetaFields, putApiV2LoadScacsId, putApiV2LoadsId, putApiV2LoadsIdCallAction, putApiV2LocationAuditsId, putApiV2LocationAuditsIdCallAction, putApiV2LocationTransfersId, putApiV2LocationTransfersIdCallAction, putApiV2LocationsId, putApiV2LocationsIdCallAction, putApiV2LocationsIdUpdateQuantity, putApiV2LotsId, putApiV2ManifestsIdCallAction, putApiV2MetaKeysId, putApiV2NotificationSubscriptionsId, putApiV2OrderBatchItemsIdCallAction, putApiV2OrderBatchesId, putApiV2OrderBatchesIdCallAction, putApiV2OrderBatchesIdCallAsyncAction, putApiV2OrderBatchesIdMetaFields, putApiV2OrderDocumentsId, putApiV2OrderItemsId, putApiV2OrderItemsIdCallAction, putApiV2OrderItemsIdMetaFields, putApiV2OrderItemsIdSeparate, putApiV2OrderItemsIdSplit, putApiV2OrderItemsIdWholesaleItem, putApiV2OrdersId, putApiV2OrdersIdCallAction, putApiV2OrdersIdCallAsyncAction, putApiV2OrdersIdCustomsInfo, putApiV2OrdersIdMetaFields, putApiV2OrdersIdWholesale, putApiV2OriginatorsId, putApiV2PackagesId, putApiV2PackagesIdCallAction, putApiV2PalletsId, putApiV2PalletsIdCallAction, putApiV2PartnersId, putApiV2ProjectTasksId, putApiV2ProjectsId, putApiV2ProjectsIdCallAction, putApiV2RatesId, putApiV2RatesIdCallAction, putApiV2ReturnAddressesId, putApiV2RulesId, putApiV2RulesIdCallAction, putApiV2ScancodeAliasesId, putApiV2ScancodesId, putApiV2SerialNumbersIdCallAction, putApiV2ShipnoticeItemsId, putApiV2ShipnoticeItemsIdCallAction, putApiV2ShipnoticeItemsIdCallAsyncAction, putApiV2ShipnoticeItemsIdMetaFields, putApiV2ShipnoticeItemsIdReceive, putApiV2ShipnoticesId, putApiV2ShipnoticesIdCallAction, putApiV2ShipnoticesIdCallAsyncAction, putApiV2ShipnoticesIdMetaFields, putApiV2ShippingAliasesId, putApiV2ShippingBlacklistedMethodsId, putApiV2ShippingMethodsId, putApiV2ShopsIdMetaFields, putApiV2SimulateConsumerReturnsConsumerReturnIdProcessing, putApiV2SimulateOrdersOrderIdProcessing, putApiV2SimulateShipnoticesShipnoticeIdProcessing, putApiV2SurchargeMarkupsId, putApiV2TemplatesId, putApiV2TemplatesIdCallAction, putApiV2TemplatesIdCallAsyncAction, putApiV2TransportationMarkupsId, putApiV2UsersId, putApiV2UsersIdCallAction, putApiV2WarehouseFeaturesId, putApiV2WarehousesId, putApiV2WarehousesIdCallAction, putApiV2WarehousesIdCallAsyncAction, putApiV2WholesaleItemsId, putApiV2WholesalesId, putProcessShelfToShelfTransfer, searchTypes, setApiV21ItemAvailable, setUserCustomer, setUserWarehouse, subscribe, subscribeToUserChannel, toSentence, unsetApiV21ItemAvailable, unsetUserCustomer, unsetUserWarehouse, unsubscribe, unsubscribeFromUserChannel, userMock, waitForBatch, waitForJob, warehouseMock };
41283
41317
  //# sourceMappingURL=client.esm.js.map