@wix/auto_sdk_ecom_draft-orders 1.0.57 → 1.0.59

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.
@@ -198,6 +198,156 @@ 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
+ /** @oneof */
231
+ interface DescriptionLineValueOneOf {
232
+ /** Description line plain text value. */
233
+ plainText?: PlainTextValue;
234
+ /** Description line color value. */
235
+ colorInfo?: Color;
236
+ }
237
+ /** @oneof */
238
+ interface DescriptionLineDescriptionLineValueOneOf {
239
+ }
240
+ interface DescriptionLineName {
241
+ /**
242
+ * 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).
243
+ * @maxLength 100
244
+ */
245
+ original?: string;
246
+ /**
247
+ * Description line name translated into the buyer's language.
248
+ *
249
+ * Default: Same as `original`.
250
+ * @maxLength 200
251
+ */
252
+ translated?: string | null;
253
+ }
254
+ interface PlainTextValue {
255
+ /**
256
+ * 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).
257
+ * @maxLength 600
258
+ */
259
+ original?: string;
260
+ /**
261
+ * Description line plain text value translated into the buyer's language.
262
+ *
263
+ * Default: Same as `original`.
264
+ * @maxLength 600
265
+ */
266
+ translated?: string | null;
267
+ }
268
+ interface Color {
269
+ /**
270
+ * 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).
271
+ * @maxLength 500
272
+ */
273
+ original?: string;
274
+ /**
275
+ * Description line color name translated into the buyer's language.
276
+ *
277
+ * Default: Same as `original`.
278
+ * @maxLength 500
279
+ */
280
+ translated?: string | null;
281
+ /** HEX or RGB color code for display. */
282
+ code?: string | null;
283
+ }
284
+ declare enum DescriptionLineType {
285
+ /** Unrecognized type. */
286
+ UNRECOGNISED = "UNRECOGNISED",
287
+ /** Plain text type. */
288
+ PLAIN_TEXT = "PLAIN_TEXT",
289
+ /** Color type. */
290
+ COLOR = "COLOR"
291
+ }
292
+ /** @enumType */
293
+ type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
294
+ interface ModifierGroup {
295
+ /**
296
+ * Modifier group ID.
297
+ * @minLength 1
298
+ * @maxLength 36
299
+ */
300
+ _id?: string;
301
+ /** Modifier group name. */
302
+ name?: TranslatableString;
303
+ /**
304
+ * List of modifiers in this group.
305
+ * @minSize 1
306
+ * @maxSize 10
307
+ */
308
+ modifiers?: ItemModifier[];
309
+ }
310
+ interface TranslatableString {
311
+ /**
312
+ * __Required.__ String 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).
313
+ *
314
+ * Min: 1 character.
315
+ * Max: 200 characters.
316
+ * @minLength 1
317
+ * @maxLength 200
318
+ */
319
+ original?: string;
320
+ /**
321
+ * String translated into the buyer's language.
322
+ *
323
+ * Min: 1 character.
324
+ * Max: 400 characters.
325
+ * Default: Same as `original`.
326
+ * @minLength 1
327
+ * @maxLength 400
328
+ */
329
+ translated?: string | null;
330
+ }
331
+ interface ItemModifier {
332
+ /**
333
+ * Modifier ID.
334
+ * @minLength 1
335
+ * @maxLength 36
336
+ */
337
+ _id?: string;
338
+ /**
339
+ * The quantity of this modifier.
340
+ * @min 1
341
+ * @max 100000
342
+ */
343
+ quantity?: number | null;
344
+ /** Primary display label for the modifier. */
345
+ label?: TranslatableString;
346
+ /** Additional details. */
347
+ details?: TranslatableString;
348
+ /** The price of the modifier. */
349
+ price?: Price;
350
+ }
201
351
  interface OrderLineItem {
202
352
  /**
203
353
  * Line item ID.
@@ -323,27 +473,6 @@ interface OrderLineItem {
323
473
  */
324
474
  modifierGroups?: ModifierGroup[];
325
475
  }
