@d19n/youfibre-odin-sdk 1.0.232 → 1.0.233
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 +8 -1
- package/dist/entities-v2/CreditNote.d.ts +19 -19
- package/dist/entities-v2/CreditNote.js +6 -6
- package/dist/entities-v2/OhInstallationAudit.d.ts +71 -71
- package/dist/entities-v2/OhInstallationAudit.js +43 -43
- package/dist/entities-v2/Order.d.ts +0 -1
- 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/package.json +1 -1
- package/src/actions-v2/CreateRecontractOrderDto.ts +8 -1
- package/src/entities-v2/CreditNote.ts +19 -19
- package/src/entities-v2/OhInstallationAudit.ts +70 -70
- package/src/entities-v2/Order.ts +0 -1
- package/src/entities-v2/OutcomeFormBlockageA55.ts +114 -114
- package/src/entities-v2/OutcomeFormOhInstallationAudit.ts +70 -70
|
@@ -15,7 +15,7 @@ import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/di
|
|
|
15
15
|
* Properties for CreateRecontractOrder action
|
|
16
16
|
*
|
|
17
17
|
* @property Required fields: 10
|
|
18
|
-
* @property Optional fields:
|
|
18
|
+
* @property Optional fields: 4
|
|
19
19
|
*/
|
|
20
20
|
export interface CreateRecontractOrderProperties {
|
|
21
21
|
/**
|
|
@@ -123,6 +123,13 @@ export interface CreateRecontractOrderProperties {
|
|
|
123
123
|
* @type {ENUM}
|
|
124
124
|
*/
|
|
125
125
|
Provider?: string;
|
|
126
|
+
/**
|
|
127
|
+
* CurrencyCode
|
|
128
|
+
*
|
|
129
|
+
* Currency code
|
|
130
|
+
* @type {ENUM}
|
|
131
|
+
*/
|
|
132
|
+
CurrencyCode?: string;
|
|
126
133
|
}
|
|
127
134
|
/**
|
|
128
135
|
* CreateRecontractOrder
|
|
@@ -71,18 +71,18 @@ export declare enum CreditNoteReason {
|
|
|
71
71
|
* Use these constants instead of string literals for type safety
|
|
72
72
|
*/
|
|
73
73
|
export declare enum CreditNotePropertyKeys {
|
|
74
|
-
/** amount of the credit note */
|
|
75
|
-
Amount = "Amount",
|
|
76
74
|
/** description of the credit note */
|
|
77
75
|
Description = "Description",
|
|
76
|
+
/** amount of the credit note */
|
|
77
|
+
Amount = "Amount",
|
|
78
|
+
/** credit note status */
|
|
79
|
+
Status = "Status",
|
|
78
80
|
/** the record # of the invoice */
|
|
79
81
|
InvoiceRef = "InvoiceRef",
|
|
80
|
-
/** credit note reason */
|
|
81
|
-
Reason = "Reason",
|
|
82
82
|
/** reason code */
|
|
83
83
|
ReasonCode = "ReasonCode",
|
|
84
|
-
/** credit note
|
|
85
|
-
|
|
84
|
+
/** credit note reason */
|
|
85
|
+
Reason = "Reason"
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* Properties for CreditNote records
|
|
@@ -90,40 +90,40 @@ export declare enum CreditNotePropertyKeys {
|
|
|
90
90
|
* @see BillingModule:CreditNote
|
|
91
91
|
*/
|
|
92
92
|
export interface CreditNoteProperties {
|
|
93
|
+
/** description of the credit note
|
|
94
|
+
*
|
|
95
|
+
* @type {TEXT_LONG}
|
|
96
|
+
*/
|
|
97
|
+
Description?: string;
|
|
93
98
|
/** amount of the credit note
|
|
94
99
|
*
|
|
95
100
|
* @type {CURRENCY}
|
|
96
101
|
* @default 0
|
|
97
102
|
*/
|
|
98
103
|
Amount?: string;
|
|
99
|
-
/**
|
|
104
|
+
/** credit note status
|
|
100
105
|
*
|
|
101
|
-
* @type {
|
|
106
|
+
* @type {TEXT}
|
|
107
|
+
* @hidden This field is hidden in the UI
|
|
102
108
|
*/
|
|
103
|
-
|
|
109
|
+
Status?: string;
|
|
104
110
|
/** the record # of the invoice
|
|
105
111
|
*
|
|
106
112
|
* @type {TEXT}
|
|
107
113
|
*/
|
|
108
114
|
InvoiceRef?: string;
|
|
109
|
-
/** credit note reason
|
|
110
|
-
*
|
|
111
|
-
* @type {ENUM}
|
|
112
|
-
* @enum {CreditNoteReason}
|
|
113
|
-
*/
|
|
114
|
-
Reason?: CreditNoteReason;
|
|
115
115
|
/** reason code
|
|
116
116
|
*
|
|
117
117
|
* @type {TEXT}
|
|
118
118
|
* @hidden This field is hidden in the UI
|
|
119
119
|
*/
|
|
120
120
|
ReasonCode?: string;
|
|
121
|
-
/** credit note
|
|
121
|
+
/** credit note reason
|
|
122
122
|
*
|
|
123
|
-
* @type {
|
|
124
|
-
* @
|
|
123
|
+
* @type {ENUM}
|
|
124
|
+
* @enum {CreditNoteReason}
|
|
125
125
|
*/
|
|
126
|
-
|
|
126
|
+
Reason?: CreditNoteReason;
|
|
127
127
|
}
|
|
128
128
|
/**
|
|
129
129
|
* CreditNote entity from BillingModule
|
|
@@ -73,18 +73,18 @@ var CreditNoteReason;
|
|
|
73
73
|
*/
|
|
74
74
|
var CreditNotePropertyKeys;
|
|
75
75
|
(function (CreditNotePropertyKeys) {
|
|
76
|
-
/** amount of the credit note */
|
|
77
|
-
CreditNotePropertyKeys["Amount"] = "Amount";
|
|
78
76
|
/** description of the credit note */
|
|
79
77
|
CreditNotePropertyKeys["Description"] = "Description";
|
|
78
|
+
/** amount of the credit note */
|
|
79
|
+
CreditNotePropertyKeys["Amount"] = "Amount";
|
|
80
|
+
/** credit note status */
|
|
81
|
+
CreditNotePropertyKeys["Status"] = "Status";
|
|
80
82
|
/** the record # of the invoice */
|
|
81
83
|
CreditNotePropertyKeys["InvoiceRef"] = "InvoiceRef";
|
|
82
|
-
/** credit note reason */
|
|
83
|
-
CreditNotePropertyKeys["Reason"] = "Reason";
|
|
84
84
|
/** reason code */
|
|
85
85
|
CreditNotePropertyKeys["ReasonCode"] = "ReasonCode";
|
|
86
|
-
/** credit note
|
|
87
|
-
CreditNotePropertyKeys["
|
|
86
|
+
/** credit note reason */
|
|
87
|
+
CreditNotePropertyKeys["Reason"] = "Reason";
|
|
88
88
|
})(CreditNotePropertyKeys = exports.CreditNotePropertyKeys || (exports.CreditNotePropertyKeys = {}));
|
|
89
89
|
/**
|
|
90
90
|
* CreditNote entity from BillingModule
|
|
@@ -21,19 +21,6 @@ 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
|
-
}
|
|
37
24
|
/**
|
|
38
25
|
* Valid values for OhInstallationAudit.ONTLocationDiscussed
|
|
39
26
|
*
|
|
@@ -155,19 +142,6 @@ export declare enum OhInstallationAuditCableCleated {
|
|
|
155
142
|
YES = "YES",
|
|
156
143
|
NO = "NO"
|
|
157
144
|
}
|
|
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
|
-
}
|
|
171
145
|
/**
|
|
172
146
|
* Valid values for OhInstallationAudit.YouMeshInstalled
|
|
173
147
|
*
|
|
@@ -326,27 +300,49 @@ export declare enum OhInstallationAuditAgreedToRouting {
|
|
|
326
300
|
TRUE = "TRUE",
|
|
327
301
|
FALSE = "FALSE"
|
|
328
302
|
}
|
|
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
|
-
|
|
336
|
-
/** Select */
|
|
337
|
-
CableLabeledWithPiano = "CableLabeledWithPIANO",
|
|
334
|
+
/** Statement */
|
|
335
|
+
Statement2 = "Statement2",
|
|
338
336
|
/** Warning */
|
|
339
337
|
Statement1 = "Statement1",
|
|
340
338
|
/** Add image */
|
|
341
|
-
OutsideImage = "OutsideImage",
|
|
342
|
-
/** Add image */
|
|
343
339
|
OntImage = "ONTImage",
|
|
344
340
|
/** Add image */
|
|
341
|
+
OutsideImage = "OutsideImage",
|
|
342
|
+
/** Add image */
|
|
345
343
|
RouterImage = "RouterImage",
|
|
346
344
|
/** Enter number */
|
|
347
345
|
NumberOfRooms = "NumberOfRooms",
|
|
348
|
-
/** Statement */
|
|
349
|
-
Statement2 = "Statement2",
|
|
350
346
|
/** Add image */
|
|
351
347
|
PreviousWiFiResults = "PreviousWiFiResults",
|
|
352
348
|
/** Add image */
|
|
@@ -383,8 +379,6 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
383
379
|
CableCleated = "CableCleated",
|
|
384
380
|
/** Add image */
|
|
385
381
|
CableCleatedPhoto = "CableCleatedPhoto",
|
|
386
|
-
/** Select */
|
|
387
|
-
ExternalTerminationBoxFitted = "ExternalTerminationBoxFitted",
|
|
388
382
|
/** Add image */
|
|
389
383
|
LightReadingEvidence = "LightReadingEvidence",
|
|
390
384
|
/** Add image */
|
|
@@ -396,12 +390,12 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
396
390
|
/** Add image */
|
|
397
391
|
CtuCableManagement = "CTUCableManagement",
|
|
398
392
|
/** Add image */
|
|
393
|
+
RouterInPosition = "RouterInPosition",
|
|
394
|
+
/** Add image */
|
|
399
395
|
InternalCableRun = "InternalCableRun",
|
|
400
396
|
/** Add image */
|
|
401
397
|
OntWallMounted = "ONTWallMounted",
|
|
402
398
|
/** Add image */
|
|
403
|
-
RouterInPosition = "RouterInPosition",
|
|
404
|
-
/** Add image */
|
|
405
399
|
OpticalPowerReading = "OpticalPowerReading",
|
|
406
400
|
/** Add image */
|
|
407
401
|
LightMeterPowerReading = "LightMeterPowerReading",
|
|
@@ -430,6 +424,8 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
430
424
|
/** Add image */
|
|
431
425
|
SpeedTestEvidence = "SpeedTestEvidence",
|
|
432
426
|
/** Text */
|
|
427
|
+
CustomerSignOff = "CustomerSignOff",
|
|
428
|
+
/** Text */
|
|
433
429
|
ConfirmationStatementsTrue = "ConfirmationStatementsTrue",
|
|
434
430
|
/** Select */
|
|
435
431
|
SpeedTestCarriedOutPrior = "SpeedTestCarriedOutPrior",
|
|
@@ -439,8 +435,6 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
439
435
|
BetterSpeedThanLastProvider = "BetterSpeedThanLastProvider",
|
|
440
436
|
/** Select */
|
|
441
437
|
CustomerInformed = "CustomerInformed",
|
|
442
|
-
/** Text */
|
|
443
|
-
CustomerSignOff = "CustomerSignOff",
|
|
444
438
|
/** Select */
|
|
445
439
|
CustomerHappyCoverage = "CustomerHappyCoverage",
|
|
446
440
|
/** Select */
|
|
@@ -452,7 +446,13 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
452
446
|
/** Add here */
|
|
453
447
|
CustomerSignature = "CustomerSignature",
|
|
454
448
|
/** Add here */
|
|
455
|
-
EngineerSignature = "EngineerSignature"
|
|
449
|
+
EngineerSignature = "EngineerSignature",
|
|
450
|
+
/** Select */
|
|
451
|
+
ExternalTerminationBoxFitted = "ExternalTerminationBoxFitted",
|
|
452
|
+
/** Add image */
|
|
453
|
+
RedLightTestPhoto = "RedLightTestPhoto",
|
|
454
|
+
/** Select */
|
|
455
|
+
CableLabeledWithPiano = "CableLabeledWithPIANO"
|
|
456
456
|
}
|
|
457
457
|
/**
|
|
458
458
|
* Properties for OhInstallationAudit records
|
|
@@ -460,17 +460,11 @@ export declare enum OhInstallationAuditPropertyKeys {
|
|
|
460
460
|
* @see FieldServiceModule:OhInstallationAudit
|
|
461
461
|
*/
|
|
462
462
|
export interface OhInstallationAuditProperties {
|
|
463
|
-
/**
|
|
464
|
-
*
|
|
465
|
-
* @type {FILE_MULTIPLE}
|
|
466
|
-
*/
|
|
467
|
-
RedLightTestPhoto?: string;
|
|
468
|
-
/** Select
|
|
463
|
+
/** Statement
|
|
469
464
|
*
|
|
470
|
-
* @type {
|
|
471
|
-
* @enum {OhInstallationAuditCableLabeledWithPIANO}
|
|
465
|
+
* @type {TEXT}
|
|
472
466
|
*/
|
|
473
|
-
|
|
467
|
+
Statement2?: string;
|
|
474
468
|
/** Warning
|
|
475
469
|
*
|
|
476
470
|
* @type {TEXT}
|
|
@@ -480,12 +474,12 @@ export interface OhInstallationAuditProperties {
|
|
|
480
474
|
*
|
|
481
475
|
* @type {FILE_MULTIPLE}
|
|
482
476
|
*/
|
|
483
|
-
|
|
477
|
+
OntImage?: string;
|
|
484
478
|
/** Add image
|
|
485
479
|
*
|
|
486
480
|
* @type {FILE_MULTIPLE}
|
|
487
481
|
*/
|
|
488
|
-
|
|
482
|
+
OutsideImage?: string;
|
|
489
483
|
/** Add image
|
|
490
484
|
*
|
|
491
485
|
* @type {FILE_MULTIPLE}
|
|
@@ -496,11 +490,6 @@ export interface OhInstallationAuditProperties {
|
|
|
496
490
|
* @type {NUMBER}
|
|
497
491
|
*/
|
|
498
492
|
NumberOfRooms?: number;
|
|
499
|
-
/** Statement
|
|
500
|
-
*
|
|
501
|
-
* @type {TEXT}
|
|
502
|
-
*/
|
|
503
|
-
Statement2?: string;
|
|
504
493
|
/** Add image
|
|
505
494
|
*
|
|
506
495
|
* @type {FILE_MULTIPLE}
|
|
@@ -600,12 +589,6 @@ export interface OhInstallationAuditProperties {
|
|
|
600
589
|
* @type {FILE_MULTIPLE}
|
|
601
590
|
*/
|
|
602
591
|
CableCleatedPhoto?: string;
|
|
603
|
-
/** Select
|
|
604
|
-
*
|
|
605
|
-
* @type {ENUM}
|
|
606
|
-
* @enum {OhInstallationAuditExternalTerminationBoxFitted}
|
|
607
|
-
*/
|
|
608
|
-
ExternalTerminationBoxFitted?: OhInstallationAuditExternalTerminationBoxFitted;
|
|
609
592
|
/** Add image
|
|
610
593
|
*
|
|
611
594
|
* @type {FILE_MULTIPLE}
|
|
@@ -635,17 +618,17 @@ export interface OhInstallationAuditProperties {
|
|
|
635
618
|
*
|
|
636
619
|
* @type {FILE_MULTIPLE}
|
|
637
620
|
*/
|
|
638
|
-
|
|
621
|
+
RouterInPosition?: string;
|
|
639
622
|
/** Add image
|
|
640
623
|
*
|
|
641
624
|
* @type {FILE_MULTIPLE}
|
|
642
625
|
*/
|
|
643
|
-
|
|
626
|
+
InternalCableRun?: string;
|
|
644
627
|
/** Add image
|
|
645
628
|
*
|
|
646
629
|
* @type {FILE_MULTIPLE}
|
|
647
630
|
*/
|
|
648
|
-
|
|
631
|
+
OntWallMounted?: string;
|
|
649
632
|
/** Add image
|
|
650
633
|
*
|
|
651
634
|
* @type {FILE_MULTIPLE}
|
|
@@ -720,6 +703,11 @@ export interface OhInstallationAuditProperties {
|
|
|
720
703
|
* @type {FILE_MULTIPLE}
|
|
721
704
|
*/
|
|
722
705
|
SpeedTestEvidence?: string;
|
|
706
|
+
/** Text
|
|
707
|
+
*
|
|
708
|
+
* @type {TEXT}
|
|
709
|
+
*/
|
|
710
|
+
CustomerSignOff?: string;
|
|
723
711
|
/** Text
|
|
724
712
|
*
|
|
725
713
|
* @type {TEXT}
|
|
@@ -749,11 +737,6 @@ export interface OhInstallationAuditProperties {
|
|
|
749
737
|
* @enum {OhInstallationAuditCustomerInformed}
|
|
750
738
|
*/
|
|
751
739
|
CustomerInformed?: OhInstallationAuditCustomerInformed;
|
|
752
|
-
/** Text
|
|
753
|
-
*
|
|
754
|
-
* @type {TEXT}
|
|
755
|
-
*/
|
|
756
|
-
CustomerSignOff?: string;
|
|
757
740
|
/** Select
|
|
758
741
|
*
|
|
759
742
|
* @type {ENUM}
|
|
@@ -788,6 +771,23 @@ export interface OhInstallationAuditProperties {
|
|
|
788
771
|
* @type {SIGNATURE}
|
|
789
772
|
*/
|
|
790
773
|
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.OhInstallationAuditAgreedToRouting = exports.OhInstallationAuditNetworkNamePasswordGiven = exports.OhInstallationAuditNewSetupBetter = exports.OhInstallationAuditCustomerHappyCoverage = exports.OhInstallationAuditCustomerInformed = exports.OhInstallationAuditBetterSpeedThanLastProvider = exports.OhInstallationAuditSpeedsExplained = exports.OhInstallationAuditSpeedTestCarriedOutPrior = exports.OhInstallationAuditConnectingAnyDevicesSupport = exports.OhInstallationAuditYouMeshBenfitDiscussion = exports.OhInstallationAuditYouMeshBenefit = exports.OhInstallationAuditYouMeshInstalled = 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.OhInstallationAuditCableLabeledWithPIANO = exports.OhInstallationAuditExternalTerminationBoxFitted = 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.OhInstallationAuditCableCleated = exports.OhInstallationAuditNewDropCableHeight = exports.OhInstallationAuditNewDropCable = exports.OhInstallationAuditCBTDiffer = exports.OhInstallationAuditPoleTest = exports.OhInstallationAuditRouterSameLocation = exports.OhInstallationAuditRouterLocationDiscussed = exports.OhInstallationAuditONTSameLocation = exports.OhInstallationAuditONTLocationDiscussed = 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,20 +22,6 @@ 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 = {}));
|
|
39
25
|
/**
|
|
40
26
|
* Valid values for OhInstallationAudit.ONTLocationDiscussed
|
|
41
27
|
*
|
|
@@ -166,20 +152,6 @@ var OhInstallationAuditCableCleated;
|
|
|
166
152
|
OhInstallationAuditCableCleated["YES"] = "YES";
|
|
167
153
|
OhInstallationAuditCableCleated["NO"] = "NO";
|
|
168
154
|
})(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 = {}));
|
|
183
155
|
/**
|
|
184
156
|
* Valid values for OhInstallationAudit.YouMeshInstalled
|
|
185
157
|
*
|
|
@@ -350,28 +322,52 @@ var OhInstallationAuditAgreedToRouting;
|
|
|
350
322
|
OhInstallationAuditAgreedToRouting["TRUE"] = "TRUE";
|
|
351
323
|
OhInstallationAuditAgreedToRouting["FALSE"] = "FALSE";
|
|
352
324
|
})(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["
|
|
361
|
-
/** Select */
|
|
362
|
-
OhInstallationAuditPropertyKeys["CableLabeledWithPiano"] = "CableLabeledWithPIANO";
|
|
359
|
+
/** Statement */
|
|
360
|
+
OhInstallationAuditPropertyKeys["Statement2"] = "Statement2";
|
|
363
361
|
/** Warning */
|
|
364
362
|
OhInstallationAuditPropertyKeys["Statement1"] = "Statement1";
|
|
365
363
|
/** Add image */
|
|
366
|
-
OhInstallationAuditPropertyKeys["OutsideImage"] = "OutsideImage";
|
|
367
|
-
/** Add image */
|
|
368
364
|
OhInstallationAuditPropertyKeys["OntImage"] = "ONTImage";
|
|
369
365
|
/** Add image */
|
|
366
|
+
OhInstallationAuditPropertyKeys["OutsideImage"] = "OutsideImage";
|
|
367
|
+
/** Add image */
|
|
370
368
|
OhInstallationAuditPropertyKeys["RouterImage"] = "RouterImage";
|
|
371
369
|
/** Enter number */
|
|
372
370
|
OhInstallationAuditPropertyKeys["NumberOfRooms"] = "NumberOfRooms";
|
|
373
|
-
/** Statement */
|
|
374
|
-
OhInstallationAuditPropertyKeys["Statement2"] = "Statement2";
|
|
375
371
|
/** Add image */
|
|
376
372
|
OhInstallationAuditPropertyKeys["PreviousWiFiResults"] = "PreviousWiFiResults";
|
|
377
373
|
/** Add image */
|
|
@@ -408,8 +404,6 @@ var OhInstallationAuditPropertyKeys;
|
|
|
408
404
|
OhInstallationAuditPropertyKeys["CableCleated"] = "CableCleated";
|
|
409
405
|
/** Add image */
|
|
410
406
|
OhInstallationAuditPropertyKeys["CableCleatedPhoto"] = "CableCleatedPhoto";
|
|
411
|
-
/** Select */
|
|
412
|
-
OhInstallationAuditPropertyKeys["ExternalTerminationBoxFitted"] = "ExternalTerminationBoxFitted";
|
|
413
407
|
/** Add image */
|
|
414
408
|
OhInstallationAuditPropertyKeys["LightReadingEvidence"] = "LightReadingEvidence";
|
|
415
409
|
/** Add image */
|
|
@@ -421,12 +415,12 @@ var OhInstallationAuditPropertyKeys;
|
|
|
421
415
|
/** Add image */
|
|
422
416
|
OhInstallationAuditPropertyKeys["CtuCableManagement"] = "CTUCableManagement";
|
|
423
417
|
/** Add image */
|
|
418
|
+
OhInstallationAuditPropertyKeys["RouterInPosition"] = "RouterInPosition";
|
|
419
|
+
/** Add image */
|
|
424
420
|
OhInstallationAuditPropertyKeys["InternalCableRun"] = "InternalCableRun";
|
|
425
421
|
/** Add image */
|
|
426
422
|
OhInstallationAuditPropertyKeys["OntWallMounted"] = "ONTWallMounted";
|
|
427
423
|
/** Add image */
|
|
428
|
-
OhInstallationAuditPropertyKeys["RouterInPosition"] = "RouterInPosition";
|
|
429
|
-
/** Add image */
|
|
430
424
|
OhInstallationAuditPropertyKeys["OpticalPowerReading"] = "OpticalPowerReading";
|
|
431
425
|
/** Add image */
|
|
432
426
|
OhInstallationAuditPropertyKeys["LightMeterPowerReading"] = "LightMeterPowerReading";
|
|
@@ -455,6 +449,8 @@ var OhInstallationAuditPropertyKeys;
|
|
|
455
449
|
/** Add image */
|
|
456
450
|
OhInstallationAuditPropertyKeys["SpeedTestEvidence"] = "SpeedTestEvidence";
|
|
457
451
|
/** Text */
|
|
452
|
+
OhInstallationAuditPropertyKeys["CustomerSignOff"] = "CustomerSignOff";
|
|
453
|
+
/** Text */
|
|
458
454
|
OhInstallationAuditPropertyKeys["ConfirmationStatementsTrue"] = "ConfirmationStatementsTrue";
|
|
459
455
|
/** Select */
|
|
460
456
|
OhInstallationAuditPropertyKeys["SpeedTestCarriedOutPrior"] = "SpeedTestCarriedOutPrior";
|
|
@@ -464,8 +460,6 @@ var OhInstallationAuditPropertyKeys;
|
|
|
464
460
|
OhInstallationAuditPropertyKeys["BetterSpeedThanLastProvider"] = "BetterSpeedThanLastProvider";
|
|
465
461
|
/** Select */
|
|
466
462
|
OhInstallationAuditPropertyKeys["CustomerInformed"] = "CustomerInformed";
|
|
467
|
-
/** Text */
|
|
468
|
-
OhInstallationAuditPropertyKeys["CustomerSignOff"] = "CustomerSignOff";
|
|
469
463
|
/** Select */
|
|
470
464
|
OhInstallationAuditPropertyKeys["CustomerHappyCoverage"] = "CustomerHappyCoverage";
|
|
471
465
|
/** Select */
|
|
@@ -478,6 +472,12 @@ var OhInstallationAuditPropertyKeys;
|
|
|
478
472
|
OhInstallationAuditPropertyKeys["CustomerSignature"] = "CustomerSignature";
|
|
479
473
|
/** Add here */
|
|
480
474
|
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
|