@d19n/youfibre-odin-sdk 1.0.248 → 1.0.250
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/EditCaseFormDto.d.ts +29 -22
- package/dist/actions-v2/UpdateAdditionalCareDto.d.ts +18 -20
- package/dist/actions-v2/UpdateContactDto.d.ts +18 -20
- package/dist/entities-v2/Case.d.ts +8 -0
- package/dist/entities-v2/Case.js +2 -0
- package/dist/entities-v2/OutageCase.d.ts +8 -0
- package/dist/entities-v2/OutageCase.js +2 -0
- package/dist/entities-v2/OutcomeFormBlockageA55.d.ts +124 -124
- package/dist/entities-v2/OutcomeFormBlockageA55.js +82 -82
- package/dist/entities-v2/OutcomeFormOverlayRealA55.d.ts +136 -136
- package/dist/entities-v2/OutcomeFormOverlayRealA55.js +85 -85
- package/dist/entities-v2/OutcomeFormSiteSpecificRiskAssessmentOutcomeForm.d.ts +154 -154
- package/dist/entities-v2/OutcomeFormSiteSpecificRiskAssessmentOutcomeForm.js +81 -81
- package/dist/entities-v2/OverlayRealA55.d.ts +136 -136
- package/dist/entities-v2/OverlayRealA55.js +85 -85
- package/dist/entities-v2/RemediationRequiredReason.d.ts +158 -158
- package/dist/entities-v2/RemediationRequiredReason.js +138 -138
- package/package.json +1 -1
|
@@ -14,23 +14,31 @@ import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/o
|
|
|
14
14
|
* Properties for EditCaseForm action
|
|
15
15
|
*
|
|
16
16
|
* @property Required fields: 0
|
|
17
|
-
* @property Optional fields:
|
|
17
|
+
* @property Optional fields: 7
|
|
18
18
|
*/
|
|
19
19
|
export interface EditCaseFormProperties {
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Category
|
|
22
22
|
*
|
|
23
|
-
*
|
|
24
|
-
* @type {
|
|
23
|
+
* Data field for Case records. Used by Customer Service team.
|
|
24
|
+
* @type {ENUM}
|
|
25
25
|
*/
|
|
26
|
-
|
|
26
|
+
Category?: string;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Sub Category
|
|
29
29
|
*
|
|
30
|
-
*
|
|
31
|
-
* @type {
|
|
30
|
+
* SubCategory (Customer Service - Case)
|
|
31
|
+
* @type {ENUM}
|
|
32
|
+
* @visibleWhen Category = ["*"]
|
|
32
33
|
*/
|
|
33
|
-
|
|
34
|
+
SubCategory?: string;
|
|
35
|
+
/**
|
|
36
|
+
* ReasonForReview
|
|
37
|
+
*
|
|
38
|
+
* Reason for Review (Customer Service - Case)
|
|
39
|
+
* @type {ENUM}
|
|
40
|
+
*/
|
|
41
|
+
ReasonForReview?: string;
|
|
34
42
|
/**
|
|
35
43
|
* BlockedReason
|
|
36
44
|
*
|
|
@@ -39,27 +47,26 @@ export interface EditCaseFormProperties {
|
|
|
39
47
|
*/
|
|
40
48
|
BlockedReason?: string;
|
|
41
49
|
/**
|
|
42
|
-
*
|
|
50
|
+
* MoveToOpenOn
|
|
43
51
|
*
|
|
44
|
-
*
|
|
45
|
-
* @type {
|
|
52
|
+
* Date to re-open the case (Customer Service - Case)
|
|
53
|
+
* @type {DATE}
|
|
46
54
|
*/
|
|
47
|
-
|
|
55
|
+
MoveToOpenOn?: string;
|
|
48
56
|
/**
|
|
49
|
-
*
|
|
57
|
+
* AdditionalNotes
|
|
50
58
|
*
|
|
51
|
-
*
|
|
52
|
-
* @type {
|
|
53
|
-
* @visibleWhen Category = ["*"]
|
|
59
|
+
* Additional Notes (Customer Service - Case)
|
|
60
|
+
* @type {TEXT_LONG}
|
|
54
61
|
*/
|
|
55
|
-
|
|
62
|
+
AdditionalNotes?: string;
|
|
56
63
|
/**
|
|
57
|
-
*
|
|
64
|
+
* FormalComplaint
|
|
58
65
|
*
|
|
59
|
-
*
|
|
60
|
-
* @type {
|
|
66
|
+
* Formal Complaint - Boolean
|
|
67
|
+
* @type {BOOLEAN}
|
|
61
68
|
*/
|
|
62
|
-
|
|
69
|
+
FormalComplaint?: boolean;
|
|
63
70
|
}
|
|
64
71
|
/**
|
|
65
72
|
* EditCaseForm
|
|
@@ -14,8 +14,8 @@ import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/o
|
|
|
14
14
|
/**
|
|
15
15
|
* Properties for UpdateAdditionalCare action
|
|
16
16
|
*
|
|
17
|
-
* @property Required fields:
|
|
18
|
-
* @property Optional fields:
|
|
17
|
+
* @property Required fields: 2
|
|
18
|
+
* @property Optional fields: 4
|
|
19
19
|
*/
|
|
20
20
|
export interface UpdateAdditionalCareProperties {
|
|
21
21
|
/**
|
|
@@ -27,24 +27,6 @@ export interface UpdateAdditionalCareProperties {
|
|
|
27
27
|
* @visibleWhen AdditionalCareRequired = ["*"]
|
|
28
28
|
*/
|
|
29
29
|
AdditionalCareReason: string;
|
|
30
|
-
/**
|
|
31
|
-
* Medically Dependant
|
|
32
|
-
*
|
|
33
|
-
* Is the customer medically dependant on their broadband (Sales - Contact)
|
|
34
|
-
* @type {BOOLEAN}
|
|
35
|
-
* @required
|
|
36
|
-
* @visibleWhen AdditionalCareRequired = ["*"]
|
|
37
|
-
*/
|
|
38
|
-
MedicallyDependant: boolean;
|
|
39
|
-
/**
|
|
40
|
-
* Telecare Alarm
|
|
41
|
-
*
|
|
42
|
-
* Does the customer use a Telecare Alarm (Sales - Contact)
|
|
43
|
-
* @type {BOOLEAN}
|
|
44
|
-
* @required
|
|
45
|
-
* @visibleWhen AdditionalCareRequired = ["*"]
|
|
46
|
-
*/
|
|
47
|
-
TelecareAlarm: boolean;
|
|
48
30
|
/**
|
|
49
31
|
* Additional Care Consent
|
|
50
32
|
*
|
|
@@ -69,6 +51,22 @@ export interface UpdateAdditionalCareProperties {
|
|
|
69
51
|
* @visibleWhen AdditionalCareRequired = ["*"]
|
|
70
52
|
*/
|
|
71
53
|
AdditionalCareNotes?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Medically Dependant
|
|
56
|
+
*
|
|
57
|
+
* Is the customer medically dependant on their broadband (Sales - Contact)
|
|
58
|
+
* @type {BOOLEAN}
|
|
59
|
+
* @visibleWhen AdditionalCareRequired = ["*"]
|
|
60
|
+
*/
|
|
61
|
+
MedicallyDependant?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Telecare Alarm
|
|
64
|
+
*
|
|
65
|
+
* Does the customer use a Telecare Alarm (Sales - Contact)
|
|
66
|
+
* @type {BOOLEAN}
|
|
67
|
+
* @visibleWhen AdditionalCareRequired = ["*"]
|
|
68
|
+
*/
|
|
69
|
+
TelecareAlarm?: boolean;
|
|
72
70
|
}
|
|
73
71
|
/**
|
|
74
72
|
* Additional Care
|
|
@@ -13,8 +13,8 @@ import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/o
|
|
|
13
13
|
/**
|
|
14
14
|
* Properties for UpdateContact action
|
|
15
15
|
*
|
|
16
|
-
* @property Required fields:
|
|
17
|
-
* @property Optional fields:
|
|
16
|
+
* @property Required fields: 5
|
|
17
|
+
* @property Optional fields: 11
|
|
18
18
|
*/
|
|
19
19
|
export interface UpdateContactProperties {
|
|
20
20
|
/**
|
|
@@ -50,24 +50,6 @@ export interface UpdateContactProperties {
|
|
|
50
50
|
* @visibleWhen AdditionalCareRequired = [true]
|
|
51
51
|
*/
|
|
52
52
|
AdditionalCareReason: string;
|
|
53
|
-
/**
|
|
54
|
-
* Medically Dependant
|
|
55
|
-
*
|
|
56
|
-
* Is the customer medically dependant on their broadband (Sales - Contact)
|
|
57
|
-
* @type {BOOLEAN}
|
|
58
|
-
* @required
|
|
59
|
-
* @visibleWhen AdditionalCareRequired = [true]
|
|
60
|
-
*/
|
|
61
|
-
MedicallyDependant: boolean;
|
|
62
|
-
/**
|
|
63
|
-
* Telecare Alarm
|
|
64
|
-
*
|
|
65
|
-
* Does the customer use a Telecare Alarm (Sales - Contact)
|
|
66
|
-
* @type {BOOLEAN}
|
|
67
|
-
* @required
|
|
68
|
-
* @visibleWhen AdditionalCareRequired = [true]
|
|
69
|
-
*/
|
|
70
|
-
TelecareAlarm: boolean;
|
|
71
53
|
/**
|
|
72
54
|
* Additional Care Consent
|
|
73
55
|
*
|
|
@@ -142,6 +124,22 @@ export interface UpdateContactProperties {
|
|
|
142
124
|
* @visibleWhen AdditionalCareRequired = [true]
|
|
143
125
|
*/
|
|
144
126
|
AdditionalCareNotes?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Medically Dependant
|
|
129
|
+
*
|
|
130
|
+
* Is the customer medically dependant on their broadband (Sales - Contact)
|
|
131
|
+
* @type {BOOLEAN}
|
|
132
|
+
* @visibleWhen AdditionalCareRequired = [true]
|
|
133
|
+
*/
|
|
134
|
+
MedicallyDependant?: boolean;
|
|
135
|
+
/**
|
|
136
|
+
* Telecare Alarm
|
|
137
|
+
*
|
|
138
|
+
* Does the customer use a Telecare Alarm (Sales - Contact)
|
|
139
|
+
* @type {BOOLEAN}
|
|
140
|
+
* @visibleWhen AdditionalCareRequired = [true]
|
|
141
|
+
*/
|
|
142
|
+
TelecareAlarm?: boolean;
|
|
145
143
|
}
|
|
146
144
|
/**
|
|
147
145
|
* UpdateContact
|
|
@@ -463,6 +463,8 @@ export declare enum CaseDpaCustomerType {
|
|
|
463
463
|
* Use these constants instead of string literals for type safety
|
|
464
464
|
*/
|
|
465
465
|
export declare enum CasePropertyKeys {
|
|
466
|
+
/** Formal Complaint - Boolean */
|
|
467
|
+
FormalComplaint = "FormalComplaint",
|
|
466
468
|
/** R_QueueTitle (Customer Service - Case) */
|
|
467
469
|
RQueueTitle = "R_QueueTitle",
|
|
468
470
|
/** Date to re-open the case (Customer Service - Case) */
|
|
@@ -600,6 +602,12 @@ export declare enum CasePropertyKeys {
|
|
|
600
602
|
* @see SupportModule:Case
|
|
601
603
|
*/
|
|
602
604
|
export interface CaseProperties {
|
|
605
|
+
/** Formal Complaint - Boolean
|
|
606
|
+
*
|
|
607
|
+
* @type {BOOLEAN}
|
|
608
|
+
* @default FALSE
|
|
609
|
+
*/
|
|
610
|
+
FormalComplaint?: boolean;
|
|
603
611
|
/** R_QueueTitle (Customer Service - Case)
|
|
604
612
|
*
|
|
605
613
|
* @type {TEXT}
|
package/dist/entities-v2/Case.js
CHANGED
|
@@ -466,6 +466,8 @@ var CaseDpaCustomerType;
|
|
|
466
466
|
*/
|
|
467
467
|
var CasePropertyKeys;
|
|
468
468
|
(function (CasePropertyKeys) {
|
|
469
|
+
/** Formal Complaint - Boolean */
|
|
470
|
+
CasePropertyKeys["FormalComplaint"] = "FormalComplaint";
|
|
469
471
|
/** R_QueueTitle (Customer Service - Case) */
|
|
470
472
|
CasePropertyKeys["RQueueTitle"] = "R_QueueTitle";
|
|
471
473
|
/** Date to re-open the case (Customer Service - Case) */
|
|
@@ -488,6 +488,8 @@ export declare enum OutageCaseStageKeys {
|
|
|
488
488
|
* Property keys for OUTAGE Case
|
|
489
489
|
*/
|
|
490
490
|
export declare enum OutageCasePropertyKeys {
|
|
491
|
+
/** Formal Complaint - Boolean */
|
|
492
|
+
FormalComplaint = "FormalComplaint",
|
|
491
493
|
/** R_QueueTitle (Customer Service - Case) */
|
|
492
494
|
RQueueTitle = "R_QueueTitle",
|
|
493
495
|
/** Date to re-open the case (Customer Service - Case) */
|
|
@@ -625,6 +627,12 @@ export declare enum OutageCasePropertyKeys {
|
|
|
625
627
|
* @see SupportModule:Case
|
|
626
628
|
*/
|
|
627
629
|
export interface OutageCaseProperties {
|
|
630
|
+
/** Formal Complaint - Boolean
|
|
631
|
+
*
|
|
632
|
+
* @type {BOOLEAN}
|
|
633
|
+
* @default FALSE
|
|
634
|
+
*/
|
|
635
|
+
FormalComplaint?: boolean;
|
|
628
636
|
/** R_QueueTitle (Customer Service - Case)
|
|
629
637
|
*
|
|
630
638
|
* @type {TEXT}
|
|
@@ -491,6 +491,8 @@ var OutageCaseStageKeys;
|
|
|
491
491
|
*/
|
|
492
492
|
var OutageCasePropertyKeys;
|
|
493
493
|
(function (OutageCasePropertyKeys) {
|
|
494
|
+
/** Formal Complaint - Boolean */
|
|
495
|
+
OutageCasePropertyKeys["FormalComplaint"] = "FormalComplaint";
|
|
494
496
|
/** R_QueueTitle (Customer Service - Case) */
|
|
495
497
|
OutageCasePropertyKeys["RQueueTitle"] = "R_QueueTitle";
|
|
496
498
|
/** Date to re-open the case (Customer Service - Case) */
|
|
@@ -15,65 +15,6 @@ import { OdinRecord, OdinLink, LinkedOdinRecord } from '@d19n/odin-types/dist/co
|
|
|
15
15
|
import { UserProperties } from './User';
|
|
16
16
|
import { FileProperties } from './File';
|
|
17
17
|
import { NoteProperties } from './Note';
|
|
18
|
-
/**
|
|
19
|
-
* Valid values for OUTCOME_FORM BlockageA55.PointBLocation
|
|
20
|
-
*
|
|
21
|
-
* Data field for BlockageA55 records. Used by Field Operations team.
|
|
22
|
-
*
|
|
23
|
-
* @remarks Available options:
|
|
24
|
-
* - `CUSTOMER_PROPERTY` - Customer Property
|
|
25
|
-
* - `CHAMBER` - Chamber
|
|
26
|
-
* - `POLE` - Pole
|
|
27
|
-
*/
|
|
28
|
-
export declare enum OutcomeFormBlockageA55PointBLocation {
|
|
29
|
-
CUSTOMER_PROPERTY = "CUSTOMER_PROPERTY",
|
|
30
|
-
CHAMBER = "CHAMBER",
|
|
31
|
-
POLE = "POLE"
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Valid values for OUTCOME_FORM BlockageA55.ChamberTypePointB
|
|
35
|
-
*
|
|
36
|
-
* Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
37
|
-
*
|
|
38
|
-
* @remarks Available options:
|
|
39
|
-
* - `JUF2`
|
|
40
|
-
* - `JUF10`
|
|
41
|
-
* - `JRC12` - JRC12 (C/W 2 Lids)
|
|
42
|
-
* - `JRC14` - JRC14 (C/W 3 Lids)
|
|
43
|
-
* - `CW1` - CW1 (C/W Manhole)
|
|
44
|
-
* - `DUCT_MOUTH_AT_PROPERTY` - Duct Mouth at Property
|
|
45
|
-
* - `LOCKED_CHAMBER` - Locked Chamber
|
|
46
|
-
* - `HOLLOW_POLE` - Hollow Pole
|
|
47
|
-
* - `JUF4`
|
|
48
|
-
* - `JUF6`
|
|
49
|
-
* - `M/H`
|
|
50
|
-
*/
|
|
51
|
-
export declare enum OutcomeFormBlockageA55ChamberTypePointB {
|
|
52
|
-
JUF2 = "JUF2",
|
|
53
|
-
JUF10 = "JUF10",
|
|
54
|
-
JRC12_C_W_2_LIDS = "JRC12",
|
|
55
|
-
JRC14_C_W_3_LIDS = "JRC14",
|
|
56
|
-
CW1_C_W_MANHOLE = "CW1",
|
|
57
|
-
DUCT_MOUTH_AT_PROPERTY = "DUCT_MOUTH_AT_PROPERTY",
|
|
58
|
-
LOCKED_CHAMBER = "LOCKED_CHAMBER",
|
|
59
|
-
HOLLOW_POLE = "HOLLOW_POLE",
|
|
60
|
-
JUF4 = "JUF4",
|
|
61
|
-
JUF6 = "JUF6",
|
|
62
|
-
M_H = "M/H"
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* Valid values for OUTCOME_FORM BlockageA55.SecondBlockgageSurfaceType
|
|
66
|
-
*
|
|
67
|
-
* Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
68
|
-
*
|
|
69
|
-
* @remarks Available options:
|
|
70
|
-
* - `SOFT` - Soft (Grass/Soil)
|
|
71
|
-
* - `HARD` - Hard (Tarmac/Paving)
|
|
72
|
-
*/
|
|
73
|
-
export declare enum OutcomeFormBlockageA55SecondBlockgageSurfaceType {
|
|
74
|
-
SOFT_GRASS_SOIL = "SOFT",
|
|
75
|
-
HARD_TARMAC_PAVING = "HARD"
|
|
76
|
-
}
|
|
77
18
|
/**
|
|
78
19
|
* Valid values for OUTCOME_FORM BlockageA55.BlockageLocation
|
|
79
20
|
*
|
|
@@ -146,6 +87,52 @@ export declare enum OutcomeFormBlockageA55ChamberTypePointA {
|
|
|
146
87
|
JUF6 = "JUF6",
|
|
147
88
|
M_H = "M/H"
|
|
148
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* Valid values for OUTCOME_FORM BlockageA55.PointBLocation
|
|
92
|
+
*
|
|
93
|
+
* Data field for BlockageA55 records. Used by Field Operations team.
|
|
94
|
+
*
|
|
95
|
+
* @remarks Available options:
|
|
96
|
+
* - `CUSTOMER_PROPERTY` - Customer Property
|
|
97
|
+
* - `CHAMBER` - Chamber
|
|
98
|
+
* - `POLE` - Pole
|
|
99
|
+
*/
|
|
100
|
+
export declare enum OutcomeFormBlockageA55PointBLocation {
|
|
101
|
+
CUSTOMER_PROPERTY = "CUSTOMER_PROPERTY",
|
|
102
|
+
CHAMBER = "CHAMBER",
|
|
103
|
+
POLE = "POLE"
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Valid values for OUTCOME_FORM BlockageA55.ChamberTypePointB
|
|
107
|
+
*
|
|
108
|
+
* Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
109
|
+
*
|
|
110
|
+
* @remarks Available options:
|
|
111
|
+
* - `JUF2`
|
|
112
|
+
* - `JUF10`
|
|
113
|
+
* - `JRC12` - JRC12 (C/W 2 Lids)
|
|
114
|
+
* - `JRC14` - JRC14 (C/W 3 Lids)
|
|
115
|
+
* - `CW1` - CW1 (C/W Manhole)
|
|
116
|
+
* - `DUCT_MOUTH_AT_PROPERTY` - Duct Mouth at Property
|
|
117
|
+
* - `LOCKED_CHAMBER` - Locked Chamber
|
|
118
|
+
* - `HOLLOW_POLE` - Hollow Pole
|
|
119
|
+
* - `JUF4`
|
|
120
|
+
* - `JUF6`
|
|
121
|
+
* - `M/H`
|
|
122
|
+
*/
|
|
123
|
+
export declare enum OutcomeFormBlockageA55ChamberTypePointB {
|
|
124
|
+
JUF2 = "JUF2",
|
|
125
|
+
JUF10 = "JUF10",
|
|
126
|
+
JRC12_C_W_2_LIDS = "JRC12",
|
|
127
|
+
JRC14_C_W_3_LIDS = "JRC14",
|
|
128
|
+
CW1_C_W_MANHOLE = "CW1",
|
|
129
|
+
DUCT_MOUTH_AT_PROPERTY = "DUCT_MOUTH_AT_PROPERTY",
|
|
130
|
+
LOCKED_CHAMBER = "LOCKED_CHAMBER",
|
|
131
|
+
HOLLOW_POLE = "HOLLOW_POLE",
|
|
132
|
+
JUF4 = "JUF4",
|
|
133
|
+
JUF6 = "JUF6",
|
|
134
|
+
M_H = "M/H"
|
|
135
|
+
}
|
|
149
136
|
/**
|
|
150
137
|
* Valid values for OUTCOME_FORM BlockageA55.MinimumFootwayDistanceMaintained
|
|
151
138
|
*
|
|
@@ -198,6 +185,19 @@ export declare enum OutcomeFormBlockageA55SecondBlockageLocation {
|
|
|
198
185
|
PRIVATE_LAND = "PRIVATE_LAND",
|
|
199
186
|
PUBLIC_LAND = "PUBLIC_LAND"
|
|
200
187
|
}
|
|
188
|
+
/**
|
|
189
|
+
* Valid values for OUTCOME_FORM BlockageA55.SecondBlockgageSurfaceType
|
|
190
|
+
*
|
|
191
|
+
* Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
192
|
+
*
|
|
193
|
+
* @remarks Available options:
|
|
194
|
+
* - `SOFT` - Soft (Grass/Soil)
|
|
195
|
+
* - `HARD` - Hard (Tarmac/Paving)
|
|
196
|
+
*/
|
|
197
|
+
export declare enum OutcomeFormBlockageA55SecondBlockgageSurfaceType {
|
|
198
|
+
SOFT_GRASS_SOIL = "SOFT",
|
|
199
|
+
HARD_TARMAC_PAVING = "HARD"
|
|
200
|
+
}
|
|
201
201
|
/**
|
|
202
202
|
* Valid values for OUTCOME_FORM BlockageA55.PermissionsRequired
|
|
203
203
|
*
|
|
@@ -215,32 +215,22 @@ export declare enum OutcomeFormBlockageA55PermissionsRequired {
|
|
|
215
215
|
* Property keys for OUTCOME_FORM BlockageA55
|
|
216
216
|
*/
|
|
217
217
|
export declare enum OutcomeFormBlockageA55PropertyKeys {
|
|
218
|
-
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
219
|
-
Udprn = "UDPRN",
|
|
220
|
-
/** Engineer Name (Field Operations - BlockageA55) */
|
|
221
|
-
EngineerName = "EngineerName",
|
|
222
218
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
223
219
|
Overview = "Overview",
|
|
224
220
|
/** Date field for BlockageA55 records. Used by Field Operations team. */
|
|
225
221
|
DateCreated = "DateCreated",
|
|
226
222
|
/** Display name/title for BlockageA55 records. Primary identifier for Field Operations team. */
|
|
227
223
|
ExchangeName = "ExchangeName",
|
|
228
|
-
/**
|
|
229
|
-
|
|
230
|
-
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization. */
|
|
231
|
-
ChamberTypePointB = "ChamberTypePointB",
|
|
232
|
-
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization. */
|
|
233
|
-
SecondBlockgageSurfaceType = "SecondBlockgageSurfaceType",
|
|
234
|
-
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
235
|
-
PointBImageSurrounding = "PointBImageSurrounding",
|
|
236
|
-
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
237
|
-
PointBImageInternal = "PointBImageInternal",
|
|
224
|
+
/** Engineer Name (Field Operations - BlockageA55) */
|
|
225
|
+
EngineerName = "EngineerName",
|
|
238
226
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
239
227
|
WorkOrderNumber = "WorkOrderNumber",
|
|
240
228
|
/** Contact information field for BlockageA55. Used by Field Operations team for communication. */
|
|
241
229
|
FullAddress = "FullAddress",
|
|
242
230
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
243
231
|
PianoiNumber = "PIANOINumber",
|
|
232
|
+
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
233
|
+
Udprn = "UDPRN",
|
|
244
234
|
/** Blockage Details (Field Operations - BlockageA55) */
|
|
245
235
|
BlockageDetails = "BlockageDetails",
|
|
246
236
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
@@ -257,6 +247,8 @@ export declare enum OutcomeFormBlockageA55PropertyKeys {
|
|
|
257
247
|
PointADetails = "PointADetails",
|
|
258
248
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
259
249
|
PointALocation = "PointALocation",
|
|
250
|
+
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization. */
|
|
251
|
+
ChamberTypePointA = "ChamberTypePointA",
|
|
260
252
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
261
253
|
PointAImageSurrounding = "PointAImageSurrounding",
|
|
262
254
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
@@ -267,8 +259,14 @@ export declare enum OutcomeFormBlockageA55PropertyKeys {
|
|
|
267
259
|
PointAClosestAddress = "PointAClosestAddress",
|
|
268
260
|
/** Point B Details (Field Operations - BlockageA55) */
|
|
269
261
|
PointBDetails = "PointBDetails",
|
|
262
|
+
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
263
|
+
PointBLocation = "PointBLocation",
|
|
270
264
|
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization. */
|
|
271
|
-
|
|
265
|
+
ChamberTypePointB = "ChamberTypePointB",
|
|
266
|
+
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
267
|
+
PointBImageSurrounding = "PointBImageSurrounding",
|
|
268
|
+
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
269
|
+
PointBImageInternal = "PointBImageInternal",
|
|
272
270
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
273
271
|
PointBImageRod = "PointBImageRod",
|
|
274
272
|
/** Contact information field for BlockageA55. Used by Field Operations team for communication. */
|
|
@@ -283,12 +281,16 @@ export declare enum OutcomeFormBlockageA55PropertyKeys {
|
|
|
283
281
|
CarriagewayIncursionRequired = "CarriagewayIncursionRequired",
|
|
284
282
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
285
283
|
NetomniaOdinImageDuctSection = "NetomniaOdinImageDuctSection",
|
|
286
|
-
/**
|
|
287
|
-
|
|
284
|
+
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
285
|
+
AddXToTheImage = "AddXToTheImage",
|
|
288
286
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
289
287
|
AnyFurtherBlockages = "AnyFurtherBlockages",
|
|
290
288
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
291
289
|
SecondBlockageLocation = "SecondBlockageLocation",
|
|
290
|
+
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization. */
|
|
291
|
+
SecondBlockgageSurfaceType = "SecondBlockgageSurfaceType",
|
|
292
|
+
/** Contact information field for BlockageA55. Used by Field Operations team for communication. */
|
|
293
|
+
SecondBlockageClosestAddress = "SecondBlockageClosestAddress",
|
|
292
294
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
293
295
|
SecondBlockageImageXMarked = "SecondBlockageImageXMarked",
|
|
294
296
|
/** Customer Information (Field Operations - BlockageA55) */
|
|
@@ -298,8 +300,6 @@ export declare enum OutcomeFormBlockageA55PropertyKeys {
|
|
|
298
300
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
299
301
|
PtdCopy = "PTDCopy",
|
|
300
302
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
301
|
-
AddXToTheImage = "AddXToTheImage",
|
|
302
|
-
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
303
303
|
TotalDuctLength = "TotalDuctLength",
|
|
304
304
|
/** Data field for BlockageA55 records. Used by Field Operations team. */
|
|
305
305
|
SplitMeasurement = "SplitMeasurement"
|
|
@@ -310,16 +310,6 @@ export declare enum OutcomeFormBlockageA55PropertyKeys {
|
|
|
310
310
|
* @see FieldServiceModule:BlockageA55
|
|
311
311
|
*/
|
|
312
312
|
export interface OutcomeFormBlockageA55Properties {
|
|
313
|
-
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
314
|
-
*
|
|
315
|
-
* @type {TEXT}
|
|
316
|
-
*/
|
|
317
|
-
Udprn?: string;
|
|
318
|
-
/** Engineer Name (Field Operations - BlockageA55)
|
|
319
|
-
*
|
|
320
|
-
* @type {TEXT}
|
|
321
|
-
*/
|
|
322
|
-
EngineerName?: string;
|
|
323
313
|
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
324
314
|
*
|
|
325
315
|
* @type {TEXT}
|
|
@@ -335,34 +325,11 @@ export interface OutcomeFormBlockageA55Properties {
|
|
|
335
325
|
* @type {TEXT}
|
|
336
326
|
*/
|
|
337
327
|
ExchangeName?: string;
|
|
338
|
-
/**
|
|
339
|
-
*
|
|
340
|
-
* @type {ENUM}
|
|
341
|
-
* @enum {OutcomeFormBlockageA55PointBLocation}
|
|
342
|
-
*/
|
|
343
|
-
PointBLocation?: OutcomeFormBlockageA55PointBLocation;
|
|
344
|
-
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
345
|
-
*
|
|
346
|
-
* @type {ENUM}
|
|
347
|
-
* @enum {OutcomeFormBlockageA55ChamberTypePointB}
|
|
348
|
-
*/
|
|
349
|
-
ChamberTypePointB?: OutcomeFormBlockageA55ChamberTypePointB;
|
|
350
|
-
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
351
|
-
*
|
|
352
|
-
* @type {ENUM}
|
|
353
|
-
* @enum {OutcomeFormBlockageA55SecondBlockgageSurfaceType}
|
|
354
|
-
*/
|
|
355
|
-
SecondBlockgageSurfaceType?: OutcomeFormBlockageA55SecondBlockgageSurfaceType;
|
|
356
|
-
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
357
|
-
*
|
|
358
|
-
* @type {FILE_MULTIPLE}
|
|
359
|
-
*/
|
|
360
|
-
PointBImageSurrounding?: string;
|
|
361
|
-
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
328
|
+
/** Engineer Name (Field Operations - BlockageA55)
|
|
362
329
|
*
|
|
363
|
-
* @type {
|
|
330
|
+
* @type {TEXT}
|
|
364
331
|
*/
|
|
365
|
-
|
|
332
|
+
EngineerName?: string;
|
|
366
333
|
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
367
334
|
*
|
|
368
335
|
* @type {TEXT}
|
|
@@ -378,6 +345,11 @@ export interface OutcomeFormBlockageA55Properties {
|
|
|
378
345
|
* @type {TEXT}
|
|
379
346
|
*/
|
|
380
347
|
PianoiNumber?: string;
|
|
348
|
+
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
349
|
+
*
|
|
350
|
+
* @type {TEXT}
|
|
351
|
+
*/
|
|
352
|
+
Udprn?: string;
|
|
381
353
|
/** Blockage Details (Field Operations - BlockageA55)
|
|
382
354
|
*
|
|
383
355
|
* @type {TEXT}
|
|
@@ -421,6 +393,12 @@ export interface OutcomeFormBlockageA55Properties {
|
|
|
421
393
|
* @enum {OutcomeFormBlockageA55PointALocation}
|
|
422
394
|
*/
|
|
423
395
|
PointALocation?: OutcomeFormBlockageA55PointALocation;
|
|
396
|
+
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
397
|
+
*
|
|
398
|
+
* @type {ENUM}
|
|
399
|
+
* @enum {OutcomeFormBlockageA55ChamberTypePointA}
|
|
400
|
+
*/
|
|
401
|
+
ChamberTypePointA?: OutcomeFormBlockageA55ChamberTypePointA;
|
|
424
402
|
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
425
403
|
*
|
|
426
404
|
* @type {FILE_MULTIPLE}
|
|
@@ -446,12 +424,28 @@ export interface OutcomeFormBlockageA55Properties {
|
|
|
446
424
|
* @type {TEXT}
|
|
447
425
|
*/
|
|
448
426
|
PointBDetails?: string;
|
|
427
|
+
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
428
|
+
*
|
|
429
|
+
* @type {ENUM}
|
|
430
|
+
* @enum {OutcomeFormBlockageA55PointBLocation}
|
|
431
|
+
*/
|
|
432
|
+
PointBLocation?: OutcomeFormBlockageA55PointBLocation;
|
|
449
433
|
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
450
434
|
*
|
|
451
435
|
* @type {ENUM}
|
|
452
|
-
* @enum {
|
|
436
|
+
* @enum {OutcomeFormBlockageA55ChamberTypePointB}
|
|
453
437
|
*/
|
|
454
|
-
|
|
438
|
+
ChamberTypePointB?: OutcomeFormBlockageA55ChamberTypePointB;
|
|
439
|
+
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
440
|
+
*
|
|
441
|
+
* @type {FILE_MULTIPLE}
|
|
442
|
+
*/
|
|
443
|
+
PointBImageSurrounding?: string;
|
|
444
|
+
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
445
|
+
*
|
|
446
|
+
* @type {FILE_MULTIPLE}
|
|
447
|
+
*/
|
|
448
|
+
PointBImageInternal?: string;
|
|
455
449
|
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
456
450
|
*
|
|
457
451
|
* @type {FILE_MULTIPLE}
|
|
@@ -489,11 +483,11 @@ export interface OutcomeFormBlockageA55Properties {
|
|
|
489
483
|
* @type {FILE_SINGLE}
|
|
490
484
|
*/
|
|
491
485
|
NetomniaOdinImageDuctSection?: string;
|
|
492
|
-
/**
|
|
486
|
+
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
493
487
|
*
|
|
494
|
-
* @type {
|
|
488
|
+
* @type {FILE_MULTIPLE}
|
|
495
489
|
*/
|
|
496
|
-
|
|
490
|
+
AddXToTheImage?: string;
|
|
497
491
|
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
498
492
|
*
|
|
499
493
|
* @type {ENUM}
|
|
@@ -506,6 +500,17 @@ export interface OutcomeFormBlockageA55Properties {
|
|
|
506
500
|
* @enum {OutcomeFormBlockageA55SecondBlockageLocation}
|
|
507
501
|
*/
|
|
508
502
|
SecondBlockageLocation?: OutcomeFormBlockageA55SecondBlockageLocation;
|
|
503
|
+
/** Classification type for BlockageA55 records. Used by Field Operations team for categorization.
|
|
504
|
+
*
|
|
505
|
+
* @type {ENUM}
|
|
506
|
+
* @enum {OutcomeFormBlockageA55SecondBlockgageSurfaceType}
|
|
507
|
+
*/
|
|
508
|
+
SecondBlockgageSurfaceType?: OutcomeFormBlockageA55SecondBlockgageSurfaceType;
|
|
509
|
+
/** Contact information field for BlockageA55. Used by Field Operations team for communication.
|
|
510
|
+
*
|
|
511
|
+
* @type {TEXT}
|
|
512
|
+
*/
|
|
513
|
+
SecondBlockageClosestAddress?: string;
|
|
509
514
|
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
510
515
|
*
|
|
511
516
|
* @type {FILE_MULTIPLE}
|
|
@@ -527,11 +532,6 @@ export interface OutcomeFormBlockageA55Properties {
|
|
|
527
532
|
* @type {FILE_MULTIPLE}
|
|
528
533
|
*/
|
|
529
534
|
PtdCopy?: string;
|
|
530
|
-
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
531
|
-
*
|
|
532
|
-
* @type {FILE_MULTIPLE}
|
|
533
|
-
*/
|
|
534
|
-
AddXToTheImage?: string;
|
|
535
535
|
/** Data field for BlockageA55 records. Used by Field Operations team.
|
|
536
536
|
*
|
|
537
537
|
* @type {TEXT}
|