@contrail/flexplm 1.5.0-alpha.98b8b06 → 1.5.0

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 (111) hide show
  1. package/.github/pull_request_template.md +31 -0
  2. package/.github/workflows/flexplm-lib.yml +27 -0
  3. package/.github/workflows/publish-to-npm.yml +121 -0
  4. package/CHANGELOG.md +45 -0
  5. package/lib/entity-processor/base-entity-processor.d.ts +0 -65
  6. package/lib/entity-processor/base-entity-processor.js +0 -71
  7. package/lib/entity-processor/base-entity-processor.spec.js +0 -1
  8. package/lib/index.d.ts +0 -1
  9. package/lib/index.js +0 -1
  10. package/lib/publish/base-process-publish-assortment.d.ts +0 -25
  11. package/lib/publish/base-process-publish-assortment.js +6 -60
  12. package/lib/publish/base-process-publish-assortment.spec.js +4 -22
  13. package/lib/publish/mockData.js +0 -5
  14. package/lib/transform/identifier-conversion-spec-mockData.js +6 -34
  15. package/lib/transform/identifier-conversion.d.ts +0 -36
  16. package/lib/transform/identifier-conversion.js +0 -36
  17. package/lib/transform/identifier-conversion.spec.js +0 -4
  18. package/lib/util/config-defaults.js +0 -3
  19. package/lib/util/config-defaults.spec.js +0 -9
  20. package/lib/util/data-converter-spec-mockData.js +3 -17
  21. package/lib/util/data-converter.d.ts +0 -97
  22. package/lib/util/data-converter.js +1 -127
  23. package/lib/util/data-converter.spec.js +0 -2
  24. package/lib/util/error-response-object.d.ts +0 -5
  25. package/lib/util/error-response-object.js +0 -7
  26. package/lib/util/event-short-message-status.js +0 -1
  27. package/lib/util/federation.js +0 -8
  28. package/lib/util/flexplm-connect.d.ts +0 -7
  29. package/lib/util/flexplm-connect.js +0 -14
  30. package/lib/util/logger-config.js +0 -1
  31. package/lib/util/map-util-spec-mockData.js +3 -17
  32. package/lib/util/map-utils.d.ts +0 -27
  33. package/lib/util/map-utils.js +0 -27
  34. package/lib/util/thumbnail-util.d.ts +0 -21
  35. package/lib/util/thumbnail-util.js +1 -28
  36. package/lib/util/thumbnail-util.spec.js +0 -6
  37. package/lib/util/type-conversion-utils-spec-mockData.js +3 -3
  38. package/lib/util/type-conversion-utils.d.ts +1 -152
  39. package/lib/util/type-conversion-utils.js +1 -155
  40. package/lib/util/type-defaults.d.ts +0 -66
  41. package/lib/util/type-defaults.js +0 -66
  42. package/lib/util/type-defaults.spec.js +5 -5
  43. package/lib/util/type-utils.d.ts +0 -21
  44. package/lib/util/type-utils.js +0 -23
  45. package/lib/util/type-utils.spec.js +0 -2
  46. package/package.json +6 -21
  47. package/publish.bat +5 -0
  48. package/publish.sh +5 -0
  49. package/src/entity-processor/base-entity-processor.spec.ts +689 -0
  50. package/src/entity-processor/base-entity-processor.ts +583 -0
  51. package/src/flexplm-request.ts +28 -0
  52. package/src/flexplm-utils.spec.ts +27 -0
  53. package/src/flexplm-utils.ts +29 -0
  54. package/src/index.ts +22 -0
  55. package/src/interfaces/interfaces.ts +122 -0
  56. package/src/interfaces/item-family-changes.ts +67 -0
  57. package/src/interfaces/publish-change-data.ts +43 -0
  58. package/src/publish/base-process-publish-assortment-callback.ts +50 -0
  59. package/src/publish/base-process-publish-assortment.spec.ts +1992 -0
  60. package/src/publish/base-process-publish-assortment.ts +1134 -0
  61. package/src/publish/mockData.ts +4561 -0
  62. package/src/transform/identifier-conversion-spec-mockData.ts +496 -0
  63. package/src/transform/identifier-conversion.spec.ts +386 -0
  64. package/src/transform/identifier-conversion.ts +282 -0
  65. package/src/util/config-defaults.spec.ts +445 -0
  66. package/src/util/config-defaults.ts +106 -0
  67. package/src/util/data-converter-spec-mockData.ts +231 -0
  68. package/src/util/data-converter.spec.ts +1622 -0
  69. package/src/util/data-converter.ts +819 -0
  70. package/src/util/error-response-object.spec.ts +116 -0
  71. package/src/util/error-response-object.ts +50 -0
  72. package/src/util/event-short-message-status.ts +22 -0
  73. package/src/util/federation.ts +172 -0
  74. package/src/util/flexplm-connect.spec.ts +132 -0
  75. package/src/util/flexplm-connect.ts +208 -0
  76. package/src/util/logger-config.ts +20 -0
  77. package/src/util/map-util-spec-mockData.ts +231 -0
  78. package/src/util/map-utils.spec.ts +103 -0
  79. package/src/util/map-utils.ts +41 -0
  80. package/src/util/mockData.ts +101 -0
  81. package/src/util/thumbnail-util.spec.ts +508 -0
  82. package/src/util/thumbnail-util.ts +272 -0
  83. package/src/util/type-conversion-utils-spec-mockData.ts +272 -0
  84. package/src/util/type-conversion-utils.spec.ts +1031 -0
  85. package/src/util/type-conversion-utils.ts +490 -0
  86. package/src/util/type-defaults.spec.ts +797 -0
  87. package/src/util/type-defaults.ts +320 -0
  88. package/src/util/type-utils.spec.ts +227 -0
  89. package/src/util/type-utils.ts +144 -0
  90. package/tsconfig.json +24 -0
  91. package/tslint.json +57 -0
  92. package/lib/cli/commands/compile.d.ts +0 -4
  93. package/lib/cli/commands/compile.js +0 -73
  94. package/lib/cli/commands/compile.spec.d.ts +0 -1
  95. package/lib/cli/commands/compile.spec.js +0 -80
  96. package/lib/cli/commands/create.d.ts +0 -5
  97. package/lib/cli/commands/create.js +0 -77
  98. package/lib/cli/commands/create.spec.d.ts +0 -1
  99. package/lib/cli/commands/create.spec.js +0 -78
  100. package/lib/cli/commands/upload.d.ts +0 -17
  101. package/lib/cli/commands/upload.js +0 -228
  102. package/lib/cli/commands/upload.spec.d.ts +0 -1
  103. package/lib/cli/commands/upload.spec.js +0 -88
  104. package/lib/cli/index.d.ts +0 -5
  105. package/lib/cli/index.js +0 -70
  106. package/lib/cli/index.spec.d.ts +0 -1
  107. package/lib/cli/index.spec.js +0 -85
  108. package/lib/cli/template/mapping-template.ts.template +0 -62
  109. package/lib/interfaces/mapping-file.d.ts +0 -460
  110. package/lib/interfaces/mapping-file.js +0 -2
  111. package/scripts/copy-template.js +0 -10
