@d19n/youfibre-odin-sdk 1.0.224 → 1.0.225
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/BillingAdjustmentCreateDto.d.ts +3 -1
- package/dist/actions-v2/BillingAdjustmentUpdateDto.d.ts +8 -6
- package/dist/entities-v2/BillingAdjustment.d.ts +23 -23
- package/dist/entities-v2/BillingAdjustment.js +18 -18
- package/dist/entities-v2/BlockageA55.d.ts +38 -38
- package/dist/entities-v2/BlockageA55.js +34 -34
- package/dist/entities-v2/OhInstallationAudit.d.ts +23 -23
- package/dist/entities-v2/OhInstallationAudit.js +18 -18
- package/dist/entities-v2/OntReplacementApproval.d.ts +0 -1
- package/dist/entities-v2/OutcomeFormOverlayRealA55.d.ts +44 -44
- package/dist/entities-v2/OutcomeFormOverlayRealA55.js +37 -37
- package/dist/entities-v2/OutcomeFormRemediationRequiredReason.d.ts +102 -102
- package/dist/entities-v2/OutcomeFormRemediationRequiredReason.js +100 -100
- package/dist/records-v2/BillingAdjustmentRecord.d.ts +4 -1
- package/dist/records-v2/BillingAdjustmentRecord.js +12 -2
- package/package.json +1 -1
- package/src/actions-v2/BillingAdjustmentCreateDto.ts +3 -1
- package/src/actions-v2/BillingAdjustmentUpdateDto.ts +8 -6
- package/src/entities-v2/BillingAdjustment.ts +31 -31
- package/src/entities-v2/BlockageA55.ts +45 -45
- package/src/entities-v2/OhInstallationAudit.ts +29 -29
- package/src/entities-v2/OntReplacementApproval.ts +0 -1
- package/src/entities-v2/OutcomeFormOverlayRealA55.ts +54 -54
- package/src/entities-v2/OutcomeFormRemediationRequiredReason.ts +105 -105
- package/src/records-v2/BillingAdjustmentRecord.ts +13 -2
|
@@ -5,10 +5,12 @@ export interface BillingAdjustmentCreateProperties {
|
|
|
5
5
|
DiscountLength: number;
|
|
6
6
|
DiscountValue: number;
|
|
7
7
|
Description: string;
|
|
8
|
+
InCycleBillingPeriodStart?: string;
|
|
8
9
|
InCycleBillingPeriodEnd?: string;
|
|
9
10
|
ProrationBillableDays?: number;
|
|
10
|
-
ProrationBillingPeriodEnd?: string;
|
|
11
11
|
ProrationBillingPeriodStart?: string;
|
|
12
|
+
ProrationBillingPeriodEnd?: string;
|
|
13
|
+
ProrationType?: string;
|
|
12
14
|
}
|
|
13
15
|
export declare class BillingAdjustmentCreateDto extends OdinRecordCreateDto<BillingAdjustmentCreateProperties> {
|
|
14
16
|
readonly actionName: string;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
2
|
export interface BillingAdjustmentUpdateProperties {
|
|
3
|
-
Reason
|
|
4
|
-
DiscountType
|
|
5
|
-
DiscountLength
|
|
6
|
-
DiscountValue
|
|
7
|
-
Description
|
|
3
|
+
Reason?: string;
|
|
4
|
+
DiscountType?: string;
|
|
5
|
+
DiscountLength?: number;
|
|
6
|
+
DiscountValue?: number;
|
|
7
|
+
Description?: string;
|
|
8
|
+
InCycleBillingPeriodStart?: string;
|
|
8
9
|
InCycleBillingPeriodEnd?: string;
|
|
9
10
|
ProrationBillableDays?: number;
|
|
10
|
-
ProrationBillingPeriodEnd?: string;
|
|
11
11
|
ProrationBillingPeriodStart?: string;
|
|
12
|
+
ProrationBillingPeriodEnd?: string;
|
|
13
|
+
ProrationType?: string;
|
|
12
14
|
}
|
|
13
15
|
export declare class BillingAdjustmentUpdateDto extends OdinRecordUpdateDto<BillingAdjustmentUpdateProperties> {
|
|
14
16
|
readonly actionName: string;
|
|
@@ -6,14 +6,6 @@ import { FileProperties } from './File';
|
|
|
6
6
|
export declare enum BillingAdjustmentEntityTypes {
|
|
7
7
|
DEFAULT = "DEFAULT"
|
|
8
8
|
}
|
|
9
|
-
export declare enum BillingAdjustmentDiscountType {
|
|
10
|
-
AMOUNT = "AMOUNT",
|
|
11
|
-
PERCENT = "PERCENT"
|
|
12
|
-
}
|
|
13
|
-
export declare enum BillingAdjustmentProrationType {
|
|
14
|
-
CHARGE = "CHARGE",
|
|
15
|
-
CREDIT = "CREDIT"
|
|
16
|
-
}
|
|
17
9
|
export declare enum BillingAdjustmentReason {
|
|
18
10
|
BILLING_DAY_ADJUSMENT_LEGACY = "BILLING_DAY_ADJUSTMENT",
|
|
19
11
|
BILLING_DATE_CHANGE = "BILLING_DATE_CHANGE",
|
|
@@ -29,37 +21,45 @@ export declare enum BillingAdjustmentReason {
|
|
|
29
21
|
SALES_MISSELLING_ADJUSTMENT = "SALES_MISSELLING_ADJUSTMENT",
|
|
30
22
|
OUTAGE_COMPENSATION = "OUTAGE_COMPENSATION"
|
|
31
23
|
}
|
|
24
|
+
export declare enum BillingAdjustmentDiscountType {
|
|
25
|
+
AMOUNT = "AMOUNT",
|
|
26
|
+
PERCENT = "PERCENT"
|
|
27
|
+
}
|
|
28
|
+
export declare enum BillingAdjustmentProrationType {
|
|
29
|
+
CHARGE = "CHARGE",
|
|
30
|
+
CREDIT = "CREDIT"
|
|
31
|
+
}
|
|
32
32
|
export declare enum BillingAdjustmentPropertyKeys {
|
|
33
|
-
|
|
33
|
+
FreePeriodLength = "FreePeriodLength",
|
|
34
|
+
Reason = "Reason",
|
|
34
35
|
DiscountLength = "DiscountLength",
|
|
35
36
|
DiscountType = "DiscountType",
|
|
36
37
|
DiscountValue = "DiscountValue",
|
|
37
|
-
FreePeriodLength = "FreePeriodLength",
|
|
38
38
|
InCycleBillingPeriodEnd = "InCycleBillingPeriodEnd",
|
|
39
|
-
InCycleBillingPeriodStart = "InCycleBillingPeriodStart",
|
|
40
|
-
ProrationBillableDays = "ProrationBillableDays",
|
|
41
|
-
ProrationBillingPeriodEnd = "ProrationBillingPeriodEnd",
|
|
42
39
|
ProrationBillingPeriodStart = "ProrationBillingPeriodStart",
|
|
40
|
+
ProrationBillingPeriodEnd = "ProrationBillingPeriodEnd",
|
|
41
|
+
InCycleBillingPeriodStart = "InCycleBillingPeriodStart",
|
|
43
42
|
ProrationType = "ProrationType",
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
ProrationBillableDays = "ProrationBillableDays",
|
|
44
|
+
Title = "Title",
|
|
45
|
+
Description = "Description",
|
|
46
|
+
Source = "Source"
|
|
47
47
|
}
|
|
48
48
|
export interface BillingAdjustmentProperties {
|
|
49
|
-
|
|
49
|
+
FreePeriodLength: number;
|
|
50
|
+
Reason: BillingAdjustmentReason;
|
|
50
51
|
DiscountLength: number;
|
|
51
52
|
DiscountType: BillingAdjustmentDiscountType;
|
|
52
53
|
DiscountValue: number;
|
|
53
|
-
FreePeriodLength: number;
|
|
54
54
|
InCycleBillingPeriodEnd: string;
|
|
55
|
-
InCycleBillingPeriodStart: string;
|
|
56
|
-
ProrationBillableDays: number;
|
|
57
|
-
ProrationBillingPeriodEnd: string;
|
|
58
55
|
ProrationBillingPeriodStart: string;
|
|
56
|
+
ProrationBillingPeriodEnd: string;
|
|
57
|
+
InCycleBillingPeriodStart: string;
|
|
59
58
|
ProrationType: BillingAdjustmentProrationType;
|
|
60
|
-
|
|
61
|
-
Source: string;
|
|
59
|
+
ProrationBillableDays: number;
|
|
62
60
|
Title: string;
|
|
61
|
+
Description: string;
|
|
62
|
+
Source: string;
|
|
63
63
|
}
|
|
64
64
|
export declare class BillingAdjustment extends OdinRecord<BillingAdjustmentProperties> {
|
|
65
65
|
entity: 'OrderModule:BillingAdjustment';
|
|
@@ -1,21 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_CREATED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_CREATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_DELETED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_UPDATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_CREATED = exports.BillingAdjustment = exports.BillingAdjustmentPropertyKeys = exports.
|
|
3
|
+
exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_CREATED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_CREATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_DELETED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_UPDATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_CREATED = exports.BillingAdjustment = exports.BillingAdjustmentPropertyKeys = exports.BillingAdjustmentProrationType = exports.BillingAdjustmentDiscountType = exports.BillingAdjustmentReason = exports.BillingAdjustmentEntityTypes = void 0;
|
|
4
4
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
5
|
var BillingAdjustmentEntityTypes;
|
|
6
6
|
(function (BillingAdjustmentEntityTypes) {
|
|
7
7
|
BillingAdjustmentEntityTypes["DEFAULT"] = "DEFAULT";
|
|
8
8
|
})(BillingAdjustmentEntityTypes = exports.BillingAdjustmentEntityTypes || (exports.BillingAdjustmentEntityTypes = {}));
|
|
9
|
-
var BillingAdjustmentDiscountType;
|
|
10
|
-
(function (BillingAdjustmentDiscountType) {
|
|
11
|
-
BillingAdjustmentDiscountType["AMOUNT"] = "AMOUNT";
|
|
12
|
-
BillingAdjustmentDiscountType["PERCENT"] = "PERCENT";
|
|
13
|
-
})(BillingAdjustmentDiscountType = exports.BillingAdjustmentDiscountType || (exports.BillingAdjustmentDiscountType = {}));
|
|
14
|
-
var BillingAdjustmentProrationType;
|
|
15
|
-
(function (BillingAdjustmentProrationType) {
|
|
16
|
-
BillingAdjustmentProrationType["CHARGE"] = "CHARGE";
|
|
17
|
-
BillingAdjustmentProrationType["CREDIT"] = "CREDIT";
|
|
18
|
-
})(BillingAdjustmentProrationType = exports.BillingAdjustmentProrationType || (exports.BillingAdjustmentProrationType = {}));
|
|
19
9
|
var BillingAdjustmentReason;
|
|
20
10
|
(function (BillingAdjustmentReason) {
|
|
21
11
|
BillingAdjustmentReason["BILLING_DAY_ADJUSMENT_LEGACY"] = "BILLING_DAY_ADJUSTMENT";
|
|
@@ -32,22 +22,32 @@ var BillingAdjustmentReason;
|
|
|
32
22
|
BillingAdjustmentReason["SALES_MISSELLING_ADJUSTMENT"] = "SALES_MISSELLING_ADJUSTMENT";
|
|
33
23
|
BillingAdjustmentReason["OUTAGE_COMPENSATION"] = "OUTAGE_COMPENSATION";
|
|
34
24
|
})(BillingAdjustmentReason = exports.BillingAdjustmentReason || (exports.BillingAdjustmentReason = {}));
|
|
25
|
+
var BillingAdjustmentDiscountType;
|
|
26
|
+
(function (BillingAdjustmentDiscountType) {
|
|
27
|
+
BillingAdjustmentDiscountType["AMOUNT"] = "AMOUNT";
|
|
28
|
+
BillingAdjustmentDiscountType["PERCENT"] = "PERCENT";
|
|
29
|
+
})(BillingAdjustmentDiscountType = exports.BillingAdjustmentDiscountType || (exports.BillingAdjustmentDiscountType = {}));
|
|
30
|
+
var BillingAdjustmentProrationType;
|
|
31
|
+
(function (BillingAdjustmentProrationType) {
|
|
32
|
+
BillingAdjustmentProrationType["CHARGE"] = "CHARGE";
|
|
33
|
+
BillingAdjustmentProrationType["CREDIT"] = "CREDIT";
|
|
34
|
+
})(BillingAdjustmentProrationType = exports.BillingAdjustmentProrationType || (exports.BillingAdjustmentProrationType = {}));
|
|
35
35
|
var BillingAdjustmentPropertyKeys;
|
|
36
36
|
(function (BillingAdjustmentPropertyKeys) {
|
|
37
|
-
BillingAdjustmentPropertyKeys["
|
|
37
|
+
BillingAdjustmentPropertyKeys["FreePeriodLength"] = "FreePeriodLength";
|
|
38
|
+
BillingAdjustmentPropertyKeys["Reason"] = "Reason";
|
|
38
39
|
BillingAdjustmentPropertyKeys["DiscountLength"] = "DiscountLength";
|
|
39
40
|
BillingAdjustmentPropertyKeys["DiscountType"] = "DiscountType";
|
|
40
41
|
BillingAdjustmentPropertyKeys["DiscountValue"] = "DiscountValue";
|
|
41
|
-
BillingAdjustmentPropertyKeys["FreePeriodLength"] = "FreePeriodLength";
|
|
42
42
|
BillingAdjustmentPropertyKeys["InCycleBillingPeriodEnd"] = "InCycleBillingPeriodEnd";
|
|
43
|
-
BillingAdjustmentPropertyKeys["InCycleBillingPeriodStart"] = "InCycleBillingPeriodStart";
|
|
44
|
-
BillingAdjustmentPropertyKeys["ProrationBillableDays"] = "ProrationBillableDays";
|
|
45
|
-
BillingAdjustmentPropertyKeys["ProrationBillingPeriodEnd"] = "ProrationBillingPeriodEnd";
|
|
46
43
|
BillingAdjustmentPropertyKeys["ProrationBillingPeriodStart"] = "ProrationBillingPeriodStart";
|
|
44
|
+
BillingAdjustmentPropertyKeys["ProrationBillingPeriodEnd"] = "ProrationBillingPeriodEnd";
|
|
45
|
+
BillingAdjustmentPropertyKeys["InCycleBillingPeriodStart"] = "InCycleBillingPeriodStart";
|
|
47
46
|
BillingAdjustmentPropertyKeys["ProrationType"] = "ProrationType";
|
|
48
|
-
BillingAdjustmentPropertyKeys["
|
|
49
|
-
BillingAdjustmentPropertyKeys["Source"] = "Source";
|
|
47
|
+
BillingAdjustmentPropertyKeys["ProrationBillableDays"] = "ProrationBillableDays";
|
|
50
48
|
BillingAdjustmentPropertyKeys["Title"] = "Title";
|
|
49
|
+
BillingAdjustmentPropertyKeys["Description"] = "Description";
|
|
50
|
+
BillingAdjustmentPropertyKeys["Source"] = "Source";
|
|
51
51
|
})(BillingAdjustmentPropertyKeys = exports.BillingAdjustmentPropertyKeys || (exports.BillingAdjustmentPropertyKeys = {}));
|
|
52
52
|
class BillingAdjustment extends core_1.OdinRecord {
|
|
53
53
|
}
|
|
@@ -6,28 +6,6 @@ import { WorkOrderProperties } from './WorkOrder';
|
|
|
6
6
|
export declare enum BlockageA55EntityTypes {
|
|
7
7
|
OUTCOME_FORM = "OUTCOME_FORM"
|
|
8
8
|
}
|
|
9
|
-
export declare enum BlockageA55PointBLocation {
|
|
10
|
-
CUSTOMER_PROPERTY = "CUSTOMER_PROPERTY",
|
|
11
|
-
CHAMBER = "CHAMBER",
|
|
12
|
-
POLE = "POLE"
|
|
13
|
-
}
|
|
14
|
-
export declare enum BlockageA55ChamberTypePointB {
|
|
15
|
-
JUF2 = "JUF2",
|
|
16
|
-
JUF10 = "JUF10",
|
|
17
|
-
JRC12_C_W_2_LIDS = "JRC12",
|
|
18
|
-
JRC14_C_W_3_LIDS = "JRC14",
|
|
19
|
-
CW1_C_W_MANHOLE = "CW1",
|
|
20
|
-
DUCT_MOUTH_AT_PROPERTY = "DUCT_MOUTH_AT_PROPERTY",
|
|
21
|
-
LOCKED_CHAMBER = "LOCKED_CHAMBER",
|
|
22
|
-
HOLLOW_POLE = "HOLLOW_POLE",
|
|
23
|
-
JUF4 = "JUF4",
|
|
24
|
-
JUF6 = "JUF6",
|
|
25
|
-
M_H = "M/H"
|
|
26
|
-
}
|
|
27
|
-
export declare enum BlockageA55SecondBlockgageSurfaceType {
|
|
28
|
-
SOFT_GRASS_SOIL = "SOFT",
|
|
29
|
-
HARD_TARMAC_PAVING = "HARD"
|
|
30
|
-
}
|
|
31
9
|
export declare enum BlockageA55BlockageLocation {
|
|
32
10
|
PRIVATE_LAND = "PRIVATE_LAND",
|
|
33
11
|
PUBLIC_LAND = "PUBLIC_LAND"
|
|
@@ -54,6 +32,24 @@ export declare enum BlockageA55ChamberTypePointA {
|
|
|
54
32
|
JUF6 = "JUF6",
|
|
55
33
|
M_H = "M/H"
|
|
56
34
|
}
|
|
35
|
+
export declare enum BlockageA55PointBLocation {
|
|
36
|
+
CUSTOMER_PROPERTY = "CUSTOMER_PROPERTY",
|
|
37
|
+
CHAMBER = "CHAMBER",
|
|
38
|
+
POLE = "POLE"
|
|
39
|
+
}
|
|
40
|
+
export declare enum BlockageA55ChamberTypePointB {
|
|
41
|
+
JUF2 = "JUF2",
|
|
42
|
+
JUF10 = "JUF10",
|
|
43
|
+
JRC12_C_W_2_LIDS = "JRC12",
|
|
44
|
+
JRC14_C_W_3_LIDS = "JRC14",
|
|
45
|
+
CW1_C_W_MANHOLE = "CW1",
|
|
46
|
+
DUCT_MOUTH_AT_PROPERTY = "DUCT_MOUTH_AT_PROPERTY",
|
|
47
|
+
LOCKED_CHAMBER = "LOCKED_CHAMBER",
|
|
48
|
+
HOLLOW_POLE = "HOLLOW_POLE",
|
|
49
|
+
JUF4 = "JUF4",
|
|
50
|
+
JUF6 = "JUF6",
|
|
51
|
+
M_H = "M/H"
|
|
52
|
+
}
|
|
57
53
|
export declare enum BlockageA55MinimumFootwayDistanceMaintained {
|
|
58
54
|
YES = "YES",
|
|
59
55
|
NO = "NO"
|
|
@@ -70,6 +66,10 @@ export declare enum BlockageA55SecondBlockageLocation {
|
|
|
70
66
|
PRIVATE_LAND = "PRIVATE_LAND",
|
|
71
67
|
PUBLIC_LAND = "PUBLIC_LAND"
|
|
72
68
|
}
|
|
69
|
+
export declare enum BlockageA55SecondBlockgageSurfaceType {
|
|
70
|
+
SOFT_GRASS_SOIL = "SOFT",
|
|
71
|
+
HARD_TARMAC_PAVING = "HARD"
|
|
72
|
+
}
|
|
73
73
|
export declare enum BlockageA55PermissionsRequired {
|
|
74
74
|
YES = "YES",
|
|
75
75
|
NO = "NO"
|
|
@@ -79,15 +79,10 @@ export declare enum BlockageA55PropertyKeys {
|
|
|
79
79
|
DateCreated = "DateCreated",
|
|
80
80
|
ExchangeName = "ExchangeName",
|
|
81
81
|
EngineerName = "EngineerName",
|
|
82
|
-
PointBLocation = "PointBLocation",
|
|
83
|
-
ChamberTypePointB = "ChamberTypePointB",
|
|
84
|
-
SecondBlockgageSurfaceType = "SecondBlockgageSurfaceType",
|
|
85
|
-
PointBImageSurrounding = "PointBImageSurrounding",
|
|
86
|
-
PointBImageInternal = "PointBImageInternal",
|
|
87
|
-
Udprn = "UDPRN",
|
|
88
82
|
WorkOrderNumber = "WorkOrderNumber",
|
|
89
83
|
FullAddress = "FullAddress",
|
|
90
84
|
PianoiNumber = "PIANOINumber",
|
|
85
|
+
Udprn = "UDPRN",
|
|
91
86
|
BlockageDetails = "BlockageDetails",
|
|
92
87
|
BlockageLocation = "BlockageLocation",
|
|
93
88
|
SurfaceType = "SurfaceType",
|
|
@@ -96,12 +91,16 @@ export declare enum BlockageA55PropertyKeys {
|
|
|
96
91
|
DuctId = "DuctID",
|
|
97
92
|
PointADetails = "PointADetails",
|
|
98
93
|
PointALocation = "PointALocation",
|
|
94
|
+
ChamberTypePointA = "ChamberTypePointA",
|
|
99
95
|
PointAImageSurrounding = "PointAImageSurrounding",
|
|
100
96
|
PointAImageInternal = "PointAImageInternal",
|
|
101
97
|
PointAImageRod = "PointAImageRod",
|
|
102
98
|
PointAClosestAddress = "PointAClosestAddress",
|
|
103
99
|
PointBDetails = "PointBDetails",
|
|
104
|
-
|
|
100
|
+
PointBLocation = "PointBLocation",
|
|
101
|
+
ChamberTypePointB = "ChamberTypePointB",
|
|
102
|
+
PointBImageSurrounding = "PointBImageSurrounding",
|
|
103
|
+
PointBImageInternal = "PointBImageInternal",
|
|
105
104
|
PointBImageRod = "PointBImageRod",
|
|
106
105
|
PointBClosestAddress = "PointBClosestAddress",
|
|
107
106
|
FurtherDetails = "FurtherDetails",
|
|
@@ -109,10 +108,11 @@ export declare enum BlockageA55PropertyKeys {
|
|
|
109
108
|
MinimumFootwayDistanceMaintained = "MinimumFootwayDistanceMaintained",
|
|
110
109
|
CarriagewayIncursionRequired = "CarriagewayIncursionRequired",
|
|
111
110
|
NetomniaOdinImageDuctSection = "NetomniaOdinImageDuctSection",
|
|
112
|
-
SecondBlockageClosestAddress = "SecondBlockageClosestAddress",
|
|
113
111
|
AddXToTheImage = "AddXToTheImage",
|
|
114
112
|
AnyFurtherBlockages = "AnyFurtherBlockages",
|
|
115
113
|
SecondBlockageLocation = "SecondBlockageLocation",
|
|
114
|
+
SecondBlockgageSurfaceType = "SecondBlockgageSurfaceType",
|
|
115
|
+
SecondBlockageClosestAddress = "SecondBlockageClosestAddress",
|
|
116
116
|
SecondBlockageImageXMarked = "SecondBlockageImageXMarked",
|
|
117
117
|
CustomerInformation = "CustomerInformation",
|
|
118
118
|
PermissionsRequired = "PermissionsRequired",
|
|
@@ -125,15 +125,10 @@ export interface BlockageA55Properties {
|
|
|
125
125
|
DateCreated: string;
|
|
126
126
|
ExchangeName: string;
|
|
127
127
|
EngineerName: string;
|
|
128
|
-
PointBLocation: BlockageA55PointBLocation;
|
|
129
|
-
ChamberTypePointB: BlockageA55ChamberTypePointB;
|
|
130
|
-
SecondBlockgageSurfaceType: BlockageA55SecondBlockgageSurfaceType;
|
|
131
|
-
PointBImageSurrounding: string;
|
|
132
|
-
PointBImageInternal: string;
|
|
133
|
-
Udprn: string;
|
|
134
128
|
WorkOrderNumber: string;
|
|
135
129
|
FullAddress: string;
|
|
136
130
|
PianoiNumber: string;
|
|
131
|
+
Udprn: string;
|
|
137
132
|
BlockageDetails: string;
|
|
138
133
|
BlockageLocation: BlockageA55BlockageLocation;
|
|
139
134
|
SurfaceType: BlockageA55SurfaceType;
|
|
@@ -142,12 +137,16 @@ export interface BlockageA55Properties {
|
|
|
142
137
|
DuctId: string;
|
|
143
138
|
PointADetails: string;
|
|
144
139
|
PointALocation: BlockageA55PointALocation;
|
|
140
|
+
ChamberTypePointA: BlockageA55ChamberTypePointA;
|
|
145
141
|
PointAImageSurrounding: string;
|
|
146
142
|
PointAImageInternal: string;
|
|
147
143
|
PointAImageRod: string;
|
|
148
144
|
PointAClosestAddress: string;
|
|
149
145
|
PointBDetails: string;
|
|
150
|
-
|
|
146
|
+
PointBLocation: BlockageA55PointBLocation;
|
|
147
|
+
ChamberTypePointB: BlockageA55ChamberTypePointB;
|
|
148
|
+
PointBImageSurrounding: string;
|
|
149
|
+
PointBImageInternal: string;
|
|
151
150
|
PointBImageRod: string;
|
|
152
151
|
PointBClosestAddress: string;
|
|
153
152
|
FurtherDetails: string;
|
|
@@ -155,10 +154,11 @@ export interface BlockageA55Properties {
|
|
|
155
154
|
MinimumFootwayDistanceMaintained: BlockageA55MinimumFootwayDistanceMaintained;
|
|
156
155
|
CarriagewayIncursionRequired: BlockageA55CarriagewayIncursionRequired;
|
|
157
156
|
NetomniaOdinImageDuctSection: string;
|
|
158
|
-
SecondBlockageClosestAddress: string;
|
|
159
157
|
AddXToTheImage: string;
|
|
160
158
|
AnyFurtherBlockages: BlockageA55AnyFurtherBlockages;
|
|
161
159
|
SecondBlockageLocation: BlockageA55SecondBlockageLocation;
|
|
160
|
+
SecondBlockgageSurfaceType: BlockageA55SecondBlockgageSurfaceType;
|
|
161
|
+
SecondBlockageClosestAddress: string;
|
|
162
162
|
SecondBlockageImageXMarked: string;
|
|
163
163
|
CustomerInformation: string;
|
|
164
164
|
PermissionsRequired: BlockageA55PermissionsRequired;
|
|
@@ -1,36 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ROUTING_KEY_LINK_BLOCKAGE_A55_NOTE_DELETED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_NOTE_CREATED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_FILE_DELETED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_FILE_CREATED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_USER_DELETED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_USER_CREATED = exports.ROUTING_KEY_BLOCKAGE_A55_DELETED = exports.ROUTING_KEY_BLOCKAGE_A55_UPDATED = exports.ROUTING_KEY_BLOCKAGE_A55_CREATED = exports.BlockageA55 = exports.BlockageA55PropertyKeys = exports.BlockageA55PermissionsRequired = exports.
|
|
3
|
+
exports.ROUTING_KEY_LINK_BLOCKAGE_A55_NOTE_DELETED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_NOTE_CREATED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_FILE_DELETED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_FILE_CREATED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_USER_DELETED = exports.ROUTING_KEY_LINK_BLOCKAGE_A55_USER_CREATED = exports.ROUTING_KEY_BLOCKAGE_A55_DELETED = exports.ROUTING_KEY_BLOCKAGE_A55_UPDATED = exports.ROUTING_KEY_BLOCKAGE_A55_CREATED = exports.BlockageA55 = exports.BlockageA55PropertyKeys = exports.BlockageA55PermissionsRequired = exports.BlockageA55SecondBlockgageSurfaceType = exports.BlockageA55SecondBlockageLocation = exports.BlockageA55AnyFurtherBlockages = exports.BlockageA55CarriagewayIncursionRequired = exports.BlockageA55MinimumFootwayDistanceMaintained = exports.BlockageA55ChamberTypePointB = exports.BlockageA55PointBLocation = exports.BlockageA55ChamberTypePointA = exports.BlockageA55PointALocation = exports.BlockageA55SurfaceType = exports.BlockageA55BlockageLocation = exports.BlockageA55EntityTypes = void 0;
|
|
4
4
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
5
|
var BlockageA55EntityTypes;
|
|
6
6
|
(function (BlockageA55EntityTypes) {
|
|
7
7
|
BlockageA55EntityTypes["OUTCOME_FORM"] = "OUTCOME_FORM";
|
|
8
8
|
})(BlockageA55EntityTypes = exports.BlockageA55EntityTypes || (exports.BlockageA55EntityTypes = {}));
|
|
9
|
-
var BlockageA55PointBLocation;
|
|
10
|
-
(function (BlockageA55PointBLocation) {
|
|
11
|
-
BlockageA55PointBLocation["CUSTOMER_PROPERTY"] = "CUSTOMER_PROPERTY";
|
|
12
|
-
BlockageA55PointBLocation["CHAMBER"] = "CHAMBER";
|
|
13
|
-
BlockageA55PointBLocation["POLE"] = "POLE";
|
|
14
|
-
})(BlockageA55PointBLocation = exports.BlockageA55PointBLocation || (exports.BlockageA55PointBLocation = {}));
|
|
15
|
-
var BlockageA55ChamberTypePointB;
|
|
16
|
-
(function (BlockageA55ChamberTypePointB) {
|
|
17
|
-
BlockageA55ChamberTypePointB["JUF2"] = "JUF2";
|
|
18
|
-
BlockageA55ChamberTypePointB["JUF10"] = "JUF10";
|
|
19
|
-
BlockageA55ChamberTypePointB["JRC12_C_W_2_LIDS"] = "JRC12";
|
|
20
|
-
BlockageA55ChamberTypePointB["JRC14_C_W_3_LIDS"] = "JRC14";
|
|
21
|
-
BlockageA55ChamberTypePointB["CW1_C_W_MANHOLE"] = "CW1";
|
|
22
|
-
BlockageA55ChamberTypePointB["DUCT_MOUTH_AT_PROPERTY"] = "DUCT_MOUTH_AT_PROPERTY";
|
|
23
|
-
BlockageA55ChamberTypePointB["LOCKED_CHAMBER"] = "LOCKED_CHAMBER";
|
|
24
|
-
BlockageA55ChamberTypePointB["HOLLOW_POLE"] = "HOLLOW_POLE";
|
|
25
|
-
BlockageA55ChamberTypePointB["JUF4"] = "JUF4";
|
|
26
|
-
BlockageA55ChamberTypePointB["JUF6"] = "JUF6";
|
|
27
|
-
BlockageA55ChamberTypePointB["M_H"] = "M/H";
|
|
28
|
-
})(BlockageA55ChamberTypePointB = exports.BlockageA55ChamberTypePointB || (exports.BlockageA55ChamberTypePointB = {}));
|
|
29
|
-
var BlockageA55SecondBlockgageSurfaceType;
|
|
30
|
-
(function (BlockageA55SecondBlockgageSurfaceType) {
|
|
31
|
-
BlockageA55SecondBlockgageSurfaceType["SOFT_GRASS_SOIL"] = "SOFT";
|
|
32
|
-
BlockageA55SecondBlockgageSurfaceType["HARD_TARMAC_PAVING"] = "HARD";
|
|
33
|
-
})(BlockageA55SecondBlockgageSurfaceType = exports.BlockageA55SecondBlockgageSurfaceType || (exports.BlockageA55SecondBlockgageSurfaceType = {}));
|
|
34
9
|
var BlockageA55BlockageLocation;
|
|
35
10
|
(function (BlockageA55BlockageLocation) {
|
|
36
11
|
BlockageA55BlockageLocation["PRIVATE_LAND"] = "PRIVATE_LAND";
|
|
@@ -61,6 +36,26 @@ var BlockageA55ChamberTypePointA;
|
|
|
61
36
|
BlockageA55ChamberTypePointA["JUF6"] = "JUF6";
|
|
62
37
|
BlockageA55ChamberTypePointA["M_H"] = "M/H";
|
|
63
38
|
})(BlockageA55ChamberTypePointA = exports.BlockageA55ChamberTypePointA || (exports.BlockageA55ChamberTypePointA = {}));
|
|
39
|
+
var BlockageA55PointBLocation;
|
|
40
|
+
(function (BlockageA55PointBLocation) {
|
|
41
|
+
BlockageA55PointBLocation["CUSTOMER_PROPERTY"] = "CUSTOMER_PROPERTY";
|
|
42
|
+
BlockageA55PointBLocation["CHAMBER"] = "CHAMBER";
|
|
43
|
+
BlockageA55PointBLocation["POLE"] = "POLE";
|
|
44
|
+
})(BlockageA55PointBLocation = exports.BlockageA55PointBLocation || (exports.BlockageA55PointBLocation = {}));
|
|
45
|
+
var BlockageA55ChamberTypePointB;
|
|
46
|
+
(function (BlockageA55ChamberTypePointB) {
|
|
47
|
+
BlockageA55ChamberTypePointB["JUF2"] = "JUF2";
|
|
48
|
+
BlockageA55ChamberTypePointB["JUF10"] = "JUF10";
|
|
49
|
+
BlockageA55ChamberTypePointB["JRC12_C_W_2_LIDS"] = "JRC12";
|
|
50
|
+
BlockageA55ChamberTypePointB["JRC14_C_W_3_LIDS"] = "JRC14";
|
|
51
|
+
BlockageA55ChamberTypePointB["CW1_C_W_MANHOLE"] = "CW1";
|
|
52
|
+
BlockageA55ChamberTypePointB["DUCT_MOUTH_AT_PROPERTY"] = "DUCT_MOUTH_AT_PROPERTY";
|
|
53
|
+
BlockageA55ChamberTypePointB["LOCKED_CHAMBER"] = "LOCKED_CHAMBER";
|
|
54
|
+
BlockageA55ChamberTypePointB["HOLLOW_POLE"] = "HOLLOW_POLE";
|
|
55
|
+
BlockageA55ChamberTypePointB["JUF4"] = "JUF4";
|
|
56
|
+
BlockageA55ChamberTypePointB["JUF6"] = "JUF6";
|
|
57
|
+
BlockageA55ChamberTypePointB["M_H"] = "M/H";
|
|
58
|
+
})(BlockageA55ChamberTypePointB = exports.BlockageA55ChamberTypePointB || (exports.BlockageA55ChamberTypePointB = {}));
|
|
64
59
|
var BlockageA55MinimumFootwayDistanceMaintained;
|
|
65
60
|
(function (BlockageA55MinimumFootwayDistanceMaintained) {
|
|
66
61
|
BlockageA55MinimumFootwayDistanceMaintained["YES"] = "YES";
|
|
@@ -81,6 +76,11 @@ var BlockageA55SecondBlockageLocation;
|
|
|
81
76
|
BlockageA55SecondBlockageLocation["PRIVATE_LAND"] = "PRIVATE_LAND";
|
|
82
77
|
BlockageA55SecondBlockageLocation["PUBLIC_LAND"] = "PUBLIC_LAND";
|
|
83
78
|
})(BlockageA55SecondBlockageLocation = exports.BlockageA55SecondBlockageLocation || (exports.BlockageA55SecondBlockageLocation = {}));
|
|
79
|
+
var BlockageA55SecondBlockgageSurfaceType;
|
|
80
|
+
(function (BlockageA55SecondBlockgageSurfaceType) {
|
|
81
|
+
BlockageA55SecondBlockgageSurfaceType["SOFT_GRASS_SOIL"] = "SOFT";
|
|
82
|
+
BlockageA55SecondBlockgageSurfaceType["HARD_TARMAC_PAVING"] = "HARD";
|
|
83
|
+
})(BlockageA55SecondBlockgageSurfaceType = exports.BlockageA55SecondBlockgageSurfaceType || (exports.BlockageA55SecondBlockgageSurfaceType = {}));
|
|
84
84
|
var BlockageA55PermissionsRequired;
|
|
85
85
|
(function (BlockageA55PermissionsRequired) {
|
|
86
86
|
BlockageA55PermissionsRequired["YES"] = "YES";
|
|
@@ -92,15 +92,10 @@ var BlockageA55PropertyKeys;
|
|
|
92
92
|
BlockageA55PropertyKeys["DateCreated"] = "DateCreated";
|
|
93
93
|
BlockageA55PropertyKeys["ExchangeName"] = "ExchangeName";
|
|
94
94
|
BlockageA55PropertyKeys["EngineerName"] = "EngineerName";
|
|
95
|
-
BlockageA55PropertyKeys["PointBLocation"] = "PointBLocation";
|
|
96
|
-
BlockageA55PropertyKeys["ChamberTypePointB"] = "ChamberTypePointB";
|
|
97
|
-
BlockageA55PropertyKeys["SecondBlockgageSurfaceType"] = "SecondBlockgageSurfaceType";
|
|
98
|
-
BlockageA55PropertyKeys["PointBImageSurrounding"] = "PointBImageSurrounding";
|
|
99
|
-
BlockageA55PropertyKeys["PointBImageInternal"] = "PointBImageInternal";
|
|
100
|
-
BlockageA55PropertyKeys["Udprn"] = "UDPRN";
|
|
101
95
|
BlockageA55PropertyKeys["WorkOrderNumber"] = "WorkOrderNumber";
|
|
102
96
|
BlockageA55PropertyKeys["FullAddress"] = "FullAddress";
|
|
103
97
|
BlockageA55PropertyKeys["PianoiNumber"] = "PIANOINumber";
|
|
98
|
+
BlockageA55PropertyKeys["Udprn"] = "UDPRN";
|
|
104
99
|
BlockageA55PropertyKeys["BlockageDetails"] = "BlockageDetails";
|
|
105
100
|
BlockageA55PropertyKeys["BlockageLocation"] = "BlockageLocation";
|
|
106
101
|
BlockageA55PropertyKeys["SurfaceType"] = "SurfaceType";
|
|
@@ -109,12 +104,16 @@ var BlockageA55PropertyKeys;
|
|
|
109
104
|
BlockageA55PropertyKeys["DuctId"] = "DuctID";
|
|
110
105
|
BlockageA55PropertyKeys["PointADetails"] = "PointADetails";
|
|
111
106
|
BlockageA55PropertyKeys["PointALocation"] = "PointALocation";
|
|
107
|
+
BlockageA55PropertyKeys["ChamberTypePointA"] = "ChamberTypePointA";
|
|
112
108
|
BlockageA55PropertyKeys["PointAImageSurrounding"] = "PointAImageSurrounding";
|
|
113
109
|
BlockageA55PropertyKeys["PointAImageInternal"] = "PointAImageInternal";
|
|
114
110
|
BlockageA55PropertyKeys["PointAImageRod"] = "PointAImageRod";
|
|
115
111
|
BlockageA55PropertyKeys["PointAClosestAddress"] = "PointAClosestAddress";
|
|
116
112
|
BlockageA55PropertyKeys["PointBDetails"] = "PointBDetails";
|
|
117
|
-
BlockageA55PropertyKeys["
|
|
113
|
+
BlockageA55PropertyKeys["PointBLocation"] = "PointBLocation";
|
|
114
|
+
BlockageA55PropertyKeys["ChamberTypePointB"] = "ChamberTypePointB";
|
|
115
|
+
BlockageA55PropertyKeys["PointBImageSurrounding"] = "PointBImageSurrounding";
|
|
116
|
+
BlockageA55PropertyKeys["PointBImageInternal"] = "PointBImageInternal";
|
|
118
117
|
BlockageA55PropertyKeys["PointBImageRod"] = "PointBImageRod";
|
|
119
118
|
BlockageA55PropertyKeys["PointBClosestAddress"] = "PointBClosestAddress";
|
|
120
119
|
BlockageA55PropertyKeys["FurtherDetails"] = "FurtherDetails";
|
|
@@ -122,10 +121,11 @@ var BlockageA55PropertyKeys;
|
|
|
122
121
|
BlockageA55PropertyKeys["MinimumFootwayDistanceMaintained"] = "MinimumFootwayDistanceMaintained";
|
|
123
122
|
BlockageA55PropertyKeys["CarriagewayIncursionRequired"] = "CarriagewayIncursionRequired";
|
|
124
123
|
BlockageA55PropertyKeys["NetomniaOdinImageDuctSection"] = "NetomniaOdinImageDuctSection";
|
|
125
|
-
BlockageA55PropertyKeys["SecondBlockageClosestAddress"] = "SecondBlockageClosestAddress";
|
|
126
124
|
BlockageA55PropertyKeys["AddXToTheImage"] = "AddXToTheImage";
|
|
127
125
|
BlockageA55PropertyKeys["AnyFurtherBlockages"] = "AnyFurtherBlockages";
|
|
128
126
|
BlockageA55PropertyKeys["SecondBlockageLocation"] = "SecondBlockageLocation";
|
|
127
|
+
BlockageA55PropertyKeys["SecondBlockgageSurfaceType"] = "SecondBlockgageSurfaceType";
|
|
128
|
+
BlockageA55PropertyKeys["SecondBlockageClosestAddress"] = "SecondBlockageClosestAddress";
|
|
129
129
|
BlockageA55PropertyKeys["SecondBlockageImageXMarked"] = "SecondBlockageImageXMarked";
|
|
130
130
|
BlockageA55PropertyKeys["CustomerInformation"] = "CustomerInformation";
|
|
131
131
|
BlockageA55PropertyKeys["PermissionsRequired"] = "PermissionsRequired";
|
|
@@ -5,6 +5,10 @@ import { WorkOrderProperties } from './WorkOrder';
|
|
|
5
5
|
export declare enum OhInstallationAuditEntityTypes {
|
|
6
6
|
OUTCOME_FORM = "OUTCOME_FORM"
|
|
7
7
|
}
|
|
8
|
+
export declare enum OhInstallationAuditCableLabeledWithPIANO {
|
|
9
|
+
YES = "YES",
|
|
10
|
+
NO = "NO"
|
|
11
|
+
}
|
|
8
12
|
export declare enum OhInstallationAuditONTLocationDiscussed {
|
|
9
13
|
YES = "YES",
|
|
10
14
|
NO = "NO"
|
|
@@ -43,6 +47,10 @@ export declare enum OhInstallationAuditCableCleated {
|
|
|
43
47
|
YES = "YES",
|
|
44
48
|
NO = "NO"
|
|
45
49
|
}
|
|
50
|
+
export declare enum OhInstallationAuditExternalTerminationBoxFitted {
|
|
51
|
+
YES = "YES",
|
|
52
|
+
NO = "NO"
|
|
53
|
+
}
|
|
46
54
|
export declare enum OhInstallationAuditYouMeshInstalled {
|
|
47
55
|
YES = "YES",
|
|
48
56
|
NO = "NO",
|
|
@@ -92,21 +100,15 @@ export declare enum OhInstallationAuditAgreedToRouting {
|
|
|
92
100
|
TRUE = "TRUE",
|
|
93
101
|
FALSE = "FALSE"
|
|
94
102
|
}
|
|
95
|
-
export declare enum OhInstallationAuditExternalTerminationBoxFitted {
|
|
96
|
-
YES = "YES",
|
|
97
|
-
NO = "NO"
|
|
98
|
-
}
|
|
99
|
-
export declare enum OhInstallationAuditCableLabeledWithPIANO {
|
|
100
|
-
YES = "YES",
|
|
101
|
-
NO = "NO"
|
|
102
|
-
}
|
|
103
103
|
export declare enum OhInstallationAuditPropertyKeys {
|
|
104
|
-
|
|
104
|
+
RedLightTestPhoto = "RedLightTestPhoto",
|
|
105
|
+
CableLabeledWithPiano = "CableLabeledWithPIANO",
|
|
105
106
|
Statement1 = "Statement1",
|
|
106
|
-
OntImage = "ONTImage",
|
|
107
107
|
OutsideImage = "OutsideImage",
|
|
108
|
+
OntImage = "ONTImage",
|
|
108
109
|
RouterImage = "RouterImage",
|
|
109
110
|
NumberOfRooms = "NumberOfRooms",
|
|
111
|
+
Statement2 = "Statement2",
|
|
110
112
|
PreviousWiFiResults = "PreviousWiFiResults",
|
|
111
113
|
PreviousWiFiResultsFurthest = "PreviousWiFiResultsFurthest",
|
|
112
114
|
OntLocationDiscussed = "ONTLocationDiscussed",
|
|
@@ -125,14 +127,15 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
125
127
|
NewDropCableHeight = "NewDropCableHeight",
|
|
126
128
|
CableCleated = "CableCleated",
|
|
127
129
|
CableCleatedPhoto = "CableCleatedPhoto",
|
|
130
|
+
ExternalTerminationBoxFitted = "ExternalTerminationBoxFitted",
|
|
128
131
|
LightReadingEvidence = "LightReadingEvidence",
|
|
129
132
|
LightReadingCbt = "LightReadingCBT",
|
|
130
133
|
SafeDrillingArea = "SafeDrillingArea",
|
|
131
134
|
WeatherSealedHole = "WeatherSealedHole",
|
|
132
135
|
CtuCableManagement = "CTUCableManagement",
|
|
133
|
-
RouterInPosition = "RouterInPosition",
|
|
134
136
|
InternalCableRun = "InternalCableRun",
|
|
135
137
|
OntWallMounted = "ONTWallMounted",
|
|
138
|
+
RouterInPosition = "RouterInPosition",
|
|
136
139
|
OpticalPowerReading = "OpticalPowerReading",
|
|
137
140
|
LightMeterPowerReading = "LightMeterPowerReading",
|
|
138
141
|
LightLoss = "LightLoss",
|
|
@@ -147,29 +150,28 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
147
150
|
ConnectingAnyDevicesSupport = "ConnectingAnyDevicesSupport",
|
|
148
151
|
DevicesConnected = "DevicesConnected",
|
|
149
152
|
SpeedTestEvidence = "SpeedTestEvidence",
|
|
150
|
-
CustomerSignOff = "CustomerSignOff",
|
|
151
153
|
ConfirmationStatementsTrue = "ConfirmationStatementsTrue",
|
|
152
154
|
SpeedTestCarriedOutPrior = "SpeedTestCarriedOutPrior",
|
|
153
155
|
SpeedsExplained = "SpeedsExplained",
|
|
154
156
|
BetterSpeedThanLastProvider = "BetterSpeedThanLastProvider",
|
|
155
157
|
CustomerInformed = "CustomerInformed",
|
|
158
|
+
CustomerSignOff = "CustomerSignOff",
|
|
156
159
|
CustomerHappyCoverage = "CustomerHappyCoverage",
|
|
157
160
|
NewSetupBetter = "NewSetupBetter",
|
|
158
161
|
NetworkNamePasswordGiven = "NetworkNamePasswordGiven",
|
|
159
162
|
AgreedToRouting = "AgreedToRouting",
|
|
160
163
|
CustomerSignature = "CustomerSignature",
|
|
161
|
-
EngineerSignature = "EngineerSignature"
|
|
162
|
-
ExternalTerminationBoxFitted = "ExternalTerminationBoxFitted",
|
|
163
|
-
RedLightTestPhoto = "RedLightTestPhoto",
|
|
164
|
-
CableLabeledWithPiano = "CableLabeledWithPIANO"
|
|
164
|
+
EngineerSignature = "EngineerSignature"
|
|
165
165
|
}
|
|
166
166
|
export interface OhInstallationAuditProperties {
|
|
167
|
-
|
|
167
|
+
RedLightTestPhoto: string;
|
|
168
|
+
CableLabeledWithPiano: OhInstallationAuditCableLabeledWithPIANO;
|
|
168
169
|
Statement1: string;
|
|
169
|
-
OntImage: string;
|
|
170
170
|
OutsideImage: string;
|
|
171
|
+
OntImage: string;
|
|
171
172
|
RouterImage: string;
|
|
172
173
|
NumberOfRooms: number;
|
|
174
|
+
Statement2: string;
|
|
173
175
|
PreviousWiFiResults: string;
|
|
174
176
|
PreviousWiFiResultsFurthest: string;
|
|
175
177
|
OntLocationDiscussed: OhInstallationAuditONTLocationDiscussed;
|
|
@@ -188,14 +190,15 @@ export interface OhInstallationAuditProperties {
|
|
|
188
190
|
NewDropCableHeight: OhInstallationAuditNewDropCableHeight;
|
|
189
191
|
CableCleated: OhInstallationAuditCableCleated;
|
|
190
192
|
CableCleatedPhoto: string;
|
|
193
|
+
ExternalTerminationBoxFitted: OhInstallationAuditExternalTerminationBoxFitted;
|
|
191
194
|
LightReadingEvidence: string;
|
|
192
195
|
LightReadingCbt: string;
|
|
193
196
|
SafeDrillingArea: string;
|
|
194
197
|
WeatherSealedHole: string;
|
|
195
198
|
CtuCableManagement: string;
|
|
196
|
-
RouterInPosition: string;
|
|
197
199
|
InternalCableRun: string;
|
|
198
200
|
OntWallMounted: string;
|
|
201
|
+
RouterInPosition: string;
|
|
199
202
|
OpticalPowerReading: string;
|
|
200
203
|
LightMeterPowerReading: string;
|
|
201
204
|
LightLoss: string;
|
|
@@ -210,21 +213,18 @@ export interface OhInstallationAuditProperties {
|
|
|
210
213
|
ConnectingAnyDevicesSupport: OhInstallationAuditConnectingAnyDevicesSupport;
|
|
211
214
|
DevicesConnected: string;
|
|
212
215
|
SpeedTestEvidence: string;
|
|
213
|
-
CustomerSignOff: string;
|
|
214
216
|
ConfirmationStatementsTrue: string;
|
|
215
217
|
SpeedTestCarriedOutPrior: OhInstallationAuditSpeedTestCarriedOutPrior;
|
|
216
218
|
SpeedsExplained: OhInstallationAuditSpeedsExplained;
|
|
217
219
|
BetterSpeedThanLastProvider: OhInstallationAuditBetterSpeedThanLastProvider;
|
|
218
220
|
CustomerInformed: OhInstallationAuditCustomerInformed;
|
|
221
|
+
CustomerSignOff: string;
|
|
219
222
|
CustomerHappyCoverage: OhInstallationAuditCustomerHappyCoverage;
|
|
220
223
|
NewSetupBetter: OhInstallationAuditNewSetupBetter;
|
|
221
224
|
NetworkNamePasswordGiven: OhInstallationAuditNetworkNamePasswordGiven;
|
|
222
225
|
AgreedToRouting: OhInstallationAuditAgreedToRouting;
|
|
223
226
|
CustomerSignature: string;
|
|
224
227
|
EngineerSignature: string;
|
|
225
|
-
ExternalTerminationBoxFitted: OhInstallationAuditExternalTerminationBoxFitted;
|
|
226
|
-
RedLightTestPhoto: string;
|
|
227
|
-
CableLabeledWithPiano: OhInstallationAuditCableLabeledWithPIANO;
|
|
228
228
|
}
|
|
229
229
|
export declare class OhInstallationAudit extends OdinRecord<OhInstallationAuditProperties> {
|
|
230
230
|
entity: 'FieldServiceModule:OhInstallationAudit';
|