@d19n/youfibre-odin-sdk 1.0.231 → 1.0.232

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.
@@ -14,8 +14,8 @@ import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/di
14
14
  /**
15
15
  * Properties for CreateRecontractOrder action
16
16
  *
17
- * @property Required fields: 0
18
- * @property Optional fields: 8
17
+ * @property Required fields: 10
18
+ * @property Optional fields: 3
19
19
  */
20
20
  export interface CreateRecontractOrderProperties {
21
21
  /**
@@ -23,46 +23,85 @@ export interface CreateRecontractOrderProperties {
23
23
  *
24
24
  * the subscriber id is used as the identifier when provisioning on the network
25
25
  * @type {TEXT}
26
+ * @required
26
27
  */
27
- SubscriberId?: string;
28
+ SubscriberId: string;
28
29
  /**
29
30
  * Active Date
30
31
  *
31
32
  * active date
32
33
  * @type {DATE}
34
+ * @required
33
35
  * @format DD/MM/YYYY
34
36
  */
35
- ActiveDate?: string;
37
+ ActiveDate: string;
36
38
  /**
37
39
  * Billing Start Date
38
40
  *
39
41
  * Billing start date
40
42
  * @type {DATE}
43
+ * @required
41
44
  * @format DD/MM/YYYY
42
45
  */
43
- BillingStartDate?: string;
46
+ BillingStartDate: string;
44
47
  /**
45
48
  * Contract Start Date
46
49
  *
47
50
  * the date the contract start
48
51
  * @type {DATE}
52
+ * @required
49
53
  * @format DD/MM/YYYY
50
54
  */
51
- ContractStartDate?: string;
55
+ ContractStartDate: string;
52
56
  /**
53
57
  * Billing Day
54
58
  *
55
59
  * Billing day in the month
56
60
  * @type {NUMBER}
61
+ * @required
57
62
  */
58
- BillingDay?: number;
63
+ BillingDay: number;
59
64
  /**
60
65
  * Previous Order ID
61
66
  *
62
67
  * the previous order prior to an amendment or recontract
63
68
  * @type {LOOKUP}
69
+ * @required
64
70
  */
65
- PreviousOrderId?: string;
71
+ PreviousOrderId: string;
72
+ /**
73
+ * Amendment Date
74
+ *
75
+ * the datetime when the amendment was performed
76
+ * @type {DATE}
77
+ * @required
78
+ * @format DD/MM/YYYY
79
+ */
80
+ AmendmentDate: string;
81
+ /**
82
+ * BillingTerms
83
+ *
84
+ * Billing terms i.e NET 15,30
85
+ * @type {ENUM}
86
+ * @required
87
+ */
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;
66
105
  /**
67
106
  * Source
68
107
  *
@@ -71,13 +110,19 @@ export interface CreateRecontractOrderProperties {
71
110
  */
72
111
  Source?: string;
73
112
  /**
74
- * Amendment Date
113
+ * ReferralEmail
75
114
  *
76
- * the datetime when the amendment was performed
77
- * @type {DATE}
78
- * @format DD/MM/YYYY
115
+ * referral email
116
+ * @type {TEXT}
117
+ */
118
+ ReferralEmail?: string;
119
+ /**
120
+ * Provider
121
+ *
122
+ * network provider
123
+ * @type {ENUM}
79
124
  */
80
- AmendmentDate?: string;
125
+ Provider?: string;
81
126
  }
82
127
  /**
83
128
  * 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
- /** description of the credit note */
75
- Description = "Description",
76
74
  /** amount of the credit note */
77
75
  Amount = "Amount",
78
- /** credit note status */
79
- Status = "Status",
76
+ /** description of the credit note */
77
+ Description = "Description",
80
78
  /** the record # of the invoice */
81
79
  InvoiceRef = "InvoiceRef",
80
+ /** credit note reason */
81
+ Reason = "Reason",
82
82
  /** reason code */
83
83
  ReasonCode = "ReasonCode",
84
- /** credit note reason */
85
- Reason = "Reason"
84
+ /** credit note status */
85
+ Status = "Status"
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;
98
93
  /** amount of the credit note
99
94
  *
100
95
  * @type {CURRENCY}
101
96
  * @default 0
102
97
  */
103
98
  Amount?: string;
104
- /** credit note status
99
+ /** description of the credit note
105
100
  *
106
- * @type {TEXT}
107
- * @hidden This field is hidden in the UI
101
+ * @type {TEXT_LONG}
108
102
  */
109
- Status?: string;
103
+ Description?: string;
110
104
  /** the record # of the invoice
111
105
  *
112
106
  * @type {TEXT}
113
107
  */
114
108
  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 reason
121
+ /** credit note status
122
122
  *
123
- * @type {ENUM}
124
- * @enum {CreditNoteReason}
123
+ * @type {TEXT}
124
+ * @hidden This field is hidden in the UI
125
125
  */
126
- Reason?: CreditNoteReason;
126
+ Status?: string;
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
- /** description of the credit note */
77
- CreditNotePropertyKeys["Description"] = "Description";
78
76
  /** amount of the credit note */
79
77
  CreditNotePropertyKeys["Amount"] = "Amount";
80
- /** credit note status */
81
- CreditNotePropertyKeys["Status"] = "Status";
78
+ /** description of the credit note */
79
+ CreditNotePropertyKeys["Description"] = "Description";
82
80
  /** the record # of the invoice */
83
81
  CreditNotePropertyKeys["InvoiceRef"] = "InvoiceRef";
84
- /** reason code */
85
- CreditNotePropertyKeys["ReasonCode"] = "ReasonCode";
86
82
  /** credit note reason */
87
83
  CreditNotePropertyKeys["Reason"] = "Reason";
84
+ /** reason code */
85
+ CreditNotePropertyKeys["ReasonCode"] = "ReasonCode";
86
+ /** credit note status */
87
+ CreditNotePropertyKeys["Status"] = "Status";
88
88
  })(CreditNotePropertyKeys = exports.CreditNotePropertyKeys || (exports.CreditNotePropertyKeys = {}));
89
89
  /**
90
90
  * CreditNote entity from BillingModule
@@ -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
- /** Statement */
335
- Statement2 = "Statement2",
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
- /** Statement
463
+ /** Add image
464
464
  *
465
- * @type {TEXT}
465
+ * @type {FILE_MULTIPLE}
466
466
  */
467
- Statement2?: string;
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
- OntImage?: string;
483
+ OutsideImage?: string;
478
484
  /** Add image
479
485
  *
480
486
  * @type {FILE_MULTIPLE}
481
487
  */
482
- OutsideImage?: string;
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
- RouterInPosition?: string;
638
+ InternalCableRun?: string;
622
639
  /** Add image
623
640
  *
624
641
  * @type {FILE_MULTIPLE}
625
642
  */
626
- InternalCableRun?: string;
643
+ OntWallMounted?: string;
627
644
  /** Add image
628
645
  *
629
646
  * @type {FILE_MULTIPLE}
630
647
  */
631
- OntWallMounted?: string;
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.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;
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
- /** Statement */
360
- OhInstallationAuditPropertyKeys["Statement2"] = "Statement2";
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