@d19n/youfibre-odin-sdk 2.0.275 → 2.0.277
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.
|
@@ -23,7 +23,7 @@ export interface CreateCollectionAmcoWorkOrderMessage extends OdinRecordCreatedE
|
|
|
23
23
|
* Properties for CreateCollectionAmcoWorkOrder action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 0
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 18
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateCollectionAmcoWorkOrderProperties {
|
|
29
29
|
/**
|
|
@@ -70,6 +70,13 @@ export interface CreateCollectionAmcoWorkOrderProperties {
|
|
|
70
70
|
* @hidden This field is not visible in the UI
|
|
71
71
|
*/
|
|
72
72
|
AddressId?: string | null;
|
|
73
|
+
/**
|
|
74
|
+
* description
|
|
75
|
+
*
|
|
76
|
+
* description of the service order (Field Operations - WorkOrder)
|
|
77
|
+
* @type {TEXT_LONG}
|
|
78
|
+
*/
|
|
79
|
+
Description?: string | null;
|
|
73
80
|
/**
|
|
74
81
|
* Expected Return Date
|
|
75
82
|
*
|
|
@@ -15,7 +15,7 @@ import { OdinRecord, OdinRecordCreateDto, OdinRecordUpdateDto, OdinRecordUpdated
|
|
|
15
15
|
* Properties for CreateCollectionAmcoWorkOrder action
|
|
16
16
|
*
|
|
17
17
|
* @property Required fields: 0
|
|
18
|
-
* @property Optional fields:
|
|
18
|
+
* @property Optional fields: 18
|
|
19
19
|
*/
|
|
20
20
|
export interface CreateCollectionAmcoWorkOrderProperties {
|
|
21
21
|
/**
|
|
@@ -62,6 +62,13 @@ export interface CreateCollectionAmcoWorkOrderProperties {
|
|
|
62
62
|
* @hidden This field is not visible in the UI
|
|
63
63
|
*/
|
|
64
64
|
AddressId?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* description
|
|
67
|
+
*
|
|
68
|
+
* description of the service order (Field Operations - WorkOrder)
|
|
69
|
+
* @type {TEXT_LONG}
|
|
70
|
+
*/
|
|
71
|
+
Description?: string | null;
|
|
65
72
|
/**
|
|
66
73
|
* Expected Return Date
|
|
67
74
|
*
|
|
@@ -22,7 +22,7 @@ export interface CreateMissedIncomingCallMessage extends OdinRecordCreatedEvent<
|
|
|
22
22
|
* Properties for CreateMissedIncomingCall action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 9
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 1
|
|
26
26
|
*/
|
|
27
27
|
export interface CreateMissedIncomingCallProperties {
|
|
28
28
|
/**
|
|
@@ -97,6 +97,13 @@ export interface CreateMissedIncomingCallProperties {
|
|
|
97
97
|
* @required
|
|
98
98
|
*/
|
|
99
99
|
EndTime: string;
|
|
100
|
+
/**
|
|
101
|
+
* Queue Name
|
|
102
|
+
*
|
|
103
|
+
* Display name/title for Call records. Primary identifier for Communications team.
|
|
104
|
+
* @type {TEXT}
|
|
105
|
+
*/
|
|
106
|
+
QueueName?: string | null;
|
|
100
107
|
}
|
|
101
108
|
/**
|
|
102
109
|
* CreateMissedIncomingCall
|