326
- interface ProductName {
327
- /**
328
- * __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).
329
- *
330
- * Min: 1 character.
331
- * Max: 200 characters.
332
- * @minLength 1
333
- * @maxLength 200
334
- */
335
- original?: string;
336
- /**
337
- * Item name translated into the buyer's language.
338
- *
339
- * Min: 1 character.
340
- * Max: 400 characters.
341
- * Default: Same as `original`.
342
- * @minLength 1
343
- * @maxLength 400
344
- */
345
- translated?: string | null;
346
- }
347
476
  /** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
348
477
  interface CatalogReference {
349
478
  /**
@@ -371,78 +500,6 @@ interface CatalogReference {
371
500
  */
372
501
  options?: Record<string, any> | null;
373
502
  }
374
- interface DescriptionLine extends DescriptionLineValueOneOf, DescriptionLineDescriptionLineValueOneOf {
375
- /** Description line plain text value. */
376
- plainText?: PlainTextValue;
377
- /** Description line color value. */
378
- colorInfo?: Color;
379
- /** Description line name. */
380
- name?: DescriptionLineName;
381
- }
382
- /** @oneof */
383
- interface DescriptionLineValueOneOf {
384
- /** Description line plain text value. */
385
- plainText?: PlainTextValue;
386
- /** Description line color value. */
387
- colorInfo?: Color;
388
- }
389
- /** @oneof */
390
- interface DescriptionLineDescriptionLineValueOneOf {
391
- }
392
- interface DescriptionLineName {
393
- /**
394
- * 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).
395
- * @maxLength 100
396
- */
397
- original?: string;
398
- /**
399
- * Description line name translated into the buyer's language.
400
- *
401
- * Default: Same as `original`.
402
- * @maxLength 200
403
- */
404
- translated?: string | null;
405
- }
406
- interface PlainTextValue {
407
- /**
408
- * 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).
409
- * @maxLength 600
410
- */
411
- original?: string;
412
- /**
413
- * Description line plain text value translated into the buyer's language.
414
- *
415
- * Default: Same as `original`.
416
- * @maxLength 600
417
- */
418
- translated?: string | null;
419
- }
420
- interface Color {
421
- /**
422
- * 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).
423
- * @maxLength 500
424
- */
425
- original?: string;
426
- /**
427
- * Description line color name translated into the buyer's language.
428
- *
429
- * Default: Same as `original`.
430
- * @maxLength 500
431
- */
432
- translated?: string | null;
433
- /** HEX or RGB color code for display. */
434
- code?: string | null;
435
- }
436
- declare enum DescriptionLineType {
437
- /** Unrecognized type. */
438
- UNRECOGNISED = "UNRECOGNISED",
439
- /** Plain text type. */
440
- PLAIN_TEXT = "PLAIN_TEXT",
441
- /** Color type. */
442
- COLOR = "COLOR"
443
- }
444
- /** @enumType */
445
- type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
446
503
  interface FocalPoint {
447
504
  /** X-coordinate of the focal point. */
448
505
  x?: number;
@@ -789,63 +846,6 @@ interface ExtendedFields {
789
846
  */
790
847
  namespaces?: Record<string, Record<string, any>>;
791
848
  }
792
- interface ModifierGroup {
793
- /**
794
- * Modifier group ID.
795
- * @minLength 1
796
- * @maxLength 36
797
- */
798
- _id?: string;
799
- /** Modifier group name. */
800
- name?: TranslatableString;
801
- /**
802
- * List of modifiers in this group.
803
- * @minSize 1
804
- * @maxSize 10
805
- */
806
- modifiers?: ItemModifier[];
807
- }
808
- interface TranslatableString {
809
- /**
810
- * __Required.__ String 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).
811
- *
812
- * Min: 1 character.
813
- * Max: 200 characters.
814
- * @minLength 1
815
- * @maxLength 200
816
- */
817
- original?: string;
818
- /**
819
- * String translated into the buyer's language.
820
- *
821
- * Min: 1 character.
822
- * Max: 400 characters.
823
- * Default: Same as `original`.
824
- * @minLength 1
825
- * @maxLength 400
826
- */
827
- translated?: string | null;
828
- }
829
- interface ItemModifier {
830
- /**
831
- * Modifier ID.
832
- * @minLength 1
833
- * @maxLength 36
834
- */
835
- _id?: string;
836
- /**
837
- * The quantity of this modifier.
838
- * @min 1
839
- * @max 100000
840
- */
841
- quantity?: number | null;
842
- /** Primary display label for the modifier. */
843
- label?: TranslatableString;
844
- /** Additional details. */
845
- details?: TranslatableString;
846
- /** The price of the modifier. */
847
- price?: Price;
848
- }
849
849
  interface ItemChangedDetails {
850
850
  /**
851
851
  * Line item quantity before change.
@@ -857,6 +857,11 @@ interface ItemChangedDetails {
857
857
  priceBeforeChange?: Price;
858
858
  /** Line item price description before change. */
859
859
  priceDescriptionBeforeChange?: PriceDescription;
860
+ /**
861
+ * Line item modifier groups before change.
862
+ * @maxSize 10
863
+ */
864
+ modifierGroupsBeforeChange?: ModifierGroup[];
860
865
  }
861
866
  interface ShippingDetails extends ShippingDetailsChangeTypeOneOf {
862
867
  /** Whether shipping info was added as part of the draft. */
@@ -1961,6 +1966,8 @@ interface CatalogReferenceLineItem {
1961
1966
  */
1962
1967
  locations?: LocationAndQuantity[];
1963
1968
  }
1969
+ interface DescriptionLinesOverride {
1970
+ }
1964
1971
  interface CustomLineItem {
1965
1972
  /**
1966
1973
  * Line item ID.
@@ -2091,6 +2098,15 @@ interface LineItemChangeDetails {
2091
2098
  */
2092
2099
  newPriceDescription?: PriceDescription;
2093
2100
  }
2101
+ interface ModifiersGroupsOverride {
2102
+ /**
2103
+ * Line item modifiers to override.
2104
+ *
2105
+ * To remove all modifiers on this line item, pass an empty array.
2106
+ * @maxSize 10
2107
+ */
2108
+ modifierGroups?: ModifierGroup[];
2109
+ }
2094
2110
  interface UpdateLineItemsResponse {
2095
2111
  /** Draft order calculated with the latest changes. */
2096
2112
  calculatedDraftOrder?: CalculatedDraftOrder;
@@ -2986,7 +3002,7 @@ interface LineItemChanges {
2986
3002
  * @format GUID
2987
3003
  */
2988
3004
  _id?: string;
2989
- /** Item name. */
3005
+ /** Item name after change. */
2990
3006
  name?: ProductName;
2991
3007
  /** Item quantity change. */
2992
3008
  quantity?: LineItemQuantityChange;
@@ -3027,6 +3043,12 @@ interface LineItemPriceChange {
3027
3043
  /** Item price after update. */
3028
3044
  newPrice?: Price;
3029
3045
  }
3046
+ interface LineItemProductNameChange {
3047
+ /** Item product name before update. */
3048
+ originalProductName?: ProductName;
3049
+ /** Item product name after update. */
3050
+ newProductName?: ProductName;
3051
+ }
3030
3052
  interface ManagedLineItem {
3031
3053
  /**
3032
3054
  * Line item ID.
@@ -5030,4 +5052,4 @@ interface SetBusinessLocationOptions {
5030
5052
  businessLocation?: Location;
5031
5053
  }
5032
5054
 
5033
- 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 };
5055
+ 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 ModifiersGroupsOverride, 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 };