@contrail/flexplm 1.3.0-alpha.0 → 1.3.0-alpha.4

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 (124) hide show
  1. package/.claude/settings.local.json +2 -1
  2. package/.github/pull_request_template.md +31 -31
  3. package/.github/workflows/flexplm-lib.yml +27 -27
  4. package/CHANGELOG.md +1 -1
  5. package/lib/entity-processor/base-entity-processor.d.ts +42 -0
  6. package/lib/entity-processor/base-entity-processor.js +377 -0
  7. package/lib/entity-processor/base-entity-processor.spec.d.ts +1 -0
  8. package/lib/entity-processor/base-entity-processor.spec.js +426 -0
  9. package/lib/flexplm-request.d.ts +3 -0
  10. package/lib/flexplm-request.js +34 -0
  11. package/lib/flexplm-utils.d.ts +5 -0
  12. package/lib/flexplm-utils.js +33 -0
  13. package/lib/flexplm-utils.spec.d.ts +1 -0
  14. package/lib/flexplm-utils.spec.js +26 -0
  15. package/lib/index.d.ts +22 -0
  16. package/lib/index.js +38 -0
  17. package/lib/interfaces/interfaces.d.ts +105 -0
  18. package/lib/interfaces/interfaces.js +2 -0
  19. package/lib/interfaces/item-family-changes.d.ts +20 -0
  20. package/lib/interfaces/item-family-changes.js +56 -0
  21. package/lib/interfaces/publish-change-data.d.ts +19 -0
  22. package/lib/interfaces/publish-change-data.js +32 -0
  23. package/lib/publish/base-process-publish-assortment-callback.d.ts +9 -0
  24. package/lib/publish/base-process-publish-assortment-callback.js +38 -0
  25. package/lib/publish/base-process-publish-assortment.d.ts +93 -0
  26. package/lib/publish/base-process-publish-assortment.js +944 -0
  27. package/lib/publish/base-process-publish-assortment.spec.d.ts +1 -0
  28. package/lib/publish/base-process-publish-assortment.spec.js +1670 -0
  29. package/lib/publish/mockData.d.ts +1389 -0
  30. package/lib/publish/mockData.js +4519 -0
  31. package/lib/transform/identifier-conversion-spec-mockData.d.ts +0 -0
  32. package/lib/transform/identifier-conversion-spec-mockData.js +444 -0
  33. package/lib/transform/identifier-conversion.d.ts +15 -0
  34. package/lib/transform/identifier-conversion.js +212 -0
  35. package/lib/transform/identifier-conversion.spec.d.ts +1 -0
  36. package/lib/transform/identifier-conversion.spec.js +339 -0
  37. package/lib/util/config-defaults.d.ts +8 -0
  38. package/lib/util/config-defaults.js +85 -0
  39. package/lib/util/config-defaults.spec.d.ts +1 -0
  40. package/lib/util/config-defaults.spec.js +293 -0
  41. package/lib/util/data-converter-spec-mockData.d.ts +0 -0
  42. package/lib/util/data-converter-spec-mockData.js +205 -0
  43. package/lib/util/data-converter.d.ts +39 -0
  44. package/lib/util/data-converter.js +592 -0
  45. package/lib/util/data-converter.spec.d.ts +1 -0
  46. package/lib/util/data-converter.spec.js +904 -0
  47. package/lib/util/error-response-object.d.ts +4 -0
  48. package/lib/util/error-response-object.js +47 -0
  49. package/lib/util/error-response-object.spec.d.ts +1 -0
  50. package/lib/util/error-response-object.spec.js +99 -0
  51. package/lib/util/event-short-message-status.d.ts +18 -0
  52. package/lib/util/event-short-message-status.js +22 -0
  53. package/lib/util/federation.d.ts +15 -0
  54. package/lib/util/federation.js +149 -0
  55. package/lib/util/flexplm-connect.d.ts +22 -0
  56. package/lib/util/flexplm-connect.js +176 -0
  57. package/lib/util/flexplm-connect.spec.d.ts +1 -0
  58. package/lib/util/flexplm-connect.spec.js +88 -0
  59. package/lib/util/logger-config.d.ts +1 -0
  60. package/lib/util/logger-config.js +26 -0
  61. package/lib/util/map-util-spec-mockData.d.ts +0 -0
  62. package/lib/util/map-util-spec-mockData.js +205 -0
  63. package/lib/util/map-utils.d.ts +6 -0
  64. package/lib/util/map-utils.js +15 -0
  65. package/lib/util/map-utils.spec.d.ts +1 -0
  66. package/lib/util/map-utils.spec.js +89 -0
  67. package/lib/util/mockData.d.ts +80 -0
  68. package/lib/util/mockData.js +103 -0
  69. package/lib/util/thumbnail-util.d.ts +34 -0
  70. package/lib/util/thumbnail-util.js +211 -0
  71. package/lib/util/thumbnail-util.spec.d.ts +1 -0
  72. package/lib/util/thumbnail-util.spec.js +398 -0
  73. package/lib/util/type-conversion-utils-spec-mockData.d.ts +0 -0
  74. package/lib/util/type-conversion-utils-spec-mockData.js +259 -0
  75. package/lib/util/type-conversion-utils.d.ts +23 -0
  76. package/lib/util/type-conversion-utils.js +266 -0
  77. package/lib/util/type-conversion-utils.spec.d.ts +1 -0
  78. package/lib/util/type-conversion-utils.spec.js +868 -0
  79. package/lib/util/type-defaults.d.ts +16 -0
  80. package/lib/util/type-defaults.js +221 -0
  81. package/lib/util/type-defaults.spec.d.ts +1 -0
  82. package/lib/util/type-defaults.spec.js +516 -0
  83. package/lib/util/type-utils.d.ts +13 -0
  84. package/lib/util/type-utils.js +114 -0
  85. package/lib/util/type-utils.spec.d.ts +1 -0
  86. package/lib/util/type-utils.spec.js +190 -0
  87. package/package.json +1 -1
  88. package/publish.bat +4 -4
  89. package/publish.sh +4 -4
  90. package/src/entity-processor/base-entity-processor.spec.ts +157 -0
  91. package/src/entity-processor/base-entity-processor.ts +21 -2
  92. package/src/flexplm-request.ts +28 -28
  93. package/src/flexplm-utils.spec.ts +27 -27
  94. package/src/flexplm-utils.ts +29 -29
  95. package/src/index.ts +21 -21
  96. package/src/interfaces/item-family-changes.ts +66 -66
  97. package/src/interfaces/publish-change-data.ts +42 -42
  98. package/src/publish/base-process-publish-assortment-callback.ts +50 -50
  99. package/src/transform/identifier-conversion-spec-mockData.ts +495 -495
  100. package/src/transform/identifier-conversion.spec.ts +353 -353
  101. package/src/transform/identifier-conversion.ts +281 -281
  102. package/src/util/config-defaults.spec.ts +350 -350
  103. package/src/util/config-defaults.ts +92 -92
  104. package/src/util/data-converter-spec-mockData.ts +230 -230
  105. package/src/util/error-response-object.spec.ts +115 -115
  106. package/src/util/error-response-object.ts +49 -49
  107. package/src/util/federation.ts +172 -172
  108. package/src/util/logger-config.ts +19 -19
  109. package/src/util/map-util-spec-mockData.ts +230 -230
  110. package/src/util/map-utils.spec.ts +102 -102
  111. package/src/util/map-utils.ts +40 -40
  112. package/src/util/mockData.ts +101 -97
  113. package/src/util/thumbnail-util.spec.ts +190 -0
  114. package/src/util/thumbnail-util.ts +126 -5
  115. package/src/util/type-conversion-utils.spec.ts +25 -25
  116. package/src/util/type-conversion-utils.ts +10 -9
  117. package/src/util/type-defaults.spec.ts +668 -668
  118. package/src/util/type-defaults.ts +280 -280
  119. package/src/util/type-utils.spec.ts +227 -227
  120. package/src/util/type-utils.ts +144 -144
  121. package/tsconfig.json +28 -26
  122. package/tslint.json +57 -57
  123. package/scripts/output.png +0 -0
  124. package/scripts/test-get-request.ts +0 -35
