@d19n/youfibre-odin-sdk 2.0.256 → 2.0.258
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
|
*
|
|
@@ -246,6 +246,8 @@ export declare enum CallPropertyKeys {
|
|
|
246
246
|
ActiveTransferId = "ActiveTransferId",
|
|
247
247
|
/** Data field for Call records. Used by Communications team. */
|
|
248
248
|
From = "From",
|
|
249
|
+
/** DualRecordingUrl */
|
|
250
|
+
DualRecordingUrl = "DualRecordingUrl",
|
|
249
251
|
/** Queue entry time */
|
|
250
252
|
QueueEntryTime = "QueueEntryTime",
|
|
251
253
|
/** IVRDuration */
|
|
@@ -525,6 +527,11 @@ export interface CallProperties {
|
|
|
525
527
|
* @type {TEXT}
|
|
526
528
|
*/
|
|
527
529
|
From: string;
|
|
530
|
+
/** DualRecordingUrl
|
|
531
|
+
*
|
|
532
|
+
* @type {TEXT}
|
|
533
|
+
*/
|
|
534
|
+
DualRecordingUrl: string;
|
|
528
535
|
/** Queue entry time
|
|
529
536
|
*
|
|
530
537
|
* @type {DATE_TIME}
|
package/dist/entities-v2/Call.js
CHANGED
|
@@ -246,6 +246,8 @@ var CallPropertyKeys;
|
|
|
246
246
|
CallPropertyKeys["ActiveTransferId"] = "ActiveTransferId";
|
|
247
247
|
/** Data field for Call records. Used by Communications team. */
|
|
248
248
|
CallPropertyKeys["From"] = "From";
|
|
249
|
+
/** DualRecordingUrl */
|
|
250
|
+
CallPropertyKeys["DualRecordingUrl"] = "DualRecordingUrl";
|
|
249
251
|
/** Queue entry time */
|
|
250
252
|
CallPropertyKeys["QueueEntryTime"] = "QueueEntryTime";
|
|
251
253
|
/** IVRDuration */
|