@pisell/pisellos 2.2.262 → 2.2.264

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 (131) hide show
  1. package/dist/model/strategy/adapter/index.d.ts +0 -4
  2. package/dist/model/strategy/adapter/index.js +1 -5
  3. package/dist/model/strategy/adapter/promotion/adapter.d.ts +4 -0
  4. package/dist/model/strategy/adapter/promotion/adapter.js +23 -0
  5. package/dist/model/strategy/adapter/promotion/evaluator.d.ts +17 -0
  6. package/dist/model/strategy/adapter/promotion/evaluator.js +279 -6
  7. package/dist/model/strategy/adapter/promotion/examples.d.ts +86 -0
  8. package/dist/model/strategy/adapter/promotion/examples.js +99 -0
  9. package/dist/model/strategy/adapter/promotion/index.d.ts +1 -1
  10. package/dist/model/strategy/adapter/promotion/type.d.ts +90 -2
  11. package/dist/model/strategy/adapter/promotion/type.js +45 -0
  12. package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +10 -16
  13. package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +1 -2
  14. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +1 -1
  15. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.js +1 -32
  16. package/dist/modules/Discount/index.d.ts +2 -5
  17. package/dist/modules/Discount/index.js +7 -30
  18. package/dist/modules/Discount/types.d.ts +0 -4
  19. package/dist/modules/Order/index.d.ts +2 -14
  20. package/dist/modules/Order/index.js +736 -1035
  21. package/dist/modules/Order/types.d.ts +0 -16
  22. package/dist/modules/Order/utils.d.ts +3 -4
  23. package/dist/modules/Order/utils.js +61 -54
  24. package/dist/modules/Product/types.d.ts +0 -22
  25. package/dist/modules/ProductList/index.d.ts +1 -1
  26. package/dist/modules/ProductList/index.js +2 -4
  27. package/dist/modules/ProductList/types.d.ts +0 -2
  28. package/dist/modules/Rules/index.d.ts +9 -2
  29. package/dist/modules/Rules/index.js +43 -69
  30. package/dist/modules/Rules/types.d.ts +1 -10
  31. package/dist/server/index.d.ts +0 -55
  32. package/dist/server/index.js +742 -1161
  33. package/dist/server/modules/order/index.d.ts +4 -10
  34. package/dist/server/modules/order/index.js +399 -404
  35. package/dist/server/modules/order/types.d.ts +0 -4
  36. package/dist/server/modules/products/index.d.ts +8 -31
  37. package/dist/server/modules/products/index.js +390 -549
  38. package/dist/server/modules/products/types.d.ts +0 -18
  39. package/dist/solution/BaseSales/index.d.ts +1 -21
  40. package/dist/solution/BaseSales/index.js +789 -1136
  41. package/dist/solution/BaseSales/types.d.ts +1 -6
  42. package/dist/solution/BaseSales/types.js +1 -1
  43. package/dist/solution/BaseSales/utils/cartPromotion.d.ts +3 -1
  44. package/dist/solution/BaseSales/utils/cartPromotion.js +97 -50
  45. package/dist/solution/BaseSales/utils/parseSalesResponse.d.ts +3 -3
  46. package/dist/solution/BaseSales/utils/parseSalesResponse.js +8 -6
  47. package/dist/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +1 -14
  48. package/dist/solution/BookingByStep/index.d.ts +1 -1
  49. package/dist/solution/BookingTicket/index.js +25 -59
  50. package/dist/solution/BookingTicket/types.d.ts +0 -2
  51. package/dist/solution/ScanOrder/index.js +31 -20
  52. package/dist/solution/ShopDiscount/index.js +14 -15
  53. package/dist/solution/VenueBooking/index.js +30 -19
  54. package/lib/model/strategy/adapter/index.d.ts +0 -4
  55. package/lib/model/strategy/adapter/index.js +2 -13
  56. package/lib/model/strategy/adapter/promotion/adapter.d.ts +4 -0
  57. package/lib/model/strategy/adapter/promotion/adapter.js +20 -0
  58. package/lib/model/strategy/adapter/promotion/evaluator.d.ts +17 -0
  59. package/lib/model/strategy/adapter/promotion/evaluator.js +235 -0
  60. package/lib/model/strategy/adapter/promotion/examples.d.ts +86 -0
  61. package/lib/model/strategy/adapter/promotion/examples.js +91 -0
  62. package/lib/model/strategy/adapter/promotion/index.d.ts +1 -1
  63. package/lib/model/strategy/adapter/promotion/index.js +51 -0
  64. package/lib/model/strategy/adapter/promotion/type.d.ts +90 -2
  65. package/lib/model/strategy/adapter/promotion/type.js +2 -0
  66. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +0 -5
  67. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +0 -1
  68. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +1 -1
  69. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +2 -23
  70. package/lib/modules/Discount/index.d.ts +2 -5
  71. package/lib/modules/Discount/index.js +3 -23
  72. package/lib/modules/Discount/types.d.ts +0 -4
  73. package/lib/modules/Order/index.d.ts +2 -14
  74. package/lib/modules/Order/index.js +60 -326
  75. package/lib/modules/Order/types.d.ts +0 -16
  76. package/lib/modules/Order/utils.d.ts +3 -4
  77. package/lib/modules/Order/utils.js +23 -22
  78. package/lib/modules/Product/types.d.ts +0 -22
  79. package/lib/modules/ProductList/index.d.ts +1 -1
  80. package/lib/modules/ProductList/index.js +2 -4
  81. package/lib/modules/ProductList/types.d.ts +0 -2
  82. package/lib/modules/Rules/index.d.ts +9 -2
  83. package/lib/modules/Rules/index.js +29 -61
  84. package/lib/modules/Rules/types.d.ts +1 -10
  85. package/lib/server/index.d.ts +0 -55
  86. package/lib/server/index.js +31 -327
  87. package/lib/server/modules/order/index.d.ts +4 -10
  88. package/lib/server/modules/order/index.js +139 -198
  89. package/lib/server/modules/order/types.d.ts +0 -4
  90. package/lib/server/modules/products/index.d.ts +8 -31
  91. package/lib/server/modules/products/index.js +35 -134
  92. package/lib/server/modules/products/types.d.ts +0 -18
  93. package/lib/solution/BaseSales/index.d.ts +1 -21
  94. package/lib/solution/BaseSales/index.js +72 -313
  95. package/lib/solution/BaseSales/types.d.ts +1 -6
  96. package/lib/solution/BaseSales/utils/cartPromotion.d.ts +3 -1
  97. package/lib/solution/BaseSales/utils/cartPromotion.js +64 -25
  98. package/lib/solution/BaseSales/utils/parseSalesResponse.d.ts +3 -3
  99. package/lib/solution/BaseSales/utils/parseSalesResponse.js +5 -4
  100. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +0 -8
  101. package/lib/solution/BookingByStep/index.d.ts +1 -1
  102. package/lib/solution/BookingTicket/index.js +8 -33
  103. package/lib/solution/BookingTicket/types.d.ts +0 -2
  104. package/lib/solution/ScanOrder/index.js +8 -0
  105. package/lib/solution/ShopDiscount/index.js +1 -2
  106. package/lib/solution/VenueBooking/index.js +8 -0
  107. package/package.json +1 -1
  108. package/dist/model/strategy/adapter/dataVariant/adapter.d.ts +0 -50
  109. package/dist/model/strategy/adapter/dataVariant/adapter.js +0 -167
  110. package/dist/model/strategy/adapter/dataVariant/evaluator.d.ts +0 -89
  111. package/dist/model/strategy/adapter/dataVariant/evaluator.js +0 -780
  112. package/dist/model/strategy/adapter/dataVariant/examples.d.ts +0 -39
  113. package/dist/model/strategy/adapter/dataVariant/examples.js +0 -277
  114. package/dist/model/strategy/adapter/dataVariant/index.d.ts +0 -4
  115. package/dist/model/strategy/adapter/dataVariant/index.js +0 -4
  116. package/dist/model/strategy/adapter/dataVariant/type.d.ts +0 -148
  117. package/dist/model/strategy/adapter/dataVariant/type.js +0 -54
  118. package/dist/modules/Order/utils/orderCollectionIdentity.d.ts +0 -53
  119. package/dist/modules/Order/utils/orderCollectionIdentity.js +0 -405
  120. package/lib/model/strategy/adapter/dataVariant/adapter.d.ts +0 -50
  121. package/lib/model/strategy/adapter/dataVariant/adapter.js +0 -149
  122. package/lib/model/strategy/adapter/dataVariant/evaluator.d.ts +0 -89
  123. package/lib/model/strategy/adapter/dataVariant/evaluator.js +0 -583
  124. package/lib/model/strategy/adapter/dataVariant/examples.d.ts +0 -39
  125. package/lib/model/strategy/adapter/dataVariant/examples.js +0 -293
  126. package/lib/model/strategy/adapter/dataVariant/index.d.ts +0 -4
  127. package/lib/model/strategy/adapter/dataVariant/index.js +0 -38
  128. package/lib/model/strategy/adapter/dataVariant/type.d.ts +0 -148
  129. package/lib/model/strategy/adapter/dataVariant/type.js +0 -31
  130. package/lib/modules/Order/utils/orderCollectionIdentity.d.ts +0 -53
  131. package/lib/modules/Order/utils/orderCollectionIdentity.js +0 -415
