@d19n/youfibre-odin-sdk 1.0.253 → 1.0.254
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.
|
@@ -15,7 +15,7 @@ import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/di
|
|
|
15
15
|
* Properties for CreateRecontractVoiceConfiguration action
|
|
16
16
|
*
|
|
17
17
|
* @property Required fields: 0
|
|
18
|
-
* @property Optional fields:
|
|
18
|
+
* @property Optional fields: 21
|
|
19
19
|
*/
|
|
20
20
|
export interface CreateRecontractVoiceConfigurationProperties {
|
|
21
21
|
/**
|
|
@@ -159,6 +159,13 @@ export interface CreateRecontractVoiceConfigurationProperties {
|
|
|
159
159
|
* @type {TEXT}
|
|
160
160
|
*/
|
|
161
161
|
MagratheaOrderLastUpdate?: string;
|
|
162
|
+
/**
|
|
163
|
+
* OrderItemId
|
|
164
|
+
*
|
|
165
|
+
* OrderItemId (Network Operations - VoiceConfiguration)
|
|
166
|
+
* @type {LOOKUP}
|
|
167
|
+
*/
|
|
168
|
+
OrderItemId?: string;
|
|
162
169
|
}
|
|
163
170
|
/**
|
|
164
171
|
* CreateRecontractVoiceConfiguration
|
|
@@ -130,6 +130,8 @@ export declare enum VoiceConfigurationPortFromProvider {
|
|
|
130
130
|
* Use these constants instead of string literals for type safety
|
|
131
131
|
*/
|
|
132
132
|
export declare enum VoiceConfigurationPropertyKeys {
|
|
133
|
+
/** OrderItemId (Network Operations - VoiceConfiguration) */
|
|
134
|
+
OrderItemId = "OrderItemId",
|
|
133
135
|
/** MagratheaOrderLastUpdate (Network Operations - VoiceConfiguration) */
|
|
134
136
|
MagratheaOrderLastUpdate = "MagratheaOrderLastUpdate",
|
|
135
137
|
/** SystemMessageDate (Network Operations - VoiceConfiguration) */
|
|
@@ -172,8 +174,6 @@ export declare enum VoiceConfigurationPropertyKeys {
|
|
|
172
174
|
MagratheaOrderStatus = "MagratheaOrderStatus",
|
|
173
175
|
/** AuthorizedLOA (Network Operations - VoiceConfiguration) */
|
|
174
176
|
AuthorizedLoa = "AuthorizedLOA",
|
|
175
|
-
/** OrderItemId (Network Operations - VoiceConfiguration) */
|
|
176
|
-
OrderItemId = "OrderItemId",
|
|
177
177
|
/** SystemMessage (Network Operations - VoiceConfiguration) */
|
|
178
178
|
SystemMessage = "SystemMessage",
|
|
179
179
|
/** The parts include CountryCode, AreaCode, SubscriberNumber (Network Operations - VoiceConfiguration) */
|
|
@@ -189,6 +189,11 @@ export declare enum VoiceConfigurationPropertyKeys {
|
|
|
189
189
|
* @see ServiceModule:VoiceConfiguration
|
|
190
190
|
*/
|
|
191
191
|
export interface VoiceConfigurationProperties {
|
|
192
|
+
/** OrderItemId (Network Operations - VoiceConfiguration)
|
|
193
|
+
*
|
|
194
|
+
* @type {LOOKUP}
|
|
195
|
+
*/
|
|
196
|
+
OrderItemId?: string;
|
|
192
197
|
/** MagratheaOrderLastUpdate (Network Operations - VoiceConfiguration)
|
|
193
198
|
*
|
|
194
199
|
* @type {TEXT}
|
|
@@ -306,12 +311,6 @@ export interface VoiceConfigurationProperties {
|
|
|
306
311
|
* @type {BOOLEAN}
|
|
307
312
|
*/
|
|
308
313
|
AuthorizedLoa?: boolean;
|
|
309
|
-
/** OrderItemId (Network Operations - VoiceConfiguration)
|
|
310
|
-
*
|
|
311
|
-
* @type {LOOKUP}
|
|
312
|
-
* @hidden This field is hidden in the UI
|
|
313
|
-
*/
|
|
314
|
-
OrderItemId?: string;
|
|
315
314
|
/** SystemMessage (Network Operations - VoiceConfiguration)
|
|
316
315
|
*
|
|
317
316
|
* @type {TEXT}
|
|
@@ -135,6 +135,8 @@ var VoiceConfigurationPortFromProvider;
|
|
|
135
135
|
*/
|
|
136
136
|
var VoiceConfigurationPropertyKeys;
|
|
137
137
|
(function (VoiceConfigurationPropertyKeys) {
|
|
138
|
+
/** OrderItemId (Network Operations - VoiceConfiguration) */
|
|
139
|
+
VoiceConfigurationPropertyKeys["OrderItemId"] = "OrderItemId";
|
|
138
140
|
/** MagratheaOrderLastUpdate (Network Operations - VoiceConfiguration) */
|
|
139
141
|
VoiceConfigurationPropertyKeys["MagratheaOrderLastUpdate"] = "MagratheaOrderLastUpdate";
|
|
140
142
|
/** SystemMessageDate (Network Operations - VoiceConfiguration) */
|
|
@@ -177,8 +179,6 @@ var VoiceConfigurationPropertyKeys;
|
|
|
177
179
|
VoiceConfigurationPropertyKeys["MagratheaOrderStatus"] = "MagratheaOrderStatus";
|
|
178
180
|
/** AuthorizedLOA (Network Operations - VoiceConfiguration) */
|
|
179
181
|
VoiceConfigurationPropertyKeys["AuthorizedLoa"] = "AuthorizedLOA";
|
|
180
|
-
/** OrderItemId (Network Operations - VoiceConfiguration) */
|
|
181
|
-
VoiceConfigurationPropertyKeys["OrderItemId"] = "OrderItemId";
|
|
182
182
|
/** SystemMessage (Network Operations - VoiceConfiguration) */
|
|
183
183
|
VoiceConfigurationPropertyKeys["SystemMessage"] = "SystemMessage";
|
|
184
184
|
/** The parts include CountryCode, AreaCode, SubscriberNumber (Network Operations - VoiceConfiguration) */
|