@d19n/youfibre-odin-sdk 2.0.160 → 2.0.161
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.
|
@@ -84,6 +84,20 @@ export interface CreateOrderKciProperties {
|
|
|
84
84
|
* @type {NUMBER}
|
|
85
85
|
*/
|
|
86
86
|
SequenceNumber?: number | null;
|
|
87
|
+
/**
|
|
88
|
+
* Appointment Date
|
|
89
|
+
*
|
|
90
|
+
* Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). Source: dto.appointmentDate.
|
|
91
|
+
* @type {DATE}
|
|
92
|
+
*/
|
|
93
|
+
AppointmentDate?: string | null;
|
|
94
|
+
/**
|
|
95
|
+
* Appointment Time Block
|
|
96
|
+
*
|
|
97
|
+
* Rebooked appointment AM/PM block carried by a supplier reschedule KCI. Source: dto.appointmentTimeBlock.
|
|
98
|
+
* @type {ENUM}
|
|
99
|
+
*/
|
|
100
|
+
AppointmentTimeBlock?: string | null;
|
|
87
101
|
}
|
|
88
102
|
/**
|
|
89
103
|
* CreateOrderKci
|
|
@@ -73,7 +73,11 @@ export declare enum OrderKciPropertyKeys {
|
|
|
73
73
|
/** Supplier-emitted KCI sequence number — increments per KCI on the parent order. Used to detect missing or out-of-order events. */
|
|
74
74
|
SequenceNumber = "SequenceNumber",
|
|
75
75
|
/** Supplier's reason or problem codes, comma-separated (where applicable) */
|
|
76
|
-
SupplierCodes = "SupplierCodes"
|
|
76
|
+
SupplierCodes = "SupplierCodes",
|
|
77
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). */
|
|
78
|
+
AppointmentDate = "AppointmentDate",
|
|
79
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. */
|
|
80
|
+
AppointmentTimeBlock = "AppointmentTimeBlock"
|
|
77
81
|
}
|
|
78
82
|
/**
|
|
79
83
|
* Properties for OrderKci records
|
|
@@ -79,6 +79,10 @@ var OrderKciPropertyKeys;
|
|
|
79
79
|
OrderKciPropertyKeys["SequenceNumber"] = "SequenceNumber";
|
|
80
80
|
/** Supplier's reason or problem codes, comma-separated (where applicable) */
|
|
81
81
|
OrderKciPropertyKeys["SupplierCodes"] = "SupplierCodes";
|
|
82
|
+
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). */
|
|
83
|
+
OrderKciPropertyKeys["AppointmentDate"] = "AppointmentDate";
|
|
84
|
+
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. */
|
|
85
|
+
OrderKciPropertyKeys["AppointmentTimeBlock"] = "AppointmentTimeBlock";
|
|
82
86
|
})(OrderKciPropertyKeys = exports.OrderKciPropertyKeys || (exports.OrderKciPropertyKeys = {}));
|
|
83
87
|
/**
|
|
84
88
|
* OrderKci entity from OrderModule
|