@d19n/youfibre-odin-sdk 1.0.233 → 1.0.234
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/CreateRecontractOrderDto.d.ts +1 -17
- package/dist/entities-v2/OhInstallationAudit.d.ts +71 -71
- package/dist/entities-v2/OhInstallationAudit.js +43 -43
- package/dist/entities-v2/Order.d.ts +7 -0
- package/dist/entities-v2/Order.js +2 -0
- package/dist/entities-v2/OutcomeFormBlockageA55.d.ts +114 -114
- package/dist/entities-v2/OutcomeFormBlockageA55.js +78 -78
- package/dist/entities-v2/OutcomeFormOhInstallationAudit.d.ts +71 -71
- package/dist/entities-v2/OutcomeFormOhInstallationAudit.js +43 -43
- package/dist/entities-v2/OverlayRealA55.d.ts +132 -132
- package/dist/entities-v2/OverlayRealA55.js +84 -84
- package/dist/entities-v2/RemediationRequiredReason.d.ts +158 -158
- package/dist/entities-v2/RemediationRequiredReason.js +138 -138
- package/package.json +1 -1
- package/src/actions-v2/CreateRecontractOrderDto.ts +1 -17
- package/src/entities-v2/OhInstallationAudit.ts +70 -70
- package/src/entities-v2/Order.ts +7 -0
- package/src/entities-v2/OutcomeFormBlockageA55.ts +114 -114
- package/src/entities-v2/OutcomeFormOhInstallationAudit.ts +70 -70
- package/src/entities-v2/OverlayRealA55.ts +132 -132
- package/src/entities-v2/RemediationRequiredReason.ts +157 -157
|
@@ -14,7 +14,7 @@ import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/di
|
|
|
14
14
|
/**
|
|
15
15
|
* Properties for CreateRecontractOrder action
|
|
16
16
|
*
|
|
17
|
-
* @property Required fields:
|
|
17
|
+
* @property Required fields: 8
|
|
18
18
|
* @property Optional fields: 4
|
|
19
19
|
*/
|
|
20
20
|
export interface CreateRecontractOrderProperties {
|
|
@@ -86,22 +86,6 @@ export interface CreateRecontractOrderProperties {
|
|
|
86
86
|
* @required
|
|
87
87
|
*/
|
|
88
88
|
BillingTerms: string;
|
|
89
|
-
/**
|
|
90
|
-
* UDPRN
|
|
91
|
-
*
|
|
92
|
-
* unique delivery point reference number
|
|
93
|
-
* @type {NUMBER}
|
|
94
|
-
* @required
|
|
95
|
-
*/
|
|
96
|
-
Udprn: number;
|
|
97
|
-
/**
|
|
98
|
-
* UMPRN
|
|
99
|
-
*
|
|
100
|
-
* unique multiple point reference number
|
|
101
|
-
* @type {NUMBER}
|
|
102
|
-
* @required
|
|
103
|
-
*/
|
|
104
|
-
Umprn: number;
|
|
105
89
|
/**
|
|
106
90
|
* Source
|
|
107
91
|
*
|
|
@@ -21,6 +21,19 @@ export declare enum OhInstallationAuditEntityTypes {
|
|
|
21
21
|
/** outcome form */
|
|
22
22
|
OUTCOME_FORM = "OUTCOME_FORM"
|
|
23
23
|
}
|
|
24
|
+
/**
|
|
25
|
+
* Valid values for OhInstallationAudit.CableLabeledWithPIANO
|
|
26
|
+
*
|
|
27
|
+
* Select
|
|
28
|
+
*
|
|
29
|
+
* @remarks Available options:
|
|
30
|
+
* - `YES` - Yes
|
|
31
|
+
* - `NO` - No
|
|
32
|
+
*/
|
|
33
|
+
export declare enum OhInstallationAuditCableLabeledWithPIANO {
|
|
34
|
+
YES = "YES",
|
|
35
|
+
NO = "NO"
|
|
36
|
+
}
|
|
24
37
|
/**
|
|
25
38
|
* Valid values for OhInstallationAudit.ONTLocationDiscussed
|
|
26
39
|
*
|
|
@@ -142,6 +155,19 @@ export declare enum OhInstallationAuditCableCleated {
|
|
|
142
155
|
YES = "YES",
|
|
143
156
|
NO = "NO"
|
|
144
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* Valid values for OhInstallationAudit.ExternalTerminationBoxFitted
|
|
160
|
+
*
|
|
161
|
+
* Select
|
|
162
|
+
*
|
|
163
|
+
* @remarks Available options:
|
|
164
|
+
* - `YES` - Yes
|
|
165
|
+
* - `NO` - No
|
|
166
|
+
*/
|
|
167
|
+
export declare enum OhInstallationAuditExternalTerminationBoxFitted {
|
|
168
|
+
YES = "YES",
|
|
169
|
+
NO = "NO"
|
|
170
|
+
}
|
|
145
171
|
/**
|
|
146
172
|
* Valid values for OhInstallationAudit.YouMeshInstalled
|
|
147
173
|
*
|
|
@@ -300,49 +326,27 @@ export declare enum OhInstallationAuditAgreedToRouting {
|
|
|
300
326
|
TRUE = "TRUE",
|
|
301
327
|
FALSE = "FALSE"
|
|
302
328
|
}
|
|
303
|
-
/**
|
|
304
|
-
* Valid values for OhInstallationAudit.ExternalTerminationBoxFitted
|
|
305
|
-
*
|
|
306
|
-
* Select
|
|
307
|
-
*
|
|
308
|
-
* @remarks Available options:
|
|
309
|
-
* - `YES` - Yes
|
|
310
|
-
* - `NO` - No
|
|
311
|
-
*/
|
|
312
|
-
export declare enum OhInstallationAuditExternalTerminationBoxFitted {
|
|
313
|
-
YES = "YES",
|
|
314
|
-
NO = "NO"
|
|
315
|
-
}
|
|
316
|
-
/**
|
|
317
|
-
* Valid values for OhInstallationAudit.CableLabeledWithPIANO
|
|
318
|
-
*
|
|
319
|
-
* Select
|
|
320
|
-
*
|
|
321
|
-
* @remarks Available options:
|
|
322
|
-
* - `YES` - Yes
|
|
323
|
-
* - `NO` - No
|
|
324
|
-
*/
|
|
325
|
-
export declare enum OhInstallationAuditCableLabeledWithPIANO {
|
|
326
|
-
YES = "YES",
|
|
327
|
-
NO = "NO"
|
|
328
|
-
}
|
|
329
329
|
/**
|
|
330
330
|
* Property keys for OhInstallationAudit
|
|
331
331
|
* Use these constants instead of string literals for type safety
|
|
332
332
|
*/
|
|
333
333
|
export declare enum OhInstallationAuditPropertyKeys {
|
|
334
|
-
/**
|
|
335
|
-
|
|
334
|
+
/** Add image */
|
|
335
|
+
RedLightTestPhoto = "RedLightTestPhoto",
|
|
336
|
+
/** Select */
|
|
337
|
+
CableLabeledWithPiano = "CableLabeledWithPIANO",
|
|
336
338
|
/** Warning */
|
|
337
339
|
Statement1 = "Statement1",
|
|
338
340
|
/** Add image */
|
|
339
|
-
OntImage = "ONTImage",
|
|
340
|
-
/** Add image */
|
|
341
341
|
OutsideImage = "OutsideImage",
|
|
342
342
|
/** Add image */
|
|
343
|
+
OntImage = "ONTImage",
|
|
344
|
+
/** Add image */
|
|
343
345
|
RouterImage = "RouterImage",
|
|
344
346
|
/** Enter number */
|
|
345
347
|
NumberOfRooms = "NumberOfRooms",
|
|
348
|
+
/** Statement */
|
|
349
|
+
Statement2 = "Statement2",
|
|
346
350
|
/** Add image */
|
|
347
351
|
PreviousWiFiResults = "PreviousWiFiResults",
|
|
348
352
|
/** Add image */
|
|
@@ -379,6 +383,8 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
379
383
|
CableCleated = "CableCleated",
|
|
380
384
|
/** Add image */
|
|
381
385
|
CableCleatedPhoto = "CableCleatedPhoto",
|
|
386
|
+
/** Select */
|
|
387
|
+
ExternalTerminationBoxFitted = "ExternalTerminationBoxFitted",
|
|
382
388
|
/** Add image */
|
|
383
389
|
LightReadingEvidence = "LightReadingEvidence",
|
|
384
390
|
/** Add image */
|
|
@@ -390,12 +396,12 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
390
396
|
/** Add image */
|
|
391
397
|
CtuCableManagement = "CTUCableManagement",
|
|
392
398
|
/** Add image */
|
|
393
|
-
RouterInPosition = "RouterInPosition",
|
|
394
|
-
/** Add image */
|
|
395
399
|
InternalCableRun = "InternalCableRun",
|
|
396
400
|
/** Add image */
|
|
397
401
|
OntWallMounted = "ONTWallMounted",
|
|
398
402
|
/** Add image */
|
|
403
|
+
RouterInPosition = "RouterInPosition",
|
|
404
|
+
/** Add image */
|
|
399
405
|
OpticalPowerReading = "OpticalPowerReading",
|
|
400
406
|
/** Add image */
|
|
401
407
|
LightMeterPowerReading = "LightMeterPowerReading",
|
|
@@ -424,8 +430,6 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
424
430
|
/** Add image */
|
|
425
431
|
SpeedTestEvidence = "SpeedTestEvidence",
|
|
426
432
|
/** Text */
|
|
427
|
-
CustomerSignOff = "CustomerSignOff",
|
|
428
|
-
/** Text */
|
|
429
433
|
ConfirmationStatementsTrue = "ConfirmationStatementsTrue",
|
|
430
434
|
/** Select */
|
|
431
435
|
SpeedTestCarriedOutPrior = "SpeedTestCarriedOutPrior",
|
|
@@ -435,6 +439,8 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
435
439
|
BetterSpeedThanLastProvider = "BetterSpeedThanLastProvider",
|
|
436
440
|
/** Select */
|
|
437
441
|
CustomerInformed = "CustomerInformed",
|
|
442
|
+
/** Text */
|
|
443
|
+
CustomerSignOff = "CustomerSignOff",
|
|
438
444
|
/** Select */
|
|
439
445
|
CustomerHappyCoverage = "CustomerHappyCoverage",
|
|
440
446
|
/** Select */
|
|
@@ -446,13 +452,7 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
446
452
|
/** Add here */
|
|
447
453
|
CustomerSignature = "CustomerSignature",
|
|
448
454
|
/** Add here */
|
|
449
|
-
EngineerSignature = "EngineerSignature"
|
|
450
|
-
/** Select */
|
|
451
|
-
ExternalTerminationBoxFitted = "ExternalTerminationBoxFitted",
|
|
452
|
-
/** Add image */
|
|
453
|
-
RedLightTestPhoto = "RedLightTestPhoto",
|
|
454
|
-
/** Select */
|
|
455
|
-
CableLabeledWithPiano = "CableLabeledWithPIANO"
|
|
455
|
+
EngineerSignature = "EngineerSignature"
|
|
456
456
|
}
|
|
457
457
|
/**
|
|
458
458
|
* Properties for OhInstallationAudit records
|
|
@@ -460,11 +460,17 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
460
460
|
* @see FieldServiceModule:OhInstallationAudit
|
|
461
461
|
*/
|
|
462
462
|
export interface OhInstallationAuditProperties {
|
|
463
|
-
/**
|
|
463
|
+
/** Add image
|
|
464
464
|
*
|
|
465
|
-
* @type {
|
|
465
|
+
* @type {FILE_MULTIPLE}
|
|
466
466
|
*/
|
|
467
|
-
|
|
467
|
+
RedLightTestPhoto?: string;
|
|
468
|
+
/** Select
|
|
469
|
+
*
|
|
470
|
+
* @type {ENUM}
|
|
471
|
+
* @enum {OhInstallationAuditCableLabeledWithPIANO}
|
|
472
|
+
*/
|
|
473
|
+
CableLabeledWithPiano?: OhInstallationAuditCableLabeledWithPIANO;
|
|
468
474
|
/** Warning
|
|
469
475
|
*
|
|
470
476
|
* @type {TEXT}
|
|
@@ -474,12 +480,12 @@ export interface OhInstallationAuditProperties {
|
|
|
474
480
|
*
|
|
475
481
|
* @type {FILE_MULTIPLE}
|
|
476
482
|
*/
|
|
477
|
-
|
|
483
|
+
OutsideImage?: string;
|
|
478
484
|
/** Add image
|
|
479
485
|
*
|
|
480
486
|
* @type {FILE_MULTIPLE}
|
|
481
487
|
*/
|
|
482
|
-
|
|
488
|
+
OntImage?: string;
|
|
483
489
|
/** Add image
|
|
484
490
|
*
|
|
485
491
|
* @type {FILE_MULTIPLE}
|
|
@@ -490,6 +496,11 @@ export interface OhInstallationAuditProperties {
|
|
|
490
496
|
* @type {NUMBER}
|
|
491
497
|
*/
|
|
492
498
|
NumberOfRooms?: number;
|
|
499
|
+
/** Statement
|
|
500
|
+
*
|
|
501
|
+
* @type {TEXT}
|
|
502
|
+
*/
|
|
503
|
+
Statement2?: string;
|
|
493
504
|
/** Add image
|
|
494
505
|
*
|
|
495
506
|
* @type {FILE_MULTIPLE}
|
|
@@ -589,6 +600,12 @@ export interface OhInstallationAuditProperties {
|
|
|
589
600
|
* @type {FILE_MULTIPLE}
|
|
590
601
|
*/
|
|
591
602
|
CableCleatedPhoto?: string;
|
|
603
|
+
/** Select
|
|
604
|
+
*
|
|
605
|
+
* @type {ENUM}
|
|
606
|
+
* @enum {OhInstallationAuditExternalTerminationBoxFitted}
|
|
607
|
+
*/
|
|
608
|
+
ExternalTerminationBoxFitted?: OhInstallationAuditExternalTerminationBoxFitted;
|
|
592
609
|
/** Add image
|
|
593
610
|
*
|
|
594
611
|
* @type {FILE_MULTIPLE}
|
|
@@ -618,17 +635,17 @@ export interface OhInstallationAuditProperties {
|
|
|
618
635
|
*
|
|
619
636
|
* @type {FILE_MULTIPLE}
|
|
620
637
|
*/
|
|
621
|
-
|
|
638
|
+
InternalCableRun?: string;
|
|
622
639
|
/** Add image
|
|
623
640
|
*
|
|
624
641
|
* @type {FILE_MULTIPLE}
|
|
625
642
|
*/
|
|
626
|
-
|
|
643
|
+
OntWallMounted?: string;
|
|
627
644
|
/** Add image
|
|
628
645
|
*
|
|
629
646
|
* @type {FILE_MULTIPLE}
|
|
630
647
|
*/
|
|
631
|
-
|
|
648
|
+
RouterInPosition?: string;
|
|
632
649
|
/** Add image
|
|
633
650
|
*
|
|
634
651
|
* @type {FILE_MULTIPLE}
|
|
@@ -703,11 +720,6 @@ export interface OhInstallationAuditProperties {
|
|
|
703
720
|
* @type {FILE_MULTIPLE}
|
|
704
721
|
*/
|
|
705
722
|
SpeedTestEvidence?: string;
|
|
706
|
-
/** Text
|
|
707
|
-
*
|
|
708
|
-
* @type {TEXT}
|
|
709
|
-
*/
|
|
710
|
-
CustomerSignOff?: string;
|
|
711
723
|
/** Text
|
|
712
724
|
*
|
|
713
725
|
* @type {TEXT}
|
|
@@ -737,6 +749,11 @@ export interface OhInstallationAuditProperties {
|
|
|
737
749
|
* @enum {OhInstallationAuditCustomerInformed}
|
|
738
750
|
*/
|
|
739
751
|
CustomerInformed?: OhInstallationAuditCustomerInformed;
|
|
752
|
+
/** Text
|
|
753
|
+
*
|
|
754
|
+
* @type {TEXT}
|
|
755
|
+
*/
|
|
756
|
+
CustomerSignOff?: string;
|
|
740
757
|
/** Select
|
|
741
758
|
*
|
|
742
759
|
* @type {ENUM}
|
|
@@ -771,23 +788,6 @@ export interface OhInstallationAuditProperties {
|
|
|
771
788
|
* @type {SIGNATURE}
|
|
772
789
|
*/
|
|
773
790
|
EngineerSignature?: string;
|
|
774
|
-
/** Select
|
|
775
|
-
*
|
|
776
|
-
* @type {ENUM}
|
|
777
|
-
* @enum {OhInstallationAuditExternalTerminationBoxFitted}
|
|
778
|
-
*/
|
|
779
|
-
ExternalTerminationBoxFitted?: OhInstallationAuditExternalTerminationBoxFitted;
|
|
780
|
-
/** Add image
|
|
781
|
-
*
|
|
782
|
-
* @type {FILE_MULTIPLE}
|
|
783
|
-
*/
|
|
784
|
-
RedLightTestPhoto?: string;
|
|
785
|
-
/** Select
|
|
786
|
-
*
|
|
787
|
-
* @type {ENUM}
|
|
788
|
-
* @enum {OhInstallationAuditCableLabeledWithPIANO}
|
|
789
|
-
*/
|
|
790
|
-
CableLabeledWithPiano?: OhInstallationAuditCableLabeledWithPIANO;
|
|
791
791
|
}
|
|
792
792
|
/**
|
|
793
793
|
* OhInstallationAudit entity from FieldServiceModule
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Generated from Odin schema definition
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_FILE_CREATED = exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_OH_INSTALLATION_AUDIT_DELETED = exports.ROUTING_KEY_OH_INSTALLATION_AUDIT_UPDATED = exports.ROUTING_KEY_OH_INSTALLATION_AUDIT_CREATED = exports.OhInstallationAudit = exports.OhInstallationAuditPropertyKeys = exports.
|
|
15
|
+
exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_FILE_CREATED = exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_OH_INSTALLATION_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_OH_INSTALLATION_AUDIT_DELETED = exports.ROUTING_KEY_OH_INSTALLATION_AUDIT_UPDATED = exports.ROUTING_KEY_OH_INSTALLATION_AUDIT_CREATED = exports.OhInstallationAudit = exports.OhInstallationAuditPropertyKeys = exports.OhInstallationAuditAgreedToRouting = exports.OhInstallationAuditNetworkNamePasswordGiven = exports.OhInstallationAuditNewSetupBetter = exports.OhInstallationAuditCustomerHappyCoverage = exports.OhInstallationAuditCustomerInformed = exports.OhInstallationAuditBetterSpeedThanLastProvider = exports.OhInstallationAuditSpeedsExplained = exports.OhInstallationAuditSpeedTestCarriedOutPrior = exports.OhInstallationAuditConnectingAnyDevicesSupport = exports.OhInstallationAuditYouMeshBenfitDiscussion = exports.OhInstallationAuditYouMeshBenefit = exports.OhInstallationAuditYouMeshInstalled = exports.OhInstallationAuditExternalTerminationBoxFitted = exports.OhInstallationAuditCableCleated = exports.OhInstallationAuditNewDropCableHeight = exports.OhInstallationAuditNewDropCable = exports.OhInstallationAuditCBTDiffer = exports.OhInstallationAuditPoleTest = exports.OhInstallationAuditRouterSameLocation = exports.OhInstallationAuditRouterLocationDiscussed = exports.OhInstallationAuditONTSameLocation = exports.OhInstallationAuditONTLocationDiscussed = exports.OhInstallationAuditCableLabeledWithPIANO = exports.OhInstallationAuditEntityTypes = void 0;
|
|
16
16
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
17
|
/**
|
|
18
18
|
* Available types for OhInstallationAudit records
|
|
@@ -22,6 +22,20 @@ var OhInstallationAuditEntityTypes;
|
|
|
22
22
|
/** outcome form */
|
|
23
23
|
OhInstallationAuditEntityTypes["OUTCOME_FORM"] = "OUTCOME_FORM";
|
|
24
24
|
})(OhInstallationAuditEntityTypes = exports.OhInstallationAuditEntityTypes || (exports.OhInstallationAuditEntityTypes = {}));
|
|
25
|
+
/**
|
|
26
|
+
* Valid values for OhInstallationAudit.CableLabeledWithPIANO
|
|
27
|
+
*
|
|
28
|
+
* Select
|
|
29
|
+
*
|
|
30
|
+
* @remarks Available options:
|
|
31
|
+
* - `YES` - Yes
|
|
32
|
+
* - `NO` - No
|
|
33
|
+
*/
|
|
34
|
+
var OhInstallationAuditCableLabeledWithPIANO;
|
|
35
|
+
(function (OhInstallationAuditCableLabeledWithPIANO) {
|
|
36
|
+
OhInstallationAuditCableLabeledWithPIANO["YES"] = "YES";
|
|
37
|
+
OhInstallationAuditCableLabeledWithPIANO["NO"] = "NO";
|
|
38
|
+
})(OhInstallationAuditCableLabeledWithPIANO = exports.OhInstallationAuditCableLabeledWithPIANO || (exports.OhInstallationAuditCableLabeledWithPIANO = {}));
|
|
25
39
|
/**
|
|
26
40
|
* Valid values for OhInstallationAudit.ONTLocationDiscussed
|
|
27
41
|
*
|
|
@@ -152,6 +166,20 @@ var OhInstallationAuditCableCleated;
|
|
|
152
166
|
OhInstallationAuditCableCleated["YES"] = "YES";
|
|
153
167
|
OhInstallationAuditCableCleated["NO"] = "NO";
|
|
154
168
|
})(OhInstallationAuditCableCleated = exports.OhInstallationAuditCableCleated || (exports.OhInstallationAuditCableCleated = {}));
|
|
169
|
+
/**
|
|
170
|
+
* Valid values for OhInstallationAudit.ExternalTerminationBoxFitted
|
|
171
|
+
*
|
|
172
|
+
* Select
|
|
173
|
+
*
|
|
174
|
+
* @remarks Available options:
|
|
175
|
+
* - `YES` - Yes
|
|
176
|
+
* - `NO` - No
|
|
177
|
+
*/
|
|
178
|
+
var OhInstallationAuditExternalTerminationBoxFitted;
|
|
179
|
+
(function (OhInstallationAuditExternalTerminationBoxFitted) {
|
|
180
|
+
OhInstallationAuditExternalTerminationBoxFitted["YES"] = "YES";
|
|
181
|
+
OhInstallationAuditExternalTerminationBoxFitted["NO"] = "NO";
|
|
182
|
+
})(OhInstallationAuditExternalTerminationBoxFitted = exports.OhInstallationAuditExternalTerminationBoxFitted || (exports.OhInstallationAuditExternalTerminationBoxFitted = {}));
|
|
155
183
|
/**
|
|
156
184
|
* Valid values for OhInstallationAudit.YouMeshInstalled
|
|
157
185
|
*
|
|
@@ -322,52 +350,28 @@ var OhInstallationAuditAgreedToRouting;
|
|
|
322
350
|
OhInstallationAuditAgreedToRouting["TRUE"] = "TRUE";
|
|
323
351
|
OhInstallationAuditAgreedToRouting["FALSE"] = "FALSE";
|
|
324
352
|
})(OhInstallationAuditAgreedToRouting = exports.OhInstallationAuditAgreedToRouting || (exports.OhInstallationAuditAgreedToRouting = {}));
|
|
325
|
-
/**
|
|
326
|
-
* Valid values for OhInstallationAudit.ExternalTerminationBoxFitted
|
|
327
|
-
*
|
|
328
|
-
* Select
|
|
329
|
-
*
|
|
330
|
-
* @remarks Available options:
|
|
331
|
-
* - `YES` - Yes
|
|
332
|
-
* - `NO` - No
|
|
333
|
-
*/
|
|
334
|
-
var OhInstallationAuditExternalTerminationBoxFitted;
|
|
335
|
-
(function (OhInstallationAuditExternalTerminationBoxFitted) {
|
|
336
|
-
OhInstallationAuditExternalTerminationBoxFitted["YES"] = "YES";
|
|
337
|
-
OhInstallationAuditExternalTerminationBoxFitted["NO"] = "NO";
|
|
338
|
-
})(OhInstallationAuditExternalTerminationBoxFitted = exports.OhInstallationAuditExternalTerminationBoxFitted || (exports.OhInstallationAuditExternalTerminationBoxFitted = {}));
|
|
339
|
-
/**
|
|
340
|
-
* Valid values for OhInstallationAudit.CableLabeledWithPIANO
|
|
341
|
-
*
|
|
342
|
-
* Select
|
|
343
|
-
*
|
|
344
|
-
* @remarks Available options:
|
|
345
|
-
* - `YES` - Yes
|
|
346
|
-
* - `NO` - No
|
|
347
|
-
*/
|
|
348
|
-
var OhInstallationAuditCableLabeledWithPIANO;
|
|
349
|
-
(function (OhInstallationAuditCableLabeledWithPIANO) {
|
|
350
|
-
OhInstallationAuditCableLabeledWithPIANO["YES"] = "YES";
|
|
351
|
-
OhInstallationAuditCableLabeledWithPIANO["NO"] = "NO";
|
|
352
|
-
})(OhInstallationAuditCableLabeledWithPIANO = exports.OhInstallationAuditCableLabeledWithPIANO || (exports.OhInstallationAuditCableLabeledWithPIANO = {}));
|
|
353
353
|
/**
|
|
354
354
|
* Property keys for OhInstallationAudit
|
|
355
355
|
* Use these constants instead of string literals for type safety
|
|
356
356
|
*/
|
|
357
357
|
var OhInstallationAuditPropertyKeys;
|
|
358
358
|
(function (OhInstallationAuditPropertyKeys) {
|
|
359
|
-
/**
|
|
360
|
-
OhInstallationAuditPropertyKeys["
|
|
359
|
+
/** Add image */
|
|
360
|
+
OhInstallationAuditPropertyKeys["RedLightTestPhoto"] = "RedLightTestPhoto";
|
|
361
|
+
/** Select */
|
|
362
|
+
OhInstallationAuditPropertyKeys["CableLabeledWithPiano"] = "CableLabeledWithPIANO";
|
|
361
363
|
/** Warning */
|
|
362
364
|
OhInstallationAuditPropertyKeys["Statement1"] = "Statement1";
|
|
363
365
|
/** Add image */
|
|
364
|
-
OhInstallationAuditPropertyKeys["OntImage"] = "ONTImage";
|
|
365
|
-
/** Add image */
|
|
366
366
|
OhInstallationAuditPropertyKeys["OutsideImage"] = "OutsideImage";
|
|
367
367
|
/** Add image */
|
|
368
|
+
OhInstallationAuditPropertyKeys["OntImage"] = "ONTImage";
|
|
369
|
+
/** Add image */
|
|
368
370
|
OhInstallationAuditPropertyKeys["RouterImage"] = "RouterImage";
|
|
369
371
|
/** Enter number */
|
|
370
372
|
OhInstallationAuditPropertyKeys["NumberOfRooms"] = "NumberOfRooms";
|
|
373
|
+
/** Statement */
|
|
374
|
+
OhInstallationAuditPropertyKeys["Statement2"] = "Statement2";
|
|
371
375
|
/** Add image */
|
|
372
376
|
OhInstallationAuditPropertyKeys["PreviousWiFiResults"] = "PreviousWiFiResults";
|
|
373
377
|
/** Add image */
|
|
@@ -404,6 +408,8 @@ var OhInstallationAuditPropertyKeys;
|
|
|
404
408
|
OhInstallationAuditPropertyKeys["CableCleated"] = "CableCleated";
|
|
405
409
|
/** Add image */
|
|
406
410
|
OhInstallationAuditPropertyKeys["CableCleatedPhoto"] = "CableCleatedPhoto";
|
|
411
|
+
/** Select */
|
|
412
|
+
OhInstallationAuditPropertyKeys["ExternalTerminationBoxFitted"] = "ExternalTerminationBoxFitted";
|
|
407
413
|
/** Add image */
|
|
408
414
|
OhInstallationAuditPropertyKeys["LightReadingEvidence"] = "LightReadingEvidence";
|
|
409
415
|
/** Add image */
|
|
@@ -415,12 +421,12 @@ var OhInstallationAuditPropertyKeys;
|
|
|
415
421
|
/** Add image */
|
|
416
422
|
OhInstallationAuditPropertyKeys["CtuCableManagement"] = "CTUCableManagement";
|
|
417
423
|
/** Add image */
|
|
418
|
-
OhInstallationAuditPropertyKeys["RouterInPosition"] = "RouterInPosition";
|
|
419
|
-
/** Add image */
|
|
420
424
|
OhInstallationAuditPropertyKeys["InternalCableRun"] = "InternalCableRun";
|
|
421
425
|
/** Add image */
|
|
422
426
|
OhInstallationAuditPropertyKeys["OntWallMounted"] = "ONTWallMounted";
|
|
423
427
|
/** Add image */
|
|
428
|
+
OhInstallationAuditPropertyKeys["RouterInPosition"] = "RouterInPosition";
|
|
429
|
+
/** Add image */
|
|
424
430
|
OhInstallationAuditPropertyKeys["OpticalPowerReading"] = "OpticalPowerReading";
|
|
425
431
|
/** Add image */
|
|
426
432
|
OhInstallationAuditPropertyKeys["LightMeterPowerReading"] = "LightMeterPowerReading";
|
|
@@ -449,8 +455,6 @@ var OhInstallationAuditPropertyKeys;
|
|
|
449
455
|
/** Add image */
|
|
450
456
|
OhInstallationAuditPropertyKeys["SpeedTestEvidence"] = "SpeedTestEvidence";
|
|
451
457
|
/** Text */
|
|
452
|
-
OhInstallationAuditPropertyKeys["CustomerSignOff"] = "CustomerSignOff";
|
|
453
|
-
/** Text */
|
|
454
458
|
OhInstallationAuditPropertyKeys["ConfirmationStatementsTrue"] = "ConfirmationStatementsTrue";
|
|
455
459
|
/** Select */
|
|
456
460
|
OhInstallationAuditPropertyKeys["SpeedTestCarriedOutPrior"] = "SpeedTestCarriedOutPrior";
|
|
@@ -460,6 +464,8 @@ var OhInstallationAuditPropertyKeys;
|
|
|
460
464
|
OhInstallationAuditPropertyKeys["BetterSpeedThanLastProvider"] = "BetterSpeedThanLastProvider";
|
|
461
465
|
/** Select */
|
|
462
466
|
OhInstallationAuditPropertyKeys["CustomerInformed"] = "CustomerInformed";
|
|
467
|
+
/** Text */
|
|
468
|
+
OhInstallationAuditPropertyKeys["CustomerSignOff"] = "CustomerSignOff";
|
|
463
469
|
/** Select */
|
|
464
470
|
OhInstallationAuditPropertyKeys["CustomerHappyCoverage"] = "CustomerHappyCoverage";
|
|
465
471
|
/** Select */
|
|
@@ -472,12 +478,6 @@ var OhInstallationAuditPropertyKeys;
|
|
|
472
478
|
OhInstallationAuditPropertyKeys["CustomerSignature"] = "CustomerSignature";
|
|
473
479
|
/** Add here */
|
|
474
480
|
OhInstallationAuditPropertyKeys["EngineerSignature"] = "EngineerSignature";
|
|
475
|
-
/** Select */
|
|
476
|
-
OhInstallationAuditPropertyKeys["ExternalTerminationBoxFitted"] = "ExternalTerminationBoxFitted";
|
|
477
|
-
/** Add image */
|
|
478
|
-
OhInstallationAuditPropertyKeys["RedLightTestPhoto"] = "RedLightTestPhoto";
|
|
479
|
-
/** Select */
|
|
480
|
-
OhInstallationAuditPropertyKeys["CableLabeledWithPiano"] = "CableLabeledWithPIANO";
|
|
481
481
|
})(OhInstallationAuditPropertyKeys = exports.OhInstallationAuditPropertyKeys || (exports.OhInstallationAuditPropertyKeys = {}));
|
|
482
482
|
/**
|
|
483
483
|
* OhInstallationAudit entity from FieldServiceModule
|
|
@@ -348,6 +348,8 @@ export declare enum OrderPropertyKeys {
|
|
|
348
348
|
BillingTerms = "BillingTerms",
|
|
349
349
|
/** unique multiple point reference number */
|
|
350
350
|
Umprn = "UMPRN",
|
|
351
|
+
/** Uprn */
|
|
352
|
+
Uprn = "Uprn",
|
|
351
353
|
/** referral email */
|
|
352
354
|
ReferralEmail = "ReferralEmail",
|
|
353
355
|
/** network provider */
|
|
@@ -838,6 +840,11 @@ export interface OrderProperties {
|
|
|
838
840
|
* @default 0
|
|
839
841
|
*/
|
|
840
842
|
Umprn?: number;
|
|
843
|
+
/** Uprn
|
|
844
|
+
*
|
|
845
|
+
* @type {NUMBER}
|
|
846
|
+
*/
|
|
847
|
+
Uprn?: number;
|
|
841
848
|
/** referral email
|
|
842
849
|
*
|
|
843
850
|
* @type {TEXT}
|
|
@@ -330,6 +330,8 @@ var OrderPropertyKeys;
|
|
|
330
330
|
OrderPropertyKeys["BillingTerms"] = "BillingTerms";
|
|
331
331
|
/** unique multiple point reference number */
|
|
332
332
|
OrderPropertyKeys["Umprn"] = "UMPRN";
|
|
333
|
+
/** Uprn */
|
|
334
|
+
OrderPropertyKeys["Uprn"] = "Uprn";
|
|
333
335
|
/** referral email */
|
|
334
336
|
OrderPropertyKeys["ReferralEmail"] = "ReferralEmail";
|
|
335
337
|
/** network provider */
|