@d19n/youfibre-odin-sdk 2.0.33 → 2.0.34-beta.0
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.
- package/dist/actions-v2/CaseDefaultStageEscalatedDto.d.ts +9 -1
- package/dist/actions-v2/EscalateCaseActionDto.d.ts +9 -1
- package/dist/actions-v2/EscalateCaseTransitionDto.d.ts +9 -1
- package/dist/actions-v2/OverlayA55UpdateDto.d.ts +54 -0
- package/dist/actions-v2/UpdateTeamDto.d.ts +8 -1
- package/dist/entities-v2/Case.d.ts +5 -0
- package/dist/entities-v2/Case.js +5 -0
- package/dist/entities-v2/Order.d.ts +1 -0
- package/dist/entities-v2/OverlayRealA55.d.ts +286 -202
- package/dist/entities-v2/OverlayRealA55.js +109 -95
- package/dist/entities-v2/Service.d.ts +2 -2
- package/dist/entities-v2/Service.js +2 -2
- package/dist/entities-v2/Team.d.ts +22 -1
- package/dist/entities-v2/Team.js +17 -1
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ import { OdinRecord, OdinRecordCreateDto, OdinRecordUpdateDto, OdinRecordUpdated
|
|
|
16
16
|
* Properties for EscalateCaseAction action
|
|
17
17
|
*
|
|
18
18
|
* @property Required fields: 1
|
|
19
|
-
* @property Optional fields:
|
|
19
|
+
* @property Optional fields: 4
|
|
20
20
|
*/
|
|
21
21
|
export interface EscalateCaseActionProperties {
|
|
22
22
|
/**
|
|
@@ -27,6 +27,14 @@ export interface EscalateCaseActionProperties {
|
|
|
27
27
|
* @required
|
|
28
28
|
*/
|
|
29
29
|
TeamId: string;
|
|
30
|
+
/**
|
|
31
|
+
* Providers
|
|
32
|
+
*
|
|
33
|
+
* Providers
|
|
34
|
+
* @type {ENUM}
|
|
35
|
+
* @validWhen Providers eq ["Netomnia","Brsk"]
|
|
36
|
+
*/
|
|
37
|
+
Providers?: string | null;
|
|
30
38
|
/**
|
|
31
39
|
* OwnerId
|
|
32
40
|
*
|
|
@@ -22,7 +22,7 @@ export interface EscalateCaseActionMessage extends OdinRecordUpdatedEvent<Escala
|
|
|
22
22
|
* Properties for EscalateCaseAction action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 1
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 4
|
|
26
26
|
*/
|
|
27
27
|
export interface EscalateCaseActionProperties {
|
|
28
28
|
/**
|
|
@@ -33,6 +33,14 @@ export interface EscalateCaseActionProperties {
|
|
|
33
33
|
* @required
|
|
34
34
|
*/
|
|
35
35
|
TeamId: string;
|
|
36
|
+
/**
|
|
37
|
+
* Providers
|
|
38
|
+
*
|
|
39
|
+
* Providers
|
|
40
|
+
* @type {ENUM}
|
|
41
|
+
* @validWhen Providers eq ["Netomnia","Brsk"]
|
|
42
|
+
*/
|
|
43
|
+
Providers?: string | null;
|
|
36
44
|
/**
|
|
37
45
|
* OwnerId
|
|
38
46
|
*
|
|
@@ -16,7 +16,7 @@ import { OdinRecord, OdinRecordCreateDto, OdinRecordUpdateDto, OdinRecordUpdated
|
|
|
16
16
|
* Properties for EscalateCaseAction action
|
|
17
17
|
*
|
|
18
18
|
* @property Required fields: 1
|
|
19
|
-
* @property Optional fields:
|
|
19
|
+
* @property Optional fields: 4
|
|
20
20
|
*/
|
|
21
21
|
export interface EscalateCaseActionProperties {
|
|
22
22
|
/**
|
|
@@ -27,6 +27,14 @@ export interface EscalateCaseActionProperties {
|
|
|
27
27
|
* @required
|
|
28
28
|
*/
|
|
29
29
|
TeamId: string;
|
|
30
|
+
/**
|
|
31
|
+
* Providers
|
|
32
|
+
*
|
|
33
|
+
* Providers
|
|
34
|
+
* @type {ENUM}
|
|
35
|
+
* @validWhen Providers eq ["Netomnia","Brsk"]
|
|
36
|
+
*/
|
|
37
|
+
Providers?: string | null;
|
|
30
38
|
/**
|
|
31
39
|
* OwnerId
|
|
32
40
|
*
|
|
@@ -81,6 +81,30 @@ export interface OverlayA55UpdateProperties {
|
|
|
81
81
|
* @required
|
|
82
82
|
*/
|
|
83
83
|
PointALocation: string;
|
|
84
|
+
/**
|
|
85
|
+
* PointAImageSurrounding
|
|
86
|
+
*
|
|
87
|
+
* Data field for BlockageA55 records. Used by Field Operations team.
|
|
88
|
+
* @type {FILE_MULTIPLE}
|
|
89
|
+
* @required
|
|
90
|
+
*/
|
|
91
|
+
PointAImageSurrounding: string;
|
|
92
|
+
/**
|
|
93
|
+
* PointAImageInternal
|
|
94
|
+
*
|
|
95
|
+
* Data field for BlockageA55 records. Used by Field Operations team.
|
|
96
|
+
* @type {FILE_MULTIPLE}
|
|
97
|
+
* @required
|
|
98
|
+
*/
|
|
99
|
+
PointAImageInternal: string;
|
|
100
|
+
/**
|
|
101
|
+
* PointAImageRod
|
|
102
|
+
*
|
|
103
|
+
* Data field for BlockageA55 records. Used by Field Operations team.
|
|
104
|
+
* @type {FILE_MULTIPLE}
|
|
105
|
+
* @required
|
|
106
|
+
*/
|
|
107
|
+
PointAImageRod: string;
|
|
84
108
|
/**
|
|
85
109
|
* PointBLocation
|
|
86
110
|
*
|
|
@@ -97,6 +121,14 @@ export interface OverlayA55UpdateProperties {
|
|
|
97
121
|
* @required
|
|
98
122
|
*/
|
|
99
123
|
PermissionsRequired: string;
|
|
124
|
+
/**
|
|
125
|
+
* PTDCopy
|
|
126
|
+
*
|
|
127
|
+
* Data field for BlockageA55 records. Used by Field Operations team.
|
|
128
|
+
* @type {FILE_MULTIPLE}
|
|
129
|
+
* @required
|
|
130
|
+
*/
|
|
131
|
+
PTDCopy: string;
|
|
100
132
|
/**
|
|
101
133
|
* Overview
|
|
102
134
|
*
|
|
@@ -139,6 +171,13 @@ export interface OverlayA55UpdateProperties {
|
|
|
139
171
|
* @type {TEXT}
|
|
140
172
|
*/
|
|
141
173
|
OverlayDetails?: string | null;
|
|
174
|
+
/**
|
|
175
|
+
* OverlayRequiredPerspectiveViewPicture
|
|
176
|
+
*
|
|
177
|
+
* Data field for OverlayRealA55 records. Used by Field Operations team.
|
|
178
|
+
* @type {FILE_MULTIPLE}
|
|
179
|
+
*/
|
|
180
|
+
OverlayRequiredPerspectiveViewPicture?: string | null;
|
|
142
181
|
/**
|
|
143
182
|
* PointADetails
|
|
144
183
|
*
|
|
@@ -183,6 +222,14 @@ export interface OverlayA55UpdateProperties {
|
|
|
183
222
|
* @type {ENUM}
|
|
184
223
|
*/
|
|
185
224
|
PointBTobyRequired?: string | null;
|
|
225
|
+
/**
|
|
226
|
+
* PointBTobyLocation
|
|
227
|
+
*
|
|
228
|
+
* Data field for OverlayRealA55 records. Used by Field Operations team.
|
|
229
|
+
* @type {FILE_MULTIPLE}
|
|
230
|
+
* @visibleWhen PointBTobyRequired = ["YES"]
|
|
231
|
+
*/
|
|
232
|
+
PointBTobyLocation?: string | null;
|
|
186
233
|
/**
|
|
187
234
|
* FurtherDetails
|
|
188
235
|
*
|
|
@@ -204,6 +251,13 @@ export interface OverlayA55UpdateProperties {
|
|
|
204
251
|
* @type {ENUM}
|
|
205
252
|
*/
|
|
206
253
|
CarriagewayIncursionRequired?: string | null;
|
|
254
|
+
/**
|
|
255
|
+
* NetomniaOdinImageSuggestedRoute
|
|
256
|
+
*
|
|
257
|
+
* Data field for OverlayRealA55 records. Used by Field Operations team.
|
|
258
|
+
* @type {FILE_MULTIPLE}
|
|
259
|
+
*/
|
|
260
|
+
NetomniaOdinImageSuggestedRoute?: string | null;
|
|
207
261
|
/**
|
|
208
262
|
* CustomerInformation
|
|
209
263
|
*
|
|
@@ -22,9 +22,16 @@ export interface UpdateTeamMessage extends OdinRecordUpdatedEvent<UpdateTeamDto,
|
|
|
22
22
|
* Properties for UpdateTeam action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 11
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateTeamProperties {
|
|
28
|
+
/**
|
|
29
|
+
* Providers
|
|
30
|
+
*
|
|
31
|
+
* Providers
|
|
32
|
+
* @type {ENUM}
|
|
33
|
+
*/
|
|
34
|
+
Providers?: string | null;
|
|
28
35
|
/**
|
|
29
36
|
* SupportTeam
|
|
30
37
|
*
|
|
@@ -570,10 +570,15 @@ export declare enum CaseComplaint {
|
|
|
570
570
|
*
|
|
571
571
|
* @remarks Available options:
|
|
572
572
|
* - `Brsk`
|
|
573
|
+
* - `Cityfibre`
|
|
574
|
+
* - `CITYFIBRE`
|
|
575
|
+
* - `Netomnia`
|
|
573
576
|
* - `Youfibre`
|
|
574
577
|
*/
|
|
575
578
|
export declare enum CaseProviders {
|
|
576
579
|
BRSK = "Brsk",
|
|
580
|
+
CITYFIBRE = "Cityfibre",
|
|
581
|
+
NETOMNIA = "Netomnia",
|
|
577
582
|
YOUFIBRE = "Youfibre"
|
|
578
583
|
}
|
|
579
584
|
/**
|
package/dist/entities-v2/Case.js
CHANGED
|
@@ -577,11 +577,16 @@ var CaseComplaint;
|
|
|
577
577
|
*
|
|
578
578
|
* @remarks Available options:
|
|
579
579
|
* - `Brsk`
|
|
580
|
+
* - `Cityfibre`
|
|
581
|
+
* - `CITYFIBRE`
|
|
582
|
+
* - `Netomnia`
|
|
580
583
|
* - `Youfibre`
|
|
581
584
|
*/
|
|
582
585
|
var CaseProviders;
|
|
583
586
|
(function (CaseProviders) {
|
|
584
587
|
CaseProviders["BRSK"] = "Brsk";
|
|
588
|
+
CaseProviders["CITYFIBRE"] = "Cityfibre";
|
|
589
|
+
CaseProviders["NETOMNIA"] = "Netomnia";
|
|
585
590
|
CaseProviders["YOUFIBRE"] = "Youfibre";
|
|
586
591
|
})(CaseProviders = exports.CaseProviders || (exports.CaseProviders = {}));
|
|
587
592
|
/**
|