@@ -0,0 +1,1389 @@
1
+ export declare const plan1_history: ({
2
+ summary: {
3
+ assortmentId: string;
4
+ count: number;
5
+ aggregates: {
6
+ totalMargin: {};
7
+ flexCurrency?: undefined;
8
+ };
9
+ updatedOn: string;
10
+ id: string;
11
+ updatedById: string;
12
+ createdOn: string;
13
+ createdById: string;
14
+ orgId: string;
15
+ };
16
+ deletes: number;
17
+ versionComments: string;
18
+ unchanged: number;
19
+ updatedOn: string;
20
+ versionName: string;
21
+ updates: number;
22
+ updatedById: string;
23
+ createdOn: string;
24
+ orgId: string;
25
+ familyItemsRemoved: number;
26
+ createdBy: string;
27
+ assortmentId: string;
28
+ id: string;
29
+ errors: number;
30
+ createdById: string;
31
+ adds: number;
32
+ } | {
33
+ summary: {
34
+ assortmentId: string;
35
+ count: number;
36
+ aggregates: {
37
+ flexCurrency: {
38
+ average: number;
39
+ total: number;
40
+ min: number;
41
+ max: number;
42
+ };
43
+ totalMargin: {};
44
+ };
45
+ updatedOn: string;
46
+ id: string;
47
+ updatedById: string;
48
+ createdOn: string;
49
+ createdById: string;
50
+ orgId: string;
51
+ };
52
+ deletes: number;
53
+ versionComments: string;
54
+ unchanged: number;
55
+ updatedOn: string;
56
+ versionName: string;
57
+ updates: number;
58
+ updatedById: string;
59
+ createdOn: string;
60
+ orgId: string;
61
+ familyItemsRemoved: number;
62
+ createdBy: string;
63
+ assortmentId: string;
64
+ id: string;
65
+ errors: number;
66
+ createdById: string;
67
+ adds: number;
68
+ })[];
69
+ export declare const plan1_across_month_DST: {
70
+ versionName: string;
71
+ createdOn: string;
72
+ id: string;
73
+ }[];
74
+ export declare const fall_2003_hydratedDetails: {
75
+ adds: ({
76
+ id: string;
77
+ item: {
78
+ createdById: string;
79
+ createdOn: string;
80
+ entityType: string;
81
+ flexFormula: any;
82
+ flexPLMTypePath: string;
83
+ flexSequence: number;
84
+ id: string;
85
+ isPrimary: boolean;
86
+ itemFamilyId: string;
87
+ lifecycleStage: string;
88
+ name: string;
89
+ optionGroup: string;
90
+ optionName: string;
91
+ orgId: string;
92
+ roles: string[];
93
+ typeId: string;
94
+ typePath: string;
95
+ updatedById: string;
96
+ updatedOn: string;
97
+ ChrisProp?: undefined;
98
+ chrisString?: undefined;
99
+ };
100
+ } | {
101
+ id: string;
102
+ item: {
103
+ ChrisProp: string;
104
+ createdById: string;
105
+ createdOn: string;
106
+ entityType: string;
107
+ flexFormula: any;
108
+ flexPLMTypePath: string;
109
+ flexSequence: number;
110
+ id: string;
111
+ itemFamilyId: string;
112
+ lifecycleStage: string;
113
+ name: string;
114
+ orgId: string;
115
+ roles: string[];
116
+ typeId: string;
117
+ typePath: string;
118
+ updatedById: string;
119
+ updatedOn: string;
120
+ isPrimary?: undefined;
121
+ optionGroup?: undefined;
122
+ optionName?: undefined;
123
+ chrisString?: undefined;
124
+ };
125
+ } | {
126
+ id: string;
127
+ item: {
128
+ createdById: string;
129
+ createdOn: string;
130
+ entityType: string;
131
+ flexFormula: any;
132
+ flexPLMTypePath: string;
133
+ flexSequence: number;
134
+ id: string;
135
+ itemFamilyId: string;
136
+ lifecycleStage: string;
137
+ name: string;
138
+ orgId: string;
139
+ roles: string[];
140
+ typeId: string;
141
+ typePath: string;
142
+ updatedById: string;
143
+ updatedOn: string;
144
+ isPrimary?: undefined;
145
+ optionGroup?: undefined;
146
+ optionName?: undefined;
147
+ ChrisProp?: undefined;
148
+ chrisString?: undefined;
149
+ };
150
+ } | {
151
+ id: string;
152
+ item: {
153
+ chrisString: string;
154
+ createdById: string;
155
+ createdOn: string;
156
+ entityType: string;
157
+ flexFormula: any;
158
+ flexPLMTypePath: string;
159
+ flexSequence: number;
160
+ id: string;
161
+ isPrimary: boolean;
162
+ itemFamilyId: string;
163
+ lifecycleStage: string;
164
+ name: string;
165
+ optionGroup: string;
166
+ optionName: string;
167
+ orgId: string;
168
+ roles: string[];
169
+ typeId: string;
170
+ typePath: string;
171
+ updatedById: string;
172
+ updatedOn: string;
173
+ ChrisProp?: undefined;
174
+ };
175
+ })[];
176
+ assortmentId: string;
177
+ deletes: any[];
178
+ errors: any[];
179
+ familyItemsRemoved: any[];
180
+ updates: any[];
181
+ versionComments: string;
182
+ versionName: string;
183
+ };
184
+ export declare const fall_2003_fullChange: {
185
+ assortmentItems: ({
186
+ assortmentId: string;
187
+ createdById: string;
188
+ createdOn: string;
189
+ id: string;
190
+ item: {
191
+ createdById: string;
192
+ createdOn: string;
193
+ flexFormula: any;
194
+ flexPLMTypePath: string;
195
+ flexSequence: number;
196
+ id: string;
197
+ isPrimary: boolean;
198
+ itemFamilyId: string;
199
+ lifecycleStage: string;
200
+ name: string;
201
+ optionGroup: string;
202
+ optionName: string;
203
+ orgId: string;
204
+ roles: string[];
205
+ typeId: string;
206
+ typePath: string;
207
+ updatedById: string;
208
+ updatedOn: string;
209
+ chrisString?: undefined;
210
+ ChrisProp?: undefined;
211
+ };
212
+ itemId: string;
213
+ orgId: string;
214
+ typeId: string;
215
+ typePath: string;
216
+ updatedById: string;
217
+ updatedOn: string;
218
+ } | {
219
+ assortmentId: string;
220
+ createdById: string;
221
+ createdOn: string;
222
+ id: string;
223
+ item: {
224
+ chrisString: string;
225
+ createdById: string;
226
+ createdOn: string;
227
+ flexFormula: any;
228
+ flexPLMTypePath: string;
229
+ flexSequence: number;
230
+ id: string;
231
+ isPrimary: boolean;
232
+ itemFamilyId: string;
233
+ lifecycleStage: string;
234
+ name: string;
235
+ optionGroup: string;
236
+ optionName: string;
237
+ orgId: string;
238
+ roles: string[];
239
+ typeId: string;
240
+ typePath: string;
241
+ updatedById: string;
242
+ updatedOn: string;
243
+ ChrisProp?: undefined;
244
+ };
245
+ itemId: string;
246
+ orgId: string;
247
+ typeId: string;
248
+ typePath: string;
249
+ updatedById: string;
250
+ updatedOn: string;
251
+ } | {
252
+ assortmentId: string;
253
+ createdById: string;
254
+ createdOn: string;
255
+ id: string;
256
+ item: {
257
+ createdById: string;
258
+ createdOn: string;
259
+ flexFormula: any;
260
+ flexPLMTypePath: string;
261
+ flexSequence: number;
262
+ id: string;
263
+ itemFamilyId: string;
264
+ lifecycleStage: string;
265
+ name: string;
266
+ orgId: string;
267
+ roles: string[];
268
+ typeId: string;
269
+ typePath: string;
270
+ updatedById: string;
271
+ updatedOn: string;
272
+ isPrimary?: undefined;
273
+ optionGroup?: undefined;
274
+ optionName?: undefined;
275
+ chrisString?: undefined;
276
+ ChrisProp?: undefined;
277
+ };
278
+ itemId: string;
279
+ orgId: string;
280
+ typeId: string;
281
+ typePath: string;
282
+ updatedById: string;
283
+ updatedOn: string;
284
+ } | {
285
+ assortmentId: string;
286
+ createdById: string;
287
+ createdOn: string;
288
+ id: string;
289
+ item: {
290
+ ChrisProp: string;
291
+ createdById: string;
292
+ createdOn: string;
293
+ flexFormula: any;
294
+ flexPLMTypePath: string;
295
+ flexSequence: number;
296
+ id: string;
297
+ itemFamilyId: string;
298
+ lifecycleStage: string;
299
+ name: string;
300
+ orgId: string;
301
+ roles: string[];
302
+ typeId: string;
303
+ typePath: string;
304
+ updatedById: string;
305
+ updatedOn: string;
306
+ isPrimary?: undefined;
307
+ optionGroup?: undefined;
308
+ optionName?: undefined;
309
+ chrisString?: undefined;
310
+ };
311
+ itemId: string;
312
+ orgId: string;
313
+ typeId: string;
314
+ typePath: string;
315
+ updatedById: string;
316
+ updatedOn: string;
317
+ })[];
318
+ assortmentType: string;
319
+ createdById: string;
320
+ createdForReference: string;
321
+ createdOn: string;
322
+ id: string;
323
+ name: string;
324
+ orgId: string;
325
+ rootWorkspaceId: string;
326
+ typeId: string;
327
+ typePath: string;
328
+ updatedById: string;
329
+ updatedOn: string;
330
+ workspaceId: string;
331
+ };
332
+ export declare const fall_2003_hydratedDetails_run2: {
333
+ adds: ({
334
+ id: string;
335
+ item: {
336
+ ChrisProp: string;
337
+ createdById: string;
338
+ createdOn: string;
339
+ entityType: string;
340
+ flexFormula: any;
341
+ flexPLMTypePath: string;
342
+ flexSequence: number;
343
+ id: string;
344
+ isPrimary: boolean;
345
+ itemFamilyId: string;
346
+ lifecycleStage: string;
347
+ name: string;
348
+ optionGroup: string;
349
+ optionName: string;
350
+ orgId: string;
351
+ roles: string[];
352
+ typeId: string;
353
+ typePath: string;
354
+ updatedById: string;
355
+ updatedOn: string;
356
+ };
357
+ } | {
358
+ id: string;
359
+ item: {
360
+ createdById: string;
361
+ createdOn: string;
362
+ entityType: string;
363
+ flexFormula: any;
364
+ flexPLMTypePath: string;
365
+ flexSequence: number;
366
+ id: string;
367
+ itemFamilyId: string;
368
+ lifecycleStage: string;
369
+ name: string;
370
+ orgId: string;
371
+ roles: string[];
372
+ typeId: string;
373
+ typePath: string;
374
+ updatedById: string;
375
+ updatedOn: string;
376
+ ChrisProp?: undefined;
377
+ isPrimary?: undefined;
378
+ optionGroup?: undefined;
379
+ optionName?: undefined;
380
+ };
381
+ } | {
382
+ id: string;
383
+ item: {
384
+ createdById: string;
385
+ createdOn: string;
386
+ entityType: string;
387
+ flexFormula: any;
388
+ flexPLMTypePath: string;
389
+ flexSequence: number;
390
+ id: string;
391
+ isPrimary: boolean;
392
+ itemFamilyId: string;
393
+ lifecycleStage: string;
394
+ name: string;
395
+ optionGroup: string;
396
+ optionName: string;
397
+ orgId: string;
398
+ roles: string[];
399
+ typeId: string;
400
+ typePath: string;
401
+ updatedById: string;
402
+ updatedOn: string;
403
+ ChrisProp?: undefined;
404
+ };
405
+ })[];
406
+ assortmentId: string;
407
+ deletes: ({
408
+ id: string;
409
+ item: {
410
+ createdById: string;
411
+ createdOn: string;
412
+ entityType: string;
413
+ flexFormula: any;
414
+ flexPLMTypePath: string;
415
+ flexSequence: number;
416
+ id: string;
417
+ isPrimary: boolean;
418
+ itemFamilyId: string;
419
+ lifecycleStage: string;
420
+ name: string;
421
+ optionGroup: string;
422
+ optionName: string;
423
+ orgId: string;
424
+ roles: string[];
425
+ typeId: string;
426
+ typePath: string;
427
+ updatedById: string;
428
+ updatedOn: string;
429
+ ChrisProp?: undefined;
430
+ };
431
+ } | {
432
+ id: string;
433
+ item: {
434
+ createdById: string;
435
+ createdOn: string;
436
+ entityType: string;
437
+ flexFormula: any;
438
+ flexPLMTypePath: string;
439
+ flexSequence: number;
440
+ id: string;
441
+ itemFamilyId: string;
442
+ lifecycleStage: string;
443
+ name: string;
444
+ orgId: string;
445
+ roles: string[];
446
+ typeId: string;
447
+ typePath: string;
448
+ updatedById: string;
449
+ updatedOn: string;
450
+ isPrimary?: undefined;
451
+ optionGroup?: undefined;
452
+ optionName?: undefined;
453
+ ChrisProp?: undefined;
454
+ };
455
+ } | {
456
+ id: string;
457
+ item: {
458
+ ChrisProp: string;
459
+ createdById: string;
460
+ createdOn: string;
461
+ entityType: string;
462
+ flexFormula: any;
463
+ flexPLMTypePath: string;
464
+ flexSequence: number;
465
+ id: string;
466
+ itemFamilyId: string;
467
+ lifecycleStage: string;
468
+ name: string;
469
+ orgId: string;
470
+ roles: string[];
471
+ typeId: string;
472
+ typePath: string;
473
+ updatedById: string;
474
+ updatedOn: string;
475
+ isPrimary?: undefined;
476
+ optionGroup?: undefined;
477
+ optionName?: undefined;
478
+ };
479
+ })[];
480
+ errors: any[];
481
+ familyItemsRemoved: {
482
+ assortmentId: string;
483
+ createdById: string;
484
+ createdOn: string;
485
+ entityType: string;
486
+ id: string;
487
+ item: {
488
+ ChrisProp: string;
489
+ createdById: string;
490
+ createdOn: string;
491
+ entityType: string;
492
+ flexFormula: any;
493
+ flexPLMTypePath: string;
494
+ flexSequence: number;
495
+ id: string;
496
+ itemFamilyId: string;
497
+ lifecycleStage: string;
498
+ name: string;
499
+ orgId: string;
500
+ roles: string[];
501
+ typeId: string;
502
+ typePath: string;
503
+ updatedById: string;
504
+ updatedOn: string;
505
+ };
506
+ itemId: string;
507
+ orgId: string;
508
+ typeId: string;
509
+ typePath: string;
510
+ updatedById: string;
511
+ updatedOn: string;
512
+ }[];
513
+ updates: any[];
514
+ versionComments: string;
515
+ versionName: string;
516
+ };
517
+ export declare const fall_2003_fullChange_run2: {
518
+ assortmentItems: ({
519
+ assortmentId: string;
520
+ createdById: string;
521
+ createdOn: string;
522
+ entityType: string;
523
+ id: string;
524
+ item: {
525
+ ChrisProp: string;
526
+ createdById: string;
527
+ createdOn: string;
528
+ entityType: string;
529
+ flexFormula: any;
530
+ flexPLMTypePath: string;
531
+ flexSequence: number;
532
+ id: string;
533
+ isPrimary: boolean;
534
+ itemFamilyId: string;
535
+ lifecycleStage: string;
536
+ name: string;
537
+ optionGroup: string;
538
+ optionName: string;
539
+ orgId: string;
540
+ roles: string[];
541
+ typeId: string;
542
+ typePath: string;
543
+ updatedById: string;
544
+ updatedOn: string;
545
+ chrisString?: undefined;
546
+ };
547
+ itemId: string;
548
+ orgId: string;
549
+ typeId: string;
550
+ typePath: string;
551
+ updatedById: string;
552
+ updatedOn: string;
553
+ projectItem?: undefined;
554
+ } | {
555
+ assortmentId: string;
556
+ createdById: string;
557
+ createdOn: string;
558
+ entityType: string;
559
+ id: string;
560
+ item: {
561
+ createdById: string;
562
+ createdOn: string;
563
+ entityType: string;
564
+ flexFormula: any;
565
+ flexPLMTypePath: string;
566
+ flexSequence: number;
567
+ id: string;
568
+ isPrimary: boolean;
569
+ itemFamilyId: string;
570
+ lifecycleStage: string;
571
+ name: string;
572
+ optionGroup: string;
573
+ optionName: string;
574
+ orgId: string;
575
+ roles: string[];
576
+ typeId: string;
577
+ typePath: string;
578
+ updatedById: string;
579
+ updatedOn: string;
580
+ ChrisProp?: undefined;
581
+ chrisString?: undefined;
582
+ };
583
+ itemId: string;
584
+ orgId: string;
585
+ projectItem: {
586
+ createdById: string;
587
+ createdOn: string;
588
+ entityType: string;
589
+ id: string;
590
+ itemId: string;
591
+ orgId: string;
592
+ piNumber: number;
593
+ projectId: string;
594
+ typeId: string;
595
+ typePath: string;
596
+ updatedById: string;
597
+ updatedOn: string;
598
+ };
599
+ typeId: string;
600
+ typePath: string;
601
+ updatedById: string;
602
+ updatedOn: string;
603
+ } | {
604
+ assortmentId: string;
605
+ createdById: string;
606
+ createdOn: string;
607
+ entityType: string;
608
+ id: string;
609
+ item: {
610
+ chrisString: string;
611
+ createdById: string;
612
+ createdOn: string;
613
+ entityType: string;
614
+ flexFormula: any;
615
+ flexPLMTypePath: string;
616
+ flexSequence: number;
617
+ id: string;
618
+ isPrimary: boolean;
619
+ itemFamilyId: string;
620
+ lifecycleStage: string;
621
+ name: string;
622
+ optionGroup: string;
623
+ optionName: string;
624
+ orgId: string;
625
+ roles: string[];
626
+ typeId: string;
627
+ typePath: string;
628
+ updatedById: string;
629
+ updatedOn: string;
630
+ ChrisProp?: undefined;
631
+ };
632
+ itemId: string;
633
+ orgId: string;
634
+ projectItem: {
635
+ createdById: string;
636
+ createdOn: string;
637
+ entityType: string;
638
+ id: string;
639
+ itemId: string;
640
+ orgId: string;
641
+ piNumber: number;
642
+ projectId: string;
643
+ typeId: string;
644
+ typePath: string;
645
+ updatedById: string;
646
+ updatedOn: string;
647
+ };
648
+ typeId: string;
649
+ typePath: string;
650
+ updatedById: string;
651
+ updatedOn: string;
652
+ } | {
653
+ assortmentId: string;
654
+ createdById: string;
655
+ createdOn: string;
656
+ entityType: string;
657
+ id: string;
658
+ item: {
659
+ createdById: string;
660
+ createdOn: string;
661
+ entityType: string;
662
+ flexFormula: any;
663
+ flexPLMTypePath: string;
664
+ flexSequence: number;
665
+ id: string;
666
+ itemFamilyId: string;
667
+ lifecycleStage: string;
668
+ name: string;
669
+ orgId: string;
670
+ roles: string[];
671
+ typeId: string;
672
+ typePath: string;
673
+ updatedById: string;
674
+ updatedOn: string;
675
+ ChrisProp?: undefined;
676
+ isPrimary?: undefined;
677
+ optionGroup?: undefined;
678
+ optionName?: undefined;
679
+ chrisString?: undefined;
680
+ };
681
+ itemId: string;
682
+ orgId: string;
683
+ typeId: string;
684
+ typePath: string;
685
+ updatedById: string;
686
+ updatedOn: string;
687
+ projectItem?: undefined;
688
+ } | {
689
+ assortmentId: string;
690
+ createdById: string;
691
+ createdOn: string;
692
+ entityType: string;
693
+ id: string;
694
+ item: {
695
+ createdById: string;
696
+ createdOn: string;
697
+ entityType: string;
698
+ flexFormula: any;
699
+ flexPLMTypePath: string;
700
+ flexSequence: number;
701
+ id: string;
702
+ isPrimary: boolean;
703
+ itemFamilyId: string;
704
+ lifecycleStage: string;
705
+ name: string;
706
+ optionGroup: string;
707
+ optionName: string;
708
+ orgId: string;
709
+ roles: string[];
710
+ typeId: string;
711
+ typePath: string;
712
+ updatedById: string;
713
+ updatedOn: string;
714
+ ChrisProp?: undefined;
715
+ chrisString?: undefined;
716
+ };
717
+ itemId: string;
718
+ orgId: string;
719
+ typeId: string;
720
+ typePath: string;
721
+ updatedById: string;
722
+ updatedOn: string;
723
+ projectItem?: undefined;
724
+ } | {
725
+ assortmentId: string;
726
+ createdById: string;
727
+ createdOn: string;
728
+ entityType: string;
729
+ id: string;
730
+ item: {
731
+ ChrisProp: string;
732
+ createdById: string;
733
+ createdOn: string;
734
+ entityType: string;
735
+ flexFormula: any;
736
+ flexPLMTypePath: string;
737
+ flexSequence: number;
738
+ id: string;
739
+ itemFamilyId: string;
740
+ lifecycleStage: string;
741
+ name: string;
742
+ orgId: string;
743
+ roles: string[];
744
+ typeId: string;
745
+ typePath: string;
746
+ updatedById: string;
747
+ updatedOn: string;
748
+ isPrimary?: undefined;
749
+ optionGroup?: undefined;
750
+ optionName?: undefined;
751
+ chrisString?: undefined;
752
+ };
753
+ itemId: string;
754
+ orgId: string;
755
+ typeId: string;
756
+ typePath: string;
757
+ updatedById: string;
758
+ updatedOn: string;
759
+ projectItem?: undefined;
760
+ })[];
761
+ assortmentType: string;
762
+ createdById: string;
763
+ createdForReference: string;
764
+ createdOn: string;
765
+ entityType: string;
766
+ id: string;
767
+ name: string;
768
+ orgId: string;
769
+ rootWorkspaceId: string;
770
+ typeId: string;
771
+ typePath: string;
772
+ updatedById: string;
773
+ updatedOn: string;
774
+ workspaceId: string;
775
+ };
776
+ export declare const fall_2003_deleteChanges_run2: ({
777
+ id: string;
778
+ itemId: string;
779
+ item: {
780
+ createdById: string;
781
+ createdOn: string;
782
+ entityType: string;
783
+ flexFormula: any;
784
+ flexPLMTypePath: string;
785
+ flexSequence: number;
786
+ id: string;
787
+ isPrimary: boolean;
788
+ itemFamilyId: string;
789
+ lifecycleStage: string;
790
+ name: string;
791
+ optionGroup: string;
792
+ optionName: string;
793
+ orgId: string;
794
+ roles: string[];
795
+ typeId: string;
796
+ typePath: string;
797
+ updatedById: string;
798
+ updatedOn: string;
799
+ sentToPLM?: undefined;
800
+ ChrisProp?: undefined;
801
+ };
802
+ } | {
803
+ id: string;
804
+ itemId: string;
805
+ item: {
806
+ createdById: string;
807
+ createdOn: string;
808
+ entityType: string;
809
+ flexFormula: any;
810
+ flexPLMTypePath: string;
811
+ flexSequence: number;
812
+ id: string;
813
+ itemFamilyId: string;
814
+ lifecycleStage: string;
815
+ name: string;
816
+ orgId: string;
817
+ roles: string[];
818
+ typeId: string;
819
+ typePath: string;
820
+ updatedById: string;
821
+ updatedOn: string;
822
+ isPrimary?: undefined;
823
+ optionGroup?: undefined;
824
+ optionName?: undefined;
825
+ sentToPLM?: undefined;
826
+ ChrisProp?: undefined;
827
+ };
828
+ } | {
829
+ id: string;
830
+ itemId: string;
831
+ item: {
832
+ createdById: string;
833
+ createdOn: string;
834
+ entityType: string;
835
+ flexFormula: any;
836
+ flexPLMTypePath: string;
837
+ flexSequence: number;
838
+ id: string;
839
+ isPrimary: boolean;
840
+ itemFamilyId: string;
841
+ lifecycleStage: string;
842
+ name: string;
843
+ optionGroup: string;
844
+ optionName: string;
845
+ orgId: string;
846
+ roles: string[];
847
+ sentToPLM: boolean;
848
+ typeId: string;
849
+ typePath: string;
850
+ updatedById: string;
851
+ updatedOn: string;
852
+ ChrisProp?: undefined;
853
+ };
854
+ } | {
855
+ id: string;
856
+ itemId: string;
857
+ item: {
858
+ ChrisProp: string;
859
+ createdById: string;
860
+ createdOn: string;
861
+ entityType: string;
862
+ flexFormula: any;
863
+ flexPLMTypePath: string;
864
+ flexSequence: number;
865
+ id: string;
866
+ itemFamilyId: string;
867
+ lifecycleStage: string;
868
+ name: string;
869
+ orgId: string;
870
+ roles: string[];
871
+ typeId: string;
872
+ typePath: string;
873
+ updatedById: string;
874
+ updatedOn: string;
875
+ isPrimary?: undefined;
876
+ optionGroup?: undefined;
877
+ optionName?: undefined;
878
+ sentToPLM?: undefined;
879
+ };
880
+ })[];
881
+ export declare const fall_2003_fedMapping: {
882
+ reference: string;
883
+ mappedReference: string;
884
+ }[];
885
+ export declare const apc_2bOWR2j9R0QThDVu_delete_history: ({
886
+ adds: number;
887
+ assortmentBaseline: {
888
+ assortmentItems: ({
889
+ assortItemString: string;
890
+ entityType: string;
891
+ familyProjectItem: {
892
+ id: string;
893
+ itemId: string;
894
+ projectId: string;
895
+ roles: string[];
896
+ };
897
+ id: string;
898
+ item: {
899
+ id: string;
900
+ itemFamily: {
901
+ id: string;
902
+ itemFamilyId: string;
903
+ name: string;
904
+ roles: string[];
905
+ itemNumber?: undefined;
906
+ };
907
+ itemFamilyId: string;
908
+ itemNumber: number;
909
+ name: string;
910
+ optionGroup: string;
911
+ optionName: string;
912
+ roles: string[];
913
+ createdOn?: undefined;
914
+ };
915
+ itemId: string;
916
+ projectItem: {
917
+ id: string;
918
+ itemId: string;
919
+ piNumber: number;
920
+ piOptionNumber: number;
921
+ piString: string;
922
+ projectId: string;
923
+ roles: string[];
924
+ };
925
+ } | {
926
+ assortItemString: string;
927
+ entityType: string;
928
+ familyProjectItem: {
929
+ id: string;
930
+ itemId: string;
931
+ projectId: string;
932
+ roles: string[];
933
+ };
934
+ id: string;
935
+ item: {
936
+ createdOn: string;
937
+ id: string;
938
+ itemFamily: {
939
+ id: string;
940
+ itemFamilyId: string;
941
+ itemNumber: number;
942
+ name: string;
943
+ roles: string[];
944
+ };
945
+ itemFamilyId: string;
946
+ itemNumber: number;
947
+ name: string;
948
+ optionGroup: string;
949
+ optionName: string;
950
+ roles: string[];
951
+ };
952
+ itemId: string;
953
+ projectItem: {
954
+ id: string;
955
+ itemId: string;
956
+ piNumber: number;
957
+ piOptionNumber: number;
958
+ piString: string;
959
+ projectId: string;
960
+ roles: string[];
961
+ };
962
+ } | {
963
+ assortItemString: string;
964
+ entityType: string;
965
+ familyProjectItem: {
966
+ id: string;
967
+ itemId: string;
968
+ projectId: string;
969
+ roles: string[];
970
+ };
971
+ id: string;
972
+ item: {
973
+ id: string;
974
+ itemFamily: {
975
+ id: string;
976
+ itemFamilyId: string;
977
+ name: string;
978
+ roles: string[];
979
+ itemNumber?: undefined;
980
+ };
981
+ itemFamilyId: string;
982
+ name: string;
983
+ optionGroup: string;
984
+ optionName: string;
985
+ roles: string[];
986
+ itemNumber?: undefined;
987
+ createdOn?: undefined;
988
+ };
989
+ itemId: string;
990
+ projectItem: {
991
+ id: string;
992
+ itemId: string;
993
+ piNumber: number;
994
+ piOptionNumber: number;
995
+ piString: string;
996
+ projectId: string;
997
+ roles: string[];
998
+ };
999
+ } | {
1000
+ assortItemString: string;
1001
+ entityType: string;
1002
+ familyProjectItem: {
1003
+ id: string;
1004
+ itemId: string;
1005
+ projectId: string;
1006
+ roles: string[];
1007
+ };
1008
+ id: string;
1009
+ item: {
1010
+ id: string;
1011
+ itemFamily: {
1012
+ id: string;
1013
+ itemFamilyId: string;
1014
+ itemNumber: number;
1015
+ name: string;
1016
+ roles: string[];
1017
+ };
1018
+ itemFamilyId: string;
1019
+ itemNumber: number;
1020
+ name: string;
1021
+ optionGroup: string;
1022
+ optionName: string;
1023
+ roles: string[];
1024
+ createdOn?: undefined;
1025
+ };
1026
+ itemId: string;
1027
+ projectItem: {
1028
+ id: string;
1029
+ itemId: string;
1030
+ piNumber: number;
1031
+ piOptionNumber: number;
1032
+ piString: string;
1033
+ projectId: string;
1034
+ roles: string[];
1035
+ };
1036
+ })[];
1037
+ assortmentType: string;
1038
+ entityType: string;
1039
+ id: string;
1040
+ name: string;
1041
+ createdForReference?: undefined;
1042
+ createdOn?: undefined;
1043
+ };
1044
+ assortmentBaselineDownloadLink: string;
1045
+ assortmentId: string;
1046
+ createdOn: string;
1047
+ deleteData: any[];
1048
+ deleteDataDownloadLink: string;
1049
+ deletes: number;
1050
+ detail: {
1051
+ adds: ({
1052
+ assortItemString: string;
1053
+ id: string;
1054
+ item: {
1055
+ entityType: string;
1056
+ id: string;
1057
+ itemFamilyId: string;
1058
+ itemNumber: number;
1059
+ name: string;
1060
+ optionGroup: string;
1061
+ optionName: string;
1062
+ roles: string[];
1063
+ };
1064
+ } | {
1065
+ assortItemString: string;
1066
+ id: string;
1067
+ item: {
1068
+ id: string;
1069
+ itemFamilyId: string;
1070
+ itemNumber: number;
1071
+ name: string;
1072
+ optionGroup: string;
1073
+ optionName: string;
1074
+ roles: string[];
1075
+ entityType?: undefined;
1076
+ };
1077
+ })[];
1078
+ assortmentId: string;
1079
+ deletes: any[];
1080
+ errors: any[];
1081
+ familyItemsRemoved: any[];
1082
+ updates: any[];
1083
+ versionComments: string;
1084
+ versionName: string;
1085
+ };
1086
+ detailDownloadLink: string;
1087
+ errors: number;
1088
+ familyItemsRemoved: number;
1089
+ hydratedDetailDownloadLink: string;
1090
+ id: string;
1091
+ summary: {};
1092
+ unchanged: number;
1093
+ updates: number;
1094
+ versionComments: string;
1095
+ versionName: string;
1096
+ createdById?: undefined;
1097
+ } | {
1098
+ adds: number;
1099
+ assortmentBaseline: {
1100
+ assortmentItems: {
1101
+ assortItemString: string;
1102
+ entityType: string;
1103
+ familyProjectItem: {
1104
+ id: string;
1105
+ itemId: string;
1106
+ projectId: string;
1107
+ roles: string[];
1108
+ };
1109
+ id: string;
1110
+ item: {
1111
+ id: string;
1112
+ itemFamily: {
1113
+ id: string;
1114
+ itemFamilyId: string;
1115
+ itemNumber: number;
1116
+ name: string;
1117
+ roles: string[];
1118
+ };
1119
+ itemFamilyId: string;
1120
+ itemNumber: number;
1121
+ name: string;
1122
+ optionGroup: string;
1123
+ optionName: string;
1124
+ roles: string[];
1125
+ };
1126
+ itemId: string;
1127
+ projectItem: {
1128
+ id: string;
1129
+ itemId: string;
1130
+ piNumber: number;
1131
+ piOptionNumber: number;
1132
+ piString: string;
1133
+ projectId: string;
1134
+ roles: string[];
1135
+ };
1136
+ }[];
1137
+ assortmentType: string;
1138
+ createdForReference: string;
1139
+ entityType: string;
1140
+ id: string;
1141
+ name: string;
1142
+ createdOn?: undefined;
1143
+ };
1144
+ assortmentBaselineDownloadLink: string;
1145
+ assortmentId: string;
1146
+ createdOn: string;
1147
+ deleteData: {
1148
+ assortItemString: string;
1149
+ assortmentId: string;
1150
+ entityType: string;
1151
+ familyProjectItem: {
1152
+ formulaTest: number;
1153
+ id: string;
1154
+ itemId: string;
1155
+ projectId: string;
1156
+ roles: string[];
1157
+ updatedOn: string;
1158
+ };
1159
+ id: string;
1160
+ item: {
1161
+ entityType: string;
1162
+ id: string;
1163
+ itemFamily: {
1164
+ id: string;
1165
+ itemFamilyId: string;
1166
+ itemNumber: number;
1167
+ name: string;
1168
+ roles: string[];
1169
+ };
1170
+ itemFamilyId: string;
1171
+ itemNumber: number;
1172
+ name: string;
1173
+ optionGroup: string;
1174
+ optionName: string;
1175
+ roles: string[];
1176
+ };
1177
+ itemId: string;
1178
+ projectItem: {
1179
+ id: string;
1180
+ itemId: string;
1181
+ piOptionNumber: number;
1182
+ piString: string;
1183
+ projectId: string;
1184
+ roles: string[];
1185
+ };
1186
+ }[];
1187
+ deleteDataDownloadLink: string;
1188
+ deletes: number;
1189
+ detail: {
1190
+ adds: any[];
1191
+ assortmentId: string;
1192
+ deletes: {
1193
+ assortItemString: string;
1194
+ id: string;
1195
+ item: {
1196
+ entityType: string;
1197
+ id: string;
1198
+ itemFamilyId: string;
1199
+ itemNumber: number;
1200
+ name: string;
1201
+ optionGroup: string;
1202
+ optionName: string;
1203
+ roles: string[];
1204
+ };
1205
+ }[];
1206
+ errors: any[];
1207
+ familyItemsRemoved: any[];
1208
+ updates: any[];
1209
+ versionComments: string;
1210
+ versionName: string;
1211
+ };
1212
+ detailDownloadLink: string;
1213
+ errors: number;
1214
+ familyItemsRemoved: number;
1215
+ hydratedDetailDownloadLink: string;
1216
+ id: string;
1217
+ summary: {};
1218
+ unchanged: number;
1219
+ updates: number;
1220
+ versionComments: string;
1221
+ versionName: string;
1222
+ createdById?: undefined;
1223
+ } | {
1224
+ adds: number;
1225
+ assortmentBaseline: {
1226
+ assortmentItems: ({
1227
+ assortItemString: string;
1228
+ assortmentId: string;
1229
+ entityType: string;
1230
+ familyProjectItem: {
1231
+ id: string;
1232
+ itemId: string;
1233
+ projectId: string;
1234
+ roles: string[];
1235
+ createdOn?: undefined;
1236
+ };
1237
+ id: string;
1238
+ item: {
1239
+ id: string;
1240
+ itemFamily: {
1241
+ id: string;
1242
+ itemFamilyId: string;
1243
+ itemNumber: number;
1244
+ name: string;
1245
+ roles: string[];
1246
+ };
1247
+ itemFamilyId: string;
1248
+ itemNumber: number;
1249
+ name: string;
1250
+ optionGroup: string;
1251
+ optionName: string;
1252
+ roles: string[];
1253
+ };
1254
+ itemId: string;
1255
+ projectItem: {
1256
+ id: string;
1257
+ itemId: string;
1258
+ piNumber: number;
1259
+ piOptionNumber: number;
1260
+ piString: string;
1261
+ projectId: string;
1262
+ roles: string[];
1263
+ };
1264
+ } | {
1265
+ assortItemString: string;
1266
+ assortmentId: string;
1267
+ entityType: string;
1268
+ familyProjectItem: {
1269
+ createdOn: string;
1270
+ id: string;
1271
+ itemId: string;
1272
+ projectId: string;
1273
+ roles: string[];
1274
+ };
1275
+ id: string;
1276
+ item: {
1277
+ id: string;
1278
+ itemFamily: {
1279
+ id: string;
1280
+ itemFamilyId: string;
1281
+ itemNumber: number;
1282
+ name: string;
1283
+ roles: string[];
1284
+ };
1285
+ itemFamilyId: string;
1286
+ itemNumber: number;
1287
+ name: string;
1288
+ optionGroup: string;
1289
+ optionName: string;
1290
+ roles: string[];
1291
+ };
1292
+ itemId: string;
1293
+ projectItem: {
1294
+ id: string;
1295
+ itemId: string;
1296
+ piNumber: number;
1297
+ piOptionNumber: number;
1298
+ piString: string;
1299
+ projectId: string;
1300
+ roles: string[];
1301
+ };
1302
+ })[];
1303
+ assortmentType: string;
1304
+ createdOn: string;
1305
+ entityType: string;
1306
+ id: string;
1307
+ name: string;
1308
+ createdForReference?: undefined;
1309
+ };
1310
+ assortmentBaselineDownloadLink: string;
1311
+ assortmentId: string;
1312
+ createdById: string;
1313
+ createdOn: string;
1314
+ deleteData: {
1315
+ assortItemString: string;
1316
+ assortmentId: string;
1317
+ createdOn: string;
1318
+ entityType: string;
1319
+ familyProjectItem: {
1320
+ id: string;
1321
+ itemId: string;
1322
+ projectId: string;
1323
+ roles: string[];
1324
+ };
1325
+ id: string;
1326
+ item: {
1327
+ entityType: string;
1328
+ id: string;
1329
+ itemFamily: {
1330
+ id: string;
1331
+ itemFamilyId: string;
1332
+ itemNumber: number;
1333
+ name: string;
1334
+ roles: string[];
1335
+ };
1336
+ itemFamilyId: string;
1337
+ itemNumber: number;
1338
+ name: string;
1339
+ optionGroup: string;
1340
+ optionName: string;
1341
+ roles: string[];
1342
+ };
1343
+ itemId: string;
1344
+ projectItem: {
1345
+ id: string;
1346
+ itemId: string;
1347
+ piNumber: number;
1348
+ piOptionNumber: number;
1349
+ piString: string;
1350
+ projectId: string;
1351
+ roles: string[];
1352
+ };
1353
+ }[];
1354
+ deleteDataDownloadLink: string;
1355
+ deletes: number;
1356
+ detail: {
1357
+ adds: any[];
1358
+ assortmentId: string;
1359
+ deletes: {
1360
+ assortItemString: string;
1361
+ id: string;
1362
+ item: {
1363
+ entityType: string;
1364
+ id: string;
1365
+ itemFamilyId: string;
1366
+ itemNumber: number;
1367
+ name: string;
1368
+ optionGroup: string;
1369
+ optionName: string;
1370
+ roles: string[];
1371
+ };
1372
+ }[];
1373
+ errors: any[];
1374
+ familyItemsRemoved: any[];
1375
+ updates: any[];
1376
+ versionComments: string;
1377
+ versionName: string;
1378
+ };
1379
+ detailDownloadLink: string;
1380
+ errors: number;
1381
+ familyItemsRemoved: number;
1382
+ hydratedDetailDownloadLink: string;
1383
+ id: string;
1384
+ summary: {};
1385
+ unchanged: number;
1386
+ updates: number;
1387
+ versionComments: string;
1388
+ versionName: string;
1389
+ })[];