@@ -1,415 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
-
19
- // src/modules/Order/utils/orderCollectionIdentity.ts
20
- var orderCollectionIdentity_exports = {};
21
- __export(orderCollectionIdentity_exports, {
22
- applyOrderCollectionUidRemaps: () => applyOrderCollectionUidRemaps,
23
- buildOrderCollectionFallbackUid: () => buildOrderCollectionFallbackUid,
24
- createUuidV4: () => createUuidV4,
25
- getOrderCollectionPersistentId: () => getOrderCollectionPersistentId,
26
- getOrderCollectionReferenceUid: () => getOrderCollectionReferenceUid,
27
- getOrderCollectionUid: () => getOrderCollectionUid,
28
- isBlankOrderCollectionIdentity: () => isBlankOrderCollectionIdentity,
29
- isSameOrderCollectionItem: () => isSameOrderCollectionItem,
30
- mergeOrderCollectionItems: () => mergeOrderCollectionItems,
31
- normalizeOrderCollection: () => normalizeOrderCollection,
32
- normalizeOrderCollections: () => normalizeOrderCollections,
33
- setOrderCollectionUid: () => setOrderCollectionUid
34
- });
35
- module.exports = __toCommonJS(orderCollectionIdentity_exports);
36
- var import_lodash_es = require("lodash-es");
37
- var IDENTITY_CONFIG = {
38
- product: {
39
- persistentIdField: "order_detail_id",
40
- uidField: "unique_identification_number",
41
- fallbackPrefix: "os-fallback:product:order-detail"
42
- },
43
- booking: {
44
- persistentIdField: "schedule_event_id",
45
- uidField: "unique_identification_number",
46
- fallbackPrefix: "os-fallback:booking:schedule-event"
47
- },
48
- payment: {
49
- persistentIdField: "order_payment_id",
50
- uidField: "unique_payment_number",
51
- fallbackPrefix: "os-fallback:payment:order-payment"
52
- }
53
- };
54
- function createUuidV4() {
55
- const template = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";
56
- return template.replace(/[xy]/g, (char) => {
57
- const randomValue = Math.floor(Math.random() * 16);
58
- const value = char === "x" ? randomValue : randomValue & 3 | 8;
59
- return value.toString(16);
60
- });
61
- }
62
- function isBlankOrderCollectionIdentity(value) {
63
- return value === void 0 || value === null || value === "";
64
- }
65
- function getOrderCollectionPersistentId(kind, item) {
66
- const record = item;
67
- if (!record)
68
- return null;
69
- const value = record[IDENTITY_CONFIG[kind].persistentIdField];
70
- if (isBlankOrderCollectionIdentity(value))
71
- return null;
72
- return String(value);
73
- }
74
- function getOrderCollectionUid(kind, item) {
75
- var _a;
76
- const record = item;
77
- if (!record)
78
- return null;
79
- const uidField = IDENTITY_CONFIG[kind].uidField;
80
- const metadataValue = (_a = record.metadata) == null ? void 0 : _a[uidField];
81
- if (!isBlankOrderCollectionIdentity(metadataValue))
82
- return String(metadataValue);
83
- const topLevelValue = record[uidField];
84
- if (isBlankOrderCollectionIdentity(topLevelValue))
85
- return null;
86
- return String(topLevelValue);
87
- }
88
- function buildOrderCollectionFallbackUid(kind, persistentId) {
89
- return `${IDENTITY_CONFIG[kind].fallbackPrefix}:${String(persistentId)}`;
90
- }
91
- function getOrderCollectionReferenceUid(kind, item) {
92
- const uid = getOrderCollectionUid(kind, item);
93
- if (uid)
94
- return uid;
95
- const persistentId = getOrderCollectionPersistentId(kind, item);
96
- return persistentId ? buildOrderCollectionFallbackUid(kind, persistentId) : null;
97
- }
98
- function setOrderCollectionUid(kind, item, uid) {
99
- const record = (0, import_lodash_es.cloneDeep)(item || {});
100
- const uidField = IDENTITY_CONFIG[kind].uidField;
101
- record.metadata = {
102
- ...record.metadata && typeof record.metadata === "object" ? record.metadata : {},
103
- [uidField]: uid
104
- };
105
- delete record[uidField];
106
- return record;
107
- }
108
- function isSameOrderCollectionItem(kind, left, right) {
109
- const leftPersistentId = getOrderCollectionPersistentId(kind, left);
110
- const rightPersistentId = getOrderCollectionPersistentId(kind, right);
111
- if (leftPersistentId && rightPersistentId) {
112
- return leftPersistentId === rightPersistentId;
113
- }
114
- const leftUid = getOrderCollectionUid(kind, left);
115
- const rightUid = getOrderCollectionUid(kind, right);
116
- return Boolean(leftUid && rightUid && leftUid === rightUid);
117
- }
118
- function mergeOrderCollectionItems(kind, currentItem, incomingItem, options) {
119
- var _a;
120
- const current = (0, import_lodash_es.cloneDeep)(currentItem || {});
121
- const incoming = (0, import_lodash_es.cloneDeep)(incomingItem || {});
122
- const persistentIdField = IDENTITY_CONFIG[kind].persistentIdField;
123
- const currentPersistentIdValue = current[persistentIdField];
124
- const incomingPersistentIdValue = incoming[persistentIdField];
125
- const incomingUid = getOrderCollectionUid(kind, incoming);
126
- const currentUid = getOrderCollectionUid(kind, current);
127
- const persistentId = getOrderCollectionPersistentId(kind, incoming) || getOrderCollectionPersistentId(kind, current);
128
- const merged = {
129
- ...current,
130
- ...incoming,
131
- metadata: {
132
- ...current.metadata && typeof current.metadata === "object" ? current.metadata : {},
133
- ...incoming.metadata && typeof incoming.metadata === "object" ? incoming.metadata : {}
134
- }
135
- };
136
- if (!isBlankOrderCollectionIdentity(incomingPersistentIdValue)) {
137
- merged[persistentIdField] = incomingPersistentIdValue;
138
- } else if (!isBlankOrderCollectionIdentity(currentPersistentIdValue)) {
139
- merged[persistentIdField] = currentPersistentIdValue;
140
- }
141
- const incomingUidIsDerived = Boolean(
142
- incomingUid && persistentId && (incomingUid === buildOrderCollectionFallbackUid(kind, persistentId) || incomingUid.startsWith(`${buildOrderCollectionFallbackUid(kind, persistentId)}:conflict:`))
143
- );
144
- const uid = (incomingUid && !incomingUidIsDerived ? incomingUid : null) || currentUid || incomingUid || ((options == null ? void 0 : options.ensureUid) === false ? null : persistentId ? buildOrderCollectionFallbackUid(kind, persistentId) : ((_a = options == null ? void 0 : options.createAnonymousUid) == null ? void 0 : _a.call(options)) || createUuidV4());
145
- return uid ? setOrderCollectionUid(kind, merged, uid) : merged;
146
- }
147
- function createEmptyIdentityStats() {
148
- return {
149
- backfilledUidCount: 0,
150
- collapsedDuplicateCount: 0,
151
- uidConflictCount: 0,
152
- anonymousRowCount: 0
153
- };
154
- }
155
- function allocateAnonymousUid(occupiedUids, createAnonymousUid) {
156
- let uid = createAnonymousUid();
157
- while (occupiedUids.has(uid))
158
- uid = createAnonymousUid();
159
- return uid;
160
- }
161
- function allocatePersistentConflictUid(kind, persistentId, occupiedUids) {
162
- const fallbackUid = buildOrderCollectionFallbackUid(kind, persistentId);
163
- if (!occupiedUids.has(fallbackUid))
164
- return fallbackUid;
165
- let suffix = 1;
166
- let candidate = `${fallbackUid}:conflict:${suffix}`;
167
- while (occupiedUids.has(candidate)) {
168
- suffix += 1;
169
- candidate = `${fallbackUid}:conflict:${suffix}`;
170
- }
171
- return candidate;
172
- }
173
- function normalizeOrderCollection(kind, items, options) {
174
- var _a, _b;
175
- const stats = createEmptyIdentityStats();
176
- const uidRemaps = [];
177
- const result = [];
178
- const ensureUid = (options == null ? void 0 : options.ensureUid) !== false;
179
- const createAnonymousUid = (options == null ? void 0 : options.createAnonymousUid) || createUuidV4;
180
- for (const rawItem of items || []) {
181
- const item = (0, import_lodash_es.cloneDeep)(rawItem);
182
- const existingIndex = result.findIndex(
183
- (existing) => isSameOrderCollectionItem(kind, existing, item)
184
- );
185
- if (existingIndex === -1) {
186
- result.push(item);
187
- continue;
188
- }
189
- const previousReferenceUid = getOrderCollectionReferenceUid(
190
- kind,
191
- result[existingIndex]
192
- );
193
- const incomingReferenceUid = getOrderCollectionReferenceUid(kind, item);
194
- result[existingIndex] = mergeOrderCollectionItems(
195
- kind,
196
- result[existingIndex],
197
- item,
198
- { ensureUid: false }
199
- );
200
- const nextUid = getOrderCollectionUid(kind, result[existingIndex]);
201
- if (nextUid) {
202
- for (const from of /* @__PURE__ */ new Set([previousReferenceUid, incomingReferenceUid])) {
203
- if (!from || from === nextUid)
204
- continue;
205
- uidRemaps.push({
206
- kind,
207
- from,
208
- to: nextUid,
209
- persistentId: getOrderCollectionPersistentId(kind, result[existingIndex])
210
- });
211
- }
212
- }
213
- stats.collapsedDuplicateCount += 1;
214
- }
215
- if (!ensureUid)
216
- return { items: result, stats, uidRemaps };
217
- const occupiedUids = /* @__PURE__ */ new Set();
218
- for (let index = 0; index < result.length; index += 1) {
219
- let item = result[index];
220
- const persistentId = getOrderCollectionPersistentId(kind, item);
221
- let uid = getOrderCollectionUid(kind, item);
222
- if (!uid) {
223
- uid = persistentId ? buildOrderCollectionFallbackUid(kind, persistentId) : allocateAnonymousUid(occupiedUids, createAnonymousUid);
224
- item = setOrderCollectionUid(kind, item, uid);
225
- result[index] = item;
226
- stats.backfilledUidCount += 1;
227
- if (!persistentId)
228
- stats.anonymousRowCount += 1;
229
- }
230
- if (occupiedUids.has(uid)) {
231
- const replacementUid = persistentId ? allocatePersistentConflictUid(kind, persistentId, occupiedUids) : allocateAnonymousUid(occupiedUids, createAnonymousUid);
232
- result[index] = setOrderCollectionUid(kind, item, replacementUid);
233
- uidRemaps.push({
234
- kind,
235
- from: uid,
236
- to: replacementUid,
237
- persistentId,
238
- scope: "linked-owner",
239
- referenceOwnerUid: kind === "product" ? String(
240
- (item == null ? void 0 : item.booking_uid) || ((_a = item == null ? void 0 : item.metadata) == null ? void 0 : _a.booking_uid) || ""
241
- ) || null : kind === "booking" ? String(
242
- (item == null ? void 0 : item.product_uid) || ((_b = item == null ? void 0 : item.metadata) == null ? void 0 : _b.product_uid) || ""
243
- ) || null : null
244
- });
245
- uid = replacementUid;
246
- stats.uidConflictCount += 1;
247
- }
248
- occupiedUids.add(uid);
249
- }
250
- return { items: result, stats, uidRemaps };
251
- }
252
- function applyOrderCollectionUidRemaps(sourceOrder, uidRemaps) {
253
- var _a, _b, _c, _d, _e;
254
- if (!uidRemaps.length)
255
- return sourceOrder;
256
- const order = (0, import_lodash_es.cloneDeep)(sourceOrder);
257
- const hasAmbiguousLinkedOwner = (remap) => {
258
- if (remap.scope !== "linked-owner" || !remap.referenceOwnerUid)
259
- return false;
260
- const ownerKind = remap.kind === "product" ? "booking" : remap.kind === "booking" ? "product" : null;
261
- if (!ownerKind)
262
- return false;
263
- return uidRemaps.some(
264
- (candidate) => candidate.scope === "linked-owner" && candidate.kind === ownerKind && candidate.from === remap.referenceOwnerUid
265
- );
266
- };
267
- for (const remap of uidRemaps) {
268
- if (remap.from === remap.to)
269
- continue;
270
- const linkedOwnerIsAmbiguous = hasAmbiguousLinkedOwner(remap);
271
- if (remap.kind === "product") {
272
- for (const booking of order.bookings || []) {
273
- if (remap.scope === "linked-owner" && (linkedOwnerIsAmbiguous || getOrderCollectionUid("booking", booking) !== remap.referenceOwnerUid)) {
274
- continue;
275
- }
276
- if (String((booking == null ? void 0 : booking.product_uid) || "") === remap.from) {
277
- booking.product_uid = remap.to;
278
- }
279
- if (String(((_a = booking == null ? void 0 : booking.metadata) == null ? void 0 : _a.product_uid) || "") === remap.from) {
280
- booking.metadata = { ...booking.metadata || {}, product_uid: remap.to };
281
- }
282
- }
283
- if (remap.scope !== "linked-owner") {
284
- for (const product of order.products || []) {
285
- if (String(((_b = product == null ? void 0 : product.metadata) == null ? void 0 : _b.parent_unique_identification_number) || "") === remap.from) {
286
- product.metadata = {
287
- ...product.metadata || {},
288
- parent_unique_identification_number: remap.to
289
- };
290
- }
291
- const giftInfo = (_c = product == null ? void 0 : product.metadata) == null ? void 0 : _c._giftInfo;
292
- if (giftInfo && typeof giftInfo === "object") {
293
- const sourceProductIds = Array.isArray(giftInfo.sourceProductIds) ? giftInfo.sourceProductIds.map(
294
- (uid) => String(uid) === remap.from ? remap.to : uid
295
- ) : giftInfo.sourceProductIds;
296
- const sourceProductId = String(giftInfo.sourceProductId || "") === remap.from ? remap.to : giftInfo.sourceProductId;
297
- product.metadata = {
298
- ...product.metadata || {},
299
- _giftInfo: {
300
- ...giftInfo,
301
- ...sourceProductIds !== void 0 ? { sourceProductIds } : {},
302
- ...sourceProductId !== void 0 ? { sourceProductId } : {}
303
- }
304
- };
305
- }
306
- }
307
- }
308
- const productsByUid = (_d = order._extend) == null ? void 0 : _d.productsByUid;
309
- const cachedProduct = productsByUid == null ? void 0 : productsByUid[remap.from];
310
- const cachedPersistentId = getOrderCollectionPersistentId(
311
- "product",
312
- (cachedProduct == null ? void 0 : cachedProduct.origin) || cachedProduct
313
- );
314
- if (productsByUid && remap.scope === "linked-owner") {
315
- const retainedProduct = (order.products || []).find(
316
- (product) => getOrderCollectionUid("product", product) === remap.from
317
- );
318
- const remappedProduct = (order.products || []).find(
319
- (product) => getOrderCollectionUid("product", product) === remap.to
320
- );
321
- if (cachedProduct && remap.persistentId && cachedPersistentId === remap.persistentId) {
322
- productsByUid[remap.to] = {
323
- ...cachedProduct || {},
324
- ...productsByUid[remap.to] || {}
325
- };
326
- if (retainedProduct) {
327
- productsByUid[remap.from] = {
328
- ...cachedProduct || {},
329
- origin: (0, import_lodash_es.cloneDeep)(retainedProduct)
330
- };
331
- }
332
- } else if (remappedProduct && !productsByUid[remap.to]) {
333
- productsByUid[remap.to] = { origin: (0, import_lodash_es.cloneDeep)(remappedProduct) };
334
- }
335
- continue;
336
- }
337
- if (cachedProduct && remap.scope !== "linked-owner") {
338
- productsByUid[remap.to] = {
339
- ...cachedProduct || {},
340
- ...productsByUid[remap.to] || {}
341
- };
342
- delete productsByUid[remap.from];
343
- }
344
- }
345
- if (remap.kind === "booking") {
346
- for (const product of order.products || []) {
347
- if (remap.scope === "linked-owner" && (linkedOwnerIsAmbiguous || getOrderCollectionUid("product", product) !== remap.referenceOwnerUid)) {
348
- continue;
349
- }
350
- if (String((product == null ? void 0 : product.booking_uid) || "") === remap.from) {
351
- product.booking_uid = remap.to;
352
- }
353
- if (String(((_e = product == null ? void 0 : product.metadata) == null ? void 0 : _e.booking_uid) || "") === remap.from) {
354
- product.metadata = { ...product.metadata || {}, booking_uid: remap.to };
355
- }
356
- }
357
- }
358
- }
359
- return order;
360
- }
361
- function normalizeOrderCollections(sourceOrder, options) {
362
- let order = (0, import_lodash_es.cloneDeep)(sourceOrder || {});
363
- const orderRecord = order;
364
- const productResult = normalizeOrderCollection(
365
- "product",
366
- Array.isArray(orderRecord.products) ? orderRecord.products : [],
367
- options
368
- );
369
- const bookingResult = normalizeOrderCollection(
370
- "booking",
371
- Array.isArray(orderRecord.bookings) ? orderRecord.bookings : [],
372
- options
373
- );
374
- const paymentResult = normalizeOrderCollection(
375
- "payment",
376
- Array.isArray(orderRecord.payments) ? orderRecord.payments : [],
377
- options
378
- );
379
- if (Array.isArray(orderRecord.products))
380
- orderRecord.products = productResult.items;
381
- if (Array.isArray(orderRecord.bookings))
382
- orderRecord.bookings = bookingResult.items;
383
- if (Array.isArray(orderRecord.payments))
384
- orderRecord.payments = paymentResult.items;
385
- const uidRemaps = [
386
- ...productResult.uidRemaps,
387
- ...bookingResult.uidRemaps,
388
- ...paymentResult.uidRemaps
389
- ];
390
- order = applyOrderCollectionUidRemaps(order, uidRemaps);
391
- return {
392
- order,
393
- stats: {
394
- product: productResult.stats,
395
- booking: bookingResult.stats,
396
- payment: paymentResult.stats
397
- },
398
- uidRemaps
399
- };
400
- }
401
- // Annotate the CommonJS export names for ESM import in node:
402
- 0 && (module.exports = {
403
- applyOrderCollectionUidRemaps,
404
- buildOrderCollectionFallbackUid,
405
- createUuidV4,
406
- getOrderCollectionPersistentId,
407
- getOrderCollectionReferenceUid,
408
- getOrderCollectionUid,
409
- isBlankOrderCollectionIdentity,
410
- isSameOrderCollectionItem,
411
- mergeOrderCollectionItems,
412
- normalizeOrderCollection,
413
- normalizeOrderCollections,
414
- setOrderCollectionUid
415
- });