@wix/auto_sdk_ecom_abandoned-checkouts 1.0.62 → 1.0.64

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.
Files changed (41) hide show
  1. package/build/cjs/{ecom-v1-abandoned-checkout-abandoned-checkouts.universal-D5cOvD3u.d.ts → ecom-v1-abandoned-checkout-abandoned-checkouts.universal-BMNW-O8u.d.ts} +38 -1
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +19 -7
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +12 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +38 -2
  9. package/build/cjs/meta.js +12 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-abandoned-checkout-abandoned-checkouts.universal-D5cOvD3u.d.mts → ecom-v1-abandoned-checkout-abandoned-checkouts.universal-BMNW-O8u.d.mts} +38 -1
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +18 -7
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +11 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +38 -2
  19. package/build/es/meta.mjs +11 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-abandoned-checkout-abandoned-checkouts.universal-CIfL59dJ.d.ts → ecom-v1-abandoned-checkout-abandoned-checkouts.universal-BKiIJ28z.d.ts} +48 -1
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +19 -7
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +12 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +38 -2
  29. package/build/internal/cjs/meta.js +12 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-abandoned-checkout-abandoned-checkouts.universal-CIfL59dJ.d.mts → ecom-v1-abandoned-checkout-abandoned-checkouts.universal-BKiIJ28z.d.mts} +48 -1
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +18 -7
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +11 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +38 -2
  39. package/build/internal/es/meta.mjs +11 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -420,6 +420,42 @@ interface PhysicalProperties {
420
420
  /** Whether this line item is shippable. */
421
421
  shippable?: boolean;
422
422
  }
423
+ interface Dimensions {
424
+ /**
425
+ * Length. Measurement unit is handled at the system level (metric/imperial).
426
+ * @decimalValue options { gte:0, lte:999999999, maxScale:6 }
427
+ */
428
+ length?: string | null;
429
+ /**
430
+ * Width. Measurement unit is handled at the system level (metric/imperial).
431
+ * @decimalValue options { gte:0, lte:999999999, maxScale:6 }
432
+ */
433
+ width?: string | null;
434
+ /**
435
+ * Height. Measurement unit is handled at the system level (metric/imperial).
436
+ * @decimalValue options { gte:0, lte:999999999, maxScale:6 }
437
+ */
438
+ height?: string | null;
439
+ /** Unit of measurement for dimensions (length, width, height). */
440
+ unit?: DimensionsUnitWithLiterals;
441
+ }
442
+ declare enum DimensionsUnit {
443
+ UNKNOWN_DIMENSIONS_UNIT = "UNKNOWN_DIMENSIONS_UNIT",
444
+ /** Millimeters. */
445
+ MM = "MM",
446
+ /** Centimeters. */
447
+ CM = "CM",
448
+ /** Meters. */
449
+ M = "M",
450
+ /** Inches. */
451
+ IN = "IN",
452
+ /** Feet. */
453
+ FT = "FT",
454
+ /** Yards. */
455
+ YD = "YD"
456
+ }
457
+ /** @enumType */
458
+ type DimensionsUnitWithLiterals = DimensionsUnit | 'UNKNOWN_DIMENSIONS_UNIT' | 'MM' | 'CM' | 'M' | 'IN' | 'FT' | 'YD';
423
459
  interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
424
460
  /** Coupon details. */
425
461
  coupon?: Coupon;
