@d19n/youfibre-odin-sdk 2.0.257 → 2.0.259
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 CreateFieldServiceProductMessage extends OdinRecordCreatedEvent
|
|
|
23
23
|
* Properties for CreateFieldServiceProduct action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 0
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 11
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateFieldServiceProductProperties {
|
|
29
29
|
/**
|
|
@@ -54,6 +54,13 @@ export interface CreateFieldServiceProductProperties {
|
|
|
54
54
|
* @type {ENUM}
|
|
55
55
|
*/
|
|
56
56
|
DefaultShippingMethod?: string | null;
|
|
57
|
+
/**
|
|
58
|
+
* Customer Device Type
|
|
59
|
+
*
|
|
60
|
+
* Customer Device Type (non router or mesh type used to create customer device links)
|
|
61
|
+
* @type {ENUM}
|
|
62
|
+
*/
|
|
63
|
+
CustomerDeviceType?: string | null;
|
|
57
64
|
/**
|
|
58
65
|
* Providers
|
|
59
66
|
*
|
|
@@ -61,6 +68,27 @@ export interface CreateFieldServiceProductProperties {
|
|
|
61
68
|
* @type {ENUM_MULTI_SELECT}
|
|
62
69
|
*/
|
|
63
70
|
Providers?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* AvailableOnAllBroadbandProducts
|
|
73
|
+
*
|
|
74
|
+
* AvailableOnAllBroadbandProducts
|
|
75
|
+
* @type {BOOLEAN}
|
|
76
|
+
*/
|
|
77
|
+
AvailableOnAllBroadbandProducts?: boolean | null;
|
|
78
|
+
/**
|
|
79
|
+
* AvailableOnAllMeshProducts
|
|
80
|
+
*
|
|
81
|
+
* AvailableOnAllMeshProducts
|
|
82
|
+
* @type {BOOLEAN}
|
|
83
|
+
*/
|
|
84
|
+
AvailableOnAllMeshProducts?: boolean | null;
|
|
85
|
+
/**
|
|
86
|
+
* AvailableOnAllPhoneProducts
|
|
87
|
+
*
|
|
88
|
+
* AvailableOnAllPhoneProducts
|
|
89
|
+
* @type {BOOLEAN}
|
|
90
|
+
*/
|
|
91
|
+
AvailableOnAllPhoneProducts?: boolean | null;
|
|
64
92
|
/**
|
|
65
93
|
* Active
|
|
66
94
|
*
|
|
@@ -22,7 +22,7 @@ export interface EditFieldServiceProductMessage extends OdinRecordUpdatedEvent<E
|
|
|
22
22
|
* Properties for EditFieldServiceProduct action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 11
|
|
26
26
|
*/
|
|
27
27
|
export interface EditFieldServiceProductProperties {
|
|
28
28
|
/**
|
|
@@ -53,6 +53,13 @@ export interface EditFieldServiceProductProperties {
|
|
|
53
53
|
* @type {ENUM}
|
|
54
54
|
*/
|
|
55
55
|
Vendor?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* Customer Device Type
|
|
58
|
+
*
|
|
59
|
+
* Customer Device Type (non router or mesh type used to create customer device links)
|
|
60
|
+
* @type {ENUM}
|
|
61
|
+
*/
|
|
62
|
+
CustomerDeviceType?: string | null;
|
|
56
63
|
/**
|
|
57
64
|
* Providers
|
|
58
65
|
*
|
|
@@ -49,6 +49,9 @@ export declare enum CallDirection {
|
|
|
49
49
|
*
|
|
50
50
|
* @remarks Available options:
|
|
51
51
|
* - `Abandoned`
|
|
52
|
+
* - `Abandoned In IVR`
|
|
53
|
+
* - `Abandoned In Queue`
|
|
54
|
+
* - `Abandoned in Reserved Queue`
|
|
52
55
|
* - `Active`
|
|
53
56
|
* - `Answered`
|
|
54
57
|
* - `Conferenced`
|
|
@@ -60,6 +63,9 @@ export declare enum CallDirection {
|
|
|
60
63
|
*/
|
|
61
64
|
export declare enum CallCallStage {
|
|
62
65
|
ABANDONED = "Abandoned",
|
|
66
|
+
ABANDONED_IN_IVR = "Abandoned In IVR",
|
|
67
|
+
ABANDONED_IN_QUEUE = "Abandoned In Queue",
|
|
68
|
+
ABANDONED_IN_RESERVED_QUEUE = "Abandoned in Reserved Queue",
|
|
63
69
|
ACTIVE = "Active",
|
|
64
70
|
ANSWERED = "Answered",
|
|
65
71
|
CONFERENCED = "Conferenced",
|
package/dist/entities-v2/Call.js
CHANGED
|
@@ -43,6 +43,9 @@ var CallDirection;
|
|
|
43
43
|
*
|
|
44
44
|
* @remarks Available options:
|
|
45
45
|
* - `Abandoned`
|
|
46
|
+
* - `Abandoned In IVR`
|
|
47
|
+
* - `Abandoned In Queue`
|
|
48
|
+
* - `Abandoned in Reserved Queue`
|
|
46
49
|
* - `Active`
|
|
47
50
|
* - `Answered`
|
|
48
51
|
* - `Conferenced`
|
|
@@ -55,6 +58,9 @@ var CallDirection;
|
|
|
55
58
|
var CallCallStage;
|
|
56
59
|
(function (CallCallStage) {
|
|
57
60
|
CallCallStage["ABANDONED"] = "Abandoned";
|
|
61
|
+
CallCallStage["ABANDONED_IN_IVR"] = "Abandoned In IVR";
|
|
62
|
+
CallCallStage["ABANDONED_IN_QUEUE"] = "Abandoned In Queue";
|
|
63
|
+
CallCallStage["ABANDONED_IN_RESERVED_QUEUE"] = "Abandoned in Reserved Queue";
|
|
58
64
|
CallCallStage["ACTIVE"] = "Active";
|
|
59
65
|
CallCallStage["ANSWERED"] = "Answered";
|
|
60
66
|
CallCallStage["CONFERENCED"] = "Conferenced";
|
|
@@ -186,6 +186,7 @@ export interface OfferProperties {
|
|
|
186
186
|
/** IsDefaultWebsiteOffer
|
|
187
187
|
*
|
|
188
188
|
* @type {BOOLEAN}
|
|
189
|
+
* @default false
|
|
189
190
|
*/
|
|
190
191
|
IsDefaultWebsiteOffer: boolean;
|
|
191
192
|
}
|
|
@@ -271,6 +272,7 @@ export interface RecontractOfferProperties {
|
|
|
271
272
|
/** IsDefaultWebsiteOffer
|
|
272
273
|
*
|
|
273
274
|
* @type {BOOLEAN}
|
|
275
|
+
* @default false
|
|
274
276
|
*/
|
|
275
277
|
IsDefaultWebsiteOffer: boolean;
|
|
276
278
|
}
|
|
@@ -356,6 +358,7 @@ export interface StandardOfferProperties {
|
|
|
356
358
|
/** IsDefaultWebsiteOffer
|
|
357
359
|
*
|
|
358
360
|
* @type {BOOLEAN}
|
|
361
|
+
* @default false
|
|
359
362
|
*/
|
|
360
363
|
IsDefaultWebsiteOffer: boolean;
|
|
361
364
|
}
|