@d19n/youfibre-odin-sdk 2.0.161 → 2.0.162
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.
|
@@ -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.
|
|
105
|
+
* @type {TEXT}
|
|
106
|
+
*/
|
|
107
|
+
TenantWorkOrderReference?: string | null;
|
|
101
108
|
}
|
|
102
109
|
/**
|
|
103
110
|
* CreateOrderKci
|
|
@@ -77,7 +77,9 @@ export declare enum OrderKciPropertyKeys {
|
|
|
77
77
|
/** Rebooked appointment date carried by a supplier reschedule KCI (REAPPOINTED / *_RESCHEDULED). */
|
|
78
78
|
AppointmentDate = "AppointmentDate",
|
|
79
79
|
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. */
|
|
80
|
-
AppointmentTimeBlock = "AppointmentTimeBlock"
|
|
80
|
+
AppointmentTimeBlock = "AppointmentTimeBlock",
|
|
81
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI; persisted so the KCI can be replayed. */
|
|
82
|
+
TenantWorkOrderReference = "TenantWorkOrderReference"
|
|
81
83
|
}
|
|
82
84
|
/**
|
|
83
85
|
* Properties for OrderKci records
|
|
@@ -83,6 +83,8 @@ var OrderKciPropertyKeys;
|
|
|
83
83
|
OrderKciPropertyKeys["AppointmentDate"] = "AppointmentDate";
|
|
84
84
|
/** Rebooked appointment AM/PM block carried by a supplier reschedule KCI. */
|
|
85
85
|
OrderKciPropertyKeys["AppointmentTimeBlock"] = "AppointmentTimeBlock";
|
|
86
|
+
/** Raw YF WorkOrder uuid NET echoes on the KCI; persisted so the KCI can be replayed. */
|
|
87
|
+
OrderKciPropertyKeys["TenantWorkOrderReference"] = "TenantWorkOrderReference";
|
|
86
88
|
})(OrderKciPropertyKeys = exports.OrderKciPropertyKeys || (exports.OrderKciPropertyKeys = {}));
|
|
87
89
|
/**
|
|
88
90
|
* OrderKci entity from OrderModule
|