@wix/ecom 1.0.708 → 1.0.710
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.
- package/package.json +35 -34
- package/type-bundles/context.bundle.d.ts +879 -224
- package/type-bundles/index.bundle.d.ts +879 -224
- package/type-bundles/service-plugins-context.bundle.d.ts +61 -10
|
@@ -100,9 +100,12 @@ declare global {
|
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
+
declare function getCheckoutContent$1(httpClient: HttpClient): (identifiers: GetCheckoutContentIdentifiers, options?: GetCheckoutContentOptions) => Promise<GetCheckoutContentResponse>;
|
|
104
|
+
|
|
103
105
|
declare function createRESTModule$p<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
104
106
|
|
|
105
|
-
|
|
107
|
+
type _publicGetCheckoutContentType = typeof getCheckoutContent$1;
|
|
108
|
+
declare const getCheckoutContent: ReturnType<typeof createRESTModule$p<_publicGetCheckoutContentType>>;
|
|
106
109
|
|
|
107
110
|
type context$p_CheckoutContent = CheckoutContent;
|
|
108
111
|
type context$p_CheckoutContentProvider = CheckoutContentProvider;
|
|
@@ -110,9 +113,10 @@ type context$p_GetCheckoutContentIdentifiers = GetCheckoutContentIdentifiers;
|
|
|
110
113
|
type context$p_GetCheckoutContentOptions = GetCheckoutContentOptions;
|
|
111
114
|
type context$p_GetCheckoutContentRequest = GetCheckoutContentRequest;
|
|
112
115
|
type context$p_GetCheckoutContentResponse = GetCheckoutContentResponse;
|
|
116
|
+
type context$p__publicGetCheckoutContentType = _publicGetCheckoutContentType;
|
|
113
117
|
declare const context$p_getCheckoutContent: typeof getCheckoutContent;
|
|
114
118
|
declare namespace context$p {
|
|
115
|
-
export { type context$p_CheckoutContent as CheckoutContent, type context$p_CheckoutContentProvider as CheckoutContentProvider, type context$p_GetCheckoutContentIdentifiers as GetCheckoutContentIdentifiers, type context$p_GetCheckoutContentOptions as GetCheckoutContentOptions, type context$p_GetCheckoutContentRequest as GetCheckoutContentRequest, type context$p_GetCheckoutContentResponse as GetCheckoutContentResponse, context$p_getCheckoutContent as getCheckoutContent };
|
|
119
|
+
export { type context$p_CheckoutContent as CheckoutContent, type context$p_CheckoutContentProvider as CheckoutContentProvider, type context$p_GetCheckoutContentIdentifiers as GetCheckoutContentIdentifiers, type context$p_GetCheckoutContentOptions as GetCheckoutContentOptions, type context$p_GetCheckoutContentRequest as GetCheckoutContentRequest, type context$p_GetCheckoutContentResponse as GetCheckoutContentResponse, type context$p__publicGetCheckoutContentType as _publicGetCheckoutContentType, context$p_getCheckoutContent as getCheckoutContent };
|
|
116
120
|
}
|
|
117
121
|
|
|
118
122
|
interface CustomTrigger {
|
|
@@ -205,9 +209,12 @@ interface ListTriggersResponseNonNullableFields {
|
|
|
205
209
|
triggers: ListTriggersResponseCustomTriggerNonNullableFields[];
|
|
206
210
|
}
|
|
207
211
|
|
|
212
|
+
declare function listTriggers$1(httpClient: HttpClient): () => Promise<ListTriggersResponse & ListTriggersResponseNonNullableFields>;
|
|
213
|
+
|
|
208
214
|
declare function createRESTModule$o<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
209
215
|
|
|
210
|
-
|
|
216
|
+
type _publicListTriggersType = typeof listTriggers$1;
|
|
217
|
+
declare const listTriggers: ReturnType<typeof createRESTModule$o<_publicListTriggersType>>;
|
|
211
218
|
|
|
212
219
|
type context$o_CustomTrigger = CustomTrigger;
|
|
213
220
|
type context$o_EligibleTrigger = EligibleTrigger;
|
|
@@ -218,9 +225,10 @@ type context$o_ListTriggersResponse = ListTriggersResponse;
|
|
|
218
225
|
type context$o_ListTriggersResponseCustomTrigger = ListTriggersResponseCustomTrigger;
|
|
219
226
|
type context$o_ListTriggersResponseNonNullableFields = ListTriggersResponseNonNullableFields;
|
|
220
227
|
type context$o_TriggerToFilterBy = TriggerToFilterBy;
|
|
228
|
+
type context$o__publicListTriggersType = _publicListTriggersType;
|
|
221
229
|
declare const context$o_listTriggers: typeof listTriggers;
|
|
222
230
|
declare namespace context$o {
|
|
223
|
-
export { type CatalogReference$a as CatalogReference, type context$o_CustomTrigger as CustomTrigger, type context$o_EligibleTrigger as EligibleTrigger, type context$o_GetEligibleTriggersRequest as GetEligibleTriggersRequest, type context$o_GetEligibleTriggersResponse as GetEligibleTriggersResponse, type LineItem$8 as LineItem, type context$o_ListTriggersRequest as ListTriggersRequest, type context$o_ListTriggersResponse as ListTriggersResponse, type context$o_ListTriggersResponseCustomTrigger as ListTriggersResponseCustomTrigger, type context$o_ListTriggersResponseNonNullableFields as ListTriggersResponseNonNullableFields, type context$o_TriggerToFilterBy as TriggerToFilterBy, context$o_listTriggers as listTriggers };
|
|
231
|
+
export { type CatalogReference$a as CatalogReference, type context$o_CustomTrigger as CustomTrigger, type context$o_EligibleTrigger as EligibleTrigger, type context$o_GetEligibleTriggersRequest as GetEligibleTriggersRequest, type context$o_GetEligibleTriggersResponse as GetEligibleTriggersResponse, type LineItem$8 as LineItem, type context$o_ListTriggersRequest as ListTriggersRequest, type context$o_ListTriggersResponse as ListTriggersResponse, type context$o_ListTriggersResponseCustomTrigger as ListTriggersResponseCustomTrigger, type context$o_ListTriggersResponseNonNullableFields as ListTriggersResponseNonNullableFields, type context$o_TriggerToFilterBy as TriggerToFilterBy, type context$o__publicListTriggersType as _publicListTriggersType, context$o_listTriggers as listTriggers };
|
|
224
232
|
}
|
|
225
233
|
|
|
226
234
|
interface DiscountRule$7 {
|
|
@@ -1120,18 +1128,38 @@ interface DiscountRulesQueryBuilder {
|
|
|
1120
1128
|
find: () => Promise<DiscountRulesQueryResult>;
|
|
1121
1129
|
}
|
|
1122
1130
|
|
|
1131
|
+
declare function createDiscountRule$1(httpClient: HttpClient): (discountRule: DiscountRule$7) => Promise<DiscountRule$7 & DiscountRuleNonNullableFields$6>;
|
|
1132
|
+
declare function getDiscountRule$1(httpClient: HttpClient): (discountRuleId: string) => Promise<DiscountRule$7 & DiscountRuleNonNullableFields$6>;
|
|
1133
|
+
declare function updateDiscountRule$1(httpClient: HttpClient): (_id: string | null, discountRule: UpdateDiscountRule) => Promise<DiscountRule$7 & DiscountRuleNonNullableFields$6>;
|
|
1134
|
+
declare function deleteDiscountRule$1(httpClient: HttpClient): (discountRuleId: string) => Promise<void>;
|
|
1135
|
+
declare function queryDiscountRules$1(httpClient: HttpClient): () => DiscountRulesQueryBuilder;
|
|
1136
|
+
declare const onDiscountRuleCreated$1: EventDefinition<DiscountRuleCreatedEnvelope, "wix.ecom.discounts.v1.discount_rule_created">;
|
|
1137
|
+
declare const onDiscountRuleUpdated$1: EventDefinition<DiscountRuleUpdatedEnvelope, "wix.ecom.discounts.v1.discount_rule_updated">;
|
|
1138
|
+
declare const onDiscountRuleDeleted$1: EventDefinition<DiscountRuleDeletedEnvelope, "wix.ecom.discounts.v1.discount_rule_deleted">;
|
|
1139
|
+
|
|
1123
1140
|
declare function createRESTModule$n<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1124
1141
|
|
|
1125
1142
|
declare function createEventModule$g<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1126
1143
|
|
|
1127
|
-
|
|
1128
|
-
declare const
|
|
1129
|
-
|
|
1130
|
-
declare const
|
|
1131
|
-
|
|
1132
|
-
declare const
|
|
1133
|
-
|
|
1134
|
-
declare const
|
|
1144
|
+
type _publicCreateDiscountRuleType = typeof createDiscountRule$1;
|
|
1145
|
+
declare const createDiscountRule: ReturnType<typeof createRESTModule$n<_publicCreateDiscountRuleType>>;
|
|
1146
|
+
type _publicGetDiscountRuleType = typeof getDiscountRule$1;
|
|
1147
|
+
declare const getDiscountRule: ReturnType<typeof createRESTModule$n<_publicGetDiscountRuleType>>;
|
|
1148
|
+
type _publicUpdateDiscountRuleType = typeof updateDiscountRule$1;
|
|
1149
|
+
declare const updateDiscountRule: ReturnType<typeof createRESTModule$n<_publicUpdateDiscountRuleType>>;
|
|
1150
|
+
type _publicDeleteDiscountRuleType = typeof deleteDiscountRule$1;
|
|
1151
|
+
declare const deleteDiscountRule: ReturnType<typeof createRESTModule$n<_publicDeleteDiscountRuleType>>;
|
|
1152
|
+
type _publicQueryDiscountRulesType = typeof queryDiscountRules$1;
|
|
1153
|
+
declare const queryDiscountRules: ReturnType<typeof createRESTModule$n<_publicQueryDiscountRulesType>>;
|
|
1154
|
+
|
|
1155
|
+
type _publicOnDiscountRuleCreatedType = typeof onDiscountRuleCreated$1;
|
|
1156
|
+
declare const onDiscountRuleCreated: ReturnType<typeof createEventModule$g<_publicOnDiscountRuleCreatedType>>;
|
|
1157
|
+
|
|
1158
|
+
type _publicOnDiscountRuleUpdatedType = typeof onDiscountRuleUpdated$1;
|
|
1159
|
+
declare const onDiscountRuleUpdated: ReturnType<typeof createEventModule$g<_publicOnDiscountRuleUpdatedType>>;
|
|
1160
|
+
|
|
1161
|
+
type _publicOnDiscountRuleDeletedType = typeof onDiscountRuleDeleted$1;
|
|
1162
|
+
declare const onDiscountRuleDeleted: ReturnType<typeof createEventModule$g<_publicOnDiscountRuleDeletedType>>;
|
|
1135
1163
|
|
|
1136
1164
|
type context$n_ActiveTimeInfo = ActiveTimeInfo;
|
|
1137
1165
|
type context$n_And = And;
|
|
@@ -1184,6 +1212,14 @@ type context$n_UpdateDiscountRule = UpdateDiscountRule;
|
|
|
1184
1212
|
type context$n_UpdateDiscountRuleRequest = UpdateDiscountRuleRequest;
|
|
1185
1213
|
type context$n_UpdateDiscountRuleResponse = UpdateDiscountRuleResponse;
|
|
1186
1214
|
type context$n_UpdateDiscountRuleResponseNonNullableFields = UpdateDiscountRuleResponseNonNullableFields;
|
|
1215
|
+
type context$n__publicCreateDiscountRuleType = _publicCreateDiscountRuleType;
|
|
1216
|
+
type context$n__publicDeleteDiscountRuleType = _publicDeleteDiscountRuleType;
|
|
1217
|
+
type context$n__publicGetDiscountRuleType = _publicGetDiscountRuleType;
|
|
1218
|
+
type context$n__publicOnDiscountRuleCreatedType = _publicOnDiscountRuleCreatedType;
|
|
1219
|
+
type context$n__publicOnDiscountRuleDeletedType = _publicOnDiscountRuleDeletedType;
|
|
1220
|
+
type context$n__publicOnDiscountRuleUpdatedType = _publicOnDiscountRuleUpdatedType;
|
|
1221
|
+
type context$n__publicQueryDiscountRulesType = _publicQueryDiscountRulesType;
|
|
1222
|
+
type context$n__publicUpdateDiscountRuleType = _publicUpdateDiscountRuleType;
|
|
1187
1223
|
declare const context$n_createDiscountRule: typeof createDiscountRule;
|
|
1188
1224
|
declare const context$n_deleteDiscountRule: typeof deleteDiscountRule;
|
|
1189
1225
|
declare const context$n_getDiscountRule: typeof getDiscountRule;
|
|
@@ -1193,7 +1229,7 @@ declare const context$n_onDiscountRuleUpdated: typeof onDiscountRuleUpdated;
|
|
|
1193
1229
|
declare const context$n_queryDiscountRules: typeof queryDiscountRules;
|
|
1194
1230
|
declare const context$n_updateDiscountRule: typeof updateDiscountRule;
|
|
1195
1231
|
declare namespace context$n {
|
|
1196
|
-
export { type ActionEvent$j as ActionEvent, type context$n_ActiveTimeInfo as ActiveTimeInfo, type context$n_And as And, type AppliedDiscount$7 as AppliedDiscount, type context$n_AppliedDiscountRule as AppliedDiscountRule, context$n_AppliedSubjectType as AppliedSubjectType, type BaseEventMetadata$g as BaseEventMetadata, type context$n_BuyXGetYInfo as BuyXGetYInfo, type context$n_CatalogItemFilter as CatalogItemFilter, type CatalogReference$9 as CatalogReference, type context$n_CreateDiscountRuleRequest as CreateDiscountRuleRequest, type context$n_CreateDiscountRuleResponse as CreateDiscountRuleResponse, type context$n_CreateDiscountRuleResponseNonNullableFields as CreateDiscountRuleResponseNonNullableFields, type CursorPaging$b as CursorPaging, type Cursors$b as Cursors, type context$n_Custom as Custom, type context$n_CustomFilter as CustomFilter, type context$n_CustomerBuy as CustomerBuy, type context$n_CustomerBuyConditionOneOf as CustomerBuyConditionOneOf, type context$n_CustomerGet as CustomerGet, type context$n_DeleteDiscountRuleRequest as DeleteDiscountRuleRequest, type context$n_DeleteDiscountRuleResponse as DeleteDiscountRuleResponse, type Discount$3 as Discount, type context$n_DiscountDiscountOneOf as DiscountDiscountOneOf, type DiscountRule$7 as DiscountRule, type context$n_DiscountRuleCreatedEnvelope as DiscountRuleCreatedEnvelope, type context$n_DiscountRuleDeletedEnvelope as DiscountRuleDeletedEnvelope, type DiscountRuleName$7 as DiscountRuleName, type DiscountRuleNonNullableFields$6 as DiscountRuleNonNullableFields, type context$n_DiscountRuleUpdatedEnvelope as DiscountRuleUpdatedEnvelope, type context$n_DiscountRuleUsageLimitReached as DiscountRuleUsageLimitReached, type context$n_DiscountRulesQueryBuilder as DiscountRulesQueryBuilder, type context$n_DiscountRulesQueryResult as DiscountRulesQueryResult, type context$n_DiscountSettings as DiscountSettings, type context$n_DiscountTrigger as DiscountTrigger, type context$n_DiscountTriggerTriggerOneOf as DiscountTriggerTriggerOneOf, DiscountType$7 as DiscountType, type context$n_Discounts as Discounts, type DomainEvent$j as DomainEvent, type DomainEventBodyOneOf$j as DomainEventBodyOneOf, type Empty$e as Empty, type EntityCreatedEvent$j as EntityCreatedEvent, type EntityDeletedEvent$j as EntityDeletedEvent, type EntityUpdatedEvent$j as EntityUpdatedEvent, type EventMetadata$g as EventMetadata, type ExtendedFields$a as ExtendedFields, type context$n_GetAppliedDiscountsRequest as GetAppliedDiscountsRequest, type context$n_GetAppliedDiscountsResponse as GetAppliedDiscountsResponse, type context$n_GetDiscountRuleRequest as GetDiscountRuleRequest, type context$n_GetDiscountRuleResponse as GetDiscountRuleResponse, type context$n_GetDiscountRuleResponseNonNullableFields as GetDiscountRuleResponseNonNullableFields, type IdentificationData$j as IdentificationData, type IdentificationDataIdOneOf$j as IdentificationDataIdOneOf, type context$n_ItemQuantityRange as ItemQuantityRange, type LineItem$7 as LineItem, type MessageEnvelope$j as MessageEnvelope, type MultiCurrencyPrice$6 as MultiCurrencyPrice, type context$n_Or as Or, type PlatformPaging$2 as PlatformPaging, type PlatformPagingMetadata$2 as PlatformPagingMetadata, type PlatformQuery$2 as PlatformQuery, type PlatformQueryPagingMethodOneOf$2 as PlatformQueryPagingMethodOneOf, type context$n_QueryDiscountRulesRequest as QueryDiscountRulesRequest, type context$n_QueryDiscountRulesResponse as QueryDiscountRulesResponse, type context$n_QueryDiscountRulesResponseNonNullableFields as QueryDiscountRulesResponseNonNullableFields, type RestoreInfo$i as RestoreInfo, type Scope$5 as Scope, type context$n_ScopeScopeItemsOneOf as ScopeScopeItemsOneOf, context$n_ScopeType as ScopeType, SortOrder$b as SortOrder, type Sorting$b as Sorting, type context$n_SpecificItemsInfo as SpecificItemsInfo, Status$4 as Status, type context$n_SubtotalRange as SubtotalRange, context$n_TriggerType as TriggerType, context$n_Type as Type, type context$n_UpdateDiscountRule as UpdateDiscountRule, type context$n_UpdateDiscountRuleRequest as UpdateDiscountRuleRequest, type context$n_UpdateDiscountRuleResponse as UpdateDiscountRuleResponse, type context$n_UpdateDiscountRuleResponseNonNullableFields as UpdateDiscountRuleResponseNonNullableFields, WebhookIdentityType$j as WebhookIdentityType, context$n_createDiscountRule as createDiscountRule, context$n_deleteDiscountRule as deleteDiscountRule, context$n_getDiscountRule as getDiscountRule, context$n_onDiscountRuleCreated as onDiscountRuleCreated, context$n_onDiscountRuleDeleted as onDiscountRuleDeleted, context$n_onDiscountRuleUpdated as onDiscountRuleUpdated, context$n_queryDiscountRules as queryDiscountRules, context$n_updateDiscountRule as updateDiscountRule };
|
|
1232
|
+
export { type ActionEvent$j as ActionEvent, type context$n_ActiveTimeInfo as ActiveTimeInfo, type context$n_And as And, type AppliedDiscount$7 as AppliedDiscount, type context$n_AppliedDiscountRule as AppliedDiscountRule, context$n_AppliedSubjectType as AppliedSubjectType, type BaseEventMetadata$g as BaseEventMetadata, type context$n_BuyXGetYInfo as BuyXGetYInfo, type context$n_CatalogItemFilter as CatalogItemFilter, type CatalogReference$9 as CatalogReference, type context$n_CreateDiscountRuleRequest as CreateDiscountRuleRequest, type context$n_CreateDiscountRuleResponse as CreateDiscountRuleResponse, type context$n_CreateDiscountRuleResponseNonNullableFields as CreateDiscountRuleResponseNonNullableFields, type CursorPaging$b as CursorPaging, type Cursors$b as Cursors, type context$n_Custom as Custom, type context$n_CustomFilter as CustomFilter, type context$n_CustomerBuy as CustomerBuy, type context$n_CustomerBuyConditionOneOf as CustomerBuyConditionOneOf, type context$n_CustomerGet as CustomerGet, type context$n_DeleteDiscountRuleRequest as DeleteDiscountRuleRequest, type context$n_DeleteDiscountRuleResponse as DeleteDiscountRuleResponse, type Discount$3 as Discount, type context$n_DiscountDiscountOneOf as DiscountDiscountOneOf, type DiscountRule$7 as DiscountRule, type context$n_DiscountRuleCreatedEnvelope as DiscountRuleCreatedEnvelope, type context$n_DiscountRuleDeletedEnvelope as DiscountRuleDeletedEnvelope, type DiscountRuleName$7 as DiscountRuleName, type DiscountRuleNonNullableFields$6 as DiscountRuleNonNullableFields, type context$n_DiscountRuleUpdatedEnvelope as DiscountRuleUpdatedEnvelope, type context$n_DiscountRuleUsageLimitReached as DiscountRuleUsageLimitReached, type context$n_DiscountRulesQueryBuilder as DiscountRulesQueryBuilder, type context$n_DiscountRulesQueryResult as DiscountRulesQueryResult, type context$n_DiscountSettings as DiscountSettings, type context$n_DiscountTrigger as DiscountTrigger, type context$n_DiscountTriggerTriggerOneOf as DiscountTriggerTriggerOneOf, DiscountType$7 as DiscountType, type context$n_Discounts as Discounts, type DomainEvent$j as DomainEvent, type DomainEventBodyOneOf$j as DomainEventBodyOneOf, type Empty$e as Empty, type EntityCreatedEvent$j as EntityCreatedEvent, type EntityDeletedEvent$j as EntityDeletedEvent, type EntityUpdatedEvent$j as EntityUpdatedEvent, type EventMetadata$g as EventMetadata, type ExtendedFields$a as ExtendedFields, type context$n_GetAppliedDiscountsRequest as GetAppliedDiscountsRequest, type context$n_GetAppliedDiscountsResponse as GetAppliedDiscountsResponse, type context$n_GetDiscountRuleRequest as GetDiscountRuleRequest, type context$n_GetDiscountRuleResponse as GetDiscountRuleResponse, type context$n_GetDiscountRuleResponseNonNullableFields as GetDiscountRuleResponseNonNullableFields, type IdentificationData$j as IdentificationData, type IdentificationDataIdOneOf$j as IdentificationDataIdOneOf, type context$n_ItemQuantityRange as ItemQuantityRange, type LineItem$7 as LineItem, type MessageEnvelope$j as MessageEnvelope, type MultiCurrencyPrice$6 as MultiCurrencyPrice, type context$n_Or as Or, type PlatformPaging$2 as PlatformPaging, type PlatformPagingMetadata$2 as PlatformPagingMetadata, type PlatformQuery$2 as PlatformQuery, type PlatformQueryPagingMethodOneOf$2 as PlatformQueryPagingMethodOneOf, type context$n_QueryDiscountRulesRequest as QueryDiscountRulesRequest, type context$n_QueryDiscountRulesResponse as QueryDiscountRulesResponse, type context$n_QueryDiscountRulesResponseNonNullableFields as QueryDiscountRulesResponseNonNullableFields, type RestoreInfo$i as RestoreInfo, type Scope$5 as Scope, type context$n_ScopeScopeItemsOneOf as ScopeScopeItemsOneOf, context$n_ScopeType as ScopeType, SortOrder$b as SortOrder, type Sorting$b as Sorting, type context$n_SpecificItemsInfo as SpecificItemsInfo, Status$4 as Status, type context$n_SubtotalRange as SubtotalRange, context$n_TriggerType as TriggerType, context$n_Type as Type, type context$n_UpdateDiscountRule as UpdateDiscountRule, type context$n_UpdateDiscountRuleRequest as UpdateDiscountRuleRequest, type context$n_UpdateDiscountRuleResponse as UpdateDiscountRuleResponse, type context$n_UpdateDiscountRuleResponseNonNullableFields as UpdateDiscountRuleResponseNonNullableFields, WebhookIdentityType$j as WebhookIdentityType, type context$n__publicCreateDiscountRuleType as _publicCreateDiscountRuleType, type context$n__publicDeleteDiscountRuleType as _publicDeleteDiscountRuleType, type context$n__publicGetDiscountRuleType as _publicGetDiscountRuleType, type context$n__publicOnDiscountRuleCreatedType as _publicOnDiscountRuleCreatedType, type context$n__publicOnDiscountRuleDeletedType as _publicOnDiscountRuleDeletedType, type context$n__publicOnDiscountRuleUpdatedType as _publicOnDiscountRuleUpdatedType, type context$n__publicQueryDiscountRulesType as _publicQueryDiscountRulesType, type context$n__publicUpdateDiscountRuleType as _publicUpdateDiscountRuleType, context$n_createDiscountRule as createDiscountRule, context$n_deleteDiscountRule as deleteDiscountRule, context$n_getDiscountRule as getDiscountRule, context$n_onDiscountRuleCreated as onDiscountRuleCreated, context$n_onDiscountRuleDeleted as onDiscountRuleDeleted, context$n_onDiscountRuleUpdated as onDiscountRuleUpdated, onDiscountRuleCreated$1 as publicOnDiscountRuleCreated, onDiscountRuleDeleted$1 as publicOnDiscountRuleDeleted, onDiscountRuleUpdated$1 as publicOnDiscountRuleUpdated, context$n_queryDiscountRules as queryDiscountRules, context$n_updateDiscountRule as updateDiscountRule };
|
|
1197
1233
|
}
|
|
1198
1234
|
|
|
1199
1235
|
interface Invoice {
|
|
@@ -1432,9 +1468,12 @@ interface ListInvoicesForMultipleOrdersResponseNonNullableFields {
|
|
|
1432
1468
|
invoicesForOrder: InvoicesForOrderNonNullableFields[];
|
|
1433
1469
|
}
|
|
1434
1470
|
|
|
1471
|
+
declare function listInvoicesForMultipleOrders$1(httpClient: HttpClient): (orderIds: string[]) => Promise<ListInvoicesForMultipleOrdersResponse$1 & ListInvoicesForMultipleOrdersResponseNonNullableFields>;
|
|
1472
|
+
|
|
1435
1473
|
declare function createRESTModule$m<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1436
1474
|
|
|
1437
|
-
|
|
1475
|
+
type _publicListInvoicesForMultipleOrdersType = typeof listInvoicesForMultipleOrders$1;
|
|
1476
|
+
declare const listInvoicesForMultipleOrders: ReturnType<typeof createRESTModule$m<_publicListInvoicesForMultipleOrdersType>>;
|
|
1438
1477
|
|
|
1439
1478
|
type context$m_GenerateInvoiceWithNumberRequest = GenerateInvoiceWithNumberRequest;
|
|
1440
1479
|
type context$m_GenerateInvoiceWithNumberResponse = GenerateInvoiceWithNumberResponse;
|
|
@@ -1442,9 +1481,10 @@ type context$m_GetOrderInvoiceRequest = GetOrderInvoiceRequest;
|
|
|
1442
1481
|
type context$m_GetOrderInvoiceResponse = GetOrderInvoiceResponse;
|
|
1443
1482
|
type context$m_Invoice = Invoice;
|
|
1444
1483
|
type context$m_ListInvoicesForMultipleOrdersResponseNonNullableFields = ListInvoicesForMultipleOrdersResponseNonNullableFields;
|
|
1484
|
+
type context$m__publicListInvoicesForMultipleOrdersType = _publicListInvoicesForMultipleOrdersType;
|
|
1445
1485
|
declare const context$m_listInvoicesForMultipleOrders: typeof listInvoicesForMultipleOrders;
|
|
1446
1486
|
declare namespace context$m {
|
|
1447
|
-
export { type ActionEvent$i as ActionEvent, type AddInvoiceToOrderRequest$1 as AddInvoiceToOrderRequest, type AddInvoiceToOrderResponse$1 as AddInvoiceToOrderResponse, type ApplicationError$b as ApplicationError, type BulkActionMetadata$4 as BulkActionMetadata, type BulkGenerateInvoicesRequest$1 as BulkGenerateInvoicesRequest, type BulkGenerateInvoicesResponse$1 as BulkGenerateInvoicesResponse, type BulkInvoiceResult$1 as BulkInvoiceResult, type DomainEvent$i as DomainEvent, type DomainEventBodyOneOf$i as DomainEventBodyOneOf, type Empty$d as Empty, type EntityCreatedEvent$i as EntityCreatedEvent, type EntityDeletedEvent$i as EntityDeletedEvent, type EntityUpdatedEvent$i as EntityUpdatedEvent, type GenerateInvoiceRequest$1 as GenerateInvoiceRequest, type GenerateInvoiceResponse$1 as GenerateInvoiceResponse, type context$m_GenerateInvoiceWithNumberRequest as GenerateInvoiceWithNumberRequest, type context$m_GenerateInvoiceWithNumberResponse as GenerateInvoiceWithNumberResponse, type context$m_GetOrderInvoiceRequest as GetOrderInvoiceRequest, type context$m_GetOrderInvoiceResponse as GetOrderInvoiceResponse, type IdentificationData$i as IdentificationData, type IdentificationDataIdOneOf$i as IdentificationDataIdOneOf, type context$m_Invoice as Invoice, type InvoiceForOrder$1 as InvoiceForOrder, type InvoicesForOrder$1 as InvoicesForOrder, type ItemMetadata$4 as ItemMetadata, type ListInvoicesForMultipleOrdersRequest$1 as ListInvoicesForMultipleOrdersRequest, type ListInvoicesForMultipleOrdersResponse$1 as ListInvoicesForMultipleOrdersResponse, type context$m_ListInvoicesForMultipleOrdersResponseNonNullableFields as ListInvoicesForMultipleOrdersResponseNonNullableFields, type ListInvoicesForSingleOrderRequest$1 as ListInvoicesForSingleOrderRequest, type ListInvoicesForSingleOrderResponse$1 as ListInvoicesForSingleOrderResponse, type MessageEnvelope$i as MessageEnvelope, type RestoreInfo$h as RestoreInfo, WebhookIdentityType$i as WebhookIdentityType, context$m_listInvoicesForMultipleOrders as listInvoicesForMultipleOrders };
|
|
1487
|
+
export { type ActionEvent$i as ActionEvent, type AddInvoiceToOrderRequest$1 as AddInvoiceToOrderRequest, type AddInvoiceToOrderResponse$1 as AddInvoiceToOrderResponse, type ApplicationError$b as ApplicationError, type BulkActionMetadata$4 as BulkActionMetadata, type BulkGenerateInvoicesRequest$1 as BulkGenerateInvoicesRequest, type BulkGenerateInvoicesResponse$1 as BulkGenerateInvoicesResponse, type BulkInvoiceResult$1 as BulkInvoiceResult, type DomainEvent$i as DomainEvent, type DomainEventBodyOneOf$i as DomainEventBodyOneOf, type Empty$d as Empty, type EntityCreatedEvent$i as EntityCreatedEvent, type EntityDeletedEvent$i as EntityDeletedEvent, type EntityUpdatedEvent$i as EntityUpdatedEvent, type GenerateInvoiceRequest$1 as GenerateInvoiceRequest, type GenerateInvoiceResponse$1 as GenerateInvoiceResponse, type context$m_GenerateInvoiceWithNumberRequest as GenerateInvoiceWithNumberRequest, type context$m_GenerateInvoiceWithNumberResponse as GenerateInvoiceWithNumberResponse, type context$m_GetOrderInvoiceRequest as GetOrderInvoiceRequest, type context$m_GetOrderInvoiceResponse as GetOrderInvoiceResponse, type IdentificationData$i as IdentificationData, type IdentificationDataIdOneOf$i as IdentificationDataIdOneOf, type context$m_Invoice as Invoice, type InvoiceForOrder$1 as InvoiceForOrder, type InvoicesForOrder$1 as InvoicesForOrder, type ItemMetadata$4 as ItemMetadata, type ListInvoicesForMultipleOrdersRequest$1 as ListInvoicesForMultipleOrdersRequest, type ListInvoicesForMultipleOrdersResponse$1 as ListInvoicesForMultipleOrdersResponse, type context$m_ListInvoicesForMultipleOrdersResponseNonNullableFields as ListInvoicesForMultipleOrdersResponseNonNullableFields, type ListInvoicesForSingleOrderRequest$1 as ListInvoicesForSingleOrderRequest, type ListInvoicesForSingleOrderResponse$1 as ListInvoicesForSingleOrderResponse, type MessageEnvelope$i as MessageEnvelope, type RestoreInfo$h as RestoreInfo, WebhookIdentityType$i as WebhookIdentityType, type context$m__publicListInvoicesForMultipleOrdersType as _publicListInvoicesForMultipleOrdersType, context$m_listInvoicesForMultipleOrders as listInvoicesForMultipleOrders };
|
|
1448
1488
|
}
|
|
1449
1489
|
|
|
1450
1490
|
interface Recommendation {
|
|
@@ -1599,10 +1639,15 @@ interface GetRecommendationOptions {
|
|
|
1599
1639
|
minimumRecommendedItems?: number;
|
|
1600
1640
|
}
|
|
1601
1641
|
|
|
1642
|
+
declare function listAvailableAlgorithms$1(httpClient: HttpClient): () => Promise<ListAvailableAlgorithmsResponse & ListAvailableAlgorithmsResponseNonNullableFields>;
|
|
1643
|
+
declare function getRecommendation$1(httpClient: HttpClient): (algorithms: Algorithm[], options?: GetRecommendationOptions) => Promise<GetRecommendationResponse & GetRecommendationResponseNonNullableFields>;
|
|
1644
|
+
|
|
1602
1645
|
declare function createRESTModule$l<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1603
1646
|
|
|
1604
|
-
|
|
1605
|
-
declare const
|
|
1647
|
+
type _publicListAvailableAlgorithmsType = typeof listAvailableAlgorithms$1;
|
|
1648
|
+
declare const listAvailableAlgorithms: ReturnType<typeof createRESTModule$l<_publicListAvailableAlgorithmsType>>;
|
|
1649
|
+
type _publicGetRecommendationType = typeof getRecommendation$1;
|
|
1650
|
+
declare const getRecommendation: ReturnType<typeof createRESTModule$l<_publicGetRecommendationType>>;
|
|
1606
1651
|
|
|
1607
1652
|
type context$l_Algorithm = Algorithm;
|
|
1608
1653
|
type context$l_AlgorithmConfig = AlgorithmConfig;
|
|
@@ -1619,10 +1664,12 @@ type context$l_ListAvailableAlgorithmsResponse = ListAvailableAlgorithmsResponse
|
|
|
1619
1664
|
type context$l_ListAvailableAlgorithmsResponseNonNullableFields = ListAvailableAlgorithmsResponseNonNullableFields;
|
|
1620
1665
|
type context$l_Recommendation = Recommendation;
|
|
1621
1666
|
type context$l_RecommendationAlgorithmNotSupported = RecommendationAlgorithmNotSupported;
|
|
1667
|
+
type context$l__publicGetRecommendationType = _publicGetRecommendationType;
|
|
1668
|
+
type context$l__publicListAvailableAlgorithmsType = _publicListAvailableAlgorithmsType;
|
|
1622
1669
|
declare const context$l_getRecommendation: typeof getRecommendation;
|
|
1623
1670
|
declare const context$l_listAvailableAlgorithms: typeof listAvailableAlgorithms;
|
|
1624
1671
|
declare namespace context$l {
|
|
1625
|
-
export { type context$l_Algorithm as Algorithm, type context$l_AlgorithmConfig as AlgorithmConfig, type context$l_AlgorithmInfo as AlgorithmInfo, context$l_AlgorithmType as AlgorithmType, type CatalogReference$8 as CatalogReference, type context$l_GetRecommendationOptions as GetRecommendationOptions, type context$l_GetRecommendationRequest as GetRecommendationRequest, type context$l_GetRecommendationResponse as GetRecommendationResponse, type context$l_GetRecommendationResponseNonNullableFields as GetRecommendationResponseNonNullableFields, type context$l_ItemAppIdNotSupportedByProvider as ItemAppIdNotSupportedByProvider, type context$l_ListAvailableAlgorithmsRequest as ListAvailableAlgorithmsRequest, type context$l_ListAvailableAlgorithmsResponse as ListAvailableAlgorithmsResponse, type context$l_ListAvailableAlgorithmsResponseNonNullableFields as ListAvailableAlgorithmsResponseNonNullableFields, type context$l_Recommendation as Recommendation, type context$l_RecommendationAlgorithmNotSupported as RecommendationAlgorithmNotSupported, context$l_getRecommendation as getRecommendation, context$l_listAvailableAlgorithms as listAvailableAlgorithms };
|
|
1672
|
+
export { type context$l_Algorithm as Algorithm, type context$l_AlgorithmConfig as AlgorithmConfig, type context$l_AlgorithmInfo as AlgorithmInfo, context$l_AlgorithmType as AlgorithmType, type CatalogReference$8 as CatalogReference, type context$l_GetRecommendationOptions as GetRecommendationOptions, type context$l_GetRecommendationRequest as GetRecommendationRequest, type context$l_GetRecommendationResponse as GetRecommendationResponse, type context$l_GetRecommendationResponseNonNullableFields as GetRecommendationResponseNonNullableFields, type context$l_ItemAppIdNotSupportedByProvider as ItemAppIdNotSupportedByProvider, type context$l_ListAvailableAlgorithmsRequest as ListAvailableAlgorithmsRequest, type context$l_ListAvailableAlgorithmsResponse as ListAvailableAlgorithmsResponse, type context$l_ListAvailableAlgorithmsResponseNonNullableFields as ListAvailableAlgorithmsResponseNonNullableFields, type context$l_Recommendation as Recommendation, type context$l_RecommendationAlgorithmNotSupported as RecommendationAlgorithmNotSupported, type context$l__publicGetRecommendationType as _publicGetRecommendationType, type context$l__publicListAvailableAlgorithmsType as _publicListAvailableAlgorithmsType, context$l_getRecommendation as getRecommendation, context$l_listAvailableAlgorithms as listAvailableAlgorithms };
|
|
1626
1673
|
}
|
|
1627
1674
|
|
|
1628
1675
|
interface AbandonedCheckout {
|
|
@@ -2390,15 +2437,27 @@ interface AbandonedCheckoutsQueryBuilder {
|
|
|
2390
2437
|
find: () => Promise<AbandonedCheckoutsQueryResult>;
|
|
2391
2438
|
}
|
|
2392
2439
|
|
|
2440
|
+
declare function getAbandonedCheckout$1(httpClient: HttpClient): (abandonedCheckoutId: string) => Promise<AbandonedCheckout & AbandonedCheckoutNonNullableFields>;
|
|
2441
|
+
declare function deleteAbandonedCheckout$1(httpClient: HttpClient): (abandonedCheckoutId: string) => Promise<void>;
|
|
2442
|
+
declare function queryAbandonedCheckouts$1(httpClient: HttpClient): () => AbandonedCheckoutsQueryBuilder;
|
|
2443
|
+
declare function redirectToCheckout$1(httpClient: HttpClient): (abandonedCheckoutId: string, metasiteId: string) => Promise<RawHttpResponse$1 & RawHttpResponseNonNullableFields$1>;
|
|
2444
|
+
declare const onAbandonedCheckoutRecovered$1: EventDefinition<AbandonedCheckoutRecoveredEnvelope, "wix.ecom.v1.abandoned_checkout_recovered">;
|
|
2445
|
+
|
|
2393
2446
|
declare function createRESTModule$k<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
2394
2447
|
|
|
2395
2448
|
declare function createEventModule$f<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2396
2449
|
|
|
2397
|
-
|
|
2398
|
-
declare const
|
|
2399
|
-
|
|
2400
|
-
declare const
|
|
2401
|
-
|
|
2450
|
+
type _publicGetAbandonedCheckoutType = typeof getAbandonedCheckout$1;
|
|
2451
|
+
declare const getAbandonedCheckout: ReturnType<typeof createRESTModule$k<_publicGetAbandonedCheckoutType>>;
|
|
2452
|
+
type _publicDeleteAbandonedCheckoutType = typeof deleteAbandonedCheckout$1;
|
|
2453
|
+
declare const deleteAbandonedCheckout: ReturnType<typeof createRESTModule$k<_publicDeleteAbandonedCheckoutType>>;
|
|
2454
|
+
type _publicQueryAbandonedCheckoutsType = typeof queryAbandonedCheckouts$1;
|
|
2455
|
+
declare const queryAbandonedCheckouts: ReturnType<typeof createRESTModule$k<_publicQueryAbandonedCheckoutsType>>;
|
|
2456
|
+
type _publicRedirectToCheckoutType = typeof redirectToCheckout$1;
|
|
2457
|
+
declare const redirectToCheckout: ReturnType<typeof createRESTModule$k<_publicRedirectToCheckoutType>>;
|
|
2458
|
+
|
|
2459
|
+
type _publicOnAbandonedCheckoutRecoveredType = typeof onAbandonedCheckoutRecovered$1;
|
|
2460
|
+
declare const onAbandonedCheckoutRecovered: ReturnType<typeof createEventModule$f<_publicOnAbandonedCheckoutRecoveredType>>;
|
|
2402
2461
|
|
|
2403
2462
|
type context$k_AbandonedCheckout = AbandonedCheckout;
|
|
2404
2463
|
type context$k_AbandonedCheckoutNonNullableFields = AbandonedCheckoutNonNullableFields;
|
|
@@ -2437,13 +2496,18 @@ type context$k_SearchAbandonedCheckoutsResponse = SearchAbandonedCheckoutsRespon
|
|
|
2437
2496
|
type context$k_SearchDetails = SearchDetails;
|
|
2438
2497
|
type context$k_SearchPagingMethodOneOf = SearchPagingMethodOneOf;
|
|
2439
2498
|
type context$k_V1BuyerInfoIdOneOf = V1BuyerInfoIdOneOf;
|
|
2499
|
+
type context$k__publicDeleteAbandonedCheckoutType = _publicDeleteAbandonedCheckoutType;
|
|
2500
|
+
type context$k__publicGetAbandonedCheckoutType = _publicGetAbandonedCheckoutType;
|
|
2501
|
+
type context$k__publicOnAbandonedCheckoutRecoveredType = _publicOnAbandonedCheckoutRecoveredType;
|
|
2502
|
+
type context$k__publicQueryAbandonedCheckoutsType = _publicQueryAbandonedCheckoutsType;
|
|
2503
|
+
type context$k__publicRedirectToCheckoutType = _publicRedirectToCheckoutType;
|
|
2440
2504
|
declare const context$k_deleteAbandonedCheckout: typeof deleteAbandonedCheckout;
|
|
2441
2505
|
declare const context$k_getAbandonedCheckout: typeof getAbandonedCheckout;
|
|
2442
2506
|
declare const context$k_onAbandonedCheckoutRecovered: typeof onAbandonedCheckoutRecovered;
|
|
2443
2507
|
declare const context$k_queryAbandonedCheckouts: typeof queryAbandonedCheckouts;
|
|
2444
2508
|
declare const context$k_redirectToCheckout: typeof redirectToCheckout;
|
|
2445
2509
|
declare namespace context$k {
|
|
2446
|
-
export { type context$k_AbandonedCheckout as AbandonedCheckout, type context$k_AbandonedCheckoutNonNullableFields as AbandonedCheckoutNonNullableFields, type context$k_AbandonedCheckoutRecovered as AbandonedCheckoutRecovered, type context$k_AbandonedCheckoutRecoveredEnvelope as AbandonedCheckoutRecoveredEnvelope, type context$k_AbandonedCheckoutsQueryBuilder as AbandonedCheckoutsQueryBuilder, type context$k_AbandonedCheckoutsQueryResult as AbandonedCheckoutsQueryResult, type ActionEvent$h as ActionEvent, type Activity$3 as Activity, ActivityType$3 as ActivityType, type context$k_AddAbandonedCheckoutActivityRequest as AddAbandonedCheckoutActivityRequest, type context$k_AddAbandonedCheckoutActivityResponse as AddAbandonedCheckoutActivityResponse, type BaseEventMetadata$f as BaseEventMetadata, type BuyerInfo$8 as BuyerInfo, type Cancel$1 as Cancel, type context$k_CartAbandonedEvent as CartAbandonedEvent, type context$k_CartRecoveredEvent as CartRecoveredEvent, type context$k_CommonCursorPaging as CommonCursorPaging, type context$k_CommonCursors as CommonCursors, type context$k_CommonPaging as CommonPaging, type context$k_CommonPagingMetadataV2 as CommonPagingMetadataV2, context$k_CommonSortOrder as CommonSortOrder, type context$k_CommonSorting as CommonSorting, type Complete$1 as Complete, type CursorPaging$a as CursorPaging, type Cursors$a as Cursors, type context$k_DeleteAbandonedCheckoutRequest as DeleteAbandonedCheckoutRequest, type context$k_DeleteAbandonedCheckoutResponse as DeleteAbandonedCheckoutResponse, type DomainEvent$h as DomainEvent, type DomainEventBodyOneOf$h as DomainEventBodyOneOf, type Empty$c as Empty, type EntityCreatedEvent$h as EntityCreatedEvent, type EntityDeletedEvent$h as EntityDeletedEvent, type EntityUpdatedEvent$h as EntityUpdatedEvent, type EventMetadata$f as EventMetadata, type FullAddressContactDetails$6 as FullAddressContactDetails, type context$k_GetAbandonedCheckoutRequest as GetAbandonedCheckoutRequest, type context$k_GetAbandonedCheckoutResponse as GetAbandonedCheckoutResponse, type context$k_GetAbandonedCheckoutResponseNonNullableFields as GetAbandonedCheckoutResponseNonNullableFields, type HeadersEntry$1 as HeadersEntry, type IdentificationData$h as IdentificationData, type IdentificationDataIdOneOf$h as IdentificationDataIdOneOf, context$k_Identity as Identity, type MessageEnvelope$h as MessageEnvelope, context$k_Mode as Mode, type MultiCurrencyPrice$5 as MultiCurrencyPrice, type Paging$1 as Paging, type context$k_PagingMetadataV2 as PagingMetadataV2, type context$k_QueryAbandonedCheckoutsRequest as QueryAbandonedCheckoutsRequest, type context$k_QueryAbandonedCheckoutsResponse as QueryAbandonedCheckoutsResponse, type context$k_QueryAbandonedCheckoutsResponseNonNullableFields as QueryAbandonedCheckoutsResponseNonNullableFields, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RawHttpResponse$1 as RawHttpResponse, type RawHttpResponseNonNullableFields$1 as RawHttpResponseNonNullableFields, type context$k_RedirectToCheckoutRequest as RedirectToCheckoutRequest, type Reschedule$1 as Reschedule, type RestoreInfo$g as RestoreInfo, type context$k_Search as Search, type context$k_SearchAbandonedCheckoutsRequest as SearchAbandonedCheckoutsRequest, type context$k_SearchAbandonedCheckoutsResponse as SearchAbandonedCheckoutsResponse, type context$k_SearchDetails as SearchDetails, type context$k_SearchPagingMethodOneOf as SearchPagingMethodOneOf, SortOrder$a as SortOrder, type Sorting$a as Sorting, Status$3 as Status, type Task$1 as Task, type TaskAction$1 as TaskAction, type TaskActionActionOneOf$1 as TaskActionActionOneOf, type TaskKey$1 as TaskKey, type Totals$2 as Totals, type V1BuyerInfo$1 as V1BuyerInfo, type context$k_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type VatId$7 as VatId, VatType$7 as VatType, WebhookIdentityType$h as WebhookIdentityType, context$k_deleteAbandonedCheckout as deleteAbandonedCheckout, context$k_getAbandonedCheckout as getAbandonedCheckout, context$k_onAbandonedCheckoutRecovered as onAbandonedCheckoutRecovered, context$k_queryAbandonedCheckouts as queryAbandonedCheckouts, context$k_redirectToCheckout as redirectToCheckout };
|
|
2510
|
+
export { type context$k_AbandonedCheckout as AbandonedCheckout, type context$k_AbandonedCheckoutNonNullableFields as AbandonedCheckoutNonNullableFields, type context$k_AbandonedCheckoutRecovered as AbandonedCheckoutRecovered, type context$k_AbandonedCheckoutRecoveredEnvelope as AbandonedCheckoutRecoveredEnvelope, type context$k_AbandonedCheckoutsQueryBuilder as AbandonedCheckoutsQueryBuilder, type context$k_AbandonedCheckoutsQueryResult as AbandonedCheckoutsQueryResult, type ActionEvent$h as ActionEvent, type Activity$3 as Activity, ActivityType$3 as ActivityType, type context$k_AddAbandonedCheckoutActivityRequest as AddAbandonedCheckoutActivityRequest, type context$k_AddAbandonedCheckoutActivityResponse as AddAbandonedCheckoutActivityResponse, type BaseEventMetadata$f as BaseEventMetadata, type BuyerInfo$8 as BuyerInfo, type Cancel$1 as Cancel, type context$k_CartAbandonedEvent as CartAbandonedEvent, type context$k_CartRecoveredEvent as CartRecoveredEvent, type context$k_CommonCursorPaging as CommonCursorPaging, type context$k_CommonCursors as CommonCursors, type context$k_CommonPaging as CommonPaging, type context$k_CommonPagingMetadataV2 as CommonPagingMetadataV2, context$k_CommonSortOrder as CommonSortOrder, type context$k_CommonSorting as CommonSorting, type Complete$1 as Complete, type CursorPaging$a as CursorPaging, type Cursors$a as Cursors, type context$k_DeleteAbandonedCheckoutRequest as DeleteAbandonedCheckoutRequest, type context$k_DeleteAbandonedCheckoutResponse as DeleteAbandonedCheckoutResponse, type DomainEvent$h as DomainEvent, type DomainEventBodyOneOf$h as DomainEventBodyOneOf, type Empty$c as Empty, type EntityCreatedEvent$h as EntityCreatedEvent, type EntityDeletedEvent$h as EntityDeletedEvent, type EntityUpdatedEvent$h as EntityUpdatedEvent, type EventMetadata$f as EventMetadata, type FullAddressContactDetails$6 as FullAddressContactDetails, type context$k_GetAbandonedCheckoutRequest as GetAbandonedCheckoutRequest, type context$k_GetAbandonedCheckoutResponse as GetAbandonedCheckoutResponse, type context$k_GetAbandonedCheckoutResponseNonNullableFields as GetAbandonedCheckoutResponseNonNullableFields, type HeadersEntry$1 as HeadersEntry, type IdentificationData$h as IdentificationData, type IdentificationDataIdOneOf$h as IdentificationDataIdOneOf, context$k_Identity as Identity, type MessageEnvelope$h as MessageEnvelope, context$k_Mode as Mode, type MultiCurrencyPrice$5 as MultiCurrencyPrice, type Paging$1 as Paging, type context$k_PagingMetadataV2 as PagingMetadataV2, type context$k_QueryAbandonedCheckoutsRequest as QueryAbandonedCheckoutsRequest, type context$k_QueryAbandonedCheckoutsResponse as QueryAbandonedCheckoutsResponse, type context$k_QueryAbandonedCheckoutsResponseNonNullableFields as QueryAbandonedCheckoutsResponseNonNullableFields, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RawHttpResponse$1 as RawHttpResponse, type RawHttpResponseNonNullableFields$1 as RawHttpResponseNonNullableFields, type context$k_RedirectToCheckoutRequest as RedirectToCheckoutRequest, type Reschedule$1 as Reschedule, type RestoreInfo$g as RestoreInfo, type context$k_Search as Search, type context$k_SearchAbandonedCheckoutsRequest as SearchAbandonedCheckoutsRequest, type context$k_SearchAbandonedCheckoutsResponse as SearchAbandonedCheckoutsResponse, type context$k_SearchDetails as SearchDetails, type context$k_SearchPagingMethodOneOf as SearchPagingMethodOneOf, SortOrder$a as SortOrder, type Sorting$a as Sorting, Status$3 as Status, type Task$1 as Task, type TaskAction$1 as TaskAction, type TaskActionActionOneOf$1 as TaskActionActionOneOf, type TaskKey$1 as TaskKey, type Totals$2 as Totals, type V1BuyerInfo$1 as V1BuyerInfo, type context$k_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type VatId$7 as VatId, VatType$7 as VatType, WebhookIdentityType$h as WebhookIdentityType, type context$k__publicDeleteAbandonedCheckoutType as _publicDeleteAbandonedCheckoutType, type context$k__publicGetAbandonedCheckoutType as _publicGetAbandonedCheckoutType, type context$k__publicOnAbandonedCheckoutRecoveredType as _publicOnAbandonedCheckoutRecoveredType, type context$k__publicQueryAbandonedCheckoutsType as _publicQueryAbandonedCheckoutsType, type context$k__publicRedirectToCheckoutType as _publicRedirectToCheckoutType, context$k_deleteAbandonedCheckout as deleteAbandonedCheckout, context$k_getAbandonedCheckout as getAbandonedCheckout, context$k_onAbandonedCheckoutRecovered as onAbandonedCheckoutRecovered, onAbandonedCheckoutRecovered$1 as publicOnAbandonedCheckoutRecovered, context$k_queryAbandonedCheckouts as queryAbandonedCheckouts, context$k_redirectToCheckout as redirectToCheckout };
|
|
2447
2511
|
}
|
|
2448
2512
|
|
|
2449
2513
|
/**
|
|
@@ -3037,20 +3101,44 @@ interface ReportItemsBackInStockOptions {
|
|
|
3037
3101
|
extraAutomationTemplateParameters?: Record<string, string>;
|
|
3038
3102
|
}
|
|
3039
3103
|
|
|
3104
|
+
declare function createBackInStockNotificationRequest$1(httpClient: HttpClient): (request: BackInStockNotificationRequest, itemDetails: BackInStockItemDetails) => Promise<BackInStockNotificationRequest & BackInStockNotificationRequestNonNullableFields>;
|
|
3105
|
+
declare function getBackInStockNotificationRequest$1(httpClient: HttpClient): (_id: string) => Promise<BackInStockNotificationRequest & BackInStockNotificationRequestNonNullableFields>;
|
|
3106
|
+
declare function deleteBackInStockNotificationRequest$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
3107
|
+
declare function markAsNotificationSent$1(httpClient: HttpClient): (_id: string) => Promise<MarkAsNotificationSentResponse & MarkAsNotificationSentResponseNonNullableFields>;
|
|
3108
|
+
declare function queryBackInStockNotificationRequests$1(httpClient: HttpClient): () => RequestsQueryBuilder;
|
|
3109
|
+
declare function getBackInStockNotificationRequestsCountByCatalogReferences$1(httpClient: HttpClient): (catalogReferences: CatalogReference$7[]) => Promise<GetBackInStockNotificationRequestsCountByCatalogReferencesResponse & GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields>;
|
|
3110
|
+
declare function reportItemsBackInStock$1(httpClient: HttpClient): (itemDetails: BackInStockItemDetails, options?: ReportItemsBackInStockOptions) => Promise<void>;
|
|
3111
|
+
declare const onBackInStockNotificationRequestCreated$1: EventDefinition<BackInStockNotificationRequestCreatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_created">;
|
|
3112
|
+
declare const onBackInStockNotificationRequestDeleted$1: EventDefinition<BackInStockNotificationRequestDeletedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_deleted">;
|
|
3113
|
+
declare const onBackInStockNotificationRequestUpdated$1: EventDefinition<BackInStockNotificationRequestUpdatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_updated">;
|
|
3114
|
+
|
|
3040
3115
|
declare function createRESTModule$j<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3041
3116
|
|
|
3042
3117
|
declare function createEventModule$e<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
3043
3118
|
|
|
3044
|
-
|
|
3045
|
-
declare const
|
|
3046
|
-
|
|
3047
|
-
declare const
|
|
3048
|
-
|
|
3049
|
-
declare const
|
|
3050
|
-
|
|
3051
|
-
declare const
|
|
3052
|
-
|
|
3053
|
-
declare const
|
|
3119
|
+
type _publicCreateBackInStockNotificationRequestType = typeof createBackInStockNotificationRequest$1;
|
|
3120
|
+
declare const createBackInStockNotificationRequest: ReturnType<typeof createRESTModule$j<_publicCreateBackInStockNotificationRequestType>>;
|
|
3121
|
+
type _publicGetBackInStockNotificationRequestType = typeof getBackInStockNotificationRequest$1;
|
|
3122
|
+
declare const getBackInStockNotificationRequest: ReturnType<typeof createRESTModule$j<_publicGetBackInStockNotificationRequestType>>;
|
|
3123
|
+
type _publicDeleteBackInStockNotificationRequestType = typeof deleteBackInStockNotificationRequest$1;
|
|
3124
|
+
declare const deleteBackInStockNotificationRequest: ReturnType<typeof createRESTModule$j<_publicDeleteBackInStockNotificationRequestType>>;
|
|
3125
|
+
type _publicMarkAsNotificationSentType = typeof markAsNotificationSent$1;
|
|
3126
|
+
declare const markAsNotificationSent: ReturnType<typeof createRESTModule$j<_publicMarkAsNotificationSentType>>;
|
|
3127
|
+
type _publicQueryBackInStockNotificationRequestsType = typeof queryBackInStockNotificationRequests$1;
|
|
3128
|
+
declare const queryBackInStockNotificationRequests: ReturnType<typeof createRESTModule$j<_publicQueryBackInStockNotificationRequestsType>>;
|
|
3129
|
+
type _publicGetBackInStockNotificationRequestsCountByCatalogReferencesType = typeof getBackInStockNotificationRequestsCountByCatalogReferences$1;
|
|
3130
|
+
declare const getBackInStockNotificationRequestsCountByCatalogReferences: ReturnType<typeof createRESTModule$j<_publicGetBackInStockNotificationRequestsCountByCatalogReferencesType>>;
|
|
3131
|
+
type _publicReportItemsBackInStockType = typeof reportItemsBackInStock$1;
|
|
3132
|
+
declare const reportItemsBackInStock: ReturnType<typeof createRESTModule$j<_publicReportItemsBackInStockType>>;
|
|
3133
|
+
|
|
3134
|
+
type _publicOnBackInStockNotificationRequestCreatedType = typeof onBackInStockNotificationRequestCreated$1;
|
|
3135
|
+
declare const onBackInStockNotificationRequestCreated: ReturnType<typeof createEventModule$e<_publicOnBackInStockNotificationRequestCreatedType>>;
|
|
3136
|
+
|
|
3137
|
+
type _publicOnBackInStockNotificationRequestDeletedType = typeof onBackInStockNotificationRequestDeleted$1;
|
|
3138
|
+
declare const onBackInStockNotificationRequestDeleted: ReturnType<typeof createEventModule$e<_publicOnBackInStockNotificationRequestDeletedType>>;
|
|
3139
|
+
|
|
3140
|
+
type _publicOnBackInStockNotificationRequestUpdatedType = typeof onBackInStockNotificationRequestUpdated$1;
|
|
3141
|
+
declare const onBackInStockNotificationRequestUpdated: ReturnType<typeof createEventModule$e<_publicOnBackInStockNotificationRequestUpdatedType>>;
|
|
3054
3142
|
|
|
3055
3143
|
type context$j_BackInStockItemDetails = BackInStockItemDetails;
|
|
3056
3144
|
type context$j_BackInStockNotificationRequest = BackInStockNotificationRequest;
|
|
@@ -3086,6 +3174,16 @@ type context$j_ReportItemsBackInStockResponse = ReportItemsBackInStockResponse;
|
|
|
3086
3174
|
type context$j_RequestsQueryBuilder = RequestsQueryBuilder;
|
|
3087
3175
|
type context$j_RequestsQueryResult = RequestsQueryResult;
|
|
3088
3176
|
type context$j_URI = URI;
|
|
3177
|
+
type context$j__publicCreateBackInStockNotificationRequestType = _publicCreateBackInStockNotificationRequestType;
|
|
3178
|
+
type context$j__publicDeleteBackInStockNotificationRequestType = _publicDeleteBackInStockNotificationRequestType;
|
|
3179
|
+
type context$j__publicGetBackInStockNotificationRequestType = _publicGetBackInStockNotificationRequestType;
|
|
3180
|
+
type context$j__publicGetBackInStockNotificationRequestsCountByCatalogReferencesType = _publicGetBackInStockNotificationRequestsCountByCatalogReferencesType;
|
|
3181
|
+
type context$j__publicMarkAsNotificationSentType = _publicMarkAsNotificationSentType;
|
|
3182
|
+
type context$j__publicOnBackInStockNotificationRequestCreatedType = _publicOnBackInStockNotificationRequestCreatedType;
|
|
3183
|
+
type context$j__publicOnBackInStockNotificationRequestDeletedType = _publicOnBackInStockNotificationRequestDeletedType;
|
|
3184
|
+
type context$j__publicOnBackInStockNotificationRequestUpdatedType = _publicOnBackInStockNotificationRequestUpdatedType;
|
|
3185
|
+
type context$j__publicQueryBackInStockNotificationRequestsType = _publicQueryBackInStockNotificationRequestsType;
|
|
3186
|
+
type context$j__publicReportItemsBackInStockType = _publicReportItemsBackInStockType;
|
|
3089
3187
|
declare const context$j_createBackInStockNotificationRequest: typeof createBackInStockNotificationRequest;
|
|
3090
3188
|
declare const context$j_deleteBackInStockNotificationRequest: typeof deleteBackInStockNotificationRequest;
|
|
3091
3189
|
declare const context$j_getBackInStockNotificationRequest: typeof getBackInStockNotificationRequest;
|
|
@@ -3097,7 +3195,7 @@ declare const context$j_onBackInStockNotificationRequestUpdated: typeof onBackIn
|
|
|
3097
3195
|
declare const context$j_queryBackInStockNotificationRequests: typeof queryBackInStockNotificationRequests;
|
|
3098
3196
|
declare const context$j_reportItemsBackInStock: typeof reportItemsBackInStock;
|
|
3099
3197
|
declare namespace context$j {
|
|
3100
|
-
export { type ActionEvent$g as ActionEvent, type App$1 as App, type context$j_BackInStockItemDetails as BackInStockItemDetails, type context$j_BackInStockNotificationRequest as BackInStockNotificationRequest, type context$j_BackInStockNotificationRequestCreatedEnvelope as BackInStockNotificationRequestCreatedEnvelope, type context$j_BackInStockNotificationRequestDeletedEnvelope as BackInStockNotificationRequestDeletedEnvelope, type context$j_BackInStockNotificationRequestNonNullableFields as BackInStockNotificationRequestNonNullableFields, type context$j_BackInStockNotificationRequestUpdatedEnvelope as BackInStockNotificationRequestUpdatedEnvelope, type context$j_BackInStockNotificationRequestsCount as BackInStockNotificationRequestsCount, type BaseEventMetadata$e as BaseEventMetadata, type CatalogReference$7 as CatalogReference, type context$j_CreateBackInStockNotificationRequestRequest as CreateBackInStockNotificationRequestRequest, type context$j_CreateBackInStockNotificationRequestResponse as CreateBackInStockNotificationRequestResponse, type context$j_CreateBackInStockNotificationRequestResponseNonNullableFields as CreateBackInStockNotificationRequestResponseNonNullableFields, type CursorPaging$9 as CursorPaging, type Cursors$9 as Cursors, type context$j_DeleteBackInStockNotificationRequestRequest as DeleteBackInStockNotificationRequestRequest, type context$j_DeleteBackInStockNotificationRequestResponse as DeleteBackInStockNotificationRequestResponse, type DomainEvent$g as DomainEvent, type DomainEventBodyOneOf$g as DomainEventBodyOneOf, type Empty$b as Empty, type EntityCreatedEvent$g as EntityCreatedEvent, type EntityDeletedEvent$g as EntityDeletedEvent, type EntityUpdatedEvent$g as EntityUpdatedEvent, type EventMetadata$e as EventMetadata, type context$j_File as File, type context$j_GetBackInStockNotificationRequestRequest as GetBackInStockNotificationRequestRequest, type context$j_GetBackInStockNotificationRequestResponse as GetBackInStockNotificationRequestResponse, type context$j_GetBackInStockNotificationRequestResponseNonNullableFields as GetBackInStockNotificationRequestResponseNonNullableFields, type context$j_GetBackInStockNotificationRequestsCountByCatalogReferencesRequest as GetBackInStockNotificationRequestsCountByCatalogReferencesRequest, type context$j_GetBackInStockNotificationRequestsCountByCatalogReferencesResponse as GetBackInStockNotificationRequestsCountByCatalogReferencesResponse, type context$j_GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields as GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields, type IdentificationData$g as IdentificationData, type IdentificationDataIdOneOf$g as IdentificationDataIdOneOf, type context$j_InvalidateCache as InvalidateCache, type context$j_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$j_MarkAsNotificationSentRequest as MarkAsNotificationSentRequest, type context$j_MarkAsNotificationSentResponse as MarkAsNotificationSentResponse, type context$j_MarkAsNotificationSentResponseNonNullableFields as MarkAsNotificationSentResponseNonNullableFields, type MessageEnvelope$g as MessageEnvelope, type context$j_Page as Page, type PlatformPaging$1 as PlatformPaging, type PlatformPagingMetadata$1 as PlatformPagingMetadata, type PlatformQuery$1 as PlatformQuery, type PlatformQueryPagingMethodOneOf$1 as PlatformQueryPagingMethodOneOf, type context$j_QueryBackInStockNotificationRequestsRequest as QueryBackInStockNotificationRequestsRequest, type context$j_QueryBackInStockNotificationRequestsResponse as QueryBackInStockNotificationRequestsResponse, type context$j_QueryBackInStockNotificationRequestsResponseNonNullableFields as QueryBackInStockNotificationRequestsResponseNonNullableFields, type context$j_ReportItemsBackInStockOptions as ReportItemsBackInStockOptions, type context$j_ReportItemsBackInStockRequest as ReportItemsBackInStockRequest, type context$j_ReportItemsBackInStockResponse as ReportItemsBackInStockResponse, type context$j_RequestsQueryBuilder as RequestsQueryBuilder, type context$j_RequestsQueryResult as RequestsQueryResult, SortOrder$9 as SortOrder, type Sorting$9 as Sorting, Status$2 as Status, type context$j_URI as URI, WebhookIdentityType$g as WebhookIdentityType, context$j_createBackInStockNotificationRequest as createBackInStockNotificationRequest, context$j_deleteBackInStockNotificationRequest as deleteBackInStockNotificationRequest, context$j_getBackInStockNotificationRequest as getBackInStockNotificationRequest, context$j_getBackInStockNotificationRequestsCountByCatalogReferences as getBackInStockNotificationRequestsCountByCatalogReferences, context$j_markAsNotificationSent as markAsNotificationSent, context$j_onBackInStockNotificationRequestCreated as onBackInStockNotificationRequestCreated, context$j_onBackInStockNotificationRequestDeleted as onBackInStockNotificationRequestDeleted, context$j_onBackInStockNotificationRequestUpdated as onBackInStockNotificationRequestUpdated, context$j_queryBackInStockNotificationRequests as queryBackInStockNotificationRequests, context$j_reportItemsBackInStock as reportItemsBackInStock };
|
|
3198
|
+
export { type ActionEvent$g as ActionEvent, type App$1 as App, type context$j_BackInStockItemDetails as BackInStockItemDetails, type context$j_BackInStockNotificationRequest as BackInStockNotificationRequest, type context$j_BackInStockNotificationRequestCreatedEnvelope as BackInStockNotificationRequestCreatedEnvelope, type context$j_BackInStockNotificationRequestDeletedEnvelope as BackInStockNotificationRequestDeletedEnvelope, type context$j_BackInStockNotificationRequestNonNullableFields as BackInStockNotificationRequestNonNullableFields, type context$j_BackInStockNotificationRequestUpdatedEnvelope as BackInStockNotificationRequestUpdatedEnvelope, type context$j_BackInStockNotificationRequestsCount as BackInStockNotificationRequestsCount, type BaseEventMetadata$e as BaseEventMetadata, type CatalogReference$7 as CatalogReference, type context$j_CreateBackInStockNotificationRequestRequest as CreateBackInStockNotificationRequestRequest, type context$j_CreateBackInStockNotificationRequestResponse as CreateBackInStockNotificationRequestResponse, type context$j_CreateBackInStockNotificationRequestResponseNonNullableFields as CreateBackInStockNotificationRequestResponseNonNullableFields, type CursorPaging$9 as CursorPaging, type Cursors$9 as Cursors, type context$j_DeleteBackInStockNotificationRequestRequest as DeleteBackInStockNotificationRequestRequest, type context$j_DeleteBackInStockNotificationRequestResponse as DeleteBackInStockNotificationRequestResponse, type DomainEvent$g as DomainEvent, type DomainEventBodyOneOf$g as DomainEventBodyOneOf, type Empty$b as Empty, type EntityCreatedEvent$g as EntityCreatedEvent, type EntityDeletedEvent$g as EntityDeletedEvent, type EntityUpdatedEvent$g as EntityUpdatedEvent, type EventMetadata$e as EventMetadata, type context$j_File as File, type context$j_GetBackInStockNotificationRequestRequest as GetBackInStockNotificationRequestRequest, type context$j_GetBackInStockNotificationRequestResponse as GetBackInStockNotificationRequestResponse, type context$j_GetBackInStockNotificationRequestResponseNonNullableFields as GetBackInStockNotificationRequestResponseNonNullableFields, type context$j_GetBackInStockNotificationRequestsCountByCatalogReferencesRequest as GetBackInStockNotificationRequestsCountByCatalogReferencesRequest, type context$j_GetBackInStockNotificationRequestsCountByCatalogReferencesResponse as GetBackInStockNotificationRequestsCountByCatalogReferencesResponse, type context$j_GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields as GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields, type IdentificationData$g as IdentificationData, type IdentificationDataIdOneOf$g as IdentificationDataIdOneOf, type context$j_InvalidateCache as InvalidateCache, type context$j_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$j_MarkAsNotificationSentRequest as MarkAsNotificationSentRequest, type context$j_MarkAsNotificationSentResponse as MarkAsNotificationSentResponse, type context$j_MarkAsNotificationSentResponseNonNullableFields as MarkAsNotificationSentResponseNonNullableFields, type MessageEnvelope$g as MessageEnvelope, type context$j_Page as Page, type PlatformPaging$1 as PlatformPaging, type PlatformPagingMetadata$1 as PlatformPagingMetadata, type PlatformQuery$1 as PlatformQuery, type PlatformQueryPagingMethodOneOf$1 as PlatformQueryPagingMethodOneOf, type context$j_QueryBackInStockNotificationRequestsRequest as QueryBackInStockNotificationRequestsRequest, type context$j_QueryBackInStockNotificationRequestsResponse as QueryBackInStockNotificationRequestsResponse, type context$j_QueryBackInStockNotificationRequestsResponseNonNullableFields as QueryBackInStockNotificationRequestsResponseNonNullableFields, type context$j_ReportItemsBackInStockOptions as ReportItemsBackInStockOptions, type context$j_ReportItemsBackInStockRequest as ReportItemsBackInStockRequest, type context$j_ReportItemsBackInStockResponse as ReportItemsBackInStockResponse, type context$j_RequestsQueryBuilder as RequestsQueryBuilder, type context$j_RequestsQueryResult as RequestsQueryResult, SortOrder$9 as SortOrder, type Sorting$9 as Sorting, Status$2 as Status, type context$j_URI as URI, WebhookIdentityType$g as WebhookIdentityType, type context$j__publicCreateBackInStockNotificationRequestType as _publicCreateBackInStockNotificationRequestType, type context$j__publicDeleteBackInStockNotificationRequestType as _publicDeleteBackInStockNotificationRequestType, type context$j__publicGetBackInStockNotificationRequestType as _publicGetBackInStockNotificationRequestType, type context$j__publicGetBackInStockNotificationRequestsCountByCatalogReferencesType as _publicGetBackInStockNotificationRequestsCountByCatalogReferencesType, type context$j__publicMarkAsNotificationSentType as _publicMarkAsNotificationSentType, type context$j__publicOnBackInStockNotificationRequestCreatedType as _publicOnBackInStockNotificationRequestCreatedType, type context$j__publicOnBackInStockNotificationRequestDeletedType as _publicOnBackInStockNotificationRequestDeletedType, type context$j__publicOnBackInStockNotificationRequestUpdatedType as _publicOnBackInStockNotificationRequestUpdatedType, type context$j__publicQueryBackInStockNotificationRequestsType as _publicQueryBackInStockNotificationRequestsType, type context$j__publicReportItemsBackInStockType as _publicReportItemsBackInStockType, context$j_createBackInStockNotificationRequest as createBackInStockNotificationRequest, context$j_deleteBackInStockNotificationRequest as deleteBackInStockNotificationRequest, context$j_getBackInStockNotificationRequest as getBackInStockNotificationRequest, context$j_getBackInStockNotificationRequestsCountByCatalogReferences as getBackInStockNotificationRequestsCountByCatalogReferences, context$j_markAsNotificationSent as markAsNotificationSent, context$j_onBackInStockNotificationRequestCreated as onBackInStockNotificationRequestCreated, context$j_onBackInStockNotificationRequestDeleted as onBackInStockNotificationRequestDeleted, context$j_onBackInStockNotificationRequestUpdated as onBackInStockNotificationRequestUpdated, onBackInStockNotificationRequestCreated$1 as publicOnBackInStockNotificationRequestCreated, onBackInStockNotificationRequestDeleted$1 as publicOnBackInStockNotificationRequestDeleted, onBackInStockNotificationRequestUpdated$1 as publicOnBackInStockNotificationRequestUpdated, context$j_queryBackInStockNotificationRequests as queryBackInStockNotificationRequests, context$j_reportItemsBackInStock as reportItemsBackInStock };
|
|
3101
3199
|
}
|
|
3102
3200
|
|
|
3103
3201
|
/**
|
|
@@ -3156,11 +3254,18 @@ interface GetSettingsResponseNonNullableFields {
|
|
|
3156
3254
|
settings?: BackInStockSettingsNonNullableFields;
|
|
3157
3255
|
}
|
|
3158
3256
|
|
|
3257
|
+
declare function startCollectingRequests$1(httpClient: HttpClient): (appId: string) => Promise<StartCollectingRequestsResponse & StartCollectingRequestsResponseNonNullableFields>;
|
|
3258
|
+
declare function stopCollectingRequests$1(httpClient: HttpClient): (appId: string) => Promise<StopCollectingRequestsResponse & StopCollectingRequestsResponseNonNullableFields>;
|
|
3259
|
+
declare function getSettings$1(httpClient: HttpClient): () => Promise<GetSettingsResponse & GetSettingsResponseNonNullableFields>;
|
|
3260
|
+
|
|
3159
3261
|
declare function createRESTModule$i<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3160
3262
|
|
|
3161
|
-
|
|
3162
|
-
declare const
|
|
3163
|
-
|
|
3263
|
+
type _publicStartCollectingRequestsType = typeof startCollectingRequests$1;
|
|
3264
|
+
declare const startCollectingRequests: ReturnType<typeof createRESTModule$i<_publicStartCollectingRequestsType>>;
|
|
3265
|
+
type _publicStopCollectingRequestsType = typeof stopCollectingRequests$1;
|
|
3266
|
+
declare const stopCollectingRequests: ReturnType<typeof createRESTModule$i<_publicStopCollectingRequestsType>>;
|
|
3267
|
+
type _publicGetSettingsType = typeof getSettings$1;
|
|
3268
|
+
declare const getSettings: ReturnType<typeof createRESTModule$i<_publicGetSettingsType>>;
|
|
3164
3269
|
|
|
3165
3270
|
type context$i_BackInStockCollectionState = BackInStockCollectionState;
|
|
3166
3271
|
type context$i_BackInStockSettings = BackInStockSettings;
|
|
@@ -3173,11 +3278,14 @@ type context$i_StartCollectingRequestsResponseNonNullableFields = StartCollectin
|
|
|
3173
3278
|
type context$i_StopCollectingRequestsRequest = StopCollectingRequestsRequest;
|
|
3174
3279
|
type context$i_StopCollectingRequestsResponse = StopCollectingRequestsResponse;
|
|
3175
3280
|
type context$i_StopCollectingRequestsResponseNonNullableFields = StopCollectingRequestsResponseNonNullableFields;
|
|
3281
|
+
type context$i__publicGetSettingsType = _publicGetSettingsType;
|
|
3282
|
+
type context$i__publicStartCollectingRequestsType = _publicStartCollectingRequestsType;
|
|
3283
|
+
type context$i__publicStopCollectingRequestsType = _publicStopCollectingRequestsType;
|
|
3176
3284
|
declare const context$i_getSettings: typeof getSettings;
|
|
3177
3285
|
declare const context$i_startCollectingRequests: typeof startCollectingRequests;
|
|
3178
3286
|
declare const context$i_stopCollectingRequests: typeof stopCollectingRequests;
|
|
3179
3287
|
declare namespace context$i {
|
|
3180
|
-
export { type context$i_BackInStockCollectionState as BackInStockCollectionState, type context$i_BackInStockSettings as BackInStockSettings, type context$i_GetSettingsRequest as GetSettingsRequest, type context$i_GetSettingsResponse as GetSettingsResponse, type context$i_GetSettingsResponseNonNullableFields as GetSettingsResponseNonNullableFields, type context$i_StartCollectingRequestsRequest as StartCollectingRequestsRequest, type context$i_StartCollectingRequestsResponse as StartCollectingRequestsResponse, type context$i_StartCollectingRequestsResponseNonNullableFields as StartCollectingRequestsResponseNonNullableFields, type context$i_StopCollectingRequestsRequest as StopCollectingRequestsRequest, type context$i_StopCollectingRequestsResponse as StopCollectingRequestsResponse, type context$i_StopCollectingRequestsResponseNonNullableFields as StopCollectingRequestsResponseNonNullableFields, context$i_getSettings as getSettings, context$i_startCollectingRequests as startCollectingRequests, context$i_stopCollectingRequests as stopCollectingRequests };
|
|
3288
|
+
export { type context$i_BackInStockCollectionState as BackInStockCollectionState, type context$i_BackInStockSettings as BackInStockSettings, type context$i_GetSettingsRequest as GetSettingsRequest, type context$i_GetSettingsResponse as GetSettingsResponse, type context$i_GetSettingsResponseNonNullableFields as GetSettingsResponseNonNullableFields, type context$i_StartCollectingRequestsRequest as StartCollectingRequestsRequest, type context$i_StartCollectingRequestsResponse as StartCollectingRequestsResponse, type context$i_StartCollectingRequestsResponseNonNullableFields as StartCollectingRequestsResponseNonNullableFields, type context$i_StopCollectingRequestsRequest as StopCollectingRequestsRequest, type context$i_StopCollectingRequestsResponse as StopCollectingRequestsResponse, type context$i_StopCollectingRequestsResponseNonNullableFields as StopCollectingRequestsResponseNonNullableFields, type context$i__publicGetSettingsType as _publicGetSettingsType, type context$i__publicStartCollectingRequestsType as _publicStartCollectingRequestsType, type context$i__publicStopCollectingRequestsType as _publicStopCollectingRequestsType, context$i_getSettings as getSettings, context$i_startCollectingRequests as startCollectingRequests, context$i_stopCollectingRequests as stopCollectingRequests };
|
|
3181
3289
|
}
|
|
3182
3290
|
|
|
3183
3291
|
interface Cart$1 {
|
|
@@ -5529,28 +5637,64 @@ interface EstimateTotalsOptions {
|
|
|
5529
5637
|
selectedMemberships?: SelectedMemberships$4;
|
|
5530
5638
|
}
|
|
5531
5639
|
|
|
5640
|
+
declare function createCart$1(httpClient: HttpClient): (options?: CreateCartOptions) => Promise<Cart$1 & CartNonNullableFields$1>;
|
|
5641
|
+
declare function updateCart$1(httpClient: HttpClient): (_id: string | null, options?: UpdateCartOptions) => Promise<Cart$1 & CartNonNullableFields$1>;
|
|
5642
|
+
declare function getCart$1(httpClient: HttpClient): (_id: string) => Promise<Cart$1 & CartNonNullableFields$1>;
|
|
5643
|
+
declare function addToCart$1(httpClient: HttpClient): (_id: string, options?: AddToCartOptions) => Promise<AddToCartResponse$1 & AddToCartResponseNonNullableFields$1>;
|
|
5644
|
+
declare function removeLineItems$3(httpClient: HttpClient): (_id: string, lineItemIds: string[]) => Promise<RemoveLineItemsResponse$2 & RemoveLineItemsResponseNonNullableFields$2>;
|
|
5645
|
+
declare function createCheckout$3(httpClient: HttpClient): (_id: string, options?: CreateCheckoutOptions$1) => Promise<CreateCheckoutResponse$2 & CreateCheckoutResponseNonNullableFields$2>;
|
|
5646
|
+
declare function removeCoupon$3(httpClient: HttpClient): (_id: string) => Promise<RemoveCouponResponse$2 & RemoveCouponResponseNonNullableFields$2>;
|
|
5647
|
+
declare function updateLineItemsQuantity$3(httpClient: HttpClient): (_id: string, lineItems: LineItemQuantityUpdate$2[]) => Promise<UpdateLineItemsQuantityResponse$2 & UpdateLineItemsQuantityResponseNonNullableFields$2>;
|
|
5648
|
+
declare function estimateTotals$1(httpClient: HttpClient): (_id: string, options?: EstimateTotalsOptions) => Promise<EstimateTotalsResponse$1 & EstimateTotalsResponseNonNullableFields$1>;
|
|
5649
|
+
declare function deleteCart$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
5650
|
+
declare const onCartUpdated$3: EventDefinition<CartUpdatedEnvelope$1, "wix.ecom.v1.cart_updated">;
|
|
5651
|
+
declare const onCartDeleted$3: EventDefinition<CartDeletedEnvelope$1, "wix.ecom.v1.cart_deleted">;
|
|
5652
|
+
declare const onCartCreated$3: EventDefinition<CartCreatedEnvelope$1, "wix.ecom.v1.cart_created">;
|
|
5653
|
+
|
|
5532
5654
|
declare function createRESTModule$h<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5533
5655
|
|
|
5534
5656
|
declare function createEventModule$d<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5535
5657
|
|
|
5536
|
-
|
|
5537
|
-
declare const
|
|
5538
|
-
|
|
5539
|
-
declare const
|
|
5540
|
-
|
|
5541
|
-
declare const
|
|
5542
|
-
|
|
5543
|
-
declare const
|
|
5544
|
-
|
|
5545
|
-
declare const
|
|
5546
|
-
|
|
5547
|
-
declare const
|
|
5548
|
-
|
|
5658
|
+
type _publicCreateCartType = typeof createCart$1;
|
|
5659
|
+
declare const createCart: ReturnType<typeof createRESTModule$h<_publicCreateCartType>>;
|
|
5660
|
+
type _publicUpdateCartType = typeof updateCart$1;
|
|
5661
|
+
declare const updateCart: ReturnType<typeof createRESTModule$h<_publicUpdateCartType>>;
|
|
5662
|
+
type _publicGetCartType = typeof getCart$1;
|
|
5663
|
+
declare const getCart: ReturnType<typeof createRESTModule$h<_publicGetCartType>>;
|
|
5664
|
+
type _publicAddToCartType = typeof addToCart$1;
|
|
5665
|
+
declare const addToCart: ReturnType<typeof createRESTModule$h<_publicAddToCartType>>;
|
|
5666
|
+
type _publicRemoveLineItemsType$1 = typeof removeLineItems$3;
|
|
5667
|
+
declare const removeLineItems$2: ReturnType<typeof createRESTModule$h<_publicRemoveLineItemsType>>;
|
|
5668
|
+
type _publicCreateCheckoutType$1 = typeof createCheckout$3;
|
|
5669
|
+
declare const createCheckout$2: ReturnType<typeof createRESTModule$h<_publicCreateCheckoutType>>;
|
|
5670
|
+
type _publicRemoveCouponType$1 = typeof removeCoupon$3;
|
|
5671
|
+
declare const removeCoupon$2: ReturnType<typeof createRESTModule$h<_publicRemoveCouponType>>;
|
|
5672
|
+
type _publicUpdateLineItemsQuantityType$1 = typeof updateLineItemsQuantity$3;
|
|
5673
|
+
declare const updateLineItemsQuantity$2: ReturnType<typeof createRESTModule$h<_publicUpdateLineItemsQuantityType>>;
|
|
5674
|
+
type _publicEstimateTotalsType = typeof estimateTotals$1;
|
|
5675
|
+
declare const estimateTotals: ReturnType<typeof createRESTModule$h<_publicEstimateTotalsType>>;
|
|
5676
|
+
type _publicDeleteCartType = typeof deleteCart$1;
|
|
5677
|
+
declare const deleteCart: ReturnType<typeof createRESTModule$h<_publicDeleteCartType>>;
|
|
5678
|
+
|
|
5679
|
+
type _publicOnCartUpdatedType$1 = typeof onCartUpdated$3;
|
|
5680
|
+
declare const onCartUpdated$2: ReturnType<typeof createEventModule$d<_publicOnCartUpdatedType>>;
|
|
5681
|
+
|
|
5682
|
+
type _publicOnCartDeletedType$1 = typeof onCartDeleted$3;
|
|
5683
|
+
declare const onCartDeleted$2: ReturnType<typeof createEventModule$d<_publicOnCartDeletedType>>;
|
|
5684
|
+
|
|
5685
|
+
type _publicOnCartCreatedType$1 = typeof onCartCreated$3;
|
|
5686
|
+
declare const onCartCreated$2: ReturnType<typeof createEventModule$d<_publicOnCartCreatedType>>;
|
|
5549
5687
|
|
|
5550
5688
|
type context$h_AddToCartOptions = AddToCartOptions;
|
|
5551
5689
|
type context$h_CreateCartOptions = CreateCartOptions;
|
|
5552
5690
|
type context$h_EstimateTotalsOptions = EstimateTotalsOptions;
|
|
5553
5691
|
type context$h_UpdateCartOptions = UpdateCartOptions;
|
|
5692
|
+
type context$h__publicAddToCartType = _publicAddToCartType;
|
|
5693
|
+
type context$h__publicCreateCartType = _publicCreateCartType;
|
|
5694
|
+
type context$h__publicDeleteCartType = _publicDeleteCartType;
|
|
5695
|
+
type context$h__publicEstimateTotalsType = _publicEstimateTotalsType;
|
|
5696
|
+
type context$h__publicGetCartType = _publicGetCartType;
|
|
5697
|
+
type context$h__publicUpdateCartType = _publicUpdateCartType;
|
|
5554
5698
|
declare const context$h_addToCart: typeof addToCart;
|
|
5555
5699
|
declare const context$h_createCart: typeof createCart;
|
|
5556
5700
|
declare const context$h_deleteCart: typeof deleteCart;
|
|
@@ -5558,7 +5702,7 @@ declare const context$h_estimateTotals: typeof estimateTotals;
|
|
|
5558
5702
|
declare const context$h_getCart: typeof getCart;
|
|
5559
5703
|
declare const context$h_updateCart: typeof updateCart;
|
|
5560
5704
|
declare namespace context$h {
|
|
5561
|
-
export { type ActionEvent$f as ActionEvent, type context$h_AddToCartOptions as AddToCartOptions, type AddToCartRequest$1 as AddToCartRequest, type AddToCartResponse$1 as AddToCartResponse, type AddToCartResponseNonNullableFields$1 as AddToCartResponseNonNullableFields, type AddToCurrentCartAndEstimateTotalsRequest$1 as AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartRequest$1 as AddToCurrentCartRequest, type AdditionalFee$6 as AdditionalFee, type Address$9 as Address, type AddressLocation$8 as AddressLocation, type AddressWithContact$5 as AddressWithContact, type AggregatedTaxBreakdown$4 as AggregatedTaxBreakdown, type ApplicationError$a as ApplicationError, type AppliedDiscount$6 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$6 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$4 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$d as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type BuyerInfoIdOneOf$5 as BuyerInfoIdOneOf, type CalculatedLineItem$2 as CalculatedLineItem, type CalculationErrors$5 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$5 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$5 as CarrierError, type CarrierErrors$5 as CarrierErrors, type CarrierServiceOption$4 as CarrierServiceOption, type Cart$1 as Cart, type CartCreatedEnvelope$1 as CartCreatedEnvelope, type CartDeletedEnvelope$1 as CartDeletedEnvelope, type CartDiscount$1 as CartDiscount, type CartDiscountDiscountSourceOneOf$1 as CartDiscountDiscountSourceOneOf, type CartNonNullableFields$1 as CartNonNullableFields, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$6 as CatalogReference, ChannelType$6 as ChannelType, ChargeType$5 as ChargeType, type Color$5 as Color, type Coupon$6 as Coupon, type context$h_CreateCartOptions as CreateCartOptions, type CreateCartRequest$1 as CreateCartRequest, type CreateCartResponse$1 as CreateCartResponse, type CreateCartResponseNonNullableFields$1 as CreateCartResponseNonNullableFields, type CreateCheckoutFromCurrentCartRequest$1 as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions$1 as CreateCheckoutOptions, type CreateCheckoutRequest$2 as CreateCheckoutRequest, type CreateCheckoutResponse$2 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$2 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$4 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$6 as DeliveryLogistics, type DeliveryTimeSlot$6 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$5 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$5 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$5 as DescriptionLineName, DescriptionLineType$5 as DescriptionLineType, type DescriptionLineValueOneOf$5 as DescriptionLineValueOneOf, type Details$5 as Details, type DetailsKindOneOf$5 as DetailsKindOneOf, type DiscountRule$6 as DiscountRule, type DiscountRuleName$6 as DiscountRuleName, DiscountType$6 as DiscountType, type DomainEvent$f as DomainEvent, type DomainEventBodyOneOf$f as DomainEventBodyOneOf, type Empty$a as Empty, type EntityCreatedEvent$f as EntityCreatedEvent, type EntityDeletedEvent$f as EntityDeletedEvent, type EntityUpdatedEvent$f as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type context$h_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$d as EventMetadata, type ExtendedFields$9 as ExtendedFields, FallbackReason$4 as FallbackReason, type FieldViolation$5 as FieldViolation, FileType$4 as FileType, type FullAddressContactDetails$5 as FullAddressContactDetails, type GetCartByCheckoutIdRequest$1 as GetCartByCheckoutIdRequest, type GetCartByCheckoutIdResponse$1 as GetCartByCheckoutIdResponse, type GetCartRequest$1 as GetCartRequest, type GetCartResponse$1 as GetCartResponse, type GetCartResponseNonNullableFields$1 as GetCartResponseNonNullableFields, type GetCurrentCartRequest$1 as GetCurrentCartRequest, type GetCurrentCartResponse$1 as GetCurrentCartResponse, type GetCurrentCartResponseNonNullableFields$1 as GetCurrentCartResponseNonNullableFields, type GiftCard$5 as GiftCard, type Group$4 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$f as IdentificationData, type IdentificationDataIdOneOf$f as IdentificationDataIdOneOf, type InvalidMembership$4 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 as ItemAvailabilityStatus, type ItemTaxFullDetails$6 as ItemTaxFullDetails, type ItemType$6 as ItemType, ItemTypeItemType$6 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$6 as ItemTypeItemTypeDataOneOf, JurisdictionType$6 as JurisdictionType, type LineItem$6 as LineItem, type LineItemDiscount$6 as LineItemDiscount, type LineItemPricesData$2 as LineItemPricesData, type LineItemQuantityUpdate$2 as LineItemQuantityUpdate, ManualCalculationReason$4 as ManualCalculationReason, type Membership$4 as Membership, type MembershipName$6 as MembershipName, type MembershipOptions$4 as MembershipOptions, type MembershipPaymentCredits$4 as MembershipPaymentCredits, type MerchantDiscount$6 as MerchantDiscount, type MerchantDiscountInput$3 as MerchantDiscountInput, type MessageEnvelope$f as MessageEnvelope, type MultiCurrencyPrice$4 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$4 as OtherCharge, PaymentOptionType$6 as PaymentOptionType, type PhysicalProperties$6 as PhysicalProperties, type PickupDetails$7 as PickupDetails, PickupMethod$6 as PickupMethod, type PlainTextValue$5 as PlainTextValue, type PriceDescription$5 as PriceDescription, type PriceSummary$6 as PriceSummary, type ProductName$5 as ProductName, RateType$4 as RateType, type RemoveCouponFromCurrentCartRequest$1 as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$2 as RemoveCouponRequest, type RemoveCouponResponse$2 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$2 as RemoveCouponResponseNonNullableFields, type RemoveLineItemsFromCurrentCartRequest$1 as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$2 as RemoveLineItemsRequest, type RemoveLineItemsResponse$2 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$2 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$f as RestoreInfo, RuleType$5 as RuleType, type Scope$4 as Scope, type SecuredMedia$4 as SecuredMedia, type SelectedCarrierServiceOption$4 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$4 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$4 as SelectedCarrierServiceOptionPrices, type SelectedMembership$4 as SelectedMembership, type SelectedMemberships$4 as SelectedMemberships, type SelectedShippingOption$2 as SelectedShippingOption, type ServiceProperties$5 as ServiceProperties, Severity$3 as Severity, type ShippingInformation$4 as ShippingInformation, type ShippingOption$6 as ShippingOption, type ShippingPrice$6 as ShippingPrice, type ShippingRegion$6 as ShippingRegion, type StreetAddress$8 as StreetAddress, SubscriptionFrequency$7 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$7 as SubscriptionSettings, type SystemError$5 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$4 as TaxBreakdown, type TaxCalculationDetails$4 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$4 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$4 as TaxRateBreakdown, type TaxSummary$6 as TaxSummary, type Title$3 as Title, type context$h_UpdateCartOptions as UpdateCartOptions, type UpdateCartRequest$1 as UpdateCartRequest, type UpdateCartResponse$1 as UpdateCartResponse, type UpdateCartResponseNonNullableFields$1 as UpdateCartResponseNonNullableFields, type UpdateCurrentCartLineItemQuantityRequest$1 as UpdateCurrentCartLineItemQuantityRequest, type UpdateLineItemsQuantityRequest$2 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$2 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$2 as UpdateLineItemsQuantityResponseNonNullableFields, type V1Coupon$1 as V1Coupon, type V1MerchantDiscount$1 as V1MerchantDiscount, type ValidationError$5 as ValidationError, type VatId$6 as VatId, VatType$6 as VatType, type Violation$3 as Violation, WebhookIdentityType$f as WebhookIdentityType, WeightUnit$7 as WeightUnit, context$h_addToCart as addToCart, context$h_createCart as createCart, createCheckout$1 as createCheckout, context$h_deleteCart as deleteCart, context$h_estimateTotals as estimateTotals, context$h_getCart as getCart, onCartCreated$1 as onCartCreated, onCartDeleted$1 as onCartDeleted, onCartUpdated$1 as onCartUpdated, removeCoupon$1 as removeCoupon, removeLineItems$1 as removeLineItems, context$h_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
|
|
5705
|
+
export { type ActionEvent$f as ActionEvent, type context$h_AddToCartOptions as AddToCartOptions, type AddToCartRequest$1 as AddToCartRequest, type AddToCartResponse$1 as AddToCartResponse, type AddToCartResponseNonNullableFields$1 as AddToCartResponseNonNullableFields, type AddToCurrentCartAndEstimateTotalsRequest$1 as AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartRequest$1 as AddToCurrentCartRequest, type AdditionalFee$6 as AdditionalFee, type Address$9 as Address, type AddressLocation$8 as AddressLocation, type AddressWithContact$5 as AddressWithContact, type AggregatedTaxBreakdown$4 as AggregatedTaxBreakdown, type ApplicationError$a as ApplicationError, type AppliedDiscount$6 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$6 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$4 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$d as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type BuyerInfoIdOneOf$5 as BuyerInfoIdOneOf, type CalculatedLineItem$2 as CalculatedLineItem, type CalculationErrors$5 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$5 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$5 as CarrierError, type CarrierErrors$5 as CarrierErrors, type CarrierServiceOption$4 as CarrierServiceOption, type Cart$1 as Cart, type CartCreatedEnvelope$1 as CartCreatedEnvelope, type CartDeletedEnvelope$1 as CartDeletedEnvelope, type CartDiscount$1 as CartDiscount, type CartDiscountDiscountSourceOneOf$1 as CartDiscountDiscountSourceOneOf, type CartNonNullableFields$1 as CartNonNullableFields, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$6 as CatalogReference, ChannelType$6 as ChannelType, ChargeType$5 as ChargeType, type Color$5 as Color, type Coupon$6 as Coupon, type context$h_CreateCartOptions as CreateCartOptions, type CreateCartRequest$1 as CreateCartRequest, type CreateCartResponse$1 as CreateCartResponse, type CreateCartResponseNonNullableFields$1 as CreateCartResponseNonNullableFields, type CreateCheckoutFromCurrentCartRequest$1 as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions$1 as CreateCheckoutOptions, type CreateCheckoutRequest$2 as CreateCheckoutRequest, type CreateCheckoutResponse$2 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$2 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$4 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$6 as DeliveryLogistics, type DeliveryTimeSlot$6 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$5 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$5 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$5 as DescriptionLineName, DescriptionLineType$5 as DescriptionLineType, type DescriptionLineValueOneOf$5 as DescriptionLineValueOneOf, type Details$5 as Details, type DetailsKindOneOf$5 as DetailsKindOneOf, type DiscountRule$6 as DiscountRule, type DiscountRuleName$6 as DiscountRuleName, DiscountType$6 as DiscountType, type DomainEvent$f as DomainEvent, type DomainEventBodyOneOf$f as DomainEventBodyOneOf, type Empty$a as Empty, type EntityCreatedEvent$f as EntityCreatedEvent, type EntityDeletedEvent$f as EntityDeletedEvent, type EntityUpdatedEvent$f as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type context$h_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$d as EventMetadata, type ExtendedFields$9 as ExtendedFields, FallbackReason$4 as FallbackReason, type FieldViolation$5 as FieldViolation, FileType$4 as FileType, type FullAddressContactDetails$5 as FullAddressContactDetails, type GetCartByCheckoutIdRequest$1 as GetCartByCheckoutIdRequest, type GetCartByCheckoutIdResponse$1 as GetCartByCheckoutIdResponse, type GetCartRequest$1 as GetCartRequest, type GetCartResponse$1 as GetCartResponse, type GetCartResponseNonNullableFields$1 as GetCartResponseNonNullableFields, type GetCurrentCartRequest$1 as GetCurrentCartRequest, type GetCurrentCartResponse$1 as GetCurrentCartResponse, type GetCurrentCartResponseNonNullableFields$1 as GetCurrentCartResponseNonNullableFields, type GiftCard$5 as GiftCard, type Group$4 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$f as IdentificationData, type IdentificationDataIdOneOf$f as IdentificationDataIdOneOf, type InvalidMembership$4 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 as ItemAvailabilityStatus, type ItemTaxFullDetails$6 as ItemTaxFullDetails, type ItemType$6 as ItemType, ItemTypeItemType$6 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$6 as ItemTypeItemTypeDataOneOf, JurisdictionType$6 as JurisdictionType, type LineItem$6 as LineItem, type LineItemDiscount$6 as LineItemDiscount, type LineItemPricesData$2 as LineItemPricesData, type LineItemQuantityUpdate$2 as LineItemQuantityUpdate, ManualCalculationReason$4 as ManualCalculationReason, type Membership$4 as Membership, type MembershipName$6 as MembershipName, type MembershipOptions$4 as MembershipOptions, type MembershipPaymentCredits$4 as MembershipPaymentCredits, type MerchantDiscount$6 as MerchantDiscount, type MerchantDiscountInput$3 as MerchantDiscountInput, type MessageEnvelope$f as MessageEnvelope, type MultiCurrencyPrice$4 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$4 as OtherCharge, PaymentOptionType$6 as PaymentOptionType, type PhysicalProperties$6 as PhysicalProperties, type PickupDetails$7 as PickupDetails, PickupMethod$6 as PickupMethod, type PlainTextValue$5 as PlainTextValue, type PriceDescription$5 as PriceDescription, type PriceSummary$6 as PriceSummary, type ProductName$5 as ProductName, RateType$4 as RateType, type RemoveCouponFromCurrentCartRequest$1 as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$2 as RemoveCouponRequest, type RemoveCouponResponse$2 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$2 as RemoveCouponResponseNonNullableFields, type RemoveLineItemsFromCurrentCartRequest$1 as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$2 as RemoveLineItemsRequest, type RemoveLineItemsResponse$2 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$2 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$f as RestoreInfo, RuleType$5 as RuleType, type Scope$4 as Scope, type SecuredMedia$4 as SecuredMedia, type SelectedCarrierServiceOption$4 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$4 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$4 as SelectedCarrierServiceOptionPrices, type SelectedMembership$4 as SelectedMembership, type SelectedMemberships$4 as SelectedMemberships, type SelectedShippingOption$2 as SelectedShippingOption, type ServiceProperties$5 as ServiceProperties, Severity$3 as Severity, type ShippingInformation$4 as ShippingInformation, type ShippingOption$6 as ShippingOption, type ShippingPrice$6 as ShippingPrice, type ShippingRegion$6 as ShippingRegion, type StreetAddress$8 as StreetAddress, SubscriptionFrequency$7 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$7 as SubscriptionSettings, type SystemError$5 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$4 as TaxBreakdown, type TaxCalculationDetails$4 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$4 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$4 as TaxRateBreakdown, type TaxSummary$6 as TaxSummary, type Title$3 as Title, type context$h_UpdateCartOptions as UpdateCartOptions, type UpdateCartRequest$1 as UpdateCartRequest, type UpdateCartResponse$1 as UpdateCartResponse, type UpdateCartResponseNonNullableFields$1 as UpdateCartResponseNonNullableFields, type UpdateCurrentCartLineItemQuantityRequest$1 as UpdateCurrentCartLineItemQuantityRequest, type UpdateLineItemsQuantityRequest$2 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$2 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$2 as UpdateLineItemsQuantityResponseNonNullableFields, type V1Coupon$1 as V1Coupon, type V1MerchantDiscount$1 as V1MerchantDiscount, type ValidationError$5 as ValidationError, type VatId$6 as VatId, VatType$6 as VatType, type Violation$3 as Violation, WebhookIdentityType$f as WebhookIdentityType, WeightUnit$7 as WeightUnit, type context$h__publicAddToCartType as _publicAddToCartType, type context$h__publicCreateCartType as _publicCreateCartType, type _publicCreateCheckoutType$1 as _publicCreateCheckoutType, type context$h__publicDeleteCartType as _publicDeleteCartType, type context$h__publicEstimateTotalsType as _publicEstimateTotalsType, type context$h__publicGetCartType as _publicGetCartType, type _publicOnCartCreatedType$1 as _publicOnCartCreatedType, type _publicOnCartDeletedType$1 as _publicOnCartDeletedType, type _publicOnCartUpdatedType$1 as _publicOnCartUpdatedType, type _publicRemoveCouponType$1 as _publicRemoveCouponType, type _publicRemoveLineItemsType$1 as _publicRemoveLineItemsType, type context$h__publicUpdateCartType as _publicUpdateCartType, type _publicUpdateLineItemsQuantityType$1 as _publicUpdateLineItemsQuantityType, context$h_addToCart as addToCart, context$h_createCart as createCart, createCheckout$2 as createCheckout, context$h_deleteCart as deleteCart, context$h_estimateTotals as estimateTotals, context$h_getCart as getCart, onCartCreated$2 as onCartCreated, onCartDeleted$2 as onCartDeleted, onCartUpdated$2 as onCartUpdated, onCartCreated$3 as publicOnCartCreated, onCartDeleted$3 as publicOnCartDeleted, onCartUpdated$3 as publicOnCartUpdated, removeCoupon$2 as removeCoupon, removeLineItems$2 as removeLineItems, context$h_updateCart as updateCart, updateLineItemsQuantity$2 as updateLineItemsQuantity };
|
|
5562
5706
|
}
|
|
5563
5707
|
|
|
5564
5708
|
interface Cart {
|
|
@@ -7819,22 +7963,50 @@ interface EstimateCurrentCartTotalsOptions {
|
|
|
7819
7963
|
selectedMemberships?: SelectedMemberships$3;
|
|
7820
7964
|
}
|
|
7821
7965
|
|
|
7966
|
+
declare function getCurrentCart$1(httpClient: HttpClient): () => Promise<Cart & CartNonNullableFields>;
|
|
7967
|
+
declare function updateCurrentCart$1(httpClient: HttpClient): (options?: UpdateCurrentCartOptions) => Promise<Cart & CartNonNullableFields>;
|
|
7968
|
+
declare function addToCurrentCart$1(httpClient: HttpClient): (options?: AddToCurrentCartOptions) => Promise<AddToCartResponse & AddToCartResponseNonNullableFields>;
|
|
7969
|
+
declare function removeLineItemsFromCurrentCart$1(httpClient: HttpClient): (lineItemIds: string[]) => Promise<RemoveLineItemsResponse$1 & RemoveLineItemsResponseNonNullableFields$1>;
|
|
7970
|
+
declare function createCheckoutFromCurrentCart$1(httpClient: HttpClient): (options?: CreateCheckoutFromCurrentCartOptions) => Promise<CreateCheckoutResponse$1 & CreateCheckoutResponseNonNullableFields$1>;
|
|
7971
|
+
declare function removeCouponFromCurrentCart$1(httpClient: HttpClient): () => Promise<RemoveCouponResponse$1 & RemoveCouponResponseNonNullableFields$1>;
|
|
7972
|
+
declare function updateCurrentCartLineItemQuantity$1(httpClient: HttpClient): (lineItems: LineItemQuantityUpdate$1[]) => Promise<UpdateLineItemsQuantityResponse$1 & UpdateLineItemsQuantityResponseNonNullableFields$1>;
|
|
7973
|
+
declare function estimateCurrentCartTotals$1(httpClient: HttpClient): (options?: EstimateCurrentCartTotalsOptions) => Promise<EstimateTotalsResponse & EstimateTotalsResponseNonNullableFields>;
|
|
7974
|
+
declare function deleteCurrentCart$1(httpClient: HttpClient): () => Promise<void>;
|
|
7975
|
+
declare const onCartUpdated$1: EventDefinition<CartUpdatedEnvelope, "wix.ecom.v1.cart_updated">;
|
|
7976
|
+
declare const onCartDeleted$1: EventDefinition<CartDeletedEnvelope, "wix.ecom.v1.cart_deleted">;
|
|
7977
|
+
declare const onCartCreated$1: EventDefinition<CartCreatedEnvelope, "wix.ecom.v1.cart_created">;
|
|
7978
|
+
|
|
7822
7979
|
declare function createRESTModule$g<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
7823
7980
|
|
|
7824
7981
|
declare function createEventModule$c<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
7825
7982
|
|
|
7826
|
-
|
|
7827
|
-
declare const
|
|
7828
|
-
|
|
7829
|
-
declare const
|
|
7830
|
-
|
|
7831
|
-
declare const
|
|
7832
|
-
|
|
7833
|
-
declare const
|
|
7834
|
-
|
|
7835
|
-
declare const
|
|
7836
|
-
|
|
7837
|
-
declare const
|
|
7983
|
+
type _publicGetCurrentCartType = typeof getCurrentCart$1;
|
|
7984
|
+
declare const getCurrentCart: ReturnType<typeof createRESTModule$g<_publicGetCurrentCartType>>;
|
|
7985
|
+
type _publicUpdateCurrentCartType = typeof updateCurrentCart$1;
|
|
7986
|
+
declare const updateCurrentCart: ReturnType<typeof createRESTModule$g<_publicUpdateCurrentCartType>>;
|
|
7987
|
+
type _publicAddToCurrentCartType = typeof addToCurrentCart$1;
|
|
7988
|
+
declare const addToCurrentCart: ReturnType<typeof createRESTModule$g<_publicAddToCurrentCartType>>;
|
|
7989
|
+
type _publicRemoveLineItemsFromCurrentCartType = typeof removeLineItemsFromCurrentCart$1;
|
|
7990
|
+
declare const removeLineItemsFromCurrentCart: ReturnType<typeof createRESTModule$g<_publicRemoveLineItemsFromCurrentCartType>>;
|
|
7991
|
+
type _publicCreateCheckoutFromCurrentCartType = typeof createCheckoutFromCurrentCart$1;
|
|
7992
|
+
declare const createCheckoutFromCurrentCart: ReturnType<typeof createRESTModule$g<_publicCreateCheckoutFromCurrentCartType>>;
|
|
7993
|
+
type _publicRemoveCouponFromCurrentCartType = typeof removeCouponFromCurrentCart$1;
|
|
7994
|
+
declare const removeCouponFromCurrentCart: ReturnType<typeof createRESTModule$g<_publicRemoveCouponFromCurrentCartType>>;
|
|
7995
|
+
type _publicUpdateCurrentCartLineItemQuantityType = typeof updateCurrentCartLineItemQuantity$1;
|
|
7996
|
+
declare const updateCurrentCartLineItemQuantity: ReturnType<typeof createRESTModule$g<_publicUpdateCurrentCartLineItemQuantityType>>;
|
|
7997
|
+
type _publicEstimateCurrentCartTotalsType = typeof estimateCurrentCartTotals$1;
|
|
7998
|
+
declare const estimateCurrentCartTotals: ReturnType<typeof createRESTModule$g<_publicEstimateCurrentCartTotalsType>>;
|
|
7999
|
+
type _publicDeleteCurrentCartType = typeof deleteCurrentCart$1;
|
|
8000
|
+
declare const deleteCurrentCart: ReturnType<typeof createRESTModule$g<_publicDeleteCurrentCartType>>;
|
|
8001
|
+
|
|
8002
|
+
type _publicOnCartUpdatedType = typeof onCartUpdated$1;
|
|
8003
|
+
declare const onCartUpdated: ReturnType<typeof createEventModule$c<_publicOnCartUpdatedType>>;
|
|
8004
|
+
|
|
8005
|
+
type _publicOnCartDeletedType = typeof onCartDeleted$1;
|
|
8006
|
+
declare const onCartDeleted: ReturnType<typeof createEventModule$c<_publicOnCartDeletedType>>;
|
|
8007
|
+
|
|
8008
|
+
type _publicOnCartCreatedType = typeof onCartCreated$1;
|
|
8009
|
+
declare const onCartCreated: ReturnType<typeof createEventModule$c<_publicOnCartCreatedType>>;
|
|
7838
8010
|
|
|
7839
8011
|
type context$g_AddToCartRequest = AddToCartRequest;
|
|
7840
8012
|
type context$g_AddToCartResponse = AddToCartResponse;
|
|
@@ -7880,6 +8052,18 @@ type context$g_UpdateCurrentCartLineItemQuantityRequest = UpdateCurrentCartLineI
|
|
|
7880
8052
|
type context$g_UpdateCurrentCartOptions = UpdateCurrentCartOptions;
|
|
7881
8053
|
type context$g_V1Coupon = V1Coupon;
|
|
7882
8054
|
type context$g_V1MerchantDiscount = V1MerchantDiscount;
|
|
8055
|
+
type context$g__publicAddToCurrentCartType = _publicAddToCurrentCartType;
|
|
8056
|
+
type context$g__publicCreateCheckoutFromCurrentCartType = _publicCreateCheckoutFromCurrentCartType;
|
|
8057
|
+
type context$g__publicDeleteCurrentCartType = _publicDeleteCurrentCartType;
|
|
8058
|
+
type context$g__publicEstimateCurrentCartTotalsType = _publicEstimateCurrentCartTotalsType;
|
|
8059
|
+
type context$g__publicGetCurrentCartType = _publicGetCurrentCartType;
|
|
8060
|
+
type context$g__publicOnCartCreatedType = _publicOnCartCreatedType;
|
|
8061
|
+
type context$g__publicOnCartDeletedType = _publicOnCartDeletedType;
|
|
8062
|
+
type context$g__publicOnCartUpdatedType = _publicOnCartUpdatedType;
|
|
8063
|
+
type context$g__publicRemoveCouponFromCurrentCartType = _publicRemoveCouponFromCurrentCartType;
|
|
8064
|
+
type context$g__publicRemoveLineItemsFromCurrentCartType = _publicRemoveLineItemsFromCurrentCartType;
|
|
8065
|
+
type context$g__publicUpdateCurrentCartLineItemQuantityType = _publicUpdateCurrentCartLineItemQuantityType;
|
|
8066
|
+
type context$g__publicUpdateCurrentCartType = _publicUpdateCurrentCartType;
|
|
7883
8067
|
declare const context$g_addToCurrentCart: typeof addToCurrentCart;
|
|
7884
8068
|
declare const context$g_createCheckoutFromCurrentCart: typeof createCheckoutFromCurrentCart;
|
|
7885
8069
|
declare const context$g_deleteCurrentCart: typeof deleteCurrentCart;
|
|
@@ -7893,7 +8077,7 @@ declare const context$g_removeLineItemsFromCurrentCart: typeof removeLineItemsFr
|
|
|
7893
8077
|
declare const context$g_updateCurrentCart: typeof updateCurrentCart;
|
|
7894
8078
|
declare const context$g_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
|
|
7895
8079
|
declare namespace context$g {
|
|
7896
|
-
export { type ActionEvent$e as ActionEvent, type context$g_AddToCartRequest as AddToCartRequest, type context$g_AddToCartResponse as AddToCartResponse, type context$g_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type context$g_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type context$g_AddToCurrentCartOptions as AddToCurrentCartOptions, type context$g_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$5 as AdditionalFee, type Address$8 as Address, type AddressLocation$7 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$9 as ApplicationError, type AppliedDiscount$5 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$5 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$c as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$4 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$4 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$4 as CarrierError, type CarrierErrors$4 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type context$g_Cart as Cart, type context$g_CartCreatedEnvelope as CartCreatedEnvelope, type context$g_CartDeletedEnvelope as CartDeletedEnvelope, type context$g_CartDiscount as CartDiscount, type context$g_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type context$g_CartNonNullableFields as CartNonNullableFields, type context$g_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$5 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$4 as ChargeType, type Color$4 as Color, type Coupon$5 as Coupon, type context$g_CreateCartRequest as CreateCartRequest, type context$g_CreateCartResponse as CreateCartResponse, type context$g_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type context$g_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type context$g_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type context$g_DeleteCartRequest as DeleteCartRequest, type context$g_DeleteCartResponse as DeleteCartResponse, type context$g_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$5 as DeliveryLogistics, type DeliveryTimeSlot$5 as DeliveryTimeSlot, type Description$2 as Description, type DescriptionLine$4 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$4 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$4 as DescriptionLineName, DescriptionLineType$4 as DescriptionLineType, type DescriptionLineValueOneOf$4 as DescriptionLineValueOneOf, type Details$4 as Details, type DetailsKindOneOf$4 as DetailsKindOneOf, type DiscountRule$5 as DiscountRule, type DiscountRuleName$5 as DiscountRuleName, DiscountType$5 as DiscountType, type DomainEvent$e as DomainEvent, type DomainEventBodyOneOf$e as DomainEventBodyOneOf, type Empty$9 as Empty, type EntityCreatedEvent$e as EntityCreatedEvent, type EntityDeletedEvent$e as EntityDeletedEvent, type EntityUpdatedEvent$e as EntityUpdatedEvent, type context$g_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type context$g_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type context$g_EstimateTotalsRequest as EstimateTotalsRequest, type context$g_EstimateTotalsResponse as EstimateTotalsResponse, type context$g_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$c as EventMetadata, type ExtendedFields$8 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 as FullAddressContactDetails, type context$g_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type context$g_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type context$g_GetCartRequest as GetCartRequest, type context$g_GetCartResponse as GetCartResponse, type context$g_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type context$g_GetCurrentCartRequest as GetCurrentCartRequest, type context$g_GetCurrentCartResponse as GetCurrentCartResponse, type context$g_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$4 as GiftCard, type Group$3 as Group, type context$g_HostSelectedMembership as HostSelectedMembership, type IdentificationData$e as IdentificationData, type IdentificationDataIdOneOf$e as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$5 as ItemTaxFullDetails, type ItemType$5 as ItemType, ItemTypeItemType$5 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$5 as ItemTypeItemTypeDataOneOf, JurisdictionType$5 as JurisdictionType, type LineItem$5 as LineItem, type LineItemDiscount$5 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$3 as ManualCalculationReason, type Membership$3 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$3 as MembershipOptions, type MembershipPaymentCredits$3 as MembershipPaymentCredits, type MerchantDiscount$5 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$e as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$5 as PaymentOptionType, type PhysicalProperties$5 as PhysicalProperties, type PickupDetails$6 as PickupDetails, PickupMethod$5 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$5 as PriceSummary, type ProductName$4 as ProductName, RateType$3 as RateType, type context$g_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type context$g_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$e as RestoreInfo, RuleType$4 as RuleType, type Scope$3 as Scope, type SecuredMedia$3 as SecuredMedia, type SelectedCarrierServiceOption$3 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$3 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$3 as SelectedCarrierServiceOptionPrices, type SelectedMembership$3 as SelectedMembership, type SelectedMemberships$3 as SelectedMemberships, type SelectedShippingOption$1 as SelectedShippingOption, type ServiceProperties$4 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$3 as ShippingInformation, type ShippingOption$5 as ShippingOption, type ShippingPrice$5 as ShippingPrice, type ShippingRegion$5 as ShippingRegion, type StreetAddress$7 as StreetAddress, SubscriptionFrequency$6 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$6 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$5 as TaxSummary, type Title$2 as Title, type context$g_UpdateCartRequest as UpdateCartRequest, type context$g_UpdateCartResponse as UpdateCartResponse, type context$g_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type context$g_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type context$g_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type context$g_V1Coupon as V1Coupon, type context$g_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$4 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$2 as Violation, WebhookIdentityType$e as WebhookIdentityType, WeightUnit$6 as WeightUnit, context$g_addToCurrentCart as addToCurrentCart, context$g_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, context$g_deleteCurrentCart as deleteCurrentCart, context$g_estimateCurrentCartTotals as estimateCurrentCartTotals, context$g_getCurrentCart as getCurrentCart, context$g_onCartCreated as onCartCreated, context$g_onCartDeleted as onCartDeleted, context$g_onCartUpdated as onCartUpdated, context$g_removeCouponFromCurrentCart as removeCouponFromCurrentCart, context$g_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, context$g_updateCurrentCart as updateCurrentCart, context$g_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
|
|
8080
|
+
export { type ActionEvent$e as ActionEvent, type context$g_AddToCartRequest as AddToCartRequest, type context$g_AddToCartResponse as AddToCartResponse, type context$g_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type context$g_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type context$g_AddToCurrentCartOptions as AddToCurrentCartOptions, type context$g_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$5 as AdditionalFee, type Address$8 as Address, type AddressLocation$7 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$9 as ApplicationError, type AppliedDiscount$5 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$5 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$c as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$4 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$4 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$4 as CarrierError, type CarrierErrors$4 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type context$g_Cart as Cart, type context$g_CartCreatedEnvelope as CartCreatedEnvelope, type context$g_CartDeletedEnvelope as CartDeletedEnvelope, type context$g_CartDiscount as CartDiscount, type context$g_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type context$g_CartNonNullableFields as CartNonNullableFields, type context$g_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$5 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$4 as ChargeType, type Color$4 as Color, type Coupon$5 as Coupon, type context$g_CreateCartRequest as CreateCartRequest, type context$g_CreateCartResponse as CreateCartResponse, type context$g_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type context$g_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type context$g_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type context$g_DeleteCartRequest as DeleteCartRequest, type context$g_DeleteCartResponse as DeleteCartResponse, type context$g_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$5 as DeliveryLogistics, type DeliveryTimeSlot$5 as DeliveryTimeSlot, type Description$2 as Description, type DescriptionLine$4 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$4 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$4 as DescriptionLineName, DescriptionLineType$4 as DescriptionLineType, type DescriptionLineValueOneOf$4 as DescriptionLineValueOneOf, type Details$4 as Details, type DetailsKindOneOf$4 as DetailsKindOneOf, type DiscountRule$5 as DiscountRule, type DiscountRuleName$5 as DiscountRuleName, DiscountType$5 as DiscountType, type DomainEvent$e as DomainEvent, type DomainEventBodyOneOf$e as DomainEventBodyOneOf, type Empty$9 as Empty, type EntityCreatedEvent$e as EntityCreatedEvent, type EntityDeletedEvent$e as EntityDeletedEvent, type EntityUpdatedEvent$e as EntityUpdatedEvent, type context$g_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type context$g_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type context$g_EstimateTotalsRequest as EstimateTotalsRequest, type context$g_EstimateTotalsResponse as EstimateTotalsResponse, type context$g_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$c as EventMetadata, type ExtendedFields$8 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 as FullAddressContactDetails, type context$g_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type context$g_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type context$g_GetCartRequest as GetCartRequest, type context$g_GetCartResponse as GetCartResponse, type context$g_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type context$g_GetCurrentCartRequest as GetCurrentCartRequest, type context$g_GetCurrentCartResponse as GetCurrentCartResponse, type context$g_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$4 as GiftCard, type Group$3 as Group, type context$g_HostSelectedMembership as HostSelectedMembership, type IdentificationData$e as IdentificationData, type IdentificationDataIdOneOf$e as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$5 as ItemTaxFullDetails, type ItemType$5 as ItemType, ItemTypeItemType$5 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$5 as ItemTypeItemTypeDataOneOf, JurisdictionType$5 as JurisdictionType, type LineItem$5 as LineItem, type LineItemDiscount$5 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$3 as ManualCalculationReason, type Membership$3 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$3 as MembershipOptions, type MembershipPaymentCredits$3 as MembershipPaymentCredits, type MerchantDiscount$5 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$e as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$5 as PaymentOptionType, type PhysicalProperties$5 as PhysicalProperties, type PickupDetails$6 as PickupDetails, PickupMethod$5 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$5 as PriceSummary, type ProductName$4 as ProductName, RateType$3 as RateType, type context$g_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type context$g_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$e as RestoreInfo, RuleType$4 as RuleType, type Scope$3 as Scope, type SecuredMedia$3 as SecuredMedia, type SelectedCarrierServiceOption$3 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$3 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$3 as SelectedCarrierServiceOptionPrices, type SelectedMembership$3 as SelectedMembership, type SelectedMemberships$3 as SelectedMemberships, type SelectedShippingOption$1 as SelectedShippingOption, type ServiceProperties$4 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$3 as ShippingInformation, type ShippingOption$5 as ShippingOption, type ShippingPrice$5 as ShippingPrice, type ShippingRegion$5 as ShippingRegion, type StreetAddress$7 as StreetAddress, SubscriptionFrequency$6 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$6 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$5 as TaxSummary, type Title$2 as Title, type context$g_UpdateCartRequest as UpdateCartRequest, type context$g_UpdateCartResponse as UpdateCartResponse, type context$g_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type context$g_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type context$g_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type context$g_V1Coupon as V1Coupon, type context$g_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$4 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$2 as Violation, WebhookIdentityType$e as WebhookIdentityType, WeightUnit$6 as WeightUnit, type context$g__publicAddToCurrentCartType as _publicAddToCurrentCartType, type context$g__publicCreateCheckoutFromCurrentCartType as _publicCreateCheckoutFromCurrentCartType, type context$g__publicDeleteCurrentCartType as _publicDeleteCurrentCartType, type context$g__publicEstimateCurrentCartTotalsType as _publicEstimateCurrentCartTotalsType, type context$g__publicGetCurrentCartType as _publicGetCurrentCartType, type context$g__publicOnCartCreatedType as _publicOnCartCreatedType, type context$g__publicOnCartDeletedType as _publicOnCartDeletedType, type context$g__publicOnCartUpdatedType as _publicOnCartUpdatedType, type context$g__publicRemoveCouponFromCurrentCartType as _publicRemoveCouponFromCurrentCartType, type context$g__publicRemoveLineItemsFromCurrentCartType as _publicRemoveLineItemsFromCurrentCartType, type context$g__publicUpdateCurrentCartLineItemQuantityType as _publicUpdateCurrentCartLineItemQuantityType, type context$g__publicUpdateCurrentCartType as _publicUpdateCurrentCartType, context$g_addToCurrentCart as addToCurrentCart, context$g_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, context$g_deleteCurrentCart as deleteCurrentCart, context$g_estimateCurrentCartTotals as estimateCurrentCartTotals, context$g_getCurrentCart as getCurrentCart, context$g_onCartCreated as onCartCreated, context$g_onCartDeleted as onCartDeleted, context$g_onCartUpdated as onCartUpdated, onCartCreated$1 as publicOnCartCreated, onCartDeleted$1 as publicOnCartDeleted, onCartUpdated$1 as publicOnCartUpdated, context$g_removeCouponFromCurrentCart as removeCouponFromCurrentCart, context$g_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, context$g_updateCurrentCart as updateCurrentCart, context$g_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
|
|
7897
8081
|
}
|
|
7898
8082
|
|
|
7899
8083
|
interface Checkout$1 {
|
|
@@ -10910,26 +11094,62 @@ interface AddToCheckoutOptions {
|
|
|
10910
11094
|
customLineItems?: CustomLineItem$2[];
|
|
10911
11095
|
}
|
|
10912
11096
|
|
|
11097
|
+
declare function createCheckout$1(httpClient: HttpClient): (options?: CreateCheckoutOptions) => Promise<Checkout$1 & CheckoutNonNullableFields>;
|
|
11098
|
+
declare function getCheckout$1(httpClient: HttpClient): (_id: string) => Promise<Checkout$1 & CheckoutNonNullableFields>;
|
|
11099
|
+
declare function getCheckoutByCartId$1(httpClient: HttpClient): (_id: string) => Promise<GetCheckoutByCartIdResponse & GetCheckoutByCartIdResponseNonNullableFields>;
|
|
11100
|
+
declare function getCheckoutUrl$1(httpClient: HttpClient): (_id: string) => Promise<GetCheckoutURLResponse & GetCheckoutURLResponseNonNullableFields>;
|
|
11101
|
+
declare function updateCheckout$1(httpClient: HttpClient): (_id: string | null, checkout: UpdateCheckout, options?: UpdateCheckoutOptions) => Promise<Checkout$1 & CheckoutNonNullableFields>;
|
|
11102
|
+
declare function removeCoupon$1(httpClient: HttpClient): (_id: string) => Promise<RemoveCouponResponse & RemoveCouponResponseNonNullableFields>;
|
|
11103
|
+
declare function removeGiftCard$1(httpClient: HttpClient): (_id: string) => Promise<RemoveGiftCardResponse & RemoveGiftCardResponseNonNullableFields>;
|
|
11104
|
+
declare function removeOverrideCheckoutUrl$1(httpClient: HttpClient): (_id: string) => Promise<RemoveOverrideCheckoutUrlResponse & RemoveOverrideCheckoutUrlResponseNonNullableFields>;
|
|
11105
|
+
declare function addToCheckout$1(httpClient: HttpClient): (_id: string, options?: AddToCheckoutOptions) => Promise<AddToCheckoutResponse & AddToCheckoutResponseNonNullableFields>;
|
|
11106
|
+
declare function removeLineItems$1(httpClient: HttpClient): (_id: string, lineItemIds: string[]) => Promise<RemoveLineItemsResponse & RemoveLineItemsResponseNonNullableFields>;
|
|
11107
|
+
declare function createOrder$3(httpClient: HttpClient): (_id: string) => Promise<CreateOrderResponse$1 & CreateOrderResponseNonNullableFields$1>;
|
|
11108
|
+
declare function markCheckoutAsCompleted$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
11109
|
+
declare function updateLineItemsQuantity$1(httpClient: HttpClient): (_id: string, lineItems: LineItemQuantityUpdate[]) => Promise<UpdateLineItemsQuantityResponse & UpdateLineItemsQuantityResponseNonNullableFields>;
|
|
11110
|
+
declare const onCheckoutCreated$1: EventDefinition<CheckoutCreatedEnvelope, "wix.ecom.v1.checkout_created">;
|
|
11111
|
+
declare const onCheckoutUpdated$1: EventDefinition<CheckoutUpdatedEnvelope, "wix.ecom.v1.checkout_updated">;
|
|
11112
|
+
declare const onCheckoutCompleted$1: EventDefinition<CheckoutCompletedEnvelope, "wix.ecom.v1.checkout_completed">;
|
|
11113
|
+
|
|
10913
11114
|
declare function createRESTModule$f<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
10914
11115
|
|
|
10915
11116
|
declare function createEventModule$b<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
10916
11117
|
|
|
10917
|
-
|
|
10918
|
-
declare const
|
|
10919
|
-
|
|
10920
|
-
declare const
|
|
10921
|
-
|
|
10922
|
-
declare const
|
|
10923
|
-
|
|
10924
|
-
declare const
|
|
10925
|
-
|
|
10926
|
-
declare const
|
|
10927
|
-
|
|
10928
|
-
declare const
|
|
10929
|
-
|
|
10930
|
-
declare const
|
|
10931
|
-
|
|
10932
|
-
declare const
|
|
11118
|
+
type _publicCreateCheckoutType = typeof createCheckout$1;
|
|
11119
|
+
declare const createCheckout: ReturnType<typeof createRESTModule$f<_publicCreateCheckoutType>>;
|
|
11120
|
+
type _publicGetCheckoutType = typeof getCheckout$1;
|
|
11121
|
+
declare const getCheckout: ReturnType<typeof createRESTModule$f<_publicGetCheckoutType>>;
|
|
11122
|
+
type _publicGetCheckoutByCartIdType = typeof getCheckoutByCartId$1;
|
|
11123
|
+
declare const getCheckoutByCartId: ReturnType<typeof createRESTModule$f<_publicGetCheckoutByCartIdType>>;
|
|
11124
|
+
type _publicGetCheckoutUrlType = typeof getCheckoutUrl$1;
|
|
11125
|
+
declare const getCheckoutUrl: ReturnType<typeof createRESTModule$f<_publicGetCheckoutUrlType>>;
|
|
11126
|
+
type _publicUpdateCheckoutType = typeof updateCheckout$1;
|
|
11127
|
+
declare const updateCheckout: ReturnType<typeof createRESTModule$f<_publicUpdateCheckoutType>>;
|
|
11128
|
+
type _publicRemoveCouponType = typeof removeCoupon$1;
|
|
11129
|
+
declare const removeCoupon: ReturnType<typeof createRESTModule$f<_publicRemoveCouponType>>;
|
|
11130
|
+
type _publicRemoveGiftCardType = typeof removeGiftCard$1;
|
|
11131
|
+
declare const removeGiftCard: ReturnType<typeof createRESTModule$f<_publicRemoveGiftCardType>>;
|
|
11132
|
+
type _publicRemoveOverrideCheckoutUrlType = typeof removeOverrideCheckoutUrl$1;
|
|
11133
|
+
declare const removeOverrideCheckoutUrl: ReturnType<typeof createRESTModule$f<_publicRemoveOverrideCheckoutUrlType>>;
|
|
11134
|
+
type _publicAddToCheckoutType = typeof addToCheckout$1;
|
|
11135
|
+
declare const addToCheckout: ReturnType<typeof createRESTModule$f<_publicAddToCheckoutType>>;
|
|
11136
|
+
type _publicRemoveLineItemsType = typeof removeLineItems$1;
|
|
11137
|
+
declare const removeLineItems: ReturnType<typeof createRESTModule$f<_publicRemoveLineItemsType>>;
|
|
11138
|
+
type _publicCreateOrderType$1 = typeof createOrder$3;
|
|
11139
|
+
declare const createOrder$2: ReturnType<typeof createRESTModule$f<_publicCreateOrderType>>;
|
|
11140
|
+
type _publicMarkCheckoutAsCompletedType = typeof markCheckoutAsCompleted$1;
|
|
11141
|
+
declare const markCheckoutAsCompleted: ReturnType<typeof createRESTModule$f<_publicMarkCheckoutAsCompletedType>>;
|
|
11142
|
+
type _publicUpdateLineItemsQuantityType = typeof updateLineItemsQuantity$1;
|
|
11143
|
+
declare const updateLineItemsQuantity: ReturnType<typeof createRESTModule$f<_publicUpdateLineItemsQuantityType>>;
|
|
11144
|
+
|
|
11145
|
+
type _publicOnCheckoutCreatedType = typeof onCheckoutCreated$1;
|
|
11146
|
+
declare const onCheckoutCreated: ReturnType<typeof createEventModule$b<_publicOnCheckoutCreatedType>>;
|
|
11147
|
+
|
|
11148
|
+
type _publicOnCheckoutUpdatedType = typeof onCheckoutUpdated$1;
|
|
11149
|
+
declare const onCheckoutUpdated: ReturnType<typeof createEventModule$b<_publicOnCheckoutUpdatedType>>;
|
|
11150
|
+
|
|
11151
|
+
type _publicOnCheckoutCompletedType = typeof onCheckoutCompleted$1;
|
|
11152
|
+
declare const onCheckoutCompleted: ReturnType<typeof createEventModule$b<_publicOnCheckoutCompletedType>>;
|
|
10933
11153
|
|
|
10934
11154
|
type context$f_AddToCheckoutOptions = AddToCheckoutOptions;
|
|
10935
11155
|
type context$f_AddToCheckoutRequest = AddToCheckoutRequest;
|
|
@@ -11011,6 +11231,21 @@ type context$f_V1ShippingInfoDetailsOneOf = V1ShippingInfoDetailsOneOf;
|
|
|
11011
11231
|
type context$f_V1SubscriptionOptionInfo = V1SubscriptionOptionInfo;
|
|
11012
11232
|
type context$f_V1SubscriptionSettings = V1SubscriptionSettings;
|
|
11013
11233
|
type context$f_ViolationsList = ViolationsList;
|
|
11234
|
+
type context$f__publicAddToCheckoutType = _publicAddToCheckoutType;
|
|
11235
|
+
type context$f__publicCreateCheckoutType = _publicCreateCheckoutType;
|
|
11236
|
+
type context$f__publicGetCheckoutByCartIdType = _publicGetCheckoutByCartIdType;
|
|
11237
|
+
type context$f__publicGetCheckoutType = _publicGetCheckoutType;
|
|
11238
|
+
type context$f__publicGetCheckoutUrlType = _publicGetCheckoutUrlType;
|
|
11239
|
+
type context$f__publicMarkCheckoutAsCompletedType = _publicMarkCheckoutAsCompletedType;
|
|
11240
|
+
type context$f__publicOnCheckoutCompletedType = _publicOnCheckoutCompletedType;
|
|
11241
|
+
type context$f__publicOnCheckoutCreatedType = _publicOnCheckoutCreatedType;
|
|
11242
|
+
type context$f__publicOnCheckoutUpdatedType = _publicOnCheckoutUpdatedType;
|
|
11243
|
+
type context$f__publicRemoveCouponType = _publicRemoveCouponType;
|
|
11244
|
+
type context$f__publicRemoveGiftCardType = _publicRemoveGiftCardType;
|
|
11245
|
+
type context$f__publicRemoveLineItemsType = _publicRemoveLineItemsType;
|
|
11246
|
+
type context$f__publicRemoveOverrideCheckoutUrlType = _publicRemoveOverrideCheckoutUrlType;
|
|
11247
|
+
type context$f__publicUpdateCheckoutType = _publicUpdateCheckoutType;
|
|
11248
|
+
type context$f__publicUpdateLineItemsQuantityType = _publicUpdateLineItemsQuantityType;
|
|
11014
11249
|
declare const context$f_addToCheckout: typeof addToCheckout;
|
|
11015
11250
|
declare const context$f_createCheckout: typeof createCheckout;
|
|
11016
11251
|
declare const context$f_getCheckout: typeof getCheckout;
|
|
@@ -11027,7 +11262,7 @@ declare const context$f_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
|
|
|
11027
11262
|
declare const context$f_updateCheckout: typeof updateCheckout;
|
|
11028
11263
|
declare const context$f_updateLineItemsQuantity: typeof updateLineItemsQuantity;
|
|
11029
11264
|
declare namespace context$f {
|
|
11030
|
-
export { type ActionEvent$d as ActionEvent, type context$f_AddToCheckoutOptions as AddToCheckoutOptions, type context$f_AddToCheckoutRequest as AddToCheckoutRequest, type context$f_AddToCheckoutResponse as AddToCheckoutResponse, type context$f_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type context$f_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, context$f_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type context$f_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type context$f_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type context$f_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type context$f_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type context$f_CheckoutNonNullableFields as CheckoutNonNullableFields, type context$f_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type context$f_CommonVatId as CommonVatId, context$f_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type context$f_CreateCheckoutOptions as CreateCheckoutOptions, type context$f_CreateCheckoutRequest as CreateCheckoutRequest, type context$f_CreateCheckoutResponse as CreateCheckoutResponse, type context$f_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type context$f_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type context$f_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type context$f_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type context$f_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type Discount$2 as Discount, context$f_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type context$f_DoublePaymentErrorData as DoublePaymentErrorData, type context$f_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$1 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type context$f_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type context$f_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type context$f_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type context$f_GetCheckoutRequest as GetCheckoutRequest, type context$f_GetCheckoutResponse as GetCheckoutResponse, type context$f_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type context$f_GetCheckoutURLRequest as GetCheckoutURLRequest, type context$f_GetCheckoutURLResponse as GetCheckoutURLResponse, type context$f_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type context$f_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type context$f_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type context$f_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type context$f_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$3 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type context$f_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type context$f_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type context$f_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type context$f_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type context$f_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type context$f_RedeemErrorData as RedeemErrorData, type context$f_RemoveCouponRequest as RemoveCouponRequest, type context$f_RemoveCouponResponse as RemoveCouponResponse, type context$f_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type context$f_RemoveGiftCardRequest as RemoveGiftCardRequest, type context$f_RemoveGiftCardResponse as RemoveGiftCardResponse, type context$f_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type context$f_RemoveLineItemsRequest as RemoveLineItemsRequest, type context$f_RemoveLineItemsResponse as RemoveLineItemsResponse, type context$f_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type context$f_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type context$f_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type context$f_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type context$f_ShippingCalculationErrorData as ShippingCalculationErrorData, type context$f_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type context$f_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type context$f_Subscription as Subscription, type context$f_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type context$f_UpdateCheckout as UpdateCheckout, type context$f_UpdateCheckoutOptions as UpdateCheckoutOptions, type context$f_UpdateCheckoutRequest as UpdateCheckoutRequest, type context$f_UpdateCheckoutResponse as UpdateCheckoutResponse, type context$f_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type context$f_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type context$f_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type context$f_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type context$f_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type context$f_V1BuyerInfo as V1BuyerInfo, type context$f_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type context$f_V1ShippingInfo as V1ShippingInfo, type context$f_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type context$f_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type context$f_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type context$f_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, context$f_addToCheckout as addToCheckout, context$f_createCheckout as createCheckout, createOrder$1 as createOrder, context$f_getCheckout as getCheckout, context$f_getCheckoutByCartId as getCheckoutByCartId, context$f_getCheckoutUrl as getCheckoutUrl, context$f_markCheckoutAsCompleted as markCheckoutAsCompleted, context$f_onCheckoutCompleted as onCheckoutCompleted, context$f_onCheckoutCreated as onCheckoutCreated, context$f_onCheckoutUpdated as onCheckoutUpdated, context$f_removeCoupon as removeCoupon, context$f_removeGiftCard as removeGiftCard, context$f_removeLineItems as removeLineItems, context$f_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, context$f_updateCheckout as updateCheckout, context$f_updateLineItemsQuantity as updateLineItemsQuantity };
|
|
11265
|
+
export { type ActionEvent$d as ActionEvent, type context$f_AddToCheckoutOptions as AddToCheckoutOptions, type context$f_AddToCheckoutRequest as AddToCheckoutRequest, type context$f_AddToCheckoutResponse as AddToCheckoutResponse, type context$f_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type context$f_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, context$f_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type context$f_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type context$f_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type context$f_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type context$f_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type context$f_CheckoutNonNullableFields as CheckoutNonNullableFields, type context$f_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type context$f_CommonVatId as CommonVatId, context$f_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type context$f_CreateCheckoutOptions as CreateCheckoutOptions, type context$f_CreateCheckoutRequest as CreateCheckoutRequest, type context$f_CreateCheckoutResponse as CreateCheckoutResponse, type context$f_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type context$f_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type context$f_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type context$f_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type context$f_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type Discount$2 as Discount, context$f_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type context$f_DoublePaymentErrorData as DoublePaymentErrorData, type context$f_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$1 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type context$f_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type context$f_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type context$f_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type context$f_GetCheckoutRequest as GetCheckoutRequest, type context$f_GetCheckoutResponse as GetCheckoutResponse, type context$f_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type context$f_GetCheckoutURLRequest as GetCheckoutURLRequest, type context$f_GetCheckoutURLResponse as GetCheckoutURLResponse, type context$f_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type context$f_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type context$f_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type context$f_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type context$f_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$3 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type context$f_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type context$f_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type context$f_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type context$f_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type context$f_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type context$f_RedeemErrorData as RedeemErrorData, type context$f_RemoveCouponRequest as RemoveCouponRequest, type context$f_RemoveCouponResponse as RemoveCouponResponse, type context$f_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type context$f_RemoveGiftCardRequest as RemoveGiftCardRequest, type context$f_RemoveGiftCardResponse as RemoveGiftCardResponse, type context$f_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type context$f_RemoveLineItemsRequest as RemoveLineItemsRequest, type context$f_RemoveLineItemsResponse as RemoveLineItemsResponse, type context$f_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type context$f_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type context$f_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type context$f_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type context$f_ShippingCalculationErrorData as ShippingCalculationErrorData, type context$f_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type context$f_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type context$f_Subscription as Subscription, type context$f_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type context$f_UpdateCheckout as UpdateCheckout, type context$f_UpdateCheckoutOptions as UpdateCheckoutOptions, type context$f_UpdateCheckoutRequest as UpdateCheckoutRequest, type context$f_UpdateCheckoutResponse as UpdateCheckoutResponse, type context$f_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type context$f_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type context$f_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type context$f_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type context$f_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type context$f_V1BuyerInfo as V1BuyerInfo, type context$f_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type context$f_V1ShippingInfo as V1ShippingInfo, type context$f_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type context$f_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type context$f_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type context$f_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, type context$f__publicAddToCheckoutType as _publicAddToCheckoutType, type context$f__publicCreateCheckoutType as _publicCreateCheckoutType, type _publicCreateOrderType$1 as _publicCreateOrderType, type context$f__publicGetCheckoutByCartIdType as _publicGetCheckoutByCartIdType, type context$f__publicGetCheckoutType as _publicGetCheckoutType, type context$f__publicGetCheckoutUrlType as _publicGetCheckoutUrlType, type context$f__publicMarkCheckoutAsCompletedType as _publicMarkCheckoutAsCompletedType, type context$f__publicOnCheckoutCompletedType as _publicOnCheckoutCompletedType, type context$f__publicOnCheckoutCreatedType as _publicOnCheckoutCreatedType, type context$f__publicOnCheckoutUpdatedType as _publicOnCheckoutUpdatedType, type context$f__publicRemoveCouponType as _publicRemoveCouponType, type context$f__publicRemoveGiftCardType as _publicRemoveGiftCardType, type context$f__publicRemoveLineItemsType as _publicRemoveLineItemsType, type context$f__publicRemoveOverrideCheckoutUrlType as _publicRemoveOverrideCheckoutUrlType, type context$f__publicUpdateCheckoutType as _publicUpdateCheckoutType, type context$f__publicUpdateLineItemsQuantityType as _publicUpdateLineItemsQuantityType, context$f_addToCheckout as addToCheckout, context$f_createCheckout as createCheckout, createOrder$2 as createOrder, context$f_getCheckout as getCheckout, context$f_getCheckoutByCartId as getCheckoutByCartId, context$f_getCheckoutUrl as getCheckoutUrl, context$f_markCheckoutAsCompleted as markCheckoutAsCompleted, context$f_onCheckoutCompleted as onCheckoutCompleted, context$f_onCheckoutCreated as onCheckoutCreated, context$f_onCheckoutUpdated as onCheckoutUpdated, onCheckoutCompleted$1 as publicOnCheckoutCompleted, onCheckoutCreated$1 as publicOnCheckoutCreated, onCheckoutUpdated$1 as publicOnCheckoutUpdated, context$f_removeCoupon as removeCoupon, context$f_removeGiftCard as removeGiftCard, context$f_removeLineItems as removeLineItems, context$f_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, context$f_updateCheckout as updateCheckout, context$f_updateLineItemsQuantity as updateLineItemsQuantity };
|
|
11031
11266
|
}
|
|
11032
11267
|
|
|
11033
11268
|
interface CheckoutSettings {
|
|
@@ -11404,13 +11639,21 @@ interface CheckoutSettingsUpdatedEnvelope {
|
|
|
11404
11639
|
metadata: EventMetadata$a;
|
|
11405
11640
|
}
|
|
11406
11641
|
|
|
11642
|
+
declare function getCheckoutSettings$1(httpClient: HttpClient): () => Promise<GetCheckoutSettingsResponse & GetCheckoutSettingsResponseNonNullableFields>;
|
|
11643
|
+
declare function updateCheckoutSettings$1(httpClient: HttpClient): (checkoutSettings: CheckoutSettings) => Promise<UpdateCheckoutSettingsResponse & UpdateCheckoutSettingsResponseNonNullableFields>;
|
|
11644
|
+
declare const onCheckoutSettingsUpdated$1: EventDefinition<CheckoutSettingsUpdatedEnvelope, "wix.ecom.v1.checkout_settings_updated">;
|
|
11645
|
+
|
|
11407
11646
|
declare function createRESTModule$e<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
11408
11647
|
|
|
11409
11648
|
declare function createEventModule$a<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
11410
11649
|
|
|
11411
|
-
|
|
11412
|
-
declare const
|
|
11413
|
-
|
|
11650
|
+
type _publicGetCheckoutSettingsType = typeof getCheckoutSettings$1;
|
|
11651
|
+
declare const getCheckoutSettings: ReturnType<typeof createRESTModule$e<_publicGetCheckoutSettingsType>>;
|
|
11652
|
+
type _publicUpdateCheckoutSettingsType = typeof updateCheckoutSettings$1;
|
|
11653
|
+
declare const updateCheckoutSettings: ReturnType<typeof createRESTModule$e<_publicUpdateCheckoutSettingsType>>;
|
|
11654
|
+
|
|
11655
|
+
type _publicOnCheckoutSettingsUpdatedType = typeof onCheckoutSettingsUpdated$1;
|
|
11656
|
+
declare const onCheckoutSettingsUpdated: ReturnType<typeof createEventModule$a<_publicOnCheckoutSettingsUpdatedType>>;
|
|
11414
11657
|
|
|
11415
11658
|
type context$e_Alignment = Alignment;
|
|
11416
11659
|
declare const context$e_Alignment: typeof Alignment;
|
|
@@ -11441,11 +11684,14 @@ type context$e_TermsAndConditionsPolicy = TermsAndConditionsPolicy;
|
|
|
11441
11684
|
type context$e_UpdateCheckoutSettingsRequest = UpdateCheckoutSettingsRequest;
|
|
11442
11685
|
type context$e_UpdateCheckoutSettingsResponse = UpdateCheckoutSettingsResponse;
|
|
11443
11686
|
type context$e_UpdateCheckoutSettingsResponseNonNullableFields = UpdateCheckoutSettingsResponseNonNullableFields;
|
|
11687
|
+
type context$e__publicGetCheckoutSettingsType = _publicGetCheckoutSettingsType;
|
|
11688
|
+
type context$e__publicOnCheckoutSettingsUpdatedType = _publicOnCheckoutSettingsUpdatedType;
|
|
11689
|
+
type context$e__publicUpdateCheckoutSettingsType = _publicUpdateCheckoutSettingsType;
|
|
11444
11690
|
declare const context$e_getCheckoutSettings: typeof getCheckoutSettings;
|
|
11445
11691
|
declare const context$e_onCheckoutSettingsUpdated: typeof onCheckoutSettingsUpdated;
|
|
11446
11692
|
declare const context$e_updateCheckoutSettings: typeof updateCheckoutSettings;
|
|
11447
11693
|
declare namespace context$e {
|
|
11448
|
-
export { type ActionEvent$c as ActionEvent, context$e_Alignment as Alignment, type BaseEventMetadata$a as BaseEventMetadata, type context$e_CheckboxField as CheckboxField, type context$e_CheckoutBrand as CheckoutBrand, type context$e_CheckoutFields as CheckoutFields, type context$e_CheckoutHeader as CheckoutHeader, type context$e_CheckoutPolicies as CheckoutPolicies, type context$e_CheckoutSettings as CheckoutSettings, type context$e_CheckoutSettingsUpdatedEnvelope as CheckoutSettingsUpdatedEnvelope, type context$e_ContactUsPolicy as ContactUsPolicy, type context$e_CustomCheckoutPolicy as CustomCheckoutPolicy, type context$e_DeleteCheckoutSettingsRequest as DeleteCheckoutSettingsRequest, type context$e_DeleteCheckoutSettingsResponse as DeleteCheckoutSettingsResponse, type context$e_DigitalItemPolicy as DigitalItemPolicy, type DomainEvent$c as DomainEvent, type DomainEventBodyOneOf$c as DomainEventBodyOneOf, type Empty$7 as Empty, type EntityCreatedEvent$c as EntityCreatedEvent, type EntityDeletedEvent$c as EntityDeletedEvent, type EntityUpdatedEvent$c as EntityUpdatedEvent, type EventMetadata$a as EventMetadata, type context$e_GetCheckoutSettingsRequest as GetCheckoutSettingsRequest, type context$e_GetCheckoutSettingsResponse as GetCheckoutSettingsResponse, type context$e_GetCheckoutSettingsResponseNonNullableFields as GetCheckoutSettingsResponseNonNullableFields, type context$e_GiftCardProviderWasProvisioned as GiftCardProviderWasProvisioned, type IdentificationData$c as IdentificationData, type IdentificationDataIdOneOf$c as IdentificationDataIdOneOf, type context$e_ListCheckoutSettingsRequest as ListCheckoutSettingsRequest, type context$e_ListCheckoutSettingsResponse as ListCheckoutSettingsResponse, type context$e_Logo as Logo, context$e_LogoSize as LogoSize, type MessageEnvelope$c as MessageEnvelope, type context$e_PrivacyPolicy as PrivacyPolicy, type RestoreInfo$c as RestoreInfo, type context$e_ReturnPolicy as ReturnPolicy, type context$e_TermsAndConditionsPolicy as TermsAndConditionsPolicy, type context$e_UpdateCheckoutSettingsRequest as UpdateCheckoutSettingsRequest, type context$e_UpdateCheckoutSettingsResponse as UpdateCheckoutSettingsResponse, type context$e_UpdateCheckoutSettingsResponseNonNullableFields as UpdateCheckoutSettingsResponseNonNullableFields, WebhookIdentityType$c as WebhookIdentityType, context$e_getCheckoutSettings as getCheckoutSettings, context$e_onCheckoutSettingsUpdated as onCheckoutSettingsUpdated, context$e_updateCheckoutSettings as updateCheckoutSettings };
|
|
11694
|
+
export { type ActionEvent$c as ActionEvent, context$e_Alignment as Alignment, type BaseEventMetadata$a as BaseEventMetadata, type context$e_CheckboxField as CheckboxField, type context$e_CheckoutBrand as CheckoutBrand, type context$e_CheckoutFields as CheckoutFields, type context$e_CheckoutHeader as CheckoutHeader, type context$e_CheckoutPolicies as CheckoutPolicies, type context$e_CheckoutSettings as CheckoutSettings, type context$e_CheckoutSettingsUpdatedEnvelope as CheckoutSettingsUpdatedEnvelope, type context$e_ContactUsPolicy as ContactUsPolicy, type context$e_CustomCheckoutPolicy as CustomCheckoutPolicy, type context$e_DeleteCheckoutSettingsRequest as DeleteCheckoutSettingsRequest, type context$e_DeleteCheckoutSettingsResponse as DeleteCheckoutSettingsResponse, type context$e_DigitalItemPolicy as DigitalItemPolicy, type DomainEvent$c as DomainEvent, type DomainEventBodyOneOf$c as DomainEventBodyOneOf, type Empty$7 as Empty, type EntityCreatedEvent$c as EntityCreatedEvent, type EntityDeletedEvent$c as EntityDeletedEvent, type EntityUpdatedEvent$c as EntityUpdatedEvent, type EventMetadata$a as EventMetadata, type context$e_GetCheckoutSettingsRequest as GetCheckoutSettingsRequest, type context$e_GetCheckoutSettingsResponse as GetCheckoutSettingsResponse, type context$e_GetCheckoutSettingsResponseNonNullableFields as GetCheckoutSettingsResponseNonNullableFields, type context$e_GiftCardProviderWasProvisioned as GiftCardProviderWasProvisioned, type IdentificationData$c as IdentificationData, type IdentificationDataIdOneOf$c as IdentificationDataIdOneOf, type context$e_ListCheckoutSettingsRequest as ListCheckoutSettingsRequest, type context$e_ListCheckoutSettingsResponse as ListCheckoutSettingsResponse, type context$e_Logo as Logo, context$e_LogoSize as LogoSize, type MessageEnvelope$c as MessageEnvelope, type context$e_PrivacyPolicy as PrivacyPolicy, type RestoreInfo$c as RestoreInfo, type context$e_ReturnPolicy as ReturnPolicy, type context$e_TermsAndConditionsPolicy as TermsAndConditionsPolicy, type context$e_UpdateCheckoutSettingsRequest as UpdateCheckoutSettingsRequest, type context$e_UpdateCheckoutSettingsResponse as UpdateCheckoutSettingsResponse, type context$e_UpdateCheckoutSettingsResponseNonNullableFields as UpdateCheckoutSettingsResponseNonNullableFields, WebhookIdentityType$c as WebhookIdentityType, type context$e__publicGetCheckoutSettingsType as _publicGetCheckoutSettingsType, type context$e__publicOnCheckoutSettingsUpdatedType as _publicOnCheckoutSettingsUpdatedType, type context$e__publicUpdateCheckoutSettingsType as _publicUpdateCheckoutSettingsType, context$e_getCheckoutSettings as getCheckoutSettings, context$e_onCheckoutSettingsUpdated as onCheckoutSettingsUpdated, onCheckoutSettingsUpdated$1 as publicOnCheckoutSettingsUpdated, context$e_updateCheckoutSettings as updateCheckoutSettings };
|
|
11449
11695
|
}
|
|
11450
11696
|
|
|
11451
11697
|
interface CheckoutTemplate {
|
|
@@ -13619,21 +13865,48 @@ interface CheckoutTemplatesQueryBuilder {
|
|
|
13619
13865
|
find: () => Promise<CheckoutTemplatesQueryResult>;
|
|
13620
13866
|
}
|
|
13621
13867
|
|
|
13868
|
+
declare function createCheckoutTemplate$1(httpClient: HttpClient): (checkoutTemplate: CheckoutTemplate) => Promise<CheckoutTemplate & CheckoutTemplateNonNullableFields>;
|
|
13869
|
+
declare function getCheckoutTemplate$1(httpClient: HttpClient): (checkoutTemplateId: string) => Promise<CheckoutTemplate & CheckoutTemplateNonNullableFields>;
|
|
13870
|
+
declare function updateCheckoutTemplate$1(httpClient: HttpClient): (_id: string | null, checkoutTemplate: UpdateCheckoutTemplate) => Promise<CheckoutTemplate & CheckoutTemplateNonNullableFields>;
|
|
13871
|
+
declare function deleteCheckoutTemplate$1(httpClient: HttpClient): (checkoutTemplateId: string) => Promise<void>;
|
|
13872
|
+
declare function queryCheckoutTemplates$1(httpClient: HttpClient): () => CheckoutTemplatesQueryBuilder;
|
|
13873
|
+
declare function createCheckoutFromTemplate$1(httpClient: HttpClient): (checkoutTemplateId: string, siteId: string) => Promise<CreateCheckoutFromTemplateResponse & CreateCheckoutFromTemplateResponseNonNullableFields>;
|
|
13874
|
+
declare function createAndRedirectToCheckout$1(httpClient: HttpClient): (checkoutTemplateId: string, siteId: string) => Promise<RawHttpResponse & RawHttpResponseNonNullableFields>;
|
|
13875
|
+
declare const onCheckoutTemplateCreated$1: EventDefinition<CheckoutTemplateCreatedEnvelope, "wix.ecom.v1.checkout_template_created">;
|
|
13876
|
+
declare const onCheckoutTemplateUpdated$1: EventDefinition<CheckoutTemplateUpdatedEnvelope, "wix.ecom.v1.checkout_template_updated">;
|
|
13877
|
+
declare const onCheckoutTemplateDeleted$1: EventDefinition<CheckoutTemplateDeletedEnvelope, "wix.ecom.v1.checkout_template_deleted">;
|
|
13878
|
+
declare const onCheckoutTemplateUsed$1: EventDefinition<CheckoutTemplateUsedEnvelope, "wix.ecom.v1.checkout_template_used">;
|
|
13879
|
+
|
|
13622
13880
|
declare function createRESTModule$d<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
13623
13881
|
|
|
13624
13882
|
declare function createEventModule$9<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
13625
13883
|
|
|
13626
|
-
|
|
13627
|
-
declare const
|
|
13628
|
-
|
|
13629
|
-
declare const
|
|
13630
|
-
|
|
13631
|
-
declare const
|
|
13632
|
-
|
|
13633
|
-
declare const
|
|
13634
|
-
|
|
13635
|
-
declare const
|
|
13636
|
-
|
|
13884
|
+
type _publicCreateCheckoutTemplateType = typeof createCheckoutTemplate$1;
|
|
13885
|
+
declare const createCheckoutTemplate: ReturnType<typeof createRESTModule$d<_publicCreateCheckoutTemplateType>>;
|
|
13886
|
+
type _publicGetCheckoutTemplateType = typeof getCheckoutTemplate$1;
|
|
13887
|
+
declare const getCheckoutTemplate: ReturnType<typeof createRESTModule$d<_publicGetCheckoutTemplateType>>;
|
|
13888
|
+
type _publicUpdateCheckoutTemplateType = typeof updateCheckoutTemplate$1;
|
|
13889
|
+
declare const updateCheckoutTemplate: ReturnType<typeof createRESTModule$d<_publicUpdateCheckoutTemplateType>>;
|
|
13890
|
+
type _publicDeleteCheckoutTemplateType = typeof deleteCheckoutTemplate$1;
|
|
13891
|
+
declare const deleteCheckoutTemplate: ReturnType<typeof createRESTModule$d<_publicDeleteCheckoutTemplateType>>;
|
|
13892
|
+
type _publicQueryCheckoutTemplatesType = typeof queryCheckoutTemplates$1;
|
|
13893
|
+
declare const queryCheckoutTemplates: ReturnType<typeof createRESTModule$d<_publicQueryCheckoutTemplatesType>>;
|
|
13894
|
+
type _publicCreateCheckoutFromTemplateType = typeof createCheckoutFromTemplate$1;
|
|
13895
|
+
declare const createCheckoutFromTemplate: ReturnType<typeof createRESTModule$d<_publicCreateCheckoutFromTemplateType>>;
|
|
13896
|
+
type _publicCreateAndRedirectToCheckoutType = typeof createAndRedirectToCheckout$1;
|
|
13897
|
+
declare const createAndRedirectToCheckout: ReturnType<typeof createRESTModule$d<_publicCreateAndRedirectToCheckoutType>>;
|
|
13898
|
+
|
|
13899
|
+
type _publicOnCheckoutTemplateCreatedType = typeof onCheckoutTemplateCreated$1;
|
|
13900
|
+
declare const onCheckoutTemplateCreated: ReturnType<typeof createEventModule$9<_publicOnCheckoutTemplateCreatedType>>;
|
|
13901
|
+
|
|
13902
|
+
type _publicOnCheckoutTemplateUpdatedType = typeof onCheckoutTemplateUpdated$1;
|
|
13903
|
+
declare const onCheckoutTemplateUpdated: ReturnType<typeof createEventModule$9<_publicOnCheckoutTemplateUpdatedType>>;
|
|
13904
|
+
|
|
13905
|
+
type _publicOnCheckoutTemplateDeletedType = typeof onCheckoutTemplateDeleted$1;
|
|
13906
|
+
declare const onCheckoutTemplateDeleted: ReturnType<typeof createEventModule$9<_publicOnCheckoutTemplateDeletedType>>;
|
|
13907
|
+
|
|
13908
|
+
type _publicOnCheckoutTemplateUsedType = typeof onCheckoutTemplateUsed$1;
|
|
13909
|
+
declare const onCheckoutTemplateUsed: ReturnType<typeof createEventModule$9<_publicOnCheckoutTemplateUsedType>>;
|
|
13637
13910
|
|
|
13638
13911
|
type context$d_CatalogOverrideFields = CatalogOverrideFields;
|
|
13639
13912
|
type context$d_Checkout = Checkout;
|
|
@@ -13692,6 +13965,17 @@ type context$d_UpdateCheckoutTemplateResponseNonNullableFields = UpdateCheckoutT
|
|
|
13692
13965
|
type context$d_V1LineItem = V1LineItem;
|
|
13693
13966
|
type context$d_Violation = Violation;
|
|
13694
13967
|
type context$d_WebClientCustomization = WebClientCustomization;
|
|
13968
|
+
type context$d__publicCreateAndRedirectToCheckoutType = _publicCreateAndRedirectToCheckoutType;
|
|
13969
|
+
type context$d__publicCreateCheckoutFromTemplateType = _publicCreateCheckoutFromTemplateType;
|
|
13970
|
+
type context$d__publicCreateCheckoutTemplateType = _publicCreateCheckoutTemplateType;
|
|
13971
|
+
type context$d__publicDeleteCheckoutTemplateType = _publicDeleteCheckoutTemplateType;
|
|
13972
|
+
type context$d__publicGetCheckoutTemplateType = _publicGetCheckoutTemplateType;
|
|
13973
|
+
type context$d__publicOnCheckoutTemplateCreatedType = _publicOnCheckoutTemplateCreatedType;
|
|
13974
|
+
type context$d__publicOnCheckoutTemplateDeletedType = _publicOnCheckoutTemplateDeletedType;
|
|
13975
|
+
type context$d__publicOnCheckoutTemplateUpdatedType = _publicOnCheckoutTemplateUpdatedType;
|
|
13976
|
+
type context$d__publicOnCheckoutTemplateUsedType = _publicOnCheckoutTemplateUsedType;
|
|
13977
|
+
type context$d__publicQueryCheckoutTemplatesType = _publicQueryCheckoutTemplatesType;
|
|
13978
|
+
type context$d__publicUpdateCheckoutTemplateType = _publicUpdateCheckoutTemplateType;
|
|
13695
13979
|
declare const context$d_createAndRedirectToCheckout: typeof createAndRedirectToCheckout;
|
|
13696
13980
|
declare const context$d_createCheckoutFromTemplate: typeof createCheckoutFromTemplate;
|
|
13697
13981
|
declare const context$d_createCheckoutTemplate: typeof createCheckoutTemplate;
|
|
@@ -13704,7 +13988,7 @@ declare const context$d_onCheckoutTemplateUsed: typeof onCheckoutTemplateUsed;
|
|
|
13704
13988
|
declare const context$d_queryCheckoutTemplates: typeof queryCheckoutTemplates;
|
|
13705
13989
|
declare const context$d_updateCheckoutTemplate: typeof updateCheckoutTemplate;
|
|
13706
13990
|
declare namespace context$d {
|
|
13707
|
-
export { type ActionEvent$b as ActionEvent, type AdditionalFee$3 as AdditionalFee, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type ApplicationError$7 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$9 as BaseEventMetadata, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type context$d_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$3 as ChannelType, ChargeType$2 as ChargeType, type context$d_Checkout as Checkout, type context$d_CheckoutCustomization as CheckoutCustomization, type context$d_CheckoutTemplate as CheckoutTemplate, type context$d_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type context$d_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type context$d_CheckoutTemplateNonNullableFields as CheckoutTemplateNonNullableFields, type context$d_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type context$d_CheckoutTemplateUsed as CheckoutTemplateUsed, type context$d_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type context$d_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type context$d_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$2 as Color, type context$d_ConversionInfo as ConversionInfo, type Coupon$3 as Coupon, type context$d_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type context$d_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type context$d_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type context$d_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type context$d_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type context$d_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type context$d_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type context$d_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$8 as CursorPaging, type CursorPagingMetadata$8 as CursorPagingMetadata, type CursorQuery$6 as CursorQuery, type CursorQueryPagingMethodOneOf$6 as CursorQueryPagingMethodOneOf, type Cursors$8 as Cursors, type context$d_CustomContentReference as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type context$d_CustomSettings as CustomSettings, type context$d_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type context$d_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type context$d_Description as Description, type DescriptionLine$2 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$2 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$2 as DescriptionLineName, DescriptionLineType$2 as DescriptionLineType, type DescriptionLineValueOneOf$2 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$b as DomainEvent, type DomainEventBodyOneOf$b as DomainEventBodyOneOf, type EntityCreatedEvent$b as EntityCreatedEvent, type EntityDeletedEvent$b as EntityDeletedEvent, type EntityUpdatedEvent$b as EntityUpdatedEvent, type EventMetadata$9 as EventMetadata, type ExtendedFields$6 as ExtendedFields, type context$d_ExternalReference as ExternalReference, FallbackReason$1 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type context$d_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type context$d_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type context$d_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$2 as GiftCard, type Group$1 as Group, type context$d_HeadersEntry as HeadersEntry, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type InvalidMembership$1 as InvalidMembership, type context$d_ItemAvailabilityInfo as ItemAvailabilityInfo, context$d_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$3 as ItemTaxFullDetails, type ItemType$3 as ItemType, ItemTypeItemType$3 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$3 as ItemTypeItemTypeDataOneOf, JurisdictionType$3 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$3 as LineItemDiscount, ManualCalculationReason$1 as ManualCalculationReason, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MessageEnvelope$b as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, context$d_NameInLineItem as NameInLineItem, context$d_NameInOther as NameInOther, type context$d_Other as Other, type OtherCharge$1 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$2 as ProductName, type context$d_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type context$d_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type context$d_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, RateType$1 as RateType, type context$d_RawHttpResponse as RawHttpResponse, type context$d_RawHttpResponseNonNullableFields as RawHttpResponseNonNullableFields, type RestoreInfo$b as RestoreInfo, RuleType$2 as RuleType, type Scope$1 as Scope, type SecuredMedia$1 as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$1 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type SelectedMembership$1 as SelectedMembership, type SelectedMemberships$1 as SelectedMemberships, type ServiceProperties$2 as ServiceProperties, context$d_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type ShippingOption$3 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, Status$1 as Status, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$2 as SystemError, type context$d_Target as Target, type context$d_TargetLineItem as TargetLineItem, type context$d_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type context$d_Title as Title, type context$d_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type context$d_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type context$d_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type context$d_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type context$d_V1LineItem as V1LineItem, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type context$d_Violation as Violation, type context$d_WebClientCustomization as WebClientCustomization, WebhookIdentityType$b as WebhookIdentityType, WeightUnit$4 as WeightUnit, context$d_createAndRedirectToCheckout as createAndRedirectToCheckout, context$d_createCheckoutFromTemplate as createCheckoutFromTemplate, context$d_createCheckoutTemplate as createCheckoutTemplate, context$d_deleteCheckoutTemplate as deleteCheckoutTemplate, context$d_getCheckoutTemplate as getCheckoutTemplate, context$d_onCheckoutTemplateCreated as onCheckoutTemplateCreated, context$d_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, context$d_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, context$d_onCheckoutTemplateUsed as onCheckoutTemplateUsed, context$d_queryCheckoutTemplates as queryCheckoutTemplates, context$d_updateCheckoutTemplate as updateCheckoutTemplate };
|
|
13991
|
+
export { type ActionEvent$b as ActionEvent, type AdditionalFee$3 as AdditionalFee, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type ApplicationError$7 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$9 as BaseEventMetadata, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type context$d_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$3 as ChannelType, ChargeType$2 as ChargeType, type context$d_Checkout as Checkout, type context$d_CheckoutCustomization as CheckoutCustomization, type context$d_CheckoutTemplate as CheckoutTemplate, type context$d_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type context$d_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type context$d_CheckoutTemplateNonNullableFields as CheckoutTemplateNonNullableFields, type context$d_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type context$d_CheckoutTemplateUsed as CheckoutTemplateUsed, type context$d_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type context$d_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type context$d_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$2 as Color, type context$d_ConversionInfo as ConversionInfo, type Coupon$3 as Coupon, type context$d_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type context$d_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type context$d_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type context$d_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type context$d_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type context$d_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type context$d_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type context$d_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$8 as CursorPaging, type CursorPagingMetadata$8 as CursorPagingMetadata, type CursorQuery$6 as CursorQuery, type CursorQueryPagingMethodOneOf$6 as CursorQueryPagingMethodOneOf, type Cursors$8 as Cursors, type context$d_CustomContentReference as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type context$d_CustomSettings as CustomSettings, type context$d_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type context$d_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type context$d_Description as Description, type DescriptionLine$2 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$2 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$2 as DescriptionLineName, DescriptionLineType$2 as DescriptionLineType, type DescriptionLineValueOneOf$2 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$b as DomainEvent, type DomainEventBodyOneOf$b as DomainEventBodyOneOf, type EntityCreatedEvent$b as EntityCreatedEvent, type EntityDeletedEvent$b as EntityDeletedEvent, type EntityUpdatedEvent$b as EntityUpdatedEvent, type EventMetadata$9 as EventMetadata, type ExtendedFields$6 as ExtendedFields, type context$d_ExternalReference as ExternalReference, FallbackReason$1 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type context$d_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type context$d_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type context$d_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$2 as GiftCard, type Group$1 as Group, type context$d_HeadersEntry as HeadersEntry, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type InvalidMembership$1 as InvalidMembership, type context$d_ItemAvailabilityInfo as ItemAvailabilityInfo, context$d_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$3 as ItemTaxFullDetails, type ItemType$3 as ItemType, ItemTypeItemType$3 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$3 as ItemTypeItemTypeDataOneOf, JurisdictionType$3 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$3 as LineItemDiscount, ManualCalculationReason$1 as ManualCalculationReason, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MessageEnvelope$b as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, context$d_NameInLineItem as NameInLineItem, context$d_NameInOther as NameInOther, type context$d_Other as Other, type OtherCharge$1 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$2 as ProductName, type context$d_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type context$d_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type context$d_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, RateType$1 as RateType, type context$d_RawHttpResponse as RawHttpResponse, type context$d_RawHttpResponseNonNullableFields as RawHttpResponseNonNullableFields, type RestoreInfo$b as RestoreInfo, RuleType$2 as RuleType, type Scope$1 as Scope, type SecuredMedia$1 as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$1 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type SelectedMembership$1 as SelectedMembership, type SelectedMemberships$1 as SelectedMemberships, type ServiceProperties$2 as ServiceProperties, context$d_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type ShippingOption$3 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, Status$1 as Status, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$2 as SystemError, type context$d_Target as Target, type context$d_TargetLineItem as TargetLineItem, type context$d_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type context$d_Title as Title, type context$d_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type context$d_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type context$d_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type context$d_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type context$d_V1LineItem as V1LineItem, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type context$d_Violation as Violation, type context$d_WebClientCustomization as WebClientCustomization, WebhookIdentityType$b as WebhookIdentityType, WeightUnit$4 as WeightUnit, type context$d__publicCreateAndRedirectToCheckoutType as _publicCreateAndRedirectToCheckoutType, type context$d__publicCreateCheckoutFromTemplateType as _publicCreateCheckoutFromTemplateType, type context$d__publicCreateCheckoutTemplateType as _publicCreateCheckoutTemplateType, type context$d__publicDeleteCheckoutTemplateType as _publicDeleteCheckoutTemplateType, type context$d__publicGetCheckoutTemplateType as _publicGetCheckoutTemplateType, type context$d__publicOnCheckoutTemplateCreatedType as _publicOnCheckoutTemplateCreatedType, type context$d__publicOnCheckoutTemplateDeletedType as _publicOnCheckoutTemplateDeletedType, type context$d__publicOnCheckoutTemplateUpdatedType as _publicOnCheckoutTemplateUpdatedType, type context$d__publicOnCheckoutTemplateUsedType as _publicOnCheckoutTemplateUsedType, type context$d__publicQueryCheckoutTemplatesType as _publicQueryCheckoutTemplatesType, type context$d__publicUpdateCheckoutTemplateType as _publicUpdateCheckoutTemplateType, context$d_createAndRedirectToCheckout as createAndRedirectToCheckout, context$d_createCheckoutFromTemplate as createCheckoutFromTemplate, context$d_createCheckoutTemplate as createCheckoutTemplate, context$d_deleteCheckoutTemplate as deleteCheckoutTemplate, context$d_getCheckoutTemplate as getCheckoutTemplate, context$d_onCheckoutTemplateCreated as onCheckoutTemplateCreated, context$d_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, context$d_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, context$d_onCheckoutTemplateUsed as onCheckoutTemplateUsed, onCheckoutTemplateCreated$1 as publicOnCheckoutTemplateCreated, onCheckoutTemplateDeleted$1 as publicOnCheckoutTemplateDeleted, onCheckoutTemplateUpdated$1 as publicOnCheckoutTemplateUpdated, onCheckoutTemplateUsed$1 as publicOnCheckoutTemplateUsed, context$d_queryCheckoutTemplates as queryCheckoutTemplates, context$d_updateCheckoutTemplate as updateCheckoutTemplate };
|
|
13708
13992
|
}
|
|
13709
13993
|
|
|
13710
13994
|
/**
|
|
@@ -14902,30 +15186,77 @@ interface UpdateExtendedFieldsOptions$3 {
|
|
|
14902
15186
|
namespaceData: Record<string, any> | null;
|
|
14903
15187
|
}
|
|
14904
15188
|
|
|
15189
|
+
declare function createDeliveryProfile$1(httpClient: HttpClient): (deliveryProfile: DeliveryProfile) => Promise<DeliveryProfile & DeliveryProfileNonNullableFields>;
|
|
15190
|
+
declare function getDeliveryProfile$1(httpClient: HttpClient): (deliveryProfileId: string) => Promise<DeliveryProfile & DeliveryProfileNonNullableFields>;
|
|
15191
|
+
declare function updateDeliveryProfile$1(httpClient: HttpClient): (_id: string | null, deliveryProfile: UpdateDeliveryProfile) => Promise<DeliveryProfile & DeliveryProfileNonNullableFields>;
|
|
15192
|
+
declare function deleteDeliveryProfile$1(httpClient: HttpClient): (deliveryProfileId: string) => Promise<void>;
|
|
15193
|
+
declare function queryDeliveryProfiles$1(httpClient: HttpClient): () => DeliveryProfilesQueryBuilder;
|
|
15194
|
+
declare function addDeliveryRegion$1(httpClient: HttpClient): (deliveryProfileId: string, deliveryRegion: DeliveryRegion, options?: AddDeliveryRegionOptions) => Promise<AddDeliveryRegionResponse & AddDeliveryRegionResponseNonNullableFields>;
|
|
15195
|
+
declare function updateDeliveryRegion$1(httpClient: HttpClient): (identifiers: UpdateDeliveryRegionIdentifiers, deliveryRegion: UpdateDeliveryRegion, options?: UpdateDeliveryRegionOptions) => Promise<UpdateDeliveryRegionResponse & UpdateDeliveryRegionResponseNonNullableFields>;
|
|
15196
|
+
declare function removeDeliveryRegion$1(httpClient: HttpClient): (identifiers: RemoveDeliveryRegionIdentifiers, options?: RemoveDeliveryRegionOptions) => Promise<RemoveDeliveryRegionResponse & RemoveDeliveryRegionResponseNonNullableFields>;
|
|
15197
|
+
declare function addDeliveryCarrier$1(httpClient: HttpClient): (deliveryRegionId: string, options: AddDeliveryCarrierOptions) => Promise<AddDeliveryCarrierResponse & AddDeliveryCarrierResponseNonNullableFields>;
|
|
15198
|
+
declare function removeDeliveryCarrier$1(httpClient: HttpClient): (deliveryRegionId: string, options: RemoveDeliveryCarrierOptions) => Promise<RemoveDeliveryCarrierResponse & RemoveDeliveryCarrierResponseNonNullableFields>;
|
|
15199
|
+
declare function updateDeliveryCarrier$1(httpClient: HttpClient): (deliveryRegionId: string, options?: UpdateDeliveryCarrierOptions) => Promise<UpdateDeliveryCarrierResponse & UpdateDeliveryCarrierResponseNonNullableFields>;
|
|
15200
|
+
declare function listDeliveryCarrierDetails$1(httpClient: HttpClient): () => Promise<ListDeliveryCarrierDetailsResponse & ListDeliveryCarrierDetailsResponseNonNullableFields>;
|
|
15201
|
+
declare function listDeliveryCarriers$1(httpClient: HttpClient): (deliveryProfileId: string, options?: ListDeliveryCarriersOptions) => Promise<ListDeliveryCarriersResponse & ListDeliveryCarriersResponseNonNullableFields>;
|
|
15202
|
+
declare function updateExtendedFields$7(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions$3) => Promise<UpdateExtendedFieldsResponse$4 & UpdateExtendedFieldsResponseNonNullableFields$3>;
|
|
15203
|
+
declare const onDeliveryProfileCreated$1: EventDefinition<DeliveryProfileCreatedEnvelope, "wix.ecom.v1.delivery_profile_created">;
|
|
15204
|
+
declare const onDeliveryProfileDeliveryRegionAdded$1: EventDefinition<DeliveryProfileDeliveryRegionAddedEnvelope, "wix.ecom.v1.delivery_profile_delivery_region_added">;
|
|
15205
|
+
declare const onDeliveryProfileUpdated$1: EventDefinition<DeliveryProfileUpdatedEnvelope, "wix.ecom.v1.delivery_profile_updated">;
|
|
15206
|
+
declare const onDeliveryProfileDeleted$1: EventDefinition<DeliveryProfileDeletedEnvelope, "wix.ecom.v1.delivery_profile_deleted">;
|
|
15207
|
+
declare const onDeliveryProfileDeliveryRegionRemoved$1: EventDefinition<DeliveryProfileDeliveryRegionRemovedEnvelope, "wix.ecom.v1.delivery_profile_delivery_region_removed">;
|
|
15208
|
+
declare const onDeliveryProfileDeliveryRegionUpdated$1: EventDefinition<DeliveryProfileDeliveryRegionUpdatedEnvelope, "wix.ecom.v1.delivery_profile_delivery_region_updated">;
|
|
15209
|
+
|
|
14905
15210
|
declare function createRESTModule$c<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
14906
15211
|
|
|
14907
15212
|
declare function createEventModule$8<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
14908
15213
|
|
|
14909
|
-
|
|
14910
|
-
declare const
|
|
14911
|
-
|
|
14912
|
-
declare const
|
|
14913
|
-
|
|
14914
|
-
declare const
|
|
14915
|
-
|
|
14916
|
-
declare const
|
|
14917
|
-
|
|
14918
|
-
declare const
|
|
14919
|
-
|
|
14920
|
-
declare const
|
|
14921
|
-
|
|
14922
|
-
declare const
|
|
14923
|
-
|
|
14924
|
-
declare const
|
|
14925
|
-
|
|
14926
|
-
declare const
|
|
14927
|
-
|
|
14928
|
-
declare const
|
|
15214
|
+
type _publicCreateDeliveryProfileType = typeof createDeliveryProfile$1;
|
|
15215
|
+
declare const createDeliveryProfile: ReturnType<typeof createRESTModule$c<_publicCreateDeliveryProfileType>>;
|
|
15216
|
+
type _publicGetDeliveryProfileType = typeof getDeliveryProfile$1;
|
|
15217
|
+
declare const getDeliveryProfile: ReturnType<typeof createRESTModule$c<_publicGetDeliveryProfileType>>;
|
|
15218
|
+
type _publicUpdateDeliveryProfileType = typeof updateDeliveryProfile$1;
|
|
15219
|
+
declare const updateDeliveryProfile: ReturnType<typeof createRESTModule$c<_publicUpdateDeliveryProfileType>>;
|
|
15220
|
+
type _publicDeleteDeliveryProfileType = typeof deleteDeliveryProfile$1;
|
|
15221
|
+
declare const deleteDeliveryProfile: ReturnType<typeof createRESTModule$c<_publicDeleteDeliveryProfileType>>;
|
|
15222
|
+
type _publicQueryDeliveryProfilesType = typeof queryDeliveryProfiles$1;
|
|
15223
|
+
declare const queryDeliveryProfiles: ReturnType<typeof createRESTModule$c<_publicQueryDeliveryProfilesType>>;
|
|
15224
|
+
type _publicAddDeliveryRegionType = typeof addDeliveryRegion$1;
|
|
15225
|
+
declare const addDeliveryRegion: ReturnType<typeof createRESTModule$c<_publicAddDeliveryRegionType>>;
|
|
15226
|
+
type _publicUpdateDeliveryRegionType = typeof updateDeliveryRegion$1;
|
|
15227
|
+
declare const updateDeliveryRegion: ReturnType<typeof createRESTModule$c<_publicUpdateDeliveryRegionType>>;
|
|
15228
|
+
type _publicRemoveDeliveryRegionType = typeof removeDeliveryRegion$1;
|
|
15229
|
+
declare const removeDeliveryRegion: ReturnType<typeof createRESTModule$c<_publicRemoveDeliveryRegionType>>;
|
|
15230
|
+
type _publicAddDeliveryCarrierType = typeof addDeliveryCarrier$1;
|
|
15231
|
+
declare const addDeliveryCarrier: ReturnType<typeof createRESTModule$c<_publicAddDeliveryCarrierType>>;
|
|
15232
|
+
type _publicRemoveDeliveryCarrierType = typeof removeDeliveryCarrier$1;
|
|
15233
|
+
declare const removeDeliveryCarrier: ReturnType<typeof createRESTModule$c<_publicRemoveDeliveryCarrierType>>;
|
|
15234
|
+
type _publicUpdateDeliveryCarrierType = typeof updateDeliveryCarrier$1;
|
|
15235
|
+
declare const updateDeliveryCarrier: ReturnType<typeof createRESTModule$c<_publicUpdateDeliveryCarrierType>>;
|
|
15236
|
+
type _publicListDeliveryCarrierDetailsType = typeof listDeliveryCarrierDetails$1;
|
|
15237
|
+
declare const listDeliveryCarrierDetails: ReturnType<typeof createRESTModule$c<_publicListDeliveryCarrierDetailsType>>;
|
|
15238
|
+
type _publicListDeliveryCarriersType = typeof listDeliveryCarriers$1;
|
|
15239
|
+
declare const listDeliveryCarriers: ReturnType<typeof createRESTModule$c<_publicListDeliveryCarriersType>>;
|
|
15240
|
+
type _publicUpdateExtendedFieldsType$3 = typeof updateExtendedFields$7;
|
|
15241
|
+
declare const updateExtendedFields$6: ReturnType<typeof createRESTModule$c<_publicUpdateExtendedFieldsType>>;
|
|
15242
|
+
|
|
15243
|
+
type _publicOnDeliveryProfileCreatedType = typeof onDeliveryProfileCreated$1;
|
|
15244
|
+
declare const onDeliveryProfileCreated: ReturnType<typeof createEventModule$8<_publicOnDeliveryProfileCreatedType>>;
|
|
15245
|
+
|
|
15246
|
+
type _publicOnDeliveryProfileDeliveryRegionAddedType = typeof onDeliveryProfileDeliveryRegionAdded$1;
|
|
15247
|
+
declare const onDeliveryProfileDeliveryRegionAdded: ReturnType<typeof createEventModule$8<_publicOnDeliveryProfileDeliveryRegionAddedType>>;
|
|
15248
|
+
|
|
15249
|
+
type _publicOnDeliveryProfileUpdatedType = typeof onDeliveryProfileUpdated$1;
|
|
15250
|
+
declare const onDeliveryProfileUpdated: ReturnType<typeof createEventModule$8<_publicOnDeliveryProfileUpdatedType>>;
|
|
15251
|
+
|
|
15252
|
+
type _publicOnDeliveryProfileDeletedType = typeof onDeliveryProfileDeleted$1;
|
|
15253
|
+
declare const onDeliveryProfileDeleted: ReturnType<typeof createEventModule$8<_publicOnDeliveryProfileDeletedType>>;
|
|
15254
|
+
|
|
15255
|
+
type _publicOnDeliveryProfileDeliveryRegionRemovedType = typeof onDeliveryProfileDeliveryRegionRemoved$1;
|
|
15256
|
+
declare const onDeliveryProfileDeliveryRegionRemoved: ReturnType<typeof createEventModule$8<_publicOnDeliveryProfileDeliveryRegionRemovedType>>;
|
|
15257
|
+
|
|
15258
|
+
type _publicOnDeliveryProfileDeliveryRegionUpdatedType = typeof onDeliveryProfileDeliveryRegionUpdated$1;
|
|
15259
|
+
declare const onDeliveryProfileDeliveryRegionUpdated: ReturnType<typeof createEventModule$8<_publicOnDeliveryProfileDeliveryRegionUpdatedType>>;
|
|
14929
15260
|
|
|
14930
15261
|
type context$c_AddDeliveryCarrierOptions = AddDeliveryCarrierOptions;
|
|
14931
15262
|
type context$c_AddDeliveryCarrierRequest = AddDeliveryCarrierRequest;
|
|
@@ -15022,6 +15353,25 @@ type context$c_UpdateDeliveryRegionOptions = UpdateDeliveryRegionOptions;
|
|
|
15022
15353
|
type context$c_UpdateDeliveryRegionRequest = UpdateDeliveryRegionRequest;
|
|
15023
15354
|
type context$c_UpdateDeliveryRegionResponse = UpdateDeliveryRegionResponse;
|
|
15024
15355
|
type context$c_UpdateDeliveryRegionResponseNonNullableFields = UpdateDeliveryRegionResponseNonNullableFields;
|
|
15356
|
+
type context$c__publicAddDeliveryCarrierType = _publicAddDeliveryCarrierType;
|
|
15357
|
+
type context$c__publicAddDeliveryRegionType = _publicAddDeliveryRegionType;
|
|
15358
|
+
type context$c__publicCreateDeliveryProfileType = _publicCreateDeliveryProfileType;
|
|
15359
|
+
type context$c__publicDeleteDeliveryProfileType = _publicDeleteDeliveryProfileType;
|
|
15360
|
+
type context$c__publicGetDeliveryProfileType = _publicGetDeliveryProfileType;
|
|
15361
|
+
type context$c__publicListDeliveryCarrierDetailsType = _publicListDeliveryCarrierDetailsType;
|
|
15362
|
+
type context$c__publicListDeliveryCarriersType = _publicListDeliveryCarriersType;
|
|
15363
|
+
type context$c__publicOnDeliveryProfileCreatedType = _publicOnDeliveryProfileCreatedType;
|
|
15364
|
+
type context$c__publicOnDeliveryProfileDeletedType = _publicOnDeliveryProfileDeletedType;
|
|
15365
|
+
type context$c__publicOnDeliveryProfileDeliveryRegionAddedType = _publicOnDeliveryProfileDeliveryRegionAddedType;
|
|
15366
|
+
type context$c__publicOnDeliveryProfileDeliveryRegionRemovedType = _publicOnDeliveryProfileDeliveryRegionRemovedType;
|
|
15367
|
+
type context$c__publicOnDeliveryProfileDeliveryRegionUpdatedType = _publicOnDeliveryProfileDeliveryRegionUpdatedType;
|
|
15368
|
+
type context$c__publicOnDeliveryProfileUpdatedType = _publicOnDeliveryProfileUpdatedType;
|
|
15369
|
+
type context$c__publicQueryDeliveryProfilesType = _publicQueryDeliveryProfilesType;
|
|
15370
|
+
type context$c__publicRemoveDeliveryCarrierType = _publicRemoveDeliveryCarrierType;
|
|
15371
|
+
type context$c__publicRemoveDeliveryRegionType = _publicRemoveDeliveryRegionType;
|
|
15372
|
+
type context$c__publicUpdateDeliveryCarrierType = _publicUpdateDeliveryCarrierType;
|
|
15373
|
+
type context$c__publicUpdateDeliveryProfileType = _publicUpdateDeliveryProfileType;
|
|
15374
|
+
type context$c__publicUpdateDeliveryRegionType = _publicUpdateDeliveryRegionType;
|
|
15025
15375
|
declare const context$c_addDeliveryCarrier: typeof addDeliveryCarrier;
|
|
15026
15376
|
declare const context$c_addDeliveryRegion: typeof addDeliveryRegion;
|
|
15027
15377
|
declare const context$c_createDeliveryProfile: typeof createDeliveryProfile;
|
|
@@ -15042,7 +15392,7 @@ declare const context$c_updateDeliveryCarrier: typeof updateDeliveryCarrier;
|
|
|
15042
15392
|
declare const context$c_updateDeliveryProfile: typeof updateDeliveryProfile;
|
|
15043
15393
|
declare const context$c_updateDeliveryRegion: typeof updateDeliveryRegion;
|
|
15044
15394
|
declare namespace context$c {
|
|
15045
|
-
export { type ActionEvent$a as ActionEvent, type context$c_AddDeliveryCarrierOptions as AddDeliveryCarrierOptions, type context$c_AddDeliveryCarrierRequest as AddDeliveryCarrierRequest, type context$c_AddDeliveryCarrierResponse as AddDeliveryCarrierResponse, type context$c_AddDeliveryCarrierResponseNonNullableFields as AddDeliveryCarrierResponseNonNullableFields, type context$c_AddDeliveryRegionOptions as AddDeliveryRegionOptions, type context$c_AddDeliveryRegionRequest as AddDeliveryRegionRequest, type context$c_AddDeliveryRegionResponse as AddDeliveryRegionResponse, type context$c_AddDeliveryRegionResponseNonNullableFields as AddDeliveryRegionResponseNonNullableFields, type context$c_AdditionalCharge as AdditionalCharge, type ApplicationError$6 as ApplicationError, type context$c_Asset as Asset, type context$c_BackupRate as BackupRate, type BaseEventMetadata$8 as BaseEventMetadata, type BulkActionMetadata$3 as BulkActionMetadata, ChargeType$1 as ChargeType, type context$c_Column as Column, type context$c_CreateDeliveryProfileRequest as CreateDeliveryProfileRequest, type context$c_CreateDeliveryProfileResponse as CreateDeliveryProfileResponse, type context$c_CreateDeliveryProfileResponseNonNullableFields as CreateDeliveryProfileResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type CursorPagingMetadata$7 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$7 as Cursors, type context$c_DashboardTable as DashboardTable, type context$c_DeleteContext as DeleteContext, type context$c_DeleteDeliveryProfileRequest as DeleteDeliveryProfileRequest, type context$c_DeleteDeliveryProfileResponse as DeleteDeliveryProfileResponse, context$c_DeleteStatus as DeleteStatus, type context$c_DeliveryCarrier as DeliveryCarrier, type context$c_DeliveryCarrierDetails as DeliveryCarrierDetails, type context$c_DeliveryCarrierRegionalSettings as DeliveryCarrierRegionalSettings, type context$c_DeliveryProfile as DeliveryProfile, type context$c_DeliveryProfileCreatedEnvelope as DeliveryProfileCreatedEnvelope, type context$c_DeliveryProfileDeletedEnvelope as DeliveryProfileDeletedEnvelope, type context$c_DeliveryProfileDeliveryRegionAddedEnvelope as DeliveryProfileDeliveryRegionAddedEnvelope, type context$c_DeliveryProfileDeliveryRegionRemovedEnvelope as DeliveryProfileDeliveryRegionRemovedEnvelope, type context$c_DeliveryProfileDeliveryRegionUpdatedEnvelope as DeliveryProfileDeliveryRegionUpdatedEnvelope, type context$c_DeliveryProfileNonNullableFields as DeliveryProfileNonNullableFields, type context$c_DeliveryProfileUpdatedEnvelope as DeliveryProfileUpdatedEnvelope, type context$c_DeliveryProfilesQueryBuilder as DeliveryProfilesQueryBuilder, type context$c_DeliveryProfilesQueryResult as DeliveryProfilesQueryResult, type context$c_DeliveryRegion as DeliveryRegion, type context$c_DeliveryRegionAdded as DeliveryRegionAdded, type context$c_DeliveryRegionRemoved as DeliveryRegionRemoved, type context$c_DeliveryRegionUpdated as DeliveryRegionUpdated, type Destination$1 as Destination, type DomainEvent$a as DomainEvent, type DomainEventBodyOneOf$a as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$a as EntityCreatedEvent, type EntityDeletedEvent$a as EntityDeletedEvent, type EntityUpdatedEvent$a as EntityUpdatedEvent, type EventMetadata$8 as EventMetadata, type ExtendedFields$5 as ExtendedFields, type context$c_GetDeliveryProfileRequest as GetDeliveryProfileRequest, type context$c_GetDeliveryProfileResponse as GetDeliveryProfileResponse, type context$c_GetDeliveryProfileResponseNonNullableFields as GetDeliveryProfileResponseNonNullableFields, type IdentificationData$a as IdentificationData, type IdentificationDataIdOneOf$a as IdentificationDataIdOneOf, type ItemMetadata$3 as ItemMetadata, type context$c_ListDeliveryCarrierDetailsRequest as ListDeliveryCarrierDetailsRequest, type context$c_ListDeliveryCarrierDetailsResponse as ListDeliveryCarrierDetailsResponse, type context$c_ListDeliveryCarrierDetailsResponseNonNullableFields as ListDeliveryCarrierDetailsResponseNonNullableFields, type context$c_ListDeliveryCarriersOptions as ListDeliveryCarriersOptions, type context$c_ListDeliveryCarriersRequest as ListDeliveryCarriersRequest, type context$c_ListDeliveryCarriersResponse as ListDeliveryCarriersResponse, type context$c_ListDeliveryCarriersResponseNonNullableFields as ListDeliveryCarriersResponseNonNullableFields, type context$c_ListDeliveryCarriersResult as ListDeliveryCarriersResult, type MessageEnvelope$a as MessageEnvelope, type context$c_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context$c_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, Namespace$1 as Namespace, type context$c_NamespaceChanged as NamespaceChanged, type context$c_QueryDeliveryProfilesRequest as QueryDeliveryProfilesRequest, type context$c_QueryDeliveryProfilesResponse as QueryDeliveryProfilesResponse, type context$c_QueryDeliveryProfilesResponseNonNullableFields as QueryDeliveryProfilesResponseNonNullableFields, type context$c_RemoveDeliveryCarrierOptions as RemoveDeliveryCarrierOptions, type context$c_RemoveDeliveryCarrierRequest as RemoveDeliveryCarrierRequest, type context$c_RemoveDeliveryCarrierResponse as RemoveDeliveryCarrierResponse, type context$c_RemoveDeliveryCarrierResponseNonNullableFields as RemoveDeliveryCarrierResponseNonNullableFields, type context$c_RemoveDeliveryRegionIdentifiers as RemoveDeliveryRegionIdentifiers, type context$c_RemoveDeliveryRegionOptions as RemoveDeliveryRegionOptions, type context$c_RemoveDeliveryRegionRequest as RemoveDeliveryRegionRequest, type context$c_RemoveDeliveryRegionResponse as RemoveDeliveryRegionResponse, type context$c_RemoveDeliveryRegionResponseNonNullableFields as RemoveDeliveryRegionResponseNonNullableFields, type RestoreInfo$a as RestoreInfo, type context$c_Row as Row, type context$c_ServiceProvisioned as ServiceProvisioned, type context$c_ServiceRemoved as ServiceRemoved, type context$c_SiteCreated as SiteCreated, context$c_SiteCreatedContext as SiteCreatedContext, type context$c_SiteDeleted as SiteDeleted, type context$c_SiteHardDeleted as SiteHardDeleted, type context$c_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context$c_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context$c_SitePublished as SitePublished, type context$c_SiteRenamed as SiteRenamed, type context$c_SiteTransferred as SiteTransferred, type context$c_SiteUndeleted as SiteUndeleted, type context$c_SiteUnpublished as SiteUnpublished, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, State$1 as State, type context$c_StudioAssigned as StudioAssigned, type context$c_StudioUnassigned as StudioUnassigned, type context$c_UpdateDeliveryCarrierOptions as UpdateDeliveryCarrierOptions, type context$c_UpdateDeliveryCarrierRequest as UpdateDeliveryCarrierRequest, type context$c_UpdateDeliveryCarrierResponse as UpdateDeliveryCarrierResponse, type context$c_UpdateDeliveryCarrierResponseNonNullableFields as UpdateDeliveryCarrierResponseNonNullableFields, type context$c_UpdateDeliveryProfile as UpdateDeliveryProfile, type context$c_UpdateDeliveryProfileRequest as UpdateDeliveryProfileRequest, type context$c_UpdateDeliveryProfileResponse as UpdateDeliveryProfileResponse, type context$c_UpdateDeliveryProfileResponseNonNullableFields as UpdateDeliveryProfileResponseNonNullableFields, type context$c_UpdateDeliveryRegion as UpdateDeliveryRegion, type context$c_UpdateDeliveryRegionIdentifiers as UpdateDeliveryRegionIdentifiers, type context$c_UpdateDeliveryRegionOptions as UpdateDeliveryRegionOptions, type context$c_UpdateDeliveryRegionRequest as UpdateDeliveryRegionRequest, type context$c_UpdateDeliveryRegionResponse as UpdateDeliveryRegionResponse, type context$c_UpdateDeliveryRegionResponseNonNullableFields as UpdateDeliveryRegionResponseNonNullableFields, type UpdateExtendedFieldsOptions$3 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$4 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$4 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$3 as UpdateExtendedFieldsResponseNonNullableFields, WebhookIdentityType$a as WebhookIdentityType, context$c_addDeliveryCarrier as addDeliveryCarrier, context$c_addDeliveryRegion as addDeliveryRegion, context$c_createDeliveryProfile as createDeliveryProfile, context$c_deleteDeliveryProfile as deleteDeliveryProfile, context$c_getDeliveryProfile as getDeliveryProfile, context$c_listDeliveryCarrierDetails as listDeliveryCarrierDetails, context$c_listDeliveryCarriers as listDeliveryCarriers, context$c_onDeliveryProfileCreated as onDeliveryProfileCreated, context$c_onDeliveryProfileDeleted as onDeliveryProfileDeleted, context$c_onDeliveryProfileDeliveryRegionAdded as onDeliveryProfileDeliveryRegionAdded, context$c_onDeliveryProfileDeliveryRegionRemoved as onDeliveryProfileDeliveryRegionRemoved, context$c_onDeliveryProfileDeliveryRegionUpdated as onDeliveryProfileDeliveryRegionUpdated, context$c_onDeliveryProfileUpdated as onDeliveryProfileUpdated, context$c_queryDeliveryProfiles as queryDeliveryProfiles, context$c_removeDeliveryCarrier as removeDeliveryCarrier, context$c_removeDeliveryRegion as removeDeliveryRegion, context$c_updateDeliveryCarrier as updateDeliveryCarrier, context$c_updateDeliveryProfile as updateDeliveryProfile, context$c_updateDeliveryRegion as updateDeliveryRegion, updateExtendedFields$3 as updateExtendedFields };
|
|
15395
|
+
export { type ActionEvent$a as ActionEvent, type context$c_AddDeliveryCarrierOptions as AddDeliveryCarrierOptions, type context$c_AddDeliveryCarrierRequest as AddDeliveryCarrierRequest, type context$c_AddDeliveryCarrierResponse as AddDeliveryCarrierResponse, type context$c_AddDeliveryCarrierResponseNonNullableFields as AddDeliveryCarrierResponseNonNullableFields, type context$c_AddDeliveryRegionOptions as AddDeliveryRegionOptions, type context$c_AddDeliveryRegionRequest as AddDeliveryRegionRequest, type context$c_AddDeliveryRegionResponse as AddDeliveryRegionResponse, type context$c_AddDeliveryRegionResponseNonNullableFields as AddDeliveryRegionResponseNonNullableFields, type context$c_AdditionalCharge as AdditionalCharge, type ApplicationError$6 as ApplicationError, type context$c_Asset as Asset, type context$c_BackupRate as BackupRate, type BaseEventMetadata$8 as BaseEventMetadata, type BulkActionMetadata$3 as BulkActionMetadata, ChargeType$1 as ChargeType, type context$c_Column as Column, type context$c_CreateDeliveryProfileRequest as CreateDeliveryProfileRequest, type context$c_CreateDeliveryProfileResponse as CreateDeliveryProfileResponse, type context$c_CreateDeliveryProfileResponseNonNullableFields as CreateDeliveryProfileResponseNonNullableFields, type CursorPaging$7 as CursorPaging, type CursorPagingMetadata$7 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$7 as Cursors, type context$c_DashboardTable as DashboardTable, type context$c_DeleteContext as DeleteContext, type context$c_DeleteDeliveryProfileRequest as DeleteDeliveryProfileRequest, type context$c_DeleteDeliveryProfileResponse as DeleteDeliveryProfileResponse, context$c_DeleteStatus as DeleteStatus, type context$c_DeliveryCarrier as DeliveryCarrier, type context$c_DeliveryCarrierDetails as DeliveryCarrierDetails, type context$c_DeliveryCarrierRegionalSettings as DeliveryCarrierRegionalSettings, type context$c_DeliveryProfile as DeliveryProfile, type context$c_DeliveryProfileCreatedEnvelope as DeliveryProfileCreatedEnvelope, type context$c_DeliveryProfileDeletedEnvelope as DeliveryProfileDeletedEnvelope, type context$c_DeliveryProfileDeliveryRegionAddedEnvelope as DeliveryProfileDeliveryRegionAddedEnvelope, type context$c_DeliveryProfileDeliveryRegionRemovedEnvelope as DeliveryProfileDeliveryRegionRemovedEnvelope, type context$c_DeliveryProfileDeliveryRegionUpdatedEnvelope as DeliveryProfileDeliveryRegionUpdatedEnvelope, type context$c_DeliveryProfileNonNullableFields as DeliveryProfileNonNullableFields, type context$c_DeliveryProfileUpdatedEnvelope as DeliveryProfileUpdatedEnvelope, type context$c_DeliveryProfilesQueryBuilder as DeliveryProfilesQueryBuilder, type context$c_DeliveryProfilesQueryResult as DeliveryProfilesQueryResult, type context$c_DeliveryRegion as DeliveryRegion, type context$c_DeliveryRegionAdded as DeliveryRegionAdded, type context$c_DeliveryRegionRemoved as DeliveryRegionRemoved, type context$c_DeliveryRegionUpdated as DeliveryRegionUpdated, type Destination$1 as Destination, type DomainEvent$a as DomainEvent, type DomainEventBodyOneOf$a as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$a as EntityCreatedEvent, type EntityDeletedEvent$a as EntityDeletedEvent, type EntityUpdatedEvent$a as EntityUpdatedEvent, type EventMetadata$8 as EventMetadata, type ExtendedFields$5 as ExtendedFields, type context$c_GetDeliveryProfileRequest as GetDeliveryProfileRequest, type context$c_GetDeliveryProfileResponse as GetDeliveryProfileResponse, type context$c_GetDeliveryProfileResponseNonNullableFields as GetDeliveryProfileResponseNonNullableFields, type IdentificationData$a as IdentificationData, type IdentificationDataIdOneOf$a as IdentificationDataIdOneOf, type ItemMetadata$3 as ItemMetadata, type context$c_ListDeliveryCarrierDetailsRequest as ListDeliveryCarrierDetailsRequest, type context$c_ListDeliveryCarrierDetailsResponse as ListDeliveryCarrierDetailsResponse, type context$c_ListDeliveryCarrierDetailsResponseNonNullableFields as ListDeliveryCarrierDetailsResponseNonNullableFields, type context$c_ListDeliveryCarriersOptions as ListDeliveryCarriersOptions, type context$c_ListDeliveryCarriersRequest as ListDeliveryCarriersRequest, type context$c_ListDeliveryCarriersResponse as ListDeliveryCarriersResponse, type context$c_ListDeliveryCarriersResponseNonNullableFields as ListDeliveryCarriersResponseNonNullableFields, type context$c_ListDeliveryCarriersResult as ListDeliveryCarriersResult, type MessageEnvelope$a as MessageEnvelope, type context$c_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context$c_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, Namespace$1 as Namespace, type context$c_NamespaceChanged as NamespaceChanged, type context$c_QueryDeliveryProfilesRequest as QueryDeliveryProfilesRequest, type context$c_QueryDeliveryProfilesResponse as QueryDeliveryProfilesResponse, type context$c_QueryDeliveryProfilesResponseNonNullableFields as QueryDeliveryProfilesResponseNonNullableFields, type context$c_RemoveDeliveryCarrierOptions as RemoveDeliveryCarrierOptions, type context$c_RemoveDeliveryCarrierRequest as RemoveDeliveryCarrierRequest, type context$c_RemoveDeliveryCarrierResponse as RemoveDeliveryCarrierResponse, type context$c_RemoveDeliveryCarrierResponseNonNullableFields as RemoveDeliveryCarrierResponseNonNullableFields, type context$c_RemoveDeliveryRegionIdentifiers as RemoveDeliveryRegionIdentifiers, type context$c_RemoveDeliveryRegionOptions as RemoveDeliveryRegionOptions, type context$c_RemoveDeliveryRegionRequest as RemoveDeliveryRegionRequest, type context$c_RemoveDeliveryRegionResponse as RemoveDeliveryRegionResponse, type context$c_RemoveDeliveryRegionResponseNonNullableFields as RemoveDeliveryRegionResponseNonNullableFields, type RestoreInfo$a as RestoreInfo, type context$c_Row as Row, type context$c_ServiceProvisioned as ServiceProvisioned, type context$c_ServiceRemoved as ServiceRemoved, type context$c_SiteCreated as SiteCreated, context$c_SiteCreatedContext as SiteCreatedContext, type context$c_SiteDeleted as SiteDeleted, type context$c_SiteHardDeleted as SiteHardDeleted, type context$c_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context$c_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context$c_SitePublished as SitePublished, type context$c_SiteRenamed as SiteRenamed, type context$c_SiteTransferred as SiteTransferred, type context$c_SiteUndeleted as SiteUndeleted, type context$c_SiteUnpublished as SiteUnpublished, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, State$1 as State, type context$c_StudioAssigned as StudioAssigned, type context$c_StudioUnassigned as StudioUnassigned, type context$c_UpdateDeliveryCarrierOptions as UpdateDeliveryCarrierOptions, type context$c_UpdateDeliveryCarrierRequest as UpdateDeliveryCarrierRequest, type context$c_UpdateDeliveryCarrierResponse as UpdateDeliveryCarrierResponse, type context$c_UpdateDeliveryCarrierResponseNonNullableFields as UpdateDeliveryCarrierResponseNonNullableFields, type context$c_UpdateDeliveryProfile as UpdateDeliveryProfile, type context$c_UpdateDeliveryProfileRequest as UpdateDeliveryProfileRequest, type context$c_UpdateDeliveryProfileResponse as UpdateDeliveryProfileResponse, type context$c_UpdateDeliveryProfileResponseNonNullableFields as UpdateDeliveryProfileResponseNonNullableFields, type context$c_UpdateDeliveryRegion as UpdateDeliveryRegion, type context$c_UpdateDeliveryRegionIdentifiers as UpdateDeliveryRegionIdentifiers, type context$c_UpdateDeliveryRegionOptions as UpdateDeliveryRegionOptions, type context$c_UpdateDeliveryRegionRequest as UpdateDeliveryRegionRequest, type context$c_UpdateDeliveryRegionResponse as UpdateDeliveryRegionResponse, type context$c_UpdateDeliveryRegionResponseNonNullableFields as UpdateDeliveryRegionResponseNonNullableFields, type UpdateExtendedFieldsOptions$3 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$4 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$4 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$3 as UpdateExtendedFieldsResponseNonNullableFields, WebhookIdentityType$a as WebhookIdentityType, type context$c__publicAddDeliveryCarrierType as _publicAddDeliveryCarrierType, type context$c__publicAddDeliveryRegionType as _publicAddDeliveryRegionType, type context$c__publicCreateDeliveryProfileType as _publicCreateDeliveryProfileType, type context$c__publicDeleteDeliveryProfileType as _publicDeleteDeliveryProfileType, type context$c__publicGetDeliveryProfileType as _publicGetDeliveryProfileType, type context$c__publicListDeliveryCarrierDetailsType as _publicListDeliveryCarrierDetailsType, type context$c__publicListDeliveryCarriersType as _publicListDeliveryCarriersType, type context$c__publicOnDeliveryProfileCreatedType as _publicOnDeliveryProfileCreatedType, type context$c__publicOnDeliveryProfileDeletedType as _publicOnDeliveryProfileDeletedType, type context$c__publicOnDeliveryProfileDeliveryRegionAddedType as _publicOnDeliveryProfileDeliveryRegionAddedType, type context$c__publicOnDeliveryProfileDeliveryRegionRemovedType as _publicOnDeliveryProfileDeliveryRegionRemovedType, type context$c__publicOnDeliveryProfileDeliveryRegionUpdatedType as _publicOnDeliveryProfileDeliveryRegionUpdatedType, type context$c__publicOnDeliveryProfileUpdatedType as _publicOnDeliveryProfileUpdatedType, type context$c__publicQueryDeliveryProfilesType as _publicQueryDeliveryProfilesType, type context$c__publicRemoveDeliveryCarrierType as _publicRemoveDeliveryCarrierType, type context$c__publicRemoveDeliveryRegionType as _publicRemoveDeliveryRegionType, type context$c__publicUpdateDeliveryCarrierType as _publicUpdateDeliveryCarrierType, type context$c__publicUpdateDeliveryProfileType as _publicUpdateDeliveryProfileType, type context$c__publicUpdateDeliveryRegionType as _publicUpdateDeliveryRegionType, type _publicUpdateExtendedFieldsType$3 as _publicUpdateExtendedFieldsType, context$c_addDeliveryCarrier as addDeliveryCarrier, context$c_addDeliveryRegion as addDeliveryRegion, context$c_createDeliveryProfile as createDeliveryProfile, context$c_deleteDeliveryProfile as deleteDeliveryProfile, context$c_getDeliveryProfile as getDeliveryProfile, context$c_listDeliveryCarrierDetails as listDeliveryCarrierDetails, context$c_listDeliveryCarriers as listDeliveryCarriers, context$c_onDeliveryProfileCreated as onDeliveryProfileCreated, context$c_onDeliveryProfileDeleted as onDeliveryProfileDeleted, context$c_onDeliveryProfileDeliveryRegionAdded as onDeliveryProfileDeliveryRegionAdded, context$c_onDeliveryProfileDeliveryRegionRemoved as onDeliveryProfileDeliveryRegionRemoved, context$c_onDeliveryProfileDeliveryRegionUpdated as onDeliveryProfileDeliveryRegionUpdated, context$c_onDeliveryProfileUpdated as onDeliveryProfileUpdated, onDeliveryProfileCreated$1 as publicOnDeliveryProfileCreated, onDeliveryProfileDeleted$1 as publicOnDeliveryProfileDeleted, onDeliveryProfileDeliveryRegionAdded$1 as publicOnDeliveryProfileDeliveryRegionAdded, onDeliveryProfileDeliveryRegionRemoved$1 as publicOnDeliveryProfileDeliveryRegionRemoved, onDeliveryProfileDeliveryRegionUpdated$1 as publicOnDeliveryProfileDeliveryRegionUpdated, onDeliveryProfileUpdated$1 as publicOnDeliveryProfileUpdated, context$c_queryDeliveryProfiles as queryDeliveryProfiles, context$c_removeDeliveryCarrier as removeDeliveryCarrier, context$c_removeDeliveryRegion as removeDeliveryRegion, context$c_updateDeliveryCarrier as updateDeliveryCarrier, context$c_updateDeliveryProfile as updateDeliveryProfile, context$c_updateDeliveryRegion as updateDeliveryRegion, updateExtendedFields$6 as updateExtendedFields };
|
|
15046
15396
|
}
|
|
15047
15397
|
|
|
15048
15398
|
/** DraftOrder is the main entity of DraftOrders service. It represents a single edit order. */
|
|
@@ -18004,22 +18354,51 @@ interface DraftOrdersQueryBuilder {
|
|
|
18004
18354
|
find: () => Promise<DraftOrdersQueryResult>;
|
|
18005
18355
|
}
|
|
18006
18356
|
|
|
18357
|
+
declare function createDraftOrder$1(httpClient: HttpClient): (orderId: string | null) => Promise<CreateDraftOrderResponse & CreateDraftOrderResponseNonNullableFields>;
|
|
18358
|
+
declare function addLineItemsToDraftOrder$1(httpClient: HttpClient): (draftOrderId: string, options?: AddLineItemsToDraftOrderOptions) => Promise<AddLineItemsToDraftOrderResponse & AddLineItemsToDraftOrderResponseNonNullableFields>;
|
|
18359
|
+
declare function updateLineItems$1(httpClient: HttpClient): (draftOrderId: string, options?: UpdateLineItemsOptions) => Promise<UpdateLineItemsResponse & UpdateLineItemsResponseNonNullableFields>;
|
|
18360
|
+
declare function setDiscounts$1(httpClient: HttpClient): (draftOrderId: string, discounts: IdAndApplied[]) => Promise<SetDiscountsResponse & SetDiscountsResponseNonNullableFields>;
|
|
18361
|
+
declare function createCustomDiscounts$1(httpClient: HttpClient): (draftOrderId: string, options?: CreateCustomDiscountsOptions) => Promise<CreateCustomDiscountsResponse & CreateCustomDiscountsResponseNonNullableFields>;
|
|
18362
|
+
declare function deleteCustomDiscounts$1(httpClient: HttpClient): (draftOrderId: string, discountIds: string[]) => Promise<DeleteCustomDiscountsResponse & DeleteCustomDiscountsResponseNonNullableFields>;
|
|
18363
|
+
declare function setAdditionalFees$1(httpClient: HttpClient): (draftOrderId: string, additionalFees: IdAndApplied[]) => Promise<SetAdditionalFeesResponse & SetAdditionalFeesResponseNonNullableFields>;
|
|
18364
|
+
declare function createCustomAdditionalFees$1(httpClient: HttpClient): (draftOrderId: string, options?: CreateCustomAdditionalFeesOptions) => Promise<CreateCustomAdditionalFeesResponse & CreateCustomAdditionalFeesResponseNonNullableFields>;
|
|
18365
|
+
declare function deleteCustomAdditionalFees$1(httpClient: HttpClient): (draftOrderId: string, customAdditionalFees: string[]) => Promise<DeleteCustomAdditionalFeesResponse & DeleteCustomAdditionalFeesResponseNonNullableFields>;
|
|
18366
|
+
declare function getDraftOrder$1(httpClient: HttpClient): (draftOrderId: string) => Promise<GetDraftOrderResponse & GetDraftOrderResponseNonNullableFields>;
|
|
18367
|
+
declare function getOrderDraftabilityStatus$1(httpClient: HttpClient): (orderId: string) => Promise<GetOrderDraftabilityStatusResponse & GetOrderDraftabilityStatusResponseNonNullableFields>;
|
|
18368
|
+
declare function commitDraftOrder$1(httpClient: HttpClient): (draftOrderId: string, options?: CommitDraftOrderOptions) => Promise<CommitDraftOrderResponse & CommitDraftOrderResponseNonNullableFields>;
|
|
18369
|
+
declare function deleteDraftOrder$1(httpClient: HttpClient): (draftOrderId: string) => Promise<void>;
|
|
18370
|
+
declare function queryDraftOrders$1(httpClient: HttpClient): () => DraftOrdersQueryBuilder;
|
|
18371
|
+
|
|
18007
18372
|
declare function createRESTModule$b<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
18008
18373
|
|
|
18009
|
-
|
|
18010
|
-
declare const
|
|
18011
|
-
|
|
18012
|
-
declare const
|
|
18013
|
-
|
|
18014
|
-
declare const
|
|
18015
|
-
|
|
18016
|
-
declare const
|
|
18017
|
-
|
|
18018
|
-
declare const
|
|
18019
|
-
|
|
18020
|
-
declare const
|
|
18021
|
-
|
|
18022
|
-
declare const
|
|
18374
|
+
type _publicCreateDraftOrderType = typeof createDraftOrder$1;
|
|
18375
|
+
declare const createDraftOrder: ReturnType<typeof createRESTModule$b<_publicCreateDraftOrderType>>;
|
|
18376
|
+
type _publicAddLineItemsToDraftOrderType = typeof addLineItemsToDraftOrder$1;
|
|
18377
|
+
declare const addLineItemsToDraftOrder: ReturnType<typeof createRESTModule$b<_publicAddLineItemsToDraftOrderType>>;
|
|
18378
|
+
type _publicUpdateLineItemsType = typeof updateLineItems$1;
|
|
18379
|
+
declare const updateLineItems: ReturnType<typeof createRESTModule$b<_publicUpdateLineItemsType>>;
|
|
18380
|
+
type _publicSetDiscountsType = typeof setDiscounts$1;
|
|
18381
|
+
declare const setDiscounts: ReturnType<typeof createRESTModule$b<_publicSetDiscountsType>>;
|
|
18382
|
+
type _publicCreateCustomDiscountsType = typeof createCustomDiscounts$1;
|
|
18383
|
+
declare const createCustomDiscounts: ReturnType<typeof createRESTModule$b<_publicCreateCustomDiscountsType>>;
|
|
18384
|
+
type _publicDeleteCustomDiscountsType = typeof deleteCustomDiscounts$1;
|
|
18385
|
+
declare const deleteCustomDiscounts: ReturnType<typeof createRESTModule$b<_publicDeleteCustomDiscountsType>>;
|
|
18386
|
+
type _publicSetAdditionalFeesType = typeof setAdditionalFees$1;
|
|
18387
|
+
declare const setAdditionalFees: ReturnType<typeof createRESTModule$b<_publicSetAdditionalFeesType>>;
|
|
18388
|
+
type _publicCreateCustomAdditionalFeesType = typeof createCustomAdditionalFees$1;
|
|
18389
|
+
declare const createCustomAdditionalFees: ReturnType<typeof createRESTModule$b<_publicCreateCustomAdditionalFeesType>>;
|
|
18390
|
+
type _publicDeleteCustomAdditionalFeesType = typeof deleteCustomAdditionalFees$1;
|
|
18391
|
+
declare const deleteCustomAdditionalFees: ReturnType<typeof createRESTModule$b<_publicDeleteCustomAdditionalFeesType>>;
|
|
18392
|
+
type _publicGetDraftOrderType = typeof getDraftOrder$1;
|
|
18393
|
+
declare const getDraftOrder: ReturnType<typeof createRESTModule$b<_publicGetDraftOrderType>>;
|
|
18394
|
+
type _publicGetOrderDraftabilityStatusType = typeof getOrderDraftabilityStatus$1;
|
|
18395
|
+
declare const getOrderDraftabilityStatus: ReturnType<typeof createRESTModule$b<_publicGetOrderDraftabilityStatusType>>;
|
|
18396
|
+
type _publicCommitDraftOrderType = typeof commitDraftOrder$1;
|
|
18397
|
+
declare const commitDraftOrder: ReturnType<typeof createRESTModule$b<_publicCommitDraftOrderType>>;
|
|
18398
|
+
type _publicDeleteDraftOrderType = typeof deleteDraftOrder$1;
|
|
18399
|
+
declare const deleteDraftOrder: ReturnType<typeof createRESTModule$b<_publicDeleteDraftOrderType>>;
|
|
18400
|
+
type _publicQueryDraftOrdersType = typeof queryDraftOrders$1;
|
|
18401
|
+
declare const queryDraftOrders: ReturnType<typeof createRESTModule$b<_publicQueryDraftOrdersType>>;
|
|
18023
18402
|
|
|
18024
18403
|
type context$b_AddLineItemsToDraftOrderOptions = AddLineItemsToDraftOrderOptions;
|
|
18025
18404
|
type context$b_AddLineItemsToDraftOrderRequest = AddLineItemsToDraftOrderRequest;
|
|
@@ -18126,6 +18505,20 @@ type context$b_V1DeliveryLogisticsAddressOneOf = V1DeliveryLogisticsAddressOneOf
|
|
|
18126
18505
|
type context$b_V1DeliveryTimeSlot = V1DeliveryTimeSlot;
|
|
18127
18506
|
type context$b_V1PickupDetails = V1PickupDetails;
|
|
18128
18507
|
type context$b_V1ShippingPrice = V1ShippingPrice;
|
|
18508
|
+
type context$b__publicAddLineItemsToDraftOrderType = _publicAddLineItemsToDraftOrderType;
|
|
18509
|
+
type context$b__publicCommitDraftOrderType = _publicCommitDraftOrderType;
|
|
18510
|
+
type context$b__publicCreateCustomAdditionalFeesType = _publicCreateCustomAdditionalFeesType;
|
|
18511
|
+
type context$b__publicCreateCustomDiscountsType = _publicCreateCustomDiscountsType;
|
|
18512
|
+
type context$b__publicCreateDraftOrderType = _publicCreateDraftOrderType;
|
|
18513
|
+
type context$b__publicDeleteCustomAdditionalFeesType = _publicDeleteCustomAdditionalFeesType;
|
|
18514
|
+
type context$b__publicDeleteCustomDiscountsType = _publicDeleteCustomDiscountsType;
|
|
18515
|
+
type context$b__publicDeleteDraftOrderType = _publicDeleteDraftOrderType;
|
|
18516
|
+
type context$b__publicGetDraftOrderType = _publicGetDraftOrderType;
|
|
18517
|
+
type context$b__publicGetOrderDraftabilityStatusType = _publicGetOrderDraftabilityStatusType;
|
|
18518
|
+
type context$b__publicQueryDraftOrdersType = _publicQueryDraftOrdersType;
|
|
18519
|
+
type context$b__publicSetAdditionalFeesType = _publicSetAdditionalFeesType;
|
|
18520
|
+
type context$b__publicSetDiscountsType = _publicSetDiscountsType;
|
|
18521
|
+
type context$b__publicUpdateLineItemsType = _publicUpdateLineItemsType;
|
|
18129
18522
|
declare const context$b_addLineItemsToDraftOrder: typeof addLineItemsToDraftOrder;
|
|
18130
18523
|
declare const context$b_commitDraftOrder: typeof commitDraftOrder;
|
|
18131
18524
|
declare const context$b_createCustomAdditionalFees: typeof createCustomAdditionalFees;
|
|
@@ -18141,7 +18534,7 @@ declare const context$b_setAdditionalFees: typeof setAdditionalFees;
|
|
|
18141
18534
|
declare const context$b_setDiscounts: typeof setDiscounts;
|
|
18142
18535
|
declare const context$b_updateLineItems: typeof updateLineItems;
|
|
18143
18536
|
declare namespace context$b {
|
|
18144
|
-
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$b_AdditionalFeeDetails as AdditionalFeeDetails, type context$b_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$b_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$b_BillingChangedDetails as BillingChangedDetails, type context$b_BillingDetails as BillingDetails, type context$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$b_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$b_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$b_CustomLineItem as CustomLineItem, type context$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$b_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$b_DiscountDetails as DiscountDetails, type context$b_DiscountOption as DiscountOption, type context$b_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$b_DraftOrdersQueryResult as DraftOrdersQueryResult, context$b_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, context$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$b_GetDraftOrderRequest as GetDraftOrderRequest, type context$b_GetDraftOrderResponse as GetDraftOrderResponse, type context$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$b_ItemDetails as ItemDetails, type context$b_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$b_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$b_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$b_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$b_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$b_RecipientInfoDetails as RecipientInfoDetails, type context$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$b_SecuredMedia as SecuredMedia, type context$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$b_SetBillingInfoRequest as SetBillingInfoRequest, type context$b_SetBillingInfoResponse as SetBillingInfoResponse, type context$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$b_SetDiscountsRequest as SetDiscountsRequest, type context$b_SetDiscountsResponse as SetDiscountsResponse, type context$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$b_SetShippingInfoRequest as SetShippingInfoRequest, type context$b_SetShippingInfoResponse as SetShippingInfoResponse, type context$b_ShippingChangedDetails as ShippingChangedDetails, type context$b_ShippingDetails as ShippingDetails, type context$b_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$b_V1BalanceSummary as V1BalanceSummary, type context$b_V1CreatedBy as V1CreatedBy, type context$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$b_V1DeliveryLogistics as V1DeliveryLogistics, type context$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$b_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$b_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, context$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$b_commitDraftOrder as commitDraftOrder, context$b_createCustomAdditionalFees as createCustomAdditionalFees, context$b_createCustomDiscounts as createCustomDiscounts, context$b_createDraftOrder as createDraftOrder, context$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$b_deleteCustomDiscounts as deleteCustomDiscounts, context$b_deleteDraftOrder as deleteDraftOrder, context$b_getDraftOrder as getDraftOrder, context$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$b_queryDraftOrders as queryDraftOrders, context$b_setAdditionalFees as setAdditionalFees, context$b_setDiscounts as setDiscounts, context$b_updateLineItems as updateLineItems };
|
|
18537
|
+
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$b_AdditionalFeeDetails as AdditionalFeeDetails, type context$b_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$b_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$b_BillingChangedDetails as BillingChangedDetails, type context$b_BillingDetails as BillingDetails, type context$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$b_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$b_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$b_CustomLineItem as CustomLineItem, type context$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$b_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$b_DiscountDetails as DiscountDetails, type context$b_DiscountOption as DiscountOption, type context$b_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$b_DraftOrdersQueryResult as DraftOrdersQueryResult, context$b_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, context$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$b_GetDraftOrderRequest as GetDraftOrderRequest, type context$b_GetDraftOrderResponse as GetDraftOrderResponse, type context$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$b_ItemDetails as ItemDetails, type context$b_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$b_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$b_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$b_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$b_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$b_RecipientInfoDetails as RecipientInfoDetails, type context$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$b_SecuredMedia as SecuredMedia, type context$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$b_SetBillingInfoRequest as SetBillingInfoRequest, type context$b_SetBillingInfoResponse as SetBillingInfoResponse, type context$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$b_SetDiscountsRequest as SetDiscountsRequest, type context$b_SetDiscountsResponse as SetDiscountsResponse, type context$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$b_SetShippingInfoRequest as SetShippingInfoRequest, type context$b_SetShippingInfoResponse as SetShippingInfoResponse, type context$b_ShippingChangedDetails as ShippingChangedDetails, type context$b_ShippingDetails as ShippingDetails, type context$b_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$b_V1BalanceSummary as V1BalanceSummary, type context$b_V1CreatedBy as V1CreatedBy, type context$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$b_V1DeliveryLogistics as V1DeliveryLogistics, type context$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$b_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$b_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, type context$b__publicAddLineItemsToDraftOrderType as _publicAddLineItemsToDraftOrderType, type context$b__publicCommitDraftOrderType as _publicCommitDraftOrderType, type context$b__publicCreateCustomAdditionalFeesType as _publicCreateCustomAdditionalFeesType, type context$b__publicCreateCustomDiscountsType as _publicCreateCustomDiscountsType, type context$b__publicCreateDraftOrderType as _publicCreateDraftOrderType, type context$b__publicDeleteCustomAdditionalFeesType as _publicDeleteCustomAdditionalFeesType, type context$b__publicDeleteCustomDiscountsType as _publicDeleteCustomDiscountsType, type context$b__publicDeleteDraftOrderType as _publicDeleteDraftOrderType, type context$b__publicGetDraftOrderType as _publicGetDraftOrderType, type context$b__publicGetOrderDraftabilityStatusType as _publicGetOrderDraftabilityStatusType, type context$b__publicQueryDraftOrdersType as _publicQueryDraftOrdersType, type context$b__publicSetAdditionalFeesType as _publicSetAdditionalFeesType, type context$b__publicSetDiscountsType as _publicSetDiscountsType, type context$b__publicUpdateLineItemsType as _publicUpdateLineItemsType, context$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$b_commitDraftOrder as commitDraftOrder, context$b_createCustomAdditionalFees as createCustomAdditionalFees, context$b_createCustomDiscounts as createCustomDiscounts, context$b_createDraftOrder as createDraftOrder, context$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$b_deleteCustomDiscounts as deleteCustomDiscounts, context$b_deleteDraftOrder as deleteDraftOrder, context$b_getDraftOrder as getDraftOrder, context$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$b_queryDraftOrders as queryDraftOrders, context$b_setAdditionalFees as setAdditionalFees, context$b_setDiscounts as setDiscounts, context$b_updateLineItems as updateLineItems };
|
|
18145
18538
|
}
|
|
18146
18539
|
|
|
18147
18540
|
interface OrderWithFulfillments {
|
|
@@ -18673,17 +19066,33 @@ interface DeleteFulfillmentIdentifiers {
|
|
|
18673
19066
|
orderId: string;
|
|
18674
19067
|
}
|
|
18675
19068
|
|
|
19069
|
+
declare function listFulfillmentsForSingleOrder$1(httpClient: HttpClient): (orderId: string) => Promise<ListFulfillmentsForSingleOrderResponse & ListFulfillmentsForSingleOrderResponseNonNullableFields>;
|
|
19070
|
+
declare function listFulfillmentsForMultipleOrders$1(httpClient: HttpClient): (orderIds: string[]) => Promise<ListFulfillmentsForMultipleOrdersResponse & ListFulfillmentsForMultipleOrdersResponseNonNullableFields>;
|
|
19071
|
+
declare function createFulfillment$1(httpClient: HttpClient): (orderId: string, fulfillment: Fulfillment$1) => Promise<CreateFulfillmentResponse & CreateFulfillmentResponseNonNullableFields>;
|
|
19072
|
+
declare function updateFulfillment$1(httpClient: HttpClient): (identifiers: UpdateFulfillmentIdentifiers, options?: UpdateFulfillmentOptions) => Promise<OrderWithFulfillments & OrderWithFulfillmentsNonNullableFields>;
|
|
19073
|
+
declare function deleteFulfillment$1(httpClient: HttpClient): (identifiers: DeleteFulfillmentIdentifiers) => Promise<DeleteFulfillmentResponse & DeleteFulfillmentResponseNonNullableFields>;
|
|
19074
|
+
declare function bulkCreateFulfillments$1(httpClient: HttpClient): (ordersWithFulfillments: BulkCreateOrderWithFulfillments[]) => Promise<BulkCreateFulfillmentResponse & BulkCreateFulfillmentResponseNonNullableFields>;
|
|
19075
|
+
declare const onFulfillmentsUpdated$1: EventDefinition<FulfillmentsUpdatedEnvelope, "wix.ecom.v1.fulfillments_updated">;
|
|
19076
|
+
|
|
18676
19077
|
declare function createRESTModule$a<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
18677
19078
|
|
|
18678
19079
|
declare function createEventModule$7<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
18679
19080
|
|
|
18680
|
-
|
|
18681
|
-
declare const
|
|
18682
|
-
|
|
18683
|
-
declare const
|
|
18684
|
-
|
|
18685
|
-
declare const
|
|
18686
|
-
|
|
19081
|
+
type _publicListFulfillmentsForSingleOrderType = typeof listFulfillmentsForSingleOrder$1;
|
|
19082
|
+
declare const listFulfillmentsForSingleOrder: ReturnType<typeof createRESTModule$a<_publicListFulfillmentsForSingleOrderType>>;
|
|
19083
|
+
type _publicListFulfillmentsForMultipleOrdersType = typeof listFulfillmentsForMultipleOrders$1;
|
|
19084
|
+
declare const listFulfillmentsForMultipleOrders: ReturnType<typeof createRESTModule$a<_publicListFulfillmentsForMultipleOrdersType>>;
|
|
19085
|
+
type _publicCreateFulfillmentType = typeof createFulfillment$1;
|
|
19086
|
+
declare const createFulfillment: ReturnType<typeof createRESTModule$a<_publicCreateFulfillmentType>>;
|
|
19087
|
+
type _publicUpdateFulfillmentType = typeof updateFulfillment$1;
|
|
19088
|
+
declare const updateFulfillment: ReturnType<typeof createRESTModule$a<_publicUpdateFulfillmentType>>;
|
|
19089
|
+
type _publicDeleteFulfillmentType = typeof deleteFulfillment$1;
|
|
19090
|
+
declare const deleteFulfillment: ReturnType<typeof createRESTModule$a<_publicDeleteFulfillmentType>>;
|
|
19091
|
+
type _publicBulkCreateFulfillmentsType = typeof bulkCreateFulfillments$1;
|
|
19092
|
+
declare const bulkCreateFulfillments: ReturnType<typeof createRESTModule$a<_publicBulkCreateFulfillmentsType>>;
|
|
19093
|
+
|
|
19094
|
+
type _publicOnFulfillmentsUpdatedType = typeof onFulfillmentsUpdated$1;
|
|
19095
|
+
declare const onFulfillmentsUpdated: ReturnType<typeof createEventModule$7<_publicOnFulfillmentsUpdatedType>>;
|
|
18687
19096
|
|
|
18688
19097
|
type context$a_BulkCreateFulfillmentRequest = BulkCreateFulfillmentRequest;
|
|
18689
19098
|
type context$a_BulkCreateFulfillmentResponse = BulkCreateFulfillmentResponse;
|
|
@@ -18717,6 +19126,13 @@ type context$a_UpdateFulfillmentRequest = UpdateFulfillmentRequest;
|
|
|
18717
19126
|
type context$a_UpdateFulfillmentResponse = UpdateFulfillmentResponse;
|
|
18718
19127
|
type context$a_UpdateFulfillmentResponseNonNullableFields = UpdateFulfillmentResponseNonNullableFields;
|
|
18719
19128
|
type context$a_V2FulfillmentTrackingInfo = V2FulfillmentTrackingInfo;
|
|
19129
|
+
type context$a__publicBulkCreateFulfillmentsType = _publicBulkCreateFulfillmentsType;
|
|
19130
|
+
type context$a__publicCreateFulfillmentType = _publicCreateFulfillmentType;
|
|
19131
|
+
type context$a__publicDeleteFulfillmentType = _publicDeleteFulfillmentType;
|
|
19132
|
+
type context$a__publicListFulfillmentsForMultipleOrdersType = _publicListFulfillmentsForMultipleOrdersType;
|
|
19133
|
+
type context$a__publicListFulfillmentsForSingleOrderType = _publicListFulfillmentsForSingleOrderType;
|
|
19134
|
+
type context$a__publicOnFulfillmentsUpdatedType = _publicOnFulfillmentsUpdatedType;
|
|
19135
|
+
type context$a__publicUpdateFulfillmentType = _publicUpdateFulfillmentType;
|
|
18720
19136
|
declare const context$a_bulkCreateFulfillments: typeof bulkCreateFulfillments;
|
|
18721
19137
|
declare const context$a_createFulfillment: typeof createFulfillment;
|
|
18722
19138
|
declare const context$a_deleteFulfillment: typeof deleteFulfillment;
|
|
@@ -18725,7 +19141,7 @@ declare const context$a_listFulfillmentsForSingleOrder: typeof listFulfillmentsF
|
|
|
18725
19141
|
declare const context$a_onFulfillmentsUpdated: typeof onFulfillmentsUpdated;
|
|
18726
19142
|
declare const context$a_updateFulfillment: typeof updateFulfillment;
|
|
18727
19143
|
declare namespace context$a {
|
|
18728
|
-
export { type ActionEvent$8 as ActionEvent, type ApplicationError$4 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type context$a_BulkCreateFulfillmentRequest as BulkCreateFulfillmentRequest, type context$a_BulkCreateFulfillmentResponse as BulkCreateFulfillmentResponse, type context$a_BulkCreateFulfillmentResponseNonNullableFields as BulkCreateFulfillmentResponseNonNullableFields, type context$a_BulkCreateOrderWithFulfillments as BulkCreateOrderWithFulfillments, type context$a_BulkOrderFulfillmentsResult as BulkOrderFulfillmentsResult, type BuyerInfo$2 as BuyerInfo, type context$a_CreateFulfillmentRequest as CreateFulfillmentRequest, type context$a_CreateFulfillmentResponse as CreateFulfillmentResponse, type context$a_CreateFulfillmentResponseNonNullableFields as CreateFulfillmentResponseNonNullableFields, type context$a_CustomFulfillmentInfo as CustomFulfillmentInfo, type context$a_DeleteFulfillmentIdentifiers as DeleteFulfillmentIdentifiers, type context$a_DeleteFulfillmentRequest as DeleteFulfillmentRequest, type context$a_DeleteFulfillmentResponse as DeleteFulfillmentResponse, type context$a_DeleteFulfillmentResponseNonNullableFields as DeleteFulfillmentResponseNonNullableFields, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type EventMetadata$7 as EventMetadata, type Fulfillment$1 as Fulfillment, type context$a_FulfillmentCreated as FulfillmentCreated, type context$a_FulfillmentDeleted as FulfillmentDeleted, type context$a_FulfillmentFulfillmentInfoOneOf as FulfillmentFulfillmentInfoOneOf, type FulfillmentLineItem$1 as FulfillmentLineItem, FulfillmentStatus$2 as FulfillmentStatus, type FulfillmentTrackingInfo$1 as FulfillmentTrackingInfo, type context$a_FulfillmentUpdated as FulfillmentUpdated, type context$a_FulfillmentsUpdatedEnvelope as FulfillmentsUpdatedEnvelope, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type ItemMetadata$2 as ItemMetadata, type context$a_ListFulfillmentsForMultipleOrdersRequest as ListFulfillmentsForMultipleOrdersRequest, type context$a_ListFulfillmentsForMultipleOrdersResponse as ListFulfillmentsForMultipleOrdersResponse, type context$a_ListFulfillmentsForMultipleOrdersResponseNonNullableFields as ListFulfillmentsForMultipleOrdersResponseNonNullableFields, type context$a_ListFulfillmentsForSingleOrderRequest as ListFulfillmentsForSingleOrderRequest, type context$a_ListFulfillmentsForSingleOrderResponse as ListFulfillmentsForSingleOrderResponse, type context$a_ListFulfillmentsForSingleOrderResponseNonNullableFields as ListFulfillmentsForSingleOrderResponseNonNullableFields, type MessageEnvelope$8 as MessageEnvelope, type context$a_OrderWithFulfillments as OrderWithFulfillments, type context$a_OrderWithFulfillmentsNonNullableFields as OrderWithFulfillmentsNonNullableFields, type RestoreInfo$8 as RestoreInfo, type context$a_UpdateFulfillmentIdentifiers as UpdateFulfillmentIdentifiers, type context$a_UpdateFulfillmentOptions as UpdateFulfillmentOptions, type context$a_UpdateFulfillmentRequest as UpdateFulfillmentRequest, type context$a_UpdateFulfillmentResponse as UpdateFulfillmentResponse, type context$a_UpdateFulfillmentResponseNonNullableFields as UpdateFulfillmentResponseNonNullableFields, type context$a_V2FulfillmentTrackingInfo as V2FulfillmentTrackingInfo, WebhookIdentityType$8 as WebhookIdentityType, context$a_bulkCreateFulfillments as bulkCreateFulfillments, context$a_createFulfillment as createFulfillment, context$a_deleteFulfillment as deleteFulfillment, context$a_listFulfillmentsForMultipleOrders as listFulfillmentsForMultipleOrders, context$a_listFulfillmentsForSingleOrder as listFulfillmentsForSingleOrder, context$a_onFulfillmentsUpdated as onFulfillmentsUpdated, context$a_updateFulfillment as updateFulfillment };
|
|
19144
|
+
export { type ActionEvent$8 as ActionEvent, type ApplicationError$4 as ApplicationError, type BaseEventMetadata$7 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type context$a_BulkCreateFulfillmentRequest as BulkCreateFulfillmentRequest, type context$a_BulkCreateFulfillmentResponse as BulkCreateFulfillmentResponse, type context$a_BulkCreateFulfillmentResponseNonNullableFields as BulkCreateFulfillmentResponseNonNullableFields, type context$a_BulkCreateOrderWithFulfillments as BulkCreateOrderWithFulfillments, type context$a_BulkOrderFulfillmentsResult as BulkOrderFulfillmentsResult, type BuyerInfo$2 as BuyerInfo, type context$a_CreateFulfillmentRequest as CreateFulfillmentRequest, type context$a_CreateFulfillmentResponse as CreateFulfillmentResponse, type context$a_CreateFulfillmentResponseNonNullableFields as CreateFulfillmentResponseNonNullableFields, type context$a_CustomFulfillmentInfo as CustomFulfillmentInfo, type context$a_DeleteFulfillmentIdentifiers as DeleteFulfillmentIdentifiers, type context$a_DeleteFulfillmentRequest as DeleteFulfillmentRequest, type context$a_DeleteFulfillmentResponse as DeleteFulfillmentResponse, type context$a_DeleteFulfillmentResponseNonNullableFields as DeleteFulfillmentResponseNonNullableFields, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type EventMetadata$7 as EventMetadata, type Fulfillment$1 as Fulfillment, type context$a_FulfillmentCreated as FulfillmentCreated, type context$a_FulfillmentDeleted as FulfillmentDeleted, type context$a_FulfillmentFulfillmentInfoOneOf as FulfillmentFulfillmentInfoOneOf, type FulfillmentLineItem$1 as FulfillmentLineItem, FulfillmentStatus$2 as FulfillmentStatus, type FulfillmentTrackingInfo$1 as FulfillmentTrackingInfo, type context$a_FulfillmentUpdated as FulfillmentUpdated, type context$a_FulfillmentsUpdatedEnvelope as FulfillmentsUpdatedEnvelope, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type ItemMetadata$2 as ItemMetadata, type context$a_ListFulfillmentsForMultipleOrdersRequest as ListFulfillmentsForMultipleOrdersRequest, type context$a_ListFulfillmentsForMultipleOrdersResponse as ListFulfillmentsForMultipleOrdersResponse, type context$a_ListFulfillmentsForMultipleOrdersResponseNonNullableFields as ListFulfillmentsForMultipleOrdersResponseNonNullableFields, type context$a_ListFulfillmentsForSingleOrderRequest as ListFulfillmentsForSingleOrderRequest, type context$a_ListFulfillmentsForSingleOrderResponse as ListFulfillmentsForSingleOrderResponse, type context$a_ListFulfillmentsForSingleOrderResponseNonNullableFields as ListFulfillmentsForSingleOrderResponseNonNullableFields, type MessageEnvelope$8 as MessageEnvelope, type context$a_OrderWithFulfillments as OrderWithFulfillments, type context$a_OrderWithFulfillmentsNonNullableFields as OrderWithFulfillmentsNonNullableFields, type RestoreInfo$8 as RestoreInfo, type context$a_UpdateFulfillmentIdentifiers as UpdateFulfillmentIdentifiers, type context$a_UpdateFulfillmentOptions as UpdateFulfillmentOptions, type context$a_UpdateFulfillmentRequest as UpdateFulfillmentRequest, type context$a_UpdateFulfillmentResponse as UpdateFulfillmentResponse, type context$a_UpdateFulfillmentResponseNonNullableFields as UpdateFulfillmentResponseNonNullableFields, type context$a_V2FulfillmentTrackingInfo as V2FulfillmentTrackingInfo, WebhookIdentityType$8 as WebhookIdentityType, type context$a__publicBulkCreateFulfillmentsType as _publicBulkCreateFulfillmentsType, type context$a__publicCreateFulfillmentType as _publicCreateFulfillmentType, type context$a__publicDeleteFulfillmentType as _publicDeleteFulfillmentType, type context$a__publicListFulfillmentsForMultipleOrdersType as _publicListFulfillmentsForMultipleOrdersType, type context$a__publicListFulfillmentsForSingleOrderType as _publicListFulfillmentsForSingleOrderType, type context$a__publicOnFulfillmentsUpdatedType as _publicOnFulfillmentsUpdatedType, type context$a__publicUpdateFulfillmentType as _publicUpdateFulfillmentType, context$a_bulkCreateFulfillments as bulkCreateFulfillments, context$a_createFulfillment as createFulfillment, context$a_deleteFulfillment as deleteFulfillment, context$a_listFulfillmentsForMultipleOrders as listFulfillmentsForMultipleOrders, context$a_listFulfillmentsForSingleOrder as listFulfillmentsForSingleOrder, context$a_onFulfillmentsUpdated as onFulfillmentsUpdated, onFulfillmentsUpdated$1 as publicOnFulfillmentsUpdated, context$a_updateFulfillment as updateFulfillment };
|
|
18729
19145
|
}
|
|
18730
19146
|
|
|
18731
19147
|
interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
|
|
@@ -19234,21 +19650,47 @@ interface UpdateLocalDeliveryOption {
|
|
|
19234
19650
|
_createdDate?: Date;
|
|
19235
19651
|
}
|
|
19236
19652
|
|
|
19653
|
+
declare function createLocalDeliveryOption$1(httpClient: HttpClient): (localDeliveryOption: LocalDeliveryOption) => Promise<LocalDeliveryOption & LocalDeliveryOptionNonNullableFields>;
|
|
19654
|
+
declare function getLocalDeliveryOption$1(httpClient: HttpClient): (_id: string) => Promise<LocalDeliveryOption & LocalDeliveryOptionNonNullableFields>;
|
|
19655
|
+
declare function listLocalDeliveryOptions$1(httpClient: HttpClient): (externalId: string) => Promise<ListLocalDeliveryOptionsResponse & ListLocalDeliveryOptionsResponseNonNullableFields>;
|
|
19656
|
+
declare function updateLocalDeliveryOption$1(httpClient: HttpClient): (_id: string | null, localDeliveryOption: UpdateLocalDeliveryOption) => Promise<LocalDeliveryOption & LocalDeliveryOptionNonNullableFields>;
|
|
19657
|
+
declare function deleteLocalDeliveryOption$1(httpClient: HttpClient): (_id: string) => Promise<void>;
|
|
19658
|
+
declare function bulkCreateLocalDeliveryOption$1(httpClient: HttpClient): (localDeliveryOptions: LocalDeliveryOption[]) => Promise<BulkCreateLocalDeliveryOptionResponse & BulkCreateLocalDeliveryOptionResponseNonNullableFields>;
|
|
19659
|
+
declare function bulkUpdateLocalDeliveryOption$1(httpClient: HttpClient): (localDeliveryOptions: LocalDeliveryOption[]) => Promise<BulkUpdateLocalDeliveryOptionResponse & BulkUpdateLocalDeliveryOptionResponseNonNullableFields>;
|
|
19660
|
+
declare function bulkDeleteLocalDeliveryOption$1(httpClient: HttpClient): (ids: string[]) => Promise<void>;
|
|
19661
|
+
declare const onLocalDeliveryOptionCreated$1: EventDefinition<LocalDeliveryOptionCreatedEnvelope, "wix.ecom.v1.local_delivery_option_created">;
|
|
19662
|
+
declare const onLocalDeliveryOptionUpdated$1: EventDefinition<LocalDeliveryOptionUpdatedEnvelope, "wix.ecom.v1.local_delivery_option_updated">;
|
|
19663
|
+
declare const onLocalDeliveryOptionDeleted$1: EventDefinition<LocalDeliveryOptionDeletedEnvelope, "wix.ecom.v1.local_delivery_option_deleted">;
|
|
19664
|
+
|
|
19237
19665
|
declare function createRESTModule$9<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
19238
19666
|
|
|
19239
19667
|
declare function createEventModule$6<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
19240
19668
|
|
|
19241
|
-
|
|
19242
|
-
declare const
|
|
19243
|
-
|
|
19244
|
-
declare const
|
|
19245
|
-
|
|
19246
|
-
declare const
|
|
19247
|
-
|
|
19248
|
-
declare const
|
|
19249
|
-
|
|
19250
|
-
declare const
|
|
19251
|
-
|
|
19669
|
+
type _publicCreateLocalDeliveryOptionType = typeof createLocalDeliveryOption$1;
|
|
19670
|
+
declare const createLocalDeliveryOption: ReturnType<typeof createRESTModule$9<_publicCreateLocalDeliveryOptionType>>;
|
|
19671
|
+
type _publicGetLocalDeliveryOptionType = typeof getLocalDeliveryOption$1;
|
|
19672
|
+
declare const getLocalDeliveryOption: ReturnType<typeof createRESTModule$9<_publicGetLocalDeliveryOptionType>>;
|
|
19673
|
+
type _publicListLocalDeliveryOptionsType = typeof listLocalDeliveryOptions$1;
|
|
19674
|
+
declare const listLocalDeliveryOptions: ReturnType<typeof createRESTModule$9<_publicListLocalDeliveryOptionsType>>;
|
|
19675
|
+
type _publicUpdateLocalDeliveryOptionType = typeof updateLocalDeliveryOption$1;
|
|
19676
|
+
declare const updateLocalDeliveryOption: ReturnType<typeof createRESTModule$9<_publicUpdateLocalDeliveryOptionType>>;
|
|
19677
|
+
type _publicDeleteLocalDeliveryOptionType = typeof deleteLocalDeliveryOption$1;
|
|
19678
|
+
declare const deleteLocalDeliveryOption: ReturnType<typeof createRESTModule$9<_publicDeleteLocalDeliveryOptionType>>;
|
|
19679
|
+
type _publicBulkCreateLocalDeliveryOptionType = typeof bulkCreateLocalDeliveryOption$1;
|
|
19680
|
+
declare const bulkCreateLocalDeliveryOption: ReturnType<typeof createRESTModule$9<_publicBulkCreateLocalDeliveryOptionType>>;
|
|
19681
|
+
type _publicBulkUpdateLocalDeliveryOptionType = typeof bulkUpdateLocalDeliveryOption$1;
|
|
19682
|
+
declare const bulkUpdateLocalDeliveryOption: ReturnType<typeof createRESTModule$9<_publicBulkUpdateLocalDeliveryOptionType>>;
|
|
19683
|
+
type _publicBulkDeleteLocalDeliveryOptionType = typeof bulkDeleteLocalDeliveryOption$1;
|
|
19684
|
+
declare const bulkDeleteLocalDeliveryOption: ReturnType<typeof createRESTModule$9<_publicBulkDeleteLocalDeliveryOptionType>>;
|
|
19685
|
+
|
|
19686
|
+
type _publicOnLocalDeliveryOptionCreatedType = typeof onLocalDeliveryOptionCreated$1;
|
|
19687
|
+
declare const onLocalDeliveryOptionCreated: ReturnType<typeof createEventModule$6<_publicOnLocalDeliveryOptionCreatedType>>;
|
|
19688
|
+
|
|
19689
|
+
type _publicOnLocalDeliveryOptionUpdatedType = typeof onLocalDeliveryOptionUpdated$1;
|
|
19690
|
+
declare const onLocalDeliveryOptionUpdated: ReturnType<typeof createEventModule$6<_publicOnLocalDeliveryOptionUpdatedType>>;
|
|
19691
|
+
|
|
19692
|
+
type _publicOnLocalDeliveryOptionDeletedType = typeof onLocalDeliveryOptionDeleted$1;
|
|
19693
|
+
declare const onLocalDeliveryOptionDeleted: ReturnType<typeof createEventModule$6<_publicOnLocalDeliveryOptionDeletedType>>;
|
|
19252
19694
|
|
|
19253
19695
|
type context$9_BulkCreateLocalDeliveryOptionRequest = BulkCreateLocalDeliveryOptionRequest;
|
|
19254
19696
|
type context$9_BulkCreateLocalDeliveryOptionResponse = BulkCreateLocalDeliveryOptionResponse;
|
|
@@ -19296,6 +19738,17 @@ type context$9_UpdateLocalDeliveryOptionRequest = UpdateLocalDeliveryOptionReque
|
|
|
19296
19738
|
type context$9_UpdateLocalDeliveryOptionResponse = UpdateLocalDeliveryOptionResponse;
|
|
19297
19739
|
type context$9_UpdateLocalDeliveryOptionResponseNonNullableFields = UpdateLocalDeliveryOptionResponseNonNullableFields;
|
|
19298
19740
|
type context$9_ZipCodeConfig = ZipCodeConfig;
|
|
19741
|
+
type context$9__publicBulkCreateLocalDeliveryOptionType = _publicBulkCreateLocalDeliveryOptionType;
|
|
19742
|
+
type context$9__publicBulkDeleteLocalDeliveryOptionType = _publicBulkDeleteLocalDeliveryOptionType;
|
|
19743
|
+
type context$9__publicBulkUpdateLocalDeliveryOptionType = _publicBulkUpdateLocalDeliveryOptionType;
|
|
19744
|
+
type context$9__publicCreateLocalDeliveryOptionType = _publicCreateLocalDeliveryOptionType;
|
|
19745
|
+
type context$9__publicDeleteLocalDeliveryOptionType = _publicDeleteLocalDeliveryOptionType;
|
|
19746
|
+
type context$9__publicGetLocalDeliveryOptionType = _publicGetLocalDeliveryOptionType;
|
|
19747
|
+
type context$9__publicListLocalDeliveryOptionsType = _publicListLocalDeliveryOptionsType;
|
|
19748
|
+
type context$9__publicOnLocalDeliveryOptionCreatedType = _publicOnLocalDeliveryOptionCreatedType;
|
|
19749
|
+
type context$9__publicOnLocalDeliveryOptionDeletedType = _publicOnLocalDeliveryOptionDeletedType;
|
|
19750
|
+
type context$9__publicOnLocalDeliveryOptionUpdatedType = _publicOnLocalDeliveryOptionUpdatedType;
|
|
19751
|
+
type context$9__publicUpdateLocalDeliveryOptionType = _publicUpdateLocalDeliveryOptionType;
|
|
19299
19752
|
declare const context$9_bulkCreateLocalDeliveryOption: typeof bulkCreateLocalDeliveryOption;
|
|
19300
19753
|
declare const context$9_bulkDeleteLocalDeliveryOption: typeof bulkDeleteLocalDeliveryOption;
|
|
19301
19754
|
declare const context$9_bulkUpdateLocalDeliveryOption: typeof bulkUpdateLocalDeliveryOption;
|
|
@@ -19308,7 +19761,7 @@ declare const context$9_onLocalDeliveryOptionDeleted: typeof onLocalDeliveryOpti
|
|
|
19308
19761
|
declare const context$9_onLocalDeliveryOptionUpdated: typeof onLocalDeliveryOptionUpdated;
|
|
19309
19762
|
declare const context$9_updateLocalDeliveryOption: typeof updateLocalDeliveryOption;
|
|
19310
19763
|
declare namespace context$9 {
|
|
19311
|
-
export { type ActionEvent$7 as ActionEvent, type AddressLocation$3 as AddressLocation, type BaseEventMetadata$6 as BaseEventMetadata, type context$9_BulkCreateLocalDeliveryOptionRequest as BulkCreateLocalDeliveryOptionRequest, type context$9_BulkCreateLocalDeliveryOptionResponse as BulkCreateLocalDeliveryOptionResponse, type context$9_BulkCreateLocalDeliveryOptionResponseNonNullableFields as BulkCreateLocalDeliveryOptionResponseNonNullableFields, type context$9_BulkDeleteLocalDeliveryOptionRequest as BulkDeleteLocalDeliveryOptionRequest, type context$9_BulkDeleteLocalDeliveryOptionResponse as BulkDeleteLocalDeliveryOptionResponse, type context$9_BulkUpdateLocalDeliveryOptionRequest as BulkUpdateLocalDeliveryOptionRequest, type context$9_BulkUpdateLocalDeliveryOptionResponse as BulkUpdateLocalDeliveryOptionResponse, type context$9_BulkUpdateLocalDeliveryOptionResponseNonNullableFields as BulkUpdateLocalDeliveryOptionResponseNonNullableFields, type Condition$2 as Condition, ConditionType$2 as ConditionType, type ConditionalRates$2 as ConditionalRates, type context$9_CreateLocalDeliveryOptionRequest as CreateLocalDeliveryOptionRequest, type context$9_CreateLocalDeliveryOptionResponse as CreateLocalDeliveryOptionResponse, type context$9_CreateLocalDeliveryOptionResponseNonNullableFields as CreateLocalDeliveryOptionResponseNonNullableFields, type context$9_CustomAreaConfig as CustomAreaConfig, context$9_DayOfWeek as DayOfWeek, type context$9_DaySlot as DaySlot, type context$9_Days as Days, type context$9_DeleteLocalDeliveryOptionRequest as DeleteLocalDeliveryOptionRequest, type context$9_DeleteLocalDeliveryOptionResponse as DeleteLocalDeliveryOptionResponse, type context$9_Destination as Destination, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type Empty$5 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type EventMetadata$6 as EventMetadata, type context$9_GetLocalDeliveryOptionRequest as GetLocalDeliveryOptionRequest, type context$9_GetLocalDeliveryOptionResponse as GetLocalDeliveryOptionResponse, type context$9_GetLocalDeliveryOptionResponseNonNullableFields as GetLocalDeliveryOptionResponseNonNullableFields, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, context$9_LengthUnit as LengthUnit, type context$9_ListLocalDeliveryOptionsRequest as ListLocalDeliveryOptionsRequest, type context$9_ListLocalDeliveryOptionsResponse as ListLocalDeliveryOptionsResponse, type context$9_ListLocalDeliveryOptionsResponseNonNullableFields as ListLocalDeliveryOptionsResponseNonNullableFields, type context$9_LocalDeliveryAddress as LocalDeliveryAddress, type context$9_LocalDeliveryOption as LocalDeliveryOption, type context$9_LocalDeliveryOptionConfigOneOf as LocalDeliveryOptionConfigOneOf, type context$9_LocalDeliveryOptionCreatedEnvelope as LocalDeliveryOptionCreatedEnvelope, type context$9_LocalDeliveryOptionDeletedEnvelope as LocalDeliveryOptionDeletedEnvelope, type context$9_LocalDeliveryOptionError as LocalDeliveryOptionError, type context$9_LocalDeliveryOptionNonNullableFields as LocalDeliveryOptionNonNullableFields, type context$9_LocalDeliveryOptionUpdatedEnvelope as LocalDeliveryOptionUpdatedEnvelope, LogicalOperator$2 as LogicalOperator, type MessageEnvelope$7 as MessageEnvelope, type context$9_RadiusConfig as RadiusConfig, type RestoreInfo$7 as RestoreInfo, type context$9_ScheduledDelivery as ScheduledDelivery, type context$9_TimeOfDay as TimeOfDay, type context$9_TimePoint as TimePoint, type context$9_TimeSlot as TimeSlot, type context$9_TimeWindow as TimeWindow, type context$9_UpdateLocalDeliveryOption as UpdateLocalDeliveryOption, type context$9_UpdateLocalDeliveryOptionRequest as UpdateLocalDeliveryOptionRequest, type context$9_UpdateLocalDeliveryOptionResponse as UpdateLocalDeliveryOptionResponse, type context$9_UpdateLocalDeliveryOptionResponseNonNullableFields as UpdateLocalDeliveryOptionResponseNonNullableFields, WebhookIdentityType$7 as WebhookIdentityType, type context$9_ZipCodeConfig as ZipCodeConfig, context$9_bulkCreateLocalDeliveryOption as bulkCreateLocalDeliveryOption, context$9_bulkDeleteLocalDeliveryOption as bulkDeleteLocalDeliveryOption, context$9_bulkUpdateLocalDeliveryOption as bulkUpdateLocalDeliveryOption, context$9_createLocalDeliveryOption as createLocalDeliveryOption, context$9_deleteLocalDeliveryOption as deleteLocalDeliveryOption, context$9_getLocalDeliveryOption as getLocalDeliveryOption, context$9_listLocalDeliveryOptions as listLocalDeliveryOptions, context$9_onLocalDeliveryOptionCreated as onLocalDeliveryOptionCreated, context$9_onLocalDeliveryOptionDeleted as onLocalDeliveryOptionDeleted, context$9_onLocalDeliveryOptionUpdated as onLocalDeliveryOptionUpdated, context$9_updateLocalDeliveryOption as updateLocalDeliveryOption };
|
|
19764
|
+
export { type ActionEvent$7 as ActionEvent, type AddressLocation$3 as AddressLocation, type BaseEventMetadata$6 as BaseEventMetadata, type context$9_BulkCreateLocalDeliveryOptionRequest as BulkCreateLocalDeliveryOptionRequest, type context$9_BulkCreateLocalDeliveryOptionResponse as BulkCreateLocalDeliveryOptionResponse, type context$9_BulkCreateLocalDeliveryOptionResponseNonNullableFields as BulkCreateLocalDeliveryOptionResponseNonNullableFields, type context$9_BulkDeleteLocalDeliveryOptionRequest as BulkDeleteLocalDeliveryOptionRequest, type context$9_BulkDeleteLocalDeliveryOptionResponse as BulkDeleteLocalDeliveryOptionResponse, type context$9_BulkUpdateLocalDeliveryOptionRequest as BulkUpdateLocalDeliveryOptionRequest, type context$9_BulkUpdateLocalDeliveryOptionResponse as BulkUpdateLocalDeliveryOptionResponse, type context$9_BulkUpdateLocalDeliveryOptionResponseNonNullableFields as BulkUpdateLocalDeliveryOptionResponseNonNullableFields, type Condition$2 as Condition, ConditionType$2 as ConditionType, type ConditionalRates$2 as ConditionalRates, type context$9_CreateLocalDeliveryOptionRequest as CreateLocalDeliveryOptionRequest, type context$9_CreateLocalDeliveryOptionResponse as CreateLocalDeliveryOptionResponse, type context$9_CreateLocalDeliveryOptionResponseNonNullableFields as CreateLocalDeliveryOptionResponseNonNullableFields, type context$9_CustomAreaConfig as CustomAreaConfig, context$9_DayOfWeek as DayOfWeek, type context$9_DaySlot as DaySlot, type context$9_Days as Days, type context$9_DeleteLocalDeliveryOptionRequest as DeleteLocalDeliveryOptionRequest, type context$9_DeleteLocalDeliveryOptionResponse as DeleteLocalDeliveryOptionResponse, type context$9_Destination as Destination, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type Empty$5 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type EventMetadata$6 as EventMetadata, type context$9_GetLocalDeliveryOptionRequest as GetLocalDeliveryOptionRequest, type context$9_GetLocalDeliveryOptionResponse as GetLocalDeliveryOptionResponse, type context$9_GetLocalDeliveryOptionResponseNonNullableFields as GetLocalDeliveryOptionResponseNonNullableFields, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, context$9_LengthUnit as LengthUnit, type context$9_ListLocalDeliveryOptionsRequest as ListLocalDeliveryOptionsRequest, type context$9_ListLocalDeliveryOptionsResponse as ListLocalDeliveryOptionsResponse, type context$9_ListLocalDeliveryOptionsResponseNonNullableFields as ListLocalDeliveryOptionsResponseNonNullableFields, type context$9_LocalDeliveryAddress as LocalDeliveryAddress, type context$9_LocalDeliveryOption as LocalDeliveryOption, type context$9_LocalDeliveryOptionConfigOneOf as LocalDeliveryOptionConfigOneOf, type context$9_LocalDeliveryOptionCreatedEnvelope as LocalDeliveryOptionCreatedEnvelope, type context$9_LocalDeliveryOptionDeletedEnvelope as LocalDeliveryOptionDeletedEnvelope, type context$9_LocalDeliveryOptionError as LocalDeliveryOptionError, type context$9_LocalDeliveryOptionNonNullableFields as LocalDeliveryOptionNonNullableFields, type context$9_LocalDeliveryOptionUpdatedEnvelope as LocalDeliveryOptionUpdatedEnvelope, LogicalOperator$2 as LogicalOperator, type MessageEnvelope$7 as MessageEnvelope, type context$9_RadiusConfig as RadiusConfig, type RestoreInfo$7 as RestoreInfo, type context$9_ScheduledDelivery as ScheduledDelivery, type context$9_TimeOfDay as TimeOfDay, type context$9_TimePoint as TimePoint, type context$9_TimeSlot as TimeSlot, type context$9_TimeWindow as TimeWindow, type context$9_UpdateLocalDeliveryOption as UpdateLocalDeliveryOption, type context$9_UpdateLocalDeliveryOptionRequest as UpdateLocalDeliveryOptionRequest, type context$9_UpdateLocalDeliveryOptionResponse as UpdateLocalDeliveryOptionResponse, type context$9_UpdateLocalDeliveryOptionResponseNonNullableFields as UpdateLocalDeliveryOptionResponseNonNullableFields, WebhookIdentityType$7 as WebhookIdentityType, type context$9_ZipCodeConfig as ZipCodeConfig, type context$9__publicBulkCreateLocalDeliveryOptionType as _publicBulkCreateLocalDeliveryOptionType, type context$9__publicBulkDeleteLocalDeliveryOptionType as _publicBulkDeleteLocalDeliveryOptionType, type context$9__publicBulkUpdateLocalDeliveryOptionType as _publicBulkUpdateLocalDeliveryOptionType, type context$9__publicCreateLocalDeliveryOptionType as _publicCreateLocalDeliveryOptionType, type context$9__publicDeleteLocalDeliveryOptionType as _publicDeleteLocalDeliveryOptionType, type context$9__publicGetLocalDeliveryOptionType as _publicGetLocalDeliveryOptionType, type context$9__publicListLocalDeliveryOptionsType as _publicListLocalDeliveryOptionsType, type context$9__publicOnLocalDeliveryOptionCreatedType as _publicOnLocalDeliveryOptionCreatedType, type context$9__publicOnLocalDeliveryOptionDeletedType as _publicOnLocalDeliveryOptionDeletedType, type context$9__publicOnLocalDeliveryOptionUpdatedType as _publicOnLocalDeliveryOptionUpdatedType, type context$9__publicUpdateLocalDeliveryOptionType as _publicUpdateLocalDeliveryOptionType, context$9_bulkCreateLocalDeliveryOption as bulkCreateLocalDeliveryOption, context$9_bulkDeleteLocalDeliveryOption as bulkDeleteLocalDeliveryOption, context$9_bulkUpdateLocalDeliveryOption as bulkUpdateLocalDeliveryOption, context$9_createLocalDeliveryOption as createLocalDeliveryOption, context$9_deleteLocalDeliveryOption as deleteLocalDeliveryOption, context$9_getLocalDeliveryOption as getLocalDeliveryOption, context$9_listLocalDeliveryOptions as listLocalDeliveryOptions, context$9_onLocalDeliveryOptionCreated as onLocalDeliveryOptionCreated, context$9_onLocalDeliveryOptionDeleted as onLocalDeliveryOptionDeleted, context$9_onLocalDeliveryOptionUpdated as onLocalDeliveryOptionUpdated, onLocalDeliveryOptionCreated$1 as publicOnLocalDeliveryOptionCreated, onLocalDeliveryOptionDeleted$1 as publicOnLocalDeliveryOptionDeleted, onLocalDeliveryOptionUpdated$1 as publicOnLocalDeliveryOptionUpdated, context$9_updateLocalDeliveryOption as updateLocalDeliveryOption };
|
|
19312
19765
|
}
|
|
19313
19766
|
|
|
19314
19767
|
interface Order$1 {
|
|
@@ -24062,21 +24515,48 @@ interface CancelOrderOptions {
|
|
|
24062
24515
|
restockAllItems?: boolean;
|
|
24063
24516
|
}
|
|
24064
24517
|
|
|
24518
|
+
declare function getPaymentCollectabilityStatus$1(httpClient: HttpClient): (ecomOrderId: string) => Promise<GetPaymentCollectabilityStatusResponse & GetPaymentCollectabilityStatusResponseNonNullableFields>;
|
|
24519
|
+
declare function getOrder$1(httpClient: HttpClient): (_id: string) => Promise<Order$1 & OrderNonNullableFields>;
|
|
24520
|
+
declare function searchOrders$1(httpClient: HttpClient): (options?: SearchOrdersOptions) => Promise<SearchOrdersResponse & SearchOrdersResponseNonNullableFields>;
|
|
24521
|
+
declare function createOrder$1(httpClient: HttpClient): (order: Order$1) => Promise<Order$1 & OrderNonNullableFields>;
|
|
24522
|
+
declare function updateOrder$1(httpClient: HttpClient): (_id: string | null, order: UpdateOrder) => Promise<Order$1 & OrderNonNullableFields>;
|
|
24523
|
+
declare function bulkUpdateOrders$1(httpClient: HttpClient): (orders: MaskedOrder[], options?: BulkUpdateOrdersOptions) => Promise<BulkUpdateOrdersResponse & BulkUpdateOrdersResponseNonNullableFields>;
|
|
24524
|
+
declare function cancelOrder$1(httpClient: HttpClient): (_id: string, options?: CancelOrderOptions) => Promise<CancelOrderResponse & CancelOrderResponseNonNullableFields>;
|
|
24525
|
+
declare const onOrderPaymentStatusUpdated$1: EventDefinition<OrderPaymentStatusUpdatedEnvelope, "wix.ecom.v1.order_payment_status_updated">;
|
|
24526
|
+
declare const onOrderCreated$1: EventDefinition<OrderCreatedEnvelope, "wix.ecom.v1.order_created">;
|
|
24527
|
+
declare const onOrderCanceled$1: EventDefinition<OrderCanceledEnvelope, "wix.ecom.v1.order_canceled">;
|
|
24528
|
+
declare const onOrderApproved$1: EventDefinition<OrderApprovedEnvelope, "wix.ecom.v1.order_approved">;
|
|
24529
|
+
|
|
24065
24530
|
declare function createRESTModule$8<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
24066
24531
|
|
|
24067
24532
|
declare function createEventModule$5<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
24068
24533
|
|
|
24069
|
-
|
|
24070
|
-
declare const
|
|
24071
|
-
|
|
24072
|
-
declare const
|
|
24073
|
-
|
|
24074
|
-
declare const
|
|
24075
|
-
|
|
24076
|
-
declare const
|
|
24077
|
-
|
|
24078
|
-
declare const
|
|
24079
|
-
|
|
24534
|
+
type _publicGetPaymentCollectabilityStatusType = typeof getPaymentCollectabilityStatus$1;
|
|
24535
|
+
declare const getPaymentCollectabilityStatus: ReturnType<typeof createRESTModule$8<_publicGetPaymentCollectabilityStatusType>>;
|
|
24536
|
+
type _publicGetOrderType = typeof getOrder$1;
|
|
24537
|
+
declare const getOrder: ReturnType<typeof createRESTModule$8<_publicGetOrderType>>;
|
|
24538
|
+
type _publicSearchOrdersType = typeof searchOrders$1;
|
|
24539
|
+
declare const searchOrders: ReturnType<typeof createRESTModule$8<_publicSearchOrdersType>>;
|
|
24540
|
+
type _publicCreateOrderType = typeof createOrder$1;
|
|
24541
|
+
declare const createOrder: ReturnType<typeof createRESTModule$8<_publicCreateOrderType>>;
|
|
24542
|
+
type _publicUpdateOrderType = typeof updateOrder$1;
|
|
24543
|
+
declare const updateOrder: ReturnType<typeof createRESTModule$8<_publicUpdateOrderType>>;
|
|
24544
|
+
type _publicBulkUpdateOrdersType = typeof bulkUpdateOrders$1;
|
|
24545
|
+
declare const bulkUpdateOrders: ReturnType<typeof createRESTModule$8<_publicBulkUpdateOrdersType>>;
|
|
24546
|
+
type _publicCancelOrderType = typeof cancelOrder$1;
|
|
24547
|
+
declare const cancelOrder: ReturnType<typeof createRESTModule$8<_publicCancelOrderType>>;
|
|
24548
|
+
|
|
24549
|
+
type _publicOnOrderPaymentStatusUpdatedType = typeof onOrderPaymentStatusUpdated$1;
|
|
24550
|
+
declare const onOrderPaymentStatusUpdated: ReturnType<typeof createEventModule$5<_publicOnOrderPaymentStatusUpdatedType>>;
|
|
24551
|
+
|
|
24552
|
+
type _publicOnOrderCreatedType = typeof onOrderCreated$1;
|
|
24553
|
+
declare const onOrderCreated: ReturnType<typeof createEventModule$5<_publicOnOrderCreatedType>>;
|
|
24554
|
+
|
|
24555
|
+
type _publicOnOrderCanceledType = typeof onOrderCanceled$1;
|
|
24556
|
+
declare const onOrderCanceled: ReturnType<typeof createEventModule$5<_publicOnOrderCanceledType>>;
|
|
24557
|
+
|
|
24558
|
+
type _publicOnOrderApprovedType = typeof onOrderApproved$1;
|
|
24559
|
+
declare const onOrderApproved: ReturnType<typeof createEventModule$5<_publicOnOrderApprovedType>>;
|
|
24080
24560
|
|
|
24081
24561
|
type context$8_ActivityContentOneOf = ActivityContentOneOf;
|
|
24082
24562
|
type context$8_AddActivitiesRequest = AddActivitiesRequest;
|
|
@@ -24461,6 +24941,17 @@ type context$8_VersioningMode = VersioningMode;
|
|
|
24461
24941
|
declare const context$8_VersioningMode: typeof VersioningMode;
|
|
24462
24942
|
type context$8_VoidAuthorizedPaymentsRequest = VoidAuthorizedPaymentsRequest;
|
|
24463
24943
|
type context$8_VoidAuthorizedPaymentsResponse = VoidAuthorizedPaymentsResponse;
|
|
24944
|
+
type context$8__publicBulkUpdateOrdersType = _publicBulkUpdateOrdersType;
|
|
24945
|
+
type context$8__publicCancelOrderType = _publicCancelOrderType;
|
|
24946
|
+
type context$8__publicCreateOrderType = _publicCreateOrderType;
|
|
24947
|
+
type context$8__publicGetOrderType = _publicGetOrderType;
|
|
24948
|
+
type context$8__publicGetPaymentCollectabilityStatusType = _publicGetPaymentCollectabilityStatusType;
|
|
24949
|
+
type context$8__publicOnOrderApprovedType = _publicOnOrderApprovedType;
|
|
24950
|
+
type context$8__publicOnOrderCanceledType = _publicOnOrderCanceledType;
|
|
24951
|
+
type context$8__publicOnOrderCreatedType = _publicOnOrderCreatedType;
|
|
24952
|
+
type context$8__publicOnOrderPaymentStatusUpdatedType = _publicOnOrderPaymentStatusUpdatedType;
|
|
24953
|
+
type context$8__publicSearchOrdersType = _publicSearchOrdersType;
|
|
24954
|
+
type context$8__publicUpdateOrderType = _publicUpdateOrderType;
|
|
24464
24955
|
declare const context$8_bulkUpdateOrders: typeof bulkUpdateOrders;
|
|
24465
24956
|
declare const context$8_cancelOrder: typeof cancelOrder;
|
|
24466
24957
|
declare const context$8_createOrder: typeof createOrder;
|
|
@@ -24473,7 +24964,7 @@ declare const context$8_onOrderPaymentStatusUpdated: typeof onOrderPaymentStatus
|
|
|
24473
24964
|
declare const context$8_searchOrders: typeof searchOrders;
|
|
24474
24965
|
declare const context$8_updateOrder: typeof updateOrder;
|
|
24475
24966
|
declare namespace context$8 {
|
|
24476
|
-
export { type ActionEvent$6 as ActionEvent, ActionType$1 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$1 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$1 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$1 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$1 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder };
|
|
24967
|
+
export { type ActionEvent$6 as ActionEvent, ActionType$1 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$1 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$1 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$1 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$1 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicBulkUpdateOrdersType as _publicBulkUpdateOrdersType, type context$8__publicCancelOrderType as _publicCancelOrderType, type context$8__publicCreateOrderType as _publicCreateOrderType, type context$8__publicGetOrderType as _publicGetOrderType, type context$8__publicGetPaymentCollectabilityStatusType as _publicGetPaymentCollectabilityStatusType, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type context$8__publicSearchOrdersType as _publicSearchOrdersType, type context$8__publicUpdateOrderType as _publicUpdateOrderType, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder };
|
|
24477
24968
|
}
|
|
24478
24969
|
|
|
24479
24970
|
interface OrderPaymentRequest {
|
|
@@ -24988,15 +25479,30 @@ interface UpdateExtendedFieldsOptions$2 {
|
|
|
24988
25479
|
namespaceData: Record<string, any> | null;
|
|
24989
25480
|
}
|
|
24990
25481
|
|
|
25482
|
+
declare function createOrderPaymentRequest$1(httpClient: HttpClient): (options?: CreateOrderPaymentRequestOptions) => Promise<OrderPaymentRequest & OrderPaymentRequestNonNullableFields>;
|
|
25483
|
+
declare function getOrderPaymentRequest$1(httpClient: HttpClient): (orderPaymentRequestId: string) => Promise<OrderPaymentRequest & OrderPaymentRequestNonNullableFields>;
|
|
25484
|
+
declare function updateOrderPaymentRequest$1(httpClient: HttpClient): (_id: string | null, orderPaymentRequest: UpdateOrderPaymentRequest) => Promise<OrderPaymentRequest & OrderPaymentRequestNonNullableFields>;
|
|
25485
|
+
declare function deleteOrderPaymentRequest$1(httpClient: HttpClient): (orderPaymentRequestId: string) => Promise<void>;
|
|
25486
|
+
declare function queryOrderPaymentRequests$1(httpClient: HttpClient): () => OrderPaymentRequestsQueryBuilder;
|
|
25487
|
+
declare function getOrderPaymentRequestUrl$1(httpClient: HttpClient): (orderPaymentRequestId: string) => Promise<GetOrderPaymentRequestURLResponse & GetOrderPaymentRequestURLResponseNonNullableFields>;
|
|
25488
|
+
declare function updateExtendedFields$5(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions$2) => Promise<UpdateExtendedFieldsResponse$2 & UpdateExtendedFieldsResponseNonNullableFields$2>;
|
|
25489
|
+
|
|
24991
25490
|
declare function createRESTModule$7<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
24992
25491
|
|
|
24993
|
-
|
|
24994
|
-
declare const
|
|
24995
|
-
|
|
24996
|
-
declare const
|
|
24997
|
-
|
|
24998
|
-
declare const
|
|
24999
|
-
|
|
25492
|
+
type _publicCreateOrderPaymentRequestType = typeof createOrderPaymentRequest$1;
|
|
25493
|
+
declare const createOrderPaymentRequest: ReturnType<typeof createRESTModule$7<_publicCreateOrderPaymentRequestType>>;
|
|
25494
|
+
type _publicGetOrderPaymentRequestType = typeof getOrderPaymentRequest$1;
|
|
25495
|
+
declare const getOrderPaymentRequest: ReturnType<typeof createRESTModule$7<_publicGetOrderPaymentRequestType>>;
|
|
25496
|
+
type _publicUpdateOrderPaymentRequestType = typeof updateOrderPaymentRequest$1;
|
|
25497
|
+
declare const updateOrderPaymentRequest: ReturnType<typeof createRESTModule$7<_publicUpdateOrderPaymentRequestType>>;
|
|
25498
|
+
type _publicDeleteOrderPaymentRequestType = typeof deleteOrderPaymentRequest$1;
|
|
25499
|
+
declare const deleteOrderPaymentRequest: ReturnType<typeof createRESTModule$7<_publicDeleteOrderPaymentRequestType>>;
|
|
25500
|
+
type _publicQueryOrderPaymentRequestsType = typeof queryOrderPaymentRequests$1;
|
|
25501
|
+
declare const queryOrderPaymentRequests: ReturnType<typeof createRESTModule$7<_publicQueryOrderPaymentRequestsType>>;
|
|
25502
|
+
type _publicGetOrderPaymentRequestUrlType = typeof getOrderPaymentRequestUrl$1;
|
|
25503
|
+
declare const getOrderPaymentRequestUrl: ReturnType<typeof createRESTModule$7<_publicGetOrderPaymentRequestUrlType>>;
|
|
25504
|
+
type _publicUpdateExtendedFieldsType$2 = typeof updateExtendedFields$5;
|
|
25505
|
+
declare const updateExtendedFields$4: ReturnType<typeof createRESTModule$7<_publicUpdateExtendedFieldsType>>;
|
|
25000
25506
|
|
|
25001
25507
|
type context$7_CreateOrderPaymentRequestOptions = CreateOrderPaymentRequestOptions;
|
|
25002
25508
|
type context$7_CreateOrderPaymentRequestRequest = CreateOrderPaymentRequestRequest;
|
|
@@ -25026,6 +25532,12 @@ type context$7_UpdateOrderPaymentRequest = UpdateOrderPaymentRequest;
|
|
|
25026
25532
|
type context$7_UpdateOrderPaymentRequestRequest = UpdateOrderPaymentRequestRequest;
|
|
25027
25533
|
type context$7_UpdateOrderPaymentRequestResponse = UpdateOrderPaymentRequestResponse;
|
|
25028
25534
|
type context$7_UpdateOrderPaymentRequestResponseNonNullableFields = UpdateOrderPaymentRequestResponseNonNullableFields;
|
|
25535
|
+
type context$7__publicCreateOrderPaymentRequestType = _publicCreateOrderPaymentRequestType;
|
|
25536
|
+
type context$7__publicDeleteOrderPaymentRequestType = _publicDeleteOrderPaymentRequestType;
|
|
25537
|
+
type context$7__publicGetOrderPaymentRequestType = _publicGetOrderPaymentRequestType;
|
|
25538
|
+
type context$7__publicGetOrderPaymentRequestUrlType = _publicGetOrderPaymentRequestUrlType;
|
|
25539
|
+
type context$7__publicQueryOrderPaymentRequestsType = _publicQueryOrderPaymentRequestsType;
|
|
25540
|
+
type context$7__publicUpdateOrderPaymentRequestType = _publicUpdateOrderPaymentRequestType;
|
|
25029
25541
|
declare const context$7_createOrderPaymentRequest: typeof createOrderPaymentRequest;
|
|
25030
25542
|
declare const context$7_deleteOrderPaymentRequest: typeof deleteOrderPaymentRequest;
|
|
25031
25543
|
declare const context$7_getOrderPaymentRequest: typeof getOrderPaymentRequest;
|
|
@@ -25033,7 +25545,7 @@ declare const context$7_getOrderPaymentRequestUrl: typeof getOrderPaymentRequest
|
|
|
25033
25545
|
declare const context$7_queryOrderPaymentRequests: typeof queryOrderPaymentRequests;
|
|
25034
25546
|
declare const context$7_updateOrderPaymentRequest: typeof updateOrderPaymentRequest;
|
|
25035
25547
|
declare namespace context$7 {
|
|
25036
|
-
export { type ActionEvent$5 as ActionEvent, type context$7_CreateOrderPaymentRequestOptions as CreateOrderPaymentRequestOptions, type context$7_CreateOrderPaymentRequestRequest as CreateOrderPaymentRequestRequest, type context$7_CreateOrderPaymentRequestResponse as CreateOrderPaymentRequestResponse, type context$7_CreateOrderPaymentRequestResponseNonNullableFields as CreateOrderPaymentRequestResponseNonNullableFields, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type context$7_DeleteOrderPaymentRequestRequest as DeleteOrderPaymentRequestRequest, type context$7_DeleteOrderPaymentRequestResponse as DeleteOrderPaymentRequestResponse, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type ExtendedFields$2 as ExtendedFields, type context$7_GetOrderPaymentRequestRequest as GetOrderPaymentRequestRequest, type context$7_GetOrderPaymentRequestResponse as GetOrderPaymentRequestResponse, type context$7_GetOrderPaymentRequestResponseNonNullableFields as GetOrderPaymentRequestResponseNonNullableFields, type context$7_GetOrderPaymentRequestURLRequest as GetOrderPaymentRequestURLRequest, type context$7_GetOrderPaymentRequestURLResponse as GetOrderPaymentRequestURLResponse, type context$7_GetOrderPaymentRequestURLResponseNonNullableFields as GetOrderPaymentRequestURLResponseNonNullableFields, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type MessageEnvelope$5 as MessageEnvelope, type context$7_OrderPaymentRequest as OrderPaymentRequest, type context$7_OrderPaymentRequestExpired as OrderPaymentRequestExpired, type context$7_OrderPaymentRequestNonNullableFields as OrderPaymentRequestNonNullableFields, type context$7_OrderPaymentRequestPaid as OrderPaymentRequestPaid, type context$7_OrderPaymentRequestsQueryBuilder as OrderPaymentRequestsQueryBuilder, type context$7_OrderPaymentRequestsQueryResult as OrderPaymentRequestsQueryResult, type Price$1 as Price, type context$7_QueryOrderPaymentRequestsRequest as QueryOrderPaymentRequestsRequest, type context$7_QueryOrderPaymentRequestsResponse as QueryOrderPaymentRequestsResponse, type context$7_QueryOrderPaymentRequestsResponseNonNullableFields as QueryOrderPaymentRequestsResponseNonNullableFields, type RestoreInfo$5 as RestoreInfo, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, type context$7_Source as Source, context$7_Status as Status, type UpdateExtendedFieldsOptions$2 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$2 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$2 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$2 as UpdateExtendedFieldsResponseNonNullableFields, type context$7_UpdateOrderPaymentRequest as UpdateOrderPaymentRequest, type context$7_UpdateOrderPaymentRequestRequest as UpdateOrderPaymentRequestRequest, type context$7_UpdateOrderPaymentRequestResponse as UpdateOrderPaymentRequestResponse, type context$7_UpdateOrderPaymentRequestResponseNonNullableFields as UpdateOrderPaymentRequestResponseNonNullableFields, WebhookIdentityType$5 as WebhookIdentityType, context$7_createOrderPaymentRequest as createOrderPaymentRequest, context$7_deleteOrderPaymentRequest as deleteOrderPaymentRequest, context$7_getOrderPaymentRequest as getOrderPaymentRequest, context$7_getOrderPaymentRequestUrl as getOrderPaymentRequestUrl, context$7_queryOrderPaymentRequests as queryOrderPaymentRequests, updateExtendedFields$
|
|
25548
|
+
export { type ActionEvent$5 as ActionEvent, type context$7_CreateOrderPaymentRequestOptions as CreateOrderPaymentRequestOptions, type context$7_CreateOrderPaymentRequestRequest as CreateOrderPaymentRequestRequest, type context$7_CreateOrderPaymentRequestResponse as CreateOrderPaymentRequestResponse, type context$7_CreateOrderPaymentRequestResponseNonNullableFields as CreateOrderPaymentRequestResponseNonNullableFields, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type context$7_DeleteOrderPaymentRequestRequest as DeleteOrderPaymentRequestRequest, type context$7_DeleteOrderPaymentRequestResponse as DeleteOrderPaymentRequestResponse, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type ExtendedFields$2 as ExtendedFields, type context$7_GetOrderPaymentRequestRequest as GetOrderPaymentRequestRequest, type context$7_GetOrderPaymentRequestResponse as GetOrderPaymentRequestResponse, type context$7_GetOrderPaymentRequestResponseNonNullableFields as GetOrderPaymentRequestResponseNonNullableFields, type context$7_GetOrderPaymentRequestURLRequest as GetOrderPaymentRequestURLRequest, type context$7_GetOrderPaymentRequestURLResponse as GetOrderPaymentRequestURLResponse, type context$7_GetOrderPaymentRequestURLResponseNonNullableFields as GetOrderPaymentRequestURLResponseNonNullableFields, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type MessageEnvelope$5 as MessageEnvelope, type context$7_OrderPaymentRequest as OrderPaymentRequest, type context$7_OrderPaymentRequestExpired as OrderPaymentRequestExpired, type context$7_OrderPaymentRequestNonNullableFields as OrderPaymentRequestNonNullableFields, type context$7_OrderPaymentRequestPaid as OrderPaymentRequestPaid, type context$7_OrderPaymentRequestsQueryBuilder as OrderPaymentRequestsQueryBuilder, type context$7_OrderPaymentRequestsQueryResult as OrderPaymentRequestsQueryResult, type Price$1 as Price, type context$7_QueryOrderPaymentRequestsRequest as QueryOrderPaymentRequestsRequest, type context$7_QueryOrderPaymentRequestsResponse as QueryOrderPaymentRequestsResponse, type context$7_QueryOrderPaymentRequestsResponseNonNullableFields as QueryOrderPaymentRequestsResponseNonNullableFields, type RestoreInfo$5 as RestoreInfo, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, type context$7_Source as Source, context$7_Status as Status, type UpdateExtendedFieldsOptions$2 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$2 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$2 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$2 as UpdateExtendedFieldsResponseNonNullableFields, type context$7_UpdateOrderPaymentRequest as UpdateOrderPaymentRequest, type context$7_UpdateOrderPaymentRequestRequest as UpdateOrderPaymentRequestRequest, type context$7_UpdateOrderPaymentRequestResponse as UpdateOrderPaymentRequestResponse, type context$7_UpdateOrderPaymentRequestResponseNonNullableFields as UpdateOrderPaymentRequestResponseNonNullableFields, WebhookIdentityType$5 as WebhookIdentityType, type context$7__publicCreateOrderPaymentRequestType as _publicCreateOrderPaymentRequestType, type context$7__publicDeleteOrderPaymentRequestType as _publicDeleteOrderPaymentRequestType, type context$7__publicGetOrderPaymentRequestType as _publicGetOrderPaymentRequestType, type context$7__publicGetOrderPaymentRequestUrlType as _publicGetOrderPaymentRequestUrlType, type context$7__publicQueryOrderPaymentRequestsType as _publicQueryOrderPaymentRequestsType, type _publicUpdateExtendedFieldsType$2 as _publicUpdateExtendedFieldsType, type context$7__publicUpdateOrderPaymentRequestType as _publicUpdateOrderPaymentRequestType, context$7_createOrderPaymentRequest as createOrderPaymentRequest, context$7_deleteOrderPaymentRequest as deleteOrderPaymentRequest, context$7_getOrderPaymentRequest as getOrderPaymentRequest, context$7_getOrderPaymentRequestUrl as getOrderPaymentRequestUrl, context$7_queryOrderPaymentRequests as queryOrderPaymentRequests, updateExtendedFields$4 as updateExtendedFields, context$7_updateOrderPaymentRequest as updateOrderPaymentRequest };
|
|
25037
25549
|
}
|
|
25038
25550
|
|
|
25039
25551
|
interface OrderTransactions {
|
|
@@ -26827,16 +27339,30 @@ interface BulkUpdatePaymentStatusesOptions {
|
|
|
26827
27339
|
status?: TransactionStatus;
|
|
26828
27340
|
}
|
|
26829
27341
|
|
|
27342
|
+
declare function listTransactionsForSingleOrder$1(httpClient: HttpClient): (orderId: string) => Promise<ListTransactionsForSingleOrderResponse & ListTransactionsForSingleOrderResponseNonNullableFields>;
|
|
27343
|
+
declare function listTransactionsForMultipleOrders$1(httpClient: HttpClient): (orderIds: string[]) => Promise<ListTransactionsForMultipleOrdersResponse & ListTransactionsForMultipleOrdersResponseNonNullableFields>;
|
|
27344
|
+
declare function addPayments$1(httpClient: HttpClient): (orderId: string, payments: Payment[]) => Promise<AddPaymentsResponse & AddPaymentsResponseNonNullableFields>;
|
|
27345
|
+
declare function updatePaymentStatus$1(httpClient: HttpClient): (identifiers: UpdatePaymentStatusIdentifiers, options?: UpdatePaymentStatusOptions) => Promise<UpdatePaymentStatusResponse & UpdatePaymentStatusResponseNonNullableFields>;
|
|
27346
|
+
declare function bulkUpdatePaymentStatuses$1(httpClient: HttpClient): (paymentAndOrderIds: PaymentAndOrderId[], options?: BulkUpdatePaymentStatusesOptions) => Promise<BulkUpdatePaymentStatusesResponse & BulkUpdatePaymentStatusesResponseNonNullableFields>;
|
|
27347
|
+
declare const onOrderTransactionsUpdated$1: EventDefinition<OrderTransactionsUpdatedEnvelope, "wix.ecom.v1.order_transactions_updated">;
|
|
27348
|
+
|
|
26830
27349
|
declare function createRESTModule$6<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
26831
27350
|
|
|
26832
27351
|
declare function createEventModule$4<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
26833
27352
|
|
|
26834
|
-
|
|
26835
|
-
declare const
|
|
26836
|
-
|
|
26837
|
-
declare const
|
|
26838
|
-
|
|
26839
|
-
declare const
|
|
27353
|
+
type _publicListTransactionsForSingleOrderType = typeof listTransactionsForSingleOrder$1;
|
|
27354
|
+
declare const listTransactionsForSingleOrder: ReturnType<typeof createRESTModule$6<_publicListTransactionsForSingleOrderType>>;
|
|
27355
|
+
type _publicListTransactionsForMultipleOrdersType = typeof listTransactionsForMultipleOrders$1;
|
|
27356
|
+
declare const listTransactionsForMultipleOrders: ReturnType<typeof createRESTModule$6<_publicListTransactionsForMultipleOrdersType>>;
|
|
27357
|
+
type _publicAddPaymentsType = typeof addPayments$1;
|
|
27358
|
+
declare const addPayments: ReturnType<typeof createRESTModule$6<_publicAddPaymentsType>>;
|
|
27359
|
+
type _publicUpdatePaymentStatusType = typeof updatePaymentStatus$1;
|
|
27360
|
+
declare const updatePaymentStatus: ReturnType<typeof createRESTModule$6<_publicUpdatePaymentStatusType>>;
|
|
27361
|
+
type _publicBulkUpdatePaymentStatusesType = typeof bulkUpdatePaymentStatuses$1;
|
|
27362
|
+
declare const bulkUpdatePaymentStatuses: ReturnType<typeof createRESTModule$6<_publicBulkUpdatePaymentStatusesType>>;
|
|
27363
|
+
|
|
27364
|
+
type _publicOnOrderTransactionsUpdatedType = typeof onOrderTransactionsUpdated$1;
|
|
27365
|
+
declare const onOrderTransactionsUpdated: ReturnType<typeof createEventModule$4<_publicOnOrderTransactionsUpdatedType>>;
|
|
26840
27366
|
|
|
26841
27367
|
type context$6_ActionType = ActionType;
|
|
26842
27368
|
declare const context$6_ActionType: typeof ActionType;
|
|
@@ -27000,6 +27526,12 @@ type context$6_V2Refund = V2Refund;
|
|
|
27000
27526
|
type context$6_VatId = VatId;
|
|
27001
27527
|
type context$6_VatType = VatType;
|
|
27002
27528
|
declare const context$6_VatType: typeof VatType;
|
|
27529
|
+
type context$6__publicAddPaymentsType = _publicAddPaymentsType;
|
|
27530
|
+
type context$6__publicBulkUpdatePaymentStatusesType = _publicBulkUpdatePaymentStatusesType;
|
|
27531
|
+
type context$6__publicListTransactionsForMultipleOrdersType = _publicListTransactionsForMultipleOrdersType;
|
|
27532
|
+
type context$6__publicListTransactionsForSingleOrderType = _publicListTransactionsForSingleOrderType;
|
|
27533
|
+
type context$6__publicOnOrderTransactionsUpdatedType = _publicOnOrderTransactionsUpdatedType;
|
|
27534
|
+
type context$6__publicUpdatePaymentStatusType = _publicUpdatePaymentStatusType;
|
|
27003
27535
|
declare const context$6_addPayments: typeof addPayments;
|
|
27004
27536
|
declare const context$6_bulkUpdatePaymentStatuses: typeof bulkUpdatePaymentStatuses;
|
|
27005
27537
|
declare const context$6_listTransactionsForMultipleOrders: typeof listTransactionsForMultipleOrders;
|
|
@@ -27007,7 +27539,7 @@ declare const context$6_listTransactionsForSingleOrder: typeof listTransactionsF
|
|
|
27007
27539
|
declare const context$6_onOrderTransactionsUpdated: typeof onOrderTransactionsUpdated;
|
|
27008
27540
|
declare const context$6_updatePaymentStatus: typeof updatePaymentStatus;
|
|
27009
27541
|
declare namespace context$6 {
|
|
27010
|
-
export { type ActionEvent$4 as ActionEvent, context$6_ActionType as ActionType, type context$6_Activity as Activity, context$6_ActivityType as ActivityType, type context$6_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type context$6_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type context$6_AddPaymentsRequest as AddPaymentsRequest, type context$6_AddPaymentsResponse as AddPaymentsResponse, type context$6_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type context$6_AddRefundRequest as AddRefundRequest, type context$6_AddRefundResponse as AddRefundResponse, type context$6_AdditionalFeeRefund as AdditionalFeeRefund, type Address$3 as Address, type context$6_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type context$6_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$2 as ApplicationError, type context$6_AppliedCoupon as AppliedCoupon, type context$6_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type context$6_AuthorizationCapture as AuthorizationCapture, context$6_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type context$6_AuthorizationDetails as AuthorizationDetails, type context$6_AuthorizationVoid as AuthorizationVoid, context$6_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$4 as BaseEventMetadata, type context$6_BillingInfo as BillingInfo, type context$6_BulkActionMetadata as BulkActionMetadata, type context$6_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type context$6_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type context$6_BulkInvoiceResult as BulkInvoiceResult, type context$6_BulkPaymentResult as BulkPaymentResult, type context$6_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type context$6_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type context$6_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type context$6_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type context$6_BuyerDetails as BuyerDetails, type context$6_BuyerInfo as BuyerInfo, type context$6_CalculateRefundItemRequest as CalculateRefundItemRequest, type context$6_CalculateRefundItemResponse as CalculateRefundItemResponse, type context$6_CalculateRefundRequest as CalculateRefundRequest, type context$6_CalculateRefundResponse as CalculateRefundResponse, type context$6_ChannelInfo as ChannelInfo, context$6_ChannelType as ChannelType, type context$6_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$3 as Cursors, type context$6_CustomField as CustomField, type context$6_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type context$6_DigitalFile as DigitalFile, type context$6_Discount as Discount, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$6_EnteredBy as EnteredBy, context$6_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type EventMetadata$4 as EventMetadata, type context$6_Fulfillment as Fulfillment, type context$6_FulfillmentLineItem as FulfillmentLineItem, context$6_FulfillmentStatus as FulfillmentStatus, type context$6_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type context$6_FullName as FullName, type context$6_GenerateInvoiceRequest as GenerateInvoiceRequest, type context$6_GenerateInvoiceResponse as GenerateInvoiceResponse, type context$6_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type context$6_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type GiftCard$1 as GiftCard, type context$6_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, context$6_IdentityType as IdentityType, type context$6_IndexingMessage as IndexingMessage, type context$6_InvoiceForOrder as InvoiceForOrder, type context$6_InvoiceInfo as InvoiceInfo, context$6_InvoiceSource as InvoiceSource, type context$6_InvoicesForOrder as InvoicesForOrder, type context$6_ItemMetadata as ItemMetadata, type LineItem$1 as LineItem, type context$6_LineItemPriceData as LineItemPriceData, type context$6_LineItemRefund as LineItemRefund, context$6_LineItemType as LineItemType, type context$6_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type context$6_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type context$6_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type context$6_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type context$6_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type context$6_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type context$6_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type context$6_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type context$6_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type context$6_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, context$6_ManuallyRefundableReason as ManuallyRefundableReason, type context$6_MaskedPayment as MaskedPayment, type context$6_MediaItem as MediaItem, context$6_MediaItemType as MediaItemType, type MembershipName$1 as MembershipName, type context$6_MembershipPaymentDetails as MembershipPaymentDetails, context$6_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$4 as MessageEnvelope, context$6_NonRefundableReason as NonRefundableReason, type context$6_OptionSelection as OptionSelection, type context$6_Order as Order, type context$6_OrderRefunded as OrderRefunded, type context$6_OrderTransactions as OrderTransactions, type context$6_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type context$6_Payment as Payment, type context$6_PaymentAndOrderId as PaymentAndOrderId, type context$6_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type context$6_PaymentRefund as PaymentRefund, context$6_PaymentStatus as PaymentStatus, type context$6_PaymentsUpdated as PaymentsUpdated, type context$6_PickupAddress as PickupAddress, type PickupDetails$1 as PickupDetails, type context$6_Price as Price, type context$6_QueryOrderTransactionsRequest as QueryOrderTransactionsRequest, type context$6_QueryOrderTransactionsResponse as QueryOrderTransactionsResponse, context$6_Reason as Reason, type context$6_Refund as Refund, type context$6_RefundCreated as RefundCreated, type context$6_RefundDetails as RefundDetails, type context$6_RefundItem as RefundItem, type context$6_RefundSideEffects as RefundSideEffects, context$6_RefundStatus as RefundStatus, type context$6_RefundTransaction as RefundTransaction, type context$6_Refundability as Refundability, type context$6_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, context$6_RefundableStatus as RefundableStatus, type context$6_RegularPaymentDetails as RegularPaymentDetails, type context$6_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$6_RestockInfo as RestockInfo, type context$6_RestockItem as RestockItem, context$6_RestockType as RestockType, type RestoreInfo$4 as RestoreInfo, type context$6_ScheduledAction as ScheduledAction, type context$6_ShipmentDetails as ShipmentDetails, type context$6_ShippingInfo as ShippingInfo, type context$6_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type context$6_ShippingPriceData as ShippingPriceData, type context$6_ShippingRefund as ShippingRefund, type context$6_SnapshotMessage as SnapshotMessage, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, type context$6_Street as Street, SubscriptionFrequency$1 as SubscriptionFrequency, type context$6_SubscriptionInfo as SubscriptionInfo, type context$6_SubscriptionOptionInfo as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$6_Totals as Totals, type context$6_TrackingInfo as TrackingInfo, context$6_TransactionStatus as TransactionStatus, type context$6_TriggerRefundRequest as TriggerRefundRequest, type context$6_TriggerRefundResponse as TriggerRefundResponse, type context$6_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type context$6_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type context$6_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type context$6_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type context$6_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type context$6_UpdatePaymentsRequest as UpdatePaymentsRequest, type context$6_UpdatePaymentsResponse as UpdatePaymentsResponse, type context$6_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type context$6_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type context$6_V2InvoiceInfo as V2InvoiceInfo, type context$6_V2Refund as V2Refund, type context$6_VatId as VatId, context$6_VatType as VatType, WebhookIdentityType$4 as WebhookIdentityType, WeightUnit$1 as WeightUnit, context$6_addPayments as addPayments, context$6_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, context$6_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, context$6_listTransactionsForSingleOrder as listTransactionsForSingleOrder, context$6_onOrderTransactionsUpdated as onOrderTransactionsUpdated, context$6_updatePaymentStatus as updatePaymentStatus };
|
|
27542
|
+
export { type ActionEvent$4 as ActionEvent, context$6_ActionType as ActionType, type context$6_Activity as Activity, context$6_ActivityType as ActivityType, type context$6_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type context$6_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type context$6_AddPaymentsRequest as AddPaymentsRequest, type context$6_AddPaymentsResponse as AddPaymentsResponse, type context$6_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type context$6_AddRefundRequest as AddRefundRequest, type context$6_AddRefundResponse as AddRefundResponse, type context$6_AdditionalFeeRefund as AdditionalFeeRefund, type Address$3 as Address, type context$6_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type context$6_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$2 as ApplicationError, type context$6_AppliedCoupon as AppliedCoupon, type context$6_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type context$6_AuthorizationCapture as AuthorizationCapture, context$6_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type context$6_AuthorizationDetails as AuthorizationDetails, type context$6_AuthorizationVoid as AuthorizationVoid, context$6_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$4 as BaseEventMetadata, type context$6_BillingInfo as BillingInfo, type context$6_BulkActionMetadata as BulkActionMetadata, type context$6_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type context$6_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type context$6_BulkInvoiceResult as BulkInvoiceResult, type context$6_BulkPaymentResult as BulkPaymentResult, type context$6_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type context$6_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type context$6_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type context$6_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type context$6_BuyerDetails as BuyerDetails, type context$6_BuyerInfo as BuyerInfo, type context$6_CalculateRefundItemRequest as CalculateRefundItemRequest, type context$6_CalculateRefundItemResponse as CalculateRefundItemResponse, type context$6_CalculateRefundRequest as CalculateRefundRequest, type context$6_CalculateRefundResponse as CalculateRefundResponse, type context$6_ChannelInfo as ChannelInfo, context$6_ChannelType as ChannelType, type context$6_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$3 as Cursors, type context$6_CustomField as CustomField, type context$6_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type context$6_DigitalFile as DigitalFile, type context$6_Discount as Discount, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$6_EnteredBy as EnteredBy, context$6_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type EventMetadata$4 as EventMetadata, type context$6_Fulfillment as Fulfillment, type context$6_FulfillmentLineItem as FulfillmentLineItem, context$6_FulfillmentStatus as FulfillmentStatus, type context$6_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type context$6_FullName as FullName, type context$6_GenerateInvoiceRequest as GenerateInvoiceRequest, type context$6_GenerateInvoiceResponse as GenerateInvoiceResponse, type context$6_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type context$6_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type GiftCard$1 as GiftCard, type context$6_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, context$6_IdentityType as IdentityType, type context$6_IndexingMessage as IndexingMessage, type context$6_InvoiceForOrder as InvoiceForOrder, type context$6_InvoiceInfo as InvoiceInfo, context$6_InvoiceSource as InvoiceSource, type context$6_InvoicesForOrder as InvoicesForOrder, type context$6_ItemMetadata as ItemMetadata, type LineItem$1 as LineItem, type context$6_LineItemPriceData as LineItemPriceData, type context$6_LineItemRefund as LineItemRefund, context$6_LineItemType as LineItemType, type context$6_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type context$6_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type context$6_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type context$6_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type context$6_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type context$6_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type context$6_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type context$6_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type context$6_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type context$6_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, context$6_ManuallyRefundableReason as ManuallyRefundableReason, type context$6_MaskedPayment as MaskedPayment, type context$6_MediaItem as MediaItem, context$6_MediaItemType as MediaItemType, type MembershipName$1 as MembershipName, type context$6_MembershipPaymentDetails as MembershipPaymentDetails, context$6_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$4 as MessageEnvelope, context$6_NonRefundableReason as NonRefundableReason, type context$6_OptionSelection as OptionSelection, type context$6_Order as Order, type context$6_OrderRefunded as OrderRefunded, type context$6_OrderTransactions as OrderTransactions, type context$6_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type context$6_Payment as Payment, type context$6_PaymentAndOrderId as PaymentAndOrderId, type context$6_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type context$6_PaymentRefund as PaymentRefund, context$6_PaymentStatus as PaymentStatus, type context$6_PaymentsUpdated as PaymentsUpdated, type context$6_PickupAddress as PickupAddress, type PickupDetails$1 as PickupDetails, type context$6_Price as Price, type context$6_QueryOrderTransactionsRequest as QueryOrderTransactionsRequest, type context$6_QueryOrderTransactionsResponse as QueryOrderTransactionsResponse, context$6_Reason as Reason, type context$6_Refund as Refund, type context$6_RefundCreated as RefundCreated, type context$6_RefundDetails as RefundDetails, type context$6_RefundItem as RefundItem, type context$6_RefundSideEffects as RefundSideEffects, context$6_RefundStatus as RefundStatus, type context$6_RefundTransaction as RefundTransaction, type context$6_Refundability as Refundability, type context$6_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, context$6_RefundableStatus as RefundableStatus, type context$6_RegularPaymentDetails as RegularPaymentDetails, type context$6_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$6_RestockInfo as RestockInfo, type context$6_RestockItem as RestockItem, context$6_RestockType as RestockType, type RestoreInfo$4 as RestoreInfo, type context$6_ScheduledAction as ScheduledAction, type context$6_ShipmentDetails as ShipmentDetails, type context$6_ShippingInfo as ShippingInfo, type context$6_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type context$6_ShippingPriceData as ShippingPriceData, type context$6_ShippingRefund as ShippingRefund, type context$6_SnapshotMessage as SnapshotMessage, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, type context$6_Street as Street, SubscriptionFrequency$1 as SubscriptionFrequency, type context$6_SubscriptionInfo as SubscriptionInfo, type context$6_SubscriptionOptionInfo as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$6_Totals as Totals, type context$6_TrackingInfo as TrackingInfo, context$6_TransactionStatus as TransactionStatus, type context$6_TriggerRefundRequest as TriggerRefundRequest, type context$6_TriggerRefundResponse as TriggerRefundResponse, type context$6_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type context$6_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type context$6_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type context$6_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type context$6_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type context$6_UpdatePaymentsRequest as UpdatePaymentsRequest, type context$6_UpdatePaymentsResponse as UpdatePaymentsResponse, type context$6_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type context$6_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type context$6_V2InvoiceInfo as V2InvoiceInfo, type context$6_V2Refund as V2Refund, type context$6_VatId as VatId, context$6_VatType as VatType, WebhookIdentityType$4 as WebhookIdentityType, WeightUnit$1 as WeightUnit, type context$6__publicAddPaymentsType as _publicAddPaymentsType, type context$6__publicBulkUpdatePaymentStatusesType as _publicBulkUpdatePaymentStatusesType, type context$6__publicListTransactionsForMultipleOrdersType as _publicListTransactionsForMultipleOrdersType, type context$6__publicListTransactionsForSingleOrderType as _publicListTransactionsForSingleOrderType, type context$6__publicOnOrderTransactionsUpdatedType as _publicOnOrderTransactionsUpdatedType, type context$6__publicUpdatePaymentStatusType as _publicUpdatePaymentStatusType, context$6_addPayments as addPayments, context$6_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, context$6_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, context$6_listTransactionsForSingleOrder as listTransactionsForSingleOrder, context$6_onOrderTransactionsUpdated as onOrderTransactionsUpdated, onOrderTransactionsUpdated$1 as publicOnOrderTransactionsUpdated, context$6_updatePaymentStatus as updatePaymentStatus };
|
|
27011
27543
|
}
|
|
27012
27544
|
|
|
27013
27545
|
interface OrdersSettings {
|
|
@@ -27235,13 +27767,21 @@ interface OrdersSettingsUpdatedEnvelope {
|
|
|
27235
27767
|
metadata: EventMetadata$3;
|
|
27236
27768
|
}
|
|
27237
27769
|
|
|
27770
|
+
declare function getOrdersSettings$1(httpClient: HttpClient): () => Promise<GetOrdersSettingsResponse & GetOrdersSettingsResponseNonNullableFields>;
|
|
27771
|
+
declare function updateOrdersSettings$1(httpClient: HttpClient): (ordersSettings: OrdersSettings) => Promise<UpdateOrdersSettingsResponse & UpdateOrdersSettingsResponseNonNullableFields>;
|
|
27772
|
+
declare const onOrdersSettingsUpdated$1: EventDefinition<OrdersSettingsUpdatedEnvelope, "wix.ecom.v1.orders_settings_updated">;
|
|
27773
|
+
|
|
27238
27774
|
declare function createRESTModule$5<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
27239
27775
|
|
|
27240
27776
|
declare function createEventModule$3<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
27241
27777
|
|
|
27242
|
-
|
|
27243
|
-
declare const
|
|
27244
|
-
|
|
27778
|
+
type _publicGetOrdersSettingsType = typeof getOrdersSettings$1;
|
|
27779
|
+
declare const getOrdersSettings: ReturnType<typeof createRESTModule$5<_publicGetOrdersSettingsType>>;
|
|
27780
|
+
type _publicUpdateOrdersSettingsType = typeof updateOrdersSettings$1;
|
|
27781
|
+
declare const updateOrdersSettings: ReturnType<typeof createRESTModule$5<_publicUpdateOrdersSettingsType>>;
|
|
27782
|
+
|
|
27783
|
+
type _publicOnOrdersSettingsUpdatedType = typeof onOrdersSettingsUpdated$1;
|
|
27784
|
+
declare const onOrdersSettingsUpdated: ReturnType<typeof createEventModule$3<_publicOnOrdersSettingsUpdatedType>>;
|
|
27245
27785
|
|
|
27246
27786
|
type context$5_DeleteOrdersSettingsRequest = DeleteOrdersSettingsRequest;
|
|
27247
27787
|
type context$5_DeleteOrdersSettingsResponse = DeleteOrdersSettingsResponse;
|
|
@@ -27257,11 +27797,14 @@ type context$5_OrdersSettingsUpdatedEnvelope = OrdersSettingsUpdatedEnvelope;
|
|
|
27257
27797
|
type context$5_UpdateOrdersSettingsRequest = UpdateOrdersSettingsRequest;
|
|
27258
27798
|
type context$5_UpdateOrdersSettingsResponse = UpdateOrdersSettingsResponse;
|
|
27259
27799
|
type context$5_UpdateOrdersSettingsResponseNonNullableFields = UpdateOrdersSettingsResponseNonNullableFields;
|
|
27800
|
+
type context$5__publicGetOrdersSettingsType = _publicGetOrdersSettingsType;
|
|
27801
|
+
type context$5__publicOnOrdersSettingsUpdatedType = _publicOnOrdersSettingsUpdatedType;
|
|
27802
|
+
type context$5__publicUpdateOrdersSettingsType = _publicUpdateOrdersSettingsType;
|
|
27260
27803
|
declare const context$5_getOrdersSettings: typeof getOrdersSettings;
|
|
27261
27804
|
declare const context$5_onOrdersSettingsUpdated: typeof onOrdersSettingsUpdated;
|
|
27262
27805
|
declare const context$5_updateOrdersSettings: typeof updateOrdersSettings;
|
|
27263
27806
|
declare namespace context$5 {
|
|
27264
|
-
export { type ActionEvent$3 as ActionEvent, type BaseEventMetadata$3 as BaseEventMetadata, type context$5_DeleteOrdersSettingsRequest as DeleteOrdersSettingsRequest, type context$5_DeleteOrdersSettingsResponse as DeleteOrdersSettingsResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$3 as EventMetadata, type context$5_GetOrdersSettingsRequest as GetOrdersSettingsRequest, type context$5_GetOrdersSettingsResponse as GetOrdersSettingsResponse, type context$5_GetOrdersSettingsResponseNonNullableFields as GetOrdersSettingsResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, context$5_InventoryUpdateTrigger as InventoryUpdateTrigger, type context$5_ListOrdersSettingsRequest as ListOrdersSettingsRequest, type context$5_ListOrdersSettingsResponse as ListOrdersSettingsResponse, type MessageEnvelope$3 as MessageEnvelope, type context$5_OrdersSettings as OrdersSettings, type context$5_OrdersSettingsUpdatedEnvelope as OrdersSettingsUpdatedEnvelope, type RestoreInfo$3 as RestoreInfo, type context$5_UpdateOrdersSettingsRequest as UpdateOrdersSettingsRequest, type context$5_UpdateOrdersSettingsResponse as UpdateOrdersSettingsResponse, type context$5_UpdateOrdersSettingsResponseNonNullableFields as UpdateOrdersSettingsResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, context$5_getOrdersSettings as getOrdersSettings, context$5_onOrdersSettingsUpdated as onOrdersSettingsUpdated, context$5_updateOrdersSettings as updateOrdersSettings };
|
|
27807
|
+
export { type ActionEvent$3 as ActionEvent, type BaseEventMetadata$3 as BaseEventMetadata, type context$5_DeleteOrdersSettingsRequest as DeleteOrdersSettingsRequest, type context$5_DeleteOrdersSettingsResponse as DeleteOrdersSettingsResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$3 as EventMetadata, type context$5_GetOrdersSettingsRequest as GetOrdersSettingsRequest, type context$5_GetOrdersSettingsResponse as GetOrdersSettingsResponse, type context$5_GetOrdersSettingsResponseNonNullableFields as GetOrdersSettingsResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, context$5_InventoryUpdateTrigger as InventoryUpdateTrigger, type context$5_ListOrdersSettingsRequest as ListOrdersSettingsRequest, type context$5_ListOrdersSettingsResponse as ListOrdersSettingsResponse, type MessageEnvelope$3 as MessageEnvelope, type context$5_OrdersSettings as OrdersSettings, type context$5_OrdersSettingsUpdatedEnvelope as OrdersSettingsUpdatedEnvelope, type RestoreInfo$3 as RestoreInfo, type context$5_UpdateOrdersSettingsRequest as UpdateOrdersSettingsRequest, type context$5_UpdateOrdersSettingsResponse as UpdateOrdersSettingsResponse, type context$5_UpdateOrdersSettingsResponseNonNullableFields as UpdateOrdersSettingsResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, type context$5__publicGetOrdersSettingsType as _publicGetOrdersSettingsType, type context$5__publicOnOrdersSettingsUpdatedType as _publicOnOrdersSettingsUpdatedType, type context$5__publicUpdateOrdersSettingsType as _publicUpdateOrdersSettingsType, context$5_getOrdersSettings as getOrdersSettings, context$5_onOrdersSettingsUpdated as onOrdersSettingsUpdated, onOrdersSettingsUpdated$1 as publicOnOrdersSettingsUpdated, context$5_updateOrdersSettings as updateOrdersSettings };
|
|
27265
27808
|
}
|
|
27266
27809
|
|
|
27267
27810
|
/** PickupLocation is the main entity of PickupLocations that can be used for lorem ipsum dolor */
|
|
@@ -27846,21 +28389,47 @@ interface PickupLocationsQueryBuilder {
|
|
|
27846
28389
|
find: () => Promise<PickupLocationsQueryResult>;
|
|
27847
28390
|
}
|
|
27848
28391
|
|
|
28392
|
+
declare function createPickupLocation$1(httpClient: HttpClient): (pickupLocation: PickupLocation) => Promise<PickupLocation & PickupLocationNonNullableFields>;
|
|
28393
|
+
declare function getPickupLocation$1(httpClient: HttpClient): (pickupLocationId: string) => Promise<PickupLocation & PickupLocationNonNullableFields>;
|
|
28394
|
+
declare function updatePickupLocation$1(httpClient: HttpClient): (_id: string | null, pickupLocation: UpdatePickupLocation) => Promise<PickupLocation & PickupLocationNonNullableFields>;
|
|
28395
|
+
declare function deletePickupLocation$1(httpClient: HttpClient): (pickupLocationId: string) => Promise<void>;
|
|
28396
|
+
declare function queryPickupLocation$1(httpClient: HttpClient): () => PickupLocationsQueryBuilder;
|
|
28397
|
+
declare function bulkCreatePickupLocation$1(httpClient: HttpClient): (pickupLocations: PickupLocation[]) => Promise<BulkCreatePickupLocationResponse & BulkCreatePickupLocationResponseNonNullableFields>;
|
|
28398
|
+
declare function bulkUpdatePickupLocation$1(httpClient: HttpClient): (pickupLocations: PickupLocation[]) => Promise<BulkUpdatePickupLocationResponse & BulkUpdatePickupLocationResponseNonNullableFields>;
|
|
28399
|
+
declare function bulkDeletePickupLocation$1(httpClient: HttpClient): (pickupLocationIds: string[]) => Promise<BulkDeletePickupLocationResponse & BulkDeletePickupLocationResponseNonNullableFields>;
|
|
28400
|
+
declare const onPickupLocationCreated$1: EventDefinition<PickupLocationCreatedEnvelope, "wix.ecom.v1.pickup_location_created">;
|
|
28401
|
+
declare const onPickupLocationUpdated$1: EventDefinition<PickupLocationUpdatedEnvelope, "wix.ecom.v1.pickup_location_updated">;
|
|
28402
|
+
declare const onPickupLocationDeleted$1: EventDefinition<PickupLocationDeletedEnvelope, "wix.ecom.v1.pickup_location_deleted">;
|
|
28403
|
+
|
|
27849
28404
|
declare function createRESTModule$4<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
27850
28405
|
|
|
27851
28406
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
27852
28407
|
|
|
27853
|
-
|
|
27854
|
-
declare const
|
|
27855
|
-
|
|
27856
|
-
declare const
|
|
27857
|
-
|
|
27858
|
-
declare const
|
|
27859
|
-
|
|
27860
|
-
declare const
|
|
27861
|
-
|
|
27862
|
-
declare const
|
|
27863
|
-
|
|
28408
|
+
type _publicCreatePickupLocationType = typeof createPickupLocation$1;
|
|
28409
|
+
declare const createPickupLocation: ReturnType<typeof createRESTModule$4<_publicCreatePickupLocationType>>;
|
|
28410
|
+
type _publicGetPickupLocationType = typeof getPickupLocation$1;
|
|
28411
|
+
declare const getPickupLocation: ReturnType<typeof createRESTModule$4<_publicGetPickupLocationType>>;
|
|
28412
|
+
type _publicUpdatePickupLocationType = typeof updatePickupLocation$1;
|
|
28413
|
+
declare const updatePickupLocation: ReturnType<typeof createRESTModule$4<_publicUpdatePickupLocationType>>;
|
|
28414
|
+
type _publicDeletePickupLocationType = typeof deletePickupLocation$1;
|
|
28415
|
+
declare const deletePickupLocation: ReturnType<typeof createRESTModule$4<_publicDeletePickupLocationType>>;
|
|
28416
|
+
type _publicQueryPickupLocationType = typeof queryPickupLocation$1;
|
|
28417
|
+
declare const queryPickupLocation: ReturnType<typeof createRESTModule$4<_publicQueryPickupLocationType>>;
|
|
28418
|
+
type _publicBulkCreatePickupLocationType = typeof bulkCreatePickupLocation$1;
|
|
28419
|
+
declare const bulkCreatePickupLocation: ReturnType<typeof createRESTModule$4<_publicBulkCreatePickupLocationType>>;
|
|
28420
|
+
type _publicBulkUpdatePickupLocationType = typeof bulkUpdatePickupLocation$1;
|
|
28421
|
+
declare const bulkUpdatePickupLocation: ReturnType<typeof createRESTModule$4<_publicBulkUpdatePickupLocationType>>;
|
|
28422
|
+
type _publicBulkDeletePickupLocationType = typeof bulkDeletePickupLocation$1;
|
|
28423
|
+
declare const bulkDeletePickupLocation: ReturnType<typeof createRESTModule$4<_publicBulkDeletePickupLocationType>>;
|
|
28424
|
+
|
|
28425
|
+
type _publicOnPickupLocationCreatedType = typeof onPickupLocationCreated$1;
|
|
28426
|
+
declare const onPickupLocationCreated: ReturnType<typeof createEventModule$2<_publicOnPickupLocationCreatedType>>;
|
|
28427
|
+
|
|
28428
|
+
type _publicOnPickupLocationUpdatedType = typeof onPickupLocationUpdated$1;
|
|
28429
|
+
declare const onPickupLocationUpdated: ReturnType<typeof createEventModule$2<_publicOnPickupLocationUpdatedType>>;
|
|
28430
|
+
|
|
28431
|
+
type _publicOnPickupLocationDeletedType = typeof onPickupLocationDeleted$1;
|
|
28432
|
+
declare const onPickupLocationDeleted: ReturnType<typeof createEventModule$2<_publicOnPickupLocationDeletedType>>;
|
|
27864
28433
|
|
|
27865
28434
|
type context$4_AddressStreetOneOf = AddressStreetOneOf;
|
|
27866
28435
|
type context$4_BulkCreatePickupLocationRequest = BulkCreatePickupLocationRequest;
|
|
@@ -27900,6 +28469,17 @@ type context$4_UpdatePickupLocation = UpdatePickupLocation;
|
|
|
27900
28469
|
type context$4_UpdatePickupLocationRequest = UpdatePickupLocationRequest;
|
|
27901
28470
|
type context$4_UpdatePickupLocationResponse = UpdatePickupLocationResponse;
|
|
27902
28471
|
type context$4_UpdatePickupLocationResponseNonNullableFields = UpdatePickupLocationResponseNonNullableFields;
|
|
28472
|
+
type context$4__publicBulkCreatePickupLocationType = _publicBulkCreatePickupLocationType;
|
|
28473
|
+
type context$4__publicBulkDeletePickupLocationType = _publicBulkDeletePickupLocationType;
|
|
28474
|
+
type context$4__publicBulkUpdatePickupLocationType = _publicBulkUpdatePickupLocationType;
|
|
28475
|
+
type context$4__publicCreatePickupLocationType = _publicCreatePickupLocationType;
|
|
28476
|
+
type context$4__publicDeletePickupLocationType = _publicDeletePickupLocationType;
|
|
28477
|
+
type context$4__publicGetPickupLocationType = _publicGetPickupLocationType;
|
|
28478
|
+
type context$4__publicOnPickupLocationCreatedType = _publicOnPickupLocationCreatedType;
|
|
28479
|
+
type context$4__publicOnPickupLocationDeletedType = _publicOnPickupLocationDeletedType;
|
|
28480
|
+
type context$4__publicOnPickupLocationUpdatedType = _publicOnPickupLocationUpdatedType;
|
|
28481
|
+
type context$4__publicQueryPickupLocationType = _publicQueryPickupLocationType;
|
|
28482
|
+
type context$4__publicUpdatePickupLocationType = _publicUpdatePickupLocationType;
|
|
27903
28483
|
declare const context$4_bulkCreatePickupLocation: typeof bulkCreatePickupLocation;
|
|
27904
28484
|
declare const context$4_bulkDeletePickupLocation: typeof bulkDeletePickupLocation;
|
|
27905
28485
|
declare const context$4_bulkUpdatePickupLocation: typeof bulkUpdatePickupLocation;
|
|
@@ -27912,7 +28492,7 @@ declare const context$4_onPickupLocationUpdated: typeof onPickupLocationUpdated;
|
|
|
27912
28492
|
declare const context$4_queryPickupLocation: typeof queryPickupLocation;
|
|
27913
28493
|
declare const context$4_updatePickupLocation: typeof updatePickupLocation;
|
|
27914
28494
|
declare namespace context$4 {
|
|
27915
|
-
export { type ActionEvent$2 as ActionEvent, type Address$2 as Address, type context$4_AddressStreetOneOf as AddressStreetOneOf, type ApplicationError$1 as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type context$4_BulkCreatePickupLocationRequest as BulkCreatePickupLocationRequest, type context$4_BulkCreatePickupLocationResponse as BulkCreatePickupLocationResponse, type context$4_BulkCreatePickupLocationResponseNonNullableFields as BulkCreatePickupLocationResponseNonNullableFields, type context$4_BulkDeletePickupLocationRequest as BulkDeletePickupLocationRequest, type context$4_BulkDeletePickupLocationResponse as BulkDeletePickupLocationResponse, type context$4_BulkDeletePickupLocationResponseNonNullableFields as BulkDeletePickupLocationResponseNonNullableFields, type context$4_BulkUpdatePickupLocationRequest as BulkUpdatePickupLocationRequest, type context$4_BulkUpdatePickupLocationResponse as BulkUpdatePickupLocationResponse, type context$4_BulkUpdatePickupLocationResponseNonNullableFields as BulkUpdatePickupLocationResponseNonNullableFields, type Condition$1 as Condition, ConditionType$1 as ConditionType, type ConditionalRates$1 as ConditionalRates, type context$4_CreatePickupLocationRequest as CreatePickupLocationRequest, type context$4_CreatePickupLocationResponse as CreatePickupLocationResponse, type context$4_CreatePickupLocationResponseNonNullableFields as CreatePickupLocationResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$2 as Cursors, type context$4_DeletePickupLocationRequest as DeletePickupLocationRequest, type context$4_DeletePickupLocationResponse as DeletePickupLocationResponse, type context$4_DiffmatokyPayload as DiffmatokyPayload, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$4_ErrorInformation as ErrorInformation, type EventMetadata$2 as EventMetadata, type context$4_GetPickupLocationRequest as GetPickupLocationRequest, type context$4_GetPickupLocationResponse as GetPickupLocationResponse, type context$4_GetPickupLocationResponseNonNullableFields as GetPickupLocationResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, LogicalOperator$1 as LogicalOperator, type MessageEnvelope$2 as MessageEnvelope, type context$4_Paging as Paging, type context$4_PickupLocation as PickupLocation, type context$4_PickupLocationCreatedEnvelope as PickupLocationCreatedEnvelope, type context$4_PickupLocationDeletedEnvelope as PickupLocationDeletedEnvelope, type context$4_PickupLocationError as PickupLocationError, type context$4_PickupLocationNonNullableFields as PickupLocationNonNullableFields, type context$4_PickupLocationUpdatedEnvelope as PickupLocationUpdatedEnvelope, type context$4_PickupLocationsQueryBuilder as PickupLocationsQueryBuilder, type context$4_PickupLocationsQueryResult as PickupLocationsQueryResult, type context$4_QueryPickupLocationRequest as QueryPickupLocationRequest, type context$4_QueryPickupLocationResponse as QueryPickupLocationResponse, type context$4_QueryPickupLocationResponseNonNullableFields as QueryPickupLocationResponseNonNullableFields, type context$4_QueryV2 as QueryV2, type context$4_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RestoreInfo$2 as RestoreInfo, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type StreetAddress$2 as StreetAddress, type context$4_UpdatePickupLocation as UpdatePickupLocation, type context$4_UpdatePickupLocationRequest as UpdatePickupLocationRequest, type context$4_UpdatePickupLocationResponse as UpdatePickupLocationResponse, type context$4_UpdatePickupLocationResponseNonNullableFields as UpdatePickupLocationResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, context$4_bulkCreatePickupLocation as bulkCreatePickupLocation, context$4_bulkDeletePickupLocation as bulkDeletePickupLocation, context$4_bulkUpdatePickupLocation as bulkUpdatePickupLocation, context$4_createPickupLocation as createPickupLocation, context$4_deletePickupLocation as deletePickupLocation, context$4_getPickupLocation as getPickupLocation, context$4_onPickupLocationCreated as onPickupLocationCreated, context$4_onPickupLocationDeleted as onPickupLocationDeleted, context$4_onPickupLocationUpdated as onPickupLocationUpdated, context$4_queryPickupLocation as queryPickupLocation, context$4_updatePickupLocation as updatePickupLocation };
|
|
28495
|
+
export { type ActionEvent$2 as ActionEvent, type Address$2 as Address, type context$4_AddressStreetOneOf as AddressStreetOneOf, type ApplicationError$1 as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type context$4_BulkCreatePickupLocationRequest as BulkCreatePickupLocationRequest, type context$4_BulkCreatePickupLocationResponse as BulkCreatePickupLocationResponse, type context$4_BulkCreatePickupLocationResponseNonNullableFields as BulkCreatePickupLocationResponseNonNullableFields, type context$4_BulkDeletePickupLocationRequest as BulkDeletePickupLocationRequest, type context$4_BulkDeletePickupLocationResponse as BulkDeletePickupLocationResponse, type context$4_BulkDeletePickupLocationResponseNonNullableFields as BulkDeletePickupLocationResponseNonNullableFields, type context$4_BulkUpdatePickupLocationRequest as BulkUpdatePickupLocationRequest, type context$4_BulkUpdatePickupLocationResponse as BulkUpdatePickupLocationResponse, type context$4_BulkUpdatePickupLocationResponseNonNullableFields as BulkUpdatePickupLocationResponseNonNullableFields, type Condition$1 as Condition, ConditionType$1 as ConditionType, type ConditionalRates$1 as ConditionalRates, type context$4_CreatePickupLocationRequest as CreatePickupLocationRequest, type context$4_CreatePickupLocationResponse as CreatePickupLocationResponse, type context$4_CreatePickupLocationResponseNonNullableFields as CreatePickupLocationResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$2 as Cursors, type context$4_DeletePickupLocationRequest as DeletePickupLocationRequest, type context$4_DeletePickupLocationResponse as DeletePickupLocationResponse, type context$4_DiffmatokyPayload as DiffmatokyPayload, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$4_ErrorInformation as ErrorInformation, type EventMetadata$2 as EventMetadata, type context$4_GetPickupLocationRequest as GetPickupLocationRequest, type context$4_GetPickupLocationResponse as GetPickupLocationResponse, type context$4_GetPickupLocationResponseNonNullableFields as GetPickupLocationResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, LogicalOperator$1 as LogicalOperator, type MessageEnvelope$2 as MessageEnvelope, type context$4_Paging as Paging, type context$4_PickupLocation as PickupLocation, type context$4_PickupLocationCreatedEnvelope as PickupLocationCreatedEnvelope, type context$4_PickupLocationDeletedEnvelope as PickupLocationDeletedEnvelope, type context$4_PickupLocationError as PickupLocationError, type context$4_PickupLocationNonNullableFields as PickupLocationNonNullableFields, type context$4_PickupLocationUpdatedEnvelope as PickupLocationUpdatedEnvelope, type context$4_PickupLocationsQueryBuilder as PickupLocationsQueryBuilder, type context$4_PickupLocationsQueryResult as PickupLocationsQueryResult, type context$4_QueryPickupLocationRequest as QueryPickupLocationRequest, type context$4_QueryPickupLocationResponse as QueryPickupLocationResponse, type context$4_QueryPickupLocationResponseNonNullableFields as QueryPickupLocationResponseNonNullableFields, type context$4_QueryV2 as QueryV2, type context$4_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RestoreInfo$2 as RestoreInfo, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type StreetAddress$2 as StreetAddress, type context$4_UpdatePickupLocation as UpdatePickupLocation, type context$4_UpdatePickupLocationRequest as UpdatePickupLocationRequest, type context$4_UpdatePickupLocationResponse as UpdatePickupLocationResponse, type context$4_UpdatePickupLocationResponseNonNullableFields as UpdatePickupLocationResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type context$4__publicBulkCreatePickupLocationType as _publicBulkCreatePickupLocationType, type context$4__publicBulkDeletePickupLocationType as _publicBulkDeletePickupLocationType, type context$4__publicBulkUpdatePickupLocationType as _publicBulkUpdatePickupLocationType, type context$4__publicCreatePickupLocationType as _publicCreatePickupLocationType, type context$4__publicDeletePickupLocationType as _publicDeletePickupLocationType, type context$4__publicGetPickupLocationType as _publicGetPickupLocationType, type context$4__publicOnPickupLocationCreatedType as _publicOnPickupLocationCreatedType, type context$4__publicOnPickupLocationDeletedType as _publicOnPickupLocationDeletedType, type context$4__publicOnPickupLocationUpdatedType as _publicOnPickupLocationUpdatedType, type context$4__publicQueryPickupLocationType as _publicQueryPickupLocationType, type context$4__publicUpdatePickupLocationType as _publicUpdatePickupLocationType, context$4_bulkCreatePickupLocation as bulkCreatePickupLocation, context$4_bulkDeletePickupLocation as bulkDeletePickupLocation, context$4_bulkUpdatePickupLocation as bulkUpdatePickupLocation, context$4_createPickupLocation as createPickupLocation, context$4_deletePickupLocation as deletePickupLocation, context$4_getPickupLocation as getPickupLocation, context$4_onPickupLocationCreated as onPickupLocationCreated, context$4_onPickupLocationDeleted as onPickupLocationDeleted, context$4_onPickupLocationUpdated as onPickupLocationUpdated, onPickupLocationCreated$1 as publicOnPickupLocationCreated, onPickupLocationDeleted$1 as publicOnPickupLocationDeleted, onPickupLocationUpdated$1 as publicOnPickupLocationUpdated, context$4_queryPickupLocation as queryPickupLocation, context$4_updatePickupLocation as updatePickupLocation };
|
|
27916
28496
|
}
|
|
27917
28497
|
|
|
27918
28498
|
interface ShippingOption$1 {
|
|
@@ -28404,19 +28984,41 @@ interface UpdateExtendedFieldsOptions$1 {
|
|
|
28404
28984
|
namespaceData: Record<string, any> | null;
|
|
28405
28985
|
}
|
|
28406
28986
|
|
|
28987
|
+
declare function createShippingOption$1(httpClient: HttpClient): (shippingOption: ShippingOption$1) => Promise<ShippingOption$1 & ShippingOptionNonNullableFields$1>;
|
|
28988
|
+
declare function getShippingOption$1(httpClient: HttpClient): (shippingOptionId: string) => Promise<ShippingOption$1 & ShippingOptionNonNullableFields$1>;
|
|
28989
|
+
declare function updateShippingOption$1(httpClient: HttpClient): (_id: string | null, shippingOption: UpdateShippingOption) => Promise<ShippingOption$1 & ShippingOptionNonNullableFields$1>;
|
|
28990
|
+
declare function deleteShippingOption$1(httpClient: HttpClient): (shippingOptionId: string) => Promise<void>;
|
|
28991
|
+
declare function queryShippingOptions$1(httpClient: HttpClient): () => ShippingOptionsQueryBuilder;
|
|
28992
|
+
declare function updateExtendedFields$3(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions$1) => Promise<UpdateExtendedFieldsResponse$1 & UpdateExtendedFieldsResponseNonNullableFields$1>;
|
|
28993
|
+
declare const onShippingOptionCreated$1: EventDefinition<ShippingOptionCreatedEnvelope, "wix.ecom.v1.shipping_option_created">;
|
|
28994
|
+
declare const onShippingOptionUpdated$1: EventDefinition<ShippingOptionUpdatedEnvelope, "wix.ecom.v1.shipping_option_updated">;
|
|
28995
|
+
declare const onShippingOptionDeleted$1: EventDefinition<ShippingOptionDeletedEnvelope, "wix.ecom.v1.shipping_option_deleted">;
|
|
28996
|
+
|
|
28407
28997
|
declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
28408
28998
|
|
|
28409
28999
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
28410
29000
|
|
|
28411
|
-
|
|
28412
|
-
declare const
|
|
28413
|
-
|
|
28414
|
-
declare const
|
|
28415
|
-
|
|
28416
|
-
declare const
|
|
28417
|
-
|
|
28418
|
-
declare const
|
|
28419
|
-
|
|
29001
|
+
type _publicCreateShippingOptionType = typeof createShippingOption$1;
|
|
29002
|
+
declare const createShippingOption: ReturnType<typeof createRESTModule$3<_publicCreateShippingOptionType>>;
|
|
29003
|
+
type _publicGetShippingOptionType = typeof getShippingOption$1;
|
|
29004
|
+
declare const getShippingOption: ReturnType<typeof createRESTModule$3<_publicGetShippingOptionType>>;
|
|
29005
|
+
type _publicUpdateShippingOptionType = typeof updateShippingOption$1;
|
|
29006
|
+
declare const updateShippingOption: ReturnType<typeof createRESTModule$3<_publicUpdateShippingOptionType>>;
|
|
29007
|
+
type _publicDeleteShippingOptionType = typeof deleteShippingOption$1;
|
|
29008
|
+
declare const deleteShippingOption: ReturnType<typeof createRESTModule$3<_publicDeleteShippingOptionType>>;
|
|
29009
|
+
type _publicQueryShippingOptionsType = typeof queryShippingOptions$1;
|
|
29010
|
+
declare const queryShippingOptions: ReturnType<typeof createRESTModule$3<_publicQueryShippingOptionsType>>;
|
|
29011
|
+
type _publicUpdateExtendedFieldsType$1 = typeof updateExtendedFields$3;
|
|
29012
|
+
declare const updateExtendedFields$2: ReturnType<typeof createRESTModule$3<_publicUpdateExtendedFieldsType>>;
|
|
29013
|
+
|
|
29014
|
+
type _publicOnShippingOptionCreatedType = typeof onShippingOptionCreated$1;
|
|
29015
|
+
declare const onShippingOptionCreated: ReturnType<typeof createEventModule$1<_publicOnShippingOptionCreatedType>>;
|
|
29016
|
+
|
|
29017
|
+
type _publicOnShippingOptionUpdatedType = typeof onShippingOptionUpdated$1;
|
|
29018
|
+
declare const onShippingOptionUpdated: ReturnType<typeof createEventModule$1<_publicOnShippingOptionUpdatedType>>;
|
|
29019
|
+
|
|
29020
|
+
type _publicOnShippingOptionDeletedType = typeof onShippingOptionDeleted$1;
|
|
29021
|
+
declare const onShippingOptionDeleted: ReturnType<typeof createEventModule$1<_publicOnShippingOptionDeletedType>>;
|
|
28420
29022
|
|
|
28421
29023
|
type context$3_Condition = Condition;
|
|
28422
29024
|
type context$3_ConditionType = ConditionType;
|
|
@@ -28444,6 +29046,14 @@ type context$3_UpdateShippingOption = UpdateShippingOption;
|
|
|
28444
29046
|
type context$3_UpdateShippingOptionRequest = UpdateShippingOptionRequest;
|
|
28445
29047
|
type context$3_UpdateShippingOptionResponse = UpdateShippingOptionResponse;
|
|
28446
29048
|
type context$3_UpdateShippingOptionResponseNonNullableFields = UpdateShippingOptionResponseNonNullableFields;
|
|
29049
|
+
type context$3__publicCreateShippingOptionType = _publicCreateShippingOptionType;
|
|
29050
|
+
type context$3__publicDeleteShippingOptionType = _publicDeleteShippingOptionType;
|
|
29051
|
+
type context$3__publicGetShippingOptionType = _publicGetShippingOptionType;
|
|
29052
|
+
type context$3__publicOnShippingOptionCreatedType = _publicOnShippingOptionCreatedType;
|
|
29053
|
+
type context$3__publicOnShippingOptionDeletedType = _publicOnShippingOptionDeletedType;
|
|
29054
|
+
type context$3__publicOnShippingOptionUpdatedType = _publicOnShippingOptionUpdatedType;
|
|
29055
|
+
type context$3__publicQueryShippingOptionsType = _publicQueryShippingOptionsType;
|
|
29056
|
+
type context$3__publicUpdateShippingOptionType = _publicUpdateShippingOptionType;
|
|
28447
29057
|
declare const context$3_createShippingOption: typeof createShippingOption;
|
|
28448
29058
|
declare const context$3_deleteShippingOption: typeof deleteShippingOption;
|
|
28449
29059
|
declare const context$3_getShippingOption: typeof getShippingOption;
|
|
@@ -28453,7 +29063,7 @@ declare const context$3_onShippingOptionUpdated: typeof onShippingOptionUpdated;
|
|
|
28453
29063
|
declare const context$3_queryShippingOptions: typeof queryShippingOptions;
|
|
28454
29064
|
declare const context$3_updateShippingOption: typeof updateShippingOption;
|
|
28455
29065
|
declare namespace context$3 {
|
|
28456
|
-
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type context$3_Condition as Condition, context$3_ConditionType as ConditionType, type context$3_ConditionalRates as ConditionalRates, type context$3_CreateShippingOptionRequest as CreateShippingOptionRequest, type context$3_CreateShippingOptionResponse as CreateShippingOptionResponse, type context$3_CreateShippingOptionResponseNonNullableFields as CreateShippingOptionResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type context$3_DeleteShippingOptionRequest as DeleteShippingOptionRequest, type context$3_DeleteShippingOptionResponse as DeleteShippingOptionResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type context$3_GetShippingOptionRequest as GetShippingOptionRequest, type context$3_GetShippingOptionResponse as GetShippingOptionResponse, type context$3_GetShippingOptionResponseNonNullableFields as GetShippingOptionResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, context$3_LogicalOperator as LogicalOperator, type MessageEnvelope$1 as MessageEnvelope, type context$3_QueryShippingOptionsRequest as QueryShippingOptionsRequest, type context$3_QueryShippingOptionsResponse as QueryShippingOptionsResponse, type context$3_QueryShippingOptionsResponseNonNullableFields as QueryShippingOptionsResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, type ShippingOption$1 as ShippingOption, type context$3_ShippingOptionCreatedEnvelope as ShippingOptionCreatedEnvelope, type context$3_ShippingOptionDeletedEnvelope as ShippingOptionDeletedEnvelope, type ShippingOptionNonNullableFields$1 as ShippingOptionNonNullableFields, type context$3_ShippingOptionUpdatedEnvelope as ShippingOptionUpdatedEnvelope, type context$3_ShippingOptionsQueryBuilder as ShippingOptionsQueryBuilder, type context$3_ShippingOptionsQueryResult as ShippingOptionsQueryResult, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type context$3_UpdateShippingOption as UpdateShippingOption, type context$3_UpdateShippingOptionRequest as UpdateShippingOptionRequest, type context$3_UpdateShippingOptionResponse as UpdateShippingOptionResponse, type context$3_UpdateShippingOptionResponseNonNullableFields as UpdateShippingOptionResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, context$3_createShippingOption as createShippingOption, context$3_deleteShippingOption as deleteShippingOption, context$3_getShippingOption as getShippingOption, context$3_onShippingOptionCreated as onShippingOptionCreated, context$3_onShippingOptionDeleted as onShippingOptionDeleted, context$3_onShippingOptionUpdated as onShippingOptionUpdated, context$3_queryShippingOptions as queryShippingOptions, updateExtendedFields$
|
|
29066
|
+
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type context$3_Condition as Condition, context$3_ConditionType as ConditionType, type context$3_ConditionalRates as ConditionalRates, type context$3_CreateShippingOptionRequest as CreateShippingOptionRequest, type context$3_CreateShippingOptionResponse as CreateShippingOptionResponse, type context$3_CreateShippingOptionResponseNonNullableFields as CreateShippingOptionResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type context$3_DeleteShippingOptionRequest as DeleteShippingOptionRequest, type context$3_DeleteShippingOptionResponse as DeleteShippingOptionResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type context$3_GetShippingOptionRequest as GetShippingOptionRequest, type context$3_GetShippingOptionResponse as GetShippingOptionResponse, type context$3_GetShippingOptionResponseNonNullableFields as GetShippingOptionResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, context$3_LogicalOperator as LogicalOperator, type MessageEnvelope$1 as MessageEnvelope, type context$3_QueryShippingOptionsRequest as QueryShippingOptionsRequest, type context$3_QueryShippingOptionsResponse as QueryShippingOptionsResponse, type context$3_QueryShippingOptionsResponseNonNullableFields as QueryShippingOptionsResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, type ShippingOption$1 as ShippingOption, type context$3_ShippingOptionCreatedEnvelope as ShippingOptionCreatedEnvelope, type context$3_ShippingOptionDeletedEnvelope as ShippingOptionDeletedEnvelope, type ShippingOptionNonNullableFields$1 as ShippingOptionNonNullableFields, type context$3_ShippingOptionUpdatedEnvelope as ShippingOptionUpdatedEnvelope, type context$3_ShippingOptionsQueryBuilder as ShippingOptionsQueryBuilder, type context$3_ShippingOptionsQueryResult as ShippingOptionsQueryResult, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type UpdateExtendedFieldsOptions$1 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$1 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$1 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$1 as UpdateExtendedFieldsResponseNonNullableFields, type context$3_UpdateShippingOption as UpdateShippingOption, type context$3_UpdateShippingOptionRequest as UpdateShippingOptionRequest, type context$3_UpdateShippingOptionResponse as UpdateShippingOptionResponse, type context$3_UpdateShippingOptionResponseNonNullableFields as UpdateShippingOptionResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, type context$3__publicCreateShippingOptionType as _publicCreateShippingOptionType, type context$3__publicDeleteShippingOptionType as _publicDeleteShippingOptionType, type context$3__publicGetShippingOptionType as _publicGetShippingOptionType, type context$3__publicOnShippingOptionCreatedType as _publicOnShippingOptionCreatedType, type context$3__publicOnShippingOptionDeletedType as _publicOnShippingOptionDeletedType, type context$3__publicOnShippingOptionUpdatedType as _publicOnShippingOptionUpdatedType, type context$3__publicQueryShippingOptionsType as _publicQueryShippingOptionsType, type _publicUpdateExtendedFieldsType$1 as _publicUpdateExtendedFieldsType, type context$3__publicUpdateShippingOptionType as _publicUpdateShippingOptionType, context$3_createShippingOption as createShippingOption, context$3_deleteShippingOption as deleteShippingOption, context$3_getShippingOption as getShippingOption, context$3_onShippingOptionCreated as onShippingOptionCreated, context$3_onShippingOptionDeleted as onShippingOptionDeleted, context$3_onShippingOptionUpdated as onShippingOptionUpdated, onShippingOptionCreated$1 as publicOnShippingOptionCreated, onShippingOptionDeleted$1 as publicOnShippingOptionDeleted, onShippingOptionUpdated$1 as publicOnShippingOptionUpdated, context$3_queryShippingOptions as queryShippingOptions, updateExtendedFields$2 as updateExtendedFields, context$3_updateShippingOption as updateShippingOption };
|
|
28457
29067
|
}
|
|
28458
29068
|
|
|
28459
29069
|
interface ShippoConfiguration {
|
|
@@ -29061,19 +29671,41 @@ interface UpdateExtendedFieldsOptions {
|
|
|
29061
29671
|
namespaceData: Record<string, any> | null;
|
|
29062
29672
|
}
|
|
29063
29673
|
|
|
29674
|
+
declare function createShippoConfiguration$1(httpClient: HttpClient): (shippoConfiguration: ShippoConfiguration, options?: CreateShippoConfigurationOptions) => Promise<ShippoConfiguration & ShippoConfigurationNonNullableFields>;
|
|
29675
|
+
declare function getShippoConfiguration$1(httpClient: HttpClient): (shippoConfigurationId: string) => Promise<ShippoConfiguration & ShippoConfigurationNonNullableFields>;
|
|
29676
|
+
declare function updateShippoConfiguration$1(httpClient: HttpClient): (_id: string | null, shippoConfiguration: UpdateShippoConfiguration) => Promise<ShippoConfiguration & ShippoConfigurationNonNullableFields>;
|
|
29677
|
+
declare function deleteShippoConfiguration$1(httpClient: HttpClient): (shippoConfigurationId: string) => Promise<void>;
|
|
29678
|
+
declare function queryShippoConfigurations$1(httpClient: HttpClient): () => ShippoConfigurationsQueryBuilder;
|
|
29679
|
+
declare function updateExtendedFields$1(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions) => Promise<UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields>;
|
|
29680
|
+
declare const onShippoConfigurationCreated$1: EventDefinition<ShippoConfigurationCreatedEnvelope, "wix.ecom.v1.shippo_configuration_created">;
|
|
29681
|
+
declare const onShippoConfigurationUpdated$1: EventDefinition<ShippoConfigurationUpdatedEnvelope, "wix.ecom.v1.shippo_configuration_updated">;
|
|
29682
|
+
declare const onShippoConfigurationDeleted$1: EventDefinition<ShippoConfigurationDeletedEnvelope, "wix.ecom.v1.shippo_configuration_deleted">;
|
|
29683
|
+
|
|
29064
29684
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
29065
29685
|
|
|
29066
29686
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
29067
29687
|
|
|
29068
|
-
|
|
29069
|
-
declare const
|
|
29070
|
-
|
|
29071
|
-
declare const
|
|
29072
|
-
|
|
29073
|
-
declare const
|
|
29074
|
-
|
|
29075
|
-
declare const
|
|
29076
|
-
|
|
29688
|
+
type _publicCreateShippoConfigurationType = typeof createShippoConfiguration$1;
|
|
29689
|
+
declare const createShippoConfiguration: ReturnType<typeof createRESTModule$2<_publicCreateShippoConfigurationType>>;
|
|
29690
|
+
type _publicGetShippoConfigurationType = typeof getShippoConfiguration$1;
|
|
29691
|
+
declare const getShippoConfiguration: ReturnType<typeof createRESTModule$2<_publicGetShippoConfigurationType>>;
|
|
29692
|
+
type _publicUpdateShippoConfigurationType = typeof updateShippoConfiguration$1;
|
|
29693
|
+
declare const updateShippoConfiguration: ReturnType<typeof createRESTModule$2<_publicUpdateShippoConfigurationType>>;
|
|
29694
|
+
type _publicDeleteShippoConfigurationType = typeof deleteShippoConfiguration$1;
|
|
29695
|
+
declare const deleteShippoConfiguration: ReturnType<typeof createRESTModule$2<_publicDeleteShippoConfigurationType>>;
|
|
29696
|
+
type _publicQueryShippoConfigurationsType = typeof queryShippoConfigurations$1;
|
|
29697
|
+
declare const queryShippoConfigurations: ReturnType<typeof createRESTModule$2<_publicQueryShippoConfigurationsType>>;
|
|
29698
|
+
type _publicUpdateExtendedFieldsType = typeof updateExtendedFields$1;
|
|
29699
|
+
declare const updateExtendedFields: ReturnType<typeof createRESTModule$2<_publicUpdateExtendedFieldsType>>;
|
|
29700
|
+
|
|
29701
|
+
type _publicOnShippoConfigurationCreatedType = typeof onShippoConfigurationCreated$1;
|
|
29702
|
+
declare const onShippoConfigurationCreated: ReturnType<typeof createEventModule<_publicOnShippoConfigurationCreatedType>>;
|
|
29703
|
+
|
|
29704
|
+
type _publicOnShippoConfigurationUpdatedType = typeof onShippoConfigurationUpdated$1;
|
|
29705
|
+
declare const onShippoConfigurationUpdated: ReturnType<typeof createEventModule<_publicOnShippoConfigurationUpdatedType>>;
|
|
29706
|
+
|
|
29707
|
+
type _publicOnShippoConfigurationDeletedType = typeof onShippoConfigurationDeleted$1;
|
|
29708
|
+
declare const onShippoConfigurationDeleted: ReturnType<typeof createEventModule<_publicOnShippoConfigurationDeletedType>>;
|
|
29077
29709
|
|
|
29078
29710
|
type context$2_ActionEvent = ActionEvent;
|
|
29079
29711
|
type context$2_BaseEventMetadata = BaseEventMetadata;
|
|
@@ -29140,6 +29772,15 @@ type context$2_UpdateShippoConfigurationResponse = UpdateShippoConfigurationResp
|
|
|
29140
29772
|
type context$2_UpdateShippoConfigurationResponseNonNullableFields = UpdateShippoConfigurationResponseNonNullableFields;
|
|
29141
29773
|
type context$2_WebhookIdentityType = WebhookIdentityType;
|
|
29142
29774
|
declare const context$2_WebhookIdentityType: typeof WebhookIdentityType;
|
|
29775
|
+
type context$2__publicCreateShippoConfigurationType = _publicCreateShippoConfigurationType;
|
|
29776
|
+
type context$2__publicDeleteShippoConfigurationType = _publicDeleteShippoConfigurationType;
|
|
29777
|
+
type context$2__publicGetShippoConfigurationType = _publicGetShippoConfigurationType;
|
|
29778
|
+
type context$2__publicOnShippoConfigurationCreatedType = _publicOnShippoConfigurationCreatedType;
|
|
29779
|
+
type context$2__publicOnShippoConfigurationDeletedType = _publicOnShippoConfigurationDeletedType;
|
|
29780
|
+
type context$2__publicOnShippoConfigurationUpdatedType = _publicOnShippoConfigurationUpdatedType;
|
|
29781
|
+
type context$2__publicQueryShippoConfigurationsType = _publicQueryShippoConfigurationsType;
|
|
29782
|
+
type context$2__publicUpdateExtendedFieldsType = _publicUpdateExtendedFieldsType;
|
|
29783
|
+
type context$2__publicUpdateShippoConfigurationType = _publicUpdateShippoConfigurationType;
|
|
29143
29784
|
declare const context$2_createShippoConfiguration: typeof createShippoConfiguration;
|
|
29144
29785
|
declare const context$2_deleteShippoConfiguration: typeof deleteShippoConfiguration;
|
|
29145
29786
|
declare const context$2_getShippoConfiguration: typeof getShippoConfiguration;
|
|
@@ -29150,7 +29791,7 @@ declare const context$2_queryShippoConfigurations: typeof queryShippoConfigurati
|
|
|
29150
29791
|
declare const context$2_updateExtendedFields: typeof updateExtendedFields;
|
|
29151
29792
|
declare const context$2_updateShippoConfiguration: typeof updateShippoConfiguration;
|
|
29152
29793
|
declare namespace context$2 {
|
|
29153
|
-
export { type context$2_ActionEvent as ActionEvent, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type context$2_BaseEventMetadata as BaseEventMetadata, context$2_CalculationType as CalculationType, type context$2_CreateShippoConfigurationOptions as CreateShippoConfigurationOptions, type context$2_CreateShippoConfigurationRequest as CreateShippoConfigurationRequest, type context$2_CreateShippoConfigurationResponse as CreateShippoConfigurationResponse, type context$2_CreateShippoConfigurationResponseNonNullableFields as CreateShippoConfigurationResponseNonNullableFields, type context$2_CursorPaging as CursorPaging, type context$2_CursorPagingMetadata as CursorPagingMetadata, type context$2_CursorQuery as CursorQuery, type context$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context$2_Cursors as Cursors, type context$2_DeleteShippoConfigurationRequest as DeleteShippoConfigurationRequest, type context$2_DeleteShippoConfigurationResponse as DeleteShippoConfigurationResponse, type context$2_DomainEvent as DomainEvent, type context$2_DomainEventBodyOneOf as DomainEventBodyOneOf, context$2_DomesticService as DomesticService, type context$2_DomesticServiceSettings as DomesticServiceSettings, type context$2_Empty as Empty, type context$2_EntityCreatedEvent as EntityCreatedEvent, type context$2_EntityDeletedEvent as EntityDeletedEvent, type context$2_EntityUpdatedEvent as EntityUpdatedEvent, type context$2_EventMetadata as EventMetadata, type context$2_ExtendedFields as ExtendedFields, type context$2_GetShippoConfigurationRequest as GetShippoConfigurationRequest, type context$2_GetShippoConfigurationResponse as GetShippoConfigurationResponse, type context$2_GetShippoConfigurationResponseNonNullableFields as GetShippoConfigurationResponseNonNullableFields, type context$2_HandlingFee as HandlingFee, type context$2_IdentificationData as IdentificationData, type context$2_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context$2_InternationalService as InternationalService, type context$2_InternationalServiceSettings as InternationalServiceSettings, type context$2_MessageEnvelope as MessageEnvelope, type context$2_PackageDetails as PackageDetails, type context$2_PackageDimensions as PackageDimensions, context$2_PackageType as PackageType, type context$2_QueryShippoConfigurationsRequest as QueryShippoConfigurationsRequest, type context$2_QueryShippoConfigurationsResponse as QueryShippoConfigurationsResponse, type context$2_QueryShippoConfigurationsResponseNonNullableFields as QueryShippoConfigurationsResponseNonNullableFields, type context$2_RestoreInfo as RestoreInfo, type context$2_ServiceSettings as ServiceSettings, type context$2_ShippoConfiguration as ShippoConfiguration, type context$2_ShippoConfigurationCreatedEnvelope as ShippoConfigurationCreatedEnvelope, type context$2_ShippoConfigurationDeletedEnvelope as ShippoConfigurationDeletedEnvelope, type context$2_ShippoConfigurationNonNullableFields as ShippoConfigurationNonNullableFields, type context$2_ShippoConfigurationUpdatedEnvelope as ShippoConfigurationUpdatedEnvelope, type context$2_ShippoConfigurationsQueryBuilder as ShippoConfigurationsQueryBuilder, type context$2_ShippoConfigurationsQueryResult as ShippoConfigurationsQueryResult, context$2_SortOrder as SortOrder, type context$2_Sorting as Sorting, type StreetAddress$1 as StreetAddress, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateShippoConfiguration as UpdateShippoConfiguration, type context$2_UpdateShippoConfigurationRequest as UpdateShippoConfigurationRequest, type context$2_UpdateShippoConfigurationResponse as UpdateShippoConfigurationResponse, type context$2_UpdateShippoConfigurationResponseNonNullableFields as UpdateShippoConfigurationResponseNonNullableFields, context$2_WebhookIdentityType as WebhookIdentityType, context$2_createShippoConfiguration as createShippoConfiguration, context$2_deleteShippoConfiguration as deleteShippoConfiguration, context$2_getShippoConfiguration as getShippoConfiguration, context$2_onShippoConfigurationCreated as onShippoConfigurationCreated, context$2_onShippoConfigurationDeleted as onShippoConfigurationDeleted, context$2_onShippoConfigurationUpdated as onShippoConfigurationUpdated, context$2_queryShippoConfigurations as queryShippoConfigurations, context$2_updateExtendedFields as updateExtendedFields, context$2_updateShippoConfiguration as updateShippoConfiguration };
|
|
29794
|
+
export { type context$2_ActionEvent as ActionEvent, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type context$2_BaseEventMetadata as BaseEventMetadata, context$2_CalculationType as CalculationType, type context$2_CreateShippoConfigurationOptions as CreateShippoConfigurationOptions, type context$2_CreateShippoConfigurationRequest as CreateShippoConfigurationRequest, type context$2_CreateShippoConfigurationResponse as CreateShippoConfigurationResponse, type context$2_CreateShippoConfigurationResponseNonNullableFields as CreateShippoConfigurationResponseNonNullableFields, type context$2_CursorPaging as CursorPaging, type context$2_CursorPagingMetadata as CursorPagingMetadata, type context$2_CursorQuery as CursorQuery, type context$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context$2_Cursors as Cursors, type context$2_DeleteShippoConfigurationRequest as DeleteShippoConfigurationRequest, type context$2_DeleteShippoConfigurationResponse as DeleteShippoConfigurationResponse, type context$2_DomainEvent as DomainEvent, type context$2_DomainEventBodyOneOf as DomainEventBodyOneOf, context$2_DomesticService as DomesticService, type context$2_DomesticServiceSettings as DomesticServiceSettings, type context$2_Empty as Empty, type context$2_EntityCreatedEvent as EntityCreatedEvent, type context$2_EntityDeletedEvent as EntityDeletedEvent, type context$2_EntityUpdatedEvent as EntityUpdatedEvent, type context$2_EventMetadata as EventMetadata, type context$2_ExtendedFields as ExtendedFields, type context$2_GetShippoConfigurationRequest as GetShippoConfigurationRequest, type context$2_GetShippoConfigurationResponse as GetShippoConfigurationResponse, type context$2_GetShippoConfigurationResponseNonNullableFields as GetShippoConfigurationResponseNonNullableFields, type context$2_HandlingFee as HandlingFee, type context$2_IdentificationData as IdentificationData, type context$2_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context$2_InternationalService as InternationalService, type context$2_InternationalServiceSettings as InternationalServiceSettings, type context$2_MessageEnvelope as MessageEnvelope, type context$2_PackageDetails as PackageDetails, type context$2_PackageDimensions as PackageDimensions, context$2_PackageType as PackageType, type context$2_QueryShippoConfigurationsRequest as QueryShippoConfigurationsRequest, type context$2_QueryShippoConfigurationsResponse as QueryShippoConfigurationsResponse, type context$2_QueryShippoConfigurationsResponseNonNullableFields as QueryShippoConfigurationsResponseNonNullableFields, type context$2_RestoreInfo as RestoreInfo, type context$2_ServiceSettings as ServiceSettings, type context$2_ShippoConfiguration as ShippoConfiguration, type context$2_ShippoConfigurationCreatedEnvelope as ShippoConfigurationCreatedEnvelope, type context$2_ShippoConfigurationDeletedEnvelope as ShippoConfigurationDeletedEnvelope, type context$2_ShippoConfigurationNonNullableFields as ShippoConfigurationNonNullableFields, type context$2_ShippoConfigurationUpdatedEnvelope as ShippoConfigurationUpdatedEnvelope, type context$2_ShippoConfigurationsQueryBuilder as ShippoConfigurationsQueryBuilder, type context$2_ShippoConfigurationsQueryResult as ShippoConfigurationsQueryResult, context$2_SortOrder as SortOrder, type context$2_Sorting as Sorting, type StreetAddress$1 as StreetAddress, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateShippoConfiguration as UpdateShippoConfiguration, type context$2_UpdateShippoConfigurationRequest as UpdateShippoConfigurationRequest, type context$2_UpdateShippoConfigurationResponse as UpdateShippoConfigurationResponse, type context$2_UpdateShippoConfigurationResponseNonNullableFields as UpdateShippoConfigurationResponseNonNullableFields, context$2_WebhookIdentityType as WebhookIdentityType, type context$2__publicCreateShippoConfigurationType as _publicCreateShippoConfigurationType, type context$2__publicDeleteShippoConfigurationType as _publicDeleteShippoConfigurationType, type context$2__publicGetShippoConfigurationType as _publicGetShippoConfigurationType, type context$2__publicOnShippoConfigurationCreatedType as _publicOnShippoConfigurationCreatedType, type context$2__publicOnShippoConfigurationDeletedType as _publicOnShippoConfigurationDeletedType, type context$2__publicOnShippoConfigurationUpdatedType as _publicOnShippoConfigurationUpdatedType, type context$2__publicQueryShippoConfigurationsType as _publicQueryShippoConfigurationsType, type context$2__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type context$2__publicUpdateShippoConfigurationType as _publicUpdateShippoConfigurationType, context$2_createShippoConfiguration as createShippoConfiguration, context$2_deleteShippoConfiguration as deleteShippoConfiguration, context$2_getShippoConfiguration as getShippoConfiguration, context$2_onShippoConfigurationCreated as onShippoConfigurationCreated, context$2_onShippoConfigurationDeleted as onShippoConfigurationDeleted, context$2_onShippoConfigurationUpdated as onShippoConfigurationUpdated, onShippoConfigurationCreated$1 as publicOnShippoConfigurationCreated, onShippoConfigurationDeleted$1 as publicOnShippoConfigurationDeleted, onShippoConfigurationUpdated$1 as publicOnShippoConfigurationUpdated, context$2_queryShippoConfigurations as queryShippoConfigurations, context$2_updateExtendedFields as updateExtendedFields, context$2_updateShippoConfiguration as updateShippoConfiguration };
|
|
29154
29795
|
}
|
|
29155
29796
|
|
|
29156
29797
|
interface TotalsCalculationEntity {
|
|
@@ -30439,9 +31080,12 @@ interface CalculateTotalsOptions extends CalculateTotalsRequestCouponOneOf, Calc
|
|
|
30439
31080
|
purchaseFlowId?: string | null;
|
|
30440
31081
|
}
|
|
30441
31082
|
|
|
31083
|
+
declare function calculateTotals$1(httpClient: HttpClient): (options?: CalculateTotalsOptions) => Promise<CalculateTotalsResponse & CalculateTotalsResponseNonNullableFields>;
|
|
31084
|
+
|
|
30442
31085
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
30443
31086
|
|
|
30444
|
-
|
|
31087
|
+
type _publicCalculateTotalsType = typeof calculateTotals$1;
|
|
31088
|
+
declare const calculateTotals: ReturnType<typeof createRESTModule$1<_publicCalculateTotalsType>>;
|
|
30445
31089
|
|
|
30446
31090
|
type context$1_AdditionalFee = AdditionalFee;
|
|
30447
31091
|
type context$1_Address = Address;
|
|
@@ -30543,9 +31187,10 @@ type context$1_V1AdditionalFee = V1AdditionalFee;
|
|
|
30543
31187
|
type context$1_ValidationError = ValidationError;
|
|
30544
31188
|
type context$1_WeightUnit = WeightUnit;
|
|
30545
31189
|
declare const context$1_WeightUnit: typeof WeightUnit;
|
|
31190
|
+
type context$1__publicCalculateTotalsType = _publicCalculateTotalsType;
|
|
30546
31191
|
declare const context$1_calculateTotals: typeof calculateTotals;
|
|
30547
31192
|
declare namespace context$1 {
|
|
30548
|
-
export { type context$1_AdditionalFee as AdditionalFee, type context$1_Address as Address, type context$1_AddressLocation as AddressLocation, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApplicationError as ApplicationError, type context$1_AppliedDiscount as AppliedDiscount, type context$1_AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOf, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_CalculateTotalsOptions as CalculateTotalsOptions, type context$1_CalculateTotalsRequest as CalculateTotalsRequest, type context$1_CalculateTotalsRequestCouponOneOf as CalculateTotalsRequestCouponOneOf, type context$1_CalculateTotalsRequestGiftCardOneOf as CalculateTotalsRequestGiftCardOneOf, type context$1_CalculateTotalsResponse as CalculateTotalsResponse, type context$1_CalculateTotalsResponseNonNullableFields as CalculateTotalsResponseNonNullableFields, type context$1_CalculatedLineItem as CalculatedLineItem, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CarrierShippingOption as CarrierShippingOption, type context$1_CatalogReference as CatalogReference, context$1_ChargeType as ChargeType, type context$1_Coupon as Coupon, context$1_DataFetchType as DataFetchType, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DiscountRule as DiscountRule, type context$1_DiscountRuleName as DiscountRuleName, context$1_DiscountType as DiscountType, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, type context$1_GiftCard as GiftCard, type context$1_Group as Group, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemTaxFullDetails as ItemTaxFullDetails, type context$1_ItemType as ItemType, context$1_ItemTypeItemType as ItemTypeItemType, type context$1_ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOf, context$1_JurisdictionType as JurisdictionType, type context$1_LineItem as LineItem, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemPricesData as LineItemPricesData, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MerchantDiscount as MerchantDiscount, type context$1_MerchantDiscountInput as MerchantDiscountInput, type context$1_MultiCurrencyPrice as MultiCurrencyPrice, type context$1_OtherCharge as OtherCharge, context$1_PaymentOptionType as PaymentOptionType, type context$1_PhysicalProperties as PhysicalProperties, type context$1_PickupDetails as PickupDetails, context$1_PickupMethod as PickupMethod, type context$1_PriceSummary as PriceSummary, context$1_RateType as RateType, context$1_RuleType as RuleType, type context$1_Scope as Scope, type context$1_SelectedCarrierServiceOption as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type context$1_SelectedCarrierServiceOptionPrices as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_SelectedShippingOption as SelectedShippingOption, type context$1_ServiceProperties as ServiceProperties, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type context$1_StreetAddress as StreetAddress, context$1_SubscriptionFrequency as SubscriptionFrequency, type context$1_SubscriptionSettings as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TaxBreakdown as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxDetails as TaxDetails, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TotalsCalculationEntity as TotalsCalculationEntity, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_ValidationError as ValidationError, context$1_WeightUnit as WeightUnit, context$1_calculateTotals as calculateTotals };
|
|
31193
|
+
export { type context$1_AdditionalFee as AdditionalFee, type context$1_Address as Address, type context$1_AddressLocation as AddressLocation, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApplicationError as ApplicationError, type context$1_AppliedDiscount as AppliedDiscount, type context$1_AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOf, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_CalculateTotalsOptions as CalculateTotalsOptions, type context$1_CalculateTotalsRequest as CalculateTotalsRequest, type context$1_CalculateTotalsRequestCouponOneOf as CalculateTotalsRequestCouponOneOf, type context$1_CalculateTotalsRequestGiftCardOneOf as CalculateTotalsRequestGiftCardOneOf, type context$1_CalculateTotalsResponse as CalculateTotalsResponse, type context$1_CalculateTotalsResponseNonNullableFields as CalculateTotalsResponseNonNullableFields, type context$1_CalculatedLineItem as CalculatedLineItem, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CarrierShippingOption as CarrierShippingOption, type context$1_CatalogReference as CatalogReference, context$1_ChargeType as ChargeType, type context$1_Coupon as Coupon, context$1_DataFetchType as DataFetchType, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DiscountRule as DiscountRule, type context$1_DiscountRuleName as DiscountRuleName, context$1_DiscountType as DiscountType, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, type context$1_GiftCard as GiftCard, type context$1_Group as Group, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemTaxFullDetails as ItemTaxFullDetails, type context$1_ItemType as ItemType, context$1_ItemTypeItemType as ItemTypeItemType, type context$1_ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOf, context$1_JurisdictionType as JurisdictionType, type context$1_LineItem as LineItem, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemPricesData as LineItemPricesData, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MerchantDiscount as MerchantDiscount, type context$1_MerchantDiscountInput as MerchantDiscountInput, type context$1_MultiCurrencyPrice as MultiCurrencyPrice, type context$1_OtherCharge as OtherCharge, context$1_PaymentOptionType as PaymentOptionType, type context$1_PhysicalProperties as PhysicalProperties, type context$1_PickupDetails as PickupDetails, context$1_PickupMethod as PickupMethod, type context$1_PriceSummary as PriceSummary, context$1_RateType as RateType, context$1_RuleType as RuleType, type context$1_Scope as Scope, type context$1_SelectedCarrierServiceOption as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type context$1_SelectedCarrierServiceOptionPrices as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_SelectedShippingOption as SelectedShippingOption, type context$1_ServiceProperties as ServiceProperties, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type context$1_StreetAddress as StreetAddress, context$1_SubscriptionFrequency as SubscriptionFrequency, type context$1_SubscriptionSettings as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TaxBreakdown as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxDetails as TaxDetails, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TotalsCalculationEntity as TotalsCalculationEntity, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_ValidationError as ValidationError, context$1_WeightUnit as WeightUnit, type context$1__publicCalculateTotalsType as _publicCalculateTotalsType, context$1_calculateTotals as calculateTotals };
|
|
30549
31194
|
}
|
|
30550
31195
|
|
|
30551
31196
|
interface CurrencyRate {
|
|
@@ -30624,11 +31269,18 @@ interface GetConversionRateIdentifiers {
|
|
|
30624
31269
|
to: string;
|
|
30625
31270
|
}
|
|
30626
31271
|
|
|
31272
|
+
declare function listCurrencies$1(httpClient: HttpClient): () => Promise<ListCurrenciesResponse & ListCurrenciesResponseNonNullableFields>;
|
|
31273
|
+
declare function convertCurrency$1(httpClient: HttpClient): (identifiers: ConvertCurrencyIdentifiers, amounts: DecimalValue[]) => Promise<ConvertCurrencyResponse & ConvertCurrencyResponseNonNullableFields>;
|
|
31274
|
+
declare function getConversionRate$1(httpClient: HttpClient): (identifiers: GetConversionRateIdentifiers) => Promise<ConversionRateResponse & ConversionRateResponseNonNullableFields>;
|
|
31275
|
+
|
|
30627
31276
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
30628
31277
|
|
|
30629
|
-
|
|
30630
|
-
declare const
|
|
30631
|
-
|
|
31278
|
+
type _publicListCurrenciesType = typeof listCurrencies$1;
|
|
31279
|
+
declare const listCurrencies: ReturnType<typeof createRESTModule<_publicListCurrenciesType>>;
|
|
31280
|
+
type _publicConvertCurrencyType = typeof convertCurrency$1;
|
|
31281
|
+
declare const convertCurrency: ReturnType<typeof createRESTModule<_publicConvertCurrencyType>>;
|
|
31282
|
+
type _publicGetConversionRateType = typeof getConversionRate$1;
|
|
31283
|
+
declare const getConversionRate: ReturnType<typeof createRESTModule<_publicGetConversionRateType>>;
|
|
30632
31284
|
|
|
30633
31285
|
type context_ConversionRateRequest = ConversionRateRequest;
|
|
30634
31286
|
type context_ConversionRateResponse = ConversionRateResponse;
|
|
@@ -30644,11 +31296,14 @@ type context_GetConversionRateIdentifiers = GetConversionRateIdentifiers;
|
|
|
30644
31296
|
type context_ListCurrenciesRequest = ListCurrenciesRequest;
|
|
30645
31297
|
type context_ListCurrenciesResponse = ListCurrenciesResponse;
|
|
30646
31298
|
type context_ListCurrenciesResponseNonNullableFields = ListCurrenciesResponseNonNullableFields;
|
|
31299
|
+
type context__publicConvertCurrencyType = _publicConvertCurrencyType;
|
|
31300
|
+
type context__publicGetConversionRateType = _publicGetConversionRateType;
|
|
31301
|
+
type context__publicListCurrenciesType = _publicListCurrenciesType;
|
|
30647
31302
|
declare const context_convertCurrency: typeof convertCurrency;
|
|
30648
31303
|
declare const context_getConversionRate: typeof getConversionRate;
|
|
30649
31304
|
declare const context_listCurrencies: typeof listCurrencies;
|
|
30650
31305
|
declare namespace context {
|
|
30651
|
-
export { type context_ConversionRateRequest as ConversionRateRequest, type context_ConversionRateResponse as ConversionRateResponse, type context_ConversionRateResponseNonNullableFields as ConversionRateResponseNonNullableFields, type context_ConvertCurrencyIdentifiers as ConvertCurrencyIdentifiers, type context_ConvertCurrencyRequest as ConvertCurrencyRequest, type context_ConvertCurrencyResponse as ConvertCurrencyResponse, type context_ConvertCurrencyResponseNonNullableFields as ConvertCurrencyResponseNonNullableFields, type context_Currency as Currency, type context_CurrencyRate as CurrencyRate, type context_DecimalValue as DecimalValue, type context_GetConversionRateIdentifiers as GetConversionRateIdentifiers, type context_ListCurrenciesRequest as ListCurrenciesRequest, type context_ListCurrenciesResponse as ListCurrenciesResponse, type context_ListCurrenciesResponseNonNullableFields as ListCurrenciesResponseNonNullableFields, context_convertCurrency as convertCurrency, context_getConversionRate as getConversionRate, context_listCurrencies as listCurrencies };
|
|
31306
|
+
export { type context_ConversionRateRequest as ConversionRateRequest, type context_ConversionRateResponse as ConversionRateResponse, type context_ConversionRateResponseNonNullableFields as ConversionRateResponseNonNullableFields, type context_ConvertCurrencyIdentifiers as ConvertCurrencyIdentifiers, type context_ConvertCurrencyRequest as ConvertCurrencyRequest, type context_ConvertCurrencyResponse as ConvertCurrencyResponse, type context_ConvertCurrencyResponseNonNullableFields as ConvertCurrencyResponseNonNullableFields, type context_Currency as Currency, type context_CurrencyRate as CurrencyRate, type context_DecimalValue as DecimalValue, type context_GetConversionRateIdentifiers as GetConversionRateIdentifiers, type context_ListCurrenciesRequest as ListCurrenciesRequest, type context_ListCurrenciesResponse as ListCurrenciesResponse, type context_ListCurrenciesResponseNonNullableFields as ListCurrenciesResponseNonNullableFields, type context__publicConvertCurrencyType as _publicConvertCurrencyType, type context__publicGetConversionRateType as _publicGetConversionRateType, type context__publicListCurrenciesType as _publicListCurrenciesType, context_convertCurrency as convertCurrency, context_getConversionRate as getConversionRate, context_listCurrencies as listCurrencies };
|
|
30652
31307
|
}
|
|
30653
31308
|
|
|
30654
31309
|
export { context$k as abandonedCheckouts, context$j as backInStockNotifications, context$i as backInStockSettings, context$h as cart, context$f as checkout, context$p as checkoutContent, context$e as checkoutSettings, context$d as checkoutTemplates, context as currencies, context$g as currentCart, context$c as deliveryProfile, context$n as discountRules, context$o as discountsCustomTrigger, context$b as draftOrders, context$9 as localDeliveryOptions, context$a as orderFulfillments, context$m as orderInvoices, context$7 as orderPaymentRequests, context$6 as orderTransactions, context$8 as orders, context$5 as ordersSettings, context$4 as pickupLocations, context$l as recommendations, context$3 as shippingOptions, context$2 as shippoConfigurations, context$1 as totalsCalculator };
|