@wix/ecom 1.0.813 → 1.0.815

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.
@@ -88,7 +88,7 @@ interface CheckoutContent {
88
88
  placeOrderPayButton?: string | null;
89
89
  }
90
90
 
91
- type __PublicMethodMetaInfo$t<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
91
+ type __PublicMethodMetaInfo$v<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
92
92
  getUrl: (context: any) => string;
93
93
  httpMethod: K;
94
94
  path: string;
@@ -98,14 +98,14 @@ type __PublicMethodMetaInfo$t<K = string, M = unknown, T = unknown, S = unknown,
98
98
  __responseType: Q;
99
99
  __originalResponseType: R;
100
100
  };
101
- declare function getCheckoutContent(): __PublicMethodMetaInfo$t<'GET', {
101
+ declare function getCheckoutContent(): __PublicMethodMetaInfo$v<'GET', {
102
102
  appId: string;
103
103
  componentId: string;
104
104
  }, GetCheckoutContentRequest, GetCheckoutContentRequest$1, GetCheckoutContentResponse, GetCheckoutContentResponse$1>;
105
105
 
106
- declare const meta$t_getCheckoutContent: typeof getCheckoutContent;
107
- declare namespace meta$t {
108
- export { type __PublicMethodMetaInfo$t as __PublicMethodMetaInfo, meta$t_getCheckoutContent as getCheckoutContent };
106
+ declare const meta$v_getCheckoutContent: typeof getCheckoutContent;
107
+ declare namespace meta$v {
108
+ export { type __PublicMethodMetaInfo$v as __PublicMethodMetaInfo, meta$v_getCheckoutContent as getCheckoutContent };
109
109
  }
110
110
 
111
111
  interface ListTriggersRequest$1 {
@@ -154,7 +154,7 @@ interface ListTriggersResponseNonNullableFields {
154
154
  triggers: ListTriggersResponseCustomTriggerNonNullableFields[];
155
155
  }
156
156
 
157
- type __PublicMethodMetaInfo$s<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
157
+ type __PublicMethodMetaInfo$u<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
158
158
  getUrl: (context: any) => string;
159
159
  httpMethod: K;
160
160
  path: string;
@@ -164,11 +164,11 @@ type __PublicMethodMetaInfo$s<K = string, M = unknown, T = unknown, S = unknown,
164
164
  __responseType: Q;
165
165
  __originalResponseType: R;
166
166
  };
167
- declare function listTriggers(): __PublicMethodMetaInfo$s<'POST', {}, ListTriggersRequest, ListTriggersRequest$1, ListTriggersResponse & ListTriggersResponseNonNullableFields, ListTriggersResponse$1 & ListTriggersResponseNonNullableFields$1>;
167
+ declare function listTriggers(): __PublicMethodMetaInfo$u<'POST', {}, ListTriggersRequest, ListTriggersRequest$1, ListTriggersResponse & ListTriggersResponseNonNullableFields, ListTriggersResponse$1 & ListTriggersResponseNonNullableFields$1>;
168
168
 
169
- declare const meta$s_listTriggers: typeof listTriggers;
170
- declare namespace meta$s {
171
- export { type __PublicMethodMetaInfo$s as __PublicMethodMetaInfo, meta$s_listTriggers as listTriggers };
169
+ declare const meta$u_listTriggers: typeof listTriggers;
170
+ declare namespace meta$u {
171
+ export { type __PublicMethodMetaInfo$u as __PublicMethodMetaInfo, meta$u_listTriggers as listTriggers };
172
172
  }
173
173
 
174
174
  interface DiscountRule$f {
@@ -472,26 +472,26 @@ interface PlatformQuery$3 extends PlatformQueryPagingMethodOneOf$3 {
472
472
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
473
473
  paging?: PlatformPaging$3;
474
474
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
475
- cursorPaging?: CursorPaging$r;
475
+ cursorPaging?: CursorPaging$t;
476
476
  /** Filter object. */
477
477
  filter?: Record<string, any> | null;
478
478
  /** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
479
- sort?: Sorting$r[];
479
+ sort?: Sorting$t[];
480
480
  }
481
481
  /** @oneof */
482
482
  interface PlatformQueryPagingMethodOneOf$3 {
483
483
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
484
484
  paging?: PlatformPaging$3;
485
485
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
486
- cursorPaging?: CursorPaging$r;
486
+ cursorPaging?: CursorPaging$t;
487
487
  }
488
- interface Sorting$r {
488
+ interface Sorting$t {
489
489
  /** Name of the field to sort by. */
490
490
  fieldName?: string;
491
491
  /** Sort order. */
492
- order?: SortOrder$r;
492
+ order?: SortOrder$t;
493
493
  }
494
- declare enum SortOrder$r {
494
+ declare enum SortOrder$t {
495
495
  ASC = "ASC",
496
496
  DESC = "DESC"
497
497
  }
@@ -501,7 +501,7 @@ interface PlatformPaging$3 {
501
501
  /** Number of items to skip in the current sort order. */
502
502
  offset?: number | null;
503
503
  }
504
- interface CursorPaging$r {
504
+ interface CursorPaging$t {
505
505
  /** Maximum number of items to return in the results. */
506
506
  limit?: number | null;
507
507
  /**
@@ -526,9 +526,9 @@ interface PlatformPagingMetadata$3 {
526
526
  /** The total number of items that match the query. Returned if offset paging was used. */
527
527
  total?: number | null;
528
528
  /** Cursors to navigate through result pages. Returned if cursor paging was used. */
529
- cursors?: Cursors$r;
529
+ cursors?: Cursors$t;
530
530
  }
531
- interface Cursors$r {
531
+ interface Cursors$t {
532
532
  /** Cursor string pointing to the next page in the list of results. */
533
533
  next?: string | null;
534
534
  /** Cursor pointing to the previous page in the list of results. */
@@ -922,26 +922,26 @@ interface PlatformQuery$2 extends PlatformQueryPagingMethodOneOf$2 {
922
922
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
923
923
  paging?: PlatformPaging$2;
924
924
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
925
- cursorPaging?: CursorPaging$q;
925
+ cursorPaging?: CursorPaging$s;
926
926
  /** Filter object. */
927
927
  filter?: Record<string, any> | null;
928
928
  /** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
929
- sort?: Sorting$q[];
929
+ sort?: Sorting$s[];
930
930
  }
931
931
  /** @oneof */
932
932
  interface PlatformQueryPagingMethodOneOf$2 {
933
933
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
934
934
  paging?: PlatformPaging$2;
935
935
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
936
- cursorPaging?: CursorPaging$q;
936
+ cursorPaging?: CursorPaging$s;
937
937
  }
938
- interface Sorting$q {
938
+ interface Sorting$s {
939
939
  /** Name of the field to sort by. */
940
940
  fieldName?: string;
941
941
  /** Sort order. */
942
- order?: SortOrder$q;
942
+ order?: SortOrder$s;
943
943
  }
944
- declare enum SortOrder$q {
944
+ declare enum SortOrder$s {
945
945
  ASC = "ASC",
946
946
  DESC = "DESC"
947
947
  }
@@ -951,7 +951,7 @@ interface PlatformPaging$2 {
951
951
  /** Number of items to skip in the current sort order. */
952
952
  offset?: number | null;
953
953
  }
954
- interface CursorPaging$q {
954
+ interface CursorPaging$s {
955
955
  /** Maximum number of items to return in the results. */
956
956
  limit?: number | null;
957
957
  /**
@@ -976,9 +976,9 @@ interface PlatformPagingMetadata$2 {
976
976
  /** The total number of items that match the query. Returned if offset paging was used. */
977
977
  total?: number | null;
978
978
  /** Cursors to navigate through result pages. Returned if cursor paging was used. */
979
- cursors?: Cursors$q;
979
+ cursors?: Cursors$s;
980
980
  }
981
- interface Cursors$q {
981
+ interface Cursors$s {
982
982
  /** Cursor string pointing to the next page in the list of results. */
983
983
  next?: string | null;
984
984
  /** Cursor pointing to the previous page in the list of results. */
@@ -1071,7 +1071,7 @@ interface QueryDiscountRulesResponseNonNullableFields {
1071
1071
  discountRules: DiscountRuleNonNullableFields$e[];
1072
1072
  }
1073
1073
 
1074
- type __PublicMethodMetaInfo$r<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1074
+ type __PublicMethodMetaInfo$t<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1075
1075
  getUrl: (context: any) => string;
1076
1076
  httpMethod: K;
1077
1077
  path: string;
@@ -1081,25 +1081,25 @@ type __PublicMethodMetaInfo$r<K = string, M = unknown, T = unknown, S = unknown,
1081
1081
  __responseType: Q;
1082
1082
  __originalResponseType: R;
1083
1083
  };
1084
- declare function createDiscountRule(): __PublicMethodMetaInfo$r<'POST', {}, CreateDiscountRuleRequest, CreateDiscountRuleRequest$1, CreateDiscountRuleResponse & CreateDiscountRuleResponseNonNullableFields, CreateDiscountRuleResponse$1 & CreateDiscountRuleResponseNonNullableFields$1>;
1085
- declare function getDiscountRule(): __PublicMethodMetaInfo$r<'GET', {
1084
+ declare function createDiscountRule(): __PublicMethodMetaInfo$t<'POST', {}, CreateDiscountRuleRequest, CreateDiscountRuleRequest$1, CreateDiscountRuleResponse & CreateDiscountRuleResponseNonNullableFields, CreateDiscountRuleResponse$1 & CreateDiscountRuleResponseNonNullableFields$1>;
1085
+ declare function getDiscountRule(): __PublicMethodMetaInfo$t<'GET', {
1086
1086
  discountRuleId: string;
1087
1087
  }, GetDiscountRuleRequest, GetDiscountRuleRequest$1, GetDiscountRuleResponse & GetDiscountRuleResponseNonNullableFields, GetDiscountRuleResponse$1 & GetDiscountRuleResponseNonNullableFields$1>;
1088
- declare function updateDiscountRule(): __PublicMethodMetaInfo$r<'PATCH', {
1088
+ declare function updateDiscountRule(): __PublicMethodMetaInfo$t<'PATCH', {
1089
1089
  discountRuleId: string;
1090
1090
  }, UpdateDiscountRuleRequest, UpdateDiscountRuleRequest$1, UpdateDiscountRuleResponse & UpdateDiscountRuleResponseNonNullableFields, UpdateDiscountRuleResponse$1 & UpdateDiscountRuleResponseNonNullableFields$1>;
1091
- declare function deleteDiscountRule(): __PublicMethodMetaInfo$r<'DELETE', {
1091
+ declare function deleteDiscountRule(): __PublicMethodMetaInfo$t<'DELETE', {
1092
1092
  discountRuleId: string;
1093
1093
  }, DeleteDiscountRuleRequest, DeleteDiscountRuleRequest$1, DeleteDiscountRuleResponse, DeleteDiscountRuleResponse$1>;
1094
- declare function queryDiscountRules(): __PublicMethodMetaInfo$r<'POST', {}, QueryDiscountRulesRequest, QueryDiscountRulesRequest$1, QueryDiscountRulesResponse & QueryDiscountRulesResponseNonNullableFields, QueryDiscountRulesResponse$1 & QueryDiscountRulesResponseNonNullableFields$1>;
1094
+ declare function queryDiscountRules(): __PublicMethodMetaInfo$t<'POST', {}, QueryDiscountRulesRequest, QueryDiscountRulesRequest$1, QueryDiscountRulesResponse & QueryDiscountRulesResponseNonNullableFields, QueryDiscountRulesResponse$1 & QueryDiscountRulesResponseNonNullableFields$1>;
1095
1095
 
1096
- declare const meta$r_createDiscountRule: typeof createDiscountRule;
1097
- declare const meta$r_deleteDiscountRule: typeof deleteDiscountRule;
1098
- declare const meta$r_getDiscountRule: typeof getDiscountRule;
1099
- declare const meta$r_queryDiscountRules: typeof queryDiscountRules;
1100
- declare const meta$r_updateDiscountRule: typeof updateDiscountRule;
1101
- declare namespace meta$r {
1102
- export { type __PublicMethodMetaInfo$r as __PublicMethodMetaInfo, meta$r_createDiscountRule as createDiscountRule, meta$r_deleteDiscountRule as deleteDiscountRule, meta$r_getDiscountRule as getDiscountRule, meta$r_queryDiscountRules as queryDiscountRules, meta$r_updateDiscountRule as updateDiscountRule };
1096
+ declare const meta$t_createDiscountRule: typeof createDiscountRule;
1097
+ declare const meta$t_deleteDiscountRule: typeof deleteDiscountRule;
1098
+ declare const meta$t_getDiscountRule: typeof getDiscountRule;
1099
+ declare const meta$t_queryDiscountRules: typeof queryDiscountRules;
1100
+ declare const meta$t_updateDiscountRule: typeof updateDiscountRule;
1101
+ declare namespace meta$t {
1102
+ export { type __PublicMethodMetaInfo$t as __PublicMethodMetaInfo, meta$t_createDiscountRule as createDiscountRule, meta$t_deleteDiscountRule as deleteDiscountRule, meta$t_getDiscountRule as getDiscountRule, meta$t_queryDiscountRules as queryDiscountRules, meta$t_updateDiscountRule as updateDiscountRule };
1103
1103
  }
1104
1104
 
1105
1105
  interface Invoice$1 {
@@ -1168,7 +1168,7 @@ interface ListInvoicesForMultipleOrdersResponseNonNullableFields {
1168
1168
  invoicesForOrder: InvoicesForOrderNonNullableFields[];
1169
1169
  }
1170
1170
 
1171
- type __PublicMethodMetaInfo$q<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1171
+ type __PublicMethodMetaInfo$s<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1172
1172
  getUrl: (context: any) => string;
1173
1173
  httpMethod: K;
1174
1174
  path: string;
@@ -1178,11 +1178,11 @@ type __PublicMethodMetaInfo$q<K = string, M = unknown, T = unknown, S = unknown,
1178
1178
  __responseType: Q;
1179
1179
  __originalResponseType: R;
1180
1180
  };
1181
- declare function listInvoicesForMultipleOrders(): __PublicMethodMetaInfo$q<'POST', {}, ListInvoicesForMultipleOrdersRequest, ListInvoicesForMultipleOrdersRequest$1, ListInvoicesForMultipleOrdersResponse & ListInvoicesForMultipleOrdersResponseNonNullableFields, ListInvoicesForMultipleOrdersResponse$1 & ListInvoicesForMultipleOrdersResponseNonNullableFields$1>;
1181
+ declare function listInvoicesForMultipleOrders(): __PublicMethodMetaInfo$s<'POST', {}, ListInvoicesForMultipleOrdersRequest, ListInvoicesForMultipleOrdersRequest$1, ListInvoicesForMultipleOrdersResponse & ListInvoicesForMultipleOrdersResponseNonNullableFields, ListInvoicesForMultipleOrdersResponse$1 & ListInvoicesForMultipleOrdersResponseNonNullableFields$1>;
1182
1182
 
1183
- declare const meta$q_listInvoicesForMultipleOrders: typeof listInvoicesForMultipleOrders;
1184
- declare namespace meta$q {
1185
- export { type __PublicMethodMetaInfo$q as __PublicMethodMetaInfo, meta$q_listInvoicesForMultipleOrders as listInvoicesForMultipleOrders };
1183
+ declare const meta$s_listInvoicesForMultipleOrders: typeof listInvoicesForMultipleOrders;
1184
+ declare namespace meta$s {
1185
+ export { type __PublicMethodMetaInfo$s as __PublicMethodMetaInfo, meta$s_listInvoicesForMultipleOrders as listInvoicesForMultipleOrders };
1186
1186
  }
1187
1187
 
1188
1188
  interface Recommendation$1 {
@@ -1449,7 +1449,7 @@ interface GetRecommendationResponseNonNullableFields {
1449
1449
  recommendation?: RecommendationNonNullableFields;
1450
1450
  }
1451
1451
 
1452
- type __PublicMethodMetaInfo$p<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1452
+ type __PublicMethodMetaInfo$r<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1453
1453
  getUrl: (context: any) => string;
1454
1454
  httpMethod: K;
1455
1455
  path: string;
@@ -1459,13 +1459,13 @@ type __PublicMethodMetaInfo$p<K = string, M = unknown, T = unknown, S = unknown,
1459
1459
  __responseType: Q;
1460
1460
  __originalResponseType: R;
1461
1461
  };
1462
- declare function listAvailableAlgorithms(): __PublicMethodMetaInfo$p<'GET', {}, ListAvailableAlgorithmsRequest, ListAvailableAlgorithmsRequest$1, ListAvailableAlgorithmsResponse & ListAvailableAlgorithmsResponseNonNullableFields, ListAvailableAlgorithmsResponse$1 & ListAvailableAlgorithmsResponseNonNullableFields$1>;
1463
- declare function getRecommendation(): __PublicMethodMetaInfo$p<'POST', {}, GetRecommendationRequest, GetRecommendationRequest$1, GetRecommendationResponse & GetRecommendationResponseNonNullableFields, GetRecommendationResponse$1 & GetRecommendationResponseNonNullableFields$1>;
1462
+ declare function listAvailableAlgorithms(): __PublicMethodMetaInfo$r<'GET', {}, ListAvailableAlgorithmsRequest, ListAvailableAlgorithmsRequest$1, ListAvailableAlgorithmsResponse & ListAvailableAlgorithmsResponseNonNullableFields, ListAvailableAlgorithmsResponse$1 & ListAvailableAlgorithmsResponseNonNullableFields$1>;
1463
+ declare function getRecommendation(): __PublicMethodMetaInfo$r<'POST', {}, GetRecommendationRequest, GetRecommendationRequest$1, GetRecommendationResponse & GetRecommendationResponseNonNullableFields, GetRecommendationResponse$1 & GetRecommendationResponseNonNullableFields$1>;
1464
1464
 
1465
- declare const meta$p_getRecommendation: typeof getRecommendation;
1466
- declare const meta$p_listAvailableAlgorithms: typeof listAvailableAlgorithms;
1467
- declare namespace meta$p {
1468
- export { type __PublicMethodMetaInfo$p as __PublicMethodMetaInfo, meta$p_getRecommendation as getRecommendation, meta$p_listAvailableAlgorithms as listAvailableAlgorithms };
1465
+ declare const meta$r_getRecommendation: typeof getRecommendation;
1466
+ declare const meta$r_listAvailableAlgorithms: typeof listAvailableAlgorithms;
1467
+ declare namespace meta$r {
1468
+ export { type __PublicMethodMetaInfo$r as __PublicMethodMetaInfo, meta$r_getRecommendation as getRecommendation, meta$r_listAvailableAlgorithms as listAvailableAlgorithms };
1469
1469
  }
1470
1470
 
1471
1471
  /**
@@ -1552,7 +1552,7 @@ interface SubscriptionContract$1 {
1552
1552
  *
1553
1553
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
1554
1554
  */
1555
- extendedFields?: ExtendedFields$f;
1555
+ extendedFields?: ExtendedFields$h;
1556
1556
  /** Subscription option title. For example, `"Monthly coffee Subscription"`. */
1557
1557
  title?: string | null;
1558
1558
  }
@@ -2300,7 +2300,7 @@ interface CustomField$7 {
2300
2300
  /** Translated custom field title. */
2301
2301
  translatedTitle?: string | null;
2302
2302
  }
2303
- interface ExtendedFields$f {
2303
+ interface ExtendedFields$h {
2304
2304
  /**
2305
2305
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
2306
2306
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -2325,7 +2325,7 @@ interface QuerySubscriptionContractsRequest$1 {
2325
2325
  }
2326
2326
  interface CursorQuery$f extends CursorQueryPagingMethodOneOf$f {
2327
2327
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
2328
- cursorPaging?: CursorPaging$p;
2328
+ cursorPaging?: CursorPaging$r;
2329
2329
  /**
2330
2330
  * Filter object in the following format:
2331
2331
  * `"filter" : {
@@ -2341,24 +2341,24 @@ interface CursorQuery$f extends CursorQueryPagingMethodOneOf$f {
2341
2341
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
2342
2342
  * Learn more about the [sort format](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
2343
2343
  */
2344
- sort?: Sorting$p[];
2344
+ sort?: Sorting$r[];
2345
2345
  }
2346
2346
  /** @oneof */
2347
2347
  interface CursorQueryPagingMethodOneOf$f {
2348
2348
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
2349
- cursorPaging?: CursorPaging$p;
2349
+ cursorPaging?: CursorPaging$r;
2350
2350
  }
2351
- interface Sorting$p {
2351
+ interface Sorting$r {
2352
2352
  /** Name of the field to sort by. */
2353
2353
  fieldName?: string;
2354
2354
  /** Sort order. */
2355
- order?: SortOrder$p;
2355
+ order?: SortOrder$r;
2356
2356
  }
2357
- declare enum SortOrder$p {
2357
+ declare enum SortOrder$r {
2358
2358
  ASC = "ASC",
2359
2359
  DESC = "DESC"
2360
2360
  }
2361
- interface CursorPaging$p {
2361
+ interface CursorPaging$r {
2362
2362
  /** Maximum number of items to return in the results. */
2363
2363
  limit?: number | null;
2364
2364
  /**
@@ -2379,7 +2379,7 @@ interface CursorPagingMetadata$l {
2379
2379
  /** Number of items returned in the response. */
2380
2380
  count?: number | null;
2381
2381
  /** Cursor strings that point to the next page, previous page, or both. */
2382
- cursors?: Cursors$p;
2382
+ cursors?: Cursors$r;
2383
2383
  /**
2384
2384
  * Whether there are more pages to retrieve following the current page.
2385
2385
  *
@@ -2388,7 +2388,7 @@ interface CursorPagingMetadata$l {
2388
2388
  */
2389
2389
  hasNext?: boolean | null;
2390
2390
  }
2391
- interface Cursors$p {
2391
+ interface Cursors$r {
2392
2392
  /** Cursor string pointing to the next page in the list of results. */
2393
2393
  next?: string | null;
2394
2394
  /** Cursor pointing to the previous page in the list of results. */
@@ -2719,7 +2719,7 @@ interface SubscriptionContract {
2719
2719
  *
2720
2720
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
2721
2721
  */
2722
- extendedFields?: ExtendedFields$e;
2722
+ extendedFields?: ExtendedFields$g;
2723
2723
  /** Subscription option title. For example, `"Monthly coffee Subscription"`. */
2724
2724
  title?: string | null;
2725
2725
  }
@@ -3424,7 +3424,7 @@ interface CustomField$6 {
3424
3424
  /** Translated custom field title. */
3425
3425
  translatedTitle?: string | null;
3426
3426
  }
3427
- interface ExtendedFields$e {
3427
+ interface ExtendedFields$g {
3428
3428
  /**
3429
3429
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
3430
3430
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -3449,7 +3449,7 @@ interface QuerySubscriptionContractsRequest {
3449
3449
  }
3450
3450
  interface CursorQuery$e extends CursorQueryPagingMethodOneOf$e {
3451
3451
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
3452
- cursorPaging?: CursorPaging$o;
3452
+ cursorPaging?: CursorPaging$q;
3453
3453
  /**
3454
3454
  * Filter object in the following format:
3455
3455
  * `"filter" : {
@@ -3465,24 +3465,24 @@ interface CursorQuery$e extends CursorQueryPagingMethodOneOf$e {
3465
3465
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
3466
3466
  * Learn more about the [sort format](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
3467
3467
  */
3468
- sort?: Sorting$o[];
3468
+ sort?: Sorting$q[];
3469
3469
  }
3470
3470
  /** @oneof */
3471
3471
  interface CursorQueryPagingMethodOneOf$e {
3472
3472
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
3473
- cursorPaging?: CursorPaging$o;
3473
+ cursorPaging?: CursorPaging$q;
3474
3474
  }
3475
- interface Sorting$o {
3475
+ interface Sorting$q {
3476
3476
  /** Name of the field to sort by. */
3477
3477
  fieldName?: string;
3478
3478
  /** Sort order. */
3479
- order?: SortOrder$o;
3479
+ order?: SortOrder$q;
3480
3480
  }
3481
- declare enum SortOrder$o {
3481
+ declare enum SortOrder$q {
3482
3482
  ASC = "ASC",
3483
3483
  DESC = "DESC"
3484
3484
  }
3485
- interface CursorPaging$o {
3485
+ interface CursorPaging$q {
3486
3486
  /** Maximum number of items to return in the results. */
3487
3487
  limit?: number | null;
3488
3488
  /**
@@ -3503,7 +3503,7 @@ interface CursorPagingMetadata$k {
3503
3503
  /** Number of items returned in the response. */
3504
3504
  count?: number | null;
3505
3505
  /** Cursor strings that point to the next page, previous page, or both. */
3506
- cursors?: Cursors$o;
3506
+ cursors?: Cursors$q;
3507
3507
  /**
3508
3508
  * Whether there are more pages to retrieve following the current page.
3509
3509
  *
@@ -3512,7 +3512,7 @@ interface CursorPagingMetadata$k {
3512
3512
  */
3513
3513
  hasNext?: boolean | null;
3514
3514
  }
3515
- interface Cursors$o {
3515
+ interface Cursors$q {
3516
3516
  /** Cursor string pointing to the next page in the list of results. */
3517
3517
  next?: string | null;
3518
3518
  /** Cursor pointing to the previous page in the list of results. */
@@ -3753,7 +3753,7 @@ interface QuerySubscriptionContractsResponseNonNullableFields {
3753
3753
  subscriptionContracts: SubscriptionContractNonNullableFields[];
3754
3754
  }
3755
3755
 
3756
- type __PublicMethodMetaInfo$o<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
3756
+ type __PublicMethodMetaInfo$q<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
3757
3757
  getUrl: (context: any) => string;
3758
3758
  httpMethod: K;
3759
3759
  path: string;
@@ -3763,15 +3763,15 @@ type __PublicMethodMetaInfo$o<K = string, M = unknown, T = unknown, S = unknown,
3763
3763
  __responseType: Q;
3764
3764
  __originalResponseType: R;
3765
3765
  };
3766
- declare function getSubscriptionContract(): __PublicMethodMetaInfo$o<'GET', {
3766
+ declare function getSubscriptionContract(): __PublicMethodMetaInfo$q<'GET', {
3767
3767
  subscriptionContractId: string;
3768
3768
  }, GetSubscriptionContractRequest, GetSubscriptionContractRequest$1, GetSubscriptionContractResponse & GetSubscriptionContractResponseNonNullableFields, GetSubscriptionContractResponse$1 & GetSubscriptionContractResponseNonNullableFields$1>;
3769
- declare function querySubscriptionContracts(): __PublicMethodMetaInfo$o<'GET', {}, QuerySubscriptionContractsRequest, QuerySubscriptionContractsRequest$1, QuerySubscriptionContractsResponse & QuerySubscriptionContractsResponseNonNullableFields, QuerySubscriptionContractsResponse$1 & QuerySubscriptionContractsResponseNonNullableFields$1>;
3769
+ declare function querySubscriptionContracts(): __PublicMethodMetaInfo$q<'GET', {}, QuerySubscriptionContractsRequest, QuerySubscriptionContractsRequest$1, QuerySubscriptionContractsResponse & QuerySubscriptionContractsResponseNonNullableFields, QuerySubscriptionContractsResponse$1 & QuerySubscriptionContractsResponseNonNullableFields$1>;
3770
3770
 
3771
- declare const meta$o_getSubscriptionContract: typeof getSubscriptionContract;
3772
- declare const meta$o_querySubscriptionContracts: typeof querySubscriptionContracts;
3773
- declare namespace meta$o {
3774
- export { type __PublicMethodMetaInfo$o as __PublicMethodMetaInfo, meta$o_getSubscriptionContract as getSubscriptionContract, meta$o_querySubscriptionContracts as querySubscriptionContracts };
3771
+ declare const meta$q_getSubscriptionContract: typeof getSubscriptionContract;
3772
+ declare const meta$q_querySubscriptionContracts: typeof querySubscriptionContracts;
3773
+ declare namespace meta$q {
3774
+ export { type __PublicMethodMetaInfo$q as __PublicMethodMetaInfo, meta$q_getSubscriptionContract as getSubscriptionContract, meta$q_querySubscriptionContracts as querySubscriptionContracts };
3775
3775
  }
3776
3776
 
3777
3777
  interface AbandonedCheckout$1 {
@@ -3926,13 +3926,13 @@ interface DeleteAbandonedCheckoutResponse$1 {
3926
3926
  }
3927
3927
  interface QueryAbandonedCheckoutsRequest$1 {
3928
3928
  /** Query options. */
3929
- query: QueryV2$5;
3929
+ query: QueryV2$7;
3930
3930
  }
3931
- interface QueryV2$5 extends QueryV2PagingMethodOneOf$5 {
3931
+ interface QueryV2$7 extends QueryV2PagingMethodOneOf$7 {
3932
3932
  /** Paging options to limit and skip the number of items. */
3933
- paging?: Paging$5;
3933
+ paging?: Paging$7;
3934
3934
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
3935
- cursorPaging?: CursorPaging$n;
3935
+ cursorPaging?: CursorPaging$p;
3936
3936
  /**
3937
3937
  * Filter object.
3938
3938
  *
@@ -3944,36 +3944,36 @@ interface QueryV2$5 extends QueryV2PagingMethodOneOf$5 {
3944
3944
  *
3945
3945
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
3946
3946
  */
3947
- sort?: Sorting$n[];
3947
+ sort?: Sorting$p[];
3948
3948
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
3949
3949
  fields?: string[];
3950
3950
  /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
3951
3951
  fieldsets?: string[];
3952
3952
  }
3953
3953
  /** @oneof */
3954
- interface QueryV2PagingMethodOneOf$5 {
3954
+ interface QueryV2PagingMethodOneOf$7 {
3955
3955
  /** Paging options to limit and skip the number of items. */
3956
- paging?: Paging$5;
3956
+ paging?: Paging$7;
3957
3957
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
3958
- cursorPaging?: CursorPaging$n;
3958
+ cursorPaging?: CursorPaging$p;
3959
3959
  }
3960
- interface Sorting$n {
3960
+ interface Sorting$p {
3961
3961
  /** Name of the field to sort by. */
3962
3962
  fieldName?: string;
3963
3963
  /** Sort order. */
3964
- order?: SortOrder$n;
3964
+ order?: SortOrder$p;
3965
3965
  }
3966
- declare enum SortOrder$n {
3966
+ declare enum SortOrder$p {
3967
3967
  ASC = "ASC",
3968
3968
  DESC = "DESC"
3969
3969
  }
3970
- interface Paging$5 {
3970
+ interface Paging$7 {
3971
3971
  /** Number of items to load. */
3972
3972
  limit?: number | null;
3973
3973
  /** Number of items to skip in the current sort order. */
3974
3974
  offset?: number | null;
3975
3975
  }
3976
- interface CursorPaging$n {
3976
+ interface CursorPaging$p {
3977
3977
  /** Maximum number of items to return in the results. */
3978
3978
  limit?: number | null;
3979
3979
  /**
@@ -3993,9 +3993,9 @@ interface QueryAbandonedCheckoutsResponse$1 {
3993
3993
  /** List of abandoned checkouts. */
3994
3994
  abandonedCheckouts?: AbandonedCheckout$1[];
3995
3995
  /** Details on the paged set of results returned. */
3996
- metadata?: PagingMetadataV2$1;
3996
+ metadata?: PagingMetadataV2$3;
3997
3997
  }
3998
- interface PagingMetadataV2$1 {
3998
+ interface PagingMetadataV2$3 {
3999
3999
  /** Number of items returned in the response. */
4000
4000
  count?: number | null;
4001
4001
  /** Offset that was requested. */
@@ -4005,9 +4005,9 @@ interface PagingMetadataV2$1 {
4005
4005
  /** Flag that indicates the server failed to calculate the `total` field. */
4006
4006
  tooManyToCount?: boolean | null;
4007
4007
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
4008
- cursors?: Cursors$n;
4008
+ cursors?: Cursors$p;
4009
4009
  }
4010
- interface Cursors$n {
4010
+ interface Cursors$p {
4011
4011
  /** Cursor string pointing to the next page in the list of results. */
4012
4012
  next?: string | null;
4013
4013
  /** Cursor pointing to the previous page in the list of results. */
@@ -4337,13 +4337,13 @@ interface DeleteAbandonedCheckoutResponse {
4337
4337
  }
4338
4338
  interface QueryAbandonedCheckoutsRequest {
4339
4339
  /** Query options. */
4340
- query: QueryV2$4;
4340
+ query: QueryV2$6;
4341
4341
  }
4342
- interface QueryV2$4 extends QueryV2PagingMethodOneOf$4 {
4342
+ interface QueryV2$6 extends QueryV2PagingMethodOneOf$6 {
4343
4343
  /** Paging options to limit and skip the number of items. */
4344
- paging?: Paging$4;
4344
+ paging?: Paging$6;
4345
4345
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
4346
- cursorPaging?: CursorPaging$m;
4346
+ cursorPaging?: CursorPaging$o;
4347
4347
  /**
4348
4348
  * Filter object.
4349
4349
  *
@@ -4355,36 +4355,36 @@ interface QueryV2$4 extends QueryV2PagingMethodOneOf$4 {
4355
4355
  *
4356
4356
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
4357
4357
  */
4358
- sort?: Sorting$m[];
4358
+ sort?: Sorting$o[];
4359
4359
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
4360
4360
  fields?: string[];
4361
4361
  /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
4362
4362
  fieldsets?: string[];
4363
4363
  }
4364
4364
  /** @oneof */
4365
- interface QueryV2PagingMethodOneOf$4 {
4365
+ interface QueryV2PagingMethodOneOf$6 {
4366
4366
  /** Paging options to limit and skip the number of items. */
4367
- paging?: Paging$4;
4367
+ paging?: Paging$6;
4368
4368
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
4369
- cursorPaging?: CursorPaging$m;
4369
+ cursorPaging?: CursorPaging$o;
4370
4370
  }
4371
- interface Sorting$m {
4371
+ interface Sorting$o {
4372
4372
  /** Name of the field to sort by. */
4373
4373
  fieldName?: string;
4374
4374
  /** Sort order. */
4375
- order?: SortOrder$m;
4375
+ order?: SortOrder$o;
4376
4376
  }
4377
- declare enum SortOrder$m {
4377
+ declare enum SortOrder$o {
4378
4378
  ASC = "ASC",
4379
4379
  DESC = "DESC"
4380
4380
  }
4381
- interface Paging$4 {
4381
+ interface Paging$6 {
4382
4382
  /** Number of items to load. */
4383
4383
  limit?: number | null;
4384
4384
  /** Number of items to skip in the current sort order. */
4385
4385
  offset?: number | null;
4386
4386
  }
4387
- interface CursorPaging$m {
4387
+ interface CursorPaging$o {
4388
4388
  /** Maximum number of items to return in the results. */
4389
4389
  limit?: number | null;
4390
4390
  /**
@@ -4404,9 +4404,9 @@ interface QueryAbandonedCheckoutsResponse {
4404
4404
  /** List of abandoned checkouts. */
4405
4405
  abandonedCheckouts?: AbandonedCheckout[];
4406
4406
  /** Details on the paged set of results returned. */
4407
- metadata?: PagingMetadataV2;
4407
+ metadata?: PagingMetadataV2$2;
4408
4408
  }
4409
- interface PagingMetadataV2 {
4409
+ interface PagingMetadataV2$2 {
4410
4410
  /** Number of items returned in the response. */
4411
4411
  count?: number | null;
4412
4412
  /** Offset that was requested. */
@@ -4416,9 +4416,9 @@ interface PagingMetadataV2 {
4416
4416
  /** Flag that indicates the server failed to calculate the `total` field. */
4417
4417
  tooManyToCount?: boolean | null;
4418
4418
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
4419
- cursors?: Cursors$m;
4419
+ cursors?: Cursors$o;
4420
4420
  }
4421
- interface Cursors$m {
4421
+ interface Cursors$o {
4422
4422
  /** Cursor string pointing to the next page in the list of results. */
4423
4423
  next?: string | null;
4424
4424
  /** Cursor pointing to the previous page in the list of results. */
@@ -4580,7 +4580,7 @@ interface RawHttpResponseNonNullableFields$2 {
4580
4580
  headers: HeadersEntryNonNullableFields$2[];
4581
4581
  }
4582
4582
 
4583
- type __PublicMethodMetaInfo$n<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
4583
+ type __PublicMethodMetaInfo$p<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
4584
4584
  getUrl: (context: any) => string;
4585
4585
  httpMethod: K;
4586
4586
  path: string;
@@ -4590,25 +4590,25 @@ type __PublicMethodMetaInfo$n<K = string, M = unknown, T = unknown, S = unknown,
4590
4590
  __responseType: Q;
4591
4591
  __originalResponseType: R;
4592
4592
  };
4593
- declare function getAbandonedCheckout(): __PublicMethodMetaInfo$n<'GET', {
4593
+ declare function getAbandonedCheckout(): __PublicMethodMetaInfo$p<'GET', {
4594
4594
  abandonedCheckoutId: string;
4595
4595
  }, GetAbandonedCheckoutRequest, GetAbandonedCheckoutRequest$1, GetAbandonedCheckoutResponse & GetAbandonedCheckoutResponseNonNullableFields, GetAbandonedCheckoutResponse$1 & GetAbandonedCheckoutResponseNonNullableFields$1>;
4596
- declare function deleteAbandonedCheckout(): __PublicMethodMetaInfo$n<'DELETE', {
4596
+ declare function deleteAbandonedCheckout(): __PublicMethodMetaInfo$p<'DELETE', {
4597
4597
  abandonedCheckoutId: string;
4598
4598
  }, DeleteAbandonedCheckoutRequest, DeleteAbandonedCheckoutRequest$1, DeleteAbandonedCheckoutResponse, DeleteAbandonedCheckoutResponse$1>;
4599
- declare function queryAbandonedCheckouts(): __PublicMethodMetaInfo$n<'POST', {}, QueryAbandonedCheckoutsRequest, QueryAbandonedCheckoutsRequest$1, QueryAbandonedCheckoutsResponse & QueryAbandonedCheckoutsResponseNonNullableFields, QueryAbandonedCheckoutsResponse$1 & QueryAbandonedCheckoutsResponseNonNullableFields$1>;
4600
- declare function searchAbandonedCheckouts(): __PublicMethodMetaInfo$n<'POST', {}, SearchAbandonedCheckoutsRequest, SearchAbandonedCheckoutsRequest$1, SearchAbandonedCheckoutsResponse & SearchAbandonedCheckoutsResponseNonNullableFields, SearchAbandonedCheckoutsResponse$1 & SearchAbandonedCheckoutsResponseNonNullableFields$1>;
4601
- declare function redirectToCheckout(): __PublicMethodMetaInfo$n<'GET', {
4599
+ declare function queryAbandonedCheckouts(): __PublicMethodMetaInfo$p<'POST', {}, QueryAbandonedCheckoutsRequest, QueryAbandonedCheckoutsRequest$1, QueryAbandonedCheckoutsResponse & QueryAbandonedCheckoutsResponseNonNullableFields, QueryAbandonedCheckoutsResponse$1 & QueryAbandonedCheckoutsResponseNonNullableFields$1>;
4600
+ declare function searchAbandonedCheckouts(): __PublicMethodMetaInfo$p<'POST', {}, SearchAbandonedCheckoutsRequest, SearchAbandonedCheckoutsRequest$1, SearchAbandonedCheckoutsResponse & SearchAbandonedCheckoutsResponseNonNullableFields, SearchAbandonedCheckoutsResponse$1 & SearchAbandonedCheckoutsResponseNonNullableFields$1>;
4601
+ declare function redirectToCheckout(): __PublicMethodMetaInfo$p<'GET', {
4602
4602
  abandonedCheckoutId: string;
4603
4603
  }, RedirectToCheckoutRequest, RedirectToCheckoutRequest$1, RawHttpResponse$2 & RawHttpResponseNonNullableFields$2, RawHttpResponse$3 & RawHttpResponseNonNullableFields$3>;
4604
4604
 
4605
- declare const meta$n_deleteAbandonedCheckout: typeof deleteAbandonedCheckout;
4606
- declare const meta$n_getAbandonedCheckout: typeof getAbandonedCheckout;
4607
- declare const meta$n_queryAbandonedCheckouts: typeof queryAbandonedCheckouts;
4608
- declare const meta$n_redirectToCheckout: typeof redirectToCheckout;
4609
- declare const meta$n_searchAbandonedCheckouts: typeof searchAbandonedCheckouts;
4610
- declare namespace meta$n {
4611
- export { type __PublicMethodMetaInfo$n as __PublicMethodMetaInfo, meta$n_deleteAbandonedCheckout as deleteAbandonedCheckout, meta$n_getAbandonedCheckout as getAbandonedCheckout, meta$n_queryAbandonedCheckouts as queryAbandonedCheckouts, meta$n_redirectToCheckout as redirectToCheckout, meta$n_searchAbandonedCheckouts as searchAbandonedCheckouts };
4605
+ declare const meta$p_deleteAbandonedCheckout: typeof deleteAbandonedCheckout;
4606
+ declare const meta$p_getAbandonedCheckout: typeof getAbandonedCheckout;
4607
+ declare const meta$p_queryAbandonedCheckouts: typeof queryAbandonedCheckouts;
4608
+ declare const meta$p_redirectToCheckout: typeof redirectToCheckout;
4609
+ declare const meta$p_searchAbandonedCheckouts: typeof searchAbandonedCheckouts;
4610
+ declare namespace meta$p {
4611
+ export { type __PublicMethodMetaInfo$p as __PublicMethodMetaInfo, meta$p_deleteAbandonedCheckout as deleteAbandonedCheckout, meta$p_getAbandonedCheckout as getAbandonedCheckout, meta$p_queryAbandonedCheckouts as queryAbandonedCheckouts, meta$p_redirectToCheckout as redirectToCheckout, meta$p_searchAbandonedCheckouts as searchAbandonedCheckouts };
4612
4612
  }
4613
4613
 
4614
4614
  /**
@@ -4774,26 +4774,26 @@ interface PlatformQuery$1 extends PlatformQueryPagingMethodOneOf$1 {
4774
4774
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
4775
4775
  paging?: PlatformPaging$1;
4776
4776
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
4777
- cursorPaging?: CursorPaging$l;
4777
+ cursorPaging?: CursorPaging$n;
4778
4778
  /** Filter object. */
4779
4779
  filter?: Record<string, any> | null;
4780
4780
  /** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
4781
- sort?: Sorting$l[];
4781
+ sort?: Sorting$n[];
4782
4782
  }
4783
4783
  /** @oneof */
4784
4784
  interface PlatformQueryPagingMethodOneOf$1 {
4785
4785
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
4786
4786
  paging?: PlatformPaging$1;
4787
4787
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
4788
- cursorPaging?: CursorPaging$l;
4788
+ cursorPaging?: CursorPaging$n;
4789
4789
  }
4790
- interface Sorting$l {
4790
+ interface Sorting$n {
4791
4791
  /** Name of the field to sort by. */
4792
4792
  fieldName?: string;
4793
4793
  /** Sort order. */
4794
- order?: SortOrder$l;
4794
+ order?: SortOrder$n;
4795
4795
  }
4796
- declare enum SortOrder$l {
4796
+ declare enum SortOrder$n {
4797
4797
  ASC = "ASC",
4798
4798
  DESC = "DESC"
4799
4799
  }
@@ -4803,7 +4803,7 @@ interface PlatformPaging$1 {
4803
4803
  /** Number of items to skip in the current sort order. */
4804
4804
  offset?: number | null;
4805
4805
  }
4806
- interface CursorPaging$l {
4806
+ interface CursorPaging$n {
4807
4807
  /** Maximum number of items to return in the results. */
4808
4808
  limit?: number | null;
4809
4809
  /**
@@ -4828,9 +4828,9 @@ interface PlatformPagingMetadata$1 {
4828
4828
  /** The total number of items that match the query. Returned if offset paging was used. */
4829
4829
  total?: number | null;
4830
4830
  /** Cursors to navigate through result pages. Returned if cursor paging was used. */
4831
- cursors?: Cursors$l;
4831
+ cursors?: Cursors$n;
4832
4832
  }
4833
- interface Cursors$l {
4833
+ interface Cursors$n {
4834
4834
  /** Cursor string pointing to the next page in the list of results. */
4835
4835
  next?: string | null;
4836
4836
  /** Cursor pointing to the previous page in the list of results. */
@@ -5049,26 +5049,26 @@ interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
5049
5049
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
5050
5050
  paging?: PlatformPaging;
5051
5051
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
5052
- cursorPaging?: CursorPaging$k;
5052
+ cursorPaging?: CursorPaging$m;
5053
5053
  /** Filter object. */
5054
5054
  filter?: Record<string, any> | null;
5055
5055
  /** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
5056
- sort?: Sorting$k[];
5056
+ sort?: Sorting$m[];
5057
5057
  }
5058
5058
  /** @oneof */
5059
5059
  interface PlatformQueryPagingMethodOneOf {
5060
5060
  /** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
5061
5061
  paging?: PlatformPaging;
5062
5062
  /** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
5063
- cursorPaging?: CursorPaging$k;
5063
+ cursorPaging?: CursorPaging$m;
5064
5064
  }
5065
- interface Sorting$k {
5065
+ interface Sorting$m {
5066
5066
  /** Name of the field to sort by. */
5067
5067
  fieldName?: string;
5068
5068
  /** Sort order. */
5069
- order?: SortOrder$k;
5069
+ order?: SortOrder$m;
5070
5070
  }
5071
- declare enum SortOrder$k {
5071
+ declare enum SortOrder$m {
5072
5072
  ASC = "ASC",
5073
5073
  DESC = "DESC"
5074
5074
  }
@@ -5078,7 +5078,7 @@ interface PlatformPaging {
5078
5078
  /** Number of items to skip in the current sort order. */
5079
5079
  offset?: number | null;
5080
5080
  }
5081
- interface CursorPaging$k {
5081
+ interface CursorPaging$m {
5082
5082
  /** Maximum number of items to return in the results. */
5083
5083
  limit?: number | null;
5084
5084
  /**
@@ -5103,9 +5103,9 @@ interface PlatformPagingMetadata {
5103
5103
  /** The total number of items that match the query. Returned if offset paging was used. */
5104
5104
  total?: number | null;
5105
5105
  /** Cursors to navigate through result pages. Returned if cursor paging was used. */
5106
- cursors?: Cursors$k;
5106
+ cursors?: Cursors$m;
5107
5107
  }
5108
- interface Cursors$k {
5108
+ interface Cursors$m {
5109
5109
  /** Cursor string pointing to the next page in the list of results. */
5110
5110
  next?: string | null;
5111
5111
  /** Cursor pointing to the previous page in the list of results. */
@@ -5188,7 +5188,7 @@ interface GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonN
5188
5188
  countsPerCatalogReference: BackInStockNotificationRequestsCountNonNullableFields[];
5189
5189
  }
5190
5190
 
5191
- type __PublicMethodMetaInfo$m<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
5191
+ type __PublicMethodMetaInfo$o<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
5192
5192
  getUrl: (context: any) => string;
5193
5193
  httpMethod: K;
5194
5194
  path: string;
@@ -5198,29 +5198,29 @@ type __PublicMethodMetaInfo$m<K = string, M = unknown, T = unknown, S = unknown,
5198
5198
  __responseType: Q;
5199
5199
  __originalResponseType: R;
5200
5200
  };
5201
- declare function createBackInStockNotificationRequest(): __PublicMethodMetaInfo$m<'POST', {}, CreateBackInStockNotificationRequestRequest, CreateBackInStockNotificationRequestRequest$1, CreateBackInStockNotificationRequestResponse & CreateBackInStockNotificationRequestResponseNonNullableFields, CreateBackInStockNotificationRequestResponse$1 & CreateBackInStockNotificationRequestResponseNonNullableFields$1>;
5202
- declare function getBackInStockNotificationRequest(): __PublicMethodMetaInfo$m<'GET', {
5201
+ declare function createBackInStockNotificationRequest(): __PublicMethodMetaInfo$o<'POST', {}, CreateBackInStockNotificationRequestRequest, CreateBackInStockNotificationRequestRequest$1, CreateBackInStockNotificationRequestResponse & CreateBackInStockNotificationRequestResponseNonNullableFields, CreateBackInStockNotificationRequestResponse$1 & CreateBackInStockNotificationRequestResponseNonNullableFields$1>;
5202
+ declare function getBackInStockNotificationRequest(): __PublicMethodMetaInfo$o<'GET', {
5203
5203
  id: string;
5204
5204
  }, GetBackInStockNotificationRequestRequest, GetBackInStockNotificationRequestRequest$1, GetBackInStockNotificationRequestResponse & GetBackInStockNotificationRequestResponseNonNullableFields, GetBackInStockNotificationRequestResponse$1 & GetBackInStockNotificationRequestResponseNonNullableFields$1>;
5205
- declare function deleteBackInStockNotificationRequest(): __PublicMethodMetaInfo$m<'DELETE', {
5205
+ declare function deleteBackInStockNotificationRequest(): __PublicMethodMetaInfo$o<'DELETE', {
5206
5206
  id: string;
5207
5207
  }, DeleteBackInStockNotificationRequestRequest, DeleteBackInStockNotificationRequestRequest$1, DeleteBackInStockNotificationRequestResponse, DeleteBackInStockNotificationRequestResponse$1>;
5208
- declare function markAsNotificationSent(): __PublicMethodMetaInfo$m<'PUT', {
5208
+ declare function markAsNotificationSent(): __PublicMethodMetaInfo$o<'PUT', {
5209
5209
  id: string;
5210
5210
  }, MarkAsNotificationSentRequest, MarkAsNotificationSentRequest$1, MarkAsNotificationSentResponse & MarkAsNotificationSentResponseNonNullableFields, MarkAsNotificationSentResponse$1 & MarkAsNotificationSentResponseNonNullableFields$1>;
5211
- declare function queryBackInStockNotificationRequests(): __PublicMethodMetaInfo$m<'GET', {}, QueryBackInStockNotificationRequestsRequest, QueryBackInStockNotificationRequestsRequest$1, QueryBackInStockNotificationRequestsResponse & QueryBackInStockNotificationRequestsResponseNonNullableFields, QueryBackInStockNotificationRequestsResponse$1 & QueryBackInStockNotificationRequestsResponseNonNullableFields$1>;
5212
- declare function getBackInStockNotificationRequestsCountByCatalogReferences(): __PublicMethodMetaInfo$m<'GET', {}, GetBackInStockNotificationRequestsCountByCatalogReferencesRequest, GetBackInStockNotificationRequestsCountByCatalogReferencesRequest$1, GetBackInStockNotificationRequestsCountByCatalogReferencesResponse & GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields, GetBackInStockNotificationRequestsCountByCatalogReferencesResponse$1 & GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields$1>;
5213
- declare function reportItemsBackInStock(): __PublicMethodMetaInfo$m<'POST', {}, ReportItemsBackInStockRequest, ReportItemsBackInStockRequest$1, ReportItemsBackInStockResponse, ReportItemsBackInStockResponse$1>;
5211
+ declare function queryBackInStockNotificationRequests(): __PublicMethodMetaInfo$o<'GET', {}, QueryBackInStockNotificationRequestsRequest, QueryBackInStockNotificationRequestsRequest$1, QueryBackInStockNotificationRequestsResponse & QueryBackInStockNotificationRequestsResponseNonNullableFields, QueryBackInStockNotificationRequestsResponse$1 & QueryBackInStockNotificationRequestsResponseNonNullableFields$1>;
5212
+ declare function getBackInStockNotificationRequestsCountByCatalogReferences(): __PublicMethodMetaInfo$o<'GET', {}, GetBackInStockNotificationRequestsCountByCatalogReferencesRequest, GetBackInStockNotificationRequestsCountByCatalogReferencesRequest$1, GetBackInStockNotificationRequestsCountByCatalogReferencesResponse & GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields, GetBackInStockNotificationRequestsCountByCatalogReferencesResponse$1 & GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields$1>;
5213
+ declare function reportItemsBackInStock(): __PublicMethodMetaInfo$o<'POST', {}, ReportItemsBackInStockRequest, ReportItemsBackInStockRequest$1, ReportItemsBackInStockResponse, ReportItemsBackInStockResponse$1>;
5214
5214
 
5215
- declare const meta$m_createBackInStockNotificationRequest: typeof createBackInStockNotificationRequest;
5216
- declare const meta$m_deleteBackInStockNotificationRequest: typeof deleteBackInStockNotificationRequest;
5217
- declare const meta$m_getBackInStockNotificationRequest: typeof getBackInStockNotificationRequest;
5218
- declare const meta$m_getBackInStockNotificationRequestsCountByCatalogReferences: typeof getBackInStockNotificationRequestsCountByCatalogReferences;
5219
- declare const meta$m_markAsNotificationSent: typeof markAsNotificationSent;
5220
- declare const meta$m_queryBackInStockNotificationRequests: typeof queryBackInStockNotificationRequests;
5221
- declare const meta$m_reportItemsBackInStock: typeof reportItemsBackInStock;
5222
- declare namespace meta$m {
5223
- export { type __PublicMethodMetaInfo$m as __PublicMethodMetaInfo, meta$m_createBackInStockNotificationRequest as createBackInStockNotificationRequest, meta$m_deleteBackInStockNotificationRequest as deleteBackInStockNotificationRequest, meta$m_getBackInStockNotificationRequest as getBackInStockNotificationRequest, meta$m_getBackInStockNotificationRequestsCountByCatalogReferences as getBackInStockNotificationRequestsCountByCatalogReferences, meta$m_markAsNotificationSent as markAsNotificationSent, meta$m_queryBackInStockNotificationRequests as queryBackInStockNotificationRequests, meta$m_reportItemsBackInStock as reportItemsBackInStock };
5215
+ declare const meta$o_createBackInStockNotificationRequest: typeof createBackInStockNotificationRequest;
5216
+ declare const meta$o_deleteBackInStockNotificationRequest: typeof deleteBackInStockNotificationRequest;
5217
+ declare const meta$o_getBackInStockNotificationRequest: typeof getBackInStockNotificationRequest;
5218
+ declare const meta$o_getBackInStockNotificationRequestsCountByCatalogReferences: typeof getBackInStockNotificationRequestsCountByCatalogReferences;
5219
+ declare const meta$o_markAsNotificationSent: typeof markAsNotificationSent;
5220
+ declare const meta$o_queryBackInStockNotificationRequests: typeof queryBackInStockNotificationRequests;
5221
+ declare const meta$o_reportItemsBackInStock: typeof reportItemsBackInStock;
5222
+ declare namespace meta$o {
5223
+ export { type __PublicMethodMetaInfo$o as __PublicMethodMetaInfo, meta$o_createBackInStockNotificationRequest as createBackInStockNotificationRequest, meta$o_deleteBackInStockNotificationRequest as deleteBackInStockNotificationRequest, meta$o_getBackInStockNotificationRequest as getBackInStockNotificationRequest, meta$o_getBackInStockNotificationRequestsCountByCatalogReferences as getBackInStockNotificationRequestsCountByCatalogReferences, meta$o_markAsNotificationSent as markAsNotificationSent, meta$o_queryBackInStockNotificationRequests as queryBackInStockNotificationRequests, meta$o_reportItemsBackInStock as reportItemsBackInStock };
5224
5224
  }
5225
5225
 
5226
5226
  /**
@@ -5335,7 +5335,7 @@ interface GetSettingsResponseNonNullableFields {
5335
5335
  settings?: BackInStockSettingsNonNullableFields;
5336
5336
  }
5337
5337
 
5338
- type __PublicMethodMetaInfo$l<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
5338
+ type __PublicMethodMetaInfo$n<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
5339
5339
  getUrl: (context: any) => string;
5340
5340
  httpMethod: K;
5341
5341
  path: string;
@@ -5345,15 +5345,15 @@ type __PublicMethodMetaInfo$l<K = string, M = unknown, T = unknown, S = unknown,
5345
5345
  __responseType: Q;
5346
5346
  __originalResponseType: R;
5347
5347
  };
5348
- declare function startCollectingRequests(): __PublicMethodMetaInfo$l<'POST', {}, StartCollectingRequestsRequest, StartCollectingRequestsRequest$1, StartCollectingRequestsResponse & StartCollectingRequestsResponseNonNullableFields, StartCollectingRequestsResponse$1 & StartCollectingRequestsResponseNonNullableFields$1>;
5349
- declare function stopCollectingRequests(): __PublicMethodMetaInfo$l<'POST', {}, StopCollectingRequestsRequest, StopCollectingRequestsRequest$1, StopCollectingRequestsResponse & StopCollectingRequestsResponseNonNullableFields, StopCollectingRequestsResponse$1 & StopCollectingRequestsResponseNonNullableFields$1>;
5350
- declare function getSettings(): __PublicMethodMetaInfo$l<'PUT', {}, GetSettingsRequest, GetSettingsRequest$1, GetSettingsResponse & GetSettingsResponseNonNullableFields, GetSettingsResponse$1 & GetSettingsResponseNonNullableFields$1>;
5348
+ declare function startCollectingRequests(): __PublicMethodMetaInfo$n<'POST', {}, StartCollectingRequestsRequest, StartCollectingRequestsRequest$1, StartCollectingRequestsResponse & StartCollectingRequestsResponseNonNullableFields, StartCollectingRequestsResponse$1 & StartCollectingRequestsResponseNonNullableFields$1>;
5349
+ declare function stopCollectingRequests(): __PublicMethodMetaInfo$n<'POST', {}, StopCollectingRequestsRequest, StopCollectingRequestsRequest$1, StopCollectingRequestsResponse & StopCollectingRequestsResponseNonNullableFields, StopCollectingRequestsResponse$1 & StopCollectingRequestsResponseNonNullableFields$1>;
5350
+ declare function getSettings(): __PublicMethodMetaInfo$n<'PUT', {}, GetSettingsRequest, GetSettingsRequest$1, GetSettingsResponse & GetSettingsResponseNonNullableFields, GetSettingsResponse$1 & GetSettingsResponseNonNullableFields$1>;
5351
5351
 
5352
- declare const meta$l_getSettings: typeof getSettings;
5353
- declare const meta$l_startCollectingRequests: typeof startCollectingRequests;
5354
- declare const meta$l_stopCollectingRequests: typeof stopCollectingRequests;
5355
- declare namespace meta$l {
5356
- export { type __PublicMethodMetaInfo$l as __PublicMethodMetaInfo, meta$l_getSettings as getSettings, meta$l_startCollectingRequests as startCollectingRequests, meta$l_stopCollectingRequests as stopCollectingRequests };
5352
+ declare const meta$n_getSettings: typeof getSettings;
5353
+ declare const meta$n_startCollectingRequests: typeof startCollectingRequests;
5354
+ declare const meta$n_stopCollectingRequests: typeof stopCollectingRequests;
5355
+ declare namespace meta$n {
5356
+ export { type __PublicMethodMetaInfo$n as __PublicMethodMetaInfo, meta$n_getSettings as getSettings, meta$n_startCollectingRequests as startCollectingRequests, meta$n_stopCollectingRequests as stopCollectingRequests };
5357
5357
  }
5358
5358
 
5359
5359
  interface Cart$3 {
@@ -9301,7 +9301,7 @@ interface GetCartResponseNonNullableFields {
9301
9301
  cart?: CartNonNullableFields$2;
9302
9302
  }
9303
9303
 
9304
- type __PublicMethodMetaInfo$k<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
9304
+ type __PublicMethodMetaInfo$m<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
9305
9305
  getUrl: (context: any) => string;
9306
9306
  httpMethod: K;
9307
9307
  path: string;
@@ -9311,43 +9311,43 @@ type __PublicMethodMetaInfo$k<K = string, M = unknown, T = unknown, S = unknown,
9311
9311
  __responseType: Q;
9312
9312
  __originalResponseType: R;
9313
9313
  };
9314
- declare function createCart(): __PublicMethodMetaInfo$k<'POST', {}, CreateCartRequest, CreateCartRequest$1, CreateCartResponse & CreateCartResponseNonNullableFields, CreateCartResponse$1 & CreateCartResponseNonNullableFields$1>;
9315
- declare function updateCart(): __PublicMethodMetaInfo$k<'PATCH', {
9314
+ declare function createCart(): __PublicMethodMetaInfo$m<'POST', {}, CreateCartRequest, CreateCartRequest$1, CreateCartResponse & CreateCartResponseNonNullableFields, CreateCartResponse$1 & CreateCartResponseNonNullableFields$1>;
9315
+ declare function updateCart(): __PublicMethodMetaInfo$m<'PATCH', {
9316
9316
  cartInfoId: string;
9317
9317
  }, UpdateCartRequest$2, UpdateCartRequest$3, UpdateCartResponse$2 & UpdateCartResponseNonNullableFields$2, UpdateCartResponse$3 & UpdateCartResponseNonNullableFields$3>;
9318
- declare function getCart(): __PublicMethodMetaInfo$k<'GET', {
9318
+ declare function getCart(): __PublicMethodMetaInfo$m<'GET', {
9319
9319
  id: string;
9320
9320
  }, GetCartRequest, GetCartRequest$1, GetCartResponse & GetCartResponseNonNullableFields, GetCartResponse$1 & GetCartResponseNonNullableFields$1>;
9321
- declare function addToCart(): __PublicMethodMetaInfo$k<'POST', {
9321
+ declare function addToCart(): __PublicMethodMetaInfo$m<'POST', {
9322
9322
  id: string;
9323
9323
  }, AddToCartRequest, AddToCartRequest$1, AddToCartResponse$2 & AddToCartResponseNonNullableFields$2, AddToCartResponse$3 & AddToCartResponseNonNullableFields$3>;
9324
- declare function removeLineItems$1(): __PublicMethodMetaInfo$k<'POST', {
9324
+ declare function removeLineItems$1(): __PublicMethodMetaInfo$m<'POST', {
9325
9325
  id: string;
9326
9326
  }, RemoveLineItemsRequest$2, RemoveLineItemsRequest$3, RemoveLineItemsResponse$4 & RemoveLineItemsResponseNonNullableFields$4, RemoveLineItemsResponse$5 & RemoveLineItemsResponseNonNullableFields$5>;
9327
- declare function createCheckout$1(): __PublicMethodMetaInfo$k<'POST', {
9327
+ declare function createCheckout$1(): __PublicMethodMetaInfo$m<'POST', {
9328
9328
  id: string;
9329
9329
  }, CreateCheckoutRequest$2, CreateCheckoutRequest$3, CreateCheckoutResponse$4 & CreateCheckoutResponseNonNullableFields$4, CreateCheckoutResponse$5 & CreateCheckoutResponseNonNullableFields$5>;
9330
- declare function removeCoupon$1(): __PublicMethodMetaInfo$k<'POST', {
9330
+ declare function removeCoupon$1(): __PublicMethodMetaInfo$m<'POST', {
9331
9331
  id: string;
9332
9332
  }, RemoveCouponRequest$2, RemoveCouponRequest$3, RemoveCouponResponse$4 & RemoveCouponResponseNonNullableFields$4, RemoveCouponResponse$5 & RemoveCouponResponseNonNullableFields$5>;
9333
- declare function updateLineItemsQuantity$1(): __PublicMethodMetaInfo$k<'POST', {
9333
+ declare function updateLineItemsQuantity$1(): __PublicMethodMetaInfo$m<'POST', {
9334
9334
  id: string;
9335
9335
  }, UpdateLineItemsQuantityRequest$2, UpdateLineItemsQuantityRequest$3, UpdateLineItemsQuantityResponse$4 & UpdateLineItemsQuantityResponseNonNullableFields$4, UpdateLineItemsQuantityResponse$5 & UpdateLineItemsQuantityResponseNonNullableFields$5>;
9336
- declare function estimateTotals(): __PublicMethodMetaInfo$k<'POST', {
9336
+ declare function estimateTotals(): __PublicMethodMetaInfo$m<'POST', {
9337
9337
  id: string;
9338
9338
  }, EstimateTotalsRequest, EstimateTotalsRequest$1, EstimateTotalsResponse$2 & EstimateTotalsResponseNonNullableFields$2, EstimateTotalsResponse$3 & EstimateTotalsResponseNonNullableFields$3>;
9339
- declare function deleteCart(): __PublicMethodMetaInfo$k<'DELETE', {
9339
+ declare function deleteCart(): __PublicMethodMetaInfo$m<'DELETE', {
9340
9340
  id: string;
9341
9341
  }, DeleteCartRequest, DeleteCartRequest$1, DeleteCartResponse$2, DeleteCartResponse$3>;
9342
9342
 
9343
- declare const meta$k_addToCart: typeof addToCart;
9344
- declare const meta$k_createCart: typeof createCart;
9345
- declare const meta$k_deleteCart: typeof deleteCart;
9346
- declare const meta$k_estimateTotals: typeof estimateTotals;
9347
- declare const meta$k_getCart: typeof getCart;
9348
- declare const meta$k_updateCart: typeof updateCart;
9349
- declare namespace meta$k {
9350
- export { type __PublicMethodMetaInfo$k as __PublicMethodMetaInfo, meta$k_addToCart as addToCart, meta$k_createCart as createCart, createCheckout$1 as createCheckout, meta$k_deleteCart as deleteCart, meta$k_estimateTotals as estimateTotals, meta$k_getCart as getCart, removeCoupon$1 as removeCoupon, removeLineItems$1 as removeLineItems, meta$k_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
9343
+ declare const meta$m_addToCart: typeof addToCart;
9344
+ declare const meta$m_createCart: typeof createCart;
9345
+ declare const meta$m_deleteCart: typeof deleteCart;
9346
+ declare const meta$m_estimateTotals: typeof estimateTotals;
9347
+ declare const meta$m_getCart: typeof getCart;
9348
+ declare const meta$m_updateCart: typeof updateCart;
9349
+ declare namespace meta$m {
9350
+ export { type __PublicMethodMetaInfo$m as __PublicMethodMetaInfo, meta$m_addToCart as addToCart, meta$m_createCart as createCart, createCheckout$1 as createCheckout, meta$m_deleteCart as deleteCart, meta$m_estimateTotals as estimateTotals, meta$m_getCart as getCart, removeCoupon$1 as removeCoupon, removeLineItems$1 as removeLineItems, meta$m_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
9351
9351
  }
9352
9352
 
9353
9353
  interface Cart$1 {
@@ -13215,7 +13215,7 @@ interface EstimateTotalsResponseNonNullableFields {
13215
13215
  violations: ViolationNonNullableFields$2[];
13216
13216
  }
13217
13217
 
13218
- type __PublicMethodMetaInfo$j<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
13218
+ type __PublicMethodMetaInfo$l<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
13219
13219
  getUrl: (context: any) => string;
13220
13220
  httpMethod: K;
13221
13221
  path: string;
@@ -13225,27 +13225,27 @@ type __PublicMethodMetaInfo$j<K = string, M = unknown, T = unknown, S = unknown,
13225
13225
  __responseType: Q;
13226
13226
  __originalResponseType: R;
13227
13227
  };
13228
- declare function getCurrentCart(): __PublicMethodMetaInfo$j<'GET', {}, GetCurrentCartRequest, GetCurrentCartRequest$1, GetCurrentCartResponse & GetCurrentCartResponseNonNullableFields, GetCurrentCartResponse$1 & GetCurrentCartResponseNonNullableFields$1>;
13229
- declare function updateCurrentCart(): __PublicMethodMetaInfo$j<'PATCH', {}, UpdateCartRequest, UpdateCartRequest$1, UpdateCartResponse & UpdateCartResponseNonNullableFields, UpdateCartResponse$1 & UpdateCartResponseNonNullableFields$1>;
13230
- declare function addToCurrentCart(): __PublicMethodMetaInfo$j<'POST', {}, AddToCurrentCartRequest, AddToCurrentCartRequest$1, AddToCartResponse & AddToCartResponseNonNullableFields, AddToCartResponse$1 & AddToCartResponseNonNullableFields$1>;
13231
- declare function removeLineItemsFromCurrentCart(): __PublicMethodMetaInfo$j<'POST', {}, RemoveLineItemsFromCurrentCartRequest, RemoveLineItemsFromCurrentCartRequest$1, RemoveLineItemsResponse$2 & RemoveLineItemsResponseNonNullableFields$2, RemoveLineItemsResponse$3 & RemoveLineItemsResponseNonNullableFields$3>;
13232
- declare function createCheckoutFromCurrentCart(): __PublicMethodMetaInfo$j<'POST', {}, CreateCheckoutFromCurrentCartRequest, CreateCheckoutFromCurrentCartRequest$1, CreateCheckoutResponse$2 & CreateCheckoutResponseNonNullableFields$2, CreateCheckoutResponse$3 & CreateCheckoutResponseNonNullableFields$3>;
13233
- declare function removeCouponFromCurrentCart(): __PublicMethodMetaInfo$j<'POST', {}, RemoveCouponFromCurrentCartRequest, RemoveCouponFromCurrentCartRequest$1, RemoveCouponResponse$2 & RemoveCouponResponseNonNullableFields$2, RemoveCouponResponse$3 & RemoveCouponResponseNonNullableFields$3>;
13234
- declare function updateCurrentCartLineItemQuantity(): __PublicMethodMetaInfo$j<'POST', {}, UpdateCurrentCartLineItemQuantityRequest, UpdateCurrentCartLineItemQuantityRequest$1, UpdateLineItemsQuantityResponse$2 & UpdateLineItemsQuantityResponseNonNullableFields$2, UpdateLineItemsQuantityResponse$3 & UpdateLineItemsQuantityResponseNonNullableFields$3>;
13235
- declare function estimateCurrentCartTotals(): __PublicMethodMetaInfo$j<'POST', {}, EstimateCurrentCartTotalsRequest, EstimateCurrentCartTotalsRequest$1, EstimateTotalsResponse & EstimateTotalsResponseNonNullableFields, EstimateTotalsResponse$1 & EstimateTotalsResponseNonNullableFields$1>;
13236
- declare function deleteCurrentCart(): __PublicMethodMetaInfo$j<'DELETE', {}, DeleteCurrentCartRequest, DeleteCurrentCartRequest$1, DeleteCartResponse, DeleteCartResponse$1>;
13228
+ declare function getCurrentCart(): __PublicMethodMetaInfo$l<'GET', {}, GetCurrentCartRequest, GetCurrentCartRequest$1, GetCurrentCartResponse & GetCurrentCartResponseNonNullableFields, GetCurrentCartResponse$1 & GetCurrentCartResponseNonNullableFields$1>;
13229
+ declare function updateCurrentCart(): __PublicMethodMetaInfo$l<'PATCH', {}, UpdateCartRequest, UpdateCartRequest$1, UpdateCartResponse & UpdateCartResponseNonNullableFields, UpdateCartResponse$1 & UpdateCartResponseNonNullableFields$1>;
13230
+ declare function addToCurrentCart(): __PublicMethodMetaInfo$l<'POST', {}, AddToCurrentCartRequest, AddToCurrentCartRequest$1, AddToCartResponse & AddToCartResponseNonNullableFields, AddToCartResponse$1 & AddToCartResponseNonNullableFields$1>;
13231
+ declare function removeLineItemsFromCurrentCart(): __PublicMethodMetaInfo$l<'POST', {}, RemoveLineItemsFromCurrentCartRequest, RemoveLineItemsFromCurrentCartRequest$1, RemoveLineItemsResponse$2 & RemoveLineItemsResponseNonNullableFields$2, RemoveLineItemsResponse$3 & RemoveLineItemsResponseNonNullableFields$3>;
13232
+ declare function createCheckoutFromCurrentCart(): __PublicMethodMetaInfo$l<'POST', {}, CreateCheckoutFromCurrentCartRequest, CreateCheckoutFromCurrentCartRequest$1, CreateCheckoutResponse$2 & CreateCheckoutResponseNonNullableFields$2, CreateCheckoutResponse$3 & CreateCheckoutResponseNonNullableFields$3>;
13233
+ declare function removeCouponFromCurrentCart(): __PublicMethodMetaInfo$l<'POST', {}, RemoveCouponFromCurrentCartRequest, RemoveCouponFromCurrentCartRequest$1, RemoveCouponResponse$2 & RemoveCouponResponseNonNullableFields$2, RemoveCouponResponse$3 & RemoveCouponResponseNonNullableFields$3>;
13234
+ declare function updateCurrentCartLineItemQuantity(): __PublicMethodMetaInfo$l<'POST', {}, UpdateCurrentCartLineItemQuantityRequest, UpdateCurrentCartLineItemQuantityRequest$1, UpdateLineItemsQuantityResponse$2 & UpdateLineItemsQuantityResponseNonNullableFields$2, UpdateLineItemsQuantityResponse$3 & UpdateLineItemsQuantityResponseNonNullableFields$3>;
13235
+ declare function estimateCurrentCartTotals(): __PublicMethodMetaInfo$l<'POST', {}, EstimateCurrentCartTotalsRequest, EstimateCurrentCartTotalsRequest$1, EstimateTotalsResponse & EstimateTotalsResponseNonNullableFields, EstimateTotalsResponse$1 & EstimateTotalsResponseNonNullableFields$1>;
13236
+ declare function deleteCurrentCart(): __PublicMethodMetaInfo$l<'DELETE', {}, DeleteCurrentCartRequest, DeleteCurrentCartRequest$1, DeleteCartResponse, DeleteCartResponse$1>;
13237
13237
 
13238
- declare const meta$j_addToCurrentCart: typeof addToCurrentCart;
13239
- declare const meta$j_createCheckoutFromCurrentCart: typeof createCheckoutFromCurrentCart;
13240
- declare const meta$j_deleteCurrentCart: typeof deleteCurrentCart;
13241
- declare const meta$j_estimateCurrentCartTotals: typeof estimateCurrentCartTotals;
13242
- declare const meta$j_getCurrentCart: typeof getCurrentCart;
13243
- declare const meta$j_removeCouponFromCurrentCart: typeof removeCouponFromCurrentCart;
13244
- declare const meta$j_removeLineItemsFromCurrentCart: typeof removeLineItemsFromCurrentCart;
13245
- declare const meta$j_updateCurrentCart: typeof updateCurrentCart;
13246
- declare const meta$j_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
13247
- declare namespace meta$j {
13248
- export { type __PublicMethodMetaInfo$j as __PublicMethodMetaInfo, meta$j_addToCurrentCart as addToCurrentCart, meta$j_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, meta$j_deleteCurrentCart as deleteCurrentCart, meta$j_estimateCurrentCartTotals as estimateCurrentCartTotals, meta$j_getCurrentCart as getCurrentCart, meta$j_removeCouponFromCurrentCart as removeCouponFromCurrentCart, meta$j_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, meta$j_updateCurrentCart as updateCurrentCart, meta$j_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
13238
+ declare const meta$l_addToCurrentCart: typeof addToCurrentCart;
13239
+ declare const meta$l_createCheckoutFromCurrentCart: typeof createCheckoutFromCurrentCart;
13240
+ declare const meta$l_deleteCurrentCart: typeof deleteCurrentCart;
13241
+ declare const meta$l_estimateCurrentCartTotals: typeof estimateCurrentCartTotals;
13242
+ declare const meta$l_getCurrentCart: typeof getCurrentCart;
13243
+ declare const meta$l_removeCouponFromCurrentCart: typeof removeCouponFromCurrentCart;
13244
+ declare const meta$l_removeLineItemsFromCurrentCart: typeof removeLineItemsFromCurrentCart;
13245
+ declare const meta$l_updateCurrentCart: typeof updateCurrentCart;
13246
+ declare const meta$l_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
13247
+ declare namespace meta$l {
13248
+ export { type __PublicMethodMetaInfo$l as __PublicMethodMetaInfo, meta$l_addToCurrentCart as addToCurrentCart, meta$l_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, meta$l_deleteCurrentCart as deleteCurrentCart, meta$l_estimateCurrentCartTotals as estimateCurrentCartTotals, meta$l_getCurrentCart as getCurrentCart, meta$l_removeCouponFromCurrentCart as removeCouponFromCurrentCart, meta$l_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, meta$l_updateCurrentCart as updateCurrentCart, meta$l_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
13249
13249
  }
13250
13250
 
13251
13251
  interface Checkout$1 {
@@ -13391,7 +13391,7 @@ interface Checkout$1 {
13391
13391
  *
13392
13392
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
13393
13393
  */
13394
- extendedFields?: ExtendedFields$d;
13394
+ extendedFields?: ExtendedFields$f;
13395
13395
  /**
13396
13396
  * Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order.
13397
13397
  * @readonly
@@ -13914,7 +13914,7 @@ declare enum TaxableAddressType$7 {
13914
13914
  BILLING = "BILLING",
13915
13915
  SHIPPING = "SHIPPING"
13916
13916
  }
13917
- interface ExtendedFields$d {
13917
+ interface ExtendedFields$f {
13918
13918
  /**
13919
13919
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
13920
13920
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -15635,7 +15635,7 @@ interface Checkout {
15635
15635
  *
15636
15636
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
15637
15637
  */
15638
- extendedFields?: ExtendedFields$c;
15638
+ extendedFields?: ExtendedFields$e;
15639
15639
  /**
15640
15640
  * Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order.
15641
15641
  * @readonly
@@ -16116,7 +16116,7 @@ declare enum TaxableAddressType$6 {
16116
16116
  BILLING = "BILLING",
16117
16117
  SHIPPING = "SHIPPING"
16118
16118
  }
16119
- interface ExtendedFields$c {
16119
+ interface ExtendedFields$e {
16120
16120
  /**
16121
16121
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
16122
16122
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -17652,7 +17652,7 @@ interface GetCheckoutPaymentSettingsResponseNonNullableFields {
17652
17652
  blockedPaymentOptions: GetCheckoutPaymentSettingsResponsePaymentOption[];
17653
17653
  }
17654
17654
 
17655
- type __PublicMethodMetaInfo$i<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
17655
+ type __PublicMethodMetaInfo$k<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
17656
17656
  getUrl: (context: any) => string;
17657
17657
  httpMethod: K;
17658
17658
  path: string;
@@ -17662,62 +17662,62 @@ type __PublicMethodMetaInfo$i<K = string, M = unknown, T = unknown, S = unknown,
17662
17662
  __responseType: Q;
17663
17663
  __originalResponseType: R;
17664
17664
  };
17665
- declare function createCheckout(): __PublicMethodMetaInfo$i<'POST', {}, CreateCheckoutRequest, CreateCheckoutRequest$1, CreateCheckoutResponse & CreateCheckoutResponseNonNullableFields, CreateCheckoutResponse$1 & CreateCheckoutResponseNonNullableFields$1>;
17666
- declare function getCheckout(): __PublicMethodMetaInfo$i<'GET', {
17665
+ declare function createCheckout(): __PublicMethodMetaInfo$k<'POST', {}, CreateCheckoutRequest, CreateCheckoutRequest$1, CreateCheckoutResponse & CreateCheckoutResponseNonNullableFields, CreateCheckoutResponse$1 & CreateCheckoutResponseNonNullableFields$1>;
17666
+ declare function getCheckout(): __PublicMethodMetaInfo$k<'GET', {
17667
17667
  id: string;
17668
17668
  }, GetCheckoutRequest, GetCheckoutRequest$1, GetCheckoutResponse & GetCheckoutResponseNonNullableFields, GetCheckoutResponse$1 & GetCheckoutResponseNonNullableFields$1>;
17669
- declare function getCheckoutByCartId(): __PublicMethodMetaInfo$i<'GET', {
17669
+ declare function getCheckoutByCartId(): __PublicMethodMetaInfo$k<'GET', {
17670
17670
  id: string;
17671
17671
  }, GetCheckoutByCartIdRequest, GetCheckoutByCartIdRequest$1, GetCheckoutByCartIdResponse & GetCheckoutByCartIdResponseNonNullableFields, GetCheckoutByCartIdResponse$1 & GetCheckoutByCartIdResponseNonNullableFields$1>;
17672
- declare function getCheckoutUrl(): __PublicMethodMetaInfo$i<'GET', {
17672
+ declare function getCheckoutUrl(): __PublicMethodMetaInfo$k<'GET', {
17673
17673
  id: string;
17674
17674
  }, GetCheckoutURLRequest, GetCheckoutURLRequest$1, GetCheckoutURLResponse & GetCheckoutURLResponseNonNullableFields, GetCheckoutURLResponse$1 & GetCheckoutURLResponseNonNullableFields$1>;
17675
- declare function updateCheckout(): __PublicMethodMetaInfo$i<'PATCH', {
17675
+ declare function updateCheckout(): __PublicMethodMetaInfo$k<'PATCH', {
17676
17676
  checkoutId: string;
17677
17677
  }, UpdateCheckoutRequest, UpdateCheckoutRequest$1, UpdateCheckoutResponse & UpdateCheckoutResponseNonNullableFields, UpdateCheckoutResponse$1 & UpdateCheckoutResponseNonNullableFields$1>;
17678
- declare function removeCoupon(): __PublicMethodMetaInfo$i<'POST', {
17678
+ declare function removeCoupon(): __PublicMethodMetaInfo$k<'POST', {
17679
17679
  id: string;
17680
17680
  }, RemoveCouponRequest, RemoveCouponRequest$1, RemoveCouponResponse & RemoveCouponResponseNonNullableFields, RemoveCouponResponse$1 & RemoveCouponResponseNonNullableFields$1>;
17681
- declare function removeGiftCard(): __PublicMethodMetaInfo$i<'POST', {
17681
+ declare function removeGiftCard(): __PublicMethodMetaInfo$k<'POST', {
17682
17682
  id: string;
17683
17683
  }, RemoveGiftCardRequest, RemoveGiftCardRequest$1, RemoveGiftCardResponse & RemoveGiftCardResponseNonNullableFields, RemoveGiftCardResponse$1 & RemoveGiftCardResponseNonNullableFields$1>;
17684
- declare function removeOverrideCheckoutUrl(): __PublicMethodMetaInfo$i<'POST', {
17684
+ declare function removeOverrideCheckoutUrl(): __PublicMethodMetaInfo$k<'POST', {
17685
17685
  id: string;
17686
17686
  }, RemoveOverrideCheckoutUrlRequest, RemoveOverrideCheckoutUrlRequest$1, RemoveOverrideCheckoutUrlResponse & RemoveOverrideCheckoutUrlResponseNonNullableFields, RemoveOverrideCheckoutUrlResponse$1 & RemoveOverrideCheckoutUrlResponseNonNullableFields$1>;
17687
- declare function addToCheckout(): __PublicMethodMetaInfo$i<'POST', {
17687
+ declare function addToCheckout(): __PublicMethodMetaInfo$k<'POST', {
17688
17688
  id: string;
17689
17689
  }, AddToCheckoutRequest, AddToCheckoutRequest$1, AddToCheckoutResponse & AddToCheckoutResponseNonNullableFields, AddToCheckoutResponse$1 & AddToCheckoutResponseNonNullableFields$1>;
17690
- declare function removeLineItems(): __PublicMethodMetaInfo$i<'POST', {
17690
+ declare function removeLineItems(): __PublicMethodMetaInfo$k<'POST', {
17691
17691
  id: string;
17692
17692
  }, RemoveLineItemsRequest, RemoveLineItemsRequest$1, RemoveLineItemsResponse & RemoveLineItemsResponseNonNullableFields, RemoveLineItemsResponse$1 & RemoveLineItemsResponseNonNullableFields$1>;
17693
- declare function createOrder$1(): __PublicMethodMetaInfo$i<'POST', {
17693
+ declare function createOrder$1(): __PublicMethodMetaInfo$k<'POST', {
17694
17694
  id: string;
17695
17695
  }, CreateOrderRequest$2, CreateOrderRequest$3, CreateOrderResponse$2 & CreateOrderResponseNonNullableFields$2, CreateOrderResponse$3 & CreateOrderResponseNonNullableFields$3>;
17696
- declare function markCheckoutAsCompleted(): __PublicMethodMetaInfo$i<'POST', {
17696
+ declare function markCheckoutAsCompleted(): __PublicMethodMetaInfo$k<'POST', {
17697
17697
  id: string;
17698
17698
  }, MarkCheckoutAsCompletedRequest, MarkCheckoutAsCompletedRequest$1, MarkCheckoutAsCompletedResponse, MarkCheckoutAsCompletedResponse$1>;
17699
- declare function updateLineItemsQuantity(): __PublicMethodMetaInfo$i<'POST', {
17699
+ declare function updateLineItemsQuantity(): __PublicMethodMetaInfo$k<'POST', {
17700
17700
  id: string;
17701
17701
  }, UpdateLineItemsQuantityRequest, UpdateLineItemsQuantityRequest$1, UpdateLineItemsQuantityResponse & UpdateLineItemsQuantityResponseNonNullableFields, UpdateLineItemsQuantityResponse$1 & UpdateLineItemsQuantityResponseNonNullableFields$1>;
17702
- declare function getCheckoutPaymentSettings(): __PublicMethodMetaInfo$i<'GET', {
17702
+ declare function getCheckoutPaymentSettings(): __PublicMethodMetaInfo$k<'GET', {
17703
17703
  id: string;
17704
17704
  }, GetCheckoutPaymentSettingsRequest, GetCheckoutPaymentSettingsRequest$1, GetCheckoutPaymentSettingsResponse & GetCheckoutPaymentSettingsResponseNonNullableFields, GetCheckoutPaymentSettingsResponse$1 & GetCheckoutPaymentSettingsResponseNonNullableFields$1>;
17705
17705
 
17706
- declare const meta$i_addToCheckout: typeof addToCheckout;
17707
- declare const meta$i_createCheckout: typeof createCheckout;
17708
- declare const meta$i_getCheckout: typeof getCheckout;
17709
- declare const meta$i_getCheckoutByCartId: typeof getCheckoutByCartId;
17710
- declare const meta$i_getCheckoutPaymentSettings: typeof getCheckoutPaymentSettings;
17711
- declare const meta$i_getCheckoutUrl: typeof getCheckoutUrl;
17712
- declare const meta$i_markCheckoutAsCompleted: typeof markCheckoutAsCompleted;
17713
- declare const meta$i_removeCoupon: typeof removeCoupon;
17714
- declare const meta$i_removeGiftCard: typeof removeGiftCard;
17715
- declare const meta$i_removeLineItems: typeof removeLineItems;
17716
- declare const meta$i_removeOverrideCheckoutUrl: typeof removeOverrideCheckoutUrl;
17717
- declare const meta$i_updateCheckout: typeof updateCheckout;
17718
- declare const meta$i_updateLineItemsQuantity: typeof updateLineItemsQuantity;
17719
- declare namespace meta$i {
17720
- export { type __PublicMethodMetaInfo$i as __PublicMethodMetaInfo, meta$i_addToCheckout as addToCheckout, meta$i_createCheckout as createCheckout, createOrder$1 as createOrder, meta$i_getCheckout as getCheckout, meta$i_getCheckoutByCartId as getCheckoutByCartId, meta$i_getCheckoutPaymentSettings as getCheckoutPaymentSettings, meta$i_getCheckoutUrl as getCheckoutUrl, meta$i_markCheckoutAsCompleted as markCheckoutAsCompleted, meta$i_removeCoupon as removeCoupon, meta$i_removeGiftCard as removeGiftCard, meta$i_removeLineItems as removeLineItems, meta$i_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, meta$i_updateCheckout as updateCheckout, meta$i_updateLineItemsQuantity as updateLineItemsQuantity };
17706
+ declare const meta$k_addToCheckout: typeof addToCheckout;
17707
+ declare const meta$k_createCheckout: typeof createCheckout;
17708
+ declare const meta$k_getCheckout: typeof getCheckout;
17709
+ declare const meta$k_getCheckoutByCartId: typeof getCheckoutByCartId;
17710
+ declare const meta$k_getCheckoutPaymentSettings: typeof getCheckoutPaymentSettings;
17711
+ declare const meta$k_getCheckoutUrl: typeof getCheckoutUrl;
17712
+ declare const meta$k_markCheckoutAsCompleted: typeof markCheckoutAsCompleted;
17713
+ declare const meta$k_removeCoupon: typeof removeCoupon;
17714
+ declare const meta$k_removeGiftCard: typeof removeGiftCard;
17715
+ declare const meta$k_removeLineItems: typeof removeLineItems;
17716
+ declare const meta$k_removeOverrideCheckoutUrl: typeof removeOverrideCheckoutUrl;
17717
+ declare const meta$k_updateCheckout: typeof updateCheckout;
17718
+ declare const meta$k_updateLineItemsQuantity: typeof updateLineItemsQuantity;
17719
+ declare namespace meta$k {
17720
+ export { type __PublicMethodMetaInfo$k as __PublicMethodMetaInfo, meta$k_addToCheckout as addToCheckout, meta$k_createCheckout as createCheckout, createOrder$1 as createOrder, meta$k_getCheckout as getCheckout, meta$k_getCheckoutByCartId as getCheckoutByCartId, meta$k_getCheckoutPaymentSettings as getCheckoutPaymentSettings, meta$k_getCheckoutUrl as getCheckoutUrl, meta$k_markCheckoutAsCompleted as markCheckoutAsCompleted, meta$k_removeCoupon as removeCoupon, meta$k_removeGiftCard as removeGiftCard, meta$k_removeLineItems as removeLineItems, meta$k_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, meta$k_updateCheckout as updateCheckout, meta$k_updateLineItemsQuantity as updateLineItemsQuantity };
17721
17721
  }
17722
17722
 
17723
17723
  interface CheckoutSettings$1 {
@@ -18155,7 +18155,7 @@ interface UpdateCheckoutSettingsResponseNonNullableFields {
18155
18155
  checkoutSettings?: CheckoutSettingsNonNullableFields;
18156
18156
  }
18157
18157
 
18158
- type __PublicMethodMetaInfo$h<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
18158
+ type __PublicMethodMetaInfo$j<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
18159
18159
  getUrl: (context: any) => string;
18160
18160
  httpMethod: K;
18161
18161
  path: string;
@@ -18165,13 +18165,13 @@ type __PublicMethodMetaInfo$h<K = string, M = unknown, T = unknown, S = unknown,
18165
18165
  __responseType: Q;
18166
18166
  __originalResponseType: R;
18167
18167
  };
18168
- declare function getCheckoutSettings(): __PublicMethodMetaInfo$h<'GET', {}, GetCheckoutSettingsRequest, GetCheckoutSettingsRequest$1, GetCheckoutSettingsResponse & GetCheckoutSettingsResponseNonNullableFields, GetCheckoutSettingsResponse$1 & GetCheckoutSettingsResponseNonNullableFields$1>;
18169
- declare function updateCheckoutSettings(): __PublicMethodMetaInfo$h<'PATCH', {}, UpdateCheckoutSettingsRequest, UpdateCheckoutSettingsRequest$1, UpdateCheckoutSettingsResponse & UpdateCheckoutSettingsResponseNonNullableFields, UpdateCheckoutSettingsResponse$1 & UpdateCheckoutSettingsResponseNonNullableFields$1>;
18168
+ declare function getCheckoutSettings(): __PublicMethodMetaInfo$j<'GET', {}, GetCheckoutSettingsRequest, GetCheckoutSettingsRequest$1, GetCheckoutSettingsResponse & GetCheckoutSettingsResponseNonNullableFields, GetCheckoutSettingsResponse$1 & GetCheckoutSettingsResponseNonNullableFields$1>;
18169
+ declare function updateCheckoutSettings(): __PublicMethodMetaInfo$j<'PATCH', {}, UpdateCheckoutSettingsRequest, UpdateCheckoutSettingsRequest$1, UpdateCheckoutSettingsResponse & UpdateCheckoutSettingsResponseNonNullableFields, UpdateCheckoutSettingsResponse$1 & UpdateCheckoutSettingsResponseNonNullableFields$1>;
18170
18170
 
18171
- declare const meta$h_getCheckoutSettings: typeof getCheckoutSettings;
18172
- declare const meta$h_updateCheckoutSettings: typeof updateCheckoutSettings;
18173
- declare namespace meta$h {
18174
- export { type __PublicMethodMetaInfo$h as __PublicMethodMetaInfo, meta$h_getCheckoutSettings as getCheckoutSettings, meta$h_updateCheckoutSettings as updateCheckoutSettings };
18171
+ declare const meta$j_getCheckoutSettings: typeof getCheckoutSettings;
18172
+ declare const meta$j_updateCheckoutSettings: typeof updateCheckoutSettings;
18173
+ declare namespace meta$j {
18174
+ export { type __PublicMethodMetaInfo$j as __PublicMethodMetaInfo, meta$j_getCheckoutSettings as getCheckoutSettings, meta$j_updateCheckoutSettings as updateCheckoutSettings };
18175
18175
  }
18176
18176
 
18177
18177
  interface CheckoutTemplate$1 {
@@ -18616,7 +18616,7 @@ interface QueryCheckoutTemplatesRequest$1 {
18616
18616
  }
18617
18617
  interface CursorQuery$d extends CursorQueryPagingMethodOneOf$d {
18618
18618
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
18619
- cursorPaging?: CursorPaging$j;
18619
+ cursorPaging?: CursorPaging$l;
18620
18620
  /**
18621
18621
  * Filter object in the following format:
18622
18622
  * `"filter" : {
@@ -18631,24 +18631,24 @@ interface CursorQuery$d extends CursorQueryPagingMethodOneOf$d {
18631
18631
  * Sort object in the following format:
18632
18632
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
18633
18633
  */
18634
- sort?: Sorting$j[];
18634
+ sort?: Sorting$l[];
18635
18635
  }
18636
18636
  /** @oneof */
18637
18637
  interface CursorQueryPagingMethodOneOf$d {
18638
18638
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
18639
- cursorPaging?: CursorPaging$j;
18639
+ cursorPaging?: CursorPaging$l;
18640
18640
  }
18641
- interface Sorting$j {
18641
+ interface Sorting$l {
18642
18642
  /** Name of the field to sort by. */
18643
18643
  fieldName?: string;
18644
18644
  /** Sort order. */
18645
- order?: SortOrder$j;
18645
+ order?: SortOrder$l;
18646
18646
  }
18647
- declare enum SortOrder$j {
18647
+ declare enum SortOrder$l {
18648
18648
  ASC = "ASC",
18649
18649
  DESC = "DESC"
18650
18650
  }
18651
- interface CursorPaging$j {
18651
+ interface CursorPaging$l {
18652
18652
  /** Number of items to load. */
18653
18653
  limit?: number | null;
18654
18654
  /**
@@ -18670,7 +18670,7 @@ interface CursorPagingMetadata$j {
18670
18670
  /** Number of items returned in the response. */
18671
18671
  count?: number | null;
18672
18672
  /** Offset that was requested. */
18673
- cursors?: Cursors$j;
18673
+ cursors?: Cursors$l;
18674
18674
  /**
18675
18675
  * Indicates if there are more results after the current page.
18676
18676
  * If `true`, another page of results can be retrieved.
@@ -18678,7 +18678,7 @@ interface CursorPagingMetadata$j {
18678
18678
  */
18679
18679
  hasNext?: boolean | null;
18680
18680
  }
18681
- interface Cursors$j {
18681
+ interface Cursors$l {
18682
18682
  /** Cursor pointing to next page in the list of results. */
18683
18683
  next?: string | null;
18684
18684
  /** Cursor pointing to previous page in the list of results. */
@@ -19283,7 +19283,7 @@ interface QueryCheckoutTemplatesRequest {
19283
19283
  }
19284
19284
  interface CursorQuery$c extends CursorQueryPagingMethodOneOf$c {
19285
19285
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
19286
- cursorPaging?: CursorPaging$i;
19286
+ cursorPaging?: CursorPaging$k;
19287
19287
  /**
19288
19288
  * Filter object in the following format:
19289
19289
  * `"filter" : {
@@ -19298,24 +19298,24 @@ interface CursorQuery$c extends CursorQueryPagingMethodOneOf$c {
19298
19298
  * Sort object in the following format:
19299
19299
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
19300
19300
  */
19301
- sort?: Sorting$i[];
19301
+ sort?: Sorting$k[];
19302
19302
  }
19303
19303
  /** @oneof */
19304
19304
  interface CursorQueryPagingMethodOneOf$c {
19305
19305
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
19306
- cursorPaging?: CursorPaging$i;
19306
+ cursorPaging?: CursorPaging$k;
19307
19307
  }
19308
- interface Sorting$i {
19308
+ interface Sorting$k {
19309
19309
  /** Name of the field to sort by. */
19310
19310
  fieldName?: string;
19311
19311
  /** Sort order. */
19312
- order?: SortOrder$i;
19312
+ order?: SortOrder$k;
19313
19313
  }
19314
- declare enum SortOrder$i {
19314
+ declare enum SortOrder$k {
19315
19315
  ASC = "ASC",
19316
19316
  DESC = "DESC"
19317
19317
  }
19318
- interface CursorPaging$i {
19318
+ interface CursorPaging$k {
19319
19319
  /** Number of items to load. */
19320
19320
  limit?: number | null;
19321
19321
  /**
@@ -19337,7 +19337,7 @@ interface CursorPagingMetadata$i {
19337
19337
  /** Number of items returned in the response. */
19338
19338
  count?: number | null;
19339
19339
  /** Offset that was requested. */
19340
- cursors?: Cursors$i;
19340
+ cursors?: Cursors$k;
19341
19341
  /**
19342
19342
  * Indicates if there are more results after the current page.
19343
19343
  * If `true`, another page of results can be retrieved.
@@ -19345,7 +19345,7 @@ interface CursorPagingMetadata$i {
19345
19345
  */
19346
19346
  hasNext?: boolean | null;
19347
19347
  }
19348
- interface Cursors$i {
19348
+ interface Cursors$k {
19349
19349
  /** Cursor pointing to next page in the list of results. */
19350
19350
  next?: string | null;
19351
19351
  /** Cursor pointing to previous page in the list of results. */
@@ -19518,7 +19518,7 @@ interface RawHttpResponseNonNullableFields {
19518
19518
  headers: HeadersEntryNonNullableFields[];
19519
19519
  }
19520
19520
 
19521
- type __PublicMethodMetaInfo$g<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
19521
+ type __PublicMethodMetaInfo$i<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
19522
19522
  getUrl: (context: any) => string;
19523
19523
  httpMethod: K;
19524
19524
  path: string;
@@ -19528,33 +19528,33 @@ type __PublicMethodMetaInfo$g<K = string, M = unknown, T = unknown, S = unknown,
19528
19528
  __responseType: Q;
19529
19529
  __originalResponseType: R;
19530
19530
  };
19531
- declare function createCheckoutTemplate(): __PublicMethodMetaInfo$g<'POST', {}, CreateCheckoutTemplateRequest, CreateCheckoutTemplateRequest$1, CreateCheckoutTemplateResponse & CreateCheckoutTemplateResponseNonNullableFields, CreateCheckoutTemplateResponse$1 & CreateCheckoutTemplateResponseNonNullableFields$1>;
19532
- declare function getCheckoutTemplate(): __PublicMethodMetaInfo$g<'GET', {
19531
+ declare function createCheckoutTemplate(): __PublicMethodMetaInfo$i<'POST', {}, CreateCheckoutTemplateRequest, CreateCheckoutTemplateRequest$1, CreateCheckoutTemplateResponse & CreateCheckoutTemplateResponseNonNullableFields, CreateCheckoutTemplateResponse$1 & CreateCheckoutTemplateResponseNonNullableFields$1>;
19532
+ declare function getCheckoutTemplate(): __PublicMethodMetaInfo$i<'GET', {
19533
19533
  checkoutTemplateId: string;
19534
19534
  }, GetCheckoutTemplateRequest, GetCheckoutTemplateRequest$1, GetCheckoutTemplateResponse & GetCheckoutTemplateResponseNonNullableFields, GetCheckoutTemplateResponse$1 & GetCheckoutTemplateResponseNonNullableFields$1>;
19535
- declare function updateCheckoutTemplate(): __PublicMethodMetaInfo$g<'PATCH', {
19535
+ declare function updateCheckoutTemplate(): __PublicMethodMetaInfo$i<'PATCH', {
19536
19536
  checkoutTemplateId: string;
19537
19537
  }, UpdateCheckoutTemplateRequest, UpdateCheckoutTemplateRequest$1, UpdateCheckoutTemplateResponse & UpdateCheckoutTemplateResponseNonNullableFields, UpdateCheckoutTemplateResponse$1 & UpdateCheckoutTemplateResponseNonNullableFields$1>;
19538
- declare function deleteCheckoutTemplate(): __PublicMethodMetaInfo$g<'DELETE', {
19538
+ declare function deleteCheckoutTemplate(): __PublicMethodMetaInfo$i<'DELETE', {
19539
19539
  checkoutTemplateId: string;
19540
19540
  }, DeleteCheckoutTemplateRequest, DeleteCheckoutTemplateRequest$1, DeleteCheckoutTemplateResponse, DeleteCheckoutTemplateResponse$1>;
19541
- declare function queryCheckoutTemplates(): __PublicMethodMetaInfo$g<'POST', {}, QueryCheckoutTemplatesRequest, QueryCheckoutTemplatesRequest$1, QueryCheckoutTemplatesResponse & QueryCheckoutTemplatesResponseNonNullableFields, QueryCheckoutTemplatesResponse$1 & QueryCheckoutTemplatesResponseNonNullableFields$1>;
19542
- declare function createCheckoutFromTemplate(): __PublicMethodMetaInfo$g<'POST', {
19541
+ declare function queryCheckoutTemplates(): __PublicMethodMetaInfo$i<'POST', {}, QueryCheckoutTemplatesRequest, QueryCheckoutTemplatesRequest$1, QueryCheckoutTemplatesResponse & QueryCheckoutTemplatesResponseNonNullableFields, QueryCheckoutTemplatesResponse$1 & QueryCheckoutTemplatesResponseNonNullableFields$1>;
19542
+ declare function createCheckoutFromTemplate(): __PublicMethodMetaInfo$i<'POST', {
19543
19543
  checkoutTemplateId: string;
19544
19544
  }, CreateCheckoutFromTemplateRequest, CreateCheckoutFromTemplateRequest$1, CreateCheckoutFromTemplateResponse & CreateCheckoutFromTemplateResponseNonNullableFields, CreateCheckoutFromTemplateResponse$1 & CreateCheckoutFromTemplateResponseNonNullableFields$1>;
19545
- declare function createAndRedirectToCheckout(): __PublicMethodMetaInfo$g<'GET', {
19545
+ declare function createAndRedirectToCheckout(): __PublicMethodMetaInfo$i<'GET', {
19546
19546
  checkoutTemplateId: string;
19547
19547
  }, CreateAndRedirectToCheckoutRequest, CreateAndRedirectToCheckoutRequest$1, RawHttpResponse & RawHttpResponseNonNullableFields, RawHttpResponse$1 & RawHttpResponseNonNullableFields$1>;
19548
19548
 
19549
- declare const meta$g_createAndRedirectToCheckout: typeof createAndRedirectToCheckout;
19550
- declare const meta$g_createCheckoutFromTemplate: typeof createCheckoutFromTemplate;
19551
- declare const meta$g_createCheckoutTemplate: typeof createCheckoutTemplate;
19552
- declare const meta$g_deleteCheckoutTemplate: typeof deleteCheckoutTemplate;
19553
- declare const meta$g_getCheckoutTemplate: typeof getCheckoutTemplate;
19554
- declare const meta$g_queryCheckoutTemplates: typeof queryCheckoutTemplates;
19555
- declare const meta$g_updateCheckoutTemplate: typeof updateCheckoutTemplate;
19556
- declare namespace meta$g {
19557
- export { type __PublicMethodMetaInfo$g as __PublicMethodMetaInfo, meta$g_createAndRedirectToCheckout as createAndRedirectToCheckout, meta$g_createCheckoutFromTemplate as createCheckoutFromTemplate, meta$g_createCheckoutTemplate as createCheckoutTemplate, meta$g_deleteCheckoutTemplate as deleteCheckoutTemplate, meta$g_getCheckoutTemplate as getCheckoutTemplate, meta$g_queryCheckoutTemplates as queryCheckoutTemplates, meta$g_updateCheckoutTemplate as updateCheckoutTemplate };
19549
+ declare const meta$i_createAndRedirectToCheckout: typeof createAndRedirectToCheckout;
19550
+ declare const meta$i_createCheckoutFromTemplate: typeof createCheckoutFromTemplate;
19551
+ declare const meta$i_createCheckoutTemplate: typeof createCheckoutTemplate;
19552
+ declare const meta$i_deleteCheckoutTemplate: typeof deleteCheckoutTemplate;
19553
+ declare const meta$i_getCheckoutTemplate: typeof getCheckoutTemplate;
19554
+ declare const meta$i_queryCheckoutTemplates: typeof queryCheckoutTemplates;
19555
+ declare const meta$i_updateCheckoutTemplate: typeof updateCheckoutTemplate;
19556
+ declare namespace meta$i {
19557
+ export { type __PublicMethodMetaInfo$i as __PublicMethodMetaInfo, meta$i_createAndRedirectToCheckout as createAndRedirectToCheckout, meta$i_createCheckoutFromTemplate as createCheckoutFromTemplate, meta$i_createCheckoutTemplate as createCheckoutTemplate, meta$i_deleteCheckoutTemplate as deleteCheckoutTemplate, meta$i_getCheckoutTemplate as getCheckoutTemplate, meta$i_queryCheckoutTemplates as queryCheckoutTemplates, meta$i_updateCheckoutTemplate as updateCheckoutTemplate };
19558
19558
  }
19559
19559
 
19560
19560
  /**
@@ -19594,7 +19594,7 @@ interface DeliveryProfile$1 {
19594
19594
  */
19595
19595
  updatedDate?: Date | null;
19596
19596
  /** Extended fields. */
19597
- extendedFields?: ExtendedFields$b;
19597
+ extendedFields?: ExtendedFields$d;
19598
19598
  }
19599
19599
  /** DeliveryRegion can be used to config a Delivery Destinations with its providers */
19600
19600
  interface DeliveryRegion$1 {
@@ -19657,7 +19657,7 @@ interface Destination$3 {
19657
19657
  */
19658
19658
  subdivisions?: string[];
19659
19659
  }
19660
- interface ExtendedFields$b {
19660
+ interface ExtendedFields$d {
19661
19661
  /**
19662
19662
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
19663
19663
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -19704,7 +19704,7 @@ interface QueryDeliveryProfilesRequest$1 {
19704
19704
  }
19705
19705
  interface CursorQuery$b extends CursorQueryPagingMethodOneOf$b {
19706
19706
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
19707
- cursorPaging?: CursorPaging$h;
19707
+ cursorPaging?: CursorPaging$j;
19708
19708
  /**
19709
19709
  * Filter object in the following format:
19710
19710
  * `"filter" : {
@@ -19718,24 +19718,24 @@ interface CursorQuery$b extends CursorQueryPagingMethodOneOf$b {
19718
19718
  * Sort object in the following format:
19719
19719
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
19720
19720
  */
19721
- sort?: Sorting$h[];
19721
+ sort?: Sorting$j[];
19722
19722
  }
19723
19723
  /** @oneof */
19724
19724
  interface CursorQueryPagingMethodOneOf$b {
19725
19725
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
19726
- cursorPaging?: CursorPaging$h;
19726
+ cursorPaging?: CursorPaging$j;
19727
19727
  }
19728
- interface Sorting$h {
19728
+ interface Sorting$j {
19729
19729
  /** Name of the field to sort by. */
19730
19730
  fieldName?: string;
19731
19731
  /** Sort order. */
19732
- order?: SortOrder$h;
19732
+ order?: SortOrder$j;
19733
19733
  }
19734
- declare enum SortOrder$h {
19734
+ declare enum SortOrder$j {
19735
19735
  ASC = "ASC",
19736
19736
  DESC = "DESC"
19737
19737
  }
19738
- interface CursorPaging$h {
19738
+ interface CursorPaging$j {
19739
19739
  /** Maximum number of items to return in the results. */
19740
19740
  limit?: number | null;
19741
19741
  /**
@@ -19756,7 +19756,7 @@ interface CursorPagingMetadata$h {
19756
19756
  /** Number of items returned in the response. */
19757
19757
  count?: number | null;
19758
19758
  /** Cursor strings that point to the next page, previous page, or both. */
19759
- cursors?: Cursors$h;
19759
+ cursors?: Cursors$j;
19760
19760
  /**
19761
19761
  * Whether there are more pages to retrieve following the current page.
19762
19762
  *
@@ -19765,7 +19765,7 @@ interface CursorPagingMetadata$h {
19765
19765
  */
19766
19766
  hasNext?: boolean | null;
19767
19767
  }
19768
- interface Cursors$h {
19768
+ interface Cursors$j {
19769
19769
  /** Cursor string pointing to the next page in the list of results. */
19770
19770
  next?: string | null;
19771
19771
  /** Cursor pointing to the previous page in the list of results. */
@@ -20091,7 +20091,7 @@ interface DeliveryProfile {
20091
20091
  */
20092
20092
  _updatedDate?: Date | null;
20093
20093
  /** Extended fields. */
20094
- extendedFields?: ExtendedFields$a;
20094
+ extendedFields?: ExtendedFields$c;
20095
20095
  }
20096
20096
  /** DeliveryRegion can be used to config a Delivery Destinations with its providers */
20097
20097
  interface DeliveryRegion {
@@ -20154,7 +20154,7 @@ interface Destination$2 {
20154
20154
  */
20155
20155
  subdivisions?: string[];
20156
20156
  }
20157
- interface ExtendedFields$a {
20157
+ interface ExtendedFields$c {
20158
20158
  /**
20159
20159
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
20160
20160
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -20201,7 +20201,7 @@ interface QueryDeliveryProfilesRequest {
20201
20201
  }
20202
20202
  interface CursorQuery$a extends CursorQueryPagingMethodOneOf$a {
20203
20203
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
20204
- cursorPaging?: CursorPaging$g;
20204
+ cursorPaging?: CursorPaging$i;
20205
20205
  /**
20206
20206
  * Filter object in the following format:
20207
20207
  * `"filter" : {
@@ -20215,24 +20215,24 @@ interface CursorQuery$a extends CursorQueryPagingMethodOneOf$a {
20215
20215
  * Sort object in the following format:
20216
20216
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
20217
20217
  */
20218
- sort?: Sorting$g[];
20218
+ sort?: Sorting$i[];
20219
20219
  }
20220
20220
  /** @oneof */
20221
20221
  interface CursorQueryPagingMethodOneOf$a {
20222
20222
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
20223
- cursorPaging?: CursorPaging$g;
20223
+ cursorPaging?: CursorPaging$i;
20224
20224
  }
20225
- interface Sorting$g {
20225
+ interface Sorting$i {
20226
20226
  /** Name of the field to sort by. */
20227
20227
  fieldName?: string;
20228
20228
  /** Sort order. */
20229
- order?: SortOrder$g;
20229
+ order?: SortOrder$i;
20230
20230
  }
20231
- declare enum SortOrder$g {
20231
+ declare enum SortOrder$i {
20232
20232
  ASC = "ASC",
20233
20233
  DESC = "DESC"
20234
20234
  }
20235
- interface CursorPaging$g {
20235
+ interface CursorPaging$i {
20236
20236
  /** Maximum number of items to return in the results. */
20237
20237
  limit?: number | null;
20238
20238
  /**
@@ -20253,7 +20253,7 @@ interface CursorPagingMetadata$g {
20253
20253
  /** Number of items returned in the response. */
20254
20254
  count?: number | null;
20255
20255
  /** Cursor strings that point to the next page, previous page, or both. */
20256
- cursors?: Cursors$g;
20256
+ cursors?: Cursors$i;
20257
20257
  /**
20258
20258
  * Whether there are more pages to retrieve following the current page.
20259
20259
  *
@@ -20262,7 +20262,7 @@ interface CursorPagingMetadata$g {
20262
20262
  */
20263
20263
  hasNext?: boolean | null;
20264
20264
  }
20265
- interface Cursors$g {
20265
+ interface Cursors$i {
20266
20266
  /** Cursor string pointing to the next page in the list of results. */
20267
20267
  next?: string | null;
20268
20268
  /** Cursor pointing to the previous page in the list of results. */
@@ -20551,7 +20551,7 @@ interface UpdateExtendedFieldsResponseNonNullableFields$6 {
20551
20551
  deliveryProfile?: DeliveryProfileNonNullableFields;
20552
20552
  }
20553
20553
 
20554
- type __PublicMethodMetaInfo$f<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
20554
+ type __PublicMethodMetaInfo$h<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
20555
20555
  getUrl: (context: any) => string;
20556
20556
  httpMethod: K;
20557
20557
  path: string;
@@ -20561,52 +20561,52 @@ type __PublicMethodMetaInfo$f<K = string, M = unknown, T = unknown, S = unknown,
20561
20561
  __responseType: Q;
20562
20562
  __originalResponseType: R;
20563
20563
  };
20564
- declare function createDeliveryProfile(): __PublicMethodMetaInfo$f<'POST', {}, CreateDeliveryProfileRequest, CreateDeliveryProfileRequest$1, CreateDeliveryProfileResponse & CreateDeliveryProfileResponseNonNullableFields, CreateDeliveryProfileResponse$1 & CreateDeliveryProfileResponseNonNullableFields$1>;
20565
- declare function getDeliveryProfile(): __PublicMethodMetaInfo$f<'GET', {
20564
+ declare function createDeliveryProfile(): __PublicMethodMetaInfo$h<'POST', {}, CreateDeliveryProfileRequest, CreateDeliveryProfileRequest$1, CreateDeliveryProfileResponse & CreateDeliveryProfileResponseNonNullableFields, CreateDeliveryProfileResponse$1 & CreateDeliveryProfileResponseNonNullableFields$1>;
20565
+ declare function getDeliveryProfile(): __PublicMethodMetaInfo$h<'GET', {
20566
20566
  deliveryProfileId: string;
20567
20567
  }, GetDeliveryProfileRequest, GetDeliveryProfileRequest$1, GetDeliveryProfileResponse & GetDeliveryProfileResponseNonNullableFields, GetDeliveryProfileResponse$1 & GetDeliveryProfileResponseNonNullableFields$1>;
20568
- declare function updateDeliveryProfile(): __PublicMethodMetaInfo$f<'PATCH', {
20568
+ declare function updateDeliveryProfile(): __PublicMethodMetaInfo$h<'PATCH', {
20569
20569
  deliveryProfileId: string;
20570
20570
  }, UpdateDeliveryProfileRequest, UpdateDeliveryProfileRequest$1, UpdateDeliveryProfileResponse & UpdateDeliveryProfileResponseNonNullableFields, UpdateDeliveryProfileResponse$1 & UpdateDeliveryProfileResponseNonNullableFields$1>;
20571
- declare function deleteDeliveryProfile(): __PublicMethodMetaInfo$f<'DELETE', {
20571
+ declare function deleteDeliveryProfile(): __PublicMethodMetaInfo$h<'DELETE', {
20572
20572
  deliveryProfileId: string;
20573
20573
  }, DeleteDeliveryProfileRequest, DeleteDeliveryProfileRequest$1, DeleteDeliveryProfileResponse, DeleteDeliveryProfileResponse$1>;
20574
- declare function queryDeliveryProfiles(): __PublicMethodMetaInfo$f<'GET', {}, QueryDeliveryProfilesRequest, QueryDeliveryProfilesRequest$1, QueryDeliveryProfilesResponse & QueryDeliveryProfilesResponseNonNullableFields, QueryDeliveryProfilesResponse$1 & QueryDeliveryProfilesResponseNonNullableFields$1>;
20575
- declare function addDeliveryRegion$2(): __PublicMethodMetaInfo$f<'POST', {
20574
+ declare function queryDeliveryProfiles(): __PublicMethodMetaInfo$h<'GET', {}, QueryDeliveryProfilesRequest, QueryDeliveryProfilesRequest$1, QueryDeliveryProfilesResponse & QueryDeliveryProfilesResponseNonNullableFields, QueryDeliveryProfilesResponse$1 & QueryDeliveryProfilesResponseNonNullableFields$1>;
20575
+ declare function addDeliveryRegion$2(): __PublicMethodMetaInfo$h<'POST', {
20576
20576
  deliveryProfileId: string;
20577
20577
  }, AddDeliveryRegionRequest$4, AddDeliveryRegionRequest$5, AddDeliveryRegionResponse$4 & AddDeliveryRegionResponseNonNullableFields$4, AddDeliveryRegionResponse$5 & AddDeliveryRegionResponseNonNullableFields$5>;
20578
- declare function updateDeliveryRegion(): __PublicMethodMetaInfo$f<'PATCH', {
20578
+ declare function updateDeliveryRegion(): __PublicMethodMetaInfo$h<'PATCH', {
20579
20579
  deliveryProfileId: string;
20580
20580
  deliveryRegionId: string;
20581
20581
  }, UpdateDeliveryRegionRequest, UpdateDeliveryRegionRequest$1, UpdateDeliveryRegionResponse & UpdateDeliveryRegionResponseNonNullableFields, UpdateDeliveryRegionResponse$1 & UpdateDeliveryRegionResponseNonNullableFields$1>;
20582
- declare function removeDeliveryRegion$2(): __PublicMethodMetaInfo$f<'DELETE', {
20582
+ declare function removeDeliveryRegion$2(): __PublicMethodMetaInfo$h<'DELETE', {
20583
20583
  deliveryProfileId: string;
20584
20584
  deliveryRegionId: string;
20585
20585
  }, RemoveDeliveryRegionRequest$4, RemoveDeliveryRegionRequest$5, RemoveDeliveryRegionResponse$4 & RemoveDeliveryRegionResponseNonNullableFields$4, RemoveDeliveryRegionResponse$5 & RemoveDeliveryRegionResponseNonNullableFields$5>;
20586
- declare function addDeliveryCarrier(): __PublicMethodMetaInfo$f<'POST', {}, AddDeliveryCarrierRequest, AddDeliveryCarrierRequest$1, AddDeliveryCarrierResponse & AddDeliveryCarrierResponseNonNullableFields, AddDeliveryCarrierResponse$1 & AddDeliveryCarrierResponseNonNullableFields$1>;
20587
- declare function removeDeliveryCarrier(): __PublicMethodMetaInfo$f<'POST', {}, RemoveDeliveryCarrierRequest, RemoveDeliveryCarrierRequest$1, RemoveDeliveryCarrierResponse & RemoveDeliveryCarrierResponseNonNullableFields, RemoveDeliveryCarrierResponse$1 & RemoveDeliveryCarrierResponseNonNullableFields$1>;
20588
- declare function updateDeliveryCarrier(): __PublicMethodMetaInfo$f<'PATCH', {}, UpdateDeliveryCarrierRequest, UpdateDeliveryCarrierRequest$1, UpdateDeliveryCarrierResponse & UpdateDeliveryCarrierResponseNonNullableFields, UpdateDeliveryCarrierResponse$1 & UpdateDeliveryCarrierResponseNonNullableFields$1>;
20589
- declare function listDeliveryCarrierDetails(): __PublicMethodMetaInfo$f<'GET', {}, ListDeliveryCarrierDetailsRequest, ListDeliveryCarrierDetailsRequest$1, ListDeliveryCarrierDetailsResponse & ListDeliveryCarrierDetailsResponseNonNullableFields, ListDeliveryCarrierDetailsResponse$1 & ListDeliveryCarrierDetailsResponseNonNullableFields$1>;
20590
- declare function listDeliveryCarriers(): __PublicMethodMetaInfo$f<'POST', {
20586
+ declare function addDeliveryCarrier(): __PublicMethodMetaInfo$h<'POST', {}, AddDeliveryCarrierRequest, AddDeliveryCarrierRequest$1, AddDeliveryCarrierResponse & AddDeliveryCarrierResponseNonNullableFields, AddDeliveryCarrierResponse$1 & AddDeliveryCarrierResponseNonNullableFields$1>;
20587
+ declare function removeDeliveryCarrier(): __PublicMethodMetaInfo$h<'POST', {}, RemoveDeliveryCarrierRequest, RemoveDeliveryCarrierRequest$1, RemoveDeliveryCarrierResponse & RemoveDeliveryCarrierResponseNonNullableFields, RemoveDeliveryCarrierResponse$1 & RemoveDeliveryCarrierResponseNonNullableFields$1>;
20588
+ declare function updateDeliveryCarrier(): __PublicMethodMetaInfo$h<'PATCH', {}, UpdateDeliveryCarrierRequest, UpdateDeliveryCarrierRequest$1, UpdateDeliveryCarrierResponse & UpdateDeliveryCarrierResponseNonNullableFields, UpdateDeliveryCarrierResponse$1 & UpdateDeliveryCarrierResponseNonNullableFields$1>;
20589
+ declare function listDeliveryCarrierDetails(): __PublicMethodMetaInfo$h<'GET', {}, ListDeliveryCarrierDetailsRequest, ListDeliveryCarrierDetailsRequest$1, ListDeliveryCarrierDetailsResponse & ListDeliveryCarrierDetailsResponseNonNullableFields, ListDeliveryCarrierDetailsResponse$1 & ListDeliveryCarrierDetailsResponseNonNullableFields$1>;
20590
+ declare function listDeliveryCarriers(): __PublicMethodMetaInfo$h<'POST', {
20591
20591
  deliveryProfileId: string;
20592
20592
  }, ListDeliveryCarriersRequest, ListDeliveryCarriersRequest$1, ListDeliveryCarriersResponse & ListDeliveryCarriersResponseNonNullableFields, ListDeliveryCarriersResponse$1 & ListDeliveryCarriersResponseNonNullableFields$1>;
20593
- declare function updateExtendedFields$3(): __PublicMethodMetaInfo$f<'POST', {
20593
+ declare function updateExtendedFields$3(): __PublicMethodMetaInfo$h<'POST', {
20594
20594
  id: string;
20595
20595
  }, UpdateExtendedFieldsRequest$6, UpdateExtendedFieldsRequest$7, UpdateExtendedFieldsResponse$6 & UpdateExtendedFieldsResponseNonNullableFields$6, UpdateExtendedFieldsResponse$7 & UpdateExtendedFieldsResponseNonNullableFields$7>;
20596
20596
 
20597
- declare const meta$f_addDeliveryCarrier: typeof addDeliveryCarrier;
20598
- declare const meta$f_createDeliveryProfile: typeof createDeliveryProfile;
20599
- declare const meta$f_deleteDeliveryProfile: typeof deleteDeliveryProfile;
20600
- declare const meta$f_getDeliveryProfile: typeof getDeliveryProfile;
20601
- declare const meta$f_listDeliveryCarrierDetails: typeof listDeliveryCarrierDetails;
20602
- declare const meta$f_listDeliveryCarriers: typeof listDeliveryCarriers;
20603
- declare const meta$f_queryDeliveryProfiles: typeof queryDeliveryProfiles;
20604
- declare const meta$f_removeDeliveryCarrier: typeof removeDeliveryCarrier;
20605
- declare const meta$f_updateDeliveryCarrier: typeof updateDeliveryCarrier;
20606
- declare const meta$f_updateDeliveryProfile: typeof updateDeliveryProfile;
20607
- declare const meta$f_updateDeliveryRegion: typeof updateDeliveryRegion;
20608
- declare namespace meta$f {
20609
- export { type __PublicMethodMetaInfo$f as __PublicMethodMetaInfo, meta$f_addDeliveryCarrier as addDeliveryCarrier, addDeliveryRegion$2 as addDeliveryRegion, meta$f_createDeliveryProfile as createDeliveryProfile, meta$f_deleteDeliveryProfile as deleteDeliveryProfile, meta$f_getDeliveryProfile as getDeliveryProfile, meta$f_listDeliveryCarrierDetails as listDeliveryCarrierDetails, meta$f_listDeliveryCarriers as listDeliveryCarriers, meta$f_queryDeliveryProfiles as queryDeliveryProfiles, meta$f_removeDeliveryCarrier as removeDeliveryCarrier, removeDeliveryRegion$2 as removeDeliveryRegion, meta$f_updateDeliveryCarrier as updateDeliveryCarrier, meta$f_updateDeliveryProfile as updateDeliveryProfile, meta$f_updateDeliveryRegion as updateDeliveryRegion, updateExtendedFields$3 as updateExtendedFields };
20597
+ declare const meta$h_addDeliveryCarrier: typeof addDeliveryCarrier;
20598
+ declare const meta$h_createDeliveryProfile: typeof createDeliveryProfile;
20599
+ declare const meta$h_deleteDeliveryProfile: typeof deleteDeliveryProfile;
20600
+ declare const meta$h_getDeliveryProfile: typeof getDeliveryProfile;
20601
+ declare const meta$h_listDeliveryCarrierDetails: typeof listDeliveryCarrierDetails;
20602
+ declare const meta$h_listDeliveryCarriers: typeof listDeliveryCarriers;
20603
+ declare const meta$h_queryDeliveryProfiles: typeof queryDeliveryProfiles;
20604
+ declare const meta$h_removeDeliveryCarrier: typeof removeDeliveryCarrier;
20605
+ declare const meta$h_updateDeliveryCarrier: typeof updateDeliveryCarrier;
20606
+ declare const meta$h_updateDeliveryProfile: typeof updateDeliveryProfile;
20607
+ declare const meta$h_updateDeliveryRegion: typeof updateDeliveryRegion;
20608
+ declare namespace meta$h {
20609
+ export { type __PublicMethodMetaInfo$h as __PublicMethodMetaInfo, meta$h_addDeliveryCarrier as addDeliveryCarrier, addDeliveryRegion$2 as addDeliveryRegion, meta$h_createDeliveryProfile as createDeliveryProfile, meta$h_deleteDeliveryProfile as deleteDeliveryProfile, meta$h_getDeliveryProfile as getDeliveryProfile, meta$h_listDeliveryCarrierDetails as listDeliveryCarrierDetails, meta$h_listDeliveryCarriers as listDeliveryCarriers, meta$h_queryDeliveryProfiles as queryDeliveryProfiles, meta$h_removeDeliveryCarrier as removeDeliveryCarrier, removeDeliveryRegion$2 as removeDeliveryRegion, meta$h_updateDeliveryCarrier as updateDeliveryCarrier, meta$h_updateDeliveryProfile as updateDeliveryProfile, meta$h_updateDeliveryRegion as updateDeliveryRegion, updateExtendedFields$3 as updateExtendedFields };
20610
20610
  }
20611
20611
 
20612
20612
  /** DraftOrder is the main entity of DraftOrders service. It represents a single edit order. */
@@ -20709,7 +20709,7 @@ interface DraftOrder$1 {
20709
20709
  * Custom field data for the draft order object.
20710
20710
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
20711
20711
  */
20712
- extendedFields?: ExtendedFields$9;
20712
+ extendedFields?: ExtendedFields$b;
20713
20713
  }
20714
20714
  interface ItemDetails$1 extends ItemDetailsChangeTypeOneOf$1 {
20715
20715
  /** Whether the line item was added as part of the draft. */
@@ -21661,7 +21661,7 @@ interface OrderTaxBreakdown$3 {
21661
21661
  /** The sum of all the tax from line items that calculated by the tax identifiers. */
21662
21662
  aggregatedTaxAmount?: Price$9;
21663
21663
  }
21664
- interface ExtendedFields$9 {
21664
+ interface ExtendedFields$b {
21665
21665
  /**
21666
21666
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
21667
21667
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -22265,7 +22265,7 @@ interface Order$3 {
22265
22265
  *
22266
22266
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
22267
22267
  */
22268
- extendedFields?: ExtendedFields$9;
22268
+ extendedFields?: ExtendedFields$b;
22269
22269
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
22270
22270
  purchaseFlowId?: string | null;
22271
22271
  /**
@@ -22276,6 +22276,11 @@ interface Order$3 {
22276
22276
  * + No shipping option is selected.
22277
22277
  */
22278
22278
  recipientInfo?: AddressWithContact$3;
22279
+ /**
22280
+ * Date and time the order was originally purchased in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
22281
+ * Used for migration from external systems.
22282
+ */
22283
+ purchasedDate?: Date | null;
22279
22284
  }
22280
22285
  declare enum PaymentStatus$3 {
22281
22286
  UNSPECIFIED = "UNSPECIFIED",
@@ -22503,7 +22508,7 @@ interface CursorQuery$9 extends CursorQueryPagingMethodOneOf$9 {
22503
22508
  *
22504
22509
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
22505
22510
  */
22506
- cursorPaging?: CursorPaging$f;
22511
+ cursorPaging?: CursorPaging$h;
22507
22512
  /**
22508
22513
  * Filter object.
22509
22514
  *
@@ -22515,7 +22520,7 @@ interface CursorQuery$9 extends CursorQueryPagingMethodOneOf$9 {
22515
22520
  *
22516
22521
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
22517
22522
  */
22518
- sort?: Sorting$f[];
22523
+ sort?: Sorting$h[];
22519
22524
  }
22520
22525
  /** @oneof */
22521
22526
  interface CursorQueryPagingMethodOneOf$9 {
@@ -22524,19 +22529,19 @@ interface CursorQueryPagingMethodOneOf$9 {
22524
22529
  *
22525
22530
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
22526
22531
  */
22527
- cursorPaging?: CursorPaging$f;
22532
+ cursorPaging?: CursorPaging$h;
22528
22533
  }
22529
- interface Sorting$f {
22534
+ interface Sorting$h {
22530
22535
  /** Name of the field to sort by. */
22531
22536
  fieldName?: string;
22532
22537
  /** Sort order. */
22533
- order?: SortOrder$f;
22538
+ order?: SortOrder$h;
22534
22539
  }
22535
- declare enum SortOrder$f {
22540
+ declare enum SortOrder$h {
22536
22541
  ASC = "ASC",
22537
22542
  DESC = "DESC"
22538
22543
  }
22539
- interface CursorPaging$f {
22544
+ interface CursorPaging$h {
22540
22545
  /** Maximum number of items to return in the results. */
22541
22546
  limit?: number | null;
22542
22547
  /**
@@ -22557,7 +22562,7 @@ interface CursorPagingMetadata$f {
22557
22562
  /** Number of items returned in current page. */
22558
22563
  count?: number | null;
22559
22564
  /** Cursor strings that point to the next page, previous page, or both. */
22560
- cursors?: Cursors$f;
22565
+ cursors?: Cursors$h;
22561
22566
  /**
22562
22567
  * Whether there are more pages to retrieve following the current page.
22563
22568
  *
@@ -22566,7 +22571,7 @@ interface CursorPagingMetadata$f {
22566
22571
  */
22567
22572
  hasNext?: boolean | null;
22568
22573
  }
22569
- interface Cursors$f {
22574
+ interface Cursors$h {
22570
22575
  /** Cursor string pointing to the next page in the list of results. */
22571
22576
  next?: string | null;
22572
22577
  /** Cursor pointing to the previous page in the list of results. */
@@ -23327,7 +23332,7 @@ interface DraftOrder {
23327
23332
  * Custom field data for the draft order object.
23328
23333
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
23329
23334
  */
23330
- extendedFields?: ExtendedFields$8;
23335
+ extendedFields?: ExtendedFields$a;
23331
23336
  }
23332
23337
  interface ItemDetails extends ItemDetailsChangeTypeOneOf {
23333
23338
  /** Whether the line item was added as part of the draft. */
@@ -24236,7 +24241,7 @@ interface OrderTaxBreakdown$2 {
24236
24241
  /** The sum of all the tax from line items that calculated by the tax identifiers. */
24237
24242
  aggregatedTaxAmount?: Price$8;
24238
24243
  }
24239
- interface ExtendedFields$8 {
24244
+ interface ExtendedFields$a {
24240
24245
  /**
24241
24246
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
24242
24247
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -24834,7 +24839,7 @@ interface Order$2 {
24834
24839
  *
24835
24840
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
24836
24841
  */
24837
- extendedFields?: ExtendedFields$8;
24842
+ extendedFields?: ExtendedFields$a;
24838
24843
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
24839
24844
  purchaseFlowId?: string | null;
24840
24845
  /**
@@ -24845,6 +24850,11 @@ interface Order$2 {
24845
24850
  * + No shipping option is selected.
24846
24851
  */
24847
24852
  recipientInfo?: AddressWithContact$2;
24853
+ /**
24854
+ * Date and time the order was originally purchased in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
24855
+ * Used for migration from external systems.
24856
+ */
24857
+ purchasedDate?: Date | null;
24848
24858
  }
24849
24859
  declare enum PaymentStatus$2 {
24850
24860
  UNSPECIFIED = "UNSPECIFIED",
@@ -25072,7 +25082,7 @@ interface CursorQuery$8 extends CursorQueryPagingMethodOneOf$8 {
25072
25082
  *
25073
25083
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
25074
25084
  */
25075
- cursorPaging?: CursorPaging$e;
25085
+ cursorPaging?: CursorPaging$g;
25076
25086
  /**
25077
25087
  * Filter object.
25078
25088
  *
@@ -25084,7 +25094,7 @@ interface CursorQuery$8 extends CursorQueryPagingMethodOneOf$8 {
25084
25094
  *
25085
25095
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
25086
25096
  */
25087
- sort?: Sorting$e[];
25097
+ sort?: Sorting$g[];
25088
25098
  }
25089
25099
  /** @oneof */
25090
25100
  interface CursorQueryPagingMethodOneOf$8 {
@@ -25093,19 +25103,19 @@ interface CursorQueryPagingMethodOneOf$8 {
25093
25103
  *
25094
25104
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
25095
25105
  */
25096
- cursorPaging?: CursorPaging$e;
25106
+ cursorPaging?: CursorPaging$g;
25097
25107
  }
25098
- interface Sorting$e {
25108
+ interface Sorting$g {
25099
25109
  /** Name of the field to sort by. */
25100
25110
  fieldName?: string;
25101
25111
  /** Sort order. */
25102
- order?: SortOrder$e;
25112
+ order?: SortOrder$g;
25103
25113
  }
25104
- declare enum SortOrder$e {
25114
+ declare enum SortOrder$g {
25105
25115
  ASC = "ASC",
25106
25116
  DESC = "DESC"
25107
25117
  }
25108
- interface CursorPaging$e {
25118
+ interface CursorPaging$g {
25109
25119
  /** Maximum number of items to return in the results. */
25110
25120
  limit?: number | null;
25111
25121
  /**
@@ -25126,7 +25136,7 @@ interface CursorPagingMetadata$e {
25126
25136
  /** Number of items returned in current page. */
25127
25137
  count?: number | null;
25128
25138
  /** Cursor strings that point to the next page, previous page, or both. */
25129
- cursors?: Cursors$e;
25139
+ cursors?: Cursors$g;
25130
25140
  /**
25131
25141
  * Whether there are more pages to retrieve following the current page.
25132
25142
  *
@@ -25135,7 +25145,7 @@ interface CursorPagingMetadata$e {
25135
25145
  */
25136
25146
  hasNext?: boolean | null;
25137
25147
  }
25138
- interface Cursors$e {
25148
+ interface Cursors$g {
25139
25149
  /** Cursor string pointing to the next page in the list of results. */
25140
25150
  next?: string | null;
25141
25151
  /** Cursor pointing to the previous page in the list of results. */
@@ -25790,7 +25800,7 @@ interface QueryDraftOrdersResponseNonNullableFields {
25790
25800
  draftOrders: DraftOrderNonNullableFields[];
25791
25801
  }
25792
25802
 
25793
- type __PublicMethodMetaInfo$e<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
25803
+ type __PublicMethodMetaInfo$g<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
25794
25804
  getUrl: (context: any) => string;
25795
25805
  httpMethod: K;
25796
25806
  path: string;
@@ -25800,77 +25810,77 @@ type __PublicMethodMetaInfo$e<K = string, M = unknown, T = unknown, S = unknown,
25800
25810
  __responseType: Q;
25801
25811
  __originalResponseType: R;
25802
25812
  };
25803
- declare function createDraftOrder(): __PublicMethodMetaInfo$e<'POST', {
25813
+ declare function createDraftOrder(): __PublicMethodMetaInfo$g<'POST', {
25804
25814
  orderId: string;
25805
25815
  }, CreateDraftOrderRequest, CreateDraftOrderRequest$1, CreateDraftOrderResponse & CreateDraftOrderResponseNonNullableFields, CreateDraftOrderResponse$1 & CreateDraftOrderResponseNonNullableFields$1>;
25806
- declare function createEmptyDraftOrder(): __PublicMethodMetaInfo$e<'POST', {}, CreateEmptyDraftOrderRequest, CreateEmptyDraftOrderRequest$1, CreateEmptyDraftOrderResponse & CreateEmptyDraftOrderResponseNonNullableFields, CreateEmptyDraftOrderResponse$1 & CreateEmptyDraftOrderResponseNonNullableFields$1>;
25807
- declare function addLineItemsToDraftOrder(): __PublicMethodMetaInfo$e<'POST', {
25816
+ declare function createEmptyDraftOrder(): __PublicMethodMetaInfo$g<'POST', {}, CreateEmptyDraftOrderRequest, CreateEmptyDraftOrderRequest$1, CreateEmptyDraftOrderResponse & CreateEmptyDraftOrderResponseNonNullableFields, CreateEmptyDraftOrderResponse$1 & CreateEmptyDraftOrderResponseNonNullableFields$1>;
25817
+ declare function addLineItemsToDraftOrder(): __PublicMethodMetaInfo$g<'POST', {
25808
25818
  draftOrderId: string;
25809
25819
  }, AddLineItemsToDraftOrderRequest, AddLineItemsToDraftOrderRequest$1, AddLineItemsToDraftOrderResponse & AddLineItemsToDraftOrderResponseNonNullableFields, AddLineItemsToDraftOrderResponse$1 & AddLineItemsToDraftOrderResponseNonNullableFields$1>;
25810
- declare function updateLineItems(): __PublicMethodMetaInfo$e<'POST', {
25820
+ declare function updateLineItems(): __PublicMethodMetaInfo$g<'POST', {
25811
25821
  draftOrderId: string;
25812
25822
  }, UpdateLineItemsRequest, UpdateLineItemsRequest$1, UpdateLineItemsResponse & UpdateLineItemsResponseNonNullableFields, UpdateLineItemsResponse$1 & UpdateLineItemsResponseNonNullableFields$1>;
25813
- declare function setDiscounts(): __PublicMethodMetaInfo$e<'POST', {
25823
+ declare function setDiscounts(): __PublicMethodMetaInfo$g<'POST', {
25814
25824
  draftOrderId: string;
25815
25825
  }, SetDiscountsRequest, SetDiscountsRequest$1, SetDiscountsResponse & SetDiscountsResponseNonNullableFields, SetDiscountsResponse$1 & SetDiscountsResponseNonNullableFields$1>;
25816
- declare function createCustomDiscounts(): __PublicMethodMetaInfo$e<'POST', {
25826
+ declare function createCustomDiscounts(): __PublicMethodMetaInfo$g<'POST', {
25817
25827
  draftOrderId: string;
25818
25828
  }, CreateCustomDiscountsRequest, CreateCustomDiscountsRequest$1, CreateCustomDiscountsResponse & CreateCustomDiscountsResponseNonNullableFields, CreateCustomDiscountsResponse$1 & CreateCustomDiscountsResponseNonNullableFields$1>;
25819
- declare function deleteCustomDiscounts(): __PublicMethodMetaInfo$e<'POST', {
25829
+ declare function deleteCustomDiscounts(): __PublicMethodMetaInfo$g<'POST', {
25820
25830
  draftOrderId: string;
25821
25831
  }, DeleteCustomDiscountsRequest, DeleteCustomDiscountsRequest$1, DeleteCustomDiscountsResponse & DeleteCustomDiscountsResponseNonNullableFields, DeleteCustomDiscountsResponse$1 & DeleteCustomDiscountsResponseNonNullableFields$1>;
25822
- declare function setAdditionalFees(): __PublicMethodMetaInfo$e<'POST', {
25832
+ declare function setAdditionalFees(): __PublicMethodMetaInfo$g<'POST', {
25823
25833
  draftOrderId: string;
25824
25834
  }, SetAdditionalFeesRequest, SetAdditionalFeesRequest$1, SetAdditionalFeesResponse & SetAdditionalFeesResponseNonNullableFields, SetAdditionalFeesResponse$1 & SetAdditionalFeesResponseNonNullableFields$1>;
25825
- declare function createCustomAdditionalFees(): __PublicMethodMetaInfo$e<'POST', {
25835
+ declare function createCustomAdditionalFees(): __PublicMethodMetaInfo$g<'POST', {
25826
25836
  draftOrderId: string;
25827
25837
  }, CreateCustomAdditionalFeesRequest, CreateCustomAdditionalFeesRequest$1, CreateCustomAdditionalFeesResponse & CreateCustomAdditionalFeesResponseNonNullableFields, CreateCustomAdditionalFeesResponse$1 & CreateCustomAdditionalFeesResponseNonNullableFields$1>;
25828
- declare function deleteCustomAdditionalFees(): __PublicMethodMetaInfo$e<'POST', {
25838
+ declare function deleteCustomAdditionalFees(): __PublicMethodMetaInfo$g<'POST', {
25829
25839
  draftOrderId: string;
25830
25840
  }, DeleteCustomAdditionalFeesRequest, DeleteCustomAdditionalFeesRequest$1, DeleteCustomAdditionalFeesResponse & DeleteCustomAdditionalFeesResponseNonNullableFields, DeleteCustomAdditionalFeesResponse$1 & DeleteCustomAdditionalFeesResponseNonNullableFields$1>;
25831
- declare function setShippingInfo(): __PublicMethodMetaInfo$e<'PUT', {}, SetShippingInfoRequest, SetShippingInfoRequest$1, SetShippingInfoResponse & SetShippingInfoResponseNonNullableFields, SetShippingInfoResponse$1 & SetShippingInfoResponseNonNullableFields$1>;
25832
- declare function setBuyerInfo(): __PublicMethodMetaInfo$e<'PUT', {}, SetBuyerInfoRequest, SetBuyerInfoRequest$1, SetBuyerInfoResponse & SetBuyerInfoResponseNonNullableFields, SetBuyerInfoResponse$1 & SetBuyerInfoResponseNonNullableFields$1>;
25833
- declare function setRecipientInfo(): __PublicMethodMetaInfo$e<'PUT', {}, SetRecipientInfoRequest, SetRecipientInfoRequest$1, SetRecipientInfoResponse & SetRecipientInfoResponseNonNullableFields, SetRecipientInfoResponse$1 & SetRecipientInfoResponseNonNullableFields$1>;
25834
- declare function setBillingInfo(): __PublicMethodMetaInfo$e<'PUT', {}, SetBillingInfoRequest, SetBillingInfoRequest$1, SetBillingInfoResponse & SetBillingInfoResponseNonNullableFields, SetBillingInfoResponse$1 & SetBillingInfoResponseNonNullableFields$1>;
25835
- declare function getDraftOrder(): __PublicMethodMetaInfo$e<'GET', {
25841
+ declare function setShippingInfo(): __PublicMethodMetaInfo$g<'PUT', {}, SetShippingInfoRequest, SetShippingInfoRequest$1, SetShippingInfoResponse & SetShippingInfoResponseNonNullableFields, SetShippingInfoResponse$1 & SetShippingInfoResponseNonNullableFields$1>;
25842
+ declare function setBuyerInfo(): __PublicMethodMetaInfo$g<'PUT', {}, SetBuyerInfoRequest, SetBuyerInfoRequest$1, SetBuyerInfoResponse & SetBuyerInfoResponseNonNullableFields, SetBuyerInfoResponse$1 & SetBuyerInfoResponseNonNullableFields$1>;
25843
+ declare function setRecipientInfo(): __PublicMethodMetaInfo$g<'PUT', {}, SetRecipientInfoRequest, SetRecipientInfoRequest$1, SetRecipientInfoResponse & SetRecipientInfoResponseNonNullableFields, SetRecipientInfoResponse$1 & SetRecipientInfoResponseNonNullableFields$1>;
25844
+ declare function setBillingInfo(): __PublicMethodMetaInfo$g<'PUT', {}, SetBillingInfoRequest, SetBillingInfoRequest$1, SetBillingInfoResponse & SetBillingInfoResponseNonNullableFields, SetBillingInfoResponse$1 & SetBillingInfoResponseNonNullableFields$1>;
25845
+ declare function getDraftOrder(): __PublicMethodMetaInfo$g<'GET', {
25836
25846
  draftOrderId: string;
25837
25847
  }, GetDraftOrderRequest, GetDraftOrderRequest$1, GetDraftOrderResponse & GetDraftOrderResponseNonNullableFields, GetDraftOrderResponse$1 & GetDraftOrderResponseNonNullableFields$1>;
25838
- declare function getOrderDraftabilityStatus(): __PublicMethodMetaInfo$e<'GET', {
25848
+ declare function getOrderDraftabilityStatus(): __PublicMethodMetaInfo$g<'GET', {
25839
25849
  orderId: string;
25840
25850
  }, GetOrderDraftabilityStatusRequest, GetOrderDraftabilityStatusRequest$1, GetOrderDraftabilityStatusResponse & GetOrderDraftabilityStatusResponseNonNullableFields, GetOrderDraftabilityStatusResponse$1 & GetOrderDraftabilityStatusResponseNonNullableFields$1>;
25841
- declare function commitDraftOrder(): __PublicMethodMetaInfo$e<'POST', {
25851
+ declare function commitDraftOrder(): __PublicMethodMetaInfo$g<'POST', {
25842
25852
  draftOrderId: string;
25843
25853
  }, CommitDraftOrderRequest, CommitDraftOrderRequest$1, CommitDraftOrderResponse & CommitDraftOrderResponseNonNullableFields, CommitDraftOrderResponse$1 & CommitDraftOrderResponseNonNullableFields$1>;
25844
- declare function createOrderFromDraft(): __PublicMethodMetaInfo$e<'POST', {
25854
+ declare function createOrderFromDraft(): __PublicMethodMetaInfo$g<'POST', {
25845
25855
  draftOrderId: string;
25846
25856
  }, CreateOrderFromDraftRequest, CreateOrderFromDraftRequest$1, CreateOrderFromDraftResponse & CreateOrderFromDraftResponseNonNullableFields, CreateOrderFromDraftResponse$1 & CreateOrderFromDraftResponseNonNullableFields$1>;
25847
- declare function deleteDraftOrder(): __PublicMethodMetaInfo$e<'DELETE', {
25857
+ declare function deleteDraftOrder(): __PublicMethodMetaInfo$g<'DELETE', {
25848
25858
  draftOrderId: string;
25849
25859
  }, DeleteDraftOrderRequest, DeleteDraftOrderRequest$1, DeleteDraftOrderResponse, DeleteDraftOrderResponse$1>;
25850
- declare function queryDraftOrders(): __PublicMethodMetaInfo$e<'POST', {}, QueryDraftOrdersRequest, QueryDraftOrdersRequest$1, QueryDraftOrdersResponse & QueryDraftOrdersResponseNonNullableFields, QueryDraftOrdersResponse$1 & QueryDraftOrdersResponseNonNullableFields$1>;
25860
+ declare function queryDraftOrders(): __PublicMethodMetaInfo$g<'POST', {}, QueryDraftOrdersRequest, QueryDraftOrdersRequest$1, QueryDraftOrdersResponse & QueryDraftOrdersResponseNonNullableFields, QueryDraftOrdersResponse$1 & QueryDraftOrdersResponseNonNullableFields$1>;
25851
25861
 
25852
- declare const meta$e_addLineItemsToDraftOrder: typeof addLineItemsToDraftOrder;
25853
- declare const meta$e_commitDraftOrder: typeof commitDraftOrder;
25854
- declare const meta$e_createCustomAdditionalFees: typeof createCustomAdditionalFees;
25855
- declare const meta$e_createCustomDiscounts: typeof createCustomDiscounts;
25856
- declare const meta$e_createDraftOrder: typeof createDraftOrder;
25857
- declare const meta$e_createEmptyDraftOrder: typeof createEmptyDraftOrder;
25858
- declare const meta$e_createOrderFromDraft: typeof createOrderFromDraft;
25859
- declare const meta$e_deleteCustomAdditionalFees: typeof deleteCustomAdditionalFees;
25860
- declare const meta$e_deleteCustomDiscounts: typeof deleteCustomDiscounts;
25861
- declare const meta$e_deleteDraftOrder: typeof deleteDraftOrder;
25862
- declare const meta$e_getDraftOrder: typeof getDraftOrder;
25863
- declare const meta$e_getOrderDraftabilityStatus: typeof getOrderDraftabilityStatus;
25864
- declare const meta$e_queryDraftOrders: typeof queryDraftOrders;
25865
- declare const meta$e_setAdditionalFees: typeof setAdditionalFees;
25866
- declare const meta$e_setBillingInfo: typeof setBillingInfo;
25867
- declare const meta$e_setBuyerInfo: typeof setBuyerInfo;
25868
- declare const meta$e_setDiscounts: typeof setDiscounts;
25869
- declare const meta$e_setRecipientInfo: typeof setRecipientInfo;
25870
- declare const meta$e_setShippingInfo: typeof setShippingInfo;
25871
- declare const meta$e_updateLineItems: typeof updateLineItems;
25872
- declare namespace meta$e {
25873
- export { type __PublicMethodMetaInfo$e as __PublicMethodMetaInfo, meta$e_addLineItemsToDraftOrder as addLineItemsToDraftOrder, meta$e_commitDraftOrder as commitDraftOrder, meta$e_createCustomAdditionalFees as createCustomAdditionalFees, meta$e_createCustomDiscounts as createCustomDiscounts, meta$e_createDraftOrder as createDraftOrder, meta$e_createEmptyDraftOrder as createEmptyDraftOrder, meta$e_createOrderFromDraft as createOrderFromDraft, meta$e_deleteCustomAdditionalFees as deleteCustomAdditionalFees, meta$e_deleteCustomDiscounts as deleteCustomDiscounts, meta$e_deleteDraftOrder as deleteDraftOrder, meta$e_getDraftOrder as getDraftOrder, meta$e_getOrderDraftabilityStatus as getOrderDraftabilityStatus, meta$e_queryDraftOrders as queryDraftOrders, meta$e_setAdditionalFees as setAdditionalFees, meta$e_setBillingInfo as setBillingInfo, meta$e_setBuyerInfo as setBuyerInfo, meta$e_setDiscounts as setDiscounts, meta$e_setRecipientInfo as setRecipientInfo, meta$e_setShippingInfo as setShippingInfo, meta$e_updateLineItems as updateLineItems };
25862
+ declare const meta$g_addLineItemsToDraftOrder: typeof addLineItemsToDraftOrder;
25863
+ declare const meta$g_commitDraftOrder: typeof commitDraftOrder;
25864
+ declare const meta$g_createCustomAdditionalFees: typeof createCustomAdditionalFees;
25865
+ declare const meta$g_createCustomDiscounts: typeof createCustomDiscounts;
25866
+ declare const meta$g_createDraftOrder: typeof createDraftOrder;
25867
+ declare const meta$g_createEmptyDraftOrder: typeof createEmptyDraftOrder;
25868
+ declare const meta$g_createOrderFromDraft: typeof createOrderFromDraft;
25869
+ declare const meta$g_deleteCustomAdditionalFees: typeof deleteCustomAdditionalFees;
25870
+ declare const meta$g_deleteCustomDiscounts: typeof deleteCustomDiscounts;
25871
+ declare const meta$g_deleteDraftOrder: typeof deleteDraftOrder;
25872
+ declare const meta$g_getDraftOrder: typeof getDraftOrder;
25873
+ declare const meta$g_getOrderDraftabilityStatus: typeof getOrderDraftabilityStatus;
25874
+ declare const meta$g_queryDraftOrders: typeof queryDraftOrders;
25875
+ declare const meta$g_setAdditionalFees: typeof setAdditionalFees;
25876
+ declare const meta$g_setBillingInfo: typeof setBillingInfo;
25877
+ declare const meta$g_setBuyerInfo: typeof setBuyerInfo;
25878
+ declare const meta$g_setDiscounts: typeof setDiscounts;
25879
+ declare const meta$g_setRecipientInfo: typeof setRecipientInfo;
25880
+ declare const meta$g_setShippingInfo: typeof setShippingInfo;
25881
+ declare const meta$g_updateLineItems: typeof updateLineItems;
25882
+ declare namespace meta$g {
25883
+ export { type __PublicMethodMetaInfo$g as __PublicMethodMetaInfo, meta$g_addLineItemsToDraftOrder as addLineItemsToDraftOrder, meta$g_commitDraftOrder as commitDraftOrder, meta$g_createCustomAdditionalFees as createCustomAdditionalFees, meta$g_createCustomDiscounts as createCustomDiscounts, meta$g_createDraftOrder as createDraftOrder, meta$g_createEmptyDraftOrder as createEmptyDraftOrder, meta$g_createOrderFromDraft as createOrderFromDraft, meta$g_deleteCustomAdditionalFees as deleteCustomAdditionalFees, meta$g_deleteCustomDiscounts as deleteCustomDiscounts, meta$g_deleteDraftOrder as deleteDraftOrder, meta$g_getDraftOrder as getDraftOrder, meta$g_getOrderDraftabilityStatus as getOrderDraftabilityStatus, meta$g_queryDraftOrders as queryDraftOrders, meta$g_setAdditionalFees as setAdditionalFees, meta$g_setBillingInfo as setBillingInfo, meta$g_setBuyerInfo as setBuyerInfo, meta$g_setDiscounts as setDiscounts, meta$g_setRecipientInfo as setRecipientInfo, meta$g_setShippingInfo as setShippingInfo, meta$g_updateLineItems as updateLineItems };
25874
25884
  }
25875
25885
 
25876
25886
  interface OrderWithFulfillments$1 {
@@ -26316,7 +26326,7 @@ interface BulkCreateFulfillmentResponseNonNullableFields {
26316
26326
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$4;
26317
26327
  }
26318
26328
 
26319
- type __PublicMethodMetaInfo$d<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
26329
+ type __PublicMethodMetaInfo$f<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
26320
26330
  getUrl: (context: any) => string;
26321
26331
  httpMethod: K;
26322
26332
  path: string;
@@ -26326,31 +26336,31 @@ type __PublicMethodMetaInfo$d<K = string, M = unknown, T = unknown, S = unknown,
26326
26336
  __responseType: Q;
26327
26337
  __originalResponseType: R;
26328
26338
  };
26329
- declare function listFulfillmentsForSingleOrder(): __PublicMethodMetaInfo$d<'GET', {
26339
+ declare function listFulfillmentsForSingleOrder(): __PublicMethodMetaInfo$f<'GET', {
26330
26340
  orderId: string;
26331
26341
  }, ListFulfillmentsForSingleOrderRequest, ListFulfillmentsForSingleOrderRequest$1, ListFulfillmentsForSingleOrderResponse & ListFulfillmentsForSingleOrderResponseNonNullableFields, ListFulfillmentsForSingleOrderResponse$1 & ListFulfillmentsForSingleOrderResponseNonNullableFields$1>;
26332
- declare function listFulfillmentsForMultipleOrders(): __PublicMethodMetaInfo$d<'POST', {}, ListFulfillmentsForMultipleOrdersRequest, ListFulfillmentsForMultipleOrdersRequest$1, ListFulfillmentsForMultipleOrdersResponse & ListFulfillmentsForMultipleOrdersResponseNonNullableFields, ListFulfillmentsForMultipleOrdersResponse$1 & ListFulfillmentsForMultipleOrdersResponseNonNullableFields$1>;
26333
- declare function createFulfillment(): __PublicMethodMetaInfo$d<'POST', {
26342
+ declare function listFulfillmentsForMultipleOrders(): __PublicMethodMetaInfo$f<'POST', {}, ListFulfillmentsForMultipleOrdersRequest, ListFulfillmentsForMultipleOrdersRequest$1, ListFulfillmentsForMultipleOrdersResponse & ListFulfillmentsForMultipleOrdersResponseNonNullableFields, ListFulfillmentsForMultipleOrdersResponse$1 & ListFulfillmentsForMultipleOrdersResponseNonNullableFields$1>;
26343
+ declare function createFulfillment(): __PublicMethodMetaInfo$f<'POST', {
26334
26344
  orderId: string;
26335
26345
  }, CreateFulfillmentRequest, CreateFulfillmentRequest$1, CreateFulfillmentResponse & CreateFulfillmentResponseNonNullableFields, CreateFulfillmentResponse$1 & CreateFulfillmentResponseNonNullableFields$1>;
26336
- declare function updateFulfillment(): __PublicMethodMetaInfo$d<'PATCH', {
26346
+ declare function updateFulfillment(): __PublicMethodMetaInfo$f<'PATCH', {
26337
26347
  fulfillmentId: string;
26338
26348
  orderId: string;
26339
26349
  }, UpdateFulfillmentRequest, UpdateFulfillmentRequest$1, UpdateFulfillmentResponse & UpdateFulfillmentResponseNonNullableFields, UpdateFulfillmentResponse$1 & UpdateFulfillmentResponseNonNullableFields$1>;
26340
- declare function deleteFulfillment(): __PublicMethodMetaInfo$d<'DELETE', {
26350
+ declare function deleteFulfillment(): __PublicMethodMetaInfo$f<'DELETE', {
26341
26351
  fulfillmentId: string;
26342
26352
  orderId: string;
26343
26353
  }, DeleteFulfillmentRequest, DeleteFulfillmentRequest$1, DeleteFulfillmentResponse & DeleteFulfillmentResponseNonNullableFields, DeleteFulfillmentResponse$1 & DeleteFulfillmentResponseNonNullableFields$1>;
26344
- declare function bulkCreateFulfillments(): __PublicMethodMetaInfo$d<'POST', {}, BulkCreateFulfillmentRequest, BulkCreateFulfillmentRequest$1, BulkCreateFulfillmentResponse & BulkCreateFulfillmentResponseNonNullableFields, BulkCreateFulfillmentResponse$1 & BulkCreateFulfillmentResponseNonNullableFields$1>;
26354
+ declare function bulkCreateFulfillments(): __PublicMethodMetaInfo$f<'POST', {}, BulkCreateFulfillmentRequest, BulkCreateFulfillmentRequest$1, BulkCreateFulfillmentResponse & BulkCreateFulfillmentResponseNonNullableFields, BulkCreateFulfillmentResponse$1 & BulkCreateFulfillmentResponseNonNullableFields$1>;
26345
26355
 
26346
- declare const meta$d_bulkCreateFulfillments: typeof bulkCreateFulfillments;
26347
- declare const meta$d_createFulfillment: typeof createFulfillment;
26348
- declare const meta$d_deleteFulfillment: typeof deleteFulfillment;
26349
- declare const meta$d_listFulfillmentsForMultipleOrders: typeof listFulfillmentsForMultipleOrders;
26350
- declare const meta$d_listFulfillmentsForSingleOrder: typeof listFulfillmentsForSingleOrder;
26351
- declare const meta$d_updateFulfillment: typeof updateFulfillment;
26352
- declare namespace meta$d {
26353
- export { type __PublicMethodMetaInfo$d as __PublicMethodMetaInfo, meta$d_bulkCreateFulfillments as bulkCreateFulfillments, meta$d_createFulfillment as createFulfillment, meta$d_deleteFulfillment as deleteFulfillment, meta$d_listFulfillmentsForMultipleOrders as listFulfillmentsForMultipleOrders, meta$d_listFulfillmentsForSingleOrder as listFulfillmentsForSingleOrder, meta$d_updateFulfillment as updateFulfillment };
26356
+ declare const meta$f_bulkCreateFulfillments: typeof bulkCreateFulfillments;
26357
+ declare const meta$f_createFulfillment: typeof createFulfillment;
26358
+ declare const meta$f_deleteFulfillment: typeof deleteFulfillment;
26359
+ declare const meta$f_listFulfillmentsForMultipleOrders: typeof listFulfillmentsForMultipleOrders;
26360
+ declare const meta$f_listFulfillmentsForSingleOrder: typeof listFulfillmentsForSingleOrder;
26361
+ declare const meta$f_updateFulfillment: typeof updateFulfillment;
26362
+ declare namespace meta$f {
26363
+ export { type __PublicMethodMetaInfo$f as __PublicMethodMetaInfo, meta$f_bulkCreateFulfillments as bulkCreateFulfillments, meta$f_createFulfillment as createFulfillment, meta$f_deleteFulfillment as deleteFulfillment, meta$f_listFulfillmentsForMultipleOrders as listFulfillmentsForMultipleOrders, meta$f_listFulfillmentsForSingleOrder as listFulfillmentsForSingleOrder, meta$f_updateFulfillment as updateFulfillment };
26354
26364
  }
26355
26365
 
26356
26366
  interface GiftCard$3 {
@@ -26539,7 +26549,7 @@ interface RedeemGiftCardResponseNonNullableFields {
26539
26549
  transactionId: string;
26540
26550
  }
26541
26551
 
26542
- type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
26552
+ type __PublicMethodMetaInfo$e<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
26543
26553
  getUrl: (context: any) => string;
26544
26554
  httpMethod: K;
26545
26555
  path: string;
@@ -26549,17 +26559,17 @@ type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown,
26549
26559
  __responseType: Q;
26550
26560
  __originalResponseType: R;
26551
26561
  };
26552
- declare function getGiftCard(): __PublicMethodMetaInfo$c<'POST', {
26562
+ declare function getGiftCard(): __PublicMethodMetaInfo$e<'POST', {
26553
26563
  code: string;
26554
26564
  }, GetGiftCardRequest, GetGiftCardRequest$1, GetGiftCardResponse & GetGiftCardResponseNonNullableFields, GetGiftCardResponse$1 & GetGiftCardResponseNonNullableFields$1>;
26555
- declare function redeemGiftCard(): __PublicMethodMetaInfo$c<'POST', {}, RedeemGiftCardRequest, RedeemGiftCardRequest$1, RedeemGiftCardResponse & RedeemGiftCardResponseNonNullableFields, RedeemGiftCardResponse$1 & RedeemGiftCardResponseNonNullableFields$1>;
26556
- declare function voidTransaction(): __PublicMethodMetaInfo$c<'POST', {}, VoidTransactionRequest, VoidTransactionRequest$1, VoidTransactionResponse, VoidTransactionResponse$1>;
26565
+ declare function redeemGiftCard(): __PublicMethodMetaInfo$e<'POST', {}, RedeemGiftCardRequest, RedeemGiftCardRequest$1, RedeemGiftCardResponse & RedeemGiftCardResponseNonNullableFields, RedeemGiftCardResponse$1 & RedeemGiftCardResponseNonNullableFields$1>;
26566
+ declare function voidTransaction(): __PublicMethodMetaInfo$e<'POST', {}, VoidTransactionRequest, VoidTransactionRequest$1, VoidTransactionResponse, VoidTransactionResponse$1>;
26557
26567
 
26558
- declare const meta$c_getGiftCard: typeof getGiftCard;
26559
- declare const meta$c_redeemGiftCard: typeof redeemGiftCard;
26560
- declare const meta$c_voidTransaction: typeof voidTransaction;
26561
- declare namespace meta$c {
26562
- export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_getGiftCard as getGiftCard, meta$c_redeemGiftCard as redeemGiftCard, meta$c_voidTransaction as voidTransaction };
26568
+ declare const meta$e_getGiftCard: typeof getGiftCard;
26569
+ declare const meta$e_redeemGiftCard: typeof redeemGiftCard;
26570
+ declare const meta$e_voidTransaction: typeof voidTransaction;
26571
+ declare namespace meta$e {
26572
+ export { type __PublicMethodMetaInfo$e as __PublicMethodMetaInfo, meta$e_getGiftCard as getGiftCard, meta$e_redeemGiftCard as redeemGiftCard, meta$e_voidTransaction as voidTransaction };
26563
26573
  }
26564
26574
 
26565
26575
  interface LocalDeliveryOption$1 extends LocalDeliveryOptionConfigOneOf$1 {
@@ -26788,13 +26798,13 @@ interface ListLocalDeliveryOptionsResponse$1 {
26788
26798
  }
26789
26799
  interface QueryLocalDeliveryOptionsRequest$1 {
26790
26800
  /** WQL expression */
26791
- query: QueryV2$3;
26801
+ query: QueryV2$5;
26792
26802
  }
26793
- interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
26803
+ interface QueryV2$5 extends QueryV2PagingMethodOneOf$5 {
26794
26804
  /** Paging options to limit and skip the number of items. */
26795
- paging?: Paging$3;
26805
+ paging?: Paging$5;
26796
26806
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
26797
- cursorPaging?: CursorPaging$d;
26807
+ cursorPaging?: CursorPaging$f;
26798
26808
  /**
26799
26809
  * Filter object.
26800
26810
  *
@@ -26806,36 +26816,36 @@ interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
26806
26816
  *
26807
26817
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
26808
26818
  */
26809
- sort?: Sorting$d[];
26819
+ sort?: Sorting$f[];
26810
26820
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
26811
26821
  fields?: string[];
26812
26822
  /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
26813
26823
  fieldsets?: string[];
26814
26824
  }
26815
26825
  /** @oneof */
26816
- interface QueryV2PagingMethodOneOf$3 {
26826
+ interface QueryV2PagingMethodOneOf$5 {
26817
26827
  /** Paging options to limit and skip the number of items. */
26818
- paging?: Paging$3;
26828
+ paging?: Paging$5;
26819
26829
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
26820
- cursorPaging?: CursorPaging$d;
26830
+ cursorPaging?: CursorPaging$f;
26821
26831
  }
26822
- interface Sorting$d {
26832
+ interface Sorting$f {
26823
26833
  /** Name of the field to sort by. */
26824
26834
  fieldName?: string;
26825
26835
  /** Sort order. */
26826
- order?: SortOrder$d;
26836
+ order?: SortOrder$f;
26827
26837
  }
26828
- declare enum SortOrder$d {
26838
+ declare enum SortOrder$f {
26829
26839
  ASC = "ASC",
26830
26840
  DESC = "DESC"
26831
26841
  }
26832
- interface Paging$3 {
26842
+ interface Paging$5 {
26833
26843
  /** Number of items to load. */
26834
26844
  limit?: number | null;
26835
26845
  /** Number of items to skip in the current sort order. */
26836
26846
  offset?: number | null;
26837
26847
  }
26838
- interface CursorPaging$d {
26848
+ interface CursorPaging$f {
26839
26849
  /** Maximum number of items to return in the results. */
26840
26850
  limit?: number | null;
26841
26851
  /**
@@ -26856,7 +26866,7 @@ interface CursorPagingMetadata$d {
26856
26866
  /** Number of items returned in current page. */
26857
26867
  count?: number | null;
26858
26868
  /** Cursor strings that point to the next page, previous page, or both. */
26859
- cursors?: Cursors$d;
26869
+ cursors?: Cursors$f;
26860
26870
  /**
26861
26871
  * Whether there are more pages to retrieve following the current page.
26862
26872
  *
@@ -26865,7 +26875,7 @@ interface CursorPagingMetadata$d {
26865
26875
  */
26866
26876
  hasNext?: boolean | null;
26867
26877
  }
26868
- interface Cursors$d {
26878
+ interface Cursors$f {
26869
26879
  /** Cursor string pointing to the next page in the list of results. */
26870
26880
  next?: string | null;
26871
26881
  /** Cursor pointing to the previous page in the list of results. */
@@ -27228,13 +27238,13 @@ interface ListLocalDeliveryOptionsResponse {
27228
27238
  }
27229
27239
  interface QueryLocalDeliveryOptionsRequest {
27230
27240
  /** WQL expression */
27231
- query: QueryV2$2;
27241
+ query: QueryV2$4;
27232
27242
  }
27233
- interface QueryV2$2 extends QueryV2PagingMethodOneOf$2 {
27243
+ interface QueryV2$4 extends QueryV2PagingMethodOneOf$4 {
27234
27244
  /** Paging options to limit and skip the number of items. */
27235
- paging?: Paging$2;
27245
+ paging?: Paging$4;
27236
27246
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
27237
- cursorPaging?: CursorPaging$c;
27247
+ cursorPaging?: CursorPaging$e;
27238
27248
  /**
27239
27249
  * Filter object.
27240
27250
  *
@@ -27246,36 +27256,36 @@ interface QueryV2$2 extends QueryV2PagingMethodOneOf$2 {
27246
27256
  *
27247
27257
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
27248
27258
  */
27249
- sort?: Sorting$c[];
27259
+ sort?: Sorting$e[];
27250
27260
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
27251
27261
  fields?: string[];
27252
27262
  /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
27253
27263
  fieldsets?: string[];
27254
27264
  }
27255
27265
  /** @oneof */
27256
- interface QueryV2PagingMethodOneOf$2 {
27266
+ interface QueryV2PagingMethodOneOf$4 {
27257
27267
  /** Paging options to limit and skip the number of items. */
27258
- paging?: Paging$2;
27268
+ paging?: Paging$4;
27259
27269
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
27260
- cursorPaging?: CursorPaging$c;
27270
+ cursorPaging?: CursorPaging$e;
27261
27271
  }
27262
- interface Sorting$c {
27272
+ interface Sorting$e {
27263
27273
  /** Name of the field to sort by. */
27264
27274
  fieldName?: string;
27265
27275
  /** Sort order. */
27266
- order?: SortOrder$c;
27276
+ order?: SortOrder$e;
27267
27277
  }
27268
- declare enum SortOrder$c {
27278
+ declare enum SortOrder$e {
27269
27279
  ASC = "ASC",
27270
27280
  DESC = "DESC"
27271
27281
  }
27272
- interface Paging$2 {
27282
+ interface Paging$4 {
27273
27283
  /** Number of items to load. */
27274
27284
  limit?: number | null;
27275
27285
  /** Number of items to skip in the current sort order. */
27276
27286
  offset?: number | null;
27277
27287
  }
27278
- interface CursorPaging$c {
27288
+ interface CursorPaging$e {
27279
27289
  /** Maximum number of items to return in the results. */
27280
27290
  limit?: number | null;
27281
27291
  /**
@@ -27296,7 +27306,7 @@ interface CursorPagingMetadata$c {
27296
27306
  /** Number of items returned in current page. */
27297
27307
  count?: number | null;
27298
27308
  /** Cursor strings that point to the next page, previous page, or both. */
27299
- cursors?: Cursors$c;
27309
+ cursors?: Cursors$e;
27300
27310
  /**
27301
27311
  * Whether there are more pages to retrieve following the current page.
27302
27312
  *
@@ -27305,7 +27315,7 @@ interface CursorPagingMetadata$c {
27305
27315
  */
27306
27316
  hasNext?: boolean | null;
27307
27317
  }
27308
- interface Cursors$c {
27318
+ interface Cursors$e {
27309
27319
  /** Cursor string pointing to the next page in the list of results. */
27310
27320
  next?: string | null;
27311
27321
  /** Cursor pointing to the previous page in the list of results. */
@@ -27442,7 +27452,7 @@ interface RemoveDeliveryRegionResponseNonNullableFields$2 {
27442
27452
  localDeliveryOption?: LocalDeliveryOptionNonNullableFields;
27443
27453
  }
27444
27454
 
27445
- type __PublicMethodMetaInfo$b<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
27455
+ type __PublicMethodMetaInfo$d<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
27446
27456
  getUrl: (context: any) => string;
27447
27457
  httpMethod: K;
27448
27458
  path: string;
@@ -27452,35 +27462,35 @@ type __PublicMethodMetaInfo$b<K = string, M = unknown, T = unknown, S = unknown,
27452
27462
  __responseType: Q;
27453
27463
  __originalResponseType: R;
27454
27464
  };
27455
- declare function createLocalDeliveryOption(): __PublicMethodMetaInfo$b<'POST', {}, CreateLocalDeliveryOptionRequest, CreateLocalDeliveryOptionRequest$1, CreateLocalDeliveryOptionResponse & CreateLocalDeliveryOptionResponseNonNullableFields, CreateLocalDeliveryOptionResponse$1 & CreateLocalDeliveryOptionResponseNonNullableFields$1>;
27456
- declare function getLocalDeliveryOption(): __PublicMethodMetaInfo$b<'GET', {
27465
+ declare function createLocalDeliveryOption(): __PublicMethodMetaInfo$d<'POST', {}, CreateLocalDeliveryOptionRequest, CreateLocalDeliveryOptionRequest$1, CreateLocalDeliveryOptionResponse & CreateLocalDeliveryOptionResponseNonNullableFields, CreateLocalDeliveryOptionResponse$1 & CreateLocalDeliveryOptionResponseNonNullableFields$1>;
27466
+ declare function getLocalDeliveryOption(): __PublicMethodMetaInfo$d<'GET', {
27457
27467
  localDeliveryOptionId: string;
27458
27468
  }, GetLocalDeliveryOptionRequest, GetLocalDeliveryOptionRequest$1, GetLocalDeliveryOptionResponse & GetLocalDeliveryOptionResponseNonNullableFields, GetLocalDeliveryOptionResponse$1 & GetLocalDeliveryOptionResponseNonNullableFields$1>;
27459
- declare function listLocalDeliveryOptions(): __PublicMethodMetaInfo$b<'GET', {}, ListLocalDeliveryOptionsRequest, ListLocalDeliveryOptionsRequest$1, ListLocalDeliveryOptionsResponse & ListLocalDeliveryOptionsResponseNonNullableFields, ListLocalDeliveryOptionsResponse$1 & ListLocalDeliveryOptionsResponseNonNullableFields$1>;
27460
- declare function queryLocalDeliveryOptions(): __PublicMethodMetaInfo$b<'POST', {}, QueryLocalDeliveryOptionsRequest, QueryLocalDeliveryOptionsRequest$1, QueryLocalDeliveryOptionsResponse & QueryLocalDeliveryOptionsResponseNonNullableFields, QueryLocalDeliveryOptionsResponse$1 & QueryLocalDeliveryOptionsResponseNonNullableFields$1>;
27461
- declare function updateLocalDeliveryOption(): __PublicMethodMetaInfo$b<'PATCH', {
27469
+ declare function listLocalDeliveryOptions(): __PublicMethodMetaInfo$d<'GET', {}, ListLocalDeliveryOptionsRequest, ListLocalDeliveryOptionsRequest$1, ListLocalDeliveryOptionsResponse & ListLocalDeliveryOptionsResponseNonNullableFields, ListLocalDeliveryOptionsResponse$1 & ListLocalDeliveryOptionsResponseNonNullableFields$1>;
27470
+ declare function queryLocalDeliveryOptions(): __PublicMethodMetaInfo$d<'POST', {}, QueryLocalDeliveryOptionsRequest, QueryLocalDeliveryOptionsRequest$1, QueryLocalDeliveryOptionsResponse & QueryLocalDeliveryOptionsResponseNonNullableFields, QueryLocalDeliveryOptionsResponse$1 & QueryLocalDeliveryOptionsResponseNonNullableFields$1>;
27471
+ declare function updateLocalDeliveryOption(): __PublicMethodMetaInfo$d<'PATCH', {
27462
27472
  localDeliveryOptionId: string;
27463
27473
  }, UpdateLocalDeliveryOptionRequest, UpdateLocalDeliveryOptionRequest$1, UpdateLocalDeliveryOptionResponse & UpdateLocalDeliveryOptionResponseNonNullableFields, UpdateLocalDeliveryOptionResponse$1 & UpdateLocalDeliveryOptionResponseNonNullableFields$1>;
27464
- declare function deleteLocalDeliveryOption(): __PublicMethodMetaInfo$b<'DELETE', {
27474
+ declare function deleteLocalDeliveryOption(): __PublicMethodMetaInfo$d<'DELETE', {
27465
27475
  localDeliveryOptionId: string;
27466
27476
  }, DeleteLocalDeliveryOptionRequest, DeleteLocalDeliveryOptionRequest$1, DeleteLocalDeliveryOptionResponse, DeleteLocalDeliveryOptionResponse$1>;
27467
- declare function bulkCreateLocalDeliveryOption(): __PublicMethodMetaInfo$b<'POST', {}, BulkCreateLocalDeliveryOptionRequest, BulkCreateLocalDeliveryOptionRequest$1, BulkCreateLocalDeliveryOptionResponse & BulkCreateLocalDeliveryOptionResponseNonNullableFields, BulkCreateLocalDeliveryOptionResponse$1 & BulkCreateLocalDeliveryOptionResponseNonNullableFields$1>;
27468
- declare function bulkUpdateLocalDeliveryOption(): __PublicMethodMetaInfo$b<'PATCH', {}, BulkUpdateLocalDeliveryOptionRequest, BulkUpdateLocalDeliveryOptionRequest$1, BulkUpdateLocalDeliveryOptionResponse & BulkUpdateLocalDeliveryOptionResponseNonNullableFields, BulkUpdateLocalDeliveryOptionResponse$1 & BulkUpdateLocalDeliveryOptionResponseNonNullableFields$1>;
27469
- declare function bulkDeleteLocalDeliveryOption(): __PublicMethodMetaInfo$b<'DELETE', {}, BulkDeleteLocalDeliveryOptionRequest, BulkDeleteLocalDeliveryOptionRequest$1, BulkDeleteLocalDeliveryOptionResponse, BulkDeleteLocalDeliveryOptionResponse$1>;
27470
- declare function addDeliveryRegion$1(): __PublicMethodMetaInfo$b<'POST', {}, AddDeliveryRegionRequest$2, AddDeliveryRegionRequest$3, AddDeliveryRegionResponse$2 & AddDeliveryRegionResponseNonNullableFields$2, AddDeliveryRegionResponse$3 & AddDeliveryRegionResponseNonNullableFields$3>;
27471
- declare function removeDeliveryRegion$1(): __PublicMethodMetaInfo$b<'POST', {}, RemoveDeliveryRegionRequest$2, RemoveDeliveryRegionRequest$3, RemoveDeliveryRegionResponse$2 & RemoveDeliveryRegionResponseNonNullableFields$2, RemoveDeliveryRegionResponse$3 & RemoveDeliveryRegionResponseNonNullableFields$3>;
27477
+ declare function bulkCreateLocalDeliveryOption(): __PublicMethodMetaInfo$d<'POST', {}, BulkCreateLocalDeliveryOptionRequest, BulkCreateLocalDeliveryOptionRequest$1, BulkCreateLocalDeliveryOptionResponse & BulkCreateLocalDeliveryOptionResponseNonNullableFields, BulkCreateLocalDeliveryOptionResponse$1 & BulkCreateLocalDeliveryOptionResponseNonNullableFields$1>;
27478
+ declare function bulkUpdateLocalDeliveryOption(): __PublicMethodMetaInfo$d<'PATCH', {}, BulkUpdateLocalDeliveryOptionRequest, BulkUpdateLocalDeliveryOptionRequest$1, BulkUpdateLocalDeliveryOptionResponse & BulkUpdateLocalDeliveryOptionResponseNonNullableFields, BulkUpdateLocalDeliveryOptionResponse$1 & BulkUpdateLocalDeliveryOptionResponseNonNullableFields$1>;
27479
+ declare function bulkDeleteLocalDeliveryOption(): __PublicMethodMetaInfo$d<'DELETE', {}, BulkDeleteLocalDeliveryOptionRequest, BulkDeleteLocalDeliveryOptionRequest$1, BulkDeleteLocalDeliveryOptionResponse, BulkDeleteLocalDeliveryOptionResponse$1>;
27480
+ declare function addDeliveryRegion$1(): __PublicMethodMetaInfo$d<'POST', {}, AddDeliveryRegionRequest$2, AddDeliveryRegionRequest$3, AddDeliveryRegionResponse$2 & AddDeliveryRegionResponseNonNullableFields$2, AddDeliveryRegionResponse$3 & AddDeliveryRegionResponseNonNullableFields$3>;
27481
+ declare function removeDeliveryRegion$1(): __PublicMethodMetaInfo$d<'POST', {}, RemoveDeliveryRegionRequest$2, RemoveDeliveryRegionRequest$3, RemoveDeliveryRegionResponse$2 & RemoveDeliveryRegionResponseNonNullableFields$2, RemoveDeliveryRegionResponse$3 & RemoveDeliveryRegionResponseNonNullableFields$3>;
27472
27482
 
27473
- declare const meta$b_bulkCreateLocalDeliveryOption: typeof bulkCreateLocalDeliveryOption;
27474
- declare const meta$b_bulkDeleteLocalDeliveryOption: typeof bulkDeleteLocalDeliveryOption;
27475
- declare const meta$b_bulkUpdateLocalDeliveryOption: typeof bulkUpdateLocalDeliveryOption;
27476
- declare const meta$b_createLocalDeliveryOption: typeof createLocalDeliveryOption;
27477
- declare const meta$b_deleteLocalDeliveryOption: typeof deleteLocalDeliveryOption;
27478
- declare const meta$b_getLocalDeliveryOption: typeof getLocalDeliveryOption;
27479
- declare const meta$b_listLocalDeliveryOptions: typeof listLocalDeliveryOptions;
27480
- declare const meta$b_queryLocalDeliveryOptions: typeof queryLocalDeliveryOptions;
27481
- declare const meta$b_updateLocalDeliveryOption: typeof updateLocalDeliveryOption;
27482
- declare namespace meta$b {
27483
- export { type __PublicMethodMetaInfo$b as __PublicMethodMetaInfo, addDeliveryRegion$1 as addDeliveryRegion, meta$b_bulkCreateLocalDeliveryOption as bulkCreateLocalDeliveryOption, meta$b_bulkDeleteLocalDeliveryOption as bulkDeleteLocalDeliveryOption, meta$b_bulkUpdateLocalDeliveryOption as bulkUpdateLocalDeliveryOption, meta$b_createLocalDeliveryOption as createLocalDeliveryOption, meta$b_deleteLocalDeliveryOption as deleteLocalDeliveryOption, meta$b_getLocalDeliveryOption as getLocalDeliveryOption, meta$b_listLocalDeliveryOptions as listLocalDeliveryOptions, meta$b_queryLocalDeliveryOptions as queryLocalDeliveryOptions, removeDeliveryRegion$1 as removeDeliveryRegion, meta$b_updateLocalDeliveryOption as updateLocalDeliveryOption };
27483
+ declare const meta$d_bulkCreateLocalDeliveryOption: typeof bulkCreateLocalDeliveryOption;
27484
+ declare const meta$d_bulkDeleteLocalDeliveryOption: typeof bulkDeleteLocalDeliveryOption;
27485
+ declare const meta$d_bulkUpdateLocalDeliveryOption: typeof bulkUpdateLocalDeliveryOption;
27486
+ declare const meta$d_createLocalDeliveryOption: typeof createLocalDeliveryOption;
27487
+ declare const meta$d_deleteLocalDeliveryOption: typeof deleteLocalDeliveryOption;
27488
+ declare const meta$d_getLocalDeliveryOption: typeof getLocalDeliveryOption;
27489
+ declare const meta$d_listLocalDeliveryOptions: typeof listLocalDeliveryOptions;
27490
+ declare const meta$d_queryLocalDeliveryOptions: typeof queryLocalDeliveryOptions;
27491
+ declare const meta$d_updateLocalDeliveryOption: typeof updateLocalDeliveryOption;
27492
+ declare namespace meta$d {
27493
+ export { type __PublicMethodMetaInfo$d as __PublicMethodMetaInfo, addDeliveryRegion$1 as addDeliveryRegion, meta$d_bulkCreateLocalDeliveryOption as bulkCreateLocalDeliveryOption, meta$d_bulkDeleteLocalDeliveryOption as bulkDeleteLocalDeliveryOption, meta$d_bulkUpdateLocalDeliveryOption as bulkUpdateLocalDeliveryOption, meta$d_createLocalDeliveryOption as createLocalDeliveryOption, meta$d_deleteLocalDeliveryOption as deleteLocalDeliveryOption, meta$d_getLocalDeliveryOption as getLocalDeliveryOption, meta$d_listLocalDeliveryOptions as listLocalDeliveryOptions, meta$d_queryLocalDeliveryOptions as queryLocalDeliveryOptions, removeDeliveryRegion$1 as removeDeliveryRegion, meta$d_updateLocalDeliveryOption as updateLocalDeliveryOption };
27484
27494
  }
27485
27495
 
27486
27496
  interface Order$1 {
@@ -27610,7 +27620,7 @@ interface Order$1 {
27610
27620
  *
27611
27621
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
27612
27622
  */
27613
- extendedFields?: ExtendedFields$7;
27623
+ extendedFields?: ExtendedFields$9;
27614
27624
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
27615
27625
  purchaseFlowId?: string | null;
27616
27626
  /**
@@ -27621,6 +27631,11 @@ interface Order$1 {
27621
27631
  * + No shipping option is selected.
27622
27632
  */
27623
27633
  recipientInfo?: AddressWithContact$1;
27634
+ /**
27635
+ * Date and time the order was originally purchased in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
27636
+ * Used for migration from external systems.
27637
+ */
27638
+ purchasedDate?: Date | null;
27624
27639
  }
27625
27640
  interface OrderLineItem$1 {
27626
27641
  /** Line item ID. */
@@ -28594,7 +28609,7 @@ interface AdditionalFee$1 {
28594
28609
  */
28595
28610
  lineItemIds?: string[];
28596
28611
  }
28597
- interface ExtendedFields$7 {
28612
+ interface ExtendedFields$9 {
28598
28613
  /**
28599
28614
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
28600
28615
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -28637,17 +28652,17 @@ interface TagList$1 {
28637
28652
  /** List of tag IDs */
28638
28653
  tagIds?: string[];
28639
28654
  }
28640
- interface Sorting$b {
28655
+ interface Sorting$d {
28641
28656
  /** Name of the field to sort by. */
28642
28657
  fieldName?: string;
28643
28658
  /** Sort order. */
28644
- order?: SortOrder$b;
28659
+ order?: SortOrder$d;
28645
28660
  }
28646
- declare enum SortOrder$b {
28661
+ declare enum SortOrder$d {
28647
28662
  ASC = "ASC",
28648
28663
  DESC = "DESC"
28649
28664
  }
28650
- interface CursorPaging$b {
28665
+ interface CursorPaging$d {
28651
28666
  /** Maximum number of items to return in the results. */
28652
28667
  limit?: number | null;
28653
28668
  /**
@@ -28658,7 +28673,7 @@ interface CursorPaging$b {
28658
28673
  */
28659
28674
  cursor?: string | null;
28660
28675
  }
28661
- interface Cursors$b {
28676
+ interface Cursors$d {
28662
28677
  /** Cursor string pointing to the next page in the list of results. */
28663
28678
  next?: string | null;
28664
28679
  /** Cursor pointing to the previous page in the list of results. */
@@ -29068,7 +29083,7 @@ interface CursorSearch$1 extends CursorSearchPagingMethodOneOf$1 {
29068
29083
  * Cursor paging options.
29069
29084
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
29070
29085
  */
29071
- cursorPaging?: CursorPaging$b;
29086
+ cursorPaging?: CursorPaging$d;
29072
29087
  /**
29073
29088
  * Filter object.
29074
29089
  *
@@ -29088,7 +29103,7 @@ interface CursorSearch$1 extends CursorSearchPagingMethodOneOf$1 {
29088
29103
  *
29089
29104
  * Learn more about the [sort format](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
29090
29105
  */
29091
- sort?: Sorting$b[];
29106
+ sort?: Sorting$d[];
29092
29107
  }
29093
29108
  /** @oneof */
29094
29109
  interface CursorSearchPagingMethodOneOf$1 {
@@ -29096,7 +29111,7 @@ interface CursorSearchPagingMethodOneOf$1 {
29096
29111
  * Cursor paging options.
29097
29112
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
29098
29113
  */
29099
- cursorPaging?: CursorPaging$b;
29114
+ cursorPaging?: CursorPaging$d;
29100
29115
  }
29101
29116
  interface SearchOrdersResponse$1 {
29102
29117
  /** List of orders. */
@@ -29108,7 +29123,7 @@ interface CursorPagingMetadata$b {
29108
29123
  /** Number of items returned in current page. */
29109
29124
  count?: number | null;
29110
29125
  /** Cursor strings that point to the next page, previous page, or both. */
29111
- cursors?: Cursors$b;
29126
+ cursors?: Cursors$d;
29112
29127
  /**
29113
29128
  * Whether there are more pages to retrieve following the current page.
29114
29129
  *
@@ -29913,7 +29928,7 @@ interface Order {
29913
29928
  *
29914
29929
  * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
29915
29930
  */
29916
- extendedFields?: ExtendedFields$6;
29931
+ extendedFields?: ExtendedFields$8;
29917
29932
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
29918
29933
  purchaseFlowId?: string | null;
29919
29934
  /**
@@ -29924,6 +29939,11 @@ interface Order {
29924
29939
  * + No shipping option is selected.
29925
29940
  */
29926
29941
  recipientInfo?: AddressWithContact;
29942
+ /**
29943
+ * Date and time the order was originally purchased in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
29944
+ * Used for migration from external systems.
29945
+ */
29946
+ purchasedDate?: Date | null;
29927
29947
  }
29928
29948
  interface OrderLineItem {
29929
29949
  /** Line item ID. */
@@ -30854,7 +30874,7 @@ interface AdditionalFee {
30854
30874
  */
30855
30875
  lineItemIds?: string[];
30856
30876
  }
30857
- interface ExtendedFields$6 {
30877
+ interface ExtendedFields$8 {
30858
30878
  /**
30859
30879
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
30860
30880
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -30897,17 +30917,17 @@ interface TagList {
30897
30917
  /** List of tag IDs */
30898
30918
  tagIds?: string[];
30899
30919
  }
30900
- interface Sorting$a {
30920
+ interface Sorting$c {
30901
30921
  /** Name of the field to sort by. */
30902
30922
  fieldName?: string;
30903
30923
  /** Sort order. */
30904
- order?: SortOrder$a;
30924
+ order?: SortOrder$c;
30905
30925
  }
30906
- declare enum SortOrder$a {
30926
+ declare enum SortOrder$c {
30907
30927
  ASC = "ASC",
30908
30928
  DESC = "DESC"
30909
30929
  }
30910
- interface CursorPaging$a {
30930
+ interface CursorPaging$c {
30911
30931
  /** Maximum number of items to return in the results. */
30912
30932
  limit?: number | null;
30913
30933
  /**
@@ -30918,7 +30938,7 @@ interface CursorPaging$a {
30918
30938
  */
30919
30939
  cursor?: string | null;
30920
30940
  }
30921
- interface Cursors$a {
30941
+ interface Cursors$c {
30922
30942
  /** Cursor string pointing to the next page in the list of results. */
30923
30943
  next?: string | null;
30924
30944
  /** Cursor pointing to the previous page in the list of results. */
@@ -31328,7 +31348,7 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
31328
31348
  * Cursor paging options.
31329
31349
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
31330
31350
  */
31331
- cursorPaging?: CursorPaging$a;
31351
+ cursorPaging?: CursorPaging$c;
31332
31352
  /**
31333
31353
  * Filter object.
31334
31354
  *
@@ -31348,7 +31368,7 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
31348
31368
  *
31349
31369
  * Learn more about the [sort format](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
31350
31370
  */
31351
- sort?: Sorting$a[];
31371
+ sort?: Sorting$c[];
31352
31372
  }
31353
31373
  /** @oneof */
31354
31374
  interface CursorSearchPagingMethodOneOf {
@@ -31356,7 +31376,7 @@ interface CursorSearchPagingMethodOneOf {
31356
31376
  * Cursor paging options.
31357
31377
  * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
31358
31378
  */
31359
- cursorPaging?: CursorPaging$a;
31379
+ cursorPaging?: CursorPaging$c;
31360
31380
  }
31361
31381
  interface SearchOrdersResponse {
31362
31382
  /** List of orders. */
@@ -31368,7 +31388,7 @@ interface CursorPagingMetadata$a {
31368
31388
  /** Number of items returned in current page. */
31369
31389
  count?: number | null;
31370
31390
  /** Cursor strings that point to the next page, previous page, or both. */
31371
- cursors?: Cursors$a;
31391
+ cursors?: Cursors$c;
31372
31392
  /**
31373
31393
  * Whether there are more pages to retrieve following the current page.
31374
31394
  *
@@ -32040,7 +32060,7 @@ interface BulkUpdateOrderTagsResponseNonNullableFields {
32040
32060
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$2;
32041
32061
  }
32042
32062
 
32043
- type __PublicMethodMetaInfo$a<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
32063
+ type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
32044
32064
  getUrl: (context: any) => string;
32045
32065
  httpMethod: K;
32046
32066
  path: string;
@@ -32050,45 +32070,45 @@ type __PublicMethodMetaInfo$a<K = string, M = unknown, T = unknown, S = unknown,
32050
32070
  __responseType: Q;
32051
32071
  __originalResponseType: R;
32052
32072
  };
32053
- declare function preparePaymentCollection(): __PublicMethodMetaInfo$a<'POST', {
32073
+ declare function preparePaymentCollection(): __PublicMethodMetaInfo$c<'POST', {
32054
32074
  ecomOrderId: string;
32055
32075
  }, PreparePaymentCollectionRequest, PreparePaymentCollectionRequest$1, PreparePaymentCollectionResponse & PreparePaymentCollectionResponseNonNullableFields, PreparePaymentCollectionResponse$1 & PreparePaymentCollectionResponseNonNullableFields$1>;
32056
- declare function getPaymentCollectabilityStatus(): __PublicMethodMetaInfo$a<'GET', {
32076
+ declare function getPaymentCollectabilityStatus(): __PublicMethodMetaInfo$c<'GET', {
32057
32077
  ecomOrderId: string;
32058
32078
  }, GetPaymentCollectabilityStatusRequest, GetPaymentCollectabilityStatusRequest$1, GetPaymentCollectabilityStatusResponse & GetPaymentCollectabilityStatusResponseNonNullableFields, GetPaymentCollectabilityStatusResponse$1 & GetPaymentCollectabilityStatusResponseNonNullableFields$1>;
32059
- declare function voidAuthorizedPayments(): __PublicMethodMetaInfo$a<'POST', {
32079
+ declare function voidAuthorizedPayments(): __PublicMethodMetaInfo$c<'POST', {
32060
32080
  ecomOrderId: string;
32061
32081
  }, VoidAuthorizedPaymentsRequest, VoidAuthorizedPaymentsRequest$1, VoidAuthorizedPaymentsResponse & VoidAuthorizedPaymentsResponseNonNullableFields, VoidAuthorizedPaymentsResponse$1 & VoidAuthorizedPaymentsResponseNonNullableFields$1>;
32062
- declare function captureAuthorizedPayments(): __PublicMethodMetaInfo$a<'POST', {
32082
+ declare function captureAuthorizedPayments(): __PublicMethodMetaInfo$c<'POST', {
32063
32083
  ecomOrderId: string;
32064
32084
  }, CaptureAuthorizedPaymentsRequest, CaptureAuthorizedPaymentsRequest$1, CaptureAuthorizedPaymentsResponse & CaptureAuthorizedPaymentsResponseNonNullableFields, CaptureAuthorizedPaymentsResponse$1 & CaptureAuthorizedPaymentsResponseNonNullableFields$1>;
32065
- declare function getOrder(): __PublicMethodMetaInfo$a<'GET', {
32085
+ declare function getOrder(): __PublicMethodMetaInfo$c<'GET', {
32066
32086
  id: string;
32067
32087
  }, GetOrderRequest, GetOrderRequest$1, GetOrderResponse & GetOrderResponseNonNullableFields, GetOrderResponse$1 & GetOrderResponseNonNullableFields$1>;
32068
- declare function searchOrders(): __PublicMethodMetaInfo$a<'POST', {}, SearchOrdersRequest, SearchOrdersRequest$1, SearchOrdersResponse & SearchOrdersResponseNonNullableFields, SearchOrdersResponse$1 & SearchOrdersResponseNonNullableFields$1>;
32069
- declare function createOrder(): __PublicMethodMetaInfo$a<'POST', {}, CreateOrderRequest, CreateOrderRequest$1, CreateOrderResponse & CreateOrderResponseNonNullableFields, CreateOrderResponse$1 & CreateOrderResponseNonNullableFields$1>;
32070
- declare function updateOrder(): __PublicMethodMetaInfo$a<'PATCH', {
32088
+ declare function searchOrders(): __PublicMethodMetaInfo$c<'POST', {}, SearchOrdersRequest, SearchOrdersRequest$1, SearchOrdersResponse & SearchOrdersResponseNonNullableFields, SearchOrdersResponse$1 & SearchOrdersResponseNonNullableFields$1>;
32089
+ declare function createOrder(): __PublicMethodMetaInfo$c<'POST', {}, CreateOrderRequest, CreateOrderRequest$1, CreateOrderResponse & CreateOrderResponseNonNullableFields, CreateOrderResponse$1 & CreateOrderResponseNonNullableFields$1>;
32090
+ declare function updateOrder(): __PublicMethodMetaInfo$c<'PATCH', {
32071
32091
  orderId: string;
32072
32092
  }, UpdateOrderRequest, UpdateOrderRequest$1, UpdateOrderResponse & UpdateOrderResponseNonNullableFields, UpdateOrderResponse$1 & UpdateOrderResponseNonNullableFields$1>;
32073
- declare function bulkUpdateOrders(): __PublicMethodMetaInfo$a<'POST', {}, BulkUpdateOrdersRequest, BulkUpdateOrdersRequest$1, BulkUpdateOrdersResponse & BulkUpdateOrdersResponseNonNullableFields, BulkUpdateOrdersResponse$1 & BulkUpdateOrdersResponseNonNullableFields$1>;
32074
- declare function cancelOrder(): __PublicMethodMetaInfo$a<'POST', {
32093
+ declare function bulkUpdateOrders(): __PublicMethodMetaInfo$c<'POST', {}, BulkUpdateOrdersRequest, BulkUpdateOrdersRequest$1, BulkUpdateOrdersResponse & BulkUpdateOrdersResponseNonNullableFields, BulkUpdateOrdersResponse$1 & BulkUpdateOrdersResponseNonNullableFields$1>;
32094
+ declare function cancelOrder(): __PublicMethodMetaInfo$c<'POST', {
32075
32095
  id: string;
32076
32096
  }, CancelOrderRequest, CancelOrderRequest$1, CancelOrderResponse & CancelOrderResponseNonNullableFields, CancelOrderResponse$1 & CancelOrderResponseNonNullableFields$1>;
32077
- declare function bulkUpdateOrderTags(): __PublicMethodMetaInfo$a<'POST', {}, BulkUpdateOrderTagsRequest, BulkUpdateOrderTagsRequest$1, BulkUpdateOrderTagsResponse & BulkUpdateOrderTagsResponseNonNullableFields, BulkUpdateOrderTagsResponse$1 & BulkUpdateOrderTagsResponseNonNullableFields$1>;
32097
+ declare function bulkUpdateOrderTags(): __PublicMethodMetaInfo$c<'POST', {}, BulkUpdateOrderTagsRequest, BulkUpdateOrderTagsRequest$1, BulkUpdateOrderTagsResponse & BulkUpdateOrderTagsResponseNonNullableFields, BulkUpdateOrderTagsResponse$1 & BulkUpdateOrderTagsResponseNonNullableFields$1>;
32078
32098
 
32079
- declare const meta$a_bulkUpdateOrderTags: typeof bulkUpdateOrderTags;
32080
- declare const meta$a_bulkUpdateOrders: typeof bulkUpdateOrders;
32081
- declare const meta$a_cancelOrder: typeof cancelOrder;
32082
- declare const meta$a_captureAuthorizedPayments: typeof captureAuthorizedPayments;
32083
- declare const meta$a_createOrder: typeof createOrder;
32084
- declare const meta$a_getOrder: typeof getOrder;
32085
- declare const meta$a_getPaymentCollectabilityStatus: typeof getPaymentCollectabilityStatus;
32086
- declare const meta$a_preparePaymentCollection: typeof preparePaymentCollection;
32087
- declare const meta$a_searchOrders: typeof searchOrders;
32088
- declare const meta$a_updateOrder: typeof updateOrder;
32089
- declare const meta$a_voidAuthorizedPayments: typeof voidAuthorizedPayments;
32090
- declare namespace meta$a {
32091
- export { type __PublicMethodMetaInfo$a as __PublicMethodMetaInfo, meta$a_bulkUpdateOrderTags as bulkUpdateOrderTags, meta$a_bulkUpdateOrders as bulkUpdateOrders, meta$a_cancelOrder as cancelOrder, meta$a_captureAuthorizedPayments as captureAuthorizedPayments, meta$a_createOrder as createOrder, meta$a_getOrder as getOrder, meta$a_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, meta$a_preparePaymentCollection as preparePaymentCollection, meta$a_searchOrders as searchOrders, meta$a_updateOrder as updateOrder, meta$a_voidAuthorizedPayments as voidAuthorizedPayments };
32099
+ declare const meta$c_bulkUpdateOrderTags: typeof bulkUpdateOrderTags;
32100
+ declare const meta$c_bulkUpdateOrders: typeof bulkUpdateOrders;
32101
+ declare const meta$c_cancelOrder: typeof cancelOrder;
32102
+ declare const meta$c_captureAuthorizedPayments: typeof captureAuthorizedPayments;
32103
+ declare const meta$c_createOrder: typeof createOrder;
32104
+ declare const meta$c_getOrder: typeof getOrder;
32105
+ declare const meta$c_getPaymentCollectabilityStatus: typeof getPaymentCollectabilityStatus;
32106
+ declare const meta$c_preparePaymentCollection: typeof preparePaymentCollection;
32107
+ declare const meta$c_searchOrders: typeof searchOrders;
32108
+ declare const meta$c_updateOrder: typeof updateOrder;
32109
+ declare const meta$c_voidAuthorizedPayments: typeof voidAuthorizedPayments;
32110
+ declare namespace meta$c {
32111
+ export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_bulkUpdateOrderTags as bulkUpdateOrderTags, meta$c_bulkUpdateOrders as bulkUpdateOrders, meta$c_cancelOrder as cancelOrder, meta$c_captureAuthorizedPayments as captureAuthorizedPayments, meta$c_createOrder as createOrder, meta$c_getOrder as getOrder, meta$c_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, meta$c_preparePaymentCollection as preparePaymentCollection, meta$c_searchOrders as searchOrders, meta$c_updateOrder as updateOrder, meta$c_voidAuthorizedPayments as voidAuthorizedPayments };
32092
32112
  }
32093
32113
 
32094
32114
  interface OrderPaymentRequest$1 {
@@ -32135,7 +32155,7 @@ interface OrderPaymentRequest$1 {
32135
32155
  /** Time and date the order payment request expires. */
32136
32156
  expirationDate?: Date | null;
32137
32157
  /** [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls. */
32138
- extendedFields?: ExtendedFields$5;
32158
+ extendedFields?: ExtendedFields$7;
32139
32159
  /**
32140
32160
  * Date and time the OrderPaymentRequest was created.
32141
32161
  * @readonly
@@ -32189,7 +32209,7 @@ interface Image {
32189
32209
  */
32190
32210
  filename?: string | null;
32191
32211
  }
32192
- interface ExtendedFields$5 {
32212
+ interface ExtendedFields$7 {
32193
32213
  /**
32194
32214
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
32195
32215
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -32238,7 +32258,7 @@ interface QueryOrderPaymentRequestsRequest$1 {
32238
32258
  }
32239
32259
  interface CursorQuery$7 extends CursorQueryPagingMethodOneOf$7 {
32240
32260
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
32241
- cursorPaging?: CursorPaging$9;
32261
+ cursorPaging?: CursorPaging$b;
32242
32262
  /**
32243
32263
  * Filter object in the following format:
32244
32264
  * `"filter" : {
@@ -32252,24 +32272,24 @@ interface CursorQuery$7 extends CursorQueryPagingMethodOneOf$7 {
32252
32272
  * Sort object in the following format:
32253
32273
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
32254
32274
  */
32255
- sort?: Sorting$9[];
32275
+ sort?: Sorting$b[];
32256
32276
  }
32257
32277
  /** @oneof */
32258
32278
  interface CursorQueryPagingMethodOneOf$7 {
32259
32279
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
32260
- cursorPaging?: CursorPaging$9;
32280
+ cursorPaging?: CursorPaging$b;
32261
32281
  }
32262
- interface Sorting$9 {
32282
+ interface Sorting$b {
32263
32283
  /** Name of the field to sort by. */
32264
32284
  fieldName?: string;
32265
32285
  /** Sort order. */
32266
- order?: SortOrder$9;
32286
+ order?: SortOrder$b;
32267
32287
  }
32268
- declare enum SortOrder$9 {
32288
+ declare enum SortOrder$b {
32269
32289
  ASC = "ASC",
32270
32290
  DESC = "DESC"
32271
32291
  }
32272
- interface CursorPaging$9 {
32292
+ interface CursorPaging$b {
32273
32293
  /** Maximum number of items to return in the results. */
32274
32294
  limit?: number | null;
32275
32295
  /**
@@ -32290,7 +32310,7 @@ interface CursorPagingMetadata$9 {
32290
32310
  /** Number of items returned in the response. */
32291
32311
  count?: number | null;
32292
32312
  /** Cursor strings that point to the next page, previous page, or both. */
32293
- cursors?: Cursors$9;
32313
+ cursors?: Cursors$b;
32294
32314
  /**
32295
32315
  * Whether there are more pages to retrieve following the current page.
32296
32316
  *
@@ -32299,7 +32319,7 @@ interface CursorPagingMetadata$9 {
32299
32319
  */
32300
32320
  hasNext?: boolean | null;
32301
32321
  }
32302
- interface Cursors$9 {
32322
+ interface Cursors$b {
32303
32323
  /** Cursor string pointing to the next page in the list of results. */
32304
32324
  next?: string | null;
32305
32325
  /** Cursor pointing to the previous page in the list of results. */
@@ -32410,7 +32430,7 @@ interface OrderPaymentRequest {
32410
32430
  /** Time and date the order payment request expires. */
32411
32431
  expirationDate?: Date | null;
32412
32432
  /** [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls. */
32413
- extendedFields?: ExtendedFields$4;
32433
+ extendedFields?: ExtendedFields$6;
32414
32434
  /**
32415
32435
  * Date and time the OrderPaymentRequest was created.
32416
32436
  * @readonly
@@ -32443,7 +32463,7 @@ interface Price$4 {
32443
32463
  */
32444
32464
  formattedAmount?: string;
32445
32465
  }
32446
- interface ExtendedFields$4 {
32466
+ interface ExtendedFields$6 {
32447
32467
  /**
32448
32468
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
32449
32469
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -32492,7 +32512,7 @@ interface QueryOrderPaymentRequestsRequest {
32492
32512
  }
32493
32513
  interface CursorQuery$6 extends CursorQueryPagingMethodOneOf$6 {
32494
32514
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
32495
- cursorPaging?: CursorPaging$8;
32515
+ cursorPaging?: CursorPaging$a;
32496
32516
  /**
32497
32517
  * Filter object in the following format:
32498
32518
  * `"filter" : {
@@ -32506,24 +32526,24 @@ interface CursorQuery$6 extends CursorQueryPagingMethodOneOf$6 {
32506
32526
  * Sort object in the following format:
32507
32527
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
32508
32528
  */
32509
- sort?: Sorting$8[];
32529
+ sort?: Sorting$a[];
32510
32530
  }
32511
32531
  /** @oneof */
32512
32532
  interface CursorQueryPagingMethodOneOf$6 {
32513
32533
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
32514
- cursorPaging?: CursorPaging$8;
32534
+ cursorPaging?: CursorPaging$a;
32515
32535
  }
32516
- interface Sorting$8 {
32536
+ interface Sorting$a {
32517
32537
  /** Name of the field to sort by. */
32518
32538
  fieldName?: string;
32519
32539
  /** Sort order. */
32520
- order?: SortOrder$8;
32540
+ order?: SortOrder$a;
32521
32541
  }
32522
- declare enum SortOrder$8 {
32542
+ declare enum SortOrder$a {
32523
32543
  ASC = "ASC",
32524
32544
  DESC = "DESC"
32525
32545
  }
32526
- interface CursorPaging$8 {
32546
+ interface CursorPaging$a {
32527
32547
  /** Maximum number of items to return in the results. */
32528
32548
  limit?: number | null;
32529
32549
  /**
@@ -32544,7 +32564,7 @@ interface CursorPagingMetadata$8 {
32544
32564
  /** Number of items returned in the response. */
32545
32565
  count?: number | null;
32546
32566
  /** Cursor strings that point to the next page, previous page, or both. */
32547
- cursors?: Cursors$8;
32567
+ cursors?: Cursors$a;
32548
32568
  /**
32549
32569
  * Whether there are more pages to retrieve following the current page.
32550
32570
  *
@@ -32553,7 +32573,7 @@ interface CursorPagingMetadata$8 {
32553
32573
  */
32554
32574
  hasNext?: boolean | null;
32555
32575
  }
32556
- interface Cursors$8 {
32576
+ interface Cursors$a {
32557
32577
  /** Cursor string pointing to the next page in the list of results. */
32558
32578
  next?: string | null;
32559
32579
  /** Cursor pointing to the previous page in the list of results. */
@@ -32615,7 +32635,7 @@ interface UpdateExtendedFieldsResponseNonNullableFields$4 {
32615
32635
  orderPaymentRequest?: OrderPaymentRequestNonNullableFields;
32616
32636
  }
32617
32637
 
32618
- type __PublicMethodMetaInfo$9<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
32638
+ type __PublicMethodMetaInfo$b<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
32619
32639
  getUrl: (context: any) => string;
32620
32640
  httpMethod: K;
32621
32641
  path: string;
@@ -32625,30 +32645,30 @@ type __PublicMethodMetaInfo$9<K = string, M = unknown, T = unknown, S = unknown,
32625
32645
  __responseType: Q;
32626
32646
  __originalResponseType: R;
32627
32647
  };
32628
- declare function createOrderPaymentRequest(): __PublicMethodMetaInfo$9<'POST', {}, CreateOrderPaymentRequestRequest, CreateOrderPaymentRequestRequest$1, CreateOrderPaymentRequestResponse & CreateOrderPaymentRequestResponseNonNullableFields, CreateOrderPaymentRequestResponse$1 & CreateOrderPaymentRequestResponseNonNullableFields$1>;
32629
- declare function getOrderPaymentRequest(): __PublicMethodMetaInfo$9<'GET', {
32648
+ declare function createOrderPaymentRequest(): __PublicMethodMetaInfo$b<'POST', {}, CreateOrderPaymentRequestRequest, CreateOrderPaymentRequestRequest$1, CreateOrderPaymentRequestResponse & CreateOrderPaymentRequestResponseNonNullableFields, CreateOrderPaymentRequestResponse$1 & CreateOrderPaymentRequestResponseNonNullableFields$1>;
32649
+ declare function getOrderPaymentRequest(): __PublicMethodMetaInfo$b<'GET', {
32630
32650
  orderPaymentRequestId: string;
32631
32651
  }, GetOrderPaymentRequestRequest, GetOrderPaymentRequestRequest$1, GetOrderPaymentRequestResponse & GetOrderPaymentRequestResponseNonNullableFields, GetOrderPaymentRequestResponse$1 & GetOrderPaymentRequestResponseNonNullableFields$1>;
32632
- declare function updateOrderPaymentRequest(): __PublicMethodMetaInfo$9<'PATCH', {
32652
+ declare function updateOrderPaymentRequest(): __PublicMethodMetaInfo$b<'PATCH', {
32633
32653
  orderPaymentRequestId: string;
32634
32654
  }, UpdateOrderPaymentRequestRequest, UpdateOrderPaymentRequestRequest$1, UpdateOrderPaymentRequestResponse & UpdateOrderPaymentRequestResponseNonNullableFields, UpdateOrderPaymentRequestResponse$1 & UpdateOrderPaymentRequestResponseNonNullableFields$1>;
32635
- declare function deleteOrderPaymentRequest(): __PublicMethodMetaInfo$9<'DELETE', {
32655
+ declare function deleteOrderPaymentRequest(): __PublicMethodMetaInfo$b<'DELETE', {
32636
32656
  orderPaymentRequestId: string;
32637
32657
  }, DeleteOrderPaymentRequestRequest, DeleteOrderPaymentRequestRequest$1, DeleteOrderPaymentRequestResponse, DeleteOrderPaymentRequestResponse$1>;
32638
- declare function queryOrderPaymentRequests(): __PublicMethodMetaInfo$9<'POST', {}, QueryOrderPaymentRequestsRequest, QueryOrderPaymentRequestsRequest$1, QueryOrderPaymentRequestsResponse & QueryOrderPaymentRequestsResponseNonNullableFields, QueryOrderPaymentRequestsResponse$1 & QueryOrderPaymentRequestsResponseNonNullableFields$1>;
32639
- declare function getOrderPaymentRequestUrl(): __PublicMethodMetaInfo$9<'POST', {}, GetOrderPaymentRequestURLRequest, GetOrderPaymentRequestURLRequest$1, GetOrderPaymentRequestURLResponse & GetOrderPaymentRequestURLResponseNonNullableFields, GetOrderPaymentRequestURLResponse$1 & GetOrderPaymentRequestURLResponseNonNullableFields$1>;
32640
- declare function updateExtendedFields$2(): __PublicMethodMetaInfo$9<'POST', {
32658
+ declare function queryOrderPaymentRequests(): __PublicMethodMetaInfo$b<'POST', {}, QueryOrderPaymentRequestsRequest, QueryOrderPaymentRequestsRequest$1, QueryOrderPaymentRequestsResponse & QueryOrderPaymentRequestsResponseNonNullableFields, QueryOrderPaymentRequestsResponse$1 & QueryOrderPaymentRequestsResponseNonNullableFields$1>;
32659
+ declare function getOrderPaymentRequestUrl(): __PublicMethodMetaInfo$b<'POST', {}, GetOrderPaymentRequestURLRequest, GetOrderPaymentRequestURLRequest$1, GetOrderPaymentRequestURLResponse & GetOrderPaymentRequestURLResponseNonNullableFields, GetOrderPaymentRequestURLResponse$1 & GetOrderPaymentRequestURLResponseNonNullableFields$1>;
32660
+ declare function updateExtendedFields$2(): __PublicMethodMetaInfo$b<'POST', {
32641
32661
  id: string;
32642
32662
  }, UpdateExtendedFieldsRequest$4, UpdateExtendedFieldsRequest$5, UpdateExtendedFieldsResponse$4 & UpdateExtendedFieldsResponseNonNullableFields$4, UpdateExtendedFieldsResponse$5 & UpdateExtendedFieldsResponseNonNullableFields$5>;
32643
32663
 
32644
- declare const meta$9_createOrderPaymentRequest: typeof createOrderPaymentRequest;
32645
- declare const meta$9_deleteOrderPaymentRequest: typeof deleteOrderPaymentRequest;
32646
- declare const meta$9_getOrderPaymentRequest: typeof getOrderPaymentRequest;
32647
- declare const meta$9_getOrderPaymentRequestUrl: typeof getOrderPaymentRequestUrl;
32648
- declare const meta$9_queryOrderPaymentRequests: typeof queryOrderPaymentRequests;
32649
- declare const meta$9_updateOrderPaymentRequest: typeof updateOrderPaymentRequest;
32650
- declare namespace meta$9 {
32651
- export { type __PublicMethodMetaInfo$9 as __PublicMethodMetaInfo, meta$9_createOrderPaymentRequest as createOrderPaymentRequest, meta$9_deleteOrderPaymentRequest as deleteOrderPaymentRequest, meta$9_getOrderPaymentRequest as getOrderPaymentRequest, meta$9_getOrderPaymentRequestUrl as getOrderPaymentRequestUrl, meta$9_queryOrderPaymentRequests as queryOrderPaymentRequests, updateExtendedFields$2 as updateExtendedFields, meta$9_updateOrderPaymentRequest as updateOrderPaymentRequest };
32664
+ declare const meta$b_createOrderPaymentRequest: typeof createOrderPaymentRequest;
32665
+ declare const meta$b_deleteOrderPaymentRequest: typeof deleteOrderPaymentRequest;
32666
+ declare const meta$b_getOrderPaymentRequest: typeof getOrderPaymentRequest;
32667
+ declare const meta$b_getOrderPaymentRequestUrl: typeof getOrderPaymentRequestUrl;
32668
+ declare const meta$b_queryOrderPaymentRequests: typeof queryOrderPaymentRequests;
32669
+ declare const meta$b_updateOrderPaymentRequest: typeof updateOrderPaymentRequest;
32670
+ declare namespace meta$b {
32671
+ export { type __PublicMethodMetaInfo$b as __PublicMethodMetaInfo, meta$b_createOrderPaymentRequest as createOrderPaymentRequest, meta$b_deleteOrderPaymentRequest as deleteOrderPaymentRequest, meta$b_getOrderPaymentRequest as getOrderPaymentRequest, meta$b_getOrderPaymentRequestUrl as getOrderPaymentRequestUrl, meta$b_queryOrderPaymentRequests as queryOrderPaymentRequests, updateExtendedFields$2 as updateExtendedFields, meta$b_updateOrderPaymentRequest as updateOrderPaymentRequest };
32652
32672
  }
32653
32673
 
32654
32674
  interface OrderTransactions$1 {
@@ -33641,7 +33661,7 @@ interface BulkUpdatePaymentStatusesResponseNonNullableFields {
33641
33661
  bulkActionMetadata?: BulkActionMetadataNonNullableFields;
33642
33662
  }
33643
33663
 
33644
- type __PublicMethodMetaInfo$8<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
33664
+ type __PublicMethodMetaInfo$a<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
33645
33665
  getUrl: (context: any) => string;
33646
33666
  httpMethod: K;
33647
33667
  path: string;
@@ -33651,26 +33671,26 @@ type __PublicMethodMetaInfo$8<K = string, M = unknown, T = unknown, S = unknown,
33651
33671
  __responseType: Q;
33652
33672
  __originalResponseType: R;
33653
33673
  };
33654
- declare function listTransactionsForSingleOrder(): __PublicMethodMetaInfo$8<'GET', {
33674
+ declare function listTransactionsForSingleOrder(): __PublicMethodMetaInfo$a<'GET', {
33655
33675
  orderId: string;
33656
33676
  }, ListTransactionsForSingleOrderRequest, ListTransactionsForSingleOrderRequest$1, ListTransactionsForSingleOrderResponse & ListTransactionsForSingleOrderResponseNonNullableFields, ListTransactionsForSingleOrderResponse$1 & ListTransactionsForSingleOrderResponseNonNullableFields$1>;
33657
- declare function listTransactionsForMultipleOrders(): __PublicMethodMetaInfo$8<'POST', {}, ListTransactionsForMultipleOrdersRequest, ListTransactionsForMultipleOrdersRequest$1, ListTransactionsForMultipleOrdersResponse & ListTransactionsForMultipleOrdersResponseNonNullableFields, ListTransactionsForMultipleOrdersResponse$1 & ListTransactionsForMultipleOrdersResponseNonNullableFields$1>;
33658
- declare function addPayments(): __PublicMethodMetaInfo$8<'POST', {
33677
+ declare function listTransactionsForMultipleOrders(): __PublicMethodMetaInfo$a<'POST', {}, ListTransactionsForMultipleOrdersRequest, ListTransactionsForMultipleOrdersRequest$1, ListTransactionsForMultipleOrdersResponse & ListTransactionsForMultipleOrdersResponseNonNullableFields, ListTransactionsForMultipleOrdersResponse$1 & ListTransactionsForMultipleOrdersResponseNonNullableFields$1>;
33678
+ declare function addPayments(): __PublicMethodMetaInfo$a<'POST', {
33659
33679
  orderId: string;
33660
33680
  }, AddPaymentsRequest, AddPaymentsRequest$1, AddPaymentsResponse & AddPaymentsResponseNonNullableFields, AddPaymentsResponse$1 & AddPaymentsResponseNonNullableFields$1>;
33661
- declare function updatePaymentStatus(): __PublicMethodMetaInfo$8<'POST', {
33681
+ declare function updatePaymentStatus(): __PublicMethodMetaInfo$a<'POST', {
33662
33682
  paymentId: string;
33663
33683
  orderId: string;
33664
33684
  }, UpdatePaymentStatusRequest, UpdatePaymentStatusRequest$1, UpdatePaymentStatusResponse & UpdatePaymentStatusResponseNonNullableFields, UpdatePaymentStatusResponse$1 & UpdatePaymentStatusResponseNonNullableFields$1>;
33665
- declare function bulkUpdatePaymentStatuses(): __PublicMethodMetaInfo$8<'POST', {}, BulkUpdatePaymentStatusesRequest, BulkUpdatePaymentStatusesRequest$1, BulkUpdatePaymentStatusesResponse & BulkUpdatePaymentStatusesResponseNonNullableFields, BulkUpdatePaymentStatusesResponse$1 & BulkUpdatePaymentStatusesResponseNonNullableFields$1>;
33685
+ declare function bulkUpdatePaymentStatuses(): __PublicMethodMetaInfo$a<'POST', {}, BulkUpdatePaymentStatusesRequest, BulkUpdatePaymentStatusesRequest$1, BulkUpdatePaymentStatusesResponse & BulkUpdatePaymentStatusesResponseNonNullableFields, BulkUpdatePaymentStatusesResponse$1 & BulkUpdatePaymentStatusesResponseNonNullableFields$1>;
33666
33686
 
33667
- declare const meta$8_addPayments: typeof addPayments;
33668
- declare const meta$8_bulkUpdatePaymentStatuses: typeof bulkUpdatePaymentStatuses;
33669
- declare const meta$8_listTransactionsForMultipleOrders: typeof listTransactionsForMultipleOrders;
33670
- declare const meta$8_listTransactionsForSingleOrder: typeof listTransactionsForSingleOrder;
33671
- declare const meta$8_updatePaymentStatus: typeof updatePaymentStatus;
33672
- declare namespace meta$8 {
33673
- export { type __PublicMethodMetaInfo$8 as __PublicMethodMetaInfo, meta$8_addPayments as addPayments, meta$8_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, meta$8_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, meta$8_listTransactionsForSingleOrder as listTransactionsForSingleOrder, meta$8_updatePaymentStatus as updatePaymentStatus };
33687
+ declare const meta$a_addPayments: typeof addPayments;
33688
+ declare const meta$a_bulkUpdatePaymentStatuses: typeof bulkUpdatePaymentStatuses;
33689
+ declare const meta$a_listTransactionsForMultipleOrders: typeof listTransactionsForMultipleOrders;
33690
+ declare const meta$a_listTransactionsForSingleOrder: typeof listTransactionsForSingleOrder;
33691
+ declare const meta$a_updatePaymentStatus: typeof updatePaymentStatus;
33692
+ declare namespace meta$a {
33693
+ export { type __PublicMethodMetaInfo$a as __PublicMethodMetaInfo, meta$a_addPayments as addPayments, meta$a_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, meta$a_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, meta$a_listTransactionsForSingleOrder as listTransactionsForSingleOrder, meta$a_updatePaymentStatus as updatePaymentStatus };
33674
33694
  }
33675
33695
 
33676
33696
  interface OrdersSettings$1 {
@@ -33786,7 +33806,7 @@ interface UpdateOrdersSettingsResponseNonNullableFields {
33786
33806
  ordersSettings?: OrdersSettingsNonNullableFields;
33787
33807
  }
33788
33808
 
33789
- type __PublicMethodMetaInfo$7<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
33809
+ type __PublicMethodMetaInfo$9<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
33790
33810
  getUrl: (context: any) => string;
33791
33811
  httpMethod: K;
33792
33812
  path: string;
@@ -33796,13 +33816,13 @@ type __PublicMethodMetaInfo$7<K = string, M = unknown, T = unknown, S = unknown,
33796
33816
  __responseType: Q;
33797
33817
  __originalResponseType: R;
33798
33818
  };
33799
- declare function getOrdersSettings(): __PublicMethodMetaInfo$7<'GET', {}, GetOrdersSettingsRequest, GetOrdersSettingsRequest$1, GetOrdersSettingsResponse & GetOrdersSettingsResponseNonNullableFields, GetOrdersSettingsResponse$1 & GetOrdersSettingsResponseNonNullableFields$1>;
33800
- declare function updateOrdersSettings(): __PublicMethodMetaInfo$7<'PATCH', {}, UpdateOrdersSettingsRequest, UpdateOrdersSettingsRequest$1, UpdateOrdersSettingsResponse & UpdateOrdersSettingsResponseNonNullableFields, UpdateOrdersSettingsResponse$1 & UpdateOrdersSettingsResponseNonNullableFields$1>;
33819
+ declare function getOrdersSettings(): __PublicMethodMetaInfo$9<'GET', {}, GetOrdersSettingsRequest, GetOrdersSettingsRequest$1, GetOrdersSettingsResponse & GetOrdersSettingsResponseNonNullableFields, GetOrdersSettingsResponse$1 & GetOrdersSettingsResponseNonNullableFields$1>;
33820
+ declare function updateOrdersSettings(): __PublicMethodMetaInfo$9<'PATCH', {}, UpdateOrdersSettingsRequest, UpdateOrdersSettingsRequest$1, UpdateOrdersSettingsResponse & UpdateOrdersSettingsResponseNonNullableFields, UpdateOrdersSettingsResponse$1 & UpdateOrdersSettingsResponseNonNullableFields$1>;
33801
33821
 
33802
- declare const meta$7_getOrdersSettings: typeof getOrdersSettings;
33803
- declare const meta$7_updateOrdersSettings: typeof updateOrdersSettings;
33804
- declare namespace meta$7 {
33805
- export { type __PublicMethodMetaInfo$7 as __PublicMethodMetaInfo, meta$7_getOrdersSettings as getOrdersSettings, meta$7_updateOrdersSettings as updateOrdersSettings };
33822
+ declare const meta$9_getOrdersSettings: typeof getOrdersSettings;
33823
+ declare const meta$9_updateOrdersSettings: typeof updateOrdersSettings;
33824
+ declare namespace meta$9 {
33825
+ export { type __PublicMethodMetaInfo$9 as __PublicMethodMetaInfo, meta$9_getOrdersSettings as getOrdersSettings, meta$9_updateOrdersSettings as updateOrdersSettings };
33806
33826
  }
33807
33827
 
33808
33828
  /** PickupLocation is the main entity of PickupLocations that can be used for lorem ipsum dolor */
@@ -33931,13 +33951,13 @@ interface DeletePickupLocationResponse$1 {
33931
33951
  }
33932
33952
  interface QueryPickupLocationRequest$1 {
33933
33953
  /** WQL expression */
33934
- query: QueryV2$1;
33954
+ query: QueryV2$3;
33935
33955
  }
33936
- interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
33956
+ interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
33937
33957
  /** Paging options to limit and skip the number of items. */
33938
- paging?: Paging$1;
33958
+ paging?: Paging$3;
33939
33959
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
33940
- cursorPaging?: CursorPaging$7;
33960
+ cursorPaging?: CursorPaging$9;
33941
33961
  /**
33942
33962
  * Filter object.
33943
33963
  *
@@ -33949,36 +33969,36 @@ interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
33949
33969
  *
33950
33970
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
33951
33971
  */
33952
- sort?: Sorting$7[];
33972
+ sort?: Sorting$9[];
33953
33973
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
33954
33974
  fields?: string[];
33955
33975
  /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
33956
33976
  fieldsets?: string[];
33957
33977
  }
33958
33978
  /** @oneof */
33959
- interface QueryV2PagingMethodOneOf$1 {
33979
+ interface QueryV2PagingMethodOneOf$3 {
33960
33980
  /** Paging options to limit and skip the number of items. */
33961
- paging?: Paging$1;
33981
+ paging?: Paging$3;
33962
33982
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
33963
- cursorPaging?: CursorPaging$7;
33983
+ cursorPaging?: CursorPaging$9;
33964
33984
  }
33965
- interface Sorting$7 {
33985
+ interface Sorting$9 {
33966
33986
  /** Name of the field to sort by. */
33967
33987
  fieldName?: string;
33968
33988
  /** Sort order. */
33969
- order?: SortOrder$7;
33989
+ order?: SortOrder$9;
33970
33990
  }
33971
- declare enum SortOrder$7 {
33991
+ declare enum SortOrder$9 {
33972
33992
  ASC = "ASC",
33973
33993
  DESC = "DESC"
33974
33994
  }
33975
- interface Paging$1 {
33995
+ interface Paging$3 {
33976
33996
  /** Number of items to load. */
33977
33997
  limit?: number | null;
33978
33998
  /** Number of items to skip in the current sort order. */
33979
33999
  offset?: number | null;
33980
34000
  }
33981
- interface CursorPaging$7 {
34001
+ interface CursorPaging$9 {
33982
34002
  /** Maximum number of items to return in the results. */
33983
34003
  limit?: number | null;
33984
34004
  /**
@@ -33999,7 +34019,7 @@ interface CursorPagingMetadata$7 {
33999
34019
  /** Number of items returned in current page. */
34000
34020
  count?: number | null;
34001
34021
  /** Cursor strings that point to the next page, previous page, or both. */
34002
- cursors?: Cursors$7;
34022
+ cursors?: Cursors$9;
34003
34023
  /**
34004
34024
  * Whether there are more pages to retrieve following the current page.
34005
34025
  *
@@ -34008,7 +34028,7 @@ interface CursorPagingMetadata$7 {
34008
34028
  */
34009
34029
  hasNext?: boolean | null;
34010
34030
  }
34011
- interface Cursors$7 {
34031
+ interface Cursors$9 {
34012
34032
  /** Cursor string pointing to the next page in the list of results. */
34013
34033
  next?: string | null;
34014
34034
  /** Cursor pointing to the previous page in the list of results. */
@@ -34256,13 +34276,13 @@ interface DeletePickupLocationResponse {
34256
34276
  }
34257
34277
  interface QueryPickupLocationRequest {
34258
34278
  /** WQL expression */
34259
- query: QueryV2;
34279
+ query: QueryV2$2;
34260
34280
  }
34261
- interface QueryV2 extends QueryV2PagingMethodOneOf {
34281
+ interface QueryV2$2 extends QueryV2PagingMethodOneOf$2 {
34262
34282
  /** Paging options to limit and skip the number of items. */
34263
- paging?: Paging;
34283
+ paging?: Paging$2;
34264
34284
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
34265
- cursorPaging?: CursorPaging$6;
34285
+ cursorPaging?: CursorPaging$8;
34266
34286
  /**
34267
34287
  * Filter object.
34268
34288
  *
@@ -34274,36 +34294,36 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
34274
34294
  *
34275
34295
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
34276
34296
  */
34277
- sort?: Sorting$6[];
34297
+ sort?: Sorting$8[];
34278
34298
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
34279
34299
  fields?: string[];
34280
34300
  /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
34281
34301
  fieldsets?: string[];
34282
34302
  }
34283
34303
  /** @oneof */
34284
- interface QueryV2PagingMethodOneOf {
34304
+ interface QueryV2PagingMethodOneOf$2 {
34285
34305
  /** Paging options to limit and skip the number of items. */
34286
- paging?: Paging;
34306
+ paging?: Paging$2;
34287
34307
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
34288
- cursorPaging?: CursorPaging$6;
34308
+ cursorPaging?: CursorPaging$8;
34289
34309
  }
34290
- interface Sorting$6 {
34310
+ interface Sorting$8 {
34291
34311
  /** Name of the field to sort by. */
34292
34312
  fieldName?: string;
34293
34313
  /** Sort order. */
34294
- order?: SortOrder$6;
34314
+ order?: SortOrder$8;
34295
34315
  }
34296
- declare enum SortOrder$6 {
34316
+ declare enum SortOrder$8 {
34297
34317
  ASC = "ASC",
34298
34318
  DESC = "DESC"
34299
34319
  }
34300
- interface Paging {
34320
+ interface Paging$2 {
34301
34321
  /** Number of items to load. */
34302
34322
  limit?: number | null;
34303
34323
  /** Number of items to skip in the current sort order. */
34304
34324
  offset?: number | null;
34305
34325
  }
34306
- interface CursorPaging$6 {
34326
+ interface CursorPaging$8 {
34307
34327
  /** Maximum number of items to return in the results. */
34308
34328
  limit?: number | null;
34309
34329
  /**
@@ -34324,7 +34344,7 @@ interface CursorPagingMetadata$6 {
34324
34344
  /** Number of items returned in current page. */
34325
34345
  count?: number | null;
34326
34346
  /** Cursor strings that point to the next page, previous page, or both. */
34327
- cursors?: Cursors$6;
34347
+ cursors?: Cursors$8;
34328
34348
  /**
34329
34349
  * Whether there are more pages to retrieve following the current page.
34330
34350
  *
@@ -34333,7 +34353,7 @@ interface CursorPagingMetadata$6 {
34333
34353
  */
34334
34354
  hasNext?: boolean | null;
34335
34355
  }
34336
- interface Cursors$6 {
34356
+ interface Cursors$8 {
34337
34357
  /** Cursor string pointing to the next page in the list of results. */
34338
34358
  next?: string | null;
34339
34359
  /** Cursor pointing to the previous page in the list of results. */
@@ -34455,7 +34475,7 @@ interface BulkDeletePickupLocationResponseNonNullableFields {
34455
34475
  errors: PickupLocationErrorNonNullableFields[];
34456
34476
  }
34457
34477
 
34458
- type __PublicMethodMetaInfo$6<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
34478
+ type __PublicMethodMetaInfo$8<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
34459
34479
  getUrl: (context: any) => string;
34460
34480
  httpMethod: K;
34461
34481
  path: string;
@@ -34465,39 +34485,39 @@ type __PublicMethodMetaInfo$6<K = string, M = unknown, T = unknown, S = unknown,
34465
34485
  __responseType: Q;
34466
34486
  __originalResponseType: R;
34467
34487
  };
34468
- declare function createPickupLocation(): __PublicMethodMetaInfo$6<'POST', {}, CreatePickupLocationRequest, CreatePickupLocationRequest$1, CreatePickupLocationResponse & CreatePickupLocationResponseNonNullableFields, CreatePickupLocationResponse$1 & CreatePickupLocationResponseNonNullableFields$1>;
34469
- declare function getPickupLocation(): __PublicMethodMetaInfo$6<'GET', {
34488
+ declare function createPickupLocation(): __PublicMethodMetaInfo$8<'POST', {}, CreatePickupLocationRequest, CreatePickupLocationRequest$1, CreatePickupLocationResponse & CreatePickupLocationResponseNonNullableFields, CreatePickupLocationResponse$1 & CreatePickupLocationResponseNonNullableFields$1>;
34489
+ declare function getPickupLocation(): __PublicMethodMetaInfo$8<'GET', {
34470
34490
  pickupLocationId: string;
34471
34491
  }, GetPickupLocationRequest, GetPickupLocationRequest$1, GetPickupLocationResponse & GetPickupLocationResponseNonNullableFields, GetPickupLocationResponse$1 & GetPickupLocationResponseNonNullableFields$1>;
34472
- declare function updatePickupLocation(): __PublicMethodMetaInfo$6<'PATCH', {
34492
+ declare function updatePickupLocation(): __PublicMethodMetaInfo$8<'PATCH', {
34473
34493
  pickupLocationId: string;
34474
34494
  }, UpdatePickupLocationRequest, UpdatePickupLocationRequest$1, UpdatePickupLocationResponse & UpdatePickupLocationResponseNonNullableFields, UpdatePickupLocationResponse$1 & UpdatePickupLocationResponseNonNullableFields$1>;
34475
- declare function deletePickupLocation(): __PublicMethodMetaInfo$6<'DELETE', {
34495
+ declare function deletePickupLocation(): __PublicMethodMetaInfo$8<'DELETE', {
34476
34496
  pickupLocationId: string;
34477
34497
  }, DeletePickupLocationRequest, DeletePickupLocationRequest$1, DeletePickupLocationResponse, DeletePickupLocationResponse$1>;
34478
- declare function queryPickupLocation(): __PublicMethodMetaInfo$6<'POST', {}, QueryPickupLocationRequest, QueryPickupLocationRequest$1, QueryPickupLocationResponse & QueryPickupLocationResponseNonNullableFields, QueryPickupLocationResponse$1 & QueryPickupLocationResponseNonNullableFields$1>;
34479
- declare function addDeliveryRegion(): __PublicMethodMetaInfo$6<'POST', {
34498
+ declare function queryPickupLocation(): __PublicMethodMetaInfo$8<'POST', {}, QueryPickupLocationRequest, QueryPickupLocationRequest$1, QueryPickupLocationResponse & QueryPickupLocationResponseNonNullableFields, QueryPickupLocationResponse$1 & QueryPickupLocationResponseNonNullableFields$1>;
34499
+ declare function addDeliveryRegion(): __PublicMethodMetaInfo$8<'POST', {
34480
34500
  pickupLocationId: string;
34481
34501
  }, AddDeliveryRegionRequest, AddDeliveryRegionRequest$1, AddDeliveryRegionResponse & AddDeliveryRegionResponseNonNullableFields, AddDeliveryRegionResponse$1 & AddDeliveryRegionResponseNonNullableFields$1>;
34482
- declare function removeDeliveryRegion(): __PublicMethodMetaInfo$6<'POST', {
34502
+ declare function removeDeliveryRegion(): __PublicMethodMetaInfo$8<'POST', {
34483
34503
  pickupLocationId: string;
34484
34504
  }, RemoveDeliveryRegionRequest, RemoveDeliveryRegionRequest$1, RemoveDeliveryRegionResponse & RemoveDeliveryRegionResponseNonNullableFields, RemoveDeliveryRegionResponse$1 & RemoveDeliveryRegionResponseNonNullableFields$1>;
34485
- declare function bulkCreatePickupLocation(): __PublicMethodMetaInfo$6<'POST', {}, BulkCreatePickupLocationRequest, BulkCreatePickupLocationRequest$1, BulkCreatePickupLocationResponse & BulkCreatePickupLocationResponseNonNullableFields, BulkCreatePickupLocationResponse$1 & BulkCreatePickupLocationResponseNonNullableFields$1>;
34486
- declare function bulkUpdatePickupLocation(): __PublicMethodMetaInfo$6<'PATCH', {}, BulkUpdatePickupLocationRequest, BulkUpdatePickupLocationRequest$1, BulkUpdatePickupLocationResponse & BulkUpdatePickupLocationResponseNonNullableFields, BulkUpdatePickupLocationResponse$1 & BulkUpdatePickupLocationResponseNonNullableFields$1>;
34487
- declare function bulkDeletePickupLocation(): __PublicMethodMetaInfo$6<'DELETE', {}, BulkDeletePickupLocationRequest, BulkDeletePickupLocationRequest$1, BulkDeletePickupLocationResponse & BulkDeletePickupLocationResponseNonNullableFields, BulkDeletePickupLocationResponse$1 & BulkDeletePickupLocationResponseNonNullableFields$1>;
34505
+ declare function bulkCreatePickupLocation(): __PublicMethodMetaInfo$8<'POST', {}, BulkCreatePickupLocationRequest, BulkCreatePickupLocationRequest$1, BulkCreatePickupLocationResponse & BulkCreatePickupLocationResponseNonNullableFields, BulkCreatePickupLocationResponse$1 & BulkCreatePickupLocationResponseNonNullableFields$1>;
34506
+ declare function bulkUpdatePickupLocation(): __PublicMethodMetaInfo$8<'PATCH', {}, BulkUpdatePickupLocationRequest, BulkUpdatePickupLocationRequest$1, BulkUpdatePickupLocationResponse & BulkUpdatePickupLocationResponseNonNullableFields, BulkUpdatePickupLocationResponse$1 & BulkUpdatePickupLocationResponseNonNullableFields$1>;
34507
+ declare function bulkDeletePickupLocation(): __PublicMethodMetaInfo$8<'DELETE', {}, BulkDeletePickupLocationRequest, BulkDeletePickupLocationRequest$1, BulkDeletePickupLocationResponse & BulkDeletePickupLocationResponseNonNullableFields, BulkDeletePickupLocationResponse$1 & BulkDeletePickupLocationResponseNonNullableFields$1>;
34488
34508
 
34489
- declare const meta$6_addDeliveryRegion: typeof addDeliveryRegion;
34490
- declare const meta$6_bulkCreatePickupLocation: typeof bulkCreatePickupLocation;
34491
- declare const meta$6_bulkDeletePickupLocation: typeof bulkDeletePickupLocation;
34492
- declare const meta$6_bulkUpdatePickupLocation: typeof bulkUpdatePickupLocation;
34493
- declare const meta$6_createPickupLocation: typeof createPickupLocation;
34494
- declare const meta$6_deletePickupLocation: typeof deletePickupLocation;
34495
- declare const meta$6_getPickupLocation: typeof getPickupLocation;
34496
- declare const meta$6_queryPickupLocation: typeof queryPickupLocation;
34497
- declare const meta$6_removeDeliveryRegion: typeof removeDeliveryRegion;
34498
- declare const meta$6_updatePickupLocation: typeof updatePickupLocation;
34499
- declare namespace meta$6 {
34500
- export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_addDeliveryRegion as addDeliveryRegion, meta$6_bulkCreatePickupLocation as bulkCreatePickupLocation, meta$6_bulkDeletePickupLocation as bulkDeletePickupLocation, meta$6_bulkUpdatePickupLocation as bulkUpdatePickupLocation, meta$6_createPickupLocation as createPickupLocation, meta$6_deletePickupLocation as deletePickupLocation, meta$6_getPickupLocation as getPickupLocation, meta$6_queryPickupLocation as queryPickupLocation, meta$6_removeDeliveryRegion as removeDeliveryRegion, meta$6_updatePickupLocation as updatePickupLocation };
34509
+ declare const meta$8_addDeliveryRegion: typeof addDeliveryRegion;
34510
+ declare const meta$8_bulkCreatePickupLocation: typeof bulkCreatePickupLocation;
34511
+ declare const meta$8_bulkDeletePickupLocation: typeof bulkDeletePickupLocation;
34512
+ declare const meta$8_bulkUpdatePickupLocation: typeof bulkUpdatePickupLocation;
34513
+ declare const meta$8_createPickupLocation: typeof createPickupLocation;
34514
+ declare const meta$8_deletePickupLocation: typeof deletePickupLocation;
34515
+ declare const meta$8_getPickupLocation: typeof getPickupLocation;
34516
+ declare const meta$8_queryPickupLocation: typeof queryPickupLocation;
34517
+ declare const meta$8_removeDeliveryRegion: typeof removeDeliveryRegion;
34518
+ declare const meta$8_updatePickupLocation: typeof updatePickupLocation;
34519
+ declare namespace meta$8 {
34520
+ export { type __PublicMethodMetaInfo$8 as __PublicMethodMetaInfo, meta$8_addDeliveryRegion as addDeliveryRegion, meta$8_bulkCreatePickupLocation as bulkCreatePickupLocation, meta$8_bulkDeletePickupLocation as bulkDeletePickupLocation, meta$8_bulkUpdatePickupLocation as bulkUpdatePickupLocation, meta$8_createPickupLocation as createPickupLocation, meta$8_deletePickupLocation as deletePickupLocation, meta$8_getPickupLocation as getPickupLocation, meta$8_queryPickupLocation as queryPickupLocation, meta$8_removeDeliveryRegion as removeDeliveryRegion, meta$8_updatePickupLocation as updatePickupLocation };
34501
34521
  }
34502
34522
 
34503
34523
  interface ShippingOption$3 {
@@ -34533,7 +34553,7 @@ interface ShippingOption$3 {
34533
34553
  /** at runtime for a given shipment input, up to one rate (price) should be returned in an option. If more than one rate is valid then we return the lowest one. */
34534
34554
  rates?: ConditionalRates$1[];
34535
34555
  /** Data Extensions */
34536
- extendedFields?: ExtendedFields$3;
34556
+ extendedFields?: ExtendedFields$5;
34537
34557
  }
34538
34558
  interface ConditionalRates$1 {
34539
34559
  /**
@@ -34568,7 +34588,7 @@ declare enum LogicalOperator$1 {
34568
34588
  LT = "LT",
34569
34589
  LTE = "LTE"
34570
34590
  }
34571
- interface ExtendedFields$3 {
34591
+ interface ExtendedFields$5 {
34572
34592
  /**
34573
34593
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
34574
34594
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -34615,7 +34635,7 @@ interface QueryShippingOptionsRequest$1 {
34615
34635
  }
34616
34636
  interface CursorQuery$5 extends CursorQueryPagingMethodOneOf$5 {
34617
34637
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
34618
- cursorPaging?: CursorPaging$5;
34638
+ cursorPaging?: CursorPaging$7;
34619
34639
  /**
34620
34640
  * Filter object in the following format:
34621
34641
  * `"filter" : {
@@ -34629,24 +34649,24 @@ interface CursorQuery$5 extends CursorQueryPagingMethodOneOf$5 {
34629
34649
  * Sort object in the following format:
34630
34650
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
34631
34651
  */
34632
- sort?: Sorting$5[];
34652
+ sort?: Sorting$7[];
34633
34653
  }
34634
34654
  /** @oneof */
34635
34655
  interface CursorQueryPagingMethodOneOf$5 {
34636
34656
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
34637
- cursorPaging?: CursorPaging$5;
34657
+ cursorPaging?: CursorPaging$7;
34638
34658
  }
34639
- interface Sorting$5 {
34659
+ interface Sorting$7 {
34640
34660
  /** Name of the field to sort by. */
34641
34661
  fieldName?: string;
34642
34662
  /** Sort order. */
34643
- order?: SortOrder$5;
34663
+ order?: SortOrder$7;
34644
34664
  }
34645
- declare enum SortOrder$5 {
34665
+ declare enum SortOrder$7 {
34646
34666
  ASC = "ASC",
34647
34667
  DESC = "DESC"
34648
34668
  }
34649
- interface CursorPaging$5 {
34669
+ interface CursorPaging$7 {
34650
34670
  /** Maximum number of items to return in the results. */
34651
34671
  limit?: number | null;
34652
34672
  /**
@@ -34667,7 +34687,7 @@ interface CursorPagingMetadata$5 {
34667
34687
  /** Number of items returned in the response. */
34668
34688
  count?: number | null;
34669
34689
  /** Cursor strings that point to the next page, previous page, or both. */
34670
- cursors?: Cursors$5;
34690
+ cursors?: Cursors$7;
34671
34691
  /**
34672
34692
  * Whether there are more pages to retrieve following the current page.
34673
34693
  *
@@ -34676,7 +34696,7 @@ interface CursorPagingMetadata$5 {
34676
34696
  */
34677
34697
  hasNext?: boolean | null;
34678
34698
  }
34679
- interface Cursors$5 {
34699
+ interface Cursors$7 {
34680
34700
  /** Cursor string pointing to the next page in the list of results. */
34681
34701
  next?: string | null;
34682
34702
  /** Cursor pointing to the previous page in the list of results. */
@@ -34756,7 +34776,7 @@ interface ShippingOption$2 {
34756
34776
  /** at runtime for a given shipment input, up to one rate (price) should be returned in an option. If more than one rate is valid then we return the lowest one. */
34757
34777
  rates?: ConditionalRates[];
34758
34778
  /** Data Extensions */
34759
- extendedFields?: ExtendedFields$2;
34779
+ extendedFields?: ExtendedFields$4;
34760
34780
  }
34761
34781
  interface ConditionalRates {
34762
34782
  /**
@@ -34791,7 +34811,7 @@ declare enum LogicalOperator {
34791
34811
  LT = "LT",
34792
34812
  LTE = "LTE"
34793
34813
  }
34794
- interface ExtendedFields$2 {
34814
+ interface ExtendedFields$4 {
34795
34815
  /**
34796
34816
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
34797
34817
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -34838,7 +34858,7 @@ interface QueryShippingOptionsRequest {
34838
34858
  }
34839
34859
  interface CursorQuery$4 extends CursorQueryPagingMethodOneOf$4 {
34840
34860
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
34841
- cursorPaging?: CursorPaging$4;
34861
+ cursorPaging?: CursorPaging$6;
34842
34862
  /**
34843
34863
  * Filter object in the following format:
34844
34864
  * `"filter" : {
@@ -34852,24 +34872,24 @@ interface CursorQuery$4 extends CursorQueryPagingMethodOneOf$4 {
34852
34872
  * Sort object in the following format:
34853
34873
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
34854
34874
  */
34855
- sort?: Sorting$4[];
34875
+ sort?: Sorting$6[];
34856
34876
  }
34857
34877
  /** @oneof */
34858
34878
  interface CursorQueryPagingMethodOneOf$4 {
34859
34879
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
34860
- cursorPaging?: CursorPaging$4;
34880
+ cursorPaging?: CursorPaging$6;
34861
34881
  }
34862
- interface Sorting$4 {
34882
+ interface Sorting$6 {
34863
34883
  /** Name of the field to sort by. */
34864
34884
  fieldName?: string;
34865
34885
  /** Sort order. */
34866
- order?: SortOrder$4;
34886
+ order?: SortOrder$6;
34867
34887
  }
34868
- declare enum SortOrder$4 {
34888
+ declare enum SortOrder$6 {
34869
34889
  ASC = "ASC",
34870
34890
  DESC = "DESC"
34871
34891
  }
34872
- interface CursorPaging$4 {
34892
+ interface CursorPaging$6 {
34873
34893
  /** Maximum number of items to return in the results. */
34874
34894
  limit?: number | null;
34875
34895
  /**
@@ -34890,7 +34910,7 @@ interface CursorPagingMetadata$4 {
34890
34910
  /** Number of items returned in the response. */
34891
34911
  count?: number | null;
34892
34912
  /** Cursor strings that point to the next page, previous page, or both. */
34893
- cursors?: Cursors$4;
34913
+ cursors?: Cursors$6;
34894
34914
  /**
34895
34915
  * Whether there are more pages to retrieve following the current page.
34896
34916
  *
@@ -34899,7 +34919,7 @@ interface CursorPagingMetadata$4 {
34899
34919
  */
34900
34920
  hasNext?: boolean | null;
34901
34921
  }
34902
- interface Cursors$4 {
34922
+ interface Cursors$6 {
34903
34923
  /** Cursor string pointing to the next page in the list of results. */
34904
34924
  next?: string | null;
34905
34925
  /** Cursor pointing to the previous page in the list of results. */
@@ -34946,7 +34966,7 @@ interface UpdateExtendedFieldsResponseNonNullableFields$2 {
34946
34966
  shippingOption?: ShippingOptionNonNullableFields$2;
34947
34967
  }
34948
34968
 
34949
- type __PublicMethodMetaInfo$5<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
34969
+ type __PublicMethodMetaInfo$7<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
34950
34970
  getUrl: (context: any) => string;
34951
34971
  httpMethod: K;
34952
34972
  path: string;
@@ -34956,28 +34976,28 @@ type __PublicMethodMetaInfo$5<K = string, M = unknown, T = unknown, S = unknown,
34956
34976
  __responseType: Q;
34957
34977
  __originalResponseType: R;
34958
34978
  };
34959
- declare function createShippingOption(): __PublicMethodMetaInfo$5<'POST', {}, CreateShippingOptionRequest, CreateShippingOptionRequest$1, CreateShippingOptionResponse & CreateShippingOptionResponseNonNullableFields, CreateShippingOptionResponse$1 & CreateShippingOptionResponseNonNullableFields$1>;
34960
- declare function getShippingOption(): __PublicMethodMetaInfo$5<'GET', {
34979
+ declare function createShippingOption(): __PublicMethodMetaInfo$7<'POST', {}, CreateShippingOptionRequest, CreateShippingOptionRequest$1, CreateShippingOptionResponse & CreateShippingOptionResponseNonNullableFields, CreateShippingOptionResponse$1 & CreateShippingOptionResponseNonNullableFields$1>;
34980
+ declare function getShippingOption(): __PublicMethodMetaInfo$7<'GET', {
34961
34981
  shippingOptionId: string;
34962
34982
  }, GetShippingOptionRequest, GetShippingOptionRequest$1, GetShippingOptionResponse & GetShippingOptionResponseNonNullableFields, GetShippingOptionResponse$1 & GetShippingOptionResponseNonNullableFields$1>;
34963
- declare function updateShippingOption(): __PublicMethodMetaInfo$5<'PATCH', {
34983
+ declare function updateShippingOption(): __PublicMethodMetaInfo$7<'PATCH', {
34964
34984
  shippingOptionId: string;
34965
34985
  }, UpdateShippingOptionRequest, UpdateShippingOptionRequest$1, UpdateShippingOptionResponse & UpdateShippingOptionResponseNonNullableFields, UpdateShippingOptionResponse$1 & UpdateShippingOptionResponseNonNullableFields$1>;
34966
- declare function deleteShippingOption(): __PublicMethodMetaInfo$5<'DELETE', {
34986
+ declare function deleteShippingOption(): __PublicMethodMetaInfo$7<'DELETE', {
34967
34987
  shippingOptionId: string;
34968
34988
  }, DeleteShippingOptionRequest, DeleteShippingOptionRequest$1, DeleteShippingOptionResponse, DeleteShippingOptionResponse$1>;
34969
- declare function queryShippingOptions(): __PublicMethodMetaInfo$5<'GET', {}, QueryShippingOptionsRequest, QueryShippingOptionsRequest$1, QueryShippingOptionsResponse & QueryShippingOptionsResponseNonNullableFields, QueryShippingOptionsResponse$1 & QueryShippingOptionsResponseNonNullableFields$1>;
34970
- declare function updateExtendedFields$1(): __PublicMethodMetaInfo$5<'POST', {
34989
+ declare function queryShippingOptions(): __PublicMethodMetaInfo$7<'GET', {}, QueryShippingOptionsRequest, QueryShippingOptionsRequest$1, QueryShippingOptionsResponse & QueryShippingOptionsResponseNonNullableFields, QueryShippingOptionsResponse$1 & QueryShippingOptionsResponseNonNullableFields$1>;
34990
+ declare function updateExtendedFields$1(): __PublicMethodMetaInfo$7<'POST', {
34971
34991
  id: string;
34972
34992
  }, UpdateExtendedFieldsRequest$2, UpdateExtendedFieldsRequest$3, UpdateExtendedFieldsResponse$2 & UpdateExtendedFieldsResponseNonNullableFields$2, UpdateExtendedFieldsResponse$3 & UpdateExtendedFieldsResponseNonNullableFields$3>;
34973
34993
 
34974
- declare const meta$5_createShippingOption: typeof createShippingOption;
34975
- declare const meta$5_deleteShippingOption: typeof deleteShippingOption;
34976
- declare const meta$5_getShippingOption: typeof getShippingOption;
34977
- declare const meta$5_queryShippingOptions: typeof queryShippingOptions;
34978
- declare const meta$5_updateShippingOption: typeof updateShippingOption;
34979
- declare namespace meta$5 {
34980
- export { type __PublicMethodMetaInfo$5 as __PublicMethodMetaInfo, meta$5_createShippingOption as createShippingOption, meta$5_deleteShippingOption as deleteShippingOption, meta$5_getShippingOption as getShippingOption, meta$5_queryShippingOptions as queryShippingOptions, updateExtendedFields$1 as updateExtendedFields, meta$5_updateShippingOption as updateShippingOption };
34994
+ declare const meta$7_createShippingOption: typeof createShippingOption;
34995
+ declare const meta$7_deleteShippingOption: typeof deleteShippingOption;
34996
+ declare const meta$7_getShippingOption: typeof getShippingOption;
34997
+ declare const meta$7_queryShippingOptions: typeof queryShippingOptions;
34998
+ declare const meta$7_updateShippingOption: typeof updateShippingOption;
34999
+ declare namespace meta$7 {
35000
+ export { type __PublicMethodMetaInfo$7 as __PublicMethodMetaInfo, meta$7_createShippingOption as createShippingOption, meta$7_deleteShippingOption as deleteShippingOption, meta$7_getShippingOption as getShippingOption, meta$7_queryShippingOptions as queryShippingOptions, updateExtendedFields$1 as updateExtendedFields, meta$7_updateShippingOption as updateShippingOption };
34981
35001
  }
34982
35002
 
34983
35003
  interface ShippoConfiguration$1 {
@@ -35018,7 +35038,7 @@ interface ShippoConfiguration$1 {
35018
35038
  /** Backup weight. */
35019
35039
  backupWeight?: string | null;
35020
35040
  /** Data extensions. */
35021
- extendedFields?: ExtendedFields$1;
35041
+ extendedFields?: ExtendedFields$3;
35022
35042
  }
35023
35043
  interface DomesticServiceSettings$1 {
35024
35044
  /** USPS domestic service. */
@@ -35134,7 +35154,7 @@ interface StreetAddress$5 {
35134
35154
  /** Street name. */
35135
35155
  name?: string;
35136
35156
  }
35137
- interface ExtendedFields$1 {
35157
+ interface ExtendedFields$3 {
35138
35158
  /**
35139
35159
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
35140
35160
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -35182,7 +35202,7 @@ interface QueryShippoConfigurationsRequest$1 {
35182
35202
  }
35183
35203
  interface CursorQuery$3 extends CursorQueryPagingMethodOneOf$3 {
35184
35204
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
35185
- cursorPaging?: CursorPaging$3;
35205
+ cursorPaging?: CursorPaging$5;
35186
35206
  /**
35187
35207
  * Filter object in the following format:
35188
35208
  * `"filter" : {
@@ -35196,24 +35216,24 @@ interface CursorQuery$3 extends CursorQueryPagingMethodOneOf$3 {
35196
35216
  * Sort object in the following format:
35197
35217
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
35198
35218
  */
35199
- sort?: Sorting$3[];
35219
+ sort?: Sorting$5[];
35200
35220
  }
35201
35221
  /** @oneof */
35202
35222
  interface CursorQueryPagingMethodOneOf$3 {
35203
35223
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
35204
- cursorPaging?: CursorPaging$3;
35224
+ cursorPaging?: CursorPaging$5;
35205
35225
  }
35206
- interface Sorting$3 {
35226
+ interface Sorting$5 {
35207
35227
  /** Name of the field to sort by. */
35208
35228
  fieldName?: string;
35209
35229
  /** Sort order. */
35210
- order?: SortOrder$3;
35230
+ order?: SortOrder$5;
35211
35231
  }
35212
- declare enum SortOrder$3 {
35232
+ declare enum SortOrder$5 {
35213
35233
  ASC = "ASC",
35214
35234
  DESC = "DESC"
35215
35235
  }
35216
- interface CursorPaging$3 {
35236
+ interface CursorPaging$5 {
35217
35237
  /** Maximum number of items to return in the results. */
35218
35238
  limit?: number | null;
35219
35239
  /**
@@ -35234,7 +35254,7 @@ interface CursorPagingMetadata$3 {
35234
35254
  /** Number of items returned in the response. */
35235
35255
  count?: number | null;
35236
35256
  /** Cursor strings that point to the next page, previous page, or both. */
35237
- cursors?: Cursors$3;
35257
+ cursors?: Cursors$5;
35238
35258
  /**
35239
35259
  * Whether there are more pages to retrieve following the current page.
35240
35260
  *
@@ -35243,7 +35263,7 @@ interface CursorPagingMetadata$3 {
35243
35263
  */
35244
35264
  hasNext?: boolean | null;
35245
35265
  }
35246
- interface Cursors$3 {
35266
+ interface Cursors$5 {
35247
35267
  /** Cursor string pointing to the next page in the list of results. */
35248
35268
  next?: string | null;
35249
35269
  /** Cursor pointing to the previous page in the list of results. */
@@ -35353,7 +35373,7 @@ interface ShippoConfiguration {
35353
35373
  /** Backup weight. */
35354
35374
  backupWeight?: string | null;
35355
35375
  /** Data extensions. */
35356
- extendedFields?: ExtendedFields;
35376
+ extendedFields?: ExtendedFields$2;
35357
35377
  }
35358
35378
  interface DomesticServiceSettings {
35359
35379
  /** USPS domestic service. */
@@ -35459,7 +35479,7 @@ interface StreetAddress$4 {
35459
35479
  /** Street name. */
35460
35480
  name?: string;
35461
35481
  }
35462
- interface ExtendedFields {
35482
+ interface ExtendedFields$2 {
35463
35483
  /**
35464
35484
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
35465
35485
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -35507,7 +35527,7 @@ interface QueryShippoConfigurationsRequest {
35507
35527
  }
35508
35528
  interface CursorQuery$2 extends CursorQueryPagingMethodOneOf$2 {
35509
35529
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
35510
- cursorPaging?: CursorPaging$2;
35530
+ cursorPaging?: CursorPaging$4;
35511
35531
  /**
35512
35532
  * Filter object in the following format:
35513
35533
  * `"filter" : {
@@ -35521,24 +35541,24 @@ interface CursorQuery$2 extends CursorQueryPagingMethodOneOf$2 {
35521
35541
  * Sort object in the following format:
35522
35542
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
35523
35543
  */
35524
- sort?: Sorting$2[];
35544
+ sort?: Sorting$4[];
35525
35545
  }
35526
35546
  /** @oneof */
35527
35547
  interface CursorQueryPagingMethodOneOf$2 {
35528
35548
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
35529
- cursorPaging?: CursorPaging$2;
35549
+ cursorPaging?: CursorPaging$4;
35530
35550
  }
35531
- interface Sorting$2 {
35551
+ interface Sorting$4 {
35532
35552
  /** Name of the field to sort by. */
35533
35553
  fieldName?: string;
35534
35554
  /** Sort order. */
35535
- order?: SortOrder$2;
35555
+ order?: SortOrder$4;
35536
35556
  }
35537
- declare enum SortOrder$2 {
35557
+ declare enum SortOrder$4 {
35538
35558
  ASC = "ASC",
35539
35559
  DESC = "DESC"
35540
35560
  }
35541
- interface CursorPaging$2 {
35561
+ interface CursorPaging$4 {
35542
35562
  /** Maximum number of items to return in the results. */
35543
35563
  limit?: number | null;
35544
35564
  /**
@@ -35559,7 +35579,7 @@ interface CursorPagingMetadata$2 {
35559
35579
  /** Number of items returned in the response. */
35560
35580
  count?: number | null;
35561
35581
  /** Cursor strings that point to the next page, previous page, or both. */
35562
- cursors?: Cursors$2;
35582
+ cursors?: Cursors$4;
35563
35583
  /**
35564
35584
  * Whether there are more pages to retrieve following the current page.
35565
35585
  *
@@ -35568,7 +35588,7 @@ interface CursorPagingMetadata$2 {
35568
35588
  */
35569
35589
  hasNext?: boolean | null;
35570
35590
  }
35571
- interface Cursors$2 {
35591
+ interface Cursors$4 {
35572
35592
  /** Cursor string pointing to the next page in the list of results. */
35573
35593
  next?: string | null;
35574
35594
  /** Cursor pointing to the previous page in the list of results. */
@@ -35640,7 +35660,7 @@ interface UpdateExtendedFieldsResponseNonNullableFields {
35640
35660
  shippoConfiguration?: ShippoConfigurationNonNullableFields;
35641
35661
  }
35642
35662
 
35643
- type __PublicMethodMetaInfo$4<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
35663
+ type __PublicMethodMetaInfo$6<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
35644
35664
  getUrl: (context: any) => string;
35645
35665
  httpMethod: K;
35646
35666
  path: string;
@@ -35650,29 +35670,29 @@ type __PublicMethodMetaInfo$4<K = string, M = unknown, T = unknown, S = unknown,
35650
35670
  __responseType: Q;
35651
35671
  __originalResponseType: R;
35652
35672
  };
35653
- declare function createShippoConfiguration(): __PublicMethodMetaInfo$4<'POST', {}, CreateShippoConfigurationRequest, CreateShippoConfigurationRequest$1, CreateShippoConfigurationResponse & CreateShippoConfigurationResponseNonNullableFields, CreateShippoConfigurationResponse$1 & CreateShippoConfigurationResponseNonNullableFields$1>;
35654
- declare function getShippoConfiguration(): __PublicMethodMetaInfo$4<'GET', {
35673
+ declare function createShippoConfiguration(): __PublicMethodMetaInfo$6<'POST', {}, CreateShippoConfigurationRequest, CreateShippoConfigurationRequest$1, CreateShippoConfigurationResponse & CreateShippoConfigurationResponseNonNullableFields, CreateShippoConfigurationResponse$1 & CreateShippoConfigurationResponseNonNullableFields$1>;
35674
+ declare function getShippoConfiguration(): __PublicMethodMetaInfo$6<'GET', {
35655
35675
  shippoConfigurationId: string;
35656
35676
  }, GetShippoConfigurationRequest, GetShippoConfigurationRequest$1, GetShippoConfigurationResponse & GetShippoConfigurationResponseNonNullableFields, GetShippoConfigurationResponse$1 & GetShippoConfigurationResponseNonNullableFields$1>;
35657
- declare function updateShippoConfiguration(): __PublicMethodMetaInfo$4<'PATCH', {
35677
+ declare function updateShippoConfiguration(): __PublicMethodMetaInfo$6<'PATCH', {
35658
35678
  shippoConfigurationId: string;
35659
35679
  }, UpdateShippoConfigurationRequest, UpdateShippoConfigurationRequest$1, UpdateShippoConfigurationResponse & UpdateShippoConfigurationResponseNonNullableFields, UpdateShippoConfigurationResponse$1 & UpdateShippoConfigurationResponseNonNullableFields$1>;
35660
- declare function deleteShippoConfiguration(): __PublicMethodMetaInfo$4<'DELETE', {
35680
+ declare function deleteShippoConfiguration(): __PublicMethodMetaInfo$6<'DELETE', {
35661
35681
  shippoConfigurationId: string;
35662
35682
  }, DeleteShippoConfigurationRequest, DeleteShippoConfigurationRequest$1, DeleteShippoConfigurationResponse, DeleteShippoConfigurationResponse$1>;
35663
- declare function queryShippoConfigurations(): __PublicMethodMetaInfo$4<'GET', {}, QueryShippoConfigurationsRequest, QueryShippoConfigurationsRequest$1, QueryShippoConfigurationsResponse & QueryShippoConfigurationsResponseNonNullableFields, QueryShippoConfigurationsResponse$1 & QueryShippoConfigurationsResponseNonNullableFields$1>;
35664
- declare function updateExtendedFields(): __PublicMethodMetaInfo$4<'POST', {
35683
+ declare function queryShippoConfigurations(): __PublicMethodMetaInfo$6<'GET', {}, QueryShippoConfigurationsRequest, QueryShippoConfigurationsRequest$1, QueryShippoConfigurationsResponse & QueryShippoConfigurationsResponseNonNullableFields, QueryShippoConfigurationsResponse$1 & QueryShippoConfigurationsResponseNonNullableFields$1>;
35684
+ declare function updateExtendedFields(): __PublicMethodMetaInfo$6<'POST', {
35665
35685
  id: string;
35666
35686
  }, UpdateExtendedFieldsRequest, UpdateExtendedFieldsRequest$1, UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields, UpdateExtendedFieldsResponse$1 & UpdateExtendedFieldsResponseNonNullableFields$1>;
35667
35687
 
35668
- declare const meta$4_createShippoConfiguration: typeof createShippoConfiguration;
35669
- declare const meta$4_deleteShippoConfiguration: typeof deleteShippoConfiguration;
35670
- declare const meta$4_getShippoConfiguration: typeof getShippoConfiguration;
35671
- declare const meta$4_queryShippoConfigurations: typeof queryShippoConfigurations;
35672
- declare const meta$4_updateExtendedFields: typeof updateExtendedFields;
35673
- declare const meta$4_updateShippoConfiguration: typeof updateShippoConfiguration;
35674
- declare namespace meta$4 {
35675
- export { type __PublicMethodMetaInfo$4 as __PublicMethodMetaInfo, meta$4_createShippoConfiguration as createShippoConfiguration, meta$4_deleteShippoConfiguration as deleteShippoConfiguration, meta$4_getShippoConfiguration as getShippoConfiguration, meta$4_queryShippoConfigurations as queryShippoConfigurations, meta$4_updateExtendedFields as updateExtendedFields, meta$4_updateShippoConfiguration as updateShippoConfiguration };
35688
+ declare const meta$6_createShippoConfiguration: typeof createShippoConfiguration;
35689
+ declare const meta$6_deleteShippoConfiguration: typeof deleteShippoConfiguration;
35690
+ declare const meta$6_getShippoConfiguration: typeof getShippoConfiguration;
35691
+ declare const meta$6_queryShippoConfigurations: typeof queryShippoConfigurations;
35692
+ declare const meta$6_updateExtendedFields: typeof updateExtendedFields;
35693
+ declare const meta$6_updateShippoConfiguration: typeof updateShippoConfiguration;
35694
+ declare namespace meta$6 {
35695
+ export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_createShippoConfiguration as createShippoConfiguration, meta$6_deleteShippoConfiguration as deleteShippoConfiguration, meta$6_getShippoConfiguration as getShippoConfiguration, meta$6_queryShippoConfigurations as queryShippoConfigurations, meta$6_updateExtendedFields as updateExtendedFields, meta$6_updateShippoConfiguration as updateShippoConfiguration };
35676
35696
  }
35677
35697
 
35678
35698
  interface CalculateTotalsRequest$1 extends CalculateTotalsRequestCouponOneOf$1, CalculateTotalsRequestGiftCardOneOf$1 {
@@ -37967,7 +37987,7 @@ interface CalculateTotalsResponseNonNullableFields {
37967
37987
  totalAfterGiftCard?: MultiCurrencyPriceNonNullableFields;
37968
37988
  }
37969
37989
 
37970
- type __PublicMethodMetaInfo$3<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
37990
+ type __PublicMethodMetaInfo$5<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
37971
37991
  getUrl: (context: any) => string;
37972
37992
  httpMethod: K;
37973
37993
  path: string;
@@ -37977,11 +37997,11 @@ type __PublicMethodMetaInfo$3<K = string, M = unknown, T = unknown, S = unknown,
37977
37997
  __responseType: Q;
37978
37998
  __originalResponseType: R;
37979
37999
  };
37980
- declare function calculateTotals(): __PublicMethodMetaInfo$3<'POST', {}, CalculateTotalsRequest, CalculateTotalsRequest$1, CalculateTotalsResponse & CalculateTotalsResponseNonNullableFields, CalculateTotalsResponse$1 & CalculateTotalsResponseNonNullableFields$1>;
38000
+ declare function calculateTotals(): __PublicMethodMetaInfo$5<'POST', {}, CalculateTotalsRequest, CalculateTotalsRequest$1, CalculateTotalsResponse & CalculateTotalsResponseNonNullableFields, CalculateTotalsResponse$1 & CalculateTotalsResponseNonNullableFields$1>;
37981
38001
 
37982
- declare const meta$3_calculateTotals: typeof calculateTotals;
37983
- declare namespace meta$3 {
37984
- export { type __PublicMethodMetaInfo$3 as __PublicMethodMetaInfo, meta$3_calculateTotals as calculateTotals };
38002
+ declare const meta$5_calculateTotals: typeof calculateTotals;
38003
+ declare namespace meta$5 {
38004
+ export { type __PublicMethodMetaInfo$5 as __PublicMethodMetaInfo, meta$5_calculateTotals as calculateTotals };
37985
38005
  }
37986
38006
 
37987
38007
  interface ListCurrenciesRequest$1 {
@@ -38108,7 +38128,7 @@ interface ConversionRateResponseNonNullableFields {
38108
38128
  rate?: DecimalValueNonNullableFields;
38109
38129
  }
38110
38130
 
38111
- type __PublicMethodMetaInfo$2<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
38131
+ type __PublicMethodMetaInfo$4<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
38112
38132
  getUrl: (context: any) => string;
38113
38133
  httpMethod: K;
38114
38134
  path: string;
@@ -38118,21 +38138,21 @@ type __PublicMethodMetaInfo$2<K = string, M = unknown, T = unknown, S = unknown,
38118
38138
  __responseType: Q;
38119
38139
  __originalResponseType: R;
38120
38140
  };
38121
- declare function listCurrencies(): __PublicMethodMetaInfo$2<'GET', {}, ListCurrenciesRequest, ListCurrenciesRequest$1, ListCurrenciesResponse & ListCurrenciesResponseNonNullableFields, ListCurrenciesResponse$1 & ListCurrenciesResponseNonNullableFields$1>;
38122
- declare function convertCurrency(): __PublicMethodMetaInfo$2<'POST', {
38141
+ declare function listCurrencies(): __PublicMethodMetaInfo$4<'GET', {}, ListCurrenciesRequest, ListCurrenciesRequest$1, ListCurrenciesResponse & ListCurrenciesResponseNonNullableFields, ListCurrenciesResponse$1 & ListCurrenciesResponseNonNullableFields$1>;
38142
+ declare function convertCurrency(): __PublicMethodMetaInfo$4<'POST', {
38123
38143
  from: string;
38124
38144
  to: string;
38125
38145
  }, ConvertCurrencyRequest, ConvertCurrencyRequest$1, ConvertCurrencyResponse & ConvertCurrencyResponseNonNullableFields, ConvertCurrencyResponse$1 & ConvertCurrencyResponseNonNullableFields$1>;
38126
- declare function getConversionRate(): __PublicMethodMetaInfo$2<'GET', {
38146
+ declare function getConversionRate(): __PublicMethodMetaInfo$4<'GET', {
38127
38147
  from: string;
38128
38148
  to: string;
38129
38149
  }, ConversionRateRequest, ConversionRateRequest$1, ConversionRateResponse & ConversionRateResponseNonNullableFields, ConversionRateResponse$1 & ConversionRateResponseNonNullableFields$1>;
38130
38150
 
38131
- declare const meta$2_convertCurrency: typeof convertCurrency;
38132
- declare const meta$2_getConversionRate: typeof getConversionRate;
38133
- declare const meta$2_listCurrencies: typeof listCurrencies;
38134
- declare namespace meta$2 {
38135
- export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, meta$2_convertCurrency as convertCurrency, meta$2_getConversionRate as getConversionRate, meta$2_listCurrencies as listCurrencies };
38151
+ declare const meta$4_convertCurrency: typeof convertCurrency;
38152
+ declare const meta$4_getConversionRate: typeof getConversionRate;
38153
+ declare const meta$4_listCurrencies: typeof listCurrencies;
38154
+ declare namespace meta$4 {
38155
+ export { type __PublicMethodMetaInfo$4 as __PublicMethodMetaInfo, meta$4_convertCurrency as convertCurrency, meta$4_getConversionRate as getConversionRate, meta$4_listCurrencies as listCurrencies };
38136
38156
  }
38137
38157
 
38138
38158
  interface DeliverableItem$1 {
@@ -38986,6 +39006,920 @@ interface GetDeliverySolutionsResponseNonNullableFields {
38986
39006
  errors: DeliveryCarrierErrorNonNullableFields[];
38987
39007
  }
38988
39008
 
39009
+ type __PublicMethodMetaInfo$3<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
39010
+ getUrl: (context: any) => string;
39011
+ httpMethod: K;
39012
+ path: string;
39013
+ pathParams: M;
39014
+ __requestType: T;
39015
+ __originalRequestType: S;
39016
+ __responseType: Q;
39017
+ __originalResponseType: R;
39018
+ };
39019
+ declare function getDeliverySolutions(): __PublicMethodMetaInfo$3<'POST', {}, GetDeliverySolutionsRequest, GetDeliverySolutionsRequest$1, GetDeliverySolutionsResponse & GetDeliverySolutionsResponseNonNullableFields, GetDeliverySolutionsResponse$1 & GetDeliverySolutionsResponseNonNullableFields$1>;
39020
+
39021
+ declare const meta$3_getDeliverySolutions: typeof getDeliverySolutions;
39022
+ declare namespace meta$3 {
39023
+ export { type __PublicMethodMetaInfo$3 as __PublicMethodMetaInfo, meta$3_getDeliverySolutions as getDeliverySolutions };
39024
+ }
39025
+
39026
+ /**
39027
+ * Tip settings define how tips are calculated and distributed among staff. When
39028
+ * Wix Tips is installed, default settings are automatically created. You can't
39029
+ * delete these default settings but you can update them. Creating additional
39030
+ * settings allows business owners to customize tip screens for different payment
39031
+ * terminals or set specific presets for various products or services.
39032
+ */
39033
+ interface TipSettings$1 extends TipSettingsIdentifierOneOf$1 {
39034
+ /**
39035
+ * ID of the [location](https://dev.wix.com/docs/rest/business-management/locations/location-object)
39036
+ * for which the tip settings apply.
39037
+ */
39038
+ locationId?: string | null;
39039
+ /**
39040
+ * ID of the payment terminal for which the tip settings apply. Wix Tips doesn't
39041
+ * validate the ID you provide.
39042
+ *
39043
+ * Max: 30 characters
39044
+ */
39045
+ paymentTerminalId?: string | null;
39046
+ /**
39047
+ * ID of the Wix user for whom the tip settings apply. For example, the site owner or a
39048
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39049
+ */
39050
+ userId?: string | null;
39051
+ /**
39052
+ * ID of the tip settings.
39053
+ * @readonly
39054
+ */
39055
+ id?: string | null;
39056
+ /**
39057
+ * Tip type.
39058
+ *
39059
+ * Supported values:
39060
+ * + `UNKNOWN_TIP_TYPE`: There is no information about the tip type.
39061
+ * + `PERCENTAGE`: The tip is calculated as a percentage of the subtotal for all related line items.
39062
+ * + `AMOUNT`: The tip is a fixed amount.
39063
+ */
39064
+ tipType?: TipType$3;
39065
+ /**
39066
+ * Information about the tip choices that Wix Tips displays to customers during the
39067
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39068
+ *
39069
+ * Min: `1` preset
39070
+ * Max: `3` presets
39071
+ */
39072
+ presets?: Preset$1[];
39073
+ /**
39074
+ * Whether customer are allowed to tip during the
39075
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39076
+ *
39077
+ * Default: `true`
39078
+ */
39079
+ allowCustomerTip?: boolean | null;
39080
+ /**
39081
+ * Whether the business owners are given the option to add a tip during the
39082
+ * payment collection flow in their dashboard.
39083
+ *
39084
+ * Default: `true`
39085
+ */
39086
+ allowBusinessTipAtPayment?: boolean | null;
39087
+ /**
39088
+ * Whether customers can enter a custom tip amount. If set to `false`, customers
39089
+ * can only select a tip value from the available `presets` and can't enter a
39090
+ * custom amount.
39091
+ *
39092
+ * Default: `true`
39093
+ */
39094
+ allowCustomAmount?: boolean | null;
39095
+ /**
39096
+ * Whether business owners are allowed to edit tip distributions. If set to
39097
+ * `false`, owners can't edit distributions after they were created.
39098
+ *
39099
+ * Default: `true`
39100
+ */
39101
+ allowEditDistribution?: boolean | null;
39102
+ /**
39103
+ * How the tip is distributed among staff.
39104
+ *
39105
+ * Supported values:
39106
+ * `UNKNOWN_SPLIT_METHOD`: There is no information about the staff distribution method.
39107
+ * `EQUAL`: The tip is distributed equally among all staff.
39108
+ * `PROPORTIONAL`: The tip is distributed proportionally among staff.
39109
+ */
39110
+ staffDistributionMethod?: StaffDistributionMethod$1;
39111
+ /**
39112
+ * Revision number, which increments by 1 each time `tipSettings` object is
39113
+ * updated. To prevent conflicting changes, the current revision must be passed
39114
+ * when updating `tipSettings`. Ignored when creating a `tipSettings` object.
39115
+ * @readonly
39116
+ */
39117
+ revision?: string | null;
39118
+ /**
39119
+ * Date and time the tip settings were created in
39120
+ * `YYYY-MM-DDThh:mm:ss.sssZ` format.
39121
+ * @readonly
39122
+ */
39123
+ createdDate?: Date | null;
39124
+ /**
39125
+ * Date and time the tip settings were last updated
39126
+ * `YYYY-MM-DDThh:mm:ss.sssZ` format.
39127
+ * @readonly
39128
+ */
39129
+ updatedDate?: Date | null;
39130
+ /**
39131
+ * Whether these are the default tip settings. Wix Tips automatically creates
39132
+ * the default settings during the app's installation. You can't delete these
39133
+ * default settings but you can update them. Wix Tips uses the default settings
39134
+ * to calculate tips, unless you specify other settings.
39135
+ * @readonly
39136
+ */
39137
+ default?: boolean | null;
39138
+ /**
39139
+ * ID of the app that has created the settings. See the list of app IDs for
39140
+ * [Wix business solutions](https://dev.wix.com/docs/rest/articles/getting-started/wix-business-solutions).
39141
+ */
39142
+ appId?: string | null;
39143
+ /**
39144
+ * Custom field data for the `tipSettings` object. Extended fields must be
39145
+ * configured in the app dashboard before they can be accessed with API calls.
39146
+ */
39147
+ extendedFields?: ExtendedFields$1;
39148
+ }
39149
+ /** @oneof */
39150
+ interface TipSettingsIdentifierOneOf$1 {
39151
+ /**
39152
+ * ID of the [location](https://dev.wix.com/docs/rest/business-management/locations/location-object)
39153
+ * for which the tip settings apply.
39154
+ */
39155
+ locationId?: string | null;
39156
+ /**
39157
+ * ID of the payment terminal for which the tip settings apply. Wix Tips doesn't
39158
+ * validate the ID you provide.
39159
+ *
39160
+ * Max: 30 characters
39161
+ */
39162
+ paymentTerminalId?: string | null;
39163
+ /**
39164
+ * ID of the Wix user for whom the tip settings apply. For example, the site owner or a
39165
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39166
+ */
39167
+ userId?: string | null;
39168
+ }
39169
+ declare enum TipType$3 {
39170
+ /** There is no information about the tip type. */
39171
+ UNKNOWN_TIP_TYPE = "UNKNOWN_TIP_TYPE",
39172
+ /** The tip is calculated as a percentage of the subtotal of all related line items. */
39173
+ PERCENTAGE = "PERCENTAGE",
39174
+ /** The tip is a fixed amount. */
39175
+ AMOUNT = "AMOUNT"
39176
+ }
39177
+ interface Preset$1 {
39178
+ /**
39179
+ * Value of the preset tip choice that's displayed to customers in the
39180
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39181
+ * For example, `5`, `10`, and `15` percent or `1`, `3`, and `5` USD.
39182
+ *
39183
+ * Min: `0`
39184
+ */
39185
+ value?: number | null;
39186
+ /**
39187
+ * Whether this tip choice value is the dafault preset that's highlighted automatically in the
39188
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39189
+ *
39190
+ * Default: `false`
39191
+ */
39192
+ default?: boolean | null;
39193
+ }
39194
+ declare enum StaffDistributionMethod$1 {
39195
+ /** There is no information about the staff distribution method. */
39196
+ UNKNOWN_SPLIT_METHOD = "UNKNOWN_SPLIT_METHOD",
39197
+ /** All staff receive an equal amount of the tip. */
39198
+ EQUAL = "EQUAL",
39199
+ /** Staff receive a proportional amount of the tip. */
39200
+ PROPORTIONAL = "PROPORTIONAL"
39201
+ }
39202
+ interface ExtendedFields$1 {
39203
+ /**
39204
+ * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
39205
+ * The value of each key is structured according to the schema defined when the extended fields were configured.
39206
+ *
39207
+ * You can only access fields for which you have the appropriate permissions.
39208
+ *
39209
+ * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
39210
+ */
39211
+ namespaces?: Record<string, Record<string, any>>;
39212
+ }
39213
+ interface QueryTipSettingsRequest$1 {
39214
+ /** WQL expression */
39215
+ query: QueryV2$1;
39216
+ }
39217
+ interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
39218
+ /** Paging options to limit and skip the number of items. */
39219
+ paging?: Paging$1;
39220
+ /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
39221
+ cursorPaging?: CursorPaging$3;
39222
+ /**
39223
+ * Filter object in the following format:
39224
+ * `"filter" : {
39225
+ * "fieldName1": "value1",
39226
+ * "fieldName2":{"$operator":"value2"}
39227
+ * }`
39228
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
39229
+ */
39230
+ filter?: Record<string, any> | null;
39231
+ /**
39232
+ * Sort object in the following format:
39233
+ * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
39234
+ */
39235
+ sort?: Sorting$3[];
39236
+ /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
39237
+ fields?: string[];
39238
+ /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
39239
+ fieldsets?: string[];
39240
+ }
39241
+ /** @oneof */
39242
+ interface QueryV2PagingMethodOneOf$1 {
39243
+ /** Paging options to limit and skip the number of items. */
39244
+ paging?: Paging$1;
39245
+ /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
39246
+ cursorPaging?: CursorPaging$3;
39247
+ }
39248
+ interface Sorting$3 {
39249
+ /** Name of the field to sort by. */
39250
+ fieldName?: string;
39251
+ /** Sort order. */
39252
+ order?: SortOrder$3;
39253
+ }
39254
+ declare enum SortOrder$3 {
39255
+ ASC = "ASC",
39256
+ DESC = "DESC"
39257
+ }
39258
+ interface Paging$1 {
39259
+ /** Number of items to load. */
39260
+ limit?: number | null;
39261
+ /** Number of items to skip in the current sort order. */
39262
+ offset?: number | null;
39263
+ }
39264
+ interface CursorPaging$3 {
39265
+ /** Maximum number of items to return in the results. */
39266
+ limit?: number | null;
39267
+ /**
39268
+ * Pointer to the next or previous page in the list of results.
39269
+ *
39270
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
39271
+ * Not relevant for the first request.
39272
+ */
39273
+ cursor?: string | null;
39274
+ }
39275
+ interface QueryTipSettingsResponse$1 {
39276
+ /** Retrieved `tipSettings` objects. */
39277
+ tipSettings?: TipSettings$1[];
39278
+ /** Metadate for the paged set of retrieved `tipSettings` objects. */
39279
+ pagingMetadata?: PagingMetadataV2$1;
39280
+ }
39281
+ interface PagingMetadataV2$1 {
39282
+ /** Number of items returned in the response. */
39283
+ count?: number | null;
39284
+ /** Offset that was requested. */
39285
+ offset?: number | null;
39286
+ /** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
39287
+ total?: number | null;
39288
+ /** Flag that indicates the server failed to calculate the `total` field. */
39289
+ tooManyToCount?: boolean | null;
39290
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
39291
+ cursors?: Cursors$3;
39292
+ }
39293
+ interface Cursors$3 {
39294
+ /** Cursor string pointing to the next page in the list of results. */
39295
+ next?: string | null;
39296
+ /** Cursor pointing to the previous page in the list of results. */
39297
+ prev?: string | null;
39298
+ }
39299
+ interface UpdateTipSettingsRequest$1 {
39300
+ /** Tip settings to update. */
39301
+ tipSettings: TipSettings$1;
39302
+ }
39303
+ interface UpdateTipSettingsResponse$1 {
39304
+ /** Updated tip settings. */
39305
+ tipSettings?: TipSettings$1;
39306
+ }
39307
+ interface CreateTipSettingsRequest$1 {
39308
+ /** Tip settings to create. */
39309
+ tipSettings: TipSettings$1;
39310
+ }
39311
+ interface CreateTipSettingsResponse$1 {
39312
+ /** Created tip settings. */
39313
+ tipSettings?: TipSettings$1;
39314
+ }
39315
+ interface CreateDefaultTipSettingsRequest$1 {
39316
+ /** Dafault tip settings to create. */
39317
+ tipSettings: TipSettings$1;
39318
+ }
39319
+ interface CreateDefaultTipSettingsResponse$1 {
39320
+ /** Created default tip settings. */
39321
+ tipSettings?: TipSettings$1;
39322
+ }
39323
+ interface DeleteTipSettingsRequest$1 {
39324
+ /** ID of the `tipSettings` object to delete. */
39325
+ tipSettingsId: string | null;
39326
+ }
39327
+ interface DeleteTipSettingsResponse$1 {
39328
+ }
39329
+ interface TipSettingsNonNullableFields$1 {
39330
+ tipType: TipType$3;
39331
+ staffDistributionMethod: StaffDistributionMethod$1;
39332
+ }
39333
+ interface QueryTipSettingsResponseNonNullableFields$1 {
39334
+ tipSettings: TipSettingsNonNullableFields$1[];
39335
+ }
39336
+ interface UpdateTipSettingsResponseNonNullableFields$1 {
39337
+ tipSettings?: TipSettingsNonNullableFields$1;
39338
+ }
39339
+ interface CreateTipSettingsResponseNonNullableFields$1 {
39340
+ tipSettings?: TipSettingsNonNullableFields$1;
39341
+ }
39342
+ interface CreateDefaultTipSettingsResponseNonNullableFields$1 {
39343
+ tipSettings?: TipSettingsNonNullableFields$1;
39344
+ }
39345
+
39346
+ /**
39347
+ * Tip settings define how tips are calculated and distributed among staff. When
39348
+ * Wix Tips is installed, default settings are automatically created. You can't
39349
+ * delete these default settings but you can update them. Creating additional
39350
+ * settings allows business owners to customize tip screens for different payment
39351
+ * terminals or set specific presets for various products or services.
39352
+ */
39353
+ interface TipSettings extends TipSettingsIdentifierOneOf {
39354
+ /**
39355
+ * ID of the [location](https://dev.wix.com/docs/rest/business-management/locations/location-object)
39356
+ * for which the tip settings apply.
39357
+ */
39358
+ locationId?: string | null;
39359
+ /**
39360
+ * ID of the payment terminal for which the tip settings apply. Wix Tips doesn't
39361
+ * validate the ID you provide.
39362
+ *
39363
+ * Max: 30 characters
39364
+ */
39365
+ paymentTerminalId?: string | null;
39366
+ /**
39367
+ * ID of the Wix user for whom the tip settings apply. For example, the site owner or a
39368
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39369
+ */
39370
+ userId?: string | null;
39371
+ /**
39372
+ * ID of the tip settings.
39373
+ * @readonly
39374
+ */
39375
+ _id?: string | null;
39376
+ /**
39377
+ * Tip type.
39378
+ *
39379
+ * Supported values:
39380
+ * + `UNKNOWN_TIP_TYPE`: There is no information about the tip type.
39381
+ * + `PERCENTAGE`: The tip is calculated as a percentage of the subtotal for all related line items.
39382
+ * + `AMOUNT`: The tip is a fixed amount.
39383
+ */
39384
+ tipType?: TipType$2;
39385
+ /**
39386
+ * Information about the tip choices that Wix Tips displays to customers during the
39387
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39388
+ *
39389
+ * Min: `1` preset
39390
+ * Max: `3` presets
39391
+ */
39392
+ presets?: Preset[];
39393
+ /**
39394
+ * Whether customer are allowed to tip during the
39395
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39396
+ *
39397
+ * Default: `true`
39398
+ */
39399
+ allowCustomerTip?: boolean | null;
39400
+ /**
39401
+ * Whether the business owners are given the option to add a tip during the
39402
+ * payment collection flow in their dashboard.
39403
+ *
39404
+ * Default: `true`
39405
+ */
39406
+ allowBusinessTipAtPayment?: boolean | null;
39407
+ /**
39408
+ * Whether customers can enter a custom tip amount. If set to `false`, customers
39409
+ * can only select a tip value from the available `presets` and can't enter a
39410
+ * custom amount.
39411
+ *
39412
+ * Default: `true`
39413
+ */
39414
+ allowCustomAmount?: boolean | null;
39415
+ /**
39416
+ * Whether business owners are allowed to edit tip distributions. If set to
39417
+ * `false`, owners can't edit distributions after they were created.
39418
+ *
39419
+ * Default: `true`
39420
+ */
39421
+ allowEditDistribution?: boolean | null;
39422
+ /**
39423
+ * How the tip is distributed among staff.
39424
+ *
39425
+ * Supported values:
39426
+ * `UNKNOWN_SPLIT_METHOD`: There is no information about the staff distribution method.
39427
+ * `EQUAL`: The tip is distributed equally among all staff.
39428
+ * `PROPORTIONAL`: The tip is distributed proportionally among staff.
39429
+ */
39430
+ staffDistributionMethod?: StaffDistributionMethod;
39431
+ /**
39432
+ * Revision number, which increments by 1 each time `tipSettings` object is
39433
+ * updated. To prevent conflicting changes, the current revision must be passed
39434
+ * when updating `tipSettings`. Ignored when creating a `tipSettings` object.
39435
+ * @readonly
39436
+ */
39437
+ revision?: string | null;
39438
+ /**
39439
+ * Date and time the tip settings were created in
39440
+ * `YYYY-MM-DDThh:mm:ss.sssZ` format.
39441
+ * @readonly
39442
+ */
39443
+ _createdDate?: Date | null;
39444
+ /**
39445
+ * Date and time the tip settings were last updated
39446
+ * `YYYY-MM-DDThh:mm:ss.sssZ` format.
39447
+ * @readonly
39448
+ */
39449
+ _updatedDate?: Date | null;
39450
+ /**
39451
+ * Whether these are the default tip settings. Wix Tips automatically creates
39452
+ * the default settings during the app's installation. You can't delete these
39453
+ * default settings but you can update them. Wix Tips uses the default settings
39454
+ * to calculate tips, unless you specify other settings.
39455
+ * @readonly
39456
+ */
39457
+ default?: boolean | null;
39458
+ /**
39459
+ * ID of the app that has created the settings. See the list of app IDs for
39460
+ * [Wix business solutions](https://dev.wix.com/docs/rest/articles/getting-started/wix-business-solutions).
39461
+ */
39462
+ appId?: string | null;
39463
+ /**
39464
+ * Custom field data for the `tipSettings` object. Extended fields must be
39465
+ * configured in the app dashboard before they can be accessed with API calls.
39466
+ */
39467
+ extendedFields?: ExtendedFields;
39468
+ }
39469
+ /** @oneof */
39470
+ interface TipSettingsIdentifierOneOf {
39471
+ /**
39472
+ * ID of the [location](https://dev.wix.com/docs/rest/business-management/locations/location-object)
39473
+ * for which the tip settings apply.
39474
+ */
39475
+ locationId?: string | null;
39476
+ /**
39477
+ * ID of the payment terminal for which the tip settings apply. Wix Tips doesn't
39478
+ * validate the ID you provide.
39479
+ *
39480
+ * Max: 30 characters
39481
+ */
39482
+ paymentTerminalId?: string | null;
39483
+ /**
39484
+ * ID of the Wix user for whom the tip settings apply. For example, the site owner or a
39485
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39486
+ */
39487
+ userId?: string | null;
39488
+ }
39489
+ declare enum TipType$2 {
39490
+ /** There is no information about the tip type. */
39491
+ UNKNOWN_TIP_TYPE = "UNKNOWN_TIP_TYPE",
39492
+ /** The tip is calculated as a percentage of the subtotal of all related line items. */
39493
+ PERCENTAGE = "PERCENTAGE",
39494
+ /** The tip is a fixed amount. */
39495
+ AMOUNT = "AMOUNT"
39496
+ }
39497
+ interface Preset {
39498
+ /**
39499
+ * Value of the preset tip choice that's displayed to customers in the
39500
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39501
+ * For example, `5`, `10`, and `15` percent or `1`, `3`, and `5` USD.
39502
+ *
39503
+ * Min: `0`
39504
+ */
39505
+ value?: number | null;
39506
+ /**
39507
+ * Whether this tip choice value is the dafault preset that's highlighted automatically in the
39508
+ * [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object).
39509
+ *
39510
+ * Default: `false`
39511
+ */
39512
+ default?: boolean | null;
39513
+ }
39514
+ declare enum StaffDistributionMethod {
39515
+ /** There is no information about the staff distribution method. */
39516
+ UNKNOWN_SPLIT_METHOD = "UNKNOWN_SPLIT_METHOD",
39517
+ /** All staff receive an equal amount of the tip. */
39518
+ EQUAL = "EQUAL",
39519
+ /** Staff receive a proportional amount of the tip. */
39520
+ PROPORTIONAL = "PROPORTIONAL"
39521
+ }
39522
+ interface ExtendedFields {
39523
+ /**
39524
+ * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
39525
+ * The value of each key is structured according to the schema defined when the extended fields were configured.
39526
+ *
39527
+ * You can only access fields for which you have the appropriate permissions.
39528
+ *
39529
+ * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
39530
+ */
39531
+ namespaces?: Record<string, Record<string, any>>;
39532
+ }
39533
+ interface QueryTipSettingsRequest {
39534
+ /** WQL expression */
39535
+ query: QueryV2;
39536
+ }
39537
+ interface QueryV2 extends QueryV2PagingMethodOneOf {
39538
+ /** Paging options to limit and skip the number of items. */
39539
+ paging?: Paging;
39540
+ /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
39541
+ cursorPaging?: CursorPaging$2;
39542
+ /**
39543
+ * Filter object in the following format:
39544
+ * `"filter" : {
39545
+ * "fieldName1": "value1",
39546
+ * "fieldName2":{"$operator":"value2"}
39547
+ * }`
39548
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
39549
+ */
39550
+ filter?: Record<string, any> | null;
39551
+ /**
39552
+ * Sort object in the following format:
39553
+ * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
39554
+ */
39555
+ sort?: Sorting$2[];
39556
+ /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
39557
+ fields?: string[];
39558
+ /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
39559
+ fieldsets?: string[];
39560
+ }
39561
+ /** @oneof */
39562
+ interface QueryV2PagingMethodOneOf {
39563
+ /** Paging options to limit and skip the number of items. */
39564
+ paging?: Paging;
39565
+ /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
39566
+ cursorPaging?: CursorPaging$2;
39567
+ }
39568
+ interface Sorting$2 {
39569
+ /** Name of the field to sort by. */
39570
+ fieldName?: string;
39571
+ /** Sort order. */
39572
+ order?: SortOrder$2;
39573
+ }
39574
+ declare enum SortOrder$2 {
39575
+ ASC = "ASC",
39576
+ DESC = "DESC"
39577
+ }
39578
+ interface Paging {
39579
+ /** Number of items to load. */
39580
+ limit?: number | null;
39581
+ /** Number of items to skip in the current sort order. */
39582
+ offset?: number | null;
39583
+ }
39584
+ interface CursorPaging$2 {
39585
+ /** Maximum number of items to return in the results. */
39586
+ limit?: number | null;
39587
+ /**
39588
+ * Pointer to the next or previous page in the list of results.
39589
+ *
39590
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
39591
+ * Not relevant for the first request.
39592
+ */
39593
+ cursor?: string | null;
39594
+ }
39595
+ interface QueryTipSettingsResponse {
39596
+ /** Retrieved `tipSettings` objects. */
39597
+ tipSettings?: TipSettings[];
39598
+ /** Metadate for the paged set of retrieved `tipSettings` objects. */
39599
+ pagingMetadata?: PagingMetadataV2;
39600
+ }
39601
+ interface PagingMetadataV2 {
39602
+ /** Number of items returned in the response. */
39603
+ count?: number | null;
39604
+ /** Offset that was requested. */
39605
+ offset?: number | null;
39606
+ /** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
39607
+ total?: number | null;
39608
+ /** Flag that indicates the server failed to calculate the `total` field. */
39609
+ tooManyToCount?: boolean | null;
39610
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
39611
+ cursors?: Cursors$2;
39612
+ }
39613
+ interface Cursors$2 {
39614
+ /** Cursor string pointing to the next page in the list of results. */
39615
+ next?: string | null;
39616
+ /** Cursor pointing to the previous page in the list of results. */
39617
+ prev?: string | null;
39618
+ }
39619
+ interface UpdateTipSettingsRequest {
39620
+ /** Tip settings to update. */
39621
+ tipSettings: TipSettings;
39622
+ }
39623
+ interface UpdateTipSettingsResponse {
39624
+ /** Updated tip settings. */
39625
+ tipSettings?: TipSettings;
39626
+ }
39627
+ interface CreateTipSettingsRequest {
39628
+ /** Tip settings to create. */
39629
+ tipSettings: TipSettings;
39630
+ }
39631
+ interface CreateTipSettingsResponse {
39632
+ /** Created tip settings. */
39633
+ tipSettings?: TipSettings;
39634
+ }
39635
+ interface CreateDefaultTipSettingsRequest {
39636
+ /** Dafault tip settings to create. */
39637
+ tipSettings: TipSettings;
39638
+ }
39639
+ interface CreateDefaultTipSettingsResponse {
39640
+ /** Created default tip settings. */
39641
+ tipSettings?: TipSettings;
39642
+ }
39643
+ interface DeleteTipSettingsRequest {
39644
+ /** ID of the `tipSettings` object to delete. */
39645
+ tipSettingsId: string | null;
39646
+ }
39647
+ interface DeleteTipSettingsResponse {
39648
+ }
39649
+ interface TipSettingsNonNullableFields {
39650
+ tipType: TipType$2;
39651
+ staffDistributionMethod: StaffDistributionMethod;
39652
+ }
39653
+ interface QueryTipSettingsResponseNonNullableFields {
39654
+ tipSettings: TipSettingsNonNullableFields[];
39655
+ }
39656
+ interface UpdateTipSettingsResponseNonNullableFields {
39657
+ tipSettings?: TipSettingsNonNullableFields;
39658
+ }
39659
+ interface CreateTipSettingsResponseNonNullableFields {
39660
+ tipSettings?: TipSettingsNonNullableFields;
39661
+ }
39662
+ interface CreateDefaultTipSettingsResponseNonNullableFields {
39663
+ tipSettings?: TipSettingsNonNullableFields;
39664
+ }
39665
+
39666
+ type __PublicMethodMetaInfo$2<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
39667
+ getUrl: (context: any) => string;
39668
+ httpMethod: K;
39669
+ path: string;
39670
+ pathParams: M;
39671
+ __requestType: T;
39672
+ __originalRequestType: S;
39673
+ __responseType: Q;
39674
+ __originalResponseType: R;
39675
+ };
39676
+ declare function queryTipSettings(): __PublicMethodMetaInfo$2<'POST', {}, QueryTipSettingsRequest, QueryTipSettingsRequest$1, QueryTipSettingsResponse & QueryTipSettingsResponseNonNullableFields, QueryTipSettingsResponse$1 & QueryTipSettingsResponseNonNullableFields$1>;
39677
+ declare function updateTipSettings(): __PublicMethodMetaInfo$2<'PATCH', {}, UpdateTipSettingsRequest, UpdateTipSettingsRequest$1, UpdateTipSettingsResponse & UpdateTipSettingsResponseNonNullableFields, UpdateTipSettingsResponse$1 & UpdateTipSettingsResponseNonNullableFields$1>;
39678
+ declare function createTipSettings(): __PublicMethodMetaInfo$2<'POST', {}, CreateTipSettingsRequest, CreateTipSettingsRequest$1, CreateTipSettingsResponse & CreateTipSettingsResponseNonNullableFields, CreateTipSettingsResponse$1 & CreateTipSettingsResponseNonNullableFields$1>;
39679
+ declare function createDefaultTipSettings(): __PublicMethodMetaInfo$2<'POST', {}, CreateDefaultTipSettingsRequest, CreateDefaultTipSettingsRequest$1, CreateDefaultTipSettingsResponse & CreateDefaultTipSettingsResponseNonNullableFields, CreateDefaultTipSettingsResponse$1 & CreateDefaultTipSettingsResponseNonNullableFields$1>;
39680
+ declare function deleteTipSettings(): __PublicMethodMetaInfo$2<'DELETE', {
39681
+ tipSettingsId: string;
39682
+ }, DeleteTipSettingsRequest, DeleteTipSettingsRequest$1, DeleteTipSettingsResponse, DeleteTipSettingsResponse$1>;
39683
+
39684
+ declare const meta$2_createDefaultTipSettings: typeof createDefaultTipSettings;
39685
+ declare const meta$2_createTipSettings: typeof createTipSettings;
39686
+ declare const meta$2_deleteTipSettings: typeof deleteTipSettings;
39687
+ declare const meta$2_queryTipSettings: typeof queryTipSettings;
39688
+ declare const meta$2_updateTipSettings: typeof updateTipSettings;
39689
+ declare namespace meta$2 {
39690
+ export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, meta$2_createDefaultTipSettings as createDefaultTipSettings, meta$2_createTipSettings as createTipSettings, meta$2_deleteTipSettings as deleteTipSettings, meta$2_queryTipSettings as queryTipSettings, meta$2_updateTipSettings as updateTipSettings };
39691
+ }
39692
+
39693
+ /**
39694
+ * Information about a team member who's eligible to receive a portion of the tip.
39695
+ * Currently, only [Bookings staff members](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/staff-member-v1/introduction)
39696
+ * and [site collaborators](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site)
39697
+ * are eligible for tip distributions.
39698
+ */
39699
+ interface Staff$3 {
39700
+ /**
39701
+ * Staff ID. Matches `staffMemberId` if available, or
39702
+ * `identificationData.wixUserId` if not.
39703
+ * @readonly
39704
+ */
39705
+ id?: string | null;
39706
+ /**
39707
+ * Staff name. Matches the name of the
39708
+ * [Bookings staff member](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/staff-member-v1/staff-member-object)
39709
+ * if available.
39710
+ */
39711
+ name?: string | null;
39712
+ /**
39713
+ * Staff member ID. Available only if the staff is connected to a
39714
+ * [Bookings staff member](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/staff-member-v1/staff-member-object).
39715
+ */
39716
+ staffMemberId?: string | null;
39717
+ /**
39718
+ * Identification data of the staff. Available only if the staff is a
39719
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39720
+ */
39721
+ identificationData?: IdentificationData$1;
39722
+ }
39723
+ interface IdentificationData$1 extends IdentificationDataIdOneOf$1 {
39724
+ /** ID of a site visitor who hasn't logged in to the site. */
39725
+ anonymousVisitorId?: string;
39726
+ /** ID of a site visitor who has logged in to the site. */
39727
+ memberId?: string;
39728
+ /**
39729
+ * ID of a Wix user. For example, the site owner or a
39730
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39731
+ */
39732
+ wixUserId?: string;
39733
+ /** ID of an app. */
39734
+ appId?: string;
39735
+ /**
39736
+ * ID of the [contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/introduction)
39737
+ * in the site's [CRM by Ascend](https://www.wix.com/ascend/crm) system.
39738
+ */
39739
+ contactId?: string | null;
39740
+ }
39741
+ /** @oneof */
39742
+ interface IdentificationDataIdOneOf$1 {
39743
+ /** ID of a site visitor who hasn't logged in to the site. */
39744
+ anonymousVisitorId?: string;
39745
+ /** ID of a site visitor who has logged in to the site. */
39746
+ memberId?: string;
39747
+ /**
39748
+ * ID of a Wix user. For example, the site owner or a
39749
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39750
+ */
39751
+ wixUserId?: string;
39752
+ /** ID of an app. */
39753
+ appId?: string;
39754
+ }
39755
+ declare enum IdentityType$3 {
39756
+ UNKNOWN = "UNKNOWN",
39757
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
39758
+ MEMBER = "MEMBER",
39759
+ WIX_USER = "WIX_USER",
39760
+ APP = "APP"
39761
+ }
39762
+ interface ListTippableStaffRequest$1 {
39763
+ /**
39764
+ * Whether to include staff who are only Wix users and not
39765
+ * [Bookings staff members](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/about-staff-members-and-resources)
39766
+ * in the response. Setting `{"includeWixUsers": true}` returns all tippable
39767
+ * staff, including Bookings staff, site collaborators, or those who are both.
39768
+ * By default, or if you provide `{"includeWixUsers": false}`, only Bookings
39769
+ * staff members or those who are both are returned.
39770
+ *
39771
+ * Default: `false`.
39772
+ */
39773
+ includeWixUsers?: boolean;
39774
+ /**
39775
+ * Filters the returned staff by name. If you provide a name as filter, only
39776
+ * staff whose names start with the given input are returned. The filter isn't
39777
+ * case sensitive.
39778
+ *
39779
+ * Max: 500 characters
39780
+ */
39781
+ filterByName?: string | null;
39782
+ /**
39783
+ * Filters the returned staff by ID. If you provide a list of IDs as filter,
39784
+ * only staff members with exact matching IDs are returned.
39785
+ *
39786
+ * Max: 100 IDs
39787
+ */
39788
+ filterByIds?: string[] | null;
39789
+ }
39790
+ interface ListTippableStaffResponse$1 {
39791
+ /** Retrieved staff. */
39792
+ staff?: Staff$3[];
39793
+ }
39794
+ interface IdentificationDataNonNullableFields$1 {
39795
+ anonymousVisitorId: string;
39796
+ memberId: string;
39797
+ wixUserId: string;
39798
+ appId: string;
39799
+ identityType: IdentityType$3;
39800
+ }
39801
+ interface StaffNonNullableFields$3 {
39802
+ identificationData?: IdentificationDataNonNullableFields$1;
39803
+ }
39804
+ interface ListTippableStaffResponseNonNullableFields$1 {
39805
+ staff: StaffNonNullableFields$3[];
39806
+ }
39807
+
39808
+ /**
39809
+ * Information about a team member who's eligible to receive a portion of the tip.
39810
+ * Currently, only [Bookings staff members](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/staff-member-v1/introduction)
39811
+ * and [site collaborators](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site)
39812
+ * are eligible for tip distributions.
39813
+ */
39814
+ interface Staff$2 {
39815
+ /**
39816
+ * Staff ID. Matches `staffMemberId` if available, or
39817
+ * `identificationData.wixUserId` if not.
39818
+ * @readonly
39819
+ */
39820
+ _id?: string | null;
39821
+ /**
39822
+ * Staff name. Matches the name of the
39823
+ * [Bookings staff member](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/staff-member-v1/staff-member-object)
39824
+ * if available.
39825
+ */
39826
+ name?: string | null;
39827
+ /**
39828
+ * Staff member ID. Available only if the staff is connected to a
39829
+ * [Bookings staff member](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/staff-member-v1/staff-member-object).
39830
+ */
39831
+ staffMemberId?: string | null;
39832
+ /**
39833
+ * Identification data of the staff. Available only if the staff is a
39834
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39835
+ */
39836
+ identificationData?: IdentificationData;
39837
+ }
39838
+ interface IdentificationData extends IdentificationDataIdOneOf {
39839
+ /** ID of a site visitor who hasn't logged in to the site. */
39840
+ anonymousVisitorId?: string;
39841
+ /** ID of a site visitor who has logged in to the site. */
39842
+ memberId?: string;
39843
+ /**
39844
+ * ID of a Wix user. For example, the site owner or a
39845
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39846
+ */
39847
+ wixUserId?: string;
39848
+ /** ID of an app. */
39849
+ appId?: string;
39850
+ /**
39851
+ * ID of the [contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/introduction)
39852
+ * in the site's [CRM by Ascend](https://www.wix.com/ascend/crm) system.
39853
+ */
39854
+ contactId?: string | null;
39855
+ }
39856
+ /** @oneof */
39857
+ interface IdentificationDataIdOneOf {
39858
+ /** ID of a site visitor who hasn't logged in to the site. */
39859
+ anonymousVisitorId?: string;
39860
+ /** ID of a site visitor who has logged in to the site. */
39861
+ memberId?: string;
39862
+ /**
39863
+ * ID of a Wix user. For example, the site owner or a
39864
+ * [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
39865
+ */
39866
+ wixUserId?: string;
39867
+ /** ID of an app. */
39868
+ appId?: string;
39869
+ }
39870
+ declare enum IdentityType$2 {
39871
+ UNKNOWN = "UNKNOWN",
39872
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
39873
+ MEMBER = "MEMBER",
39874
+ WIX_USER = "WIX_USER",
39875
+ APP = "APP"
39876
+ }
39877
+ interface ListTippableStaffRequest {
39878
+ /**
39879
+ * Whether to include staff who are only Wix users and not
39880
+ * [Bookings staff members](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/about-staff-members-and-resources)
39881
+ * in the response. Setting `{"includeWixUsers": true}` returns all tippable
39882
+ * staff, including Bookings staff, site collaborators, or those who are both.
39883
+ * By default, or if you provide `{"includeWixUsers": false}`, only Bookings
39884
+ * staff members or those who are both are returned.
39885
+ *
39886
+ * Default: `false`.
39887
+ */
39888
+ includeWixUsers?: boolean;
39889
+ /**
39890
+ * Filters the returned staff by name. If you provide a name as filter, only
39891
+ * staff whose names start with the given input are returned. The filter isn't
39892
+ * case sensitive.
39893
+ *
39894
+ * Max: 500 characters
39895
+ */
39896
+ filterByName?: string | null;
39897
+ /**
39898
+ * Filters the returned staff by ID. If you provide a list of IDs as filter,
39899
+ * only staff members with exact matching IDs are returned.
39900
+ *
39901
+ * Max: 100 IDs
39902
+ */
39903
+ filterByIds?: string[] | null;
39904
+ }
39905
+ interface ListTippableStaffResponse {
39906
+ /** Retrieved staff. */
39907
+ staff?: Staff$2[];
39908
+ }
39909
+ interface IdentificationDataNonNullableFields {
39910
+ anonymousVisitorId: string;
39911
+ memberId: string;
39912
+ wixUserId: string;
39913
+ appId: string;
39914
+ identityType: IdentityType$2;
39915
+ }
39916
+ interface StaffNonNullableFields$2 {
39917
+ identificationData?: IdentificationDataNonNullableFields;
39918
+ }
39919
+ interface ListTippableStaffResponseNonNullableFields {
39920
+ staff: StaffNonNullableFields$2[];
39921
+ }
39922
+
38989
39923
  type __PublicMethodMetaInfo$1<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
38990
39924
  getUrl: (context: any) => string;
38991
39925
  httpMethod: K;
@@ -38996,11 +39930,11 @@ type __PublicMethodMetaInfo$1<K = string, M = unknown, T = unknown, S = unknown,
38996
39930
  __responseType: Q;
38997
39931
  __originalResponseType: R;
38998
39932
  };
38999
- declare function getDeliverySolutions(): __PublicMethodMetaInfo$1<'POST', {}, GetDeliverySolutionsRequest, GetDeliverySolutionsRequest$1, GetDeliverySolutionsResponse & GetDeliverySolutionsResponseNonNullableFields, GetDeliverySolutionsResponse$1 & GetDeliverySolutionsResponseNonNullableFields$1>;
39933
+ declare function listTippableStaff(): __PublicMethodMetaInfo$1<'GET', {}, ListTippableStaffRequest, ListTippableStaffRequest$1, ListTippableStaffResponse & ListTippableStaffResponseNonNullableFields, ListTippableStaffResponse$1 & ListTippableStaffResponseNonNullableFields$1>;
39000
39934
 
39001
- declare const meta$1_getDeliverySolutions: typeof getDeliverySolutions;
39935
+ declare const meta$1_listTippableStaff: typeof listTippableStaff;
39002
39936
  declare namespace meta$1 {
39003
- export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_getDeliverySolutions as getDeliverySolutions };
39937
+ export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_listTippableStaff as listTippableStaff };
39004
39938
  }
39005
39939
 
39006
39940
  /**
@@ -40119,4 +41053,4 @@ declare namespace meta {
40119
41053
  export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_addTipDistributionsToOrder as addTipDistributionsToOrder, meta_getTipByDraftOrderId as getTipByDraftOrderId, meta_getTipByOrderId as getTipByOrderId, meta_getTipChoice as getTipChoice, meta_previewTip as previewTip, meta_queryTipDistributions as queryTipDistributions, meta_removeTipFromOrder as removeTipFromOrder, meta_setTipOnOrder as setTipOnOrder, meta_sumTipDistributionAmounts as sumTipDistributionAmounts, meta_updateTipChoice as updateTipChoice };
40120
41054
  }
40121
41055
 
40122
- export { meta$n as abandonedCheckouts, meta$m as backInStockNotifications, meta$l as backInStockSettings, meta$k as cart, meta$i as checkout, meta$t as checkoutContent, meta$h as checkoutSettings, meta$g as checkoutTemplates, meta$2 as currencies, meta$j as currentCart, meta$f as deliveryProfile, meta$1 as deliverySolutions, meta$r as discountRules, meta$s as discountsCustomTrigger, meta$e as draftOrders, meta$c as giftVouchers, meta$b as localDeliveryOptions, meta$d as orderFulfillments, meta$q as orderInvoices, meta$9 as orderPaymentRequests, meta$8 as orderTransactions, meta$a as orders, meta$7 as ordersSettings, meta$6 as pickupLocations, meta$p as recommendations, meta$5 as shippingOptions, meta$4 as shippoConfigurations, meta$o as subscriptionContracts, meta as tips, meta$3 as totalsCalculator };
41056
+ export { meta$p as abandonedCheckouts, meta$o as backInStockNotifications, meta$n as backInStockSettings, meta$m as cart, meta$k as checkout, meta$v as checkoutContent, meta$j as checkoutSettings, meta$i as checkoutTemplates, meta$4 as currencies, meta$l as currentCart, meta$h as deliveryProfile, meta$3 as deliverySolutions, meta$t as discountRules, meta$u as discountsCustomTrigger, meta$g as draftOrders, meta$e as giftVouchers, meta$d as localDeliveryOptions, meta$f as orderFulfillments, meta$s as orderInvoices, meta$b as orderPaymentRequests, meta$a as orderTransactions, meta$c as orders, meta$9 as ordersSettings, meta$8 as pickupLocations, meta$r as recommendations, meta$7 as shippingOptions, meta$6 as shippoConfigurations, meta$q as subscriptionContracts, meta$2 as tipSettings, meta$1 as tippableStaff, meta as tips, meta$5 as totalsCalculator };