@d19n/youfibre-odin-sdk 2.0.161 → 2.0.163
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.
|
@@ -22,7 +22,7 @@ export interface CreateOrderKciMessage extends OdinRecordCreatedEvent<CreateOrde
|
|
|
22
22
|
* Properties for CreateOrderKci action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 3
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 8
|
|
26
26
|
*/
|
|
27
27
|
export interface CreateOrderKciProperties {
|
|
28
28
|
/**
|
|
@@ -98,6 +98,13 @@ export interface CreateOrderKciProperties {
|
|
|
98
98
|
* @type {ENUM}
|
|
99
99
|
*/
|
|
100
100
|
AppointmentTimeBlock?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
* Tenant Work Order Reference
|
|
103
|
+
*
|
|
104
|
+
* Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
105
|
+
* @type {TEXT}
|
|
106
|
+
*/
|
|
107
|
+
TenantWorkOrderReference?: string | null;
|
|
101
108
|
}
|
|
102
109
|
/**
|
|
103
110
|
* CreateOrderKci
|
|
@@ -53,6 +53,19 @@ export declare enum OrderKciEntityTypes {
|
|
|
53
53
|
/** There is a (potential) problem that is not causing a delay yet */
|
|
54
54
|
WARNING = "WARNING"
|
|
55
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* Valid values for OrderKci.AppointmentTimeBlock
|
|
58
|
+
*
|
|
59
|
+
* Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
60
|
+
*
|
|
61
|
+
* @remarks Available options:
|
|
62
|
+
* - `AM`
|
|
63
|
+
* - `PM`
|
|
64
|
+
*/
|
|
65
|
+
export declare enum OrderKciAppointmentTimeBlock {
|
|
66
|
+
AM = "AM",
|
|
67
|
+
PM = "PM"
|
|
68
|
+
}
|
|
56
69
|
/**
|
|
57
70
|
* Property keys for OrderKci
|
|
58
71
|
* Use these constants instead of string literals for type safety
|
|
@@ -74,10 +87,12 @@ export declare enum OrderKciPropertyKeys {
|
|
|
74
87
|
SequenceNumber = "SequenceNumber",
|
|
75
88
|
/** Supplier's reason or problem codes, comma-separated (where applicable) */
|
|
76
89
|
SupplierCodes = "SupplierCodes",
|
|
77
|
-
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). */
|
|
90
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate. */
|
|
78
91
|
AppointmentDate = "AppointmentDate",
|
|
79
|
-
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. */
|
|
80
|
-
AppointmentTimeBlock = "AppointmentTimeBlock"
|
|
92
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock. */
|
|
93
|
+
AppointmentTimeBlock = "AppointmentTimeBlock",
|
|
94
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO. */
|
|
95
|
+
TenantWorkOrderReference = "TenantWorkOrderReference"
|
|
81
96
|
}
|
|
82
97
|
/**
|
|
83
98
|
* Properties for OrderKci records
|
|
@@ -125,6 +140,25 @@ export interface OrderKciProperties {
|
|
|
125
140
|
* @type {TEXT}
|
|
126
141
|
*/
|
|
127
142
|
SupplierCodes: string;
|
|
143
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
144
|
+
*
|
|
145
|
+
* @type {DATE}
|
|
146
|
+
* @default
|
|
147
|
+
*/
|
|
148
|
+
AppointmentDate: string;
|
|
149
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
150
|
+
*
|
|
151
|
+
* @type {ENUM}
|
|
152
|
+
* @default
|
|
153
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
154
|
+
*/
|
|
155
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
156
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
157
|
+
*
|
|
158
|
+
* @type {TEXT}
|
|
159
|
+
* @default
|
|
160
|
+
*/
|
|
161
|
+
TenantWorkOrderReference: string;
|
|
128
162
|
}
|
|
129
163
|
/**
|
|
130
164
|
* Properties for ACKNOWLEDGED OrderKci records
|
|
@@ -172,6 +206,25 @@ export interface AcknowledgedOrderKciProperties {
|
|
|
172
206
|
* @type {TEXT}
|
|
173
207
|
*/
|
|
174
208
|
SupplierCodes: string;
|
|
209
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
210
|
+
*
|
|
211
|
+
* @type {DATE}
|
|
212
|
+
* @default
|
|
213
|
+
*/
|
|
214
|
+
AppointmentDate: string;
|
|
215
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
216
|
+
*
|
|
217
|
+
* @type {ENUM}
|
|
218
|
+
* @default
|
|
219
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
220
|
+
*/
|
|
221
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
222
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
223
|
+
*
|
|
224
|
+
* @type {TEXT}
|
|
225
|
+
* @default
|
|
226
|
+
*/
|
|
227
|
+
TenantWorkOrderReference: string;
|
|
175
228
|
}
|
|
176
229
|
/**
|
|
177
230
|
* Properties for ADDITIONAL OrderKci records
|
|
@@ -219,6 +272,25 @@ export interface AdditionalOrderKciProperties {
|
|
|
219
272
|
* @type {TEXT}
|
|
220
273
|
*/
|
|
221
274
|
SupplierCodes: string;
|
|
275
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
276
|
+
*
|
|
277
|
+
* @type {DATE}
|
|
278
|
+
* @default
|
|
279
|
+
*/
|
|
280
|
+
AppointmentDate: string;
|
|
281
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
282
|
+
*
|
|
283
|
+
* @type {ENUM}
|
|
284
|
+
* @default
|
|
285
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
286
|
+
*/
|
|
287
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
288
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
289
|
+
*
|
|
290
|
+
* @type {TEXT}
|
|
291
|
+
* @default
|
|
292
|
+
*/
|
|
293
|
+
TenantWorkOrderReference: string;
|
|
222
294
|
}
|
|
223
295
|
/**
|
|
224
296
|
* Properties for AMENDED OrderKci records
|
|
@@ -266,6 +338,25 @@ export interface AmendedOrderKciProperties {
|
|
|
266
338
|
* @type {TEXT}
|
|
267
339
|
*/
|
|
268
340
|
SupplierCodes: string;
|
|
341
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
342
|
+
*
|
|
343
|
+
* @type {DATE}
|
|
344
|
+
* @default
|
|
345
|
+
*/
|
|
346
|
+
AppointmentDate: string;
|
|
347
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
348
|
+
*
|
|
349
|
+
* @type {ENUM}
|
|
350
|
+
* @default
|
|
351
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
352
|
+
*/
|
|
353
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
354
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
355
|
+
*
|
|
356
|
+
* @type {TEXT}
|
|
357
|
+
* @default
|
|
358
|
+
*/
|
|
359
|
+
TenantWorkOrderReference: string;
|
|
269
360
|
}
|
|
270
361
|
/**
|
|
271
362
|
* Properties for AMENDMENT_REJECTED OrderKci records
|
|
@@ -313,6 +404,25 @@ export interface AmendmentRejectedOrderKciProperties {
|
|
|
313
404
|
* @type {TEXT}
|
|
314
405
|
*/
|
|
315
406
|
SupplierCodes: string;
|
|
407
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
408
|
+
*
|
|
409
|
+
* @type {DATE}
|
|
410
|
+
* @default
|
|
411
|
+
*/
|
|
412
|
+
AppointmentDate: string;
|
|
413
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
414
|
+
*
|
|
415
|
+
* @type {ENUM}
|
|
416
|
+
* @default
|
|
417
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
418
|
+
*/
|
|
419
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
420
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
421
|
+
*
|
|
422
|
+
* @type {TEXT}
|
|
423
|
+
* @default
|
|
424
|
+
*/
|
|
425
|
+
TenantWorkOrderReference: string;
|
|
316
426
|
}
|
|
317
427
|
/**
|
|
318
428
|
* Properties for CANCELLATION_REJECTED OrderKci records
|
|
@@ -360,6 +470,25 @@ export interface CancellationRejectedOrderKciProperties {
|
|
|
360
470
|
* @type {TEXT}
|
|
361
471
|
*/
|
|
362
472
|
SupplierCodes: string;
|
|
473
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
474
|
+
*
|
|
475
|
+
* @type {DATE}
|
|
476
|
+
* @default
|
|
477
|
+
*/
|
|
478
|
+
AppointmentDate: string;
|
|
479
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
480
|
+
*
|
|
481
|
+
* @type {ENUM}
|
|
482
|
+
* @default
|
|
483
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
484
|
+
*/
|
|
485
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
486
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
487
|
+
*
|
|
488
|
+
* @type {TEXT}
|
|
489
|
+
* @default
|
|
490
|
+
*/
|
|
491
|
+
TenantWorkOrderReference: string;
|
|
363
492
|
}
|
|
364
493
|
/**
|
|
365
494
|
* Properties for CANCELLED OrderKci records
|
|
@@ -407,6 +536,25 @@ export interface CancelledOrderKciProperties {
|
|
|
407
536
|
* @type {TEXT}
|
|
408
537
|
*/
|
|
409
538
|
SupplierCodes: string;
|
|
539
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
540
|
+
*
|
|
541
|
+
* @type {DATE}
|
|
542
|
+
* @default
|
|
543
|
+
*/
|
|
544
|
+
AppointmentDate: string;
|
|
545
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
546
|
+
*
|
|
547
|
+
* @type {ENUM}
|
|
548
|
+
* @default
|
|
549
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
550
|
+
*/
|
|
551
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
552
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
553
|
+
*
|
|
554
|
+
* @type {TEXT}
|
|
555
|
+
* @default
|
|
556
|
+
*/
|
|
557
|
+
TenantWorkOrderReference: string;
|
|
410
558
|
}
|
|
411
559
|
/**
|
|
412
560
|
* Properties for COMMITTED OrderKci records
|
|
@@ -454,6 +602,25 @@ export interface CommittedOrderKciProperties {
|
|
|
454
602
|
* @type {TEXT}
|
|
455
603
|
*/
|
|
456
604
|
SupplierCodes: string;
|
|
605
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
606
|
+
*
|
|
607
|
+
* @type {DATE}
|
|
608
|
+
* @default
|
|
609
|
+
*/
|
|
610
|
+
AppointmentDate: string;
|
|
611
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
612
|
+
*
|
|
613
|
+
* @type {ENUM}
|
|
614
|
+
* @default
|
|
615
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
616
|
+
*/
|
|
617
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
618
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
619
|
+
*
|
|
620
|
+
* @type {TEXT}
|
|
621
|
+
* @default
|
|
622
|
+
*/
|
|
623
|
+
TenantWorkOrderReference: string;
|
|
457
624
|
}
|
|
458
625
|
/**
|
|
459
626
|
* Properties for COMPLETED OrderKci records
|
|
@@ -501,6 +668,25 @@ export interface CompletedOrderKciProperties {
|
|
|
501
668
|
* @type {TEXT}
|
|
502
669
|
*/
|
|
503
670
|
SupplierCodes: string;
|
|
671
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
672
|
+
*
|
|
673
|
+
* @type {DATE}
|
|
674
|
+
* @default
|
|
675
|
+
*/
|
|
676
|
+
AppointmentDate: string;
|
|
677
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
678
|
+
*
|
|
679
|
+
* @type {ENUM}
|
|
680
|
+
* @default
|
|
681
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
682
|
+
*/
|
|
683
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
684
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
685
|
+
*
|
|
686
|
+
* @type {TEXT}
|
|
687
|
+
* @default
|
|
688
|
+
*/
|
|
689
|
+
TenantWorkOrderReference: string;
|
|
504
690
|
}
|
|
505
691
|
/**
|
|
506
692
|
* Properties for CREATED OrderKci records
|
|
@@ -548,6 +734,25 @@ export interface CreatedOrderKciProperties {
|
|
|
548
734
|
* @type {TEXT}
|
|
549
735
|
*/
|
|
550
736
|
SupplierCodes: string;
|
|
737
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
738
|
+
*
|
|
739
|
+
* @type {DATE}
|
|
740
|
+
* @default
|
|
741
|
+
*/
|
|
742
|
+
AppointmentDate: string;
|
|
743
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
744
|
+
*
|
|
745
|
+
* @type {ENUM}
|
|
746
|
+
* @default
|
|
747
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
748
|
+
*/
|
|
749
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
750
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
751
|
+
*
|
|
752
|
+
* @type {TEXT}
|
|
753
|
+
* @default
|
|
754
|
+
*/
|
|
755
|
+
TenantWorkOrderReference: string;
|
|
551
756
|
}
|
|
552
757
|
/**
|
|
553
758
|
* Properties for DELAY OrderKci records
|
|
@@ -595,6 +800,25 @@ export interface DelayOrderKciProperties {
|
|
|
595
800
|
* @type {TEXT}
|
|
596
801
|
*/
|
|
597
802
|
SupplierCodes: string;
|
|
803
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
804
|
+
*
|
|
805
|
+
* @type {DATE}
|
|
806
|
+
* @default
|
|
807
|
+
*/
|
|
808
|
+
AppointmentDate: string;
|
|
809
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
810
|
+
*
|
|
811
|
+
* @type {ENUM}
|
|
812
|
+
* @default
|
|
813
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
814
|
+
*/
|
|
815
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
816
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
817
|
+
*
|
|
818
|
+
* @type {TEXT}
|
|
819
|
+
* @default
|
|
820
|
+
*/
|
|
821
|
+
TenantWorkOrderReference: string;
|
|
598
822
|
}
|
|
599
823
|
/**
|
|
600
824
|
* Properties for INFORMATION_REQUIRED OrderKci records
|
|
@@ -642,6 +866,25 @@ export interface InformationRequiredOrderKciProperties {
|
|
|
642
866
|
* @type {TEXT}
|
|
643
867
|
*/
|
|
644
868
|
SupplierCodes: string;
|
|
869
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
870
|
+
*
|
|
871
|
+
* @type {DATE}
|
|
872
|
+
* @default
|
|
873
|
+
*/
|
|
874
|
+
AppointmentDate: string;
|
|
875
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
876
|
+
*
|
|
877
|
+
* @type {ENUM}
|
|
878
|
+
* @default
|
|
879
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
880
|
+
*/
|
|
881
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
882
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
883
|
+
*
|
|
884
|
+
* @type {TEXT}
|
|
885
|
+
* @default
|
|
886
|
+
*/
|
|
887
|
+
TenantWorkOrderReference: string;
|
|
645
888
|
}
|
|
646
889
|
/**
|
|
647
890
|
* Properties for ORDER_REJECTED OrderKci records
|
|
@@ -689,6 +932,25 @@ export interface OrderRejectedOrderKciProperties {
|
|
|
689
932
|
* @type {TEXT}
|
|
690
933
|
*/
|
|
691
934
|
SupplierCodes: string;
|
|
935
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
936
|
+
*
|
|
937
|
+
* @type {DATE}
|
|
938
|
+
* @default
|
|
939
|
+
*/
|
|
940
|
+
AppointmentDate: string;
|
|
941
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
942
|
+
*
|
|
943
|
+
* @type {ENUM}
|
|
944
|
+
* @default
|
|
945
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
946
|
+
*/
|
|
947
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
948
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
949
|
+
*
|
|
950
|
+
* @type {TEXT}
|
|
951
|
+
* @default
|
|
952
|
+
*/
|
|
953
|
+
TenantWorkOrderReference: string;
|
|
692
954
|
}
|
|
693
955
|
/**
|
|
694
956
|
* Properties for REAPPOINT OrderKci records
|
|
@@ -736,6 +998,25 @@ export interface ReappointOrderKciProperties {
|
|
|
736
998
|
* @type {TEXT}
|
|
737
999
|
*/
|
|
738
1000
|
SupplierCodes: string;
|
|
1001
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
1002
|
+
*
|
|
1003
|
+
* @type {DATE}
|
|
1004
|
+
* @default
|
|
1005
|
+
*/
|
|
1006
|
+
AppointmentDate: string;
|
|
1007
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
1008
|
+
*
|
|
1009
|
+
* @type {ENUM}
|
|
1010
|
+
* @default
|
|
1011
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
1012
|
+
*/
|
|
1013
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
1014
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
1015
|
+
*
|
|
1016
|
+
* @type {TEXT}
|
|
1017
|
+
* @default
|
|
1018
|
+
*/
|
|
1019
|
+
TenantWorkOrderReference: string;
|
|
739
1020
|
}
|
|
740
1021
|
/**
|
|
741
1022
|
* Properties for REAPPOINTED OrderKci records
|
|
@@ -783,6 +1064,25 @@ export interface ReappointedOrderKciProperties {
|
|
|
783
1064
|
* @type {TEXT}
|
|
784
1065
|
*/
|
|
785
1066
|
SupplierCodes: string;
|
|
1067
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
1068
|
+
*
|
|
1069
|
+
* @type {DATE}
|
|
1070
|
+
* @default
|
|
1071
|
+
*/
|
|
1072
|
+
AppointmentDate: string;
|
|
1073
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
1074
|
+
*
|
|
1075
|
+
* @type {ENUM}
|
|
1076
|
+
* @default
|
|
1077
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
1078
|
+
*/
|
|
1079
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
1080
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
1081
|
+
*
|
|
1082
|
+
* @type {TEXT}
|
|
1083
|
+
* @default
|
|
1084
|
+
*/
|
|
1085
|
+
TenantWorkOrderReference: string;
|
|
786
1086
|
}
|
|
787
1087
|
/**
|
|
788
1088
|
* Properties for RESUMED OrderKci records
|
|
@@ -830,6 +1130,25 @@ export interface ResumedOrderKciProperties {
|
|
|
830
1130
|
* @type {TEXT}
|
|
831
1131
|
*/
|
|
832
1132
|
SupplierCodes: string;
|
|
1133
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
1134
|
+
*
|
|
1135
|
+
* @type {DATE}
|
|
1136
|
+
* @default
|
|
1137
|
+
*/
|
|
1138
|
+
AppointmentDate: string;
|
|
1139
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
1140
|
+
*
|
|
1141
|
+
* @type {ENUM}
|
|
1142
|
+
* @default
|
|
1143
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
1144
|
+
*/
|
|
1145
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
1146
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
1147
|
+
*
|
|
1148
|
+
* @type {TEXT}
|
|
1149
|
+
* @default
|
|
1150
|
+
*/
|
|
1151
|
+
TenantWorkOrderReference: string;
|
|
833
1152
|
}
|
|
834
1153
|
/**
|
|
835
1154
|
* Properties for UPDATE OrderKci records
|
|
@@ -877,6 +1196,25 @@ export interface UpdateOrderKciProperties {
|
|
|
877
1196
|
* @type {TEXT}
|
|
878
1197
|
*/
|
|
879
1198
|
SupplierCodes: string;
|
|
1199
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
1200
|
+
*
|
|
1201
|
+
* @type {DATE}
|
|
1202
|
+
* @default
|
|
1203
|
+
*/
|
|
1204
|
+
AppointmentDate: string;
|
|
1205
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
1206
|
+
*
|
|
1207
|
+
* @type {ENUM}
|
|
1208
|
+
* @default
|
|
1209
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
1210
|
+
*/
|
|
1211
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
1212
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
1213
|
+
*
|
|
1214
|
+
* @type {TEXT}
|
|
1215
|
+
* @default
|
|
1216
|
+
*/
|
|
1217
|
+
TenantWorkOrderReference: string;
|
|
880
1218
|
}
|
|
881
1219
|
/**
|
|
882
1220
|
* Properties for WARNING OrderKci records
|
|
@@ -924,6 +1262,25 @@ export interface WarningOrderKciProperties {
|
|
|
924
1262
|
* @type {TEXT}
|
|
925
1263
|
*/
|
|
926
1264
|
SupplierCodes: string;
|
|
1265
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
1266
|
+
*
|
|
1267
|
+
* @type {DATE}
|
|
1268
|
+
* @default
|
|
1269
|
+
*/
|
|
1270
|
+
AppointmentDate: string;
|
|
1271
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
1272
|
+
*
|
|
1273
|
+
* @type {ENUM}
|
|
1274
|
+
* @default
|
|
1275
|
+
* @enum {OrderKciAppointmentTimeBlock}
|
|
1276
|
+
*/
|
|
1277
|
+
AppointmentTimeBlock: OrderKciAppointmentTimeBlock;
|
|
1278
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO.
|
|
1279
|
+
*
|
|
1280
|
+
* @type {TEXT}
|
|
1281
|
+
* @default
|
|
1282
|
+
*/
|
|
1283
|
+
TenantWorkOrderReference: string;
|
|
927
1284
|
}
|
|
928
1285
|
/**
|
|
929
1286
|
* OrderKci entity from OrderModule
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
* Generated from Odin schema definition
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.
|
|
16
|
-
exports.ROUTING_KEY_ORDER_KCI_WARNING_DELETED = exports.ROUTING_KEY_ORDER_KCI_WARNING_UPDATED = exports.ROUTING_KEY_ORDER_KCI_WARNING_CREATED = exports.ROUTING_KEY_ORDER_KCI_UPDATE_DELETED = exports.ROUTING_KEY_ORDER_KCI_UPDATE_UPDATED = exports.ROUTING_KEY_ORDER_KCI_UPDATE_CREATED = exports.ROUTING_KEY_ORDER_KCI_RESUMED_DELETED = exports.ROUTING_KEY_ORDER_KCI_RESUMED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_RESUMED_CREATED = exports.ROUTING_KEY_ORDER_KCI_REAPPOINTED_DELETED = void 0;
|
|
15
|
+
exports.ROUTING_KEY_ORDER_KCI_REAPPOINTED_CREATED = exports.ROUTING_KEY_ORDER_KCI_REAPPOINT_DELETED = exports.ROUTING_KEY_ORDER_KCI_REAPPOINT_UPDATED = exports.ROUTING_KEY_ORDER_KCI_REAPPOINT_CREATED = exports.ROUTING_KEY_ORDER_KCI_ORDER_REJECTED_DELETED = exports.ROUTING_KEY_ORDER_KCI_ORDER_REJECTED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_ORDER_REJECTED_CREATED = exports.ROUTING_KEY_ORDER_KCI_INFORMATION_REQUIRED_DELETED = exports.ROUTING_KEY_ORDER_KCI_INFORMATION_REQUIRED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_INFORMATION_REQUIRED_CREATED = exports.ROUTING_KEY_ORDER_KCI_DELAY_DELETED = exports.ROUTING_KEY_ORDER_KCI_DELAY_UPDATED = exports.ROUTING_KEY_ORDER_KCI_DELAY_CREATED = exports.ROUTING_KEY_ORDER_KCI_DEFAULT_DELETED = exports.ROUTING_KEY_ORDER_KCI_DEFAULT_UPDATED = exports.ROUTING_KEY_ORDER_KCI_DEFAULT_CREATED = exports.ROUTING_KEY_ORDER_KCI_CREATED_DELETED = exports.ROUTING_KEY_ORDER_KCI_CREATED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_CREATED_CREATED = exports.ROUTING_KEY_ORDER_KCI_COMPLETED_DELETED = exports.ROUTING_KEY_ORDER_KCI_COMPLETED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_COMPLETED_CREATED = exports.ROUTING_KEY_ORDER_KCI_COMMITTED_DELETED = exports.ROUTING_KEY_ORDER_KCI_COMMITTED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_COMMITTED_CREATED = exports.ROUTING_KEY_ORDER_KCI_CANCELLED_DELETED = exports.ROUTING_KEY_ORDER_KCI_CANCELLED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_CANCELLED_CREATED = exports.ROUTING_KEY_ORDER_KCI_CANCELLATION_REJECTED_DELETED = exports.ROUTING_KEY_ORDER_KCI_CANCELLATION_REJECTED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_CANCELLATION_REJECTED_CREATED = exports.ROUTING_KEY_ORDER_KCI_AMENDMENT_REJECTED_DELETED = exports.ROUTING_KEY_ORDER_KCI_AMENDMENT_REJECTED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_AMENDMENT_REJECTED_CREATED = exports.ROUTING_KEY_ORDER_KCI_AMENDED_DELETED = exports.ROUTING_KEY_ORDER_KCI_AMENDED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_AMENDED_CREATED = exports.ROUTING_KEY_ORDER_KCI_ADDITIONAL_DELETED = exports.ROUTING_KEY_ORDER_KCI_ADDITIONAL_UPDATED = exports.ROUTING_KEY_ORDER_KCI_ADDITIONAL_CREATED = exports.ROUTING_KEY_ORDER_KCI_ACKNOWLEDGED_DELETED = exports.ROUTING_KEY_ORDER_KCI_ACKNOWLEDGED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_ACKNOWLEDGED_CREATED = exports.ROUTING_KEY_ORDER_KCI_DELETED = exports.ROUTING_KEY_ORDER_KCI_UPDATED = exports.ROUTING_KEY_ORDER_KCI_CREATED = exports.OrderKci = exports.OrderKciPropertyKeys = exports.OrderKciAppointmentTimeBlock = exports.OrderKciEntityTypes = void 0;
|
|
16
|
+
exports.ROUTING_KEY_ORDER_KCI_WARNING_DELETED = exports.ROUTING_KEY_ORDER_KCI_WARNING_UPDATED = exports.ROUTING_KEY_ORDER_KCI_WARNING_CREATED = exports.ROUTING_KEY_ORDER_KCI_UPDATE_DELETED = exports.ROUTING_KEY_ORDER_KCI_UPDATE_UPDATED = exports.ROUTING_KEY_ORDER_KCI_UPDATE_CREATED = exports.ROUTING_KEY_ORDER_KCI_RESUMED_DELETED = exports.ROUTING_KEY_ORDER_KCI_RESUMED_UPDATED = exports.ROUTING_KEY_ORDER_KCI_RESUMED_CREATED = exports.ROUTING_KEY_ORDER_KCI_REAPPOINTED_DELETED = exports.ROUTING_KEY_ORDER_KCI_REAPPOINTED_UPDATED = void 0;
|
|
17
17
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
18
18
|
/**
|
|
19
19
|
* Available types for OrderKci records
|
|
@@ -57,6 +57,20 @@ var OrderKciEntityTypes;
|
|
|
57
57
|
/** There is a (potential) problem that is not causing a delay yet */
|
|
58
58
|
OrderKciEntityTypes["WARNING"] = "WARNING";
|
|
59
59
|
})(OrderKciEntityTypes = exports.OrderKciEntityTypes || (exports.OrderKciEntityTypes = {}));
|
|
60
|
+
/**
|
|
61
|
+
* Valid values for OrderKci.AppointmentTimeBlock
|
|
62
|
+
*
|
|
63
|
+
* Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
64
|
+
*
|
|
65
|
+
* @remarks Available options:
|
|
66
|
+
* - `AM`
|
|
67
|
+
* - `PM`
|
|
68
|
+
*/
|
|
69
|
+
var OrderKciAppointmentTimeBlock;
|
|
70
|
+
(function (OrderKciAppointmentTimeBlock) {
|
|
71
|
+
OrderKciAppointmentTimeBlock["AM"] = "AM";
|
|
72
|
+
OrderKciAppointmentTimeBlock["PM"] = "PM";
|
|
73
|
+
})(OrderKciAppointmentTimeBlock = exports.OrderKciAppointmentTimeBlock || (exports.OrderKciAppointmentTimeBlock = {}));
|
|
60
74
|
/**
|
|
61
75
|
* Property keys for OrderKci
|
|
62
76
|
* Use these constants instead of string literals for type safety
|
|
@@ -79,10 +93,12 @@ var OrderKciPropertyKeys;
|
|
|
79
93
|
OrderKciPropertyKeys["SequenceNumber"] = "SequenceNumber";
|
|
80
94
|
/** Supplier's reason or problem codes, comma-separated (where applicable) */
|
|
81
95
|
OrderKciPropertyKeys["SupplierCodes"] = "SupplierCodes";
|
|
82
|
-
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). */
|
|
96
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate. */
|
|
83
97
|
OrderKciPropertyKeys["AppointmentDate"] = "AppointmentDate";
|
|
84
|
-
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. */
|
|
98
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock. */
|
|
85
99
|
OrderKciPropertyKeys["AppointmentTimeBlock"] = "AppointmentTimeBlock";
|
|
100
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI (dto.tenantWorkOrderReference). Persisted on every OrderKci so the KCI can be replayed against the correct WO. */
|
|
101
|
+
OrderKciPropertyKeys["TenantWorkOrderReference"] = "TenantWorkOrderReference";
|
|
86
102
|
})(OrderKciPropertyKeys = exports.OrderKciPropertyKeys || (exports.OrderKciPropertyKeys = {}));
|
|
87
103
|
/**
|
|
88
104
|
* OrderKci entity from OrderModule
|