@@ -0,0 +1,4561 @@
1
+ export const plan1_history = [
2
+ {
3
+ summary: {
4
+ assortmentId: 'oqIFX3ELRy8sFRd0',
5
+ count: 2,
6
+ aggregates: {
7
+ totalMargin: {}
8
+ },
9
+ updatedOn: '2023-01-16T19:13:59.080Z',
10
+ id: 'oqIFX3ELRy8sFRd0',
11
+ updatedById: 'Eey3ZOi8znUA85i7',
12
+ createdOn: '2023-01-16T19:13:59.080Z',
13
+ createdById: 'Eey3ZOi8znUA85i7',
14
+ orgId: 'cMkHW5GAD8ViOZj-'
15
+ },
16
+ deletes: 0,
17
+ versionComments: '',
18
+ unchanged: 0,
19
+ updatedOn: '2023-01-15T19:13:58.902Z',
20
+ versionName: 'Add family/option & just family',
21
+ updates: 0,
22
+ updatedById: 'Eey3ZOi8znUA85i7',
23
+ createdOn: '2023-01-15T19:13:58.902Z',
24
+ orgId: 'cMkHW5GAD8ViOZj-',
25
+ familyItemsRemoved: 0,
26
+ createdBy: 'Eey3ZOi8znUA85i7',
27
+ assortmentId: 'oqIFX3ELRy8sFRd0',
28
+ id: 'v9BKkHo-tpL0wUZN',
29
+ errors: 0,
30
+ createdById: 'Eey3ZOi8znUA85i7',
31
+ adds: 2
32
+ },
33
+ {
34
+ summary: {
35
+ assortmentId: 'oqIFX3ELRy8sFRd0',
36
+ count: 4,
37
+ aggregates: {
38
+ totalMargin: {}
39
+ },
40
+ updatedOn: '2023-01-16T19:16:06.502Z',
41
+ id: 'oqIFX3ELRy8sFRd0',
42
+ updatedById: 'Eey3ZOi8znUA85i7',
43
+ createdOn: '2023-01-16T19:16:06.502Z',
44
+ createdById: 'Eey3ZOi8znUA85i7',
45
+ orgId: 'cMkHW5GAD8ViOZj-'
46
+ },
47
+ deletes: 0,
48
+ versionComments: '',
49
+ unchanged: 2,
50
+ updatedOn: '2023-01-16T19:16:06.233Z',
51
+ versionName: 'add 1 family/option & 1 family',
52
+ updates: 0,
53
+ updatedById: 'Eey3ZOi8znUA85i7',
54
+ createdOn: '2023-01-16T19:16:06.233Z',
55
+ orgId: 'cMkHW5GAD8ViOZj-',
56
+ familyItemsRemoved: 0,
57
+ createdBy: 'Eey3ZOi8znUA85i7',
58
+ assortmentId: 'oqIFX3ELRy8sFRd0',
59
+ id: 'LS2rVixKh2ojv56w',
60
+ errors: 0,
61
+ createdById: 'Eey3ZOi8znUA85i7',
62
+ adds: 2
63
+ },
64
+ {
65
+ summary: {
66
+ assortmentId: 'oqIFX3ELRy8sFRd0',
67
+ count: 6,
68
+ aggregates: {
69
+ totalMargin: {}
70
+ },
71
+ updatedOn: '2023-01-16T19:25:53.351Z',
72
+ id: 'oqIFX3ELRy8sFRd0',
73
+ updatedById: 'Eey3ZOi8znUA85i7',
74
+ createdOn: '2023-01-16T19:25:53.351Z',
75
+ createdById: 'Eey3ZOi8znUA85i7',
76
+ orgId: 'cMkHW5GAD8ViOZj-'
77
+ },
78
+ deletes: 0,
79
+ versionComments: '',
80
+ unchanged: 4,
81
+ updatedOn: '2023-01-16T19:25:53.036Z',
82
+ versionName: 'add 1 family/option',
83
+ updates: 0,
84
+ updatedById: 'Eey3ZOi8znUA85i7',
85
+ createdOn: '2023-01-16T19:25:53.036Z',
86
+ orgId: 'cMkHW5GAD8ViOZj-',
87
+ familyItemsRemoved: 0,
88
+ createdBy: 'Eey3ZOi8znUA85i7',
89
+ assortmentId: 'oqIFX3ELRy8sFRd0',
90
+ id: '1MEzdQKVTjVtES8u',
91
+ errors: 0,
92
+ createdById: 'Eey3ZOi8znUA85i7',
93
+ adds: 2
94
+ },
95
+ {
96
+ summary: {
97
+ assortmentId: 'oqIFX3ELRy8sFRd0',
98
+ count: 8,
99
+ aggregates: {
100
+ totalMargin: {}
101
+ },
102
+ updatedOn: '2023-01-16T21:50:43.045Z',
103
+ id: 'oqIFX3ELRy8sFRd0',
104
+ updatedById: 'Eey3ZOi8znUA85i7',
105
+ createdOn: '2023-01-16T21:50:43.045Z',
106
+ createdById: 'Eey3ZOi8znUA85i7',
107
+ orgId: 'cMkHW5GAD8ViOZj-'
108
+ },
109
+ deletes: 0,
110
+ versionComments: '',
111
+ unchanged: 6,
112
+ updatedOn: '2023-01-16T21:50:42.742Z',
113
+ versionName: 'Add 2 Familys/Options',
114
+ updates: 0,
115
+ updatedById: 'Eey3ZOi8znUA85i7',
116
+ createdOn: '2023-01-16T21:50:42.742Z',
117
+ orgId: 'cMkHW5GAD8ViOZj-',
118
+ familyItemsRemoved: 0,
119
+ createdBy: 'Eey3ZOi8znUA85i7',
120
+ assortmentId: 'oqIFX3ELRy8sFRd0',
121
+ id: '_mj--7nlyp7mmDrK',
122
+ errors: 0,
123
+ createdById: 'Eey3ZOi8znUA85i7',
124
+ adds: 2
125
+ },
126
+ {
127
+ summary: {
128
+ assortmentId: 'oqIFX3ELRy8sFRd0',
129
+ count: 10,
130
+ aggregates: {
131
+ totalMargin: {}
132
+ },
133
+ updatedOn: '2023-01-17T22:35:20.750Z',
134
+ id: 'oqIFX3ELRy8sFRd0',
135
+ updatedById: 'Eey3ZOi8znUA85i7',
136
+ createdOn: '2023-01-17T22:35:20.750Z',
137
+ createdById: 'Eey3ZOi8znUA85i7',
138
+ orgId: 'cMkHW5GAD8ViOZj-'
139
+ },
140
+ deletes: 2,
141
+ versionComments: '',
142
+ unchanged: 6,
143
+ updatedOn: '2023-01-17T22:35:20.517Z',
144
+ versionName: 'adds & 2 drops',
145
+ updates: 0,
146
+ updatedById: 'Eey3ZOi8znUA85i7',
147
+ createdOn: '2023-01-17T22:35:20.517Z',
148
+ orgId: 'cMkHW5GAD8ViOZj-',
149
+ familyItemsRemoved: 0,
150
+ createdBy: 'Eey3ZOi8znUA85i7',
151
+ assortmentId: 'oqIFX3ELRy8sFRd0',
152
+ id: 'GiT9CZXZGVljoYMR',
153
+ errors: 0,
154
+ createdById: 'Eey3ZOi8znUA85i7',
155
+ adds: 4
156
+ },
157
+ {
158
+ summary: {
159
+ assortmentId: 'oqIFX3ELRy8sFRd0',
160
+ count: 9,
161
+ aggregates: {
162
+ totalMargin: {}
163
+ },
164
+ updatedOn: '2023-01-17T22:36:39.434Z',
165
+ id: 'oqIFX3ELRy8sFRd0',
166
+ updatedById: 'Eey3ZOi8znUA85i7',
167
+ createdOn: '2023-01-17T22:36:39.434Z',
168
+ createdById: 'Eey3ZOi8znUA85i7',
169
+ orgId: 'cMkHW5GAD8ViOZj-'
170
+ },
171
+ deletes: 1,
172
+ versionComments: '',
173
+ unchanged: 9,
174
+ updatedOn: '2023-01-17T22:36:39.185Z',
175
+ versionName: 'drop 1 option (of 2)',
176
+ updates: 0,
177
+ updatedById: 'Eey3ZOi8znUA85i7',
178
+ createdOn: '2023-01-17T22:36:39.185Z',
179
+ orgId: 'cMkHW5GAD8ViOZj-',
180
+ familyItemsRemoved: 0,
181
+ createdBy: 'Eey3ZOi8znUA85i7',
182
+ assortmentId: 'oqIFX3ELRy8sFRd0',
183
+ id: '4JM83QNiIO0IBkck',
184
+ errors: 0,
185
+ createdById: 'Eey3ZOi8znUA85i7',
186
+ adds: 0
187
+ },
188
+ {
189
+ summary: {
190
+ assortmentId: 'oqIFX3ELRy8sFRd0',
191
+ count: 9,
192
+ aggregates: {
193
+ totalMargin: {}
194
+ },
195
+ updatedOn: '2023-01-17T22:40:07.539Z',
196
+ id: 'oqIFX3ELRy8sFRd0',
197
+ updatedById: 'Eey3ZOi8znUA85i7',
198
+ createdOn: '2023-01-17T22:40:07.539Z',
199
+ createdById: 'Eey3ZOi8znUA85i7',
200
+ orgId: 'cMkHW5GAD8ViOZj-'
201
+ },
202
+ deletes: 1,
203
+ versionComments: '',
204
+ unchanged: 8,
205
+ updatedOn: '2023-01-17T22:40:07.288Z',
206
+ versionName: 'remove only option on family but leave family in plan',
207
+ updates: 0,
208
+ updatedById: 'Eey3ZOi8znUA85i7',
209
+ createdOn: '2023-01-17T22:40:07.288Z',
210
+ orgId: 'cMkHW5GAD8ViOZj-',
211
+ familyItemsRemoved: 0,
212
+ createdBy: 'Eey3ZOi8znUA85i7',
213
+ assortmentId: 'oqIFX3ELRy8sFRd0',
214
+ id: 'V0iQE449Ckw1UB7a',
215
+ errors: 0,
216
+ createdById: 'Eey3ZOi8znUA85i7',
217
+ adds: 1
218
+ },
219
+ {
220
+ summary: {
221
+ assortmentId: 'oqIFX3ELRy8sFRd0',
222
+ count: 13,
223
+ aggregates: {
224
+ flexCurrency: {
225
+ average: 444,
226
+ total: 444,
227
+ min: 444,
228
+ max: 444
229
+ },
230
+ totalMargin: {}
231
+ },
232
+ updatedOn: '2023-01-18T16:56:46.078Z',
233
+ id: 'oqIFX3ELRy8sFRd0',
234
+ updatedById: 'Eey3ZOi8znUA85i7',
235
+ createdOn: '2023-01-18T16:56:46.078Z',
236
+ createdById: 'Eey3ZOi8znUA85i7',
237
+ orgId: 'cMkHW5GAD8ViOZj-'
238
+ },
239
+ deletes: 0,
240
+ versionComments: 'This sets up Jan 18 items for drop issue. That dropping the item family & only option produces only a delete entry for the option. Dropping an option of a family that has multiple options, also only produces a delete entry for the option.\n\nAnd dropping the only item option, from a family produces a delete entry for the option and an add for the item family',
241
+ unchanged: 9,
242
+ updatedOn: '2023-01-18T16:56:45.800Z',
243
+ versionName: 'Setup for demo of drop issue',
244
+ updates: 0,
245
+ updatedById: 'Eey3ZOi8znUA85i7',
246
+ createdOn: '2023-01-18T16:56:45.800Z',
247
+ orgId: 'cMkHW5GAD8ViOZj-',
248
+ familyItemsRemoved: 0,
249
+ createdBy: 'Eey3ZOi8znUA85i7',
250
+ assortmentId: 'oqIFX3ELRy8sFRd0',
251
+ id: 'sJbGx1Fpq1v2MmcI',
252
+ errors: 0,
253
+ createdById: 'Eey3ZOi8znUA85i7',
254
+ adds: 4
255
+ }
256
+ ];
257
+
258
+ export const plan1_across_month_DST =
259
+ [
260
+ {
261
+ versionName: 'Add family/option & just family',
262
+ createdOn: '2023-02-25T19:13:58.902Z',
263
+ id: 'v9BKkHo-tpL0wUZN',
264
+ },{
265
+ versionName: 'add 1 family/option & 1 family',
266
+ createdOn: '2023-02-26T19:16:06.233Z',
267
+ id: 'LS2rVixKh2ojv56w',
268
+ },{
269
+ versionName: 'add 1 family/option',
270
+ createdOn: '2023-02-26T19:25:53.036Z',
271
+ id: '1MEzdQKVTjVtES8u',
272
+ },{
273
+ versionName: 'Add 2 Familys/Options',
274
+ createdOn: '2023-03-06T21:50:42.742Z',
275
+ id: '_mj--7nlyp7mmDrK',
276
+ },{
277
+ versionName: 'adds & 2 drops',
278
+ createdOn: '2023-03-17T22:35:20.517Z',
279
+ id: 'GiT9CZXZGVljoYMR',
280
+ },{
281
+ versionName: 'drop 1 option (of 2)',
282
+ createdOn: '2023-03-17T22:36:39.185Z',
283
+ id: '4JM83QNiIO0IBkck',
284
+ },{
285
+ versionName: 'remove only option on family but leave family in plan',
286
+ createdOn: '2023-03-17T22:40:07.288Z',
287
+ id: 'V0iQE449Ckw1UB7a',
288
+ },{
289
+ versionName: 'Setup for demo of drop issue',
290
+ createdOn: '2023-03-18T16:56:45.800Z',
291
+ id: 'sJbGx1Fpq1v2MmcI',
292
+ }
293
+ ];
294
+ export const fall_2003_hydratedDetails = {
295
+ adds: [
296
+ {
297
+ id: '6zHmYEG7asMtA-1W',
298
+ item: {
299
+ createdById: 'Eey3ZOi8znUA85i7',
300
+ createdOn: '2023-02-03T18:52:21.846Z',
301
+ entityType: 'item',
302
+ flexFormula: null,
303
+ flexPLMTypePath: 'Product\\Pants',
304
+ flexSequence: 161,
305
+ id: '6zHmYEG7asMtA-1W',
306
+ isPrimary: true,
307
+ itemFamilyId: 'rW_TVz1KKv6kUsSD',
308
+ lifecycleStage: 'development',
309
+ name: 'Feb 3 - 2+ Option B',
310
+ optionGroup: 'color',
311
+ optionName: 'Option A',
312
+ orgId: 'cMkHW5GAD8ViOZj-',
313
+ roles: [
314
+ 'color',
315
+ 'option'
316
+ ],
317
+ typeId: 'cW7EhuRbkOU2dp18',
318
+ typePath: 'item',
319
+ updatedById: 'Eey3ZOi8znUA85i7',
320
+ updatedOn: '2023-02-03T19:07:00.802Z'
321
+ }
322
+ },
323
+ {
324
+ id: 'C6TFfaV8q6Cd3qyY',
325
+ item: {
326
+ createdById: 'Eey3ZOi8znUA85i7',
327
+ createdOn: '2023-02-03T18:57:32.989Z',
328
+ entityType: 'item',
329
+ flexFormula: null,
330
+ flexPLMTypePath: 'Product\\Pants',
331
+ flexSequence: 167,
332
+ id: 'C6TFfaV8q6Cd3qyY',
333
+ isPrimary: true,
334
+ itemFamilyId: 'jMNq_fTfGqfz-M5V',
335
+ lifecycleStage: 'concept',
336
+ name: 'Feb 3 - Concept - 1 Option A',
337
+ optionGroup: 'color',
338
+ optionName: 'Option A',
339
+ orgId: 'cMkHW5GAD8ViOZj-',
340
+ roles: [
341
+ 'color',
342
+ 'option'
343
+ ],
344
+ typeId: 'cW7EhuRbkOU2dp18',
345
+ typePath: 'item',
346
+ updatedById: 'Eey3ZOi8znUA85i7',
347
+ updatedOn: '2023-02-03T18:57:47.714Z'
348
+ }
349
+ },
350
+ {
351
+ id: 'VGo0fWmBBEZoghgk',
352
+ item: {
353
+ createdById: 'Eey3ZOi8znUA85i7',
354
+ createdOn: '2023-02-03T16:48:01.306Z',
355
+ entityType: 'item',
356
+ flexFormula: null,
357
+ flexPLMTypePath: 'Product\\Pants',
358
+ flexSequence: 159,
359
+ id: 'VGo0fWmBBEZoghgk',
360
+ isPrimary: true,
361
+ itemFamilyId: 'tvCyTuL6hF3MwbjJ',
362
+ lifecycleStage: 'development',
363
+ name: 'Feb 3 - 2+ Option A',
364
+ optionGroup: 'color',
365
+ optionName: 'Option B',
366
+ orgId: 'cMkHW5GAD8ViOZj-',
367
+ roles: [
368
+ 'color',
369
+ 'option'
370
+ ],
371
+ typeId: 'cW7EhuRbkOU2dp18',
372
+ typePath: 'item',
373
+ updatedById: 'Eey3ZOi8znUA85i7',
374
+ updatedOn: '2023-02-03T19:08:34.038Z'
375
+ }
376
+ },
377
+ {
378
+ id: 'UrFiA2VgBudniXfZ',
379
+ item: {
380
+ createdById: 'Eey3ZOi8znUA85i7',
381
+ createdOn: '2023-02-03T16:26:09.985Z',
382
+ entityType: 'item',
383
+ flexFormula: null,
384
+ flexPLMTypePath: 'Product\\Pants',
385
+ flexSequence: 158,
386
+ id: 'UrFiA2VgBudniXfZ',
387
+ isPrimary: true,
388
+ itemFamilyId: 'tFnQr83XEJ_Ly0yi',
389
+ lifecycleStage: 'development',
390
+ name: 'Feb 3 - 1 Option E',
391
+ optionGroup: 'color',
392
+ optionName: 'Option A',
393
+ orgId: 'cMkHW5GAD8ViOZj-',
394
+ roles: [
395
+ 'color',
396
+ 'option'
397
+ ],
398
+ typeId: 'cW7EhuRbkOU2dp18',
399
+ typePath: 'item',
400
+ updatedById: 'Eey3ZOi8znUA85i7',
401
+ updatedOn: '2023-02-03T16:27:25.685Z'
402
+ }
403
+ },
404
+ {
405
+ id: 'BD4ZjRf5DVimbU3N',
406
+ item: {
407
+ createdById: 'Eey3ZOi8znUA85i7',
408
+ createdOn: '2023-02-03T18:56:05.269Z',
409
+ entityType: 'item',
410
+ flexFormula: null,
411
+ flexPLMTypePath: 'Product\\Pants',
412
+ flexSequence: 165,
413
+ id: 'BD4ZjRf5DVimbU3N',
414
+ isPrimary: true,
415
+ itemFamilyId: 'hZGu3WAz1fbwLPGW',
416
+ lifecycleStage: 'development',
417
+ name: 'Feb 3 - 2+ Option F',
418
+ optionGroup: 'color',
419
+ optionName: 'Option B',
420
+ orgId: 'cMkHW5GAD8ViOZj-',
421
+ roles: [
422
+ 'color',
423
+ 'option'
424
+ ],
425
+ typeId: 'cW7EhuRbkOU2dp18',
426
+ typePath: 'item',
427
+ updatedById: 'Eey3ZOi8znUA85i7',
428
+ updatedOn: '2023-02-03T19:09:50.735Z'
429
+ }
430
+ },
431
+ {
432
+ id: 'slUFr1iMSYM2ktCX',
433
+ item: {
434
+ ChrisProp: 'c',
435
+ createdById: 'Eey3ZOi8znUA85i7',
436
+ createdOn: '2023-02-03T16:12:52.410Z',
437
+ entityType: 'item',
438
+ flexFormula: null,
439
+ flexPLMTypePath: 'Product\\Pants',
440
+ flexSequence: 152,
441
+ id: 'slUFr1iMSYM2ktCX',
442
+ itemFamilyId: 'slUFr1iMSYM2ktCX',
443
+ lifecycleStage: 'development',
444
+ name: 'Feb 3 - No Option C',
445
+ orgId: 'cMkHW5GAD8ViOZj-',
446
+ roles: [
447
+ 'family'
448
+ ],
449
+ typeId: 'cW7EhuRbkOU2dp18',
450
+ typePath: 'item',
451
+ updatedById: 'Eey3ZOi8znUA85i7',
452
+ updatedOn: '2023-02-03T16:15:14.971Z'
453
+ }
454
+ },
455
+ {
456
+ id: 'tc9HxACZqjyXfs0q',
457
+ item: {
458
+ createdById: 'Eey3ZOi8znUA85i7',
459
+ createdOn: '2023-02-03T18:54:18.998Z',
460
+ entityType: 'item',
461
+ flexFormula: null,
462
+ flexPLMTypePath: 'Product\\Pants',
463
+ flexSequence: 162,
464
+ id: 'tc9HxACZqjyXfs0q',
465
+ isPrimary: true,
466
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
467
+ lifecycleStage: 'development',
468
+ name: 'Feb 3 - 2+ Option C',
469
+ optionGroup: 'color',
470
+ optionName: 'Option B',
471
+ orgId: 'cMkHW5GAD8ViOZj-',
472
+ roles: [
473
+ 'color',
474
+ 'option'
475
+ ],
476
+ typeId: 'cW7EhuRbkOU2dp18',
477
+ typePath: 'item',
478
+ updatedById: 'Eey3ZOi8znUA85i7',
479
+ updatedOn: '2023-02-03T19:07:27.506Z'
480
+ }
481
+ },
482
+ {
483
+ id: 'JiaHIQjcieKTKVTL',
484
+ item: {
485
+ createdById: 'Eey3ZOi8znUA85i7',
486
+ createdOn: '2023-02-03T18:54:40.332Z',
487
+ entityType: 'item',
488
+ flexFormula: null,
489
+ flexPLMTypePath: 'Product\\Pants',
490
+ flexSequence: 163,
491
+ id: 'JiaHIQjcieKTKVTL',
492
+ isPrimary: true,
493
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
494
+ lifecycleStage: 'development',
495
+ name: 'Feb 3 - 2+ Option D',
496
+ optionGroup: 'color',
497
+ optionName: 'Option A',
498
+ orgId: 'cMkHW5GAD8ViOZj-',
499
+ roles: [
500
+ 'color',
501
+ 'option'
502
+ ],
503
+ typeId: 'cW7EhuRbkOU2dp18',
504
+ typePath: 'item',
505
+ updatedById: 'Eey3ZOi8znUA85i7',
506
+ updatedOn: '2023-02-03T19:09:09.980Z'
507
+ }
508
+ },
509
+ {
510
+ id: 'YbHzb8C4zsokFtWC',
511
+ item: {
512
+ ChrisProp: 'd',
513
+ createdById: 'Eey3ZOi8znUA85i7',
514
+ createdOn: '2023-02-03T16:13:44.933Z',
515
+ entityType: 'item',
516
+ flexFormula: null,
517
+ flexPLMTypePath: 'Product\\Pants',
518
+ flexSequence: 153,
519
+ id: 'YbHzb8C4zsokFtWC',
520
+ itemFamilyId: 'YbHzb8C4zsokFtWC',
521
+ lifecycleStage: 'development',
522
+ name: 'Feb 3 - No Option D',
523
+ orgId: 'cMkHW5GAD8ViOZj-',
524
+ roles: [
525
+ 'family'
526
+ ],
527
+ typeId: 'cW7EhuRbkOU2dp18',
528
+ typePath: 'item',
529
+ updatedById: 'Eey3ZOi8znUA85i7',
530
+ updatedOn: '2023-02-03T16:16:04.058Z'
531
+ }
532
+ },
533
+ {
534
+ id: 'TI8GBo0qanxzKVEr',
535
+ item: {
536
+ createdById: 'Eey3ZOi8znUA85i7',
537
+ createdOn: '2023-02-03T16:26:00.962Z',
538
+ entityType: 'item',
539
+ flexFormula: null,
540
+ flexPLMTypePath: 'Product\\Pants',
541
+ flexSequence: 157,
542
+ id: 'TI8GBo0qanxzKVEr',
543
+ isPrimary: true,
544
+ itemFamilyId: '_YbANkSl6AWiLPaC',
545
+ lifecycleStage: 'development',
546
+ name: 'Feb 3 - 1 Option D',
547
+ optionGroup: 'color',
548
+ optionName: 'Option A',
549
+ orgId: 'cMkHW5GAD8ViOZj-',
550
+ roles: [
551
+ 'color',
552
+ 'option'
553
+ ],
554
+ typeId: 'cW7EhuRbkOU2dp18',
555
+ typePath: 'item',
556
+ updatedById: 'Eey3ZOi8znUA85i7',
557
+ updatedOn: '2023-02-03T16:27:11.871Z'
558
+ }
559
+ },
560
+ {
561
+ id: 'VlufG94hn6llwfAt',
562
+ item: {
563
+ createdById: 'Eey3ZOi8znUA85i7',
564
+ createdOn: '2023-02-03T18:53:19.088Z',
565
+ entityType: 'item',
566
+ flexFormula: null,
567
+ flexPLMTypePath: 'Product\\Pants',
568
+ flexSequence: 161,
569
+ id: 'VlufG94hn6llwfAt',
570
+ isPrimary: true,
571
+ itemFamilyId: 'rW_TVz1KKv6kUsSD',
572
+ lifecycleStage: 'development',
573
+ name: 'Feb 3 - 2+ Option B',
574
+ optionGroup: 'color',
575
+ optionName: 'Option B',
576
+ orgId: 'cMkHW5GAD8ViOZj-',
577
+ roles: [
578
+ 'color',
579
+ 'option'
580
+ ],
581
+ typeId: 'cW7EhuRbkOU2dp18',
582
+ typePath: 'item',
583
+ updatedById: 'Eey3ZOi8znUA85i7',
584
+ updatedOn: '2023-02-03T19:07:02.955Z'
585
+ }
586
+ },
587
+ {
588
+ id: 'kh1Rtb7kie7Vk5vo',
589
+ item: {
590
+ ChrisProp: 'a',
591
+ createdById: 'Eey3ZOi8znUA85i7',
592
+ createdOn: '2023-02-03T16:11:19.510Z',
593
+ entityType: 'item',
594
+ flexFormula: null,
595
+ flexPLMTypePath: 'Product\\Pants',
596
+ flexSequence: 149,
597
+ id: 'kh1Rtb7kie7Vk5vo',
598
+ itemFamilyId: 'kh1Rtb7kie7Vk5vo',
599
+ lifecycleStage: 'development',
600
+ name: 'Feb 3 - No Option -A',
601
+ orgId: 'cMkHW5GAD8ViOZj-',
602
+ roles: [
603
+ 'family'
604
+ ],
605
+ typeId: 'cW7EhuRbkOU2dp18',
606
+ typePath: 'item',
607
+ updatedById: 'Eey3ZOi8znUA85i7',
608
+ updatedOn: '2023-02-03T16:14:53.024Z'
609
+ }
610
+ },
611
+ {
612
+ id: '6eeYhW0b6QbZz3BY',
613
+ item: {
614
+ createdById: 'Eey3ZOi8znUA85i7',
615
+ createdOn: '2023-02-03T18:54:55.996Z',
616
+ entityType: 'item',
617
+ flexFormula: null,
618
+ flexPLMTypePath: 'Product\\Pants',
619
+ flexSequence: 163,
620
+ id: '6eeYhW0b6QbZz3BY',
621
+ isPrimary: true,
622
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
623
+ lifecycleStage: 'development',
624
+ name: 'Feb 3 - 2+ Option D',
625
+ optionGroup: 'color',
626
+ optionName: 'Option B',
627
+ orgId: 'cMkHW5GAD8ViOZj-',
628
+ roles: [
629
+ 'color',
630
+ 'option'
631
+ ],
632
+ typeId: 'cW7EhuRbkOU2dp18',
633
+ typePath: 'item',
634
+ updatedById: 'Eey3ZOi8znUA85i7',
635
+ updatedOn: '2023-02-03T19:09:13.876Z'
636
+ }
637
+ },
638
+ {
639
+ id: 'jezonPsoRUlA52iz',
640
+ item: {
641
+ createdById: 'Eey3ZOi8znUA85i7',
642
+ createdOn: '2023-02-03T16:47:15.520Z',
643
+ entityType: 'item',
644
+ flexFormula: null,
645
+ flexPLMTypePath: 'Product\\Pants',
646
+ flexSequence: 159,
647
+ id: 'jezonPsoRUlA52iz',
648
+ isPrimary: true,
649
+ itemFamilyId: 'tvCyTuL6hF3MwbjJ',
650
+ lifecycleStage: 'development',
651
+ name: 'Feb 3 - 2+ Option A',
652
+ optionGroup: 'color',
653
+ optionName: 'Option A',
654
+ orgId: 'cMkHW5GAD8ViOZj-',
655
+ roles: [
656
+ 'color',
657
+ 'option'
658
+ ],
659
+ typeId: 'cW7EhuRbkOU2dp18',
660
+ typePath: 'item',
661
+ updatedById: 'Eey3ZOi8znUA85i7',
662
+ updatedOn: '2023-02-03T19:08:34.042Z'
663
+ }
664
+ },
665
+ {
666
+ id: 'jFAp5SmYqhXoX-ZI',
667
+ item: {
668
+ createdById: 'Eey3ZOi8znUA85i7',
669
+ createdOn: '2023-02-03T16:25:39.689Z',
670
+ entityType: 'item',
671
+ flexFormula: null,
672
+ flexPLMTypePath: 'Product\\Pants',
673
+ flexSequence: 154,
674
+ id: 'jFAp5SmYqhXoX-ZI',
675
+ isPrimary: true,
676
+ itemFamilyId: 'U9QryfGVOYMAkBP_',
677
+ lifecycleStage: 'development',
678
+ name: 'Feb 3 - 1 Option A',
679
+ optionGroup: 'color',
680
+ optionName: 'Option A',
681
+ orgId: 'cMkHW5GAD8ViOZj-',
682
+ roles: [
683
+ 'color',
684
+ 'option'
685
+ ],
686
+ typeId: 'cW7EhuRbkOU2dp18',
687
+ typePath: 'item',
688
+ updatedById: 'Eey3ZOi8znUA85i7',
689
+ updatedOn: '2023-02-03T16:26:20.797Z'
690
+ }
691
+ },
692
+ {
693
+ id: 'yLhrIHYaP7B4nlkh',
694
+ item: {
695
+ createdById: 'Eey3ZOi8znUA85i7',
696
+ createdOn: '2023-02-03T16:25:44.502Z',
697
+ entityType: 'item',
698
+ flexFormula: null,
699
+ flexPLMTypePath: 'Product\\Pants',
700
+ flexSequence: 155,
701
+ id: 'yLhrIHYaP7B4nlkh',
702
+ isPrimary: true,
703
+ itemFamilyId: 'EejAxj-KK_GGr5Kh',
704
+ lifecycleStage: 'development',
705
+ name: 'Feb 3 - 1 Option B',
706
+ optionGroup: 'color',
707
+ optionName: 'Option A',
708
+ orgId: 'cMkHW5GAD8ViOZj-',
709
+ roles: [
710
+ 'color',
711
+ 'option'
712
+ ],
713
+ typeId: 'cW7EhuRbkOU2dp18',
714
+ typePath: 'item',
715
+ updatedById: 'Eey3ZOi8znUA85i7',
716
+ updatedOn: '2023-02-03T16:26:39.642Z'
717
+ }
718
+ },
719
+ {
720
+ id: 'h19Bz1NBawzWHXVJ',
721
+ item: {
722
+ ChrisProp: 'b',
723
+ createdById: 'Eey3ZOi8znUA85i7',
724
+ createdOn: '2023-02-03T16:11:58.439Z',
725
+ entityType: 'item',
726
+ flexFormula: null,
727
+ flexPLMTypePath: 'Product\\Pants',
728
+ flexSequence: 151,
729
+ id: 'h19Bz1NBawzWHXVJ',
730
+ itemFamilyId: 'h19Bz1NBawzWHXVJ',
731
+ lifecycleStage: 'development',
732
+ name: 'Feb 3 - No Option B',
733
+ orgId: 'cMkHW5GAD8ViOZj-',
734
+ roles: [
735
+ 'family'
736
+ ],
737
+ typeId: 'cW7EhuRbkOU2dp18',
738
+ typePath: 'item',
739
+ updatedById: 'Eey3ZOi8znUA85i7',
740
+ updatedOn: '2023-02-03T16:16:22.634Z'
741
+ }
742
+ },
743
+ {
744
+ id: 'eZL2ChJRBlvbu3yG',
745
+ item: {
746
+ createdById: 'Eey3ZOi8znUA85i7',
747
+ createdOn: '2023-02-03T16:25:49.434Z',
748
+ entityType: 'item',
749
+ flexFormula: null,
750
+ flexPLMTypePath: 'Product\\Pants',
751
+ flexSequence: 156,
752
+ id: 'eZL2ChJRBlvbu3yG',
753
+ isPrimary: true,
754
+ itemFamilyId: 'JEY86MOuRFv7f9OY',
755
+ lifecycleStage: 'development',
756
+ name: 'Feb 3 - 1 Option C',
757
+ optionGroup: 'color',
758
+ optionName: 'Option A',
759
+ orgId: 'cMkHW5GAD8ViOZj-',
760
+ roles: [
761
+ 'color',
762
+ 'option'
763
+ ],
764
+ typeId: 'cW7EhuRbkOU2dp18',
765
+ typePath: 'item',
766
+ updatedById: 'Eey3ZOi8znUA85i7',
767
+ updatedOn: '2023-02-03T16:26:53.050Z'
768
+ }
769
+ },
770
+ {
771
+ id: 'GNH-vuzZeXFQmtMR',
772
+ item: {
773
+ createdById: 'Eey3ZOi8znUA85i7',
774
+ createdOn: '2023-02-03T18:55:29.811Z',
775
+ entityType: 'item',
776
+ flexFormula: null,
777
+ flexPLMTypePath: 'Product\\Pants',
778
+ flexSequence: 164,
779
+ id: 'GNH-vuzZeXFQmtMR',
780
+ isPrimary: true,
781
+ itemFamilyId: 'yzBFCl-aLXvKa5sh',
782
+ lifecycleStage: 'development',
783
+ name: 'Feb 3 - 2+ Option E',
784
+ optionGroup: 'color',
785
+ optionName: 'Option B',
786
+ orgId: 'cMkHW5GAD8ViOZj-',
787
+ roles: [
788
+ 'color',
789
+ 'option'
790
+ ],
791
+ typeId: 'cW7EhuRbkOU2dp18',
792
+ typePath: 'item',
793
+ updatedById: 'Eey3ZOi8znUA85i7',
794
+ updatedOn: '2023-02-03T19:09:33.653Z'
795
+ }
796
+ },
797
+ {
798
+ id: 'zGF3wg9NvI-bBRmP',
799
+ item: {
800
+ createdById: 'Eey3ZOi8znUA85i7',
801
+ createdOn: '2023-02-03T18:54:02.450Z',
802
+ entityType: 'item',
803
+ flexFormula: null,
804
+ flexPLMTypePath: 'Product\\Pants',
805
+ flexSequence: 162,
806
+ id: 'zGF3wg9NvI-bBRmP',
807
+ isPrimary: true,
808
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
809
+ lifecycleStage: 'development',
810
+ name: 'Feb 3 - 2+ Option C',
811
+ optionGroup: 'color',
812
+ optionName: 'Option A',
813
+ orgId: 'cMkHW5GAD8ViOZj-',
814
+ roles: [
815
+ 'color',
816
+ 'option'
817
+ ],
818
+ typeId: 'cW7EhuRbkOU2dp18',
819
+ typePath: 'item',
820
+ updatedById: 'Eey3ZOi8znUA85i7',
821
+ updatedOn: '2023-02-03T19:07:22.436Z'
822
+ }
823
+ },
824
+ {
825
+ id: 'U7zzfu5DjXTy-oz5',
826
+ item: {
827
+ createdById: 'Eey3ZOi8znUA85i7',
828
+ createdOn: '2023-02-03T18:56:56.805Z',
829
+ entityType: 'item',
830
+ flexFormula: null,
831
+ flexPLMTypePath: 'Product\\Pants',
832
+ flexSequence: 166,
833
+ id: 'U7zzfu5DjXTy-oz5',
834
+ itemFamilyId: 'U7zzfu5DjXTy-oz5',
835
+ lifecycleStage: 'concept',
836
+ name: 'Feb 3 -Concept - No Option A',
837
+ orgId: 'cMkHW5GAD8ViOZj-',
838
+ roles: [
839
+ 'family'
840
+ ],
841
+ typeId: 'cW7EhuRbkOU2dp18',
842
+ typePath: 'item',
843
+ updatedById: 'Eey3ZOi8znUA85i7',
844
+ updatedOn: '2023-02-03T18:58:00.795Z'
845
+ }
846
+ },
847
+ {
848
+ id: 'M0fWXzUMBDrxjFcS',
849
+ item: {
850
+ createdById: 'Eey3ZOi8znUA85i7',
851
+ createdOn: '2023-02-03T18:55:48.849Z',
852
+ entityType: 'item',
853
+ flexFormula: null,
854
+ flexPLMTypePath: 'Product\\Pants',
855
+ flexSequence: 165,
856
+ id: 'M0fWXzUMBDrxjFcS',
857
+ isPrimary: true,
858
+ itemFamilyId: 'hZGu3WAz1fbwLPGW',
859
+ lifecycleStage: 'development',
860
+ name: 'Feb 3 - 2+ Option F',
861
+ optionGroup: 'color',
862
+ optionName: 'Option A',
863
+ orgId: 'cMkHW5GAD8ViOZj-',
864
+ roles: [
865
+ 'color',
866
+ 'option'
867
+ ],
868
+ typeId: 'cW7EhuRbkOU2dp18',
869
+ typePath: 'item',
870
+ updatedById: 'Eey3ZOi8znUA85i7',
871
+ updatedOn: '2023-02-03T19:09:47.683Z'
872
+ }
873
+ },
874
+ {
875
+ id: 'tBEFlAr9QXauCU-B',
876
+ item: {
877
+ createdById: 'Eey3ZOi8znUA85i7',
878
+ createdOn: '2023-02-03T18:55:13.541Z',
879
+ entityType: 'item',
880
+ flexFormula: null,
881
+ flexPLMTypePath: 'Product\\Pants',
882
+ flexSequence: 164,
883
+ id: 'tBEFlAr9QXauCU-B',
884
+ isPrimary: true,
885
+ itemFamilyId: 'yzBFCl-aLXvKa5sh',
886
+ lifecycleStage: 'development',
887
+ name: 'Feb 3 - 2+ Option E',
888
+ optionGroup: 'color',
889
+ optionName: 'Option A',
890
+ orgId: 'cMkHW5GAD8ViOZj-',
891
+ roles: [
892
+ 'color',
893
+ 'option'
894
+ ],
895
+ typeId: 'cW7EhuRbkOU2dp18',
896
+ typePath: 'item',
897
+ updatedById: 'Eey3ZOi8znUA85i7',
898
+ updatedOn: '2023-02-03T19:09:30.424Z'
899
+ }
900
+ },
901
+ {
902
+ id: 'CNOovV5RFWGL6FMT',
903
+ item: {
904
+ chrisString: 'q',
905
+ createdById: 'Eey3ZOi8znUA85i7',
906
+ createdOn: '2023-02-03T20:22:32.718Z',
907
+ entityType: 'item',
908
+ flexFormula: null,
909
+ flexPLMTypePath: 'Product\\Pants',
910
+ flexSequence: 168,
911
+ id: 'CNOovV5RFWGL6FMT',
912
+ isPrimary: true,
913
+ itemFamilyId: 'yD-3KrBzAYRRsh9v',
914
+ lifecycleStage: 'development',
915
+ name: 'Feb 3 - 1 Option F',
916
+ optionGroup: 'color',
917
+ optionName: 'Option A',
918
+ orgId: 'cMkHW5GAD8ViOZj-',
919
+ roles: [
920
+ 'color',
921
+ 'option'
922
+ ],
923
+ typeId: 'cW7EhuRbkOU2dp18',
924
+ typePath: 'item',
925
+ updatedById: 'Eey3ZOi8znUA85i7',
926
+ updatedOn: '2023-02-03T20:24:41.476Z'
927
+ }
928
+ }
929
+ ],
930
+ assortmentId: 'lhoTiciEDw5VOdBl',
931
+ deletes: [
932
+ ],
933
+ errors: [
934
+ ],
935
+ familyItemsRemoved: [
936
+ ],
937
+ updates: [
938
+ ],
939
+ versionComments: '',
940
+ versionName: 'Initial Setup for Publish Test app v1.0.19.2'
941
+ };
942
+
943
+ export const fall_2003_fullChange = {
944
+ assortmentItems: [
945
+ {
946
+ assortmentId: 'lhoTiciEDw5VOdBl',
947
+ createdById: 'Eey3ZOi8znUA85i7',
948
+ createdOn: '2023-02-03T20:01:51.331Z',
949
+ id: 'y2pySBhMF7vdH-N2',
950
+ item: {
951
+ createdById: 'Eey3ZOi8znUA85i7',
952
+ createdOn: '2023-02-03T18:54:55.996Z',
953
+ flexFormula: null,
954
+ flexPLMTypePath: 'Product\\Pants',
955
+ flexSequence: 163,
956
+ id: '6eeYhW0b6QbZz3BY',
957
+ isPrimary: true,
958
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
959
+ lifecycleStage: 'development',
960
+ name: 'Feb 3 - 2+ Option D',
961
+ optionGroup: 'color',
962
+ optionName: 'Option B',
963
+ orgId: 'cMkHW5GAD8ViOZj-',
964
+ roles: [
965
+ 'color',
966
+ 'option'
967
+ ],
968
+ typeId: 'cW7EhuRbkOU2dp18',
969
+ typePath: 'item',
970
+ updatedById: 'Eey3ZOi8znUA85i7',
971
+ updatedOn: '2023-02-03T19:09:13.876Z'
972
+ },
973
+ itemId: '6eeYhW0b6QbZz3BY',
974
+ orgId: 'cMkHW5GAD8ViOZj-',
975
+ typeId: 'st1oc9uI2_ipArFM',
976
+ typePath: 'assortment-item',
977
+ updatedById: 'Eey3ZOi8znUA85i7',
978
+ updatedOn: '2023-02-03T20:01:51.331Z'
979
+ },
980
+ {
981
+ assortmentId: 'lhoTiciEDw5VOdBl',
982
+ createdById: 'Eey3ZOi8znUA85i7',
983
+ createdOn: '2023-02-03T20:01:51.331Z',
984
+ id: 'u8pcU56rgJDjoeRi',
985
+ item: {
986
+ createdById: 'Eey3ZOi8znUA85i7',
987
+ createdOn: '2023-02-03T18:52:21.846Z',
988
+ flexFormula: null,
989
+ flexPLMTypePath: 'Product\\Pants',
990
+ flexSequence: 161,
991
+ id: '6zHmYEG7asMtA-1W',
992
+ isPrimary: true,
993
+ itemFamilyId: 'rW_TVz1KKv6kUsSD',
994
+ lifecycleStage: 'development',
995
+ name: 'Feb 3 - 2+ Option B',
996
+ optionGroup: 'color',
997
+ optionName: 'Option A',
998
+ orgId: 'cMkHW5GAD8ViOZj-',
999
+ roles: [
1000
+ 'color',
1001
+ 'option'
1002
+ ],
1003
+ typeId: 'cW7EhuRbkOU2dp18',
1004
+ typePath: 'item',
1005
+ updatedById: 'Eey3ZOi8znUA85i7',
1006
+ updatedOn: '2023-02-03T19:07:00.802Z'
1007
+ },
1008
+ itemId: '6zHmYEG7asMtA-1W',
1009
+ orgId: 'cMkHW5GAD8ViOZj-',
1010
+ typeId: 'st1oc9uI2_ipArFM',
1011
+ typePath: 'assortment-item',
1012
+ updatedById: 'Eey3ZOi8znUA85i7',
1013
+ updatedOn: '2023-02-03T20:01:51.331Z'
1014
+ },
1015
+ {
1016
+ assortmentId: 'lhoTiciEDw5VOdBl',
1017
+ createdById: 'Eey3ZOi8znUA85i7',
1018
+ createdOn: '2023-02-03T20:01:51.331Z',
1019
+ id: 'Z7V8NkqWGDo8Wa9q',
1020
+ item: {
1021
+ createdById: 'Eey3ZOi8znUA85i7',
1022
+ createdOn: '2023-02-03T18:56:05.269Z',
1023
+ flexFormula: null,
1024
+ flexPLMTypePath: 'Product\\Pants',
1025
+ flexSequence: 165,
1026
+ id: 'BD4ZjRf5DVimbU3N',
1027
+ isPrimary: true,
1028
+ itemFamilyId: 'hZGu3WAz1fbwLPGW',
1029
+ lifecycleStage: 'development',
1030
+ name: 'Feb 3 - 2+ Option F',
1031
+ optionGroup: 'color',
1032
+ optionName: 'Option B',
1033
+ orgId: 'cMkHW5GAD8ViOZj-',
1034
+ roles: [
1035
+ 'color',
1036
+ 'option'
1037
+ ],
1038
+ typeId: 'cW7EhuRbkOU2dp18',
1039
+ typePath: 'item',
1040
+ updatedById: 'Eey3ZOi8znUA85i7',
1041
+ updatedOn: '2023-02-03T19:09:50.735Z'
1042
+ },
1043
+ itemId: 'BD4ZjRf5DVimbU3N',
1044
+ orgId: 'cMkHW5GAD8ViOZj-',
1045
+ typeId: 'st1oc9uI2_ipArFM',
1046
+ typePath: 'assortment-item',
1047
+ updatedById: 'Eey3ZOi8znUA85i7',
1048
+ updatedOn: '2023-02-03T20:01:51.331Z'
1049
+ },
1050
+ {
1051
+ assortmentId: 'lhoTiciEDw5VOdBl',
1052
+ createdById: 'Eey3ZOi8znUA85i7',
1053
+ createdOn: '2023-02-03T20:01:51.331Z',
1054
+ id: 'rTdydkOcJOrEpSTp',
1055
+ item: {
1056
+ createdById: 'Eey3ZOi8znUA85i7',
1057
+ createdOn: '2023-02-03T18:57:32.989Z',
1058
+ flexFormula: null,
1059
+ flexPLMTypePath: 'Product\\Pants',
1060
+ flexSequence: 167,
1061
+ id: 'C6TFfaV8q6Cd3qyY',
1062
+ isPrimary: true,
1063
+ itemFamilyId: 'jMNq_fTfGqfz-M5V',
1064
+ lifecycleStage: 'concept',
1065
+ name: 'Feb 3 - Concept - 1 Option A',
1066
+ optionGroup: 'color',
1067
+ optionName: 'Option A',
1068
+ orgId: 'cMkHW5GAD8ViOZj-',
1069
+ roles: [
1070
+ 'color',
1071
+ 'option'
1072
+ ],
1073
+ typeId: 'cW7EhuRbkOU2dp18',
1074
+ typePath: 'item',
1075
+ updatedById: 'Eey3ZOi8znUA85i7',
1076
+ updatedOn: '2023-02-03T18:57:47.714Z'
1077
+ },
1078
+ itemId: 'C6TFfaV8q6Cd3qyY',
1079
+ orgId: 'cMkHW5GAD8ViOZj-',
1080
+ typeId: 'st1oc9uI2_ipArFM',
1081
+ typePath: 'assortment-item',
1082
+ updatedById: 'Eey3ZOi8znUA85i7',
1083
+ updatedOn: '2023-02-03T20:01:51.331Z'
1084
+ },
1085
+ {
1086
+ assortmentId: 'lhoTiciEDw5VOdBl',
1087
+ createdById: 'Eey3ZOi8znUA85i7',
1088
+ createdOn: '2023-02-03T20:25:57.948Z',
1089
+ id: 'ZHI2zHBwbYzHCfCk',
1090
+ item: {
1091
+ chrisString: 'q',
1092
+ createdById: 'Eey3ZOi8znUA85i7',
1093
+ createdOn: '2023-02-03T20:22:32.718Z',
1094
+ flexFormula: null,
1095
+ flexPLMTypePath: 'Product\\Pants',
1096
+ flexSequence: 168,
1097
+ id: 'CNOovV5RFWGL6FMT',
1098
+ isPrimary: true,
1099
+ itemFamilyId: 'yD-3KrBzAYRRsh9v',
1100
+ lifecycleStage: 'development',
1101
+ name: 'Feb 3 - 1 Option F',
1102
+ optionGroup: 'color',
1103
+ optionName: 'Option A',
1104
+ orgId: 'cMkHW5GAD8ViOZj-',
1105
+ roles: [
1106
+ 'color',
1107
+ 'option'
1108
+ ],
1109
+ typeId: 'cW7EhuRbkOU2dp18',
1110
+ typePath: 'item',
1111
+ updatedById: 'Eey3ZOi8znUA85i7',
1112
+ updatedOn: '2023-02-03T20:24:41.476Z'
1113
+ },
1114
+ itemId: 'CNOovV5RFWGL6FMT',
1115
+ orgId: 'cMkHW5GAD8ViOZj-',
1116
+ typeId: 'st1oc9uI2_ipArFM',
1117
+ typePath: 'assortment-item',
1118
+ updatedById: 'Eey3ZOi8znUA85i7',
1119
+ updatedOn: '2023-02-03T20:25:57.948Z'
1120
+ },
1121
+ {
1122
+ assortmentId: 'lhoTiciEDw5VOdBl',
1123
+ createdById: 'Eey3ZOi8znUA85i7',
1124
+ createdOn: '2023-02-03T20:01:51.331Z',
1125
+ id: 'oTq3YrksCUIZsVgw',
1126
+ item: {
1127
+ createdById: 'Eey3ZOi8znUA85i7',
1128
+ createdOn: '2023-02-03T18:55:29.811Z',
1129
+ flexFormula: null,
1130
+ flexPLMTypePath: 'Product\\Pants',
1131
+ flexSequence: 164,
1132
+ id: 'GNH-vuzZeXFQmtMR',
1133
+ isPrimary: true,
1134
+ itemFamilyId: 'yzBFCl-aLXvKa5sh',
1135
+ lifecycleStage: 'development',
1136
+ name: 'Feb 3 - 2+ Option E',
1137
+ optionGroup: 'color',
1138
+ optionName: 'Option B',
1139
+ orgId: 'cMkHW5GAD8ViOZj-',
1140
+ roles: [
1141
+ 'color',
1142
+ 'option'
1143
+ ],
1144
+ typeId: 'cW7EhuRbkOU2dp18',
1145
+ typePath: 'item',
1146
+ updatedById: 'Eey3ZOi8znUA85i7',
1147
+ updatedOn: '2023-02-03T19:09:33.653Z'
1148
+ },
1149
+ itemId: 'GNH-vuzZeXFQmtMR',
1150
+ orgId: 'cMkHW5GAD8ViOZj-',
1151
+ typeId: 'st1oc9uI2_ipArFM',
1152
+ typePath: 'assortment-item',
1153
+ updatedById: 'Eey3ZOi8znUA85i7',
1154
+ updatedOn: '2023-02-03T20:01:51.331Z'
1155
+ },
1156
+ {
1157
+ assortmentId: 'lhoTiciEDw5VOdBl',
1158
+ createdById: 'Eey3ZOi8znUA85i7',
1159
+ createdOn: '2023-02-03T20:01:51.331Z',
1160
+ id: 'B_6jbb7mAnXe2z6U',
1161
+ item: {
1162
+ createdById: 'Eey3ZOi8znUA85i7',
1163
+ createdOn: '2023-02-03T18:54:40.332Z',
1164
+ flexFormula: null,
1165
+ flexPLMTypePath: 'Product\\Pants',
1166
+ flexSequence: 163,
1167
+ id: 'JiaHIQjcieKTKVTL',
1168
+ isPrimary: true,
1169
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
1170
+ lifecycleStage: 'development',
1171
+ name: 'Feb 3 - 2+ Option D',
1172
+ optionGroup: 'color',
1173
+ optionName: 'Option A',
1174
+ orgId: 'cMkHW5GAD8ViOZj-',
1175
+ roles: [
1176
+ 'color',
1177
+ 'option'
1178
+ ],
1179
+ typeId: 'cW7EhuRbkOU2dp18',
1180
+ typePath: 'item',
1181
+ updatedById: 'Eey3ZOi8znUA85i7',
1182
+ updatedOn: '2023-02-03T19:09:09.980Z'
1183
+ },
1184
+ itemId: 'JiaHIQjcieKTKVTL',
1185
+ orgId: 'cMkHW5GAD8ViOZj-',
1186
+ typeId: 'st1oc9uI2_ipArFM',
1187
+ typePath: 'assortment-item',
1188
+ updatedById: 'Eey3ZOi8znUA85i7',
1189
+ updatedOn: '2023-02-03T20:01:51.331Z'
1190
+ },
1191
+ {
1192
+ assortmentId: 'lhoTiciEDw5VOdBl',
1193
+ createdById: 'Eey3ZOi8znUA85i7',
1194
+ createdOn: '2023-02-03T20:01:51.332Z',
1195
+ id: 'wezopwmsLc3hDXFA',
1196
+ item: {
1197
+ createdById: 'Eey3ZOi8znUA85i7',
1198
+ createdOn: '2023-02-03T18:55:48.849Z',
1199
+ flexFormula: null,
1200
+ flexPLMTypePath: 'Product\\Pants',
1201
+ flexSequence: 165,
1202
+ id: 'M0fWXzUMBDrxjFcS',
1203
+ isPrimary: true,
1204
+ itemFamilyId: 'hZGu3WAz1fbwLPGW',
1205
+ lifecycleStage: 'development',
1206
+ name: 'Feb 3 - 2+ Option F',
1207
+ optionGroup: 'color',
1208
+ optionName: 'Option A',
1209
+ orgId: 'cMkHW5GAD8ViOZj-',
1210
+ roles: [
1211
+ 'color',
1212
+ 'option'
1213
+ ],
1214
+ typeId: 'cW7EhuRbkOU2dp18',
1215
+ typePath: 'item',
1216
+ updatedById: 'Eey3ZOi8znUA85i7',
1217
+ updatedOn: '2023-02-03T19:09:47.683Z'
1218
+ },
1219
+ itemId: 'M0fWXzUMBDrxjFcS',
1220
+ orgId: 'cMkHW5GAD8ViOZj-',
1221
+ typeId: 'st1oc9uI2_ipArFM',
1222
+ typePath: 'assortment-item',
1223
+ updatedById: 'Eey3ZOi8znUA85i7',
1224
+ updatedOn: '2023-02-03T20:01:51.332Z'
1225
+ },
1226
+ {
1227
+ assortmentId: 'lhoTiciEDw5VOdBl',
1228
+ createdById: 'Eey3ZOi8znUA85i7',
1229
+ createdOn: '2023-02-03T20:01:51.331Z',
1230
+ id: 'JjWARXdpTPGqHPnk',
1231
+ item: {
1232
+ createdById: 'Eey3ZOi8znUA85i7',
1233
+ createdOn: '2023-02-03T16:26:00.962Z',
1234
+ flexFormula: null,
1235
+ flexPLMTypePath: 'Product\\Pants',
1236
+ flexSequence: 157,
1237
+ id: 'TI8GBo0qanxzKVEr',
1238
+ isPrimary: true,
1239
+ itemFamilyId: '_YbANkSl6AWiLPaC',
1240
+ lifecycleStage: 'development',
1241
+ name: 'Feb 3 - 1 Option D',
1242
+ optionGroup: 'color',
1243
+ optionName: 'Option A',
1244
+ orgId: 'cMkHW5GAD8ViOZj-',
1245
+ roles: [
1246
+ 'color',
1247
+ 'option'
1248
+ ],
1249
+ typeId: 'cW7EhuRbkOU2dp18',
1250
+ typePath: 'item',
1251
+ updatedById: 'Eey3ZOi8znUA85i7',
1252
+ updatedOn: '2023-02-03T16:27:11.871Z'
1253
+ },
1254
+ itemId: 'TI8GBo0qanxzKVEr',
1255
+ orgId: 'cMkHW5GAD8ViOZj-',
1256
+ typeId: 'st1oc9uI2_ipArFM',
1257
+ typePath: 'assortment-item',
1258
+ updatedById: 'Eey3ZOi8znUA85i7',
1259
+ updatedOn: '2023-02-03T20:01:51.331Z'
1260
+ },
1261
+ {
1262
+ assortmentId: 'lhoTiciEDw5VOdBl',
1263
+ createdById: 'Eey3ZOi8znUA85i7',
1264
+ createdOn: '2023-02-03T20:01:51.332Z',
1265
+ id: '-y1SmVaDCdY0-yvq',
1266
+ item: {
1267
+ createdById: 'Eey3ZOi8znUA85i7',
1268
+ createdOn: '2023-02-03T18:56:56.805Z',
1269
+ flexFormula: null,
1270
+ flexPLMTypePath: 'Product\\Pants',
1271
+ flexSequence: 166,
1272
+ id: 'U7zzfu5DjXTy-oz5',
1273
+ itemFamilyId: 'U7zzfu5DjXTy-oz5',
1274
+ lifecycleStage: 'concept',
1275
+ name: 'Feb 3 -Concept - No Option A',
1276
+ orgId: 'cMkHW5GAD8ViOZj-',
1277
+ roles: [
1278
+ 'family'
1279
+ ],
1280
+ typeId: 'cW7EhuRbkOU2dp18',
1281
+ typePath: 'item',
1282
+ updatedById: 'Eey3ZOi8znUA85i7',
1283
+ updatedOn: '2023-02-03T18:58:00.795Z'
1284
+ },
1285
+ itemId: 'U7zzfu5DjXTy-oz5',
1286
+ orgId: 'cMkHW5GAD8ViOZj-',
1287
+ typeId: 'st1oc9uI2_ipArFM',
1288
+ typePath: 'assortment-item',
1289
+ updatedById: 'Eey3ZOi8znUA85i7',
1290
+ updatedOn: '2023-02-03T20:01:51.332Z'
1291
+ },
1292
+ {
1293
+ assortmentId: 'lhoTiciEDw5VOdBl',
1294
+ createdById: 'Eey3ZOi8znUA85i7',
1295
+ createdOn: '2023-02-03T20:01:51.331Z',
1296
+ id: 'eIy5yR8QAU-PWNrr',
1297
+ item: {
1298
+ createdById: 'Eey3ZOi8znUA85i7',
1299
+ createdOn: '2023-02-03T16:26:09.985Z',
1300
+ flexFormula: null,
1301
+ flexPLMTypePath: 'Product\\Pants',
1302
+ flexSequence: 158,
1303
+ id: 'UrFiA2VgBudniXfZ',
1304
+ isPrimary: true,
1305
+ itemFamilyId: 'tFnQr83XEJ_Ly0yi',
1306
+ lifecycleStage: 'development',
1307
+ name: 'Feb 3 - 1 Option E',
1308
+ optionGroup: 'color',
1309
+ optionName: 'Option A',
1310
+ orgId: 'cMkHW5GAD8ViOZj-',
1311
+ roles: [
1312
+ 'color',
1313
+ 'option'
1314
+ ],
1315
+ typeId: 'cW7EhuRbkOU2dp18',
1316
+ typePath: 'item',
1317
+ updatedById: 'Eey3ZOi8znUA85i7',
1318
+ updatedOn: '2023-02-03T16:27:25.685Z'
1319
+ },
1320
+ itemId: 'UrFiA2VgBudniXfZ',
1321
+ orgId: 'cMkHW5GAD8ViOZj-',
1322
+ typeId: 'st1oc9uI2_ipArFM',
1323
+ typePath: 'assortment-item',
1324
+ updatedById: 'Eey3ZOi8znUA85i7',
1325
+ updatedOn: '2023-02-03T20:01:51.331Z'
1326
+ },
1327
+ {
1328
+ assortmentId: 'lhoTiciEDw5VOdBl',
1329
+ createdById: 'Eey3ZOi8znUA85i7',
1330
+ createdOn: '2023-02-03T20:01:51.331Z',
1331
+ id: 'PhKxw7iCV0I7ijfx',
1332
+ item: {
1333
+ createdById: 'Eey3ZOi8znUA85i7',
1334
+ createdOn: '2023-02-03T16:48:01.306Z',
1335
+ flexFormula: null,
1336
+ flexPLMTypePath: 'Product\\Pants',
1337
+ flexSequence: 159,
1338
+ id: 'VGo0fWmBBEZoghgk',
1339
+ isPrimary: true,
1340
+ itemFamilyId: 'tvCyTuL6hF3MwbjJ',
1341
+ lifecycleStage: 'development',
1342
+ name: 'Feb 3 - 2+ Option A',
1343
+ optionGroup: 'color',
1344
+ optionName: 'Option B',
1345
+ orgId: 'cMkHW5GAD8ViOZj-',
1346
+ roles: [
1347
+ 'color',
1348
+ 'option'
1349
+ ],
1350
+ typeId: 'cW7EhuRbkOU2dp18',
1351
+ typePath: 'item',
1352
+ updatedById: 'Eey3ZOi8znUA85i7',
1353
+ updatedOn: '2023-02-03T19:08:34.038Z'
1354
+ },
1355
+ itemId: 'VGo0fWmBBEZoghgk',
1356
+ orgId: 'cMkHW5GAD8ViOZj-',
1357
+ typeId: 'st1oc9uI2_ipArFM',
1358
+ typePath: 'assortment-item',
1359
+ updatedById: 'Eey3ZOi8znUA85i7',
1360
+ updatedOn: '2023-02-03T20:01:51.331Z'
1361
+ },
1362
+ {
1363
+ assortmentId: 'lhoTiciEDw5VOdBl',
1364
+ createdById: 'Eey3ZOi8znUA85i7',
1365
+ createdOn: '2023-02-03T20:01:51.331Z',
1366
+ id: 'feaTkYlTkC-glF3f',
1367
+ item: {
1368
+ createdById: 'Eey3ZOi8znUA85i7',
1369
+ createdOn: '2023-02-03T18:53:19.088Z',
1370
+ flexFormula: null,
1371
+ flexPLMTypePath: 'Product\\Pants',
1372
+ flexSequence: 161,
1373
+ id: 'VlufG94hn6llwfAt',
1374
+ isPrimary: true,
1375
+ itemFamilyId: 'rW_TVz1KKv6kUsSD',
1376
+ lifecycleStage: 'development',
1377
+ name: 'Feb 3 - 2+ Option B',
1378
+ optionGroup: 'color',
1379
+ optionName: 'Option B',
1380
+ orgId: 'cMkHW5GAD8ViOZj-',
1381
+ roles: [
1382
+ 'color',
1383
+ 'option'
1384
+ ],
1385
+ typeId: 'cW7EhuRbkOU2dp18',
1386
+ typePath: 'item',
1387
+ updatedById: 'Eey3ZOi8znUA85i7',
1388
+ updatedOn: '2023-02-03T19:07:02.955Z'
1389
+ },
1390
+ itemId: 'VlufG94hn6llwfAt',
1391
+ orgId: 'cMkHW5GAD8ViOZj-',
1392
+ typeId: 'st1oc9uI2_ipArFM',
1393
+ typePath: 'assortment-item',
1394
+ updatedById: 'Eey3ZOi8znUA85i7',
1395
+ updatedOn: '2023-02-03T20:01:51.331Z'
1396
+ },
1397
+ {
1398
+ assortmentId: 'lhoTiciEDw5VOdBl',
1399
+ createdById: 'Eey3ZOi8znUA85i7',
1400
+ createdOn: '2023-02-03T20:01:51.331Z',
1401
+ id: 'opfnVQz4_Ib81AqC',
1402
+ item: {
1403
+ ChrisProp: 'd',
1404
+ createdById: 'Eey3ZOi8znUA85i7',
1405
+ createdOn: '2023-02-03T16:13:44.933Z',
1406
+ flexFormula: null,
1407
+ flexPLMTypePath: 'Product\\Pants',
1408
+ flexSequence: 153,
1409
+ id: 'YbHzb8C4zsokFtWC',
1410
+ itemFamilyId: 'YbHzb8C4zsokFtWC',
1411
+ lifecycleStage: 'development',
1412
+ name: 'Feb 3 - No Option D',
1413
+ orgId: 'cMkHW5GAD8ViOZj-',
1414
+ roles: [
1415
+ 'family'
1416
+ ],
1417
+ typeId: 'cW7EhuRbkOU2dp18',
1418
+ typePath: 'item',
1419
+ updatedById: 'Eey3ZOi8znUA85i7',
1420
+ updatedOn: '2023-02-03T16:16:04.058Z'
1421
+ },
1422
+ itemId: 'YbHzb8C4zsokFtWC',
1423
+ orgId: 'cMkHW5GAD8ViOZj-',
1424
+ typeId: 'st1oc9uI2_ipArFM',
1425
+ typePath: 'assortment-item',
1426
+ updatedById: 'Eey3ZOi8znUA85i7',
1427
+ updatedOn: '2023-02-03T20:01:51.331Z'
1428
+ },
1429
+ {
1430
+ assortmentId: 'lhoTiciEDw5VOdBl',
1431
+ createdById: 'Eey3ZOi8znUA85i7',
1432
+ createdOn: '2023-02-03T20:01:51.331Z',
1433
+ id: 'hiDuwijjdfunRaIl',
1434
+ item: {
1435
+ createdById: 'Eey3ZOi8znUA85i7',
1436
+ createdOn: '2023-02-03T16:25:49.434Z',
1437
+ flexFormula: null,
1438
+ flexPLMTypePath: 'Product\\Pants',
1439
+ flexSequence: 156,
1440
+ id: 'eZL2ChJRBlvbu3yG',
1441
+ isPrimary: true,
1442
+ itemFamilyId: 'JEY86MOuRFv7f9OY',
1443
+ lifecycleStage: 'development',
1444
+ name: 'Feb 3 - 1 Option C',
1445
+ optionGroup: 'color',
1446
+ optionName: 'Option A',
1447
+ orgId: 'cMkHW5GAD8ViOZj-',
1448
+ roles: [
1449
+ 'color',
1450
+ 'option'
1451
+ ],
1452
+ typeId: 'cW7EhuRbkOU2dp18',
1453
+ typePath: 'item',
1454
+ updatedById: 'Eey3ZOi8znUA85i7',
1455
+ updatedOn: '2023-02-03T16:26:53.050Z'
1456
+ },
1457
+ itemId: 'eZL2ChJRBlvbu3yG',
1458
+ orgId: 'cMkHW5GAD8ViOZj-',
1459
+ typeId: 'st1oc9uI2_ipArFM',
1460
+ typePath: 'assortment-item',
1461
+ updatedById: 'Eey3ZOi8znUA85i7',
1462
+ updatedOn: '2023-02-03T20:01:51.331Z'
1463
+ },
1464
+ {
1465
+ assortmentId: 'lhoTiciEDw5VOdBl',
1466
+ createdById: 'Eey3ZOi8znUA85i7',
1467
+ createdOn: '2023-02-03T20:01:51.331Z',
1468
+ id: 'GkvvlHp8yfCGpbal',
1469
+ item: {
1470
+ ChrisProp: 'b',
1471
+ createdById: 'Eey3ZOi8znUA85i7',
1472
+ createdOn: '2023-02-03T16:11:58.439Z',
1473
+ flexFormula: null,
1474
+ flexPLMTypePath: 'Product\\Pants',
1475
+ flexSequence: 151,
1476
+ id: 'h19Bz1NBawzWHXVJ',
1477
+ itemFamilyId: 'h19Bz1NBawzWHXVJ',
1478
+ lifecycleStage: 'development',
1479
+ name: 'Feb 3 - No Option B',
1480
+ orgId: 'cMkHW5GAD8ViOZj-',
1481
+ roles: [
1482
+ 'family'
1483
+ ],
1484
+ typeId: 'cW7EhuRbkOU2dp18',
1485
+ typePath: 'item',
1486
+ updatedById: 'Eey3ZOi8znUA85i7',
1487
+ updatedOn: '2023-02-03T16:16:22.634Z'
1488
+ },
1489
+ itemId: 'h19Bz1NBawzWHXVJ',
1490
+ orgId: 'cMkHW5GAD8ViOZj-',
1491
+ typeId: 'st1oc9uI2_ipArFM',
1492
+ typePath: 'assortment-item',
1493
+ updatedById: 'Eey3ZOi8znUA85i7',
1494
+ updatedOn: '2023-02-03T20:01:51.331Z'
1495
+ },
1496
+ {
1497
+ assortmentId: 'lhoTiciEDw5VOdBl',
1498
+ createdById: 'Eey3ZOi8znUA85i7',
1499
+ createdOn: '2023-02-03T20:01:51.331Z',
1500
+ id: 'qsVx_kDSQNh-uRdQ',
1501
+ item: {
1502
+ createdById: 'Eey3ZOi8znUA85i7',
1503
+ createdOn: '2023-02-03T16:25:39.689Z',
1504
+ flexFormula: null,
1505
+ flexPLMTypePath: 'Product\\Pants',
1506
+ flexSequence: 154,
1507
+ id: 'jFAp5SmYqhXoX-ZI',
1508
+ isPrimary: true,
1509
+ itemFamilyId: 'U9QryfGVOYMAkBP_',
1510
+ lifecycleStage: 'development',
1511
+ name: 'Feb 3 - 1 Option A',
1512
+ optionGroup: 'color',
1513
+ optionName: 'Option A',
1514
+ orgId: 'cMkHW5GAD8ViOZj-',
1515
+ roles: [
1516
+ 'color',
1517
+ 'option'
1518
+ ],
1519
+ typeId: 'cW7EhuRbkOU2dp18',
1520
+ typePath: 'item',
1521
+ updatedById: 'Eey3ZOi8znUA85i7',
1522
+ updatedOn: '2023-02-03T16:26:20.797Z'
1523
+ },
1524
+ itemId: 'jFAp5SmYqhXoX-ZI',
1525
+ orgId: 'cMkHW5GAD8ViOZj-',
1526
+ typeId: 'st1oc9uI2_ipArFM',
1527
+ typePath: 'assortment-item',
1528
+ updatedById: 'Eey3ZOi8znUA85i7',
1529
+ updatedOn: '2023-02-03T20:01:51.331Z'
1530
+ },
1531
+ {
1532
+ assortmentId: 'lhoTiciEDw5VOdBl',
1533
+ createdById: 'Eey3ZOi8znUA85i7',
1534
+ createdOn: '2023-02-03T20:01:51.331Z',
1535
+ id: '6k7c3Wg18pSKwwqL',
1536
+ item: {
1537
+ createdById: 'Eey3ZOi8znUA85i7',
1538
+ createdOn: '2023-02-03T16:47:15.520Z',
1539
+ flexFormula: null,
1540
+ flexPLMTypePath: 'Product\\Pants',
1541
+ flexSequence: 159,
1542
+ id: 'jezonPsoRUlA52iz',
1543
+ isPrimary: true,
1544
+ itemFamilyId: 'tvCyTuL6hF3MwbjJ',
1545
+ lifecycleStage: 'development',
1546
+ name: 'Feb 3 - 2+ Option A',
1547
+ optionGroup: 'color',
1548
+ optionName: 'Option A',
1549
+ orgId: 'cMkHW5GAD8ViOZj-',
1550
+ roles: [
1551
+ 'color',
1552
+ 'option'
1553
+ ],
1554
+ typeId: 'cW7EhuRbkOU2dp18',
1555
+ typePath: 'item',
1556
+ updatedById: 'Eey3ZOi8znUA85i7',
1557
+ updatedOn: '2023-02-03T19:08:34.042Z'
1558
+ },
1559
+ itemId: 'jezonPsoRUlA52iz',
1560
+ orgId: 'cMkHW5GAD8ViOZj-',
1561
+ typeId: 'st1oc9uI2_ipArFM',
1562
+ typePath: 'assortment-item',
1563
+ updatedById: 'Eey3ZOi8znUA85i7',
1564
+ updatedOn: '2023-02-03T20:01:51.331Z'
1565
+ },
1566
+ {
1567
+ assortmentId: 'lhoTiciEDw5VOdBl',
1568
+ createdById: 'Eey3ZOi8znUA85i7',
1569
+ createdOn: '2023-02-03T20:01:51.331Z',
1570
+ id: 'GCX7-fWr3qMZ-_oX',
1571
+ item: {
1572
+ ChrisProp: 'a',
1573
+ createdById: 'Eey3ZOi8znUA85i7',
1574
+ createdOn: '2023-02-03T16:11:19.510Z',
1575
+ flexFormula: null,
1576
+ flexPLMTypePath: 'Product\\Pants',
1577
+ flexSequence: 149,
1578
+ id: 'kh1Rtb7kie7Vk5vo',
1579
+ itemFamilyId: 'kh1Rtb7kie7Vk5vo',
1580
+ lifecycleStage: 'development',
1581
+ name: 'Feb 3 - No Option -A',
1582
+ orgId: 'cMkHW5GAD8ViOZj-',
1583
+ roles: [
1584
+ 'family'
1585
+ ],
1586
+ typeId: 'cW7EhuRbkOU2dp18',
1587
+ typePath: 'item',
1588
+ updatedById: 'Eey3ZOi8znUA85i7',
1589
+ updatedOn: '2023-02-03T16:14:53.024Z'
1590
+ },
1591
+ itemId: 'kh1Rtb7kie7Vk5vo',
1592
+ orgId: 'cMkHW5GAD8ViOZj-',
1593
+ typeId: 'st1oc9uI2_ipArFM',
1594
+ typePath: 'assortment-item',
1595
+ updatedById: 'Eey3ZOi8znUA85i7',
1596
+ updatedOn: '2023-02-03T20:01:51.331Z'
1597
+ },
1598
+ {
1599
+ assortmentId: 'lhoTiciEDw5VOdBl',
1600
+ createdById: 'Eey3ZOi8znUA85i7',
1601
+ createdOn: '2023-02-03T20:01:51.331Z',
1602
+ id: 'bZji4InrzXWV9-_6',
1603
+ item: {
1604
+ ChrisProp: 'c',
1605
+ createdById: 'Eey3ZOi8znUA85i7',
1606
+ createdOn: '2023-02-03T16:12:52.410Z',
1607
+ flexFormula: null,
1608
+ flexPLMTypePath: 'Product\\Pants',
1609
+ flexSequence: 152,
1610
+ id: 'slUFr1iMSYM2ktCX',
1611
+ itemFamilyId: 'slUFr1iMSYM2ktCX',
1612
+ lifecycleStage: 'development',
1613
+ name: 'Feb 3 - No Option C',
1614
+ orgId: 'cMkHW5GAD8ViOZj-',
1615
+ roles: [
1616
+ 'family'
1617
+ ],
1618
+ typeId: 'cW7EhuRbkOU2dp18',
1619
+ typePath: 'item',
1620
+ updatedById: 'Eey3ZOi8znUA85i7',
1621
+ updatedOn: '2023-02-03T16:15:14.971Z'
1622
+ },
1623
+ itemId: 'slUFr1iMSYM2ktCX',
1624
+ orgId: 'cMkHW5GAD8ViOZj-',
1625
+ typeId: 'st1oc9uI2_ipArFM',
1626
+ typePath: 'assortment-item',
1627
+ updatedById: 'Eey3ZOi8znUA85i7',
1628
+ updatedOn: '2023-02-03T20:01:51.331Z'
1629
+ },
1630
+ {
1631
+ assortmentId: 'lhoTiciEDw5VOdBl',
1632
+ createdById: 'Eey3ZOi8znUA85i7',
1633
+ createdOn: '2023-02-03T20:01:51.332Z',
1634
+ id: 'JVs-SXEQeYtT_5sJ',
1635
+ item: {
1636
+ createdById: 'Eey3ZOi8znUA85i7',
1637
+ createdOn: '2023-02-03T18:55:13.541Z',
1638
+ flexFormula: null,
1639
+ flexPLMTypePath: 'Product\\Pants',
1640
+ flexSequence: 164,
1641
+ id: 'tBEFlAr9QXauCU-B',
1642
+ isPrimary: true,
1643
+ itemFamilyId: 'yzBFCl-aLXvKa5sh',
1644
+ lifecycleStage: 'development',
1645
+ name: 'Feb 3 - 2+ Option E',
1646
+ optionGroup: 'color',
1647
+ optionName: 'Option A',
1648
+ orgId: 'cMkHW5GAD8ViOZj-',
1649
+ roles: [
1650
+ 'color',
1651
+ 'option'
1652
+ ],
1653
+ typeId: 'cW7EhuRbkOU2dp18',
1654
+ typePath: 'item',
1655
+ updatedById: 'Eey3ZOi8znUA85i7',
1656
+ updatedOn: '2023-02-03T19:09:30.424Z'
1657
+ },
1658
+ itemId: 'tBEFlAr9QXauCU-B',
1659
+ orgId: 'cMkHW5GAD8ViOZj-',
1660
+ typeId: 'st1oc9uI2_ipArFM',
1661
+ typePath: 'assortment-item',
1662
+ updatedById: 'Eey3ZOi8znUA85i7',
1663
+ updatedOn: '2023-02-03T20:01:51.332Z'
1664
+ },
1665
+ {
1666
+ assortmentId: 'lhoTiciEDw5VOdBl',
1667
+ createdById: 'Eey3ZOi8znUA85i7',
1668
+ createdOn: '2023-02-03T20:01:51.331Z',
1669
+ id: 'o1vYydeXnRUGTkJu',
1670
+ item: {
1671
+ createdById: 'Eey3ZOi8znUA85i7',
1672
+ createdOn: '2023-02-03T18:54:18.998Z',
1673
+ flexFormula: null,
1674
+ flexPLMTypePath: 'Product\\Pants',
1675
+ flexSequence: 162,
1676
+ id: 'tc9HxACZqjyXfs0q',
1677
+ isPrimary: true,
1678
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
1679
+ lifecycleStage: 'development',
1680
+ name: 'Feb 3 - 2+ Option C',
1681
+ optionGroup: 'color',
1682
+ optionName: 'Option B',
1683
+ orgId: 'cMkHW5GAD8ViOZj-',
1684
+ roles: [
1685
+ 'color',
1686
+ 'option'
1687
+ ],
1688
+ typeId: 'cW7EhuRbkOU2dp18',
1689
+ typePath: 'item',
1690
+ updatedById: 'Eey3ZOi8znUA85i7',
1691
+ updatedOn: '2023-02-03T19:07:27.506Z'
1692
+ },
1693
+ itemId: 'tc9HxACZqjyXfs0q',
1694
+ orgId: 'cMkHW5GAD8ViOZj-',
1695
+ typeId: 'st1oc9uI2_ipArFM',
1696
+ typePath: 'assortment-item',
1697
+ updatedById: 'Eey3ZOi8znUA85i7',
1698
+ updatedOn: '2023-02-03T20:01:51.331Z'
1699
+ },
1700
+ {
1701
+ assortmentId: 'lhoTiciEDw5VOdBl',
1702
+ createdById: 'Eey3ZOi8znUA85i7',
1703
+ createdOn: '2023-02-03T20:01:51.331Z',
1704
+ id: '9KEPt76ZFd_B2ZT0',
1705
+ item: {
1706
+ createdById: 'Eey3ZOi8znUA85i7',
1707
+ createdOn: '2023-02-03T16:25:44.502Z',
1708
+ flexFormula: null,
1709
+ flexPLMTypePath: 'Product\\Pants',
1710
+ flexSequence: 155,
1711
+ id: 'yLhrIHYaP7B4nlkh',
1712
+ isPrimary: true,
1713
+ itemFamilyId: 'EejAxj-KK_GGr5Kh',
1714
+ lifecycleStage: 'development',
1715
+ name: 'Feb 3 - 1 Option B',
1716
+ optionGroup: 'color',
1717
+ optionName: 'Option A',
1718
+ orgId: 'cMkHW5GAD8ViOZj-',
1719
+ roles: [
1720
+ 'color',
1721
+ 'option'
1722
+ ],
1723
+ typeId: 'cW7EhuRbkOU2dp18',
1724
+ typePath: 'item',
1725
+ updatedById: 'Eey3ZOi8znUA85i7',
1726
+ updatedOn: '2023-02-03T16:26:39.642Z'
1727
+ },
1728
+ itemId: 'yLhrIHYaP7B4nlkh',
1729
+ orgId: 'cMkHW5GAD8ViOZj-',
1730
+ typeId: 'st1oc9uI2_ipArFM',
1731
+ typePath: 'assortment-item',
1732
+ updatedById: 'Eey3ZOi8znUA85i7',
1733
+ updatedOn: '2023-02-03T20:01:51.331Z'
1734
+ },
1735
+ {
1736
+ assortmentId: 'lhoTiciEDw5VOdBl',
1737
+ createdById: 'Eey3ZOi8znUA85i7',
1738
+ createdOn: '2023-02-03T20:01:51.331Z',
1739
+ id: 'qNirSClFKKSmEZBq',
1740
+ item: {
1741
+ createdById: 'Eey3ZOi8znUA85i7',
1742
+ createdOn: '2023-02-03T18:54:02.450Z',
1743
+ flexFormula: null,
1744
+ flexPLMTypePath: 'Product\\Pants',
1745
+ flexSequence: 162,
1746
+ id: 'zGF3wg9NvI-bBRmP',
1747
+ isPrimary: true,
1748
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
1749
+ lifecycleStage: 'development',
1750
+ name: 'Feb 3 - 2+ Option C',
1751
+ optionGroup: 'color',
1752
+ optionName: 'Option A',
1753
+ orgId: 'cMkHW5GAD8ViOZj-',
1754
+ roles: [
1755
+ 'color',
1756
+ 'option'
1757
+ ],
1758
+ typeId: 'cW7EhuRbkOU2dp18',
1759
+ typePath: 'item',
1760
+ updatedById: 'Eey3ZOi8znUA85i7',
1761
+ updatedOn: '2023-02-03T19:07:22.436Z'
1762
+ },
1763
+ itemId: 'zGF3wg9NvI-bBRmP',
1764
+ orgId: 'cMkHW5GAD8ViOZj-',
1765
+ typeId: 'st1oc9uI2_ipArFM',
1766
+ typePath: 'assortment-item',
1767
+ updatedById: 'Eey3ZOi8znUA85i7',
1768
+ updatedOn: '2023-02-03T20:01:51.331Z'
1769
+ }
1770
+ ],
1771
+ assortmentType: 'PLAN',
1772
+ createdById: 'Eey3ZOi8znUA85i7',
1773
+ createdForReference: 'plan:1YVekdG4UYBUh7mb',
1774
+ createdOn: '2023-02-03T15:37:16.203Z',
1775
+ id: 'lhoTiciEDw5VOdBl',
1776
+ name: 'Vibe IQ Fall 2003',
1777
+ orgId: 'cMkHW5GAD8ViOZj-',
1778
+ rootWorkspaceId: '6Z4Y6D2Lm1ai5LHK',
1779
+ typeId: 'fDbk-3fUhCDDBsvd',
1780
+ typePath: 'assortment',
1781
+ updatedById: 'Eey3ZOi8znUA85i7',
1782
+ updatedOn: '2023-02-03T16:00:55.142Z',
1783
+ workspaceId: '6Z4Y6D2Lm1ai5LHK'
1784
+ };
1785
+
1786
+ export const fall_2003_hydratedDetails_run2 = {
1787
+ adds: [
1788
+ {
1789
+ id: '-vqCrFzKnXUPyWjx',
1790
+ item: {
1791
+ ChrisProp: 'c',
1792
+ createdById: 'Eey3ZOi8znUA85i7',
1793
+ createdOn: '2023-02-08T18:30:25.782Z',
1794
+ entityType: 'item',
1795
+ flexFormula: null,
1796
+ flexPLMTypePath: 'Product\\Pants',
1797
+ flexSequence: 152,
1798
+ id: '-vqCrFzKnXUPyWjx',
1799
+ isPrimary: true,
1800
+ itemFamilyId: 'slUFr1iMSYM2ktCX',
1801
+ lifecycleStage: 'development',
1802
+ name: 'Feb 3 - No Option C',
1803
+ optionGroup: 'color',
1804
+ optionName: 'Option A',
1805
+ orgId: 'cMkHW5GAD8ViOZj-',
1806
+ roles: [
1807
+ 'color',
1808
+ 'option'
1809
+ ],
1810
+ typeId: 'cW7EhuRbkOU2dp18',
1811
+ typePath: 'item',
1812
+ updatedById: 'Eey3ZOi8znUA85i7',
1813
+ updatedOn: '2023-02-08T18:31:27.153Z'
1814
+ }
1815
+ },
1816
+ {
1817
+ id: 'jfWMlv16mTAEKJ7W',
1818
+ item: {
1819
+ createdById: 'Eey3ZOi8znUA85i7',
1820
+ createdOn: '2023-02-03T18:53:55.018Z',
1821
+ entityType: 'item',
1822
+ flexFormula: null,
1823
+ flexPLMTypePath: 'Product\\Pants',
1824
+ flexSequence: 162,
1825
+ id: 'jfWMlv16mTAEKJ7W',
1826
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
1827
+ lifecycleStage: 'development',
1828
+ name: 'Feb 3 - 2+ Option C',
1829
+ orgId: 'cMkHW5GAD8ViOZj-',
1830
+ roles: [
1831
+ 'family'
1832
+ ],
1833
+ typeId: 'cW7EhuRbkOU2dp18',
1834
+ typePath: 'item',
1835
+ updatedById: 'Eey3ZOi8znUA85i7',
1836
+ updatedOn: '2023-02-03T19:07:17.496Z'
1837
+ }
1838
+ },
1839
+ {
1840
+ id: 'd0a2gOK_wP06VeT3',
1841
+ item: {
1842
+ createdById: 'Eey3ZOi8znUA85i7',
1843
+ createdOn: '2023-02-08T18:31:13.248Z',
1844
+ entityType: 'item',
1845
+ flexFormula: null,
1846
+ flexPLMTypePath: 'Product\\Pants',
1847
+ flexSequence: 157,
1848
+ id: 'd0a2gOK_wP06VeT3',
1849
+ isPrimary: true,
1850
+ itemFamilyId: '_YbANkSl6AWiLPaC',
1851
+ lifecycleStage: 'development',
1852
+ name: 'Feb 3 - 1 Option D',
1853
+ optionGroup: 'color',
1854
+ optionName: 'Option B',
1855
+ orgId: 'cMkHW5GAD8ViOZj-',
1856
+ roles: [
1857
+ 'color',
1858
+ 'option'
1859
+ ],
1860
+ typeId: 'cW7EhuRbkOU2dp18',
1861
+ typePath: 'item',
1862
+ updatedById: 'Eey3ZOi8znUA85i7',
1863
+ updatedOn: '2023-02-08T18:31:19.035Z'
1864
+ }
1865
+ },
1866
+ {
1867
+ id: 'xsf5pNlSdPRvtP1h',
1868
+ item: {
1869
+ createdById: 'Eey3ZOi8znUA85i7',
1870
+ createdOn: '2023-02-08T19:01:55.023Z',
1871
+ entityType: 'item',
1872
+ flexFormula: null,
1873
+ flexPLMTypePath: 'Product\\Pants',
1874
+ flexSequence: 158,
1875
+ id: 'xsf5pNlSdPRvtP1h',
1876
+ isPrimary: true,
1877
+ itemFamilyId: 'tFnQr83XEJ_Ly0yi',
1878
+ lifecycleStage: 'development',
1879
+ name: 'Feb 3 - 1 Option E',
1880
+ optionGroup: 'color',
1881
+ optionName: 'Option B',
1882
+ orgId: 'cMkHW5GAD8ViOZj-',
1883
+ roles: [
1884
+ 'color',
1885
+ 'option'
1886
+ ],
1887
+ typeId: 'cW7EhuRbkOU2dp18',
1888
+ typePath: 'item',
1889
+ updatedById: 'Eey3ZOi8znUA85i7',
1890
+ updatedOn: '2023-02-08T19:02:00.107Z'
1891
+ }
1892
+ },
1893
+ {
1894
+ id: 'EejAxj-KK_GGr5Kh',
1895
+ item: {
1896
+ createdById: 'Eey3ZOi8znUA85i7',
1897
+ createdOn: '2023-02-03T16:24:05.927Z',
1898
+ entityType: 'item',
1899
+ flexFormula: null,
1900
+ flexPLMTypePath: 'Product\\Pants',
1901
+ flexSequence: 155,
1902
+ id: 'EejAxj-KK_GGr5Kh',
1903
+ itemFamilyId: 'EejAxj-KK_GGr5Kh',
1904
+ lifecycleStage: 'development',
1905
+ name: 'Feb 3 - 1 Option B',
1906
+ orgId: 'cMkHW5GAD8ViOZj-',
1907
+ roles: [
1908
+ 'family'
1909
+ ],
1910
+ typeId: 'cW7EhuRbkOU2dp18',
1911
+ typePath: 'item',
1912
+ updatedById: 'Eey3ZOi8znUA85i7',
1913
+ updatedOn: '2023-02-03T16:26:36.038Z'
1914
+ }
1915
+ }
1916
+ ],
1917
+ assortmentId: 'lhoTiciEDw5VOdBl',
1918
+ deletes: [
1919
+ {
1920
+ id: '6eeYhW0b6QbZz3BY',
1921
+ item: {
1922
+ createdById: 'Eey3ZOi8znUA85i7',
1923
+ createdOn: '2023-02-03T18:54:55.996Z',
1924
+ entityType: 'item',
1925
+ flexFormula: null,
1926
+ flexPLMTypePath: 'Product\\Pants',
1927
+ flexSequence: 163,
1928
+ id: '6eeYhW0b6QbZz3BY',
1929
+ isPrimary: true,
1930
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
1931
+ lifecycleStage: 'development',
1932
+ name: 'Feb 3 - 2+ Option D',
1933
+ optionGroup: 'color',
1934
+ optionName: 'Option B',
1935
+ orgId: 'cMkHW5GAD8ViOZj-',
1936
+ roles: [
1937
+ 'color',
1938
+ 'option'
1939
+ ],
1940
+ typeId: 'cW7EhuRbkOU2dp18',
1941
+ typePath: 'item',
1942
+ updatedById: 'Eey3ZOi8znUA85i7',
1943
+ updatedOn: '2023-02-03T19:09:13.876Z'
1944
+ }
1945
+ },
1946
+ {
1947
+ id: '6zHmYEG7asMtA-1W',
1948
+ item: {
1949
+ createdById: 'Eey3ZOi8znUA85i7',
1950
+ createdOn: '2023-02-03T18:52:21.846Z',
1951
+ entityType: 'item',
1952
+ flexFormula: null,
1953
+ flexPLMTypePath: 'Product\\Pants',
1954
+ flexSequence: 161,
1955
+ id: '6zHmYEG7asMtA-1W',
1956
+ isPrimary: true,
1957
+ itemFamilyId: 'rW_TVz1KKv6kUsSD',
1958
+ lifecycleStage: 'development',
1959
+ name: 'Feb 3 - 2+ Option B',
1960
+ optionGroup: 'color',
1961
+ optionName: 'Option A',
1962
+ orgId: 'cMkHW5GAD8ViOZj-',
1963
+ roles: [
1964
+ 'color',
1965
+ 'option'
1966
+ ],
1967
+ typeId: 'cW7EhuRbkOU2dp18',
1968
+ typePath: 'item',
1969
+ updatedById: 'Eey3ZOi8znUA85i7',
1970
+ updatedOn: '2023-02-03T19:07:00.802Z'
1971
+ }
1972
+ },
1973
+ {
1974
+ id: 'C6TFfaV8q6Cd3qyY',
1975
+ item: {
1976
+ createdById: 'Eey3ZOi8znUA85i7',
1977
+ createdOn: '2023-02-03T18:57:32.989Z',
1978
+ entityType: 'item',
1979
+ flexFormula: null,
1980
+ flexPLMTypePath: 'Product\\Pants',
1981
+ flexSequence: 167,
1982
+ id: 'C6TFfaV8q6Cd3qyY',
1983
+ isPrimary: true,
1984
+ itemFamilyId: 'jMNq_fTfGqfz-M5V',
1985
+ lifecycleStage: 'concept',
1986
+ name: 'Feb 3 - Concept - 1 Option A',
1987
+ optionGroup: 'color',
1988
+ optionName: 'Option A',
1989
+ orgId: 'cMkHW5GAD8ViOZj-',
1990
+ roles: [
1991
+ 'color',
1992
+ 'option'
1993
+ ],
1994
+ typeId: 'cW7EhuRbkOU2dp18',
1995
+ typePath: 'item',
1996
+ updatedById: 'Eey3ZOi8znUA85i7',
1997
+ updatedOn: '2023-02-03T18:57:47.714Z'
1998
+ }
1999
+ },
2000
+ {
2001
+ id: 'JiaHIQjcieKTKVTL',
2002
+ item: {
2003
+ createdById: 'Eey3ZOi8znUA85i7',
2004
+ createdOn: '2023-02-03T18:54:40.332Z',
2005
+ entityType: 'item',
2006
+ flexFormula: null,
2007
+ flexPLMTypePath: 'Product\\Pants',
2008
+ flexSequence: 163,
2009
+ id: 'JiaHIQjcieKTKVTL',
2010
+ isPrimary: true,
2011
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
2012
+ lifecycleStage: 'development',
2013
+ name: 'Feb 3 - 2+ Option D',
2014
+ optionGroup: 'color',
2015
+ optionName: 'Option A',
2016
+ orgId: 'cMkHW5GAD8ViOZj-',
2017
+ roles: [
2018
+ 'color',
2019
+ 'option'
2020
+ ],
2021
+ typeId: 'cW7EhuRbkOU2dp18',
2022
+ typePath: 'item',
2023
+ updatedById: 'Eey3ZOi8znUA85i7',
2024
+ updatedOn: '2023-02-03T19:09:09.980Z'
2025
+ }
2026
+ },
2027
+ {
2028
+ id: 'TI8GBo0qanxzKVEr',
2029
+ item: {
2030
+ createdById: 'Eey3ZOi8znUA85i7',
2031
+ createdOn: '2023-02-03T16:26:00.962Z',
2032
+ entityType: 'item',
2033
+ flexFormula: null,
2034
+ flexPLMTypePath: 'Product\\Pants',
2035
+ flexSequence: 157,
2036
+ id: 'TI8GBo0qanxzKVEr',
2037
+ isPrimary: true,
2038
+ itemFamilyId: '_YbANkSl6AWiLPaC',
2039
+ lifecycleStage: 'development',
2040
+ name: 'Feb 3 - 1 Option D',
2041
+ optionGroup: 'color',
2042
+ optionName: 'Option A',
2043
+ orgId: 'cMkHW5GAD8ViOZj-',
2044
+ roles: [
2045
+ 'color',
2046
+ 'option'
2047
+ ],
2048
+ typeId: 'cW7EhuRbkOU2dp18',
2049
+ typePath: 'item',
2050
+ updatedById: 'Eey3ZOi8znUA85i7',
2051
+ updatedOn: '2023-02-03T16:27:11.871Z'
2052
+ }
2053
+ },
2054
+ {
2055
+ id: 'U7zzfu5DjXTy-oz5',
2056
+ item: {
2057
+ createdById: 'Eey3ZOi8znUA85i7',
2058
+ createdOn: '2023-02-03T18:56:56.805Z',
2059
+ entityType: 'item',
2060
+ flexFormula: null,
2061
+ flexPLMTypePath: 'Product\\Pants',
2062
+ flexSequence: 166,
2063
+ id: 'U7zzfu5DjXTy-oz5',
2064
+ itemFamilyId: 'U7zzfu5DjXTy-oz5',
2065
+ lifecycleStage: 'concept',
2066
+ name: 'Feb 3 -Concept - No Option A',
2067
+ orgId: 'cMkHW5GAD8ViOZj-',
2068
+ roles: [
2069
+ 'family'
2070
+ ],
2071
+ typeId: 'cW7EhuRbkOU2dp18',
2072
+ typePath: 'item',
2073
+ updatedById: 'Eey3ZOi8znUA85i7',
2074
+ updatedOn: '2023-02-03T18:58:00.795Z'
2075
+ }
2076
+ },
2077
+ {
2078
+ id: 'UrFiA2VgBudniXfZ',
2079
+ item: {
2080
+ createdById: 'Eey3ZOi8znUA85i7',
2081
+ createdOn: '2023-02-03T16:26:09.985Z',
2082
+ entityType: 'item',
2083
+ flexFormula: null,
2084
+ flexPLMTypePath: 'Product\\Pants',
2085
+ flexSequence: 158,
2086
+ id: 'UrFiA2VgBudniXfZ',
2087
+ isPrimary: true,
2088
+ itemFamilyId: 'tFnQr83XEJ_Ly0yi',
2089
+ lifecycleStage: 'development',
2090
+ name: 'Feb 3 - 1 Option E',
2091
+ optionGroup: 'color',
2092
+ optionName: 'Option A',
2093
+ orgId: 'cMkHW5GAD8ViOZj-',
2094
+ roles: [
2095
+ 'color',
2096
+ 'option'
2097
+ ],
2098
+ typeId: 'cW7EhuRbkOU2dp18',
2099
+ typePath: 'item',
2100
+ updatedById: 'Eey3ZOi8znUA85i7',
2101
+ updatedOn: '2023-02-03T16:27:25.685Z'
2102
+ }
2103
+ },
2104
+ {
2105
+ id: 'eZL2ChJRBlvbu3yG',
2106
+ item: {
2107
+ createdById: 'Eey3ZOi8znUA85i7',
2108
+ createdOn: '2023-02-03T16:25:49.434Z',
2109
+ entityType: 'item',
2110
+ flexFormula: null,
2111
+ flexPLMTypePath: 'Product\\Pants',
2112
+ flexSequence: 156,
2113
+ id: 'eZL2ChJRBlvbu3yG',
2114
+ isPrimary: true,
2115
+ itemFamilyId: 'JEY86MOuRFv7f9OY',
2116
+ lifecycleStage: 'development',
2117
+ name: 'Feb 3 - 1 Option C',
2118
+ optionGroup: 'color',
2119
+ optionName: 'Option A',
2120
+ orgId: 'cMkHW5GAD8ViOZj-',
2121
+ roles: [
2122
+ 'color',
2123
+ 'option'
2124
+ ],
2125
+ typeId: 'cW7EhuRbkOU2dp18',
2126
+ typePath: 'item',
2127
+ updatedById: 'Eey3ZOi8znUA85i7',
2128
+ updatedOn: '2023-02-03T16:26:53.050Z'
2129
+ }
2130
+ },
2131
+ {
2132
+ id: 'h19Bz1NBawzWHXVJ',
2133
+ item: {
2134
+ ChrisProp: 'b',
2135
+ createdById: 'Eey3ZOi8znUA85i7',
2136
+ createdOn: '2023-02-03T16:11:58.439Z',
2137
+ entityType: 'item',
2138
+ flexFormula: null,
2139
+ flexPLMTypePath: 'Product\\Pants',
2140
+ flexSequence: 151,
2141
+ id: 'h19Bz1NBawzWHXVJ',
2142
+ itemFamilyId: 'h19Bz1NBawzWHXVJ',
2143
+ lifecycleStage: 'development',
2144
+ name: 'Feb 3 - No Option B',
2145
+ orgId: 'cMkHW5GAD8ViOZj-',
2146
+ roles: [
2147
+ 'family'
2148
+ ],
2149
+ typeId: 'cW7EhuRbkOU2dp18',
2150
+ typePath: 'item',
2151
+ updatedById: 'Eey3ZOi8znUA85i7',
2152
+ updatedOn: '2023-02-03T16:16:22.634Z'
2153
+ }
2154
+ },
2155
+ {
2156
+ id: 'tc9HxACZqjyXfs0q',
2157
+ item: {
2158
+ createdById: 'Eey3ZOi8znUA85i7',
2159
+ createdOn: '2023-02-03T18:54:18.998Z',
2160
+ entityType: 'item',
2161
+ flexFormula: null,
2162
+ flexPLMTypePath: 'Product\\Pants',
2163
+ flexSequence: 162,
2164
+ id: 'tc9HxACZqjyXfs0q',
2165
+ isPrimary: true,
2166
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
2167
+ lifecycleStage: 'development',
2168
+ name: 'Feb 3 - 2+ Option C',
2169
+ optionGroup: 'color',
2170
+ optionName: 'Option B',
2171
+ orgId: 'cMkHW5GAD8ViOZj-',
2172
+ roles: [
2173
+ 'color',
2174
+ 'option'
2175
+ ],
2176
+ typeId: 'cW7EhuRbkOU2dp18',
2177
+ typePath: 'item',
2178
+ updatedById: 'Eey3ZOi8znUA85i7',
2179
+ updatedOn: '2023-02-03T19:07:27.506Z'
2180
+ }
2181
+ },
2182
+ {
2183
+ id: 'yLhrIHYaP7B4nlkh',
2184
+ item: {
2185
+ createdById: 'Eey3ZOi8znUA85i7',
2186
+ createdOn: '2023-02-03T16:25:44.502Z',
2187
+ entityType: 'item',
2188
+ flexFormula: null,
2189
+ flexPLMTypePath: 'Product\\Pants',
2190
+ flexSequence: 155,
2191
+ id: 'yLhrIHYaP7B4nlkh',
2192
+ isPrimary: true,
2193
+ itemFamilyId: 'EejAxj-KK_GGr5Kh',
2194
+ lifecycleStage: 'development',
2195
+ name: 'Feb 3 - 1 Option B',
2196
+ optionGroup: 'color',
2197
+ optionName: 'Option A',
2198
+ orgId: 'cMkHW5GAD8ViOZj-',
2199
+ roles: [
2200
+ 'color',
2201
+ 'option'
2202
+ ],
2203
+ typeId: 'cW7EhuRbkOU2dp18',
2204
+ typePath: 'item',
2205
+ updatedById: 'Eey3ZOi8znUA85i7',
2206
+ updatedOn: '2023-02-03T16:26:39.642Z'
2207
+ }
2208
+ },
2209
+ {
2210
+ id: 'zGF3wg9NvI-bBRmP',
2211
+ item: {
2212
+ createdById: 'Eey3ZOi8znUA85i7',
2213
+ createdOn: '2023-02-03T18:54:02.450Z',
2214
+ entityType: 'item',
2215
+ flexFormula: null,
2216
+ flexPLMTypePath: 'Product\\Pants',
2217
+ flexSequence: 162,
2218
+ id: 'zGF3wg9NvI-bBRmP',
2219
+ isPrimary: true,
2220
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
2221
+ lifecycleStage: 'development',
2222
+ name: 'Feb 3 - 2+ Option C',
2223
+ optionGroup: 'color',
2224
+ optionName: 'Option A',
2225
+ orgId: 'cMkHW5GAD8ViOZj-',
2226
+ roles: [
2227
+ 'color',
2228
+ 'option'
2229
+ ],
2230
+ typeId: 'cW7EhuRbkOU2dp18',
2231
+ typePath: 'item',
2232
+ updatedById: 'Eey3ZOi8znUA85i7',
2233
+ updatedOn: '2023-02-03T19:07:22.436Z'
2234
+ }
2235
+ }
2236
+ ],
2237
+ errors: [
2238
+ ],
2239
+ familyItemsRemoved: [
2240
+ {
2241
+ assortmentId: 'lhoTiciEDw5VOdBl',
2242
+ createdById: 'Eey3ZOi8znUA85i7',
2243
+ createdOn: '2023-02-03T20:01:51.331Z',
2244
+ entityType: 'assortment-item',
2245
+ id: 'bZji4InrzXWV9-_6',
2246
+ item: {
2247
+ ChrisProp: 'c',
2248
+ createdById: 'Eey3ZOi8znUA85i7',
2249
+ createdOn: '2023-02-03T16:12:52.410Z',
2250
+ entityType: 'item',
2251
+ flexFormula: null,
2252
+ flexPLMTypePath: 'Product\\Pants',
2253
+ flexSequence: 152,
2254
+ id: 'slUFr1iMSYM2ktCX',
2255
+ itemFamilyId: 'slUFr1iMSYM2ktCX',
2256
+ lifecycleStage: 'development',
2257
+ name: 'Feb 3 - No Option C',
2258
+ orgId: 'cMkHW5GAD8ViOZj-',
2259
+ roles: [
2260
+ 'family'
2261
+ ],
2262
+ typeId: 'cW7EhuRbkOU2dp18',
2263
+ typePath: 'item',
2264
+ updatedById: 'Eey3ZOi8znUA85i7',
2265
+ updatedOn: '2023-02-03T16:15:14.971Z'
2266
+ },
2267
+ itemId: 'slUFr1iMSYM2ktCX',
2268
+ orgId: 'cMkHW5GAD8ViOZj-',
2269
+ typeId: 'st1oc9uI2_ipArFM',
2270
+ typePath: 'assortment-item',
2271
+ updatedById: 'Eey3ZOi8znUA85i7',
2272
+ updatedOn: '2023-02-03T20:01:51.331Z'
2273
+ }
2274
+ ],
2275
+ updates: [
2276
+ ],
2277
+ versionComments: 'Feb 3 \u2013 No Option B: Remove\nFeb 3 \u2013 No Option C: Add Option\nFeb 3 \u2013 No Option D: Change ProjectItem Value\nFeb 3 \u2013 1 Option B: Remove Option\nFeb 3 \u2013 1 Option C: Remove Family & Option\nFeb 3 \u2013 1 Option D: Replace Option (Same Row)\nFeb 3 \u2013 1 Option E: Remove Family & Option;Add Family & New Option to diff row\nFeb 3 \u2013 1 Option F: Change ProjectItem Value\nFeb 3 \u2013 2+ Option B: Remove 1 Option\nFeb 3 \u2013 2+ Option C: Remove All Options (leave family)\nFeb 3 \u2013 2+ Option D: Remove Family & All Options\nFeb 3 \u2013 2+ Option E: Change ProjectItem Value (1 row)\nFeb 3 \u2013 2+ Option F: Change ProjectItem Value (2 rows)',
2278
+ versionName: 'Publish Run#2'
2279
+ };
2280
+
2281
+ export const fall_2003_fullChange_run2 = {
2282
+ assortmentItems: [
2283
+ {
2284
+ assortmentId: 'lhoTiciEDw5VOdBl',
2285
+ createdById: 'Eey3ZOi8znUA85i7',
2286
+ createdOn: '2023-02-08T19:07:11.623Z',
2287
+ entityType: 'assortment-item',
2288
+ id: 'AOL5rprVMPbCJpXI',
2289
+ item: {
2290
+ ChrisProp: 'c',
2291
+ createdById: 'Eey3ZOi8znUA85i7',
2292
+ createdOn: '2023-02-08T18:30:25.782Z',
2293
+ entityType: 'item',
2294
+ flexFormula: null,
2295
+ flexPLMTypePath: 'Product\\Pants',
2296
+ flexSequence: 152,
2297
+ id: '-vqCrFzKnXUPyWjx',
2298
+ isPrimary: true,
2299
+ itemFamilyId: 'slUFr1iMSYM2ktCX',
2300
+ lifecycleStage: 'development',
2301
+ name: 'Feb 3 - No Option C',
2302
+ optionGroup: 'color',
2303
+ optionName: 'Option A',
2304
+ orgId: 'cMkHW5GAD8ViOZj-',
2305
+ roles: [
2306
+ 'color',
2307
+ 'option'
2308
+ ],
2309
+ typeId: 'cW7EhuRbkOU2dp18',
2310
+ typePath: 'item',
2311
+ updatedById: 'Eey3ZOi8znUA85i7',
2312
+ updatedOn: '2023-02-08T18:31:27.153Z'
2313
+ },
2314
+ itemId: '-vqCrFzKnXUPyWjx',
2315
+ orgId: 'cMkHW5GAD8ViOZj-',
2316
+ typeId: 'st1oc9uI2_ipArFM',
2317
+ typePath: 'assortment-item',
2318
+ updatedById: 'Eey3ZOi8znUA85i7',
2319
+ updatedOn: '2023-02-08T19:07:11.623Z'
2320
+ },
2321
+ {
2322
+ assortmentId: 'lhoTiciEDw5VOdBl',
2323
+ createdById: 'Eey3ZOi8znUA85i7',
2324
+ createdOn: '2023-02-03T20:01:51.331Z',
2325
+ entityType: 'assortment-item',
2326
+ id: 'Z7V8NkqWGDo8Wa9q',
2327
+ item: {
2328
+ createdById: 'Eey3ZOi8znUA85i7',
2329
+ createdOn: '2023-02-03T18:56:05.269Z',
2330
+ entityType: 'item',
2331
+ flexFormula: null,
2332
+ flexPLMTypePath: 'Product\\Pants',
2333
+ flexSequence: 165,
2334
+ id: 'BD4ZjRf5DVimbU3N',
2335
+ isPrimary: true,
2336
+ itemFamilyId: 'hZGu3WAz1fbwLPGW',
2337
+ lifecycleStage: 'development',
2338
+ name: 'Feb 3 - 2+ Option F',
2339
+ optionGroup: 'color',
2340
+ optionName: 'Option B',
2341
+ orgId: 'cMkHW5GAD8ViOZj-',
2342
+ roles: [
2343
+ 'color',
2344
+ 'option'
2345
+ ],
2346
+ typeId: 'cW7EhuRbkOU2dp18',
2347
+ typePath: 'item',
2348
+ updatedById: 'Eey3ZOi8znUA85i7',
2349
+ updatedOn: '2023-02-03T19:09:50.735Z'
2350
+ },
2351
+ itemId: 'BD4ZjRf5DVimbU3N',
2352
+ orgId: 'cMkHW5GAD8ViOZj-',
2353
+ projectItem: {
2354
+ createdById: 'Eey3ZOi8znUA85i7',
2355
+ createdOn: '2023-02-08T18:32:43.314Z',
2356
+ entityType: 'project-item',
2357
+ id: 'ocUdgjQckz-94pH8:BD4ZjRf5DVimbU3N',
2358
+ itemId: 'BD4ZjRf5DVimbU3N',
2359
+ orgId: 'cMkHW5GAD8ViOZj-',
2360
+ piNumber: 5000,
2361
+ projectId: 'ocUdgjQckz-94pH8',
2362
+ typeId: 'E4SRRsW9EWqA57ev',
2363
+ typePath: 'project-item',
2364
+ updatedById: 'Eey3ZOi8znUA85i7',
2365
+ updatedOn: '2023-02-08T18:32:43.370Z'
2366
+ },
2367
+ typeId: 'st1oc9uI2_ipArFM',
2368
+ typePath: 'assortment-item',
2369
+ updatedById: 'Eey3ZOi8znUA85i7',
2370
+ updatedOn: '2023-02-03T20:01:51.331Z'
2371
+ },
2372
+ {
2373
+ assortmentId: 'lhoTiciEDw5VOdBl',
2374
+ createdById: 'Eey3ZOi8znUA85i7',
2375
+ createdOn: '2023-02-03T20:25:57.948Z',
2376
+ entityType: 'assortment-item',
2377
+ id: 'ZHI2zHBwbYzHCfCk',
2378
+ item: {
2379
+ chrisString: 'q',
2380
+ createdById: 'Eey3ZOi8znUA85i7',
2381
+ createdOn: '2023-02-03T20:22:32.718Z',
2382
+ entityType: 'item',
2383
+ flexFormula: null,
2384
+ flexPLMTypePath: 'Product\\Pants',
2385
+ flexSequence: 168,
2386
+ id: 'CNOovV5RFWGL6FMT',
2387
+ isPrimary: true,
2388
+ itemFamilyId: 'yD-3KrBzAYRRsh9v',
2389
+ lifecycleStage: 'development',
2390
+ name: 'Feb 3 - 1 Option F',
2391
+ optionGroup: 'color',
2392
+ optionName: 'Option A',
2393
+ orgId: 'cMkHW5GAD8ViOZj-',
2394
+ roles: [
2395
+ 'color',
2396
+ 'option'
2397
+ ],
2398
+ typeId: 'cW7EhuRbkOU2dp18',
2399
+ typePath: 'item',
2400
+ updatedById: 'Eey3ZOi8znUA85i7',
2401
+ updatedOn: '2023-02-03T20:24:41.476Z'
2402
+ },
2403
+ itemId: 'CNOovV5RFWGL6FMT',
2404
+ orgId: 'cMkHW5GAD8ViOZj-',
2405
+ projectItem: {
2406
+ createdById: 'Eey3ZOi8znUA85i7',
2407
+ createdOn: '2023-02-08T18:31:48.159Z',
2408
+ entityType: 'project-item',
2409
+ id: 'ocUdgjQckz-94pH8:CNOovV5RFWGL6FMT',
2410
+ itemId: 'CNOovV5RFWGL6FMT',
2411
+ orgId: 'cMkHW5GAD8ViOZj-',
2412
+ piNumber: 2000,
2413
+ projectId: 'ocUdgjQckz-94pH8',
2414
+ typeId: 'E4SRRsW9EWqA57ev',
2415
+ typePath: 'project-item',
2416
+ updatedById: 'Eey3ZOi8znUA85i7',
2417
+ updatedOn: '2023-02-08T18:31:48.224Z'
2418
+ },
2419
+ typeId: 'st1oc9uI2_ipArFM',
2420
+ typePath: 'assortment-item',
2421
+ updatedById: 'Eey3ZOi8znUA85i7',
2422
+ updatedOn: '2023-02-03T20:25:57.948Z'
2423
+ },
2424
+ {
2425
+ assortmentId: 'lhoTiciEDw5VOdBl',
2426
+ createdById: 'Eey3ZOi8znUA85i7',
2427
+ createdOn: '2023-02-08T19:07:11.623Z',
2428
+ entityType: 'assortment-item',
2429
+ id: 'G0I1lrMwtR3_zq6C',
2430
+ item: {
2431
+ createdById: 'Eey3ZOi8znUA85i7',
2432
+ createdOn: '2023-02-03T16:24:05.927Z',
2433
+ entityType: 'item',
2434
+ flexFormula: null,
2435
+ flexPLMTypePath: 'Product\\Pants',
2436
+ flexSequence: 155,
2437
+ id: 'EejAxj-KK_GGr5Kh',
2438
+ itemFamilyId: 'EejAxj-KK_GGr5Kh',
2439
+ lifecycleStage: 'development',
2440
+ name: 'Feb 3 - 1 Option B',
2441
+ orgId: 'cMkHW5GAD8ViOZj-',
2442
+ roles: [
2443
+ 'family'
2444
+ ],
2445
+ typeId: 'cW7EhuRbkOU2dp18',
2446
+ typePath: 'item',
2447
+ updatedById: 'Eey3ZOi8znUA85i7',
2448
+ updatedOn: '2023-02-03T16:26:36.038Z'
2449
+ },
2450
+ itemId: 'EejAxj-KK_GGr5Kh',
2451
+ orgId: 'cMkHW5GAD8ViOZj-',
2452
+ typeId: 'st1oc9uI2_ipArFM',
2453
+ typePath: 'assortment-item',
2454
+ updatedById: 'Eey3ZOi8znUA85i7',
2455
+ updatedOn: '2023-02-08T19:07:11.623Z'
2456
+ },
2457
+ {
2458
+ assortmentId: 'lhoTiciEDw5VOdBl',
2459
+ createdById: 'Eey3ZOi8znUA85i7',
2460
+ createdOn: '2023-02-03T20:01:51.331Z',
2461
+ entityType: 'assortment-item',
2462
+ id: 'oTq3YrksCUIZsVgw',
2463
+ item: {
2464
+ createdById: 'Eey3ZOi8znUA85i7',
2465
+ createdOn: '2023-02-03T18:55:29.811Z',
2466
+ entityType: 'item',
2467
+ flexFormula: null,
2468
+ flexPLMTypePath: 'Product\\Pants',
2469
+ flexSequence: 164,
2470
+ id: 'GNH-vuzZeXFQmtMR',
2471
+ isPrimary: true,
2472
+ itemFamilyId: 'yzBFCl-aLXvKa5sh',
2473
+ lifecycleStage: 'development',
2474
+ name: 'Feb 3 - 2+ Option E',
2475
+ optionGroup: 'color',
2476
+ optionName: 'Option B',
2477
+ orgId: 'cMkHW5GAD8ViOZj-',
2478
+ roles: [
2479
+ 'color',
2480
+ 'option'
2481
+ ],
2482
+ typeId: 'cW7EhuRbkOU2dp18',
2483
+ typePath: 'item',
2484
+ updatedById: 'Eey3ZOi8znUA85i7',
2485
+ updatedOn: '2023-02-03T19:09:33.653Z'
2486
+ },
2487
+ itemId: 'GNH-vuzZeXFQmtMR',
2488
+ orgId: 'cMkHW5GAD8ViOZj-',
2489
+ typeId: 'st1oc9uI2_ipArFM',
2490
+ typePath: 'assortment-item',
2491
+ updatedById: 'Eey3ZOi8znUA85i7',
2492
+ updatedOn: '2023-02-03T20:01:51.331Z'
2493
+ },
2494
+ {
2495
+ assortmentId: 'lhoTiciEDw5VOdBl',
2496
+ createdById: 'Eey3ZOi8znUA85i7',
2497
+ createdOn: '2023-02-03T20:01:51.332Z',
2498
+ entityType: 'assortment-item',
2499
+ id: 'wezopwmsLc3hDXFA',
2500
+ item: {
2501
+ createdById: 'Eey3ZOi8znUA85i7',
2502
+ createdOn: '2023-02-03T18:55:48.849Z',
2503
+ entityType: 'item',
2504
+ flexFormula: null,
2505
+ flexPLMTypePath: 'Product\\Pants',
2506
+ flexSequence: 165,
2507
+ id: 'M0fWXzUMBDrxjFcS',
2508
+ isPrimary: true,
2509
+ itemFamilyId: 'hZGu3WAz1fbwLPGW',
2510
+ lifecycleStage: 'development',
2511
+ name: 'Feb 3 - 2+ Option F',
2512
+ optionGroup: 'color',
2513
+ optionName: 'Option A',
2514
+ orgId: 'cMkHW5GAD8ViOZj-',
2515
+ roles: [
2516
+ 'color',
2517
+ 'option'
2518
+ ],
2519
+ typeId: 'cW7EhuRbkOU2dp18',
2520
+ typePath: 'item',
2521
+ updatedById: 'Eey3ZOi8znUA85i7',
2522
+ updatedOn: '2023-02-03T19:09:47.683Z'
2523
+ },
2524
+ itemId: 'M0fWXzUMBDrxjFcS',
2525
+ orgId: 'cMkHW5GAD8ViOZj-',
2526
+ projectItem: {
2527
+ createdById: 'Eey3ZOi8znUA85i7',
2528
+ createdOn: '2023-02-08T18:32:39.534Z',
2529
+ entityType: 'project-item',
2530
+ id: 'ocUdgjQckz-94pH8:M0fWXzUMBDrxjFcS',
2531
+ itemId: 'M0fWXzUMBDrxjFcS',
2532
+ orgId: 'cMkHW5GAD8ViOZj-',
2533
+ piNumber: 4000,
2534
+ projectId: 'ocUdgjQckz-94pH8',
2535
+ typeId: 'E4SRRsW9EWqA57ev',
2536
+ typePath: 'project-item',
2537
+ updatedById: 'Eey3ZOi8znUA85i7',
2538
+ updatedOn: '2023-02-08T18:32:39.592Z'
2539
+ },
2540
+ typeId: 'st1oc9uI2_ipArFM',
2541
+ typePath: 'assortment-item',
2542
+ updatedById: 'Eey3ZOi8znUA85i7',
2543
+ updatedOn: '2023-02-03T20:01:51.332Z'
2544
+ },
2545
+ {
2546
+ assortmentId: 'lhoTiciEDw5VOdBl',
2547
+ createdById: 'Eey3ZOi8znUA85i7',
2548
+ createdOn: '2023-02-03T20:01:51.331Z',
2549
+ entityType: 'assortment-item',
2550
+ id: 'PhKxw7iCV0I7ijfx',
2551
+ item: {
2552
+ createdById: 'Eey3ZOi8znUA85i7',
2553
+ createdOn: '2023-02-03T16:48:01.306Z',
2554
+ entityType: 'item',
2555
+ flexFormula: null,
2556
+ flexPLMTypePath: 'Product\\Pants',
2557
+ flexSequence: 159,
2558
+ id: 'VGo0fWmBBEZoghgk',
2559
+ isPrimary: true,
2560
+ itemFamilyId: 'tvCyTuL6hF3MwbjJ',
2561
+ lifecycleStage: 'development',
2562
+ name: 'Feb 3 - 2+ Option A',
2563
+ optionGroup: 'color',
2564
+ optionName: 'Option B',
2565
+ orgId: 'cMkHW5GAD8ViOZj-',
2566
+ roles: [
2567
+ 'color',
2568
+ 'option'
2569
+ ],
2570
+ typeId: 'cW7EhuRbkOU2dp18',
2571
+ typePath: 'item',
2572
+ updatedById: 'Eey3ZOi8znUA85i7',
2573
+ updatedOn: '2023-02-03T19:08:34.038Z'
2574
+ },
2575
+ itemId: 'VGo0fWmBBEZoghgk',
2576
+ orgId: 'cMkHW5GAD8ViOZj-',
2577
+ typeId: 'st1oc9uI2_ipArFM',
2578
+ typePath: 'assortment-item',
2579
+ updatedById: 'Eey3ZOi8znUA85i7',
2580
+ updatedOn: '2023-02-03T20:01:51.331Z'
2581
+ },
2582
+ {
2583
+ assortmentId: 'lhoTiciEDw5VOdBl',
2584
+ createdById: 'Eey3ZOi8znUA85i7',
2585
+ createdOn: '2023-02-03T20:01:51.331Z',
2586
+ entityType: 'assortment-item',
2587
+ id: 'feaTkYlTkC-glF3f',
2588
+ item: {
2589
+ createdById: 'Eey3ZOi8znUA85i7',
2590
+ createdOn: '2023-02-03T18:53:19.088Z',
2591
+ entityType: 'item',
2592
+ flexFormula: null,
2593
+ flexPLMTypePath: 'Product\\Pants',
2594
+ flexSequence: 161,
2595
+ id: 'VlufG94hn6llwfAt',
2596
+ isPrimary: true,
2597
+ itemFamilyId: 'rW_TVz1KKv6kUsSD',
2598
+ lifecycleStage: 'development',
2599
+ name: 'Feb 3 - 2+ Option B',
2600
+ optionGroup: 'color',
2601
+ optionName: 'Option B',
2602
+ orgId: 'cMkHW5GAD8ViOZj-',
2603
+ roles: [
2604
+ 'color',
2605
+ 'option'
2606
+ ],
2607
+ typeId: 'cW7EhuRbkOU2dp18',
2608
+ typePath: 'item',
2609
+ updatedById: 'Eey3ZOi8znUA85i7',
2610
+ updatedOn: '2023-02-03T19:07:02.955Z'
2611
+ },
2612
+ itemId: 'VlufG94hn6llwfAt',
2613
+ orgId: 'cMkHW5GAD8ViOZj-',
2614
+ typeId: 'st1oc9uI2_ipArFM',
2615
+ typePath: 'assortment-item',
2616
+ updatedById: 'Eey3ZOi8znUA85i7',
2617
+ updatedOn: '2023-02-03T20:01:51.331Z'
2618
+ },
2619
+ {
2620
+ assortmentId: 'lhoTiciEDw5VOdBl',
2621
+ createdById: 'Eey3ZOi8znUA85i7',
2622
+ createdOn: '2023-02-03T20:01:51.331Z',
2623
+ entityType: 'assortment-item',
2624
+ id: 'opfnVQz4_Ib81AqC',
2625
+ item: {
2626
+ ChrisProp: 'd',
2627
+ createdById: 'Eey3ZOi8znUA85i7',
2628
+ createdOn: '2023-02-03T16:13:44.933Z',
2629
+ entityType: 'item',
2630
+ flexFormula: null,
2631
+ flexPLMTypePath: 'Product\\Pants',
2632
+ flexSequence: 153,
2633
+ id: 'YbHzb8C4zsokFtWC',
2634
+ itemFamilyId: 'YbHzb8C4zsokFtWC',
2635
+ lifecycleStage: 'development',
2636
+ name: 'Feb 3 - No Option D',
2637
+ orgId: 'cMkHW5GAD8ViOZj-',
2638
+ roles: [
2639
+ 'family'
2640
+ ],
2641
+ typeId: 'cW7EhuRbkOU2dp18',
2642
+ typePath: 'item',
2643
+ updatedById: 'Eey3ZOi8znUA85i7',
2644
+ updatedOn: '2023-02-03T16:16:04.058Z'
2645
+ },
2646
+ itemId: 'YbHzb8C4zsokFtWC',
2647
+ orgId: 'cMkHW5GAD8ViOZj-',
2648
+ typeId: 'st1oc9uI2_ipArFM',
2649
+ typePath: 'assortment-item',
2650
+ updatedById: 'Eey3ZOi8znUA85i7',
2651
+ updatedOn: '2023-02-03T20:01:51.331Z'
2652
+ },
2653
+ {
2654
+ assortmentId: 'lhoTiciEDw5VOdBl',
2655
+ createdById: 'Eey3ZOi8znUA85i7',
2656
+ createdOn: '2023-02-08T19:07:11.623Z',
2657
+ entityType: 'assortment-item',
2658
+ id: 'oqf9aHOWUd1fa2pp',
2659
+ item: {
2660
+ createdById: 'Eey3ZOi8znUA85i7',
2661
+ createdOn: '2023-02-08T18:31:13.248Z',
2662
+ entityType: 'item',
2663
+ flexFormula: null,
2664
+ flexPLMTypePath: 'Product\\Pants',
2665
+ flexSequence: 157,
2666
+ id: 'd0a2gOK_wP06VeT3',
2667
+ isPrimary: true,
2668
+ itemFamilyId: '_YbANkSl6AWiLPaC',
2669
+ lifecycleStage: 'development',
2670
+ name: 'Feb 3 - 1 Option D',
2671
+ optionGroup: 'color',
2672
+ optionName: 'Option B',
2673
+ orgId: 'cMkHW5GAD8ViOZj-',
2674
+ roles: [
2675
+ 'color',
2676
+ 'option'
2677
+ ],
2678
+ typeId: 'cW7EhuRbkOU2dp18',
2679
+ typePath: 'item',
2680
+ updatedById: 'Eey3ZOi8znUA85i7',
2681
+ updatedOn: '2023-02-08T18:31:19.035Z'
2682
+ },
2683
+ itemId: 'd0a2gOK_wP06VeT3',
2684
+ orgId: 'cMkHW5GAD8ViOZj-',
2685
+ typeId: 'st1oc9uI2_ipArFM',
2686
+ typePath: 'assortment-item',
2687
+ updatedById: 'Eey3ZOi8znUA85i7',
2688
+ updatedOn: '2023-02-08T19:07:11.623Z'
2689
+ },
2690
+ {
2691
+ assortmentId: 'lhoTiciEDw5VOdBl',
2692
+ createdById: 'Eey3ZOi8znUA85i7',
2693
+ createdOn: '2023-02-03T20:01:51.331Z',
2694
+ entityType: 'assortment-item',
2695
+ id: 'qsVx_kDSQNh-uRdQ',
2696
+ item: {
2697
+ createdById: 'Eey3ZOi8znUA85i7',
2698
+ createdOn: '2023-02-03T16:25:39.689Z',
2699
+ entityType: 'item',
2700
+ flexFormula: null,
2701
+ flexPLMTypePath: 'Product\\Pants',
2702
+ flexSequence: 154,
2703
+ id: 'jFAp5SmYqhXoX-ZI',
2704
+ isPrimary: true,
2705
+ itemFamilyId: 'U9QryfGVOYMAkBP_',
2706
+ lifecycleStage: 'development',
2707
+ name: 'Feb 3 - 1 Option A',
2708
+ optionGroup: 'color',
2709
+ optionName: 'Option A',
2710
+ orgId: 'cMkHW5GAD8ViOZj-',
2711
+ roles: [
2712
+ 'color',
2713
+ 'option'
2714
+ ],
2715
+ typeId: 'cW7EhuRbkOU2dp18',
2716
+ typePath: 'item',
2717
+ updatedById: 'Eey3ZOi8znUA85i7',
2718
+ updatedOn: '2023-02-03T16:26:20.797Z'
2719
+ },
2720
+ itemId: 'jFAp5SmYqhXoX-ZI',
2721
+ orgId: 'cMkHW5GAD8ViOZj-',
2722
+ typeId: 'st1oc9uI2_ipArFM',
2723
+ typePath: 'assortment-item',
2724
+ updatedById: 'Eey3ZOi8znUA85i7',
2725
+ updatedOn: '2023-02-03T20:01:51.331Z'
2726
+ },
2727
+ {
2728
+ assortmentId: 'lhoTiciEDw5VOdBl',
2729
+ createdById: 'Eey3ZOi8znUA85i7',
2730
+ createdOn: '2023-02-03T20:01:51.331Z',
2731
+ entityType: 'assortment-item',
2732
+ id: '6k7c3Wg18pSKwwqL',
2733
+ item: {
2734
+ createdById: 'Eey3ZOi8znUA85i7',
2735
+ createdOn: '2023-02-03T16:47:15.520Z',
2736
+ entityType: 'item',
2737
+ flexFormula: null,
2738
+ flexPLMTypePath: 'Product\\Pants',
2739
+ flexSequence: 159,
2740
+ id: 'jezonPsoRUlA52iz',
2741
+ isPrimary: true,
2742
+ itemFamilyId: 'tvCyTuL6hF3MwbjJ',
2743
+ lifecycleStage: 'development',
2744
+ name: 'Feb 3 - 2+ Option A',
2745
+ optionGroup: 'color',
2746
+ optionName: 'Option A',
2747
+ orgId: 'cMkHW5GAD8ViOZj-',
2748
+ roles: [
2749
+ 'color',
2750
+ 'option'
2751
+ ],
2752
+ typeId: 'cW7EhuRbkOU2dp18',
2753
+ typePath: 'item',
2754
+ updatedById: 'Eey3ZOi8znUA85i7',
2755
+ updatedOn: '2023-02-03T19:08:34.042Z'
2756
+ },
2757
+ itemId: 'jezonPsoRUlA52iz',
2758
+ orgId: 'cMkHW5GAD8ViOZj-',
2759
+ typeId: 'st1oc9uI2_ipArFM',
2760
+ typePath: 'assortment-item',
2761
+ updatedById: 'Eey3ZOi8znUA85i7',
2762
+ updatedOn: '2023-02-03T20:01:51.331Z'
2763
+ },
2764
+ {
2765
+ assortmentId: 'lhoTiciEDw5VOdBl',
2766
+ createdById: 'Eey3ZOi8znUA85i7',
2767
+ createdOn: '2023-02-08T19:07:11.623Z',
2768
+ entityType: 'assortment-item',
2769
+ id: 'FE7RBI-t6v4cmzsK',
2770
+ item: {
2771
+ createdById: 'Eey3ZOi8znUA85i7',
2772
+ createdOn: '2023-02-03T18:53:55.018Z',
2773
+ entityType: 'item',
2774
+ flexFormula: null,
2775
+ flexPLMTypePath: 'Product\\Pants',
2776
+ flexSequence: 162,
2777
+ id: 'jfWMlv16mTAEKJ7W',
2778
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
2779
+ lifecycleStage: 'development',
2780
+ name: 'Feb 3 - 2+ Option C',
2781
+ orgId: 'cMkHW5GAD8ViOZj-',
2782
+ roles: [
2783
+ 'family'
2784
+ ],
2785
+ typeId: 'cW7EhuRbkOU2dp18',
2786
+ typePath: 'item',
2787
+ updatedById: 'Eey3ZOi8znUA85i7',
2788
+ updatedOn: '2023-02-03T19:07:17.496Z'
2789
+ },
2790
+ itemId: 'jfWMlv16mTAEKJ7W',
2791
+ orgId: 'cMkHW5GAD8ViOZj-',
2792
+ typeId: 'st1oc9uI2_ipArFM',
2793
+ typePath: 'assortment-item',
2794
+ updatedById: 'Eey3ZOi8znUA85i7',
2795
+ updatedOn: '2023-02-08T19:07:11.623Z'
2796
+ },
2797
+ {
2798
+ assortmentId: 'lhoTiciEDw5VOdBl',
2799
+ createdById: 'Eey3ZOi8znUA85i7',
2800
+ createdOn: '2023-02-03T20:01:51.331Z',
2801
+ entityType: 'assortment-item',
2802
+ id: 'GCX7-fWr3qMZ-_oX',
2803
+ item: {
2804
+ ChrisProp: 'a',
2805
+ createdById: 'Eey3ZOi8znUA85i7',
2806
+ createdOn: '2023-02-03T16:11:19.510Z',
2807
+ entityType: 'item',
2808
+ flexFormula: null,
2809
+ flexPLMTypePath: 'Product\\Pants',
2810
+ flexSequence: 149,
2811
+ id: 'kh1Rtb7kie7Vk5vo',
2812
+ itemFamilyId: 'kh1Rtb7kie7Vk5vo',
2813
+ lifecycleStage: 'development',
2814
+ name: 'Feb 3 - No Option -A',
2815
+ orgId: 'cMkHW5GAD8ViOZj-',
2816
+ roles: [
2817
+ 'family'
2818
+ ],
2819
+ typeId: 'cW7EhuRbkOU2dp18',
2820
+ typePath: 'item',
2821
+ updatedById: 'Eey3ZOi8znUA85i7',
2822
+ updatedOn: '2023-02-03T16:14:53.024Z'
2823
+ },
2824
+ itemId: 'kh1Rtb7kie7Vk5vo',
2825
+ orgId: 'cMkHW5GAD8ViOZj-',
2826
+ typeId: 'st1oc9uI2_ipArFM',
2827
+ typePath: 'assortment-item',
2828
+ updatedById: 'Eey3ZOi8znUA85i7',
2829
+ updatedOn: '2023-02-03T20:01:51.331Z'
2830
+ },
2831
+ {
2832
+ assortmentId: 'lhoTiciEDw5VOdBl',
2833
+ createdById: 'Eey3ZOi8znUA85i7',
2834
+ createdOn: '2023-02-03T20:01:51.332Z',
2835
+ entityType: 'assortment-item',
2836
+ id: 'JVs-SXEQeYtT_5sJ',
2837
+ item: {
2838
+ createdById: 'Eey3ZOi8znUA85i7',
2839
+ createdOn: '2023-02-03T18:55:13.541Z',
2840
+ entityType: 'item',
2841
+ flexFormula: null,
2842
+ flexPLMTypePath: 'Product\\Pants',
2843
+ flexSequence: 164,
2844
+ id: 'tBEFlAr9QXauCU-B',
2845
+ isPrimary: true,
2846
+ itemFamilyId: 'yzBFCl-aLXvKa5sh',
2847
+ lifecycleStage: 'development',
2848
+ name: 'Feb 3 - 2+ Option E',
2849
+ optionGroup: 'color',
2850
+ optionName: 'Option A',
2851
+ orgId: 'cMkHW5GAD8ViOZj-',
2852
+ roles: [
2853
+ 'color',
2854
+ 'option'
2855
+ ],
2856
+ typeId: 'cW7EhuRbkOU2dp18',
2857
+ typePath: 'item',
2858
+ updatedById: 'Eey3ZOi8znUA85i7',
2859
+ updatedOn: '2023-02-03T19:09:30.424Z'
2860
+ },
2861
+ itemId: 'tBEFlAr9QXauCU-B',
2862
+ orgId: 'cMkHW5GAD8ViOZj-',
2863
+ projectItem: {
2864
+ createdById: 'Eey3ZOi8znUA85i7',
2865
+ createdOn: '2023-02-08T18:32:35.305Z',
2866
+ entityType: 'project-item',
2867
+ id: 'ocUdgjQckz-94pH8:tBEFlAr9QXauCU-B',
2868
+ itemId: 'tBEFlAr9QXauCU-B',
2869
+ orgId: 'cMkHW5GAD8ViOZj-',
2870
+ piNumber: 3000,
2871
+ projectId: 'ocUdgjQckz-94pH8',
2872
+ typeId: 'E4SRRsW9EWqA57ev',
2873
+ typePath: 'project-item',
2874
+ updatedById: 'Eey3ZOi8znUA85i7',
2875
+ updatedOn: '2023-02-08T18:32:35.364Z'
2876
+ },
2877
+ typeId: 'st1oc9uI2_ipArFM',
2878
+ typePath: 'assortment-item',
2879
+ updatedById: 'Eey3ZOi8znUA85i7',
2880
+ updatedOn: '2023-02-03T20:01:51.332Z'
2881
+ },
2882
+ {
2883
+ assortmentId: 'lhoTiciEDw5VOdBl',
2884
+ createdById: 'Eey3ZOi8znUA85i7',
2885
+ createdOn: '2023-02-08T19:07:11.623Z',
2886
+ entityType: 'assortment-item',
2887
+ id: 'kOjrgCck7EkU47y7',
2888
+ item: {
2889
+ createdById: 'Eey3ZOi8znUA85i7',
2890
+ createdOn: '2023-02-08T19:01:55.023Z',
2891
+ entityType: 'item',
2892
+ flexFormula: null,
2893
+ flexPLMTypePath: 'Product\\Pants',
2894
+ flexSequence: 158,
2895
+ id: 'xsf5pNlSdPRvtP1h',
2896
+ isPrimary: true,
2897
+ itemFamilyId: 'tFnQr83XEJ_Ly0yi',
2898
+ lifecycleStage: 'development',
2899
+ name: 'Feb 3 - 1 Option E',
2900
+ optionGroup: 'color',
2901
+ optionName: 'Option B',
2902
+ orgId: 'cMkHW5GAD8ViOZj-',
2903
+ roles: [
2904
+ 'color',
2905
+ 'option'
2906
+ ],
2907
+ typeId: 'cW7EhuRbkOU2dp18',
2908
+ typePath: 'item',
2909
+ updatedById: 'Eey3ZOi8znUA85i7',
2910
+ updatedOn: '2023-02-08T19:02:00.107Z'
2911
+ },
2912
+ itemId: 'xsf5pNlSdPRvtP1h',
2913
+ orgId: 'cMkHW5GAD8ViOZj-',
2914
+ typeId: 'st1oc9uI2_ipArFM',
2915
+ typePath: 'assortment-item',
2916
+ updatedById: 'Eey3ZOi8znUA85i7',
2917
+ updatedOn: '2023-02-08T19:07:11.623Z'
2918
+ }
2919
+ ],
2920
+ assortmentType: 'PLAN',
2921
+ createdById: 'Eey3ZOi8znUA85i7',
2922
+ createdForReference: 'plan:1YVekdG4UYBUh7mb',
2923
+ createdOn: '2023-02-03T15:37:16.203Z',
2924
+ entityType: 'assortment',
2925
+ id: 'lhoTiciEDw5VOdBl',
2926
+ name: 'Vibe IQ Fall 2003',
2927
+ orgId: 'cMkHW5GAD8ViOZj-',
2928
+ rootWorkspaceId: '6Z4Y6D2Lm1ai5LHK',
2929
+ typeId: 'fDbk-3fUhCDDBsvd',
2930
+ typePath: 'assortment',
2931
+ updatedById: 'Eey3ZOi8znUA85i7',
2932
+ updatedOn: '2023-02-03T16:00:55.142Z',
2933
+ workspaceId: '6Z4Y6D2Lm1ai5LHK'
2934
+ };
2935
+ export const fall_2003_deleteChanges_run2 = [
2936
+ {
2937
+ id: '6eeYhW0b6QbZz3BY',
2938
+ itemId: '6eeYhW0b6QbZz3BY',
2939
+ item: {
2940
+ createdById: 'Eey3ZOi8znUA85i7',
2941
+ createdOn: '2023-02-03T18:54:55.996Z',
2942
+ entityType: 'item',
2943
+ flexFormula: null,
2944
+ flexPLMTypePath: 'Product\\Pants',
2945
+ flexSequence: 163,
2946
+ id: '6eeYhW0b6QbZz3BY',
2947
+ isPrimary: true,
2948
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
2949
+ lifecycleStage: 'development',
2950
+ name: 'Feb 3 - 2+ Option D',
2951
+ optionGroup: 'color',
2952
+ optionName: 'Option B',
2953
+ orgId: 'cMkHW5GAD8ViOZj-',
2954
+ roles: [
2955
+ 'color',
2956
+ 'option'
2957
+ ],
2958
+ typeId: 'cW7EhuRbkOU2dp18',
2959
+ typePath: 'item',
2960
+ updatedById: 'Eey3ZOi8znUA85i7',
2961
+ updatedOn: '2023-02-03T19:09:13.876Z'
2962
+ }
2963
+ },
2964
+ {
2965
+ id: '6zHmYEG7asMtA-1W',
2966
+ itemId: '6zHmYEG7asMtA-1W',
2967
+ item: {
2968
+ createdById: 'Eey3ZOi8znUA85i7',
2969
+ createdOn: '2023-02-03T18:52:21.846Z',
2970
+ entityType: 'item',
2971
+ flexFormula: null,
2972
+ flexPLMTypePath: 'Product\\Pants',
2973
+ flexSequence: 161,
2974
+ id: '6zHmYEG7asMtA-1W',
2975
+ isPrimary: true,
2976
+ itemFamilyId: 'rW_TVz1KKv6kUsSD',
2977
+ lifecycleStage: 'development',
2978
+ name: 'Feb 3 - 2+ Option B',
2979
+ optionGroup: 'color',
2980
+ optionName: 'Option A',
2981
+ orgId: 'cMkHW5GAD8ViOZj-',
2982
+ roles: [
2983
+ 'color',
2984
+ 'option'
2985
+ ],
2986
+ typeId: 'cW7EhuRbkOU2dp18',
2987
+ typePath: 'item',
2988
+ updatedById: 'Eey3ZOi8znUA85i7',
2989
+ updatedOn: '2023-02-03T19:07:00.802Z'
2990
+ }
2991
+ },
2992
+ {
2993
+ id: 'C6TFfaV8q6Cd3qyY',
2994
+ itemId: 'C6TFfaV8q6Cd3qyY',
2995
+ item: {
2996
+ createdById: 'Eey3ZOi8znUA85i7',
2997
+ createdOn: '2023-02-03T18:57:32.989Z',
2998
+ entityType: 'item',
2999
+ flexFormula: null,
3000
+ flexPLMTypePath: 'Product\\Pants',
3001
+ flexSequence: 167,
3002
+ id: 'C6TFfaV8q6Cd3qyY',
3003
+ isPrimary: true,
3004
+ itemFamilyId: 'jMNq_fTfGqfz-M5V',
3005
+ lifecycleStage: 'concept',
3006
+ name: 'Feb 3 - Concept - 1 Option A',
3007
+ optionGroup: 'color',
3008
+ optionName: 'Option A',
3009
+ orgId: 'cMkHW5GAD8ViOZj-',
3010
+ roles: [
3011
+ 'color',
3012
+ 'option'
3013
+ ],
3014
+ typeId: 'cW7EhuRbkOU2dp18',
3015
+ typePath: 'item',
3016
+ updatedById: 'Eey3ZOi8znUA85i7',
3017
+ updatedOn: '2023-02-03T18:57:47.714Z'
3018
+ }
3019
+ },
3020
+ {
3021
+ id: 'JiaHIQjcieKTKVTL',
3022
+ itemId: 'JiaHIQjcieKTKVTL',
3023
+ item: {
3024
+ createdById: 'Eey3ZOi8znUA85i7',
3025
+ createdOn: '2023-02-03T18:54:40.332Z',
3026
+ entityType: 'item',
3027
+ flexFormula: null,
3028
+ flexPLMTypePath: 'Product\\Pants',
3029
+ flexSequence: 163,
3030
+ id: 'JiaHIQjcieKTKVTL',
3031
+ isPrimary: true,
3032
+ itemFamilyId: 'hibYT8JJpLn9ye5V',
3033
+ lifecycleStage: 'development',
3034
+ name: 'Feb 3 - 2+ Option D',
3035
+ optionGroup: 'color',
3036
+ optionName: 'Option A',
3037
+ orgId: 'cMkHW5GAD8ViOZj-',
3038
+ roles: [
3039
+ 'color',
3040
+ 'option'
3041
+ ],
3042
+ typeId: 'cW7EhuRbkOU2dp18',
3043
+ typePath: 'item',
3044
+ updatedById: 'Eey3ZOi8znUA85i7',
3045
+ updatedOn: '2023-02-03T19:09:09.980Z'
3046
+ }
3047
+ },
3048
+ {
3049
+ id: 'TI8GBo0qanxzKVEr',
3050
+ itemId: 'TI8GBo0qanxzKVEr',
3051
+ item: {
3052
+ createdById: 'Eey3ZOi8znUA85i7',
3053
+ createdOn: '2023-02-03T16:26:00.962Z',
3054
+ entityType: 'item',
3055
+ flexFormula: null,
3056
+ flexPLMTypePath: 'Product\\Pants',
3057
+ flexSequence: 157,
3058
+ id: 'TI8GBo0qanxzKVEr',
3059
+ isPrimary: true,
3060
+ itemFamilyId: '_YbANkSl6AWiLPaC',
3061
+ lifecycleStage: 'development',
3062
+ name: 'Feb 3 - 1 Option D',
3063
+ optionGroup: 'color',
3064
+ optionName: 'Option A',
3065
+ orgId: 'cMkHW5GAD8ViOZj-',
3066
+ roles: [
3067
+ 'color',
3068
+ 'option'
3069
+ ],
3070
+ typeId: 'cW7EhuRbkOU2dp18',
3071
+ typePath: 'item',
3072
+ updatedById: 'Eey3ZOi8znUA85i7',
3073
+ updatedOn: '2023-02-03T16:27:11.871Z'
3074
+ }
3075
+ },
3076
+ {
3077
+ id: 'U7zzfu5DjXTy-oz5',
3078
+ itemId: 'U7zzfu5DjXTy-oz5',
3079
+ item: {
3080
+ createdById: 'Eey3ZOi8znUA85i7',
3081
+ createdOn: '2023-02-03T18:56:56.805Z',
3082
+ entityType: 'item',
3083
+ flexFormula: null,
3084
+ flexPLMTypePath: 'Product\\Pants',
3085
+ flexSequence: 166,
3086
+ id: 'U7zzfu5DjXTy-oz5',
3087
+ itemFamilyId: 'U7zzfu5DjXTy-oz5',
3088
+ lifecycleStage: 'concept',
3089
+ name: 'Feb 3 -Concept - No Option A',
3090
+ orgId: 'cMkHW5GAD8ViOZj-',
3091
+ roles: [
3092
+ 'family'
3093
+ ],
3094
+ typeId: 'cW7EhuRbkOU2dp18',
3095
+ typePath: 'item',
3096
+ updatedById: 'Eey3ZOi8znUA85i7',
3097
+ updatedOn: '2023-02-03T18:58:00.795Z'
3098
+ }
3099
+ },
3100
+ {
3101
+ id: 'UrFiA2VgBudniXfZ',
3102
+ itemId: 'UrFiA2VgBudniXfZ',
3103
+ item: {
3104
+ createdById: 'Eey3ZOi8znUA85i7',
3105
+ createdOn: '2023-02-03T16:26:09.985Z',
3106
+ entityType: 'item',
3107
+ flexFormula: null,
3108
+ flexPLMTypePath: 'Product\\Pants',
3109
+ flexSequence: 158,
3110
+ id: 'UrFiA2VgBudniXfZ',
3111
+ isPrimary: true,
3112
+ itemFamilyId: 'tFnQr83XEJ_Ly0yi',
3113
+ lifecycleStage: 'development',
3114
+ name: 'Feb 3 - 1 Option E',
3115
+ optionGroup: 'color',
3116
+ optionName: 'Option A',
3117
+ orgId: 'cMkHW5GAD8ViOZj-',
3118
+ roles: [
3119
+ 'color',
3120
+ 'option'
3121
+ ],
3122
+ typeId: 'cW7EhuRbkOU2dp18',
3123
+ typePath: 'item',
3124
+ updatedById: 'Eey3ZOi8znUA85i7',
3125
+ updatedOn: '2023-02-03T16:27:25.685Z'
3126
+ }
3127
+ },
3128
+ {
3129
+ id: 'eZL2ChJRBlvbu3yG',
3130
+ itemId: 'eZL2ChJRBlvbu3yG',
3131
+ item: {
3132
+ createdById: 'Eey3ZOi8znUA85i7',
3133
+ createdOn: '2023-02-03T16:25:49.434Z',
3134
+ entityType: 'item',
3135
+ flexFormula: null,
3136
+ flexPLMTypePath: 'Product\\Pants',
3137
+ flexSequence: 156,
3138
+ id: 'eZL2ChJRBlvbu3yG',
3139
+ isPrimary: true,
3140
+ itemFamilyId: 'JEY86MOuRFv7f9OY',
3141
+ lifecycleStage: 'development',
3142
+ name: 'Feb 3 - 1 Option C',
3143
+ optionGroup: 'color',
3144
+ optionName: 'Option A',
3145
+ orgId: 'cMkHW5GAD8ViOZj-',
3146
+ roles: [
3147
+ 'color',
3148
+ 'option'
3149
+ ],
3150
+ sentToPLM: true,
3151
+ typeId: 'cW7EhuRbkOU2dp18',
3152
+ typePath: 'item',
3153
+ updatedById: 'Eey3ZOi8znUA85i7',
3154
+ updatedOn: '2023-02-03T16:26:53.050Z'
3155
+ }
3156
+ },
3157
+ {
3158
+ id: 'h19Bz1NBawzWHXVJ',
3159
+ itemId: 'h19Bz1NBawzWHXVJ',
3160
+ item: {
3161
+ ChrisProp: 'b',
3162
+ createdById: 'Eey3ZOi8znUA85i7',
3163
+ createdOn: '2023-02-03T16:11:58.439Z',
3164
+ entityType: 'item',
3165
+ flexFormula: null,
3166
+ flexPLMTypePath: 'Product\\Pants',
3167
+ flexSequence: 151,
3168
+ id: 'h19Bz1NBawzWHXVJ',
3169
+ itemFamilyId: 'h19Bz1NBawzWHXVJ',
3170
+ lifecycleStage: 'development',
3171
+ name: 'Feb 3 - No Option B',
3172
+ orgId: 'cMkHW5GAD8ViOZj-',
3173
+ roles: [
3174
+ 'family'
3175
+ ],
3176
+ typeId: 'cW7EhuRbkOU2dp18',
3177
+ typePath: 'item',
3178
+ updatedById: 'Eey3ZOi8znUA85i7',
3179
+ updatedOn: '2023-02-03T16:16:22.634Z'
3180
+ }
3181
+ },
3182
+ {
3183
+ id: 'tc9HxACZqjyXfs0q',
3184
+ itemId: 'tc9HxACZqjyXfs0q',
3185
+ item: {
3186
+ createdById: 'Eey3ZOi8znUA85i7',
3187
+ createdOn: '2023-02-03T18:54:18.998Z',
3188
+ entityType: 'item',
3189
+ flexFormula: null,
3190
+ flexPLMTypePath: 'Product\\Pants',
3191
+ flexSequence: 162,
3192
+ id: 'tc9HxACZqjyXfs0q',
3193
+ isPrimary: true,
3194
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
3195
+ lifecycleStage: 'development',
3196
+ name: 'Feb 3 - 2+ Option C',
3197
+ optionGroup: 'color',
3198
+ optionName: 'Option B',
3199
+ orgId: 'cMkHW5GAD8ViOZj-',
3200
+ roles: [
3201
+ 'color',
3202
+ 'option'
3203
+ ],
3204
+ typeId: 'cW7EhuRbkOU2dp18',
3205
+ typePath: 'item',
3206
+ updatedById: 'Eey3ZOi8znUA85i7',
3207
+ updatedOn: '2023-02-03T19:07:27.506Z'
3208
+ }
3209
+ },
3210
+ {
3211
+ id: 'yLhrIHYaP7B4nlkh',
3212
+ itemId: 'yLhrIHYaP7B4nlkh',
3213
+ item: {
3214
+ createdById: 'Eey3ZOi8znUA85i7',
3215
+ createdOn: '2023-02-03T16:25:44.502Z',
3216
+ entityType: 'item',
3217
+ flexFormula: null,
3218
+ flexPLMTypePath: 'Product\\Pants',
3219
+ flexSequence: 155,
3220
+ id: 'yLhrIHYaP7B4nlkh',
3221
+ isPrimary: true,
3222
+ itemFamilyId: 'EejAxj-KK_GGr5Kh',
3223
+ lifecycleStage: 'development',
3224
+ name: 'Feb 3 - 1 Option B',
3225
+ optionGroup: 'color',
3226
+ optionName: 'Option A',
3227
+ orgId: 'cMkHW5GAD8ViOZj-',
3228
+ roles: [
3229
+ 'color',
3230
+ 'option'
3231
+ ],
3232
+ sentToPLM: true,
3233
+ typeId: 'cW7EhuRbkOU2dp18',
3234
+ typePath: 'item',
3235
+ updatedById: 'Eey3ZOi8znUA85i7',
3236
+ updatedOn: '2023-02-03T16:26:39.642Z'
3237
+ }
3238
+ },
3239
+ {
3240
+ id: 'zGF3wg9NvI-bBRmP',
3241
+ itemId: 'zGF3wg9NvI-bBRmP',
3242
+ item: {
3243
+ createdById: 'Eey3ZOi8znUA85i7',
3244
+ createdOn: '2023-02-03T18:54:02.450Z',
3245
+ entityType: 'item',
3246
+ flexFormula: null,
3247
+ flexPLMTypePath: 'Product\\Pants',
3248
+ flexSequence: 162,
3249
+ id: 'zGF3wg9NvI-bBRmP',
3250
+ isPrimary: true,
3251
+ itemFamilyId: 'jfWMlv16mTAEKJ7W',
3252
+ lifecycleStage: 'development',
3253
+ name: 'Feb 3 - 2+ Option C',
3254
+ optionGroup: 'color',
3255
+ optionName: 'Option A',
3256
+ orgId: 'cMkHW5GAD8ViOZj-',
3257
+ roles: [
3258
+ 'color',
3259
+ 'option'
3260
+ ],
3261
+ typeId: 'cW7EhuRbkOU2dp18',
3262
+ typePath: 'item',
3263
+ updatedById: 'Eey3ZOi8znUA85i7',
3264
+ updatedOn: '2023-02-03T19:07:22.436Z'
3265
+ }
3266
+ }
3267
+ ];
3268
+ export const fall_2003_fedMapping = [
3269
+ {
3270
+ reference: 'hibYT8JJpLn9ye5V',
3271
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:361454'
3272
+ },
3273
+ {
3274
+ reference: '6eeYhW0b6QbZz3BY',
3275
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361552'
3276
+ },
3277
+ {
3278
+ reference: 'JiaHIQjcieKTKVTL',
3279
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361519'
3280
+ },
3281
+ {
3282
+ reference: 'rW_TVz1KKv6kUsSD',
3283
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360928'
3284
+ },
3285
+ {
3286
+ reference: '6zHmYEG7asMtA-1W',
3287
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:360993'
3288
+ },
3289
+ {
3290
+ reference: 'VlufG94hn6llwfAt',
3291
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361026'
3292
+ },
3293
+ {
3294
+ reference: 'hZGu3WAz1fbwLPGW',
3295
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:361715'
3296
+ },
3297
+ {
3298
+ reference: 'BD4ZjRf5DVimbU3N',
3299
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361812'
3300
+ },
3301
+ {
3302
+ reference: 'M0fWXzUMBDrxjFcS',
3303
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361779'
3304
+ },
3305
+ {
3306
+ reference: 'yzBFCl-aLXvKa5sh',
3307
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:361585'
3308
+ },
3309
+ {
3310
+ reference: 'GNH-vuzZeXFQmtMR',
3311
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361682'
3312
+ },
3313
+ {
3314
+ reference: 'tBEFlAr9QXauCU-B',
3315
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361649'
3316
+ },
3317
+ {
3318
+ reference: '_YbANkSl6AWiLPaC',
3319
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360627'
3320
+ },
3321
+ {
3322
+ reference: 'TI8GBo0qanxzKVEr',
3323
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:360693'
3324
+ },
3325
+ {
3326
+ reference: 'tFnQr83XEJ_Ly0yi',
3327
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360726'
3328
+ },
3329
+ {
3330
+ reference: 'UrFiA2VgBudniXfZ',
3331
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:360790'
3332
+ },
3333
+ {
3334
+ reference: 'tvCyTuL6hF3MwbjJ',
3335
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360828'
3336
+ },
3337
+ {
3338
+ reference: 'VGo0fWmBBEZoghgk',
3339
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:360895'
3340
+ },
3341
+ {
3342
+ reference: 'jezonPsoRUlA52iz',
3343
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361421'
3344
+ },
3345
+ {
3346
+ reference: 'YbHzb8C4zsokFtWC',
3347
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360207'
3348
+ },
3349
+ {
3350
+ reference: 'JEY86MOuRFv7f9OY',
3351
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360529'
3352
+ },
3353
+ {
3354
+ reference: 'eZL2ChJRBlvbu3yG',
3355
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:360594'
3356
+ },
3357
+ {
3358
+ reference: 'h19Bz1NBawzWHXVJ',
3359
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360271'
3360
+ },
3361
+ {
3362
+ reference: 'U9QryfGVOYMAkBP_',
3363
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360335'
3364
+ },
3365
+ {
3366
+ reference: 'jFAp5SmYqhXoX-ZI',
3367
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:360399'
3368
+ },
3369
+ {
3370
+ reference: 'kh1Rtb7kie7Vk5vo',
3371
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360079'
3372
+ },
3373
+ {
3374
+ reference: 'slUFr1iMSYM2ktCX',
3375
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360143'
3376
+ },
3377
+ {
3378
+ reference: 'jfWMlv16mTAEKJ7W',
3379
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:361059'
3380
+ },
3381
+ {
3382
+ reference: 'tc9HxACZqjyXfs0q',
3383
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361156'
3384
+ },
3385
+ {
3386
+ reference: 'zGF3wg9NvI-bBRmP',
3387
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:361123'
3388
+ },
3389
+ {
3390
+ reference: 'EejAxj-KK_GGr5Kh',
3391
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:360432'
3392
+ },
3393
+ {
3394
+ reference: 'yLhrIHYaP7B4nlkh',
3395
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:360496'
3396
+ },
3397
+ {
3398
+ reference: 'yD-3KrBzAYRRsh9v',
3399
+ mappedReference: 'VR:com.lcs.wc.product.LCSProduct:365627'
3400
+ },
3401
+ {
3402
+ reference: 'CNOovV5RFWGL6FMT',
3403
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:365804'
3404
+ },
3405
+ {
3406
+ reference: '-vqCrFzKnXUPyWjx',
3407
+ mappedReference: 'VR:com.lcs.wc.product.LCSSKU:372509'
3408
+ }
3409
+ ];
3410
+ //SYHfQzYWlfXDqK7r - 4 adds
3411
+ //JreGRNvoJ3FsoRZI - 1 delete
3412
+ //NaPUhAdEzKB-5tQ3 - no changes
3413
+ //CHGKSCT358qyh1Nu - 1 delete
3414
+ //H4L4dHziO6WZRIwa - re-add from JreGRNvoJ3FsoRZI
3415
+ export const apc_2bOWR2j9R0QThDVu_delete_history = [
3416
+ {
3417
+ adds: 4,
3418
+ assortmentBaseline: {
3419
+ assortmentItems: [
3420
+ {
3421
+ assortItemString: 'as 2-2',
3422
+ entityType: 'assortment-item',
3423
+ familyProjectItem: {
3424
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
3425
+ itemId: 'fXImyoA5JqUvNWHY',
3426
+ projectId: 'ocUdgjQckz-94pH8',
3427
+ roles: [
3428
+ 'family'
3429
+ ]
3430
+ },
3431
+ id: 'MpmOo5Vgpi_Cdimb',
3432
+ item: {
3433
+ id: 'SfUAZy_Hj631h2Kg',
3434
+ itemFamily: {
3435
+ id: 'fXImyoA5JqUvNWHY',
3436
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3437
+ name: 'd-test-2',
3438
+ roles: [
3439
+ 'family'
3440
+ ]
3441
+ },
3442
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3443
+ itemNumber: 212,
3444
+ name: 'd-test-2',
3445
+ optionGroup: 'color',
3446
+ optionName: 'option 2',
3447
+ roles: [
3448
+ 'color',
3449
+ 'option'
3450
+ ]
3451
+ },
3452
+ itemId: 'SfUAZy_Hj631h2Kg',
3453
+ projectItem: {
3454
+ id: 'ocUdgjQckz-94pH8:SfUAZy_Hj631h2Kg',
3455
+ itemId: 'SfUAZy_Hj631h2Kg',
3456
+ piNumber: 4,
3457
+ piOptionNumber: 4,
3458
+ piString: 'pi 2-2',
3459
+ projectId: 'ocUdgjQckz-94pH8',
3460
+ roles: [
3461
+ 'color',
3462
+ 'option'
3463
+ ]
3464
+ }
3465
+ },
3466
+ {
3467
+ assortItemString: 'assort string 1',
3468
+ entityType: 'assortment-item',
3469
+ familyProjectItem: {
3470
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
3471
+ itemId: 'jE8yyOIvpSyvIq8g',
3472
+ projectId: 'ocUdgjQckz-94pH8',
3473
+ roles: [
3474
+ 'family'
3475
+ ]
3476
+ },
3477
+ id: 'TPlkvjYGnRCvS5kI',
3478
+ item: {
3479
+ createdOn: '2023-08-04T14:28:50.388Z',
3480
+ id: 'Y_5IusFLG7S-RSi_',
3481
+ itemFamily: {
3482
+ id: 'jE8yyOIvpSyvIq8g',
3483
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3484
+ itemNumber: 207,
3485
+ name: 'd-test-1',
3486
+ roles: [
3487
+ 'family'
3488
+ ]
3489
+ },
3490
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3491
+ itemNumber: 208,
3492
+ name: 'd-test-1',
3493
+ optionGroup: 'color',
3494
+ optionName: 'option 1',
3495
+ roles: [
3496
+ 'color',
3497
+ 'option'
3498
+ ]
3499
+ },
3500
+ itemId: 'Y_5IusFLG7S-RSi_',
3501
+ projectItem: {
3502
+ id: 'ocUdgjQckz-94pH8:Y_5IusFLG7S-RSi_',
3503
+ itemId: 'Y_5IusFLG7S-RSi_',
3504
+ piNumber: 1,
3505
+ piOptionNumber: 1,
3506
+ piString: 'pi string 1',
3507
+ projectId: 'ocUdgjQckz-94pH8',
3508
+ roles: [
3509
+ 'color',
3510
+ 'option'
3511
+ ]
3512
+ }
3513
+ },
3514
+ {
3515
+ assortItemString: 'as 2-1',
3516
+ entityType: 'assortment-item',
3517
+ familyProjectItem: {
3518
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
3519
+ itemId: 'fXImyoA5JqUvNWHY',
3520
+ projectId: 'ocUdgjQckz-94pH8',
3521
+ roles: [
3522
+ 'family'
3523
+ ]
3524
+ },
3525
+ id: 'REajA_xgBZhu2YJT',
3526
+ item: {
3527
+ id: 'mp9Zgcb89fMax1WW',
3528
+ itemFamily: {
3529
+ id: 'fXImyoA5JqUvNWHY',
3530
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3531
+ name: 'd-test-2',
3532
+ roles: [
3533
+ 'family'
3534
+ ]
3535
+ },
3536
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3537
+ name: 'd-test-2',
3538
+ optionGroup: 'color',
3539
+ optionName: 'option 1',
3540
+ roles: [
3541
+ 'color',
3542
+ 'option'
3543
+ ]
3544
+ },
3545
+ itemId: 'mp9Zgcb89fMax1WW',
3546
+ projectItem: {
3547
+ id: 'ocUdgjQckz-94pH8:mp9Zgcb89fMax1WW',
3548
+ itemId: 'mp9Zgcb89fMax1WW',
3549
+ piNumber: 3,
3550
+ piOptionNumber: 3,
3551
+ piString: 'pi 2-1',
3552
+ projectId: 'ocUdgjQckz-94pH8',
3553
+ roles: [
3554
+ 'color',
3555
+ 'option'
3556
+ ]
3557
+ }
3558
+ },
3559
+ {
3560
+ assortItemString: 'assort string 2',
3561
+ entityType: 'assortment-item',
3562
+ familyProjectItem: {
3563
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
3564
+ itemId: 'jE8yyOIvpSyvIq8g',
3565
+ projectId: 'ocUdgjQckz-94pH8',
3566
+ roles: [
3567
+ 'family'
3568
+ ]
3569
+ },
3570
+ id: 'im3Wa3KDqy60fF1c',
3571
+ item: {
3572
+ id: 'qNCQmTFcFxwbT-oG',
3573
+ itemFamily: {
3574
+ id: 'jE8yyOIvpSyvIq8g',
3575
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3576
+ itemNumber: 207,
3577
+ name: 'd-test-1',
3578
+ roles: [
3579
+ 'family'
3580
+ ]
3581
+ },
3582
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3583
+ itemNumber: 209,
3584
+ name: 'd-test-1',
3585
+ optionGroup: 'color',
3586
+ optionName: 'option 2',
3587
+ roles: [
3588
+ 'color',
3589
+ 'option'
3590
+ ]
3591
+ },
3592
+ itemId: 'qNCQmTFcFxwbT-oG',
3593
+ projectItem: {
3594
+ id: 'ocUdgjQckz-94pH8:qNCQmTFcFxwbT-oG',
3595
+ itemId: 'qNCQmTFcFxwbT-oG',
3596
+ piNumber: 2,
3597
+ piOptionNumber: 2,
3598
+ piString: 'pi string 2',
3599
+ projectId: 'ocUdgjQckz-94pH8',
3600
+ roles: [
3601
+ 'color',
3602
+ 'option'
3603
+ ]
3604
+ }
3605
+ }
3606
+ ],
3607
+ assortmentType: 'PLAN',
3608
+ entityType: 'assortment',
3609
+ id: '2bOWR2j9R0QThDVu',
3610
+ name: 'drop test 2'
3611
+ },
3612
+ assortmentBaselineDownloadLink: 'https://...',
3613
+ assortmentId: '2bOWR2j9R0QThDVu',
3614
+ createdOn: '2023-08-04T15:00:21.697Z',
3615
+ deleteData: [
3616
+ ],
3617
+ deleteDataDownloadLink: 'https://...',
3618
+ deletes: 0,
3619
+ detail: {
3620
+ adds: [
3621
+ {
3622
+ assortItemString: 'as 2-1',
3623
+ id: 'mp9Zgcb89fMax1WW',
3624
+ item: {
3625
+ entityType: 'item',
3626
+ id: 'mp9Zgcb89fMax1WW',
3627
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3628
+ itemNumber: 211,
3629
+ name: 'd-test-2',
3630
+ optionGroup: 'color',
3631
+ optionName: 'option 1',
3632
+ roles: [
3633
+ 'color',
3634
+ 'option'
3635
+ ]
3636
+ }
3637
+ },
3638
+ {
3639
+ assortItemString: 'assort string 1',
3640
+ id: 'Y_5IusFLG7S-RSi_',
3641
+ item: {
3642
+ id: 'Y_5IusFLG7S-RSi_',
3643
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3644
+ itemNumber: 208,
3645
+ name: 'd-test-1',
3646
+ optionGroup: 'color',
3647
+ optionName: 'option 1',
3648
+ roles: [
3649
+ 'color',
3650
+ 'option'
3651
+ ]
3652
+ }
3653
+ },
3654
+ {
3655
+ assortItemString: 'as 2-2',
3656
+ id: 'SfUAZy_Hj631h2Kg',
3657
+ item: {
3658
+ id: 'SfUAZy_Hj631h2Kg',
3659
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3660
+ itemNumber: 212,
3661
+ name: 'd-test-2',
3662
+ optionGroup: 'color',
3663
+ optionName: 'option 2',
3664
+ roles: [
3665
+ 'color',
3666
+ 'option'
3667
+ ]
3668
+ }
3669
+ },
3670
+ {
3671
+ assortItemString: 'assort string 2',
3672
+ id: 'qNCQmTFcFxwbT-oG',
3673
+ item: {
3674
+ id: 'qNCQmTFcFxwbT-oG',
3675
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3676
+ itemNumber: 209,
3677
+ name: 'd-test-1',
3678
+ optionGroup: 'color',
3679
+ optionName: 'option 2',
3680
+ roles: [
3681
+ 'color',
3682
+ 'option'
3683
+ ]
3684
+ }
3685
+ }
3686
+ ],
3687
+ assortmentId: '2bOWR2j9R0QThDVu',
3688
+ deletes: [
3689
+ ],
3690
+ errors: [
3691
+ ],
3692
+ familyItemsRemoved: [
3693
+ ],
3694
+ updates: [
3695
+ ],
3696
+ versionComments: '',
3697
+ versionName: 'first add'
3698
+ },
3699
+ detailDownloadLink: 'https://...',
3700
+ errors: 0,
3701
+ familyItemsRemoved: 0,
3702
+ hydratedDetailDownloadLink: 'https://...',
3703
+ id: 'SYHfQzYWlfXDqK7r',
3704
+ summary: {
3705
+ },
3706
+ unchanged: 0,
3707
+ updates: 0,
3708
+ versionComments: '',
3709
+ versionName: 'first add'
3710
+ },
3711
+ {
3712
+ adds: 0,
3713
+ assortmentBaseline: {
3714
+ assortmentItems: [
3715
+ {
3716
+ assortItemString: 'assort string 1',
3717
+ entityType: 'assortment-item',
3718
+ familyProjectItem: {
3719
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
3720
+ itemId: 'jE8yyOIvpSyvIq8g',
3721
+ projectId: 'ocUdgjQckz-94pH8',
3722
+ roles: [
3723
+ 'family'
3724
+ ]
3725
+ },
3726
+ id: 'TPlkvjYGnRCvS5kI',
3727
+ item: {
3728
+ id: 'Y_5IusFLG7S-RSi_',
3729
+ itemFamily: {
3730
+ id: 'jE8yyOIvpSyvIq8g',
3731
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3732
+ itemNumber: 207,
3733
+ name: 'd-test-1',
3734
+ roles: [
3735
+ 'family'
3736
+ ]
3737
+ },
3738
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3739
+ itemNumber: 208,
3740
+ name: 'd-test-1',
3741
+ optionGroup: 'color',
3742
+ optionName: 'option 1',
3743
+ roles: [
3744
+ 'color',
3745
+ 'option'
3746
+ ]
3747
+ },
3748
+ itemId: 'Y_5IusFLG7S-RSi_',
3749
+ projectItem: {
3750
+ id: 'ocUdgjQckz-94pH8:Y_5IusFLG7S-RSi_',
3751
+ itemId: 'Y_5IusFLG7S-RSi_',
3752
+ piNumber: 1,
3753
+ piOptionNumber: 1,
3754
+ piString: 'pi string 1',
3755
+ projectId: 'ocUdgjQckz-94pH8',
3756
+ roles: [
3757
+ 'color',
3758
+ 'option'
3759
+ ]
3760
+ }
3761
+ },
3762
+ {
3763
+ assortItemString: 'as 2-1',
3764
+ entityType: 'assortment-item',
3765
+ familyProjectItem: {
3766
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
3767
+ itemId: 'fXImyoA5JqUvNWHY',
3768
+ projectId: 'ocUdgjQckz-94pH8',
3769
+ roles: [
3770
+ 'family'
3771
+ ]
3772
+ },
3773
+ id: 'REajA_xgBZhu2YJT',
3774
+ item: {
3775
+ id: 'mp9Zgcb89fMax1WW',
3776
+ itemFamily: {
3777
+ id: 'fXImyoA5JqUvNWHY',
3778
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3779
+ itemNumber: 210,
3780
+ name: 'd-test-2',
3781
+ roles: [
3782
+ 'family'
3783
+ ]
3784
+ },
3785
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3786
+ itemNumber: 211,
3787
+ name: 'd-test-2',
3788
+ optionGroup: 'color',
3789
+ optionName: 'option 1',
3790
+ roles: [
3791
+ 'color',
3792
+ 'option'
3793
+ ]
3794
+ },
3795
+ itemId: 'mp9Zgcb89fMax1WW',
3796
+ projectItem: {
3797
+ id: 'ocUdgjQckz-94pH8:mp9Zgcb89fMax1WW',
3798
+ itemId: 'mp9Zgcb89fMax1WW',
3799
+ piNumber: 3,
3800
+ piOptionNumber: 3,
3801
+ piString: 'pi 2-1',
3802
+ projectId: 'ocUdgjQckz-94pH8',
3803
+ roles: [
3804
+ 'color',
3805
+ 'option'
3806
+ ]
3807
+ }
3808
+ },
3809
+ {
3810
+ assortItemString: 'assort string 2',
3811
+ entityType: 'assortment-item',
3812
+ familyProjectItem: {
3813
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
3814
+ itemId: 'jE8yyOIvpSyvIq8g',
3815
+ projectId: 'ocUdgjQckz-94pH8',
3816
+ roles: [
3817
+ 'family'
3818
+ ]
3819
+ },
3820
+ id: 'im3Wa3KDqy60fF1c',
3821
+ item: {
3822
+ id: 'qNCQmTFcFxwbT-oG',
3823
+ itemFamily: {
3824
+ id: 'jE8yyOIvpSyvIq8g',
3825
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3826
+ itemNumber: 207,
3827
+ name: 'd-test-1',
3828
+ roles: [
3829
+ 'family'
3830
+ ]
3831
+ },
3832
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3833
+ itemNumber: 209,
3834
+ name: 'd-test-1',
3835
+ optionGroup: 'color',
3836
+ optionName: 'option 2',
3837
+ roles: [
3838
+ 'color',
3839
+ 'option'
3840
+ ]
3841
+ },
3842
+ itemId: 'qNCQmTFcFxwbT-oG',
3843
+ projectItem: {
3844
+ id: 'ocUdgjQckz-94pH8:qNCQmTFcFxwbT-oG',
3845
+ itemId: 'qNCQmTFcFxwbT-oG',
3846
+ piNumber: 2,
3847
+ piOptionNumber: 2,
3848
+ piString: 'pi string 2',
3849
+ projectId: 'ocUdgjQckz-94pH8',
3850
+ roles: [
3851
+ 'color',
3852
+ 'option'
3853
+ ]
3854
+ }
3855
+ }
3856
+ ],
3857
+ assortmentType: 'PLAN',
3858
+ createdForReference: 'plan:pvhMw7Jz7W1kIPFC',
3859
+ entityType: 'assortment',
3860
+ id: '2bOWR2j9R0QThDVu',
3861
+ name: 'drop test 2'
3862
+ },
3863
+ assortmentBaselineDownloadLink: 'https://...',
3864
+ assortmentId: '2bOWR2j9R0QThDVu',
3865
+ createdOn: '2023-08-04T14:31:41.215Z',
3866
+ deleteData: [
3867
+ {
3868
+ assortItemString: 'as 2-2',
3869
+ assortmentId: '2bOWR2j9R0QThDVu',
3870
+ entityType: 'assortment-item',
3871
+ familyProjectItem: {
3872
+ formulaTest: 100,
3873
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
3874
+ itemId: 'fXImyoA5JqUvNWHY',
3875
+ projectId: 'ocUdgjQckz-94pH8',
3876
+ roles: [
3877
+ 'family'
3878
+ ],
3879
+ updatedOn: '2023-08-04T14:30:37.321Z'
3880
+ },
3881
+ id: 'MpmOo5Vgpi_Cdimb',
3882
+ item: {
3883
+ entityType: 'item',
3884
+ id: 'SfUAZy_Hj631h2Kg',
3885
+ itemFamily: {
3886
+ id: 'fXImyoA5JqUvNWHY',
3887
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3888
+ itemNumber: 210,
3889
+ name: 'd-test-2',
3890
+ roles: [
3891
+ 'family'
3892
+ ]
3893
+ },
3894
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3895
+ itemNumber: 212,
3896
+ name: 'd-test-2',
3897
+ optionGroup: 'color',
3898
+ optionName: 'option 2',
3899
+ roles: [
3900
+ 'color',
3901
+ 'option'
3902
+ ]
3903
+ },
3904
+ itemId: 'SfUAZy_Hj631h2Kg',
3905
+ projectItem: {
3906
+ id: 'ocUdgjQckz-94pH8:SfUAZy_Hj631h2Kg',
3907
+ itemId: 'SfUAZy_Hj631h2Kg',
3908
+ piOptionNumber: 4,
3909
+ piString: 'pi 2-2',
3910
+ projectId: 'ocUdgjQckz-94pH8',
3911
+ roles: [
3912
+ 'color',
3913
+ 'option'
3914
+ ]
3915
+ }
3916
+ }
3917
+ ],
3918
+ deleteDataDownloadLink: 'https://...',
3919
+ deletes: 1,
3920
+ detail: {
3921
+ adds: [
3922
+ ],
3923
+ assortmentId: '2bOWR2j9R0QThDVu',
3924
+ deletes: [
3925
+ {
3926
+ assortItemString: 'as 2-2',
3927
+ id: 'SfUAZy_Hj631h2Kg',
3928
+ item: {
3929
+ entityType: 'item',
3930
+ id: 'SfUAZy_Hj631h2Kg',
3931
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
3932
+ itemNumber: 212,
3933
+ name: 'd-test-2',
3934
+ optionGroup: 'color',
3935
+ optionName: 'option 2',
3936
+ roles: [
3937
+ 'color',
3938
+ 'option'
3939
+ ]
3940
+ }
3941
+ }
3942
+ ],
3943
+ errors: [
3944
+ ],
3945
+ familyItemsRemoved: [
3946
+ ],
3947
+ updates: [
3948
+ ],
3949
+ versionComments: '',
3950
+ versionName: 'drop 1 row'
3951
+ },
3952
+ detailDownloadLink: 'https://...',
3953
+ errors: 0,
3954
+ familyItemsRemoved: 0,
3955
+ hydratedDetailDownloadLink: 'https://...',
3956
+ id: 'JreGRNvoJ3FsoRZI',
3957
+ summary: {
3958
+ },
3959
+ unchanged: 3,
3960
+ updates: 0,
3961
+ versionComments: '',
3962
+ versionName: 'drop 1 row'
3963
+ },
3964
+ {
3965
+ adds: 0,
3966
+ assortmentBaseline: {
3967
+ assortmentItems: [
3968
+ {
3969
+ assortItemString: 'assort string 1',
3970
+ entityType: 'assortment-item',
3971
+ familyProjectItem: {
3972
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
3973
+ itemId: 'jE8yyOIvpSyvIq8g',
3974
+ projectId: 'ocUdgjQckz-94pH8',
3975
+ roles: [
3976
+ 'family'
3977
+ ]
3978
+ },
3979
+ id: 'TPlkvjYGnRCvS5kI',
3980
+ item: {
3981
+ id: 'Y_5IusFLG7S-RSi_',
3982
+ itemFamily: {
3983
+ id: 'jE8yyOIvpSyvIq8g',
3984
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3985
+ itemNumber: 207,
3986
+ name: 'd-test-1',
3987
+ roles: [
3988
+ 'family'
3989
+ ]
3990
+ },
3991
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
3992
+ itemNumber: 208,
3993
+ name: 'd-test-1',
3994
+ optionGroup: 'color',
3995
+ optionName: 'option 1',
3996
+ roles: [
3997
+ 'color',
3998
+ 'option'
3999
+ ]
4000
+ },
4001
+ itemId: 'Y_5IusFLG7S-RSi_',
4002
+ projectItem: {
4003
+ id: 'ocUdgjQckz-94pH8:Y_5IusFLG7S-RSi_',
4004
+ itemId: 'Y_5IusFLG7S-RSi_',
4005
+ piNumber: 1,
4006
+ piOptionNumber: 1,
4007
+ piString: 'pi string 1',
4008
+ projectId: 'ocUdgjQckz-94pH8',
4009
+ roles: [
4010
+ 'color',
4011
+ 'option'
4012
+ ]
4013
+ }
4014
+ },
4015
+ {
4016
+ assortItemString: 'as 2-1',
4017
+ entityType: 'assortment-item',
4018
+ familyProjectItem: {
4019
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
4020
+ itemId: 'fXImyoA5JqUvNWHY',
4021
+ projectId: 'ocUdgjQckz-94pH8',
4022
+ roles: [
4023
+ 'family'
4024
+ ]
4025
+ },
4026
+ id: 'REajA_xgBZhu2YJT',
4027
+ item: {
4028
+ id: 'mp9Zgcb89fMax1WW',
4029
+ itemFamily: {
4030
+ id: 'fXImyoA5JqUvNWHY',
4031
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4032
+ itemNumber: 210,
4033
+ name: 'd-test-2',
4034
+ roles: [
4035
+ 'family'
4036
+ ]
4037
+ },
4038
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4039
+ itemNumber: 211,
4040
+ name: 'd-test-2',
4041
+ optionGroup: 'color',
4042
+ optionName: 'option 1',
4043
+ roles: [
4044
+ 'color',
4045
+ 'option'
4046
+ ]
4047
+ },
4048
+ itemId: 'mp9Zgcb89fMax1WW',
4049
+ projectItem: {
4050
+ id: 'ocUdgjQckz-94pH8:mp9Zgcb89fMax1WW',
4051
+ itemId: 'mp9Zgcb89fMax1WW',
4052
+ piNumber: 3,
4053
+ piOptionNumber: 3,
4054
+ piString: 'pi 2-1',
4055
+ projectId: 'ocUdgjQckz-94pH8',
4056
+ roles: [
4057
+ 'color',
4058
+ 'option'
4059
+ ]
4060
+ }
4061
+ },
4062
+ {
4063
+ assortItemString: 'assort string 2',
4064
+ entityType: 'assortment-item',
4065
+ familyProjectItem: {
4066
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
4067
+ itemId: 'jE8yyOIvpSyvIq8g',
4068
+ projectId: 'ocUdgjQckz-94pH8',
4069
+ roles: [
4070
+ 'family'
4071
+ ]
4072
+ },
4073
+ id: 'im3Wa3KDqy60fF1c',
4074
+ item: {
4075
+ id: 'qNCQmTFcFxwbT-oG',
4076
+ itemFamily: {
4077
+ id: 'jE8yyOIvpSyvIq8g',
4078
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4079
+ itemNumber: 207,
4080
+ name: 'd-test-1',
4081
+ roles: [
4082
+ 'family'
4083
+ ]
4084
+ },
4085
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4086
+ itemNumber: 209,
4087
+ name: 'd-test-1',
4088
+ optionGroup: 'color',
4089
+ optionName: 'option 2',
4090
+ roles: [
4091
+ 'color',
4092
+ 'option'
4093
+ ]
4094
+ },
4095
+ itemId: 'qNCQmTFcFxwbT-oG',
4096
+ projectItem: {
4097
+ id: 'ocUdgjQckz-94pH8:qNCQmTFcFxwbT-oG',
4098
+ itemId: 'qNCQmTFcFxwbT-oG',
4099
+ piNumber: 2,
4100
+ piOptionNumber: 2,
4101
+ piString: 'pi string 2',
4102
+ projectId: 'ocUdgjQckz-94pH8',
4103
+ roles: [
4104
+ 'color',
4105
+ 'option'
4106
+ ]
4107
+ }
4108
+ }
4109
+ ],
4110
+ assortmentType: 'PLAN',
4111
+ createdForReference: 'plan:pvhMw7Jz7W1kIPFC',
4112
+ entityType: 'assortment',
4113
+ id: '2bOWR2j9R0QThDVu',
4114
+ name: 'drop test 2'
4115
+ },
4116
+ assortmentBaselineDownloadLink: 'https://...',
4117
+ assortmentId: '2bOWR2j9R0QThDVu',
4118
+ createdOn: '2023-08-04T15:49:27.432Z',
4119
+ deleteData: [
4120
+ ],
4121
+ deleteDataDownloadLink: 'https://...',
4122
+ deletes: 0,
4123
+ detail: {
4124
+ adds: [
4125
+ ],
4126
+ assortmentId: '2bOWR2j9R0QThDVu',
4127
+ deletes: [
4128
+ ],
4129
+ errors: [
4130
+ ],
4131
+ familyItemsRemoved: [
4132
+ ],
4133
+ updates: [
4134
+ ],
4135
+ versionComments: '',
4136
+ versionName: 'no changes'
4137
+ },
4138
+ detailDownloadLink: 'https://...',
4139
+ errors: 0,
4140
+ familyItemsRemoved: 0,
4141
+ hydratedDetailDownloadLink: 'https://...',
4142
+ id: 'NaPUhAdEzKB-5tQ3',
4143
+ summary: {
4144
+ },
4145
+ unchanged: 3,
4146
+ updates: 0,
4147
+ versionComments: '',
4148
+ versionName: 'no changes'
4149
+ },
4150
+ {
4151
+ adds: 0,
4152
+ assortmentBaseline: {
4153
+ assortmentItems: [
4154
+ {
4155
+ assortItemString: 'assort string 1',
4156
+ assortmentId: '2bOWR2j9R0QThDVu',
4157
+ entityType: 'assortment-item',
4158
+ familyProjectItem: {
4159
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
4160
+ itemId: 'jE8yyOIvpSyvIq8g',
4161
+ projectId: 'ocUdgjQckz-94pH8',
4162
+ roles: [
4163
+ 'family'
4164
+ ]
4165
+ },
4166
+ id: 'TPlkvjYGnRCvS5kI',
4167
+ item: {
4168
+ id: 'Y_5IusFLG7S-RSi_',
4169
+ itemFamily: {
4170
+ id: 'jE8yyOIvpSyvIq8g',
4171
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4172
+ itemNumber: 207,
4173
+ name: 'd-test-1',
4174
+ roles: [
4175
+ 'family'
4176
+ ]
4177
+ },
4178
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4179
+ itemNumber: 208,
4180
+ name: 'd-test-1',
4181
+ optionGroup: 'color',
4182
+ optionName: 'option 1',
4183
+ roles: [
4184
+ 'color',
4185
+ 'option'
4186
+ ]
4187
+ },
4188
+ itemId: 'Y_5IusFLG7S-RSi_',
4189
+ projectItem: {
4190
+ id: 'ocUdgjQckz-94pH8:Y_5IusFLG7S-RSi_',
4191
+ itemId: 'Y_5IusFLG7S-RSi_',
4192
+ piNumber: 1,
4193
+ piOptionNumber: 1,
4194
+ piString: 'pi string 1',
4195
+ projectId: 'ocUdgjQckz-94pH8',
4196
+ roles: [
4197
+ 'color',
4198
+ 'option'
4199
+ ]
4200
+ }
4201
+ },
4202
+ {
4203
+ assortItemString: 'as 2-1',
4204
+ assortmentId: '2bOWR2j9R0QThDVu',
4205
+ entityType: 'assortment-item',
4206
+ familyProjectItem: {
4207
+ createdOn: '2023-08-04T14:30:37.321Z',
4208
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
4209
+ itemId: 'fXImyoA5JqUvNWHY',
4210
+ projectId: 'ocUdgjQckz-94pH8',
4211
+ roles: [
4212
+ 'family'
4213
+ ]
4214
+ },
4215
+ id: 'REajA_xgBZhu2YJT',
4216
+ item: {
4217
+ id: 'mp9Zgcb89fMax1WW',
4218
+ itemFamily: {
4219
+ id: 'fXImyoA5JqUvNWHY',
4220
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4221
+ itemNumber: 210,
4222
+ name: 'd-test-2',
4223
+ roles: [
4224
+ 'family'
4225
+ ]
4226
+ },
4227
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4228
+ itemNumber: 211,
4229
+ name: 'd-test-2',
4230
+ optionGroup: 'color',
4231
+ optionName: 'option 1',
4232
+ roles: [
4233
+ 'color',
4234
+ 'option'
4235
+ ]
4236
+ },
4237
+ itemId: 'mp9Zgcb89fMax1WW',
4238
+ projectItem: {
4239
+ id: 'ocUdgjQckz-94pH8:mp9Zgcb89fMax1WW',
4240
+ itemId: 'mp9Zgcb89fMax1WW',
4241
+ piNumber: 3,
4242
+ piOptionNumber: 3,
4243
+ piString: 'pi 2-1',
4244
+ projectId: 'ocUdgjQckz-94pH8',
4245
+ roles: [
4246
+ 'color',
4247
+ 'option'
4248
+ ]
4249
+ }
4250
+ }
4251
+ ],
4252
+ assortmentType: 'PLAN',
4253
+ createdOn: '2023-08-04T14:27:48.023Z',
4254
+ entityType: 'assortment',
4255
+ id: '2bOWR2j9R0QThDVu',
4256
+ name: 'drop test 2'
4257
+ },
4258
+ assortmentBaselineDownloadLink: 'https://...',
4259
+ assortmentId: '2bOWR2j9R0QThDVu',
4260
+ createdById: 'Eey3ZOi8znUA85i7',
4261
+ createdOn: '2023-08-04T15:57:44.089Z',
4262
+ deleteData: [
4263
+ {
4264
+ assortItemString: 'assort string 2',
4265
+ assortmentId: '2bOWR2j9R0QThDVu',
4266
+ createdOn: '2023-08-04T14:31:40.380Z',
4267
+ entityType: 'assortment-item',
4268
+ familyProjectItem: {
4269
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
4270
+ itemId: 'jE8yyOIvpSyvIq8g',
4271
+ projectId: 'ocUdgjQckz-94pH8',
4272
+ roles: [
4273
+ 'family'
4274
+ ]
4275
+ },
4276
+ id: 'im3Wa3KDqy60fF1c',
4277
+ item: {
4278
+ entityType: 'item',
4279
+ id: 'qNCQmTFcFxwbT-oG',
4280
+ itemFamily: {
4281
+ id: 'jE8yyOIvpSyvIq8g',
4282
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4283
+ itemNumber: 207,
4284
+ name: 'd-test-1',
4285
+ roles: [
4286
+ 'family'
4287
+ ]
4288
+ },
4289
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4290
+ itemNumber: 209,
4291
+ name: 'd-test-1',
4292
+ optionGroup: 'color',
4293
+ optionName: 'option 2',
4294
+ roles: [
4295
+ 'color',
4296
+ 'option'
4297
+ ]
4298
+ },
4299
+ itemId: 'qNCQmTFcFxwbT-oG',
4300
+ projectItem: {
4301
+ id: 'ocUdgjQckz-94pH8:qNCQmTFcFxwbT-oG',
4302
+ itemId: 'qNCQmTFcFxwbT-oG',
4303
+ piNumber: 2,
4304
+ piOptionNumber: 2,
4305
+ piString: 'pi string 2',
4306
+ projectId: 'ocUdgjQckz-94pH8',
4307
+ roles: [
4308
+ 'color',
4309
+ 'option'
4310
+ ]
4311
+ }
4312
+ }
4313
+ ],
4314
+ deleteDataDownloadLink: 'https://...',
4315
+ deletes: 1,
4316
+ detail: {
4317
+ adds: [
4318
+ ],
4319
+ assortmentId: '2bOWR2j9R0QThDVu',
4320
+ deletes: [
4321
+ {
4322
+ assortItemString: 'assort string 2',
4323
+ id: 'qNCQmTFcFxwbT-oG',
4324
+ item: {
4325
+ entityType: 'item',
4326
+ id: 'qNCQmTFcFxwbT-oG',
4327
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4328
+ itemNumber: 209,
4329
+ name: 'd-test-1',
4330
+ optionGroup: 'color',
4331
+ optionName: 'option 2',
4332
+ roles: [
4333
+ 'color',
4334
+ 'option'
4335
+ ]
4336
+ }
4337
+ }
4338
+ ],
4339
+ errors: [
4340
+ ],
4341
+ familyItemsRemoved: [
4342
+ ],
4343
+ updates: [
4344
+ ],
4345
+ versionComments: '',
4346
+ versionName: 'drop 2nd option'
4347
+ },
4348
+ detailDownloadLink: 'https://...',
4349
+ errors: 0,
4350
+ familyItemsRemoved: 0,
4351
+ hydratedDetailDownloadLink: 'https://...',
4352
+ id: 'CHGKSCT358qyh1Nu',
4353
+ summary: {
4354
+ },
4355
+ unchanged: 2,
4356
+ updates: 0,
4357
+ versionComments: '',
4358
+ versionName: 'drop 2nd option'
4359
+ },
4360
+ {
4361
+ adds: 1,
4362
+ assortmentBaseline: {
4363
+ assortmentItems: [
4364
+ {
4365
+ assortItemString: 'as 2-2',
4366
+ entityType: 'assortment-item',
4367
+ familyProjectItem: {
4368
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
4369
+ itemId: 'fXImyoA5JqUvNWHY',
4370
+ projectId: 'ocUdgjQckz-94pH8',
4371
+ roles: [
4372
+ 'family'
4373
+ ]
4374
+ },
4375
+ id: '3HP8VT2GaMnVoYbX',
4376
+ item: {
4377
+ id: 'SfUAZy_Hj631h2Kg',
4378
+ itemFamily: {
4379
+ id: 'fXImyoA5JqUvNWHY',
4380
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4381
+ itemNumber: 210,
4382
+ name: 'd-test-2',
4383
+ roles: [
4384
+ 'family'
4385
+ ]
4386
+ },
4387
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4388
+ itemNumber: 212,
4389
+ name: 'd-test-2',
4390
+ optionGroup: 'color',
4391
+ optionName: 'option 2',
4392
+ roles: [
4393
+ 'color',
4394
+ 'option'
4395
+ ]
4396
+ },
4397
+ itemId: 'SfUAZy_Hj631h2Kg',
4398
+ projectItem: {
4399
+ id: 'ocUdgjQckz-94pH8:SfUAZy_Hj631h2Kg',
4400
+ itemId: 'SfUAZy_Hj631h2Kg',
4401
+ piNumber: 4,
4402
+ piOptionNumber: 4,
4403
+ piString: 'pi 2-2',
4404
+ projectId: 'ocUdgjQckz-94pH8',
4405
+ roles: [
4406
+ 'color',
4407
+ 'option'
4408
+ ]
4409
+ }
4410
+ },
4411
+ {
4412
+ assortItemString: 'assort string 1',
4413
+ entityType: 'assortment-item',
4414
+ familyProjectItem: {
4415
+ id: 'ocUdgjQckz-94pH8:jE8yyOIvpSyvIq8g',
4416
+ itemId: 'jE8yyOIvpSyvIq8g',
4417
+ projectId: 'ocUdgjQckz-94pH8',
4418
+ roles: [
4419
+ 'family'
4420
+ ]
4421
+ },
4422
+ id: 'TPlkvjYGnRCvS5kI',
4423
+ item: {
4424
+ id: 'Y_5IusFLG7S-RSi_',
4425
+ itemFamily: {
4426
+ id: 'jE8yyOIvpSyvIq8g',
4427
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4428
+ itemNumber: 207,
4429
+ name: 'd-test-1',
4430
+ roles: [
4431
+ 'family'
4432
+ ]
4433
+ },
4434
+ itemFamilyId: 'jE8yyOIvpSyvIq8g',
4435
+ itemNumber: 208,
4436
+ name: 'd-test-1',
4437
+ optionGroup: 'color',
4438
+ optionName: 'option 1',
4439
+ roles: [
4440
+ 'color',
4441
+ 'option'
4442
+ ]
4443
+ },
4444
+ itemId: 'Y_5IusFLG7S-RSi_',
4445
+ projectItem: {
4446
+ id: 'ocUdgjQckz-94pH8:Y_5IusFLG7S-RSi_',
4447
+ itemId: 'Y_5IusFLG7S-RSi_',
4448
+ piNumber: 1,
4449
+ piOptionNumber: 1,
4450
+ piString: 'pi string 1',
4451
+ projectId: 'ocUdgjQckz-94pH8',
4452
+ roles: [
4453
+ 'color',
4454
+ 'option'
4455
+ ]
4456
+ }
4457
+ },
4458
+ {
4459
+ assortItemString: 'as 2-1',
4460
+ entityType: 'assortment-item',
4461
+ familyProjectItem: {
4462
+ id: 'ocUdgjQckz-94pH8:fXImyoA5JqUvNWHY',
4463
+ itemId: 'fXImyoA5JqUvNWHY',
4464
+ projectId: 'ocUdgjQckz-94pH8',
4465
+ roles: [
4466
+ 'family'
4467
+ ]
4468
+ },
4469
+ id: 'REajA_xgBZhu2YJT',
4470
+ item: {
4471
+ id: 'mp9Zgcb89fMax1WW',
4472
+ itemFamily: {
4473
+ id: 'fXImyoA5JqUvNWHY',
4474
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4475
+ itemNumber: 210,
4476
+ name: 'd-test-2',
4477
+ roles: [
4478
+ 'family'
4479
+ ]
4480
+ },
4481
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4482
+ itemNumber: 211,
4483
+ name: 'd-test-2',
4484
+ optionGroup: 'color',
4485
+ optionName: 'option 1',
4486
+ roles: [
4487
+ 'color',
4488
+ 'option'
4489
+ ]
4490
+ },
4491
+ itemId: 'mp9Zgcb89fMax1WW',
4492
+ projectItem: {
4493
+ id: 'ocUdgjQckz-94pH8:mp9Zgcb89fMax1WW',
4494
+ itemId: 'mp9Zgcb89fMax1WW',
4495
+ piNumber: 3,
4496
+ piOptionNumber: 3,
4497
+ piString: 'pi 2-1',
4498
+ projectId: 'ocUdgjQckz-94pH8',
4499
+ roles: [
4500
+ 'color',
4501
+ 'option'
4502
+ ]
4503
+ }
4504
+ }
4505
+ ],
4506
+ assortmentType: 'PLAN',
4507
+ entityType: 'assortment',
4508
+ id: '2bOWR2j9R0QThDVu',
4509
+ name: 'drop test 2'
4510
+ },
4511
+ assortmentBaselineDownloadLink: 'https://...',
4512
+ assortmentId: '2bOWR2j9R0QThDVu',
4513
+ createdOn: '2023-08-04T17:24:48.625Z',
4514
+ deleteData: [
4515
+ ],
4516
+ deleteDataDownloadLink: 'https://...',
4517
+ deletes: 0,
4518
+ detail: {
4519
+ adds: [
4520
+ {
4521
+ assortItemString: 'as 2-2',
4522
+ id: 'SfUAZy_Hj631h2Kg',
4523
+ item: {
4524
+ id: 'SfUAZy_Hj631h2Kg',
4525
+ itemFamilyId: 'fXImyoA5JqUvNWHY',
4526
+ itemNumber: 212,
4527
+ name: 'd-test-2',
4528
+ optionGroup: 'color',
4529
+ optionName: 'option 2',
4530
+ roles: [
4531
+ 'color',
4532
+ 'option'
4533
+ ]
4534
+ }
4535
+ }
4536
+ ],
4537
+ assortmentId: '2bOWR2j9R0QThDVu',
4538
+ deletes: [
4539
+ ],
4540
+ errors: [
4541
+ ],
4542
+ familyItemsRemoved: [
4543
+ ],
4544
+ updates: [
4545
+ ],
4546
+ versionComments: '',
4547
+ versionName: 're-add option dropped 2nd publish'
4548
+ },
4549
+ detailDownloadLink: 'https://...',
4550
+ errors: 0,
4551
+ familyItemsRemoved: 0,
4552
+ hydratedDetailDownloadLink: 'https://...',
4553
+ id: 'H4L4dHziO6WZRIwa',
4554
+ summary: {
4555
+ },
4556
+ unchanged: 2,
4557
+ updates: 0,
4558
+ versionComments: '',
4559
+ versionName: 're-add option dropped 2nd publish'
4560
+ }
4561
+ ];