@wix/auto_sdk_ecom_draft-orders 1.0.57 → 1.0.58
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +103 -95
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +84 -84
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +103 -95
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +84 -84
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +151 -100
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +84 -84
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +151 -100
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +84 -84
- package/package.json +2 -2
|
@@ -198,6 +198,104 @@ interface PriceDescription {
|
|
|
198
198
|
*/
|
|
199
199
|
translated?: string | null;
|
|
200
200
|
}
|
|
201
|
+
interface ProductName {
|
|
202
|
+
/**
|
|
203
|
+
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
204
|
+
*
|
|
205
|
+
* Min: 1 character.
|
|
206
|
+
* Max: 200 characters.
|
|
207
|
+
* @minLength 1
|
|
208
|
+
* @maxLength 200
|
|
209
|
+
*/
|
|
210
|
+
original?: string;
|
|
211
|
+
/**
|
|
212
|
+
* Item name translated into the buyer's language.
|
|
213
|
+
*
|
|
214
|
+
* Min: 1 character.
|
|
215
|
+
* Max: 400 characters.
|
|
216
|
+
* Default: Same as `original`.
|
|
217
|
+
* @minLength 1
|
|
218
|
+
* @maxLength 400
|
|
219
|
+
*/
|
|
220
|
+
translated?: string | null;
|
|
221
|
+
}
|
|
222
|
+
interface DescriptionLine extends DescriptionLineValueOneOf, DescriptionLineDescriptionLineValueOneOf {
|
|
223
|
+
/** Description line plain text value. */
|
|
224
|
+
plainText?: PlainTextValue;
|
|
225
|
+
/** Description line color value. */
|
|
226
|
+
colorInfo?: Color;
|
|
227
|
+
/** Description line name. */
|
|
228
|
+
name?: DescriptionLineName;
|
|
229
|
+
/**
|
|
230
|
+
* Whether the description line originates from a modifier.
|
|
231
|
+
* @internal
|
|
232
|
+
*/
|
|
233
|
+
modifierDescriptionLine?: boolean;
|
|
234
|
+
}
|
|
235
|
+
/** @oneof */
|
|
236
|
+
interface DescriptionLineValueOneOf {
|
|
237
|
+
/** Description line plain text value. */
|
|
238
|
+
plainText?: PlainTextValue;
|
|
239
|
+
/** Description line color value. */
|
|
240
|
+
colorInfo?: Color;
|
|
241
|
+
}
|
|
242
|
+
/** @oneof */
|
|
243
|
+
interface DescriptionLineDescriptionLineValueOneOf {
|
|
244
|
+
}
|
|
245
|
+
interface DescriptionLineName {
|
|
246
|
+
/**
|
|
247
|
+
* Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
248
|
+
* @maxLength 100
|
|
249
|
+
*/
|
|
250
|
+
original?: string;
|
|
251
|
+
/**
|
|
252
|
+
* Description line name translated into the buyer's language.
|
|
253
|
+
*
|
|
254
|
+
* Default: Same as `original`.
|
|
255
|
+
* @maxLength 200
|
|
256
|
+
*/
|
|
257
|
+
translated?: string | null;
|
|
258
|
+
}
|
|
259
|
+
interface PlainTextValue {
|
|
260
|
+
/**
|
|
261
|
+
* Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
262
|
+
* @maxLength 600
|
|
263
|
+
*/
|
|
264
|
+
original?: string;
|
|
265
|
+
/**
|
|
266
|
+
* Description line plain text value translated into the buyer's language.
|
|
267
|
+
*
|
|
268
|
+
* Default: Same as `original`.
|
|
269
|
+
* @maxLength 600
|
|
270
|
+
*/
|
|
271
|
+
translated?: string | null;
|
|
272
|
+
}
|
|
273
|
+
interface Color {
|
|
274
|
+
/**
|
|
275
|
+
* Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
276
|
+
* @maxLength 500
|
|
277
|
+
*/
|
|
278
|
+
original?: string;
|
|
279
|
+
/**
|
|
280
|
+
* Description line color name translated into the buyer's language.
|
|
281
|
+
*
|
|
282
|
+
* Default: Same as `original`.
|
|
283
|
+
* @maxLength 500
|
|
284
|
+
*/
|
|
285
|
+
translated?: string | null;
|
|
286
|
+
/** HEX or RGB color code for display. */
|
|
287
|
+
code?: string | null;
|
|
288
|
+
}
|
|
289
|
+
declare enum DescriptionLineType {
|
|
290
|
+
/** Unrecognized type. */
|
|
291
|
+
UNRECOGNISED = "UNRECOGNISED",
|
|
292
|
+
/** Plain text type. */
|
|
293
|
+
PLAIN_TEXT = "PLAIN_TEXT",
|
|
294
|
+
/** Color type. */
|
|
295
|
+
COLOR = "COLOR"
|
|
296
|
+
}
|
|
297
|
+
/** @enumType */
|
|
298
|
+
type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
|
|
201
299
|
interface OrderLineItem {
|
|
202
300
|
/**
|
|
203
301
|
* Line item ID.
|
|
@@ -329,27 +427,6 @@ interface OrderLineItem {
|
|
|
329
427
|
*/
|
|
330
428
|
modifierGroups?: ModifierGroup[];
|
|
331
429
|
}
|
|
332
|
-
interface ProductName {
|
|
333
|
-
/**
|
|
334
|
-
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
335
|
-
*
|
|
336
|
-
* Min: 1 character.
|
|
337
|
-
* Max: 200 characters.
|
|
338
|
-
* @minLength 1
|
|
339
|
-
* @maxLength 200
|
|
340
|
-
*/
|
|
341
|
-
original?: string;
|
|
342
|
-
/**
|
|
343
|
-
* Item name translated into the buyer's language.
|
|
344
|
-
*
|
|
345
|
-
* Min: 1 character.
|
|
346
|
-
* Max: 400 characters.
|
|
347
|
-
* Default: Same as `original`.
|
|
348
|
-
* @minLength 1
|
|
349
|
-
* @maxLength 400
|
|
350
|
-
*/
|
|
351
|
-
translated?: string | null;
|
|
352
|
-
}
|
|
353
430
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
354
431
|
interface CatalogReference {
|
|
355
432
|
/**
|
|
@@ -377,83 +454,6 @@ interface CatalogReference {
|
|
|
377
454
|
*/
|
|
378
455
|
options?: Record<string, any> | null;
|
|
379
456
|
}
|
|
380
|
-
interface DescriptionLine extends DescriptionLineValueOneOf, DescriptionLineDescriptionLineValueOneOf {
|
|
381
|
-
/** Description line plain text value. */
|
|
382
|
-
plainText?: PlainTextValue;
|
|
383
|
-
/** Description line color value. */
|
|
384
|
-
colorInfo?: Color;
|
|
385
|
-
/** Description line name. */
|
|
386
|
-
name?: DescriptionLineName;
|
|
387
|
-
/**
|
|
388
|
-
* Whether the description line originates from a modifier.
|
|
389
|
-
* @internal
|
|
390
|
-
*/
|
|
391
|
-
modifierDescriptionLine?: boolean;
|
|
392
|
-
}
|
|
393
|
-
/** @oneof */
|
|
394
|
-
interface DescriptionLineValueOneOf {
|
|
395
|
-
/** Description line plain text value. */
|
|
396
|
-
plainText?: PlainTextValue;
|
|
397
|
-
/** Description line color value. */
|
|
398
|
-
colorInfo?: Color;
|
|
399
|
-
}
|
|
400
|
-
/** @oneof */
|
|
401
|
-
interface DescriptionLineDescriptionLineValueOneOf {
|
|
402
|
-
}
|
|
403
|
-
interface DescriptionLineName {
|
|
404
|
-
/**
|
|
405
|
-
* Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
406
|
-
* @maxLength 100
|
|
407
|
-
*/
|
|
408
|
-
original?: string;
|
|
409
|
-
/**
|
|
410
|
-
* Description line name translated into the buyer's language.
|
|
411
|
-
*
|
|
412
|
-
* Default: Same as `original`.
|
|
413
|
-
* @maxLength 200
|
|
414
|
-
*/
|
|
415
|
-
translated?: string | null;
|
|
416
|
-
}
|
|
417
|
-
interface PlainTextValue {
|
|
418
|
-
/**
|
|
419
|
-
* Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
420
|
-
* @maxLength 600
|
|
421
|
-
*/
|
|
422
|
-
original?: string;
|
|
423
|
-
/**
|
|
424
|
-
* Description line plain text value translated into the buyer's language.
|
|
425
|
-
*
|
|
426
|
-
* Default: Same as `original`.
|
|
427
|
-
* @maxLength 600
|
|
428
|
-
*/
|
|
429
|
-
translated?: string | null;
|
|
430
|
-
}
|
|
431
|
-
interface Color {
|
|
432
|
-
/**
|
|
433
|
-
* Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
434
|
-
* @maxLength 500
|
|
435
|
-
*/
|
|
436
|
-
original?: string;
|
|
437
|
-
/**
|
|
438
|
-
* Description line color name translated into the buyer's language.
|
|
439
|
-
*
|
|
440
|
-
* Default: Same as `original`.
|
|
441
|
-
* @maxLength 500
|
|
442
|
-
*/
|
|
443
|
-
translated?: string | null;
|
|
444
|
-
/** HEX or RGB color code for display. */
|
|
445
|
-
code?: string | null;
|
|
446
|
-
}
|
|
447
|
-
declare enum DescriptionLineType {
|
|
448
|
-
/** Unrecognized type. */
|
|
449
|
-
UNRECOGNISED = "UNRECOGNISED",
|
|
450
|
-
/** Plain text type. */
|
|
451
|
-
PLAIN_TEXT = "PLAIN_TEXT",
|
|
452
|
-
/** Color type. */
|
|
453
|
-
COLOR = "COLOR"
|
|
454
|
-
}
|
|
455
|
-
/** @enumType */
|
|
456
|
-
type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
|
|
457
457
|
interface FocalPoint {
|
|
458
458
|
/** X-coordinate of the focal point. */
|
|
459
459
|
x?: number;
|
|
@@ -888,6 +888,17 @@ interface ItemChangedDetails {
|
|
|
888
888
|
priceBeforeChange?: Price;
|
|
889
889
|
/** Line item price description before change. */
|
|
890
890
|
priceDescriptionBeforeChange?: PriceDescription;
|
|
891
|
+
/**
|
|
892
|
+
* Line Item product name before change.
|
|
893
|
+
* @internal
|
|
894
|
+
*/
|
|
895
|
+
productNameBeforeChange?: ProductName;
|
|
896
|
+
/**
|
|
897
|
+
* Line item description lines before change
|
|
898
|
+
* @internal
|
|
899
|
+
* @maxSize 20
|
|
900
|
+
*/
|
|
901
|
+
descriptionLinesBeforeChange?: DescriptionLine[];
|
|
891
902
|
}
|
|
892
903
|
interface ShippingDetails extends ShippingDetailsChangeTypeOneOf {
|
|
893
904
|
/** Whether shipping info was added as part of the draft. */
|
|
@@ -2014,6 +2025,25 @@ interface CatalogReferenceLineItem {
|
|
|
2014
2025
|
* @maxSize 5
|
|
2015
2026
|
*/
|
|
2016
2027
|
locations?: LocationAndQuantity[];
|
|
2028
|
+
/**
|
|
2029
|
+
* Line Item product name to override.
|
|
2030
|
+
* @internal
|
|
2031
|
+
*/
|
|
2032
|
+
productName?: ProductName;
|
|
2033
|
+
/**
|
|
2034
|
+
* Line item description lines to override
|
|
2035
|
+
* @internal
|
|
2036
|
+
*/
|
|
2037
|
+
descriptionLinesInfo?: DescriptionLinesOverride;
|
|
2038
|
+
}
|
|
2039
|
+
interface DescriptionLinesOverride {
|
|
2040
|
+
/**
|
|
2041
|
+
* Line item description lines to override
|
|
2042
|
+
* If empty then value on line item will be reset
|
|
2043
|
+
* @internal
|
|
2044
|
+
* @maxSize 20
|
|
2045
|
+
*/
|
|
2046
|
+
descriptionLines?: DescriptionLine[];
|
|
2017
2047
|
}
|
|
2018
2048
|
interface CustomLineItem {
|
|
2019
2049
|
/**
|
|
@@ -2144,6 +2174,16 @@ interface LineItemChangeDetails {
|
|
|
2144
2174
|
* For example, when price is `0` but additional details about the actual price are needed - `"Starts at $67"`.
|
|
2145
2175
|
*/
|
|
2146
2176
|
newPriceDescription?: PriceDescription;
|
|
2177
|
+
/**
|
|
2178
|
+
* Line Item product name to override.
|
|
2179
|
+
* @internal
|
|
2180
|
+
*/
|
|
2181
|
+
newProductName?: ProductName;
|
|
2182
|
+
/**
|
|
2183
|
+
* Line item description lines to override
|
|
2184
|
+
* @internal
|
|
2185
|
+
*/
|
|
2186
|
+
newDescriptionLines?: DescriptionLinesOverride;
|
|
2147
2187
|
}
|
|
2148
2188
|
interface UpdateLineItemsResponse {
|
|
2149
2189
|
/** Draft order calculated with the latest changes. */
|
|
@@ -3040,12 +3080,17 @@ interface LineItemChanges {
|
|
|
3040
3080
|
* @format GUID
|
|
3041
3081
|
*/
|
|
3042
3082
|
_id?: string;
|
|
3043
|
-
/** Item name. */
|
|
3083
|
+
/** Item name after change. */
|
|
3044
3084
|
name?: ProductName;
|
|
3045
3085
|
/** Item quantity change. */
|
|
3046
3086
|
quantity?: LineItemQuantityChange;
|
|
3047
3087
|
/** Item price change. */
|
|
3048
3088
|
price?: LineItemPriceChange;
|
|
3089
|
+
/**
|
|
3090
|
+
* Item product name change.
|
|
3091
|
+
* @internal
|
|
3092
|
+
*/
|
|
3093
|
+
productName?: LineItemProductNameChange;
|
|
3049
3094
|
}
|
|
3050
3095
|
interface LineItemQuantityChange {
|
|
3051
3096
|
/**
|
|
@@ -3081,6 +3126,12 @@ interface LineItemPriceChange {
|
|
|
3081
3126
|
/** Item price after update. */
|
|
3082
3127
|
newPrice?: Price;
|
|
3083
3128
|
}
|
|
3129
|
+
interface LineItemProductNameChange {
|
|
3130
|
+
/** Item product name before update. */
|
|
3131
|
+
originalProductName?: ProductName;
|
|
3132
|
+
/** Item product name after update. */
|
|
3133
|
+
newProductName?: ProductName;
|
|
3134
|
+
}
|
|
3084
3135
|
interface ManagedLineItem {
|
|
3085
3136
|
/**
|
|
3086
3137
|
* Line item ID.
|
|
@@ -5084,4 +5135,4 @@ interface SetBusinessLocationOptions {
|
|
|
5084
5135
|
businessLocation?: Location;
|
|
5085
5136
|
}
|
|
5086
5137
|
|
|
5087
|
-
export { type ActionEvent, type Activity, type ActivityContentOneOf, ActivityType, type ActivityTypeWithLiterals, type AddLineItemsToDraftOrderApplicationErrors, type AddLineItemsToDraftOrderOptions, type AddLineItemsToDraftOrderRequest, type AddLineItemsToDraftOrderResponse, type AdditionalFee, type AdditionalFeeDetails, type AdditionalFeeOption, type Address, type AddressLocation, type AddressWithContact, AdjustmentType, type AdjustmentTypeWithLiterals, type ApplicationError, type AppliedDiscount, type AppliedDiscountDiscountSourceOneOf, AppliedDiscountDiscountType, type AppliedDiscountDiscountTypeWithLiterals, AttributionSource, type AttributionSourceWithLiterals, type AuthorizedPaymentCaptured, type AuthorizedPaymentCreated, type AuthorizedPaymentVoided, type Balance, type BalanceSummary, type BaseEventMetadata, type BillingAdjustment, type BillingAdjustmentPriceSummary, type BillingChangedDetails, type BillingDetails, type BillingDetailsChangeTypeOneOf, type BusinessLocationChangedDetails, type BusinessLocationDetails, type BusinessLocationDetailsChangeTypeOneOf, type BuyerChangedDetails, type BuyerDetails, type BuyerDetailsChangeTypeOneOf, type BuyerInfo, type BuyerInfoIdOneOf, type CalculatedDraftOrder, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type CarrierError, type CarrierErrors, type CatalogReference, type CatalogReferenceLineItem, type ChannelInfo, ChannelType, type ChannelTypeWithLiterals, type ChargebackCreated, type ChargebackReversed, type Color, type CommitDraftOrderApplicationErrors, type CommitDraftOrderOptions, type CommitDraftOrderRequest, type CommitDraftOrderResponse, type Coupon, type CreateCustomAdditionalFeesApplicationErrors, type CreateCustomAdditionalFeesOptions, type CreateCustomAdditionalFeesRequest, type CreateCustomAdditionalFeesResponse, type CreateCustomDiscountsApplicationErrors, type CreateCustomDiscountsOptions, type CreateCustomDiscountsRequest, type CreateCustomDiscountsResponse, type CreateDraftOrderApplicationErrors, type CreateDraftOrderRequest, type CreateDraftOrderResponse, type CreateEmptyDraftOrderApplicationErrors, type CreateEmptyDraftOrderRequest, type CreateEmptyDraftOrderResponse, type CreateOrderFromDraftApplicationErrors, type CreateOrderFromDraftOptions, type CreateOrderFromDraftRequest, type CreateOrderFromDraftResponse, type CreatedBy, type CreatedByStringOneOf, type CreditCardDetails, type CurrencyConversionDetails, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomActivity, type CustomField, type CustomLineItem, type DeleteCustomAdditionalFeesApplicationErrors, type DeleteCustomAdditionalFeesRequest, type DeleteCustomAdditionalFeesResponse, type DeleteCustomDiscountsApplicationErrors, type DeleteCustomDiscountsRequest, type DeleteCustomDiscountsResponse, type DeleteDraftOrderApplicationErrors, type DeleteDraftOrderRequest, type DeleteDraftOrderResponse, type DeliveryLogistics, type DeliveryTimeSlot, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type Details, type DetailsKindOneOf, type DigitalFile, type DiscountDetails, type DiscountOption, type DiscountOptionDiscountAmountOneOf, DiscountReason, type DiscountReasonWithLiterals, type DiscountRule, type DiscountRuleName, DiscountType, type DiscountTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type DraftOrder, type DraftOrderChangesApplied, type DraftOrderCommitSettings, type DraftOrderCreatedEnvelope, type DraftOrderDeletedEnvelope, type DraftOrderUpdatedEnvelope, type DraftOrdersQueryBuilder, type DraftOrdersQueryResult, EditingStatus, type EditingStatusWithLiterals, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type ExternalReceipt, type FieldViolation, FileType, type FileTypeWithLiterals, type FocalPoint, type FreeTrialPeriod, FulfillmentStatus, type FulfillmentStatusWithLiterals, type FulfillmentStatusesAggregate, type FullAddressContactDetails, type GetDraftOrderApplicationErrors, type GetDraftOrderRequest, type GetDraftOrderResponse, type GetOrderDraftabilityStatusRequest, type GetOrderDraftabilityStatusResponse, type GiftCardPaymentRefund, type IdAndApplied, type IdentificationData, type IdentificationDataIdOneOf, type InventoryUpdate, type ItemChangedDetails, type ItemDetails, type ItemDetailsChangeTypeOneOf, type ItemModifier, type ItemTaxFullDetails, type ItemType, ItemTypeItemType, type ItemTypeItemTypeDataOneOf, type ItemTypeItemTypeWithLiterals, JurisdictionType, type JurisdictionTypeWithLiterals, type LineItemAmount, type LineItemChangeDetails, type LineItemChanges, type LineItemDiscount, type LineItemExchangeData, type LineItemPriceChange, type LineItemQuantityChange, LineItemQuantityChangeType, type LineItemQuantityChangeTypeWithLiterals, type LineItemTaxBreakdown, type LineItemTaxInfo, type Location, type LocationAndQuantity, type ManagedAdditionalFee, type ManagedDiscount, type ManagedLineItem, type MembershipPaymentRefund, type MerchantComment, type MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope, type ModifierGroup, type NewExchangeOrderCreated, NonDraftableReason, type NonDraftableReasonWithLiterals, type Order, type OrderChange, type OrderChangeValueOneOf, type OrderCreateNotifications, type OrderCreateSettings, type OrderCreatedFromExchange, type OrderLineItem, type OrderRefunded, OrderStatus, type OrderStatusWithLiterals, type OrderTaxBreakdown, type OrderTaxInfo, type PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PaymentPending, type PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed, type PaymentRefunded, PaymentStatus, type PaymentStatusWithLiterals, type PhysicalProperties, type PickupAddress, type PickupDetails, PickupDetailsPickupMethod, type PickupDetailsPickupMethodWithLiterals, PickupMethod, type PickupMethodWithLiterals, type PlainTextValue, type Price, type PriceDescription, type PriceSummary, type ProductName, type QueryDraftOrdersRequest, type QueryDraftOrdersResponse, type ReceiptCreated, type ReceiptCreatedReceiptInfoOneOf, type ReceiptSent, type ReceiptSentReceiptInfoOneOf, type RecipientInfoChangedDetails, type RecipientInfoDetails, type RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated, type RefundedAsStoreCredit, type RefundedPayment, type RefundedPaymentKindOneOf, type RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type SavedPaymentMethod, type SecuredMedia, type SetAdditionalFeesApplicationErrors, type SetAdditionalFeesRequest, type SetAdditionalFeesResponse, type SetBillingInfoApplicationErrors, type SetBillingInfoOptions, type SetBillingInfoRequest, type SetBillingInfoResponse, type SetBusinessLocationApplicationErrors, type SetBusinessLocationOptions, type SetBusinessLocationRequest, type SetBusinessLocationResponse, type SetBuyerInfoApplicationErrors, type SetBuyerInfoOptions, type SetBuyerInfoRequest, type SetBuyerInfoResponse, type SetDiscountsApplicationErrors, type SetDiscountsRequest, type SetDiscountsResponse, type SetRecipientInfoApplicationErrors, type SetRecipientInfoOptions, type SetRecipientInfoRequest, type SetRecipientInfoResponse, type SetShippingInfoApplicationErrors, type SetShippingInfoOptions, type SetShippingInfoRequest, type SetShippingInfoResponse, type SetTaxExemptionApplicationErrors, type SetTaxExemptionOptions, type SetTaxExemptionRequest, type SetTaxExemptionResponse, type ShippingChangedDetails, type ShippingDetails, type ShippingDetailsChangeTypeOneOf, type ShippingInformation, type ShippingInformationChange, type ShippingOption, type ShippingPrice, type ShippingRegion, SortOrder, type SortOrderWithLiterals, type Sorting, SourceType, type SourceTypeWithLiterals, type StreetAddress, type SubscriptionDescription, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionInfo, type SubscriptionSettings, type SubscriptionTitle, type SystemError, type TagList, type Tags, type TaxDetails, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type TotalPriceChange, type TranslatableString, type TranslatedValue, type UpdateExtendedFieldsApplicationErrors, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateLineItemsApplicationErrors, type UpdateLineItemsRequest, type UpdateLineItemsResponse, type UpdateShippingInfoRequest, type UpdateShippingInfoResponse, type V1BalanceSummary, type V1CreatedBy, type V1CreatedByStringOneOf, type V1DeliveryLogistics, type V1DeliveryLogisticsAddressOneOf, type V1DeliveryTimeSlot, type V1PickupDetails, type V1ShippingInformation, type V1ShippingPrice, type ValidationError, type VatId, VatType, type VatTypeWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals, type WixReceipt, addLineItemsToDraftOrder, commitDraftOrder, createCustomAdditionalFees, createCustomDiscounts, createDraftOrder, createEmptyDraftOrder, createOrderFromDraft, deleteCustomAdditionalFees, deleteCustomDiscounts, deleteDraftOrder, getDraftOrder, getOrderDraftabilityStatus, onDraftOrderCreated, onDraftOrderDeleted, onDraftOrderUpdated, queryDraftOrders, setAdditionalFees, setBillingInfo, setBusinessLocation, setBuyerInfo, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, updateExtendedFields, updateLineItems };
|
|
5138
|
+
export { type ActionEvent, type Activity, type ActivityContentOneOf, ActivityType, type ActivityTypeWithLiterals, type AddLineItemsToDraftOrderApplicationErrors, type AddLineItemsToDraftOrderOptions, type AddLineItemsToDraftOrderRequest, type AddLineItemsToDraftOrderResponse, type AdditionalFee, type AdditionalFeeDetails, type AdditionalFeeOption, type Address, type AddressLocation, type AddressWithContact, AdjustmentType, type AdjustmentTypeWithLiterals, type ApplicationError, type AppliedDiscount, type AppliedDiscountDiscountSourceOneOf, AppliedDiscountDiscountType, type AppliedDiscountDiscountTypeWithLiterals, AttributionSource, type AttributionSourceWithLiterals, type AuthorizedPaymentCaptured, type AuthorizedPaymentCreated, type AuthorizedPaymentVoided, type Balance, type BalanceSummary, type BaseEventMetadata, type BillingAdjustment, type BillingAdjustmentPriceSummary, type BillingChangedDetails, type BillingDetails, type BillingDetailsChangeTypeOneOf, type BusinessLocationChangedDetails, type BusinessLocationDetails, type BusinessLocationDetailsChangeTypeOneOf, type BuyerChangedDetails, type BuyerDetails, type BuyerDetailsChangeTypeOneOf, type BuyerInfo, type BuyerInfoIdOneOf, type CalculatedDraftOrder, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type CarrierError, type CarrierErrors, type CatalogReference, type CatalogReferenceLineItem, type ChannelInfo, ChannelType, type ChannelTypeWithLiterals, type ChargebackCreated, type ChargebackReversed, type Color, type CommitDraftOrderApplicationErrors, type CommitDraftOrderOptions, type CommitDraftOrderRequest, type CommitDraftOrderResponse, type Coupon, type CreateCustomAdditionalFeesApplicationErrors, type CreateCustomAdditionalFeesOptions, type CreateCustomAdditionalFeesRequest, type CreateCustomAdditionalFeesResponse, type CreateCustomDiscountsApplicationErrors, type CreateCustomDiscountsOptions, type CreateCustomDiscountsRequest, type CreateCustomDiscountsResponse, type CreateDraftOrderApplicationErrors, type CreateDraftOrderRequest, type CreateDraftOrderResponse, type CreateEmptyDraftOrderApplicationErrors, type CreateEmptyDraftOrderRequest, type CreateEmptyDraftOrderResponse, type CreateOrderFromDraftApplicationErrors, type CreateOrderFromDraftOptions, type CreateOrderFromDraftRequest, type CreateOrderFromDraftResponse, type CreatedBy, type CreatedByStringOneOf, type CreditCardDetails, type CurrencyConversionDetails, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomActivity, type CustomField, type CustomLineItem, type DeleteCustomAdditionalFeesApplicationErrors, type DeleteCustomAdditionalFeesRequest, type DeleteCustomAdditionalFeesResponse, type DeleteCustomDiscountsApplicationErrors, type DeleteCustomDiscountsRequest, type DeleteCustomDiscountsResponse, type DeleteDraftOrderApplicationErrors, type DeleteDraftOrderRequest, type DeleteDraftOrderResponse, type DeliveryLogistics, type DeliveryTimeSlot, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type DescriptionLinesOverride, type Details, type DetailsKindOneOf, type DigitalFile, type DiscountDetails, type DiscountOption, type DiscountOptionDiscountAmountOneOf, DiscountReason, type DiscountReasonWithLiterals, type DiscountRule, type DiscountRuleName, DiscountType, type DiscountTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type DraftOrder, type DraftOrderChangesApplied, type DraftOrderCommitSettings, type DraftOrderCreatedEnvelope, type DraftOrderDeletedEnvelope, type DraftOrderUpdatedEnvelope, type DraftOrdersQueryBuilder, type DraftOrdersQueryResult, EditingStatus, type EditingStatusWithLiterals, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type ExternalReceipt, type FieldViolation, FileType, type FileTypeWithLiterals, type FocalPoint, type FreeTrialPeriod, FulfillmentStatus, type FulfillmentStatusWithLiterals, type FulfillmentStatusesAggregate, type FullAddressContactDetails, type GetDraftOrderApplicationErrors, type GetDraftOrderRequest, type GetDraftOrderResponse, type GetOrderDraftabilityStatusRequest, type GetOrderDraftabilityStatusResponse, type GiftCardPaymentRefund, type IdAndApplied, type IdentificationData, type IdentificationDataIdOneOf, type InventoryUpdate, type ItemChangedDetails, type ItemDetails, type ItemDetailsChangeTypeOneOf, type ItemModifier, type ItemTaxFullDetails, type ItemType, ItemTypeItemType, type ItemTypeItemTypeDataOneOf, type ItemTypeItemTypeWithLiterals, JurisdictionType, type JurisdictionTypeWithLiterals, type LineItemAmount, type LineItemChangeDetails, type LineItemChanges, type LineItemDiscount, type LineItemExchangeData, type LineItemPriceChange, type LineItemProductNameChange, type LineItemQuantityChange, LineItemQuantityChangeType, type LineItemQuantityChangeTypeWithLiterals, type LineItemTaxBreakdown, type LineItemTaxInfo, type Location, type LocationAndQuantity, type ManagedAdditionalFee, type ManagedDiscount, type ManagedLineItem, type MembershipPaymentRefund, type MerchantComment, type MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope, type ModifierGroup, type NewExchangeOrderCreated, NonDraftableReason, type NonDraftableReasonWithLiterals, type Order, type OrderChange, type OrderChangeValueOneOf, type OrderCreateNotifications, type OrderCreateSettings, type OrderCreatedFromExchange, type OrderLineItem, type OrderRefunded, OrderStatus, type OrderStatusWithLiterals, type OrderTaxBreakdown, type OrderTaxInfo, type PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PaymentPending, type PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed, type PaymentRefunded, PaymentStatus, type PaymentStatusWithLiterals, type PhysicalProperties, type PickupAddress, type PickupDetails, PickupDetailsPickupMethod, type PickupDetailsPickupMethodWithLiterals, PickupMethod, type PickupMethodWithLiterals, type PlainTextValue, type Price, type PriceDescription, type PriceSummary, type ProductName, type QueryDraftOrdersRequest, type QueryDraftOrdersResponse, type ReceiptCreated, type ReceiptCreatedReceiptInfoOneOf, type ReceiptSent, type ReceiptSentReceiptInfoOneOf, type RecipientInfoChangedDetails, type RecipientInfoDetails, type RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated, type RefundedAsStoreCredit, type RefundedPayment, type RefundedPaymentKindOneOf, type RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type SavedPaymentMethod, type SecuredMedia, type SetAdditionalFeesApplicationErrors, type SetAdditionalFeesRequest, type SetAdditionalFeesResponse, type SetBillingInfoApplicationErrors, type SetBillingInfoOptions, type SetBillingInfoRequest, type SetBillingInfoResponse, type SetBusinessLocationApplicationErrors, type SetBusinessLocationOptions, type SetBusinessLocationRequest, type SetBusinessLocationResponse, type SetBuyerInfoApplicationErrors, type SetBuyerInfoOptions, type SetBuyerInfoRequest, type SetBuyerInfoResponse, type SetDiscountsApplicationErrors, type SetDiscountsRequest, type SetDiscountsResponse, type SetRecipientInfoApplicationErrors, type SetRecipientInfoOptions, type SetRecipientInfoRequest, type SetRecipientInfoResponse, type SetShippingInfoApplicationErrors, type SetShippingInfoOptions, type SetShippingInfoRequest, type SetShippingInfoResponse, type SetTaxExemptionApplicationErrors, type SetTaxExemptionOptions, type SetTaxExemptionRequest, type SetTaxExemptionResponse, type ShippingChangedDetails, type ShippingDetails, type ShippingDetailsChangeTypeOneOf, type ShippingInformation, type ShippingInformationChange, type ShippingOption, type ShippingPrice, type ShippingRegion, SortOrder, type SortOrderWithLiterals, type Sorting, SourceType, type SourceTypeWithLiterals, type StreetAddress, type SubscriptionDescription, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionInfo, type SubscriptionSettings, type SubscriptionTitle, type SystemError, type TagList, type Tags, type TaxDetails, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type TotalPriceChange, type TranslatableString, type TranslatedValue, type UpdateExtendedFieldsApplicationErrors, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateLineItemsApplicationErrors, type UpdateLineItemsRequest, type UpdateLineItemsResponse, type UpdateShippingInfoRequest, type UpdateShippingInfoResponse, type V1BalanceSummary, type V1CreatedBy, type V1CreatedByStringOneOf, type V1DeliveryLogistics, type V1DeliveryLogisticsAddressOneOf, type V1DeliveryTimeSlot, type V1PickupDetails, type V1ShippingInformation, type V1ShippingPrice, type ValidationError, type VatId, VatType, type VatTypeWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals, type WixReceipt, addLineItemsToDraftOrder, commitDraftOrder, createCustomAdditionalFees, createCustomDiscounts, createDraftOrder, createEmptyDraftOrder, createOrderFromDraft, deleteCustomAdditionalFees, deleteCustomDiscounts, deleteDraftOrder, getDraftOrder, getOrderDraftabilityStatus, onDraftOrderCreated, onDraftOrderDeleted, onDraftOrderUpdated, queryDraftOrders, setAdditionalFees, setBillingInfo, setBusinessLocation, setBuyerInfo, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, updateExtendedFields, updateLineItems };
|