@@ -1206,6 +1242,7 @@ interface AbandonedCheckoutCreatedEnvelope {
1206
1242
  */
1207
1243
  declare function onAbandonedCheckoutCreated(handler: (event: AbandonedCheckoutCreatedEnvelope) => void | Promise<void>): void;
1208
1244
  interface AbandonedCheckoutDeletedEnvelope {
1245
+ entity: AbandonedCheckout;
1209
1246
  metadata: EventMetadata;
1210
1247
  }
1211
1248
  /**
@@ -1581,4 +1618,4 @@ interface AddAbandonedCheckoutActivityOptions {
1581
1618
  */
1582
1619
  declare function redirectToCheckout(abandonedCheckoutId: string, metasiteId: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
1583
1620
 
1584
- export { type BulkDeleteAbandonedCheckoutsRequest as $, type AbandonedCheckout as A, type BulkDeleteAbandonedCheckoutsResponse as B, CommonSortOrder as C, DescriptionLineType as D, type AppliedDiscountDiscountSourceOneOf as E, type FullAddressContactDetails as F, type Coupon as G, type MerchantDiscount as H, Identity as I, type DiscountRule as J, type DiscountRuleName as K, type LineItem as L, Mode as M, type CartAbandonedEvent as N, type BuyerInfo as O, type ProductName as P, type CartRecoveredEvent as Q, type RawHttpResponse as R, type SearchAbandonedCheckoutsResponse as S, type Totals as T, type AbandonedCheckoutRecovered as U, VatType as V, WebhookIdentityType as W, type GetAbandonedCheckoutRequest as X, type GetAbandonedCheckoutResponse as Y, type DeleteAbandonedCheckoutRequest as Z, type DeleteAbandonedCheckoutResponse as _, type AbandonedCheckoutSearch as a, type CommonSearchWithEntityContext as a$, type ItemMetadata as a0, type ApplicationError as a1, type BulkAbandonedCheckoutResult as a2, type BulkActionMetadata as a3, type QueryAbandonedCheckoutsRequest as a4, type QueryV2 as a5, type QueryV2PagingMethodOneOf as a6, type Sorting as a7, type Paging as a8, type CursorPaging as a9, type RestoreInfo as aA, type EntityUpdatedEvent as aB, type EntityDeletedEvent as aC, type ActionEvent as aD, type Empty as aE, type MessageEnvelope as aF, type IdentificationData as aG, type IdentificationDataIdOneOf as aH, type AccountInfo as aI, type BaseEventMetadata as aJ, type EventMetadata as aK, type AccountInfoMetadata as aL, type AbandonedCheckoutsQueryResult as aM, type AbandonedCheckoutQuerySpec as aN, type AbandonedCheckoutSearchSpec as aO, type AddAbandonedCheckoutActivityOptions as aP, type ActivityTypeWithLiterals as aQ, type StatusWithLiterals as aR, type VatTypeWithLiterals as aS, type DescriptionLineTypeWithLiterals as aT, type DiscountTypeWithLiterals as aU, type IdentityWithLiterals as aV, type SortOrderWithLiterals as aW, type CommonSortOrderWithLiterals as aX, type ModeWithLiterals as aY, type WebhookIdentityTypeWithLiterals as aZ, type CommonQueryWithEntityContext as a_, type QueryAbandonedCheckoutsResponse as aa, type PagingMetadataV2 as ab, type Cursors as ac, type SearchAbandonedCheckoutsRequest as ad, type Search as ae, type SearchPagingMethodOneOf as af, type CommonSorting as ag, type SearchDetails as ah, type CommonPaging as ai, type CommonCursorPaging as aj, type CommonPagingMetadataV2 as ak, type CommonCursors as al, type AddAbandonedCheckoutActivityRequest as am, type AddAbandonedCheckoutActivityResponse as an, type Task as ao, type TaskKey as ap, type TaskAction as aq, type TaskActionActionOneOf as ar, type Complete as as, type Cancel as at, type Reschedule as au, type RedirectToCheckoutRequest as av, type HeadersEntry as aw, type DomainEvent as ax, type DomainEventBodyOneOf as ay, type EntityCreatedEvent as az, type AbandonedCheckoutCreatedEnvelope as b, onAbandonedCheckoutCreated as b0, onAbandonedCheckoutDeleted as b1, onAbandonedCheckoutRecovered as b2, onAbandonedCheckoutUpdated as b3, getAbandonedCheckout as b4, deleteAbandonedCheckout as b5, bulkDeleteAbandonedCheckouts as b6, queryAbandonedCheckouts as b7, redirectToCheckout as b8, type AbandonedCheckoutDeletedEnvelope as c, type AbandonedCheckoutRecoveredEnvelope as d, type AbandonedCheckoutUpdatedEnvelope as e, type AbandonedCheckoutsQueryBuilder as f, type AbandonedCheckoutQuery as g, ActivityType as h, Status as i, DiscountType as j, SortOrder as k, type V1BuyerInfo as l, type V1BuyerInfoIdOneOf as m, type VatId as n, type MultiCurrencyPrice as o, type Activity as p, type CatalogReference as q, type DescriptionLine as r, type DescriptionLineValueOneOf as s, typedQueryAbandonedCheckouts as t, type DescriptionLineDescriptionLineValueOneOf as u, type DescriptionLineName as v, type PlainTextValue as w, type Color as x, type PhysicalProperties as y, type AppliedDiscount as z };
1621
+ export { type DeleteAbandonedCheckoutRequest as $, type AbandonedCheckout as A, type BulkDeleteAbandonedCheckoutsResponse as B, CommonSortOrder as C, DescriptionLineType as D, type Dimensions as E, type FullAddressContactDetails as F, type AppliedDiscount as G, type AppliedDiscountDiscountSourceOneOf as H, Identity as I, type Coupon as J, type MerchantDiscount as K, type LineItem as L, Mode as M, type DiscountRule as N, type DiscountRuleName as O, type ProductName as P, type CartAbandonedEvent as Q, type RawHttpResponse as R, type SearchAbandonedCheckoutsResponse as S, type BuyerInfo as T, type Totals as U, VatType as V, WebhookIdentityType as W, type CartRecoveredEvent as X, type AbandonedCheckoutRecovered as Y, type GetAbandonedCheckoutRequest as Z, type GetAbandonedCheckoutResponse as _, type AbandonedCheckoutSearch as a, type ModeWithLiterals as a$, type DeleteAbandonedCheckoutResponse as a0, type BulkDeleteAbandonedCheckoutsRequest as a1, type ItemMetadata as a2, type ApplicationError as a3, type BulkAbandonedCheckoutResult as a4, type BulkActionMetadata as a5, type QueryAbandonedCheckoutsRequest as a6, type QueryV2 as a7, type QueryV2PagingMethodOneOf as a8, type Sorting as a9, type DomainEventBodyOneOf as aA, type EntityCreatedEvent as aB, type RestoreInfo as aC, type EntityUpdatedEvent as aD, type EntityDeletedEvent as aE, type ActionEvent as aF, type Empty as aG, type MessageEnvelope as aH, type IdentificationData as aI, type IdentificationDataIdOneOf as aJ, type AccountInfo as aK, type BaseEventMetadata as aL, type EventMetadata as aM, type AccountInfoMetadata as aN, type AbandonedCheckoutsQueryResult as aO, type AbandonedCheckoutQuerySpec as aP, type AbandonedCheckoutSearchSpec as aQ, type AddAbandonedCheckoutActivityOptions as aR, type ActivityTypeWithLiterals as aS, type StatusWithLiterals as aT, type VatTypeWithLiterals as aU, type DescriptionLineTypeWithLiterals as aV, type DimensionsUnitWithLiterals as aW, type DiscountTypeWithLiterals as aX, type IdentityWithLiterals as aY, type SortOrderWithLiterals as aZ, type CommonSortOrderWithLiterals as a_, type Paging as aa, type CursorPaging as ab, type QueryAbandonedCheckoutsResponse as ac, type PagingMetadataV2 as ad, type Cursors as ae, type SearchAbandonedCheckoutsRequest as af, type Search as ag, type SearchPagingMethodOneOf as ah, type CommonSorting as ai, type SearchDetails as aj, type CommonPaging as ak, type CommonCursorPaging as al, type CommonPagingMetadataV2 as am, type CommonCursors as an, type AddAbandonedCheckoutActivityRequest as ao, type AddAbandonedCheckoutActivityResponse as ap, type Task as aq, type TaskKey as ar, type TaskAction as as, type TaskActionActionOneOf as at, type Complete as au, type Cancel as av, type Reschedule as aw, type RedirectToCheckoutRequest as ax, type HeadersEntry as ay, type DomainEvent as az, type AbandonedCheckoutCreatedEnvelope as b, type WebhookIdentityTypeWithLiterals as b0, type CommonQueryWithEntityContext as b1, type CommonSearchWithEntityContext as b2, onAbandonedCheckoutCreated as b3, onAbandonedCheckoutDeleted as b4, onAbandonedCheckoutRecovered as b5, onAbandonedCheckoutUpdated as b6, getAbandonedCheckout as b7, deleteAbandonedCheckout as b8, bulkDeleteAbandonedCheckouts as b9, queryAbandonedCheckouts as ba, redirectToCheckout as bb, type AbandonedCheckoutDeletedEnvelope as c, type AbandonedCheckoutRecoveredEnvelope as d, type AbandonedCheckoutUpdatedEnvelope as e, type AbandonedCheckoutsQueryBuilder as f, type AbandonedCheckoutQuery as g, ActivityType as h, Status as i, DimensionsUnit as j, DiscountType as k, SortOrder as l, type V1BuyerInfo as m, type V1BuyerInfoIdOneOf as n, type VatId as o, type MultiCurrencyPrice as p, type Activity as q, type CatalogReference as r, type DescriptionLine as s, typedQueryAbandonedCheckouts as t, type DescriptionLineValueOneOf as u, type DescriptionLineDescriptionLineValueOneOf as v, type DescriptionLineName as w, type PlainTextValue as x, type Color as y, type PhysicalProperties as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { A as AbandonedCheckout, B as BulkDeleteAbandonedCheckoutsResponse, a as AbandonedCheckoutSearch, S as SearchAbandonedCheckoutsResponse, R as RawHttpResponse, b as AbandonedCheckoutCreatedEnvelope, c as AbandonedCheckoutDeletedEnvelope, d as AbandonedCheckoutRecoveredEnvelope, e as AbandonedCheckoutUpdatedEnvelope, f as AbandonedCheckoutsQueryBuilder, g as AbandonedCheckoutQuery, t as typedQueryAbandonedCheckouts } from './ecom-v1-abandoned-checkout-abandoned-checkouts.universal-D5cOvD3u.js';
3
- export { aN as AbandonedCheckoutQuerySpec, U as AbandonedCheckoutRecovered, aO as AbandonedCheckoutSearchSpec, aM as AbandonedCheckoutsQueryResult, aI as AccountInfo, aL as AccountInfoMetadata, aD as ActionEvent, p as Activity, h as ActivityType, aQ as ActivityTypeWithLiterals, aP as AddAbandonedCheckoutActivityOptions, am as AddAbandonedCheckoutActivityRequest, an as AddAbandonedCheckoutActivityResponse, a1 as ApplicationError, z as AppliedDiscount, E as AppliedDiscountDiscountSourceOneOf, aJ as BaseEventMetadata, a2 as BulkAbandonedCheckoutResult, a3 as BulkActionMetadata, $ as BulkDeleteAbandonedCheckoutsRequest, O as BuyerInfo, at as Cancel, N as CartAbandonedEvent, Q as CartRecoveredEvent, q as CatalogReference, x as Color, aj as CommonCursorPaging, al as CommonCursors, ai as CommonPaging, ak as CommonPagingMetadataV2, a_ as CommonQueryWithEntityContext, a$ as CommonSearchWithEntityContext, C as CommonSortOrder, aX as CommonSortOrderWithLiterals, ag as CommonSorting, as as Complete, G as Coupon, a9 as CursorPaging, ac as Cursors, Z as DeleteAbandonedCheckoutRequest, _ as DeleteAbandonedCheckoutResponse, r as DescriptionLine, u as DescriptionLineDescriptionLineValueOneOf, v as DescriptionLineName, D as DescriptionLineType, aT as DescriptionLineTypeWithLiterals, s as DescriptionLineValueOneOf, J as DiscountRule, K as DiscountRuleName, j as DiscountType, aU as DiscountTypeWithLiterals, ax as DomainEvent, ay as DomainEventBodyOneOf, aE as Empty, az as EntityCreatedEvent, aC as EntityDeletedEvent, aB as EntityUpdatedEvent, aK as EventMetadata, F as FullAddressContactDetails, X as GetAbandonedCheckoutRequest, Y as GetAbandonedCheckoutResponse, aw as HeadersEntry, aG as IdentificationData, aH as IdentificationDataIdOneOf, I as Identity, aV as IdentityWithLiterals, a0 as ItemMetadata, L as LineItem, H as MerchantDiscount, aF as MessageEnvelope, M as Mode, aY as ModeWithLiterals, o as MultiCurrencyPrice, a8 as Paging, ab as PagingMetadataV2, y as PhysicalProperties, w as PlainTextValue, P as ProductName, a4 as QueryAbandonedCheckoutsRequest, aa as QueryAbandonedCheckoutsResponse, a5 as QueryV2, a6 as QueryV2PagingMethodOneOf, av as RedirectToCheckoutRequest, au as Reschedule, aA as RestoreInfo, ae as Search, ad as SearchAbandonedCheckoutsRequest, ah as SearchDetails, af as SearchPagingMethodOneOf, k as SortOrder, aW as SortOrderWithLiterals, a7 as Sorting, i as Status, aR as StatusWithLiterals, ao as Task, aq as TaskAction, ar as TaskActionActionOneOf, ap as TaskKey, T as Totals, l as V1BuyerInfo, m as V1BuyerInfoIdOneOf, n as VatId, V as VatType, aS as VatTypeWithLiterals, W as WebhookIdentityType, aZ as WebhookIdentityTypeWithLiterals } from './ecom-v1-abandoned-checkout-abandoned-checkouts.universal-D5cOvD3u.js';
2
+ import { A as AbandonedCheckout, B as BulkDeleteAbandonedCheckoutsResponse, a as AbandonedCheckoutSearch, S as SearchAbandonedCheckoutsResponse, R as RawHttpResponse, b as AbandonedCheckoutCreatedEnvelope, c as AbandonedCheckoutDeletedEnvelope, d as AbandonedCheckoutRecoveredEnvelope, e as AbandonedCheckoutUpdatedEnvelope, f as AbandonedCheckoutsQueryBuilder, g as AbandonedCheckoutQuery, t as typedQueryAbandonedCheckouts } from './ecom-v1-abandoned-checkout-abandoned-checkouts.universal-BMNW-O8u.js';
3
+ export { aP as AbandonedCheckoutQuerySpec, Y as AbandonedCheckoutRecovered, aQ as AbandonedCheckoutSearchSpec, aO as AbandonedCheckoutsQueryResult, aK as AccountInfo, aN as AccountInfoMetadata, aF as ActionEvent, q as Activity, h as ActivityType, aS as ActivityTypeWithLiterals, aR as AddAbandonedCheckoutActivityOptions, ao as AddAbandonedCheckoutActivityRequest, ap as AddAbandonedCheckoutActivityResponse, a3 as ApplicationError, G as AppliedDiscount, H as AppliedDiscountDiscountSourceOneOf, aL as BaseEventMetadata, a4 as BulkAbandonedCheckoutResult, a5 as BulkActionMetadata, a1 as BulkDeleteAbandonedCheckoutsRequest, T as BuyerInfo, av as Cancel, Q as CartAbandonedEvent, X as CartRecoveredEvent, r as CatalogReference, y as Color, al as CommonCursorPaging, an as CommonCursors, ak as CommonPaging, am as CommonPagingMetadataV2, b1 as CommonQueryWithEntityContext, b2 as CommonSearchWithEntityContext, C as CommonSortOrder, a_ as CommonSortOrderWithLiterals, ai as CommonSorting, au as Complete, J as Coupon, ab as CursorPaging, ae as Cursors, $ as DeleteAbandonedCheckoutRequest, a0 as DeleteAbandonedCheckoutResponse, s as DescriptionLine, v as DescriptionLineDescriptionLineValueOneOf, w as DescriptionLineName, D as DescriptionLineType, aV as DescriptionLineTypeWithLiterals, u as DescriptionLineValueOneOf, E as Dimensions, j as DimensionsUnit, aW as DimensionsUnitWithLiterals, N as DiscountRule, O as DiscountRuleName, k as DiscountType, aX as DiscountTypeWithLiterals, az as DomainEvent, aA as DomainEventBodyOneOf, aG as Empty, aB as EntityCreatedEvent, aE as EntityDeletedEvent, aD as EntityUpdatedEvent, aM as EventMetadata, F as FullAddressContactDetails, Z as GetAbandonedCheckoutRequest, _ as GetAbandonedCheckoutResponse, ay as HeadersEntry, aI as IdentificationData, aJ as IdentificationDataIdOneOf, I as Identity, aY as IdentityWithLiterals, a2 as ItemMetadata, L as LineItem, K as MerchantDiscount, aH as MessageEnvelope, M as Mode, a$ as ModeWithLiterals, p as MultiCurrencyPrice, aa as Paging, ad as PagingMetadataV2, z as PhysicalProperties, x as PlainTextValue, P as ProductName, a6 as QueryAbandonedCheckoutsRequest, ac as QueryAbandonedCheckoutsResponse, a7 as QueryV2, a8 as QueryV2PagingMethodOneOf, ax as RedirectToCheckoutRequest, aw as Reschedule, aC as RestoreInfo, ag as Search, af as SearchAbandonedCheckoutsRequest, aj as SearchDetails, ah as SearchPagingMethodOneOf, l as SortOrder, aZ as SortOrderWithLiterals, a9 as Sorting, i as Status, aT as StatusWithLiterals, aq as Task, as as TaskAction, at as TaskActionActionOneOf, ar as TaskKey, U as Totals, m as V1BuyerInfo, n as V1BuyerInfoIdOneOf, o as VatId, V as VatType, aU as VatTypeWithLiterals, W as WebhookIdentityType, b0 as WebhookIdentityTypeWithLiterals } from './ecom-v1-abandoned-checkout-abandoned-checkouts.universal-BMNW-O8u.js';
4
4
 
5
5
  declare function getAbandonedCheckout$1(httpClient: HttpClient): GetAbandonedCheckoutSignature;
6
6
  interface GetAbandonedCheckoutSignature {
@@ -23,6 +23,7 @@ __export(index_exports, {
23
23
  ActivityType: () => ActivityType,
24
24
  CommonSortOrder: () => CommonSortOrder,
25
25
  DescriptionLineType: () => DescriptionLineType,
26
+ DimensionsUnit: () => DimensionsUnit,
26
27
  DiscountType: () => DiscountType,
27
28
  Identity: () => Identity,
28
29
  Mode: () => Mode,
@@ -386,6 +387,16 @@ var DescriptionLineType = /* @__PURE__ */ ((DescriptionLineType2) => {
386
387
  DescriptionLineType2["COLOR"] = "COLOR";
387
388
  return DescriptionLineType2;
388
389
  })(DescriptionLineType || {});
390
+ var DimensionsUnit = /* @__PURE__ */ ((DimensionsUnit2) => {
391
+ DimensionsUnit2["UNKNOWN_DIMENSIONS_UNIT"] = "UNKNOWN_DIMENSIONS_UNIT";
392
+ DimensionsUnit2["MM"] = "MM";
393
+ DimensionsUnit2["CM"] = "CM";
394
+ DimensionsUnit2["M"] = "M";
395
+ DimensionsUnit2["IN"] = "IN";
396
+ DimensionsUnit2["FT"] = "FT";
397
+ DimensionsUnit2["YD"] = "YD";
398
+ return DimensionsUnit2;
399
+ })(DimensionsUnit || {});
389
400
  var DiscountType = /* @__PURE__ */ ((DiscountType2) => {
390
401
  DiscountType2["GLOBAL"] = "GLOBAL";
391
402
  DiscountType2["SPECIFIC_ITEMS"] = "SPECIFIC_ITEMS";
@@ -780,22 +791,22 @@ var onAbandonedCheckoutDeleted = (0, import_sdk_types.EventDefinition)(
780
791
  {
781
792
  transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
782
793
  paths: [
783
- { path: "undefined.createdDate" },
784
- { path: "undefined.updatedDate" },
785
- { path: "undefined.checkoutRecoveredDate" },
786
- { path: "undefined.activities.createdDate" },
794
+ { path: "entity.createdDate" },
795
+ { path: "entity.updatedDate" },
796
+ { path: "entity.checkoutRecoveredDate" },
797
+ { path: "entity.activities.createdDate" },
787
798
  { path: "metadata.eventTime" }
788
799
  ]
789
800
  },
790
801
  {
791
802
  transformFn: import_image2.transformRESTImageToSDKImage,
792
- paths: [{ path: "undefined.lineItems.image" }]
803
+ paths: [{ path: "entity.lineItems.image" }]
793
804
  },
794
805
  {
795
806
  transformFn: import_float2.transformRESTFloatToSDKFloat,
796
807
  paths: [
797
- { path: "undefined.lineItems.physicalProperties.weight" },
798
- { path: "undefined.appliedDiscounts.merchantDiscount.percentage" }
808
+ { path: "entity.lineItems.physicalProperties.weight" },
809
+ { path: "entity.appliedDiscounts.merchantDiscount.percentage" }
799
810
  ]
800
811
  }
801
812
  ])
@@ -903,6 +914,7 @@ var onAbandonedCheckoutUpdated2 = (0, import_event_definition_modules.createEven
903
914
  ActivityType,
904
915
  CommonSortOrder,
905
916
  DescriptionLineType,
917
+ DimensionsUnit,
906
918
  DiscountType,
907
919
  Identity,
908
920
  Mode,