@d19n/youfibre-odin-sdk 1.0.263 → 1.0.264
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/CompleteServiceWorkOrderFlowDto.d.ts +1 -1
- package/dist/actions-v2/CreateEmailTemplateDto.d.ts +8 -1
- package/dist/actions-v2/UpdateEmailTemplateDto.d.ts +8 -1
- package/dist/entities-v2/EmailTemplate.d.ts +8 -1
- package/dist/entities-v2/EmailTemplate.js +2 -0
- package/dist/entities-v2/OutcomeFormYfFieldServiceVisit.d.ts +24 -24
- package/dist/entities-v2/OutcomeFormYfFieldServiceVisit.js +8 -8
- package/dist/entities-v2/YfFieldServiceVisit.d.ts +24 -24
- package/dist/entities-v2/YfFieldServiceVisit.js +8 -8
- package/package.json +1 -1
|
@@ -409,7 +409,7 @@ export interface YfFieldServiceVisitAuditProperties {
|
|
|
409
409
|
*/
|
|
410
410
|
Ex1Report1: undefined;
|
|
411
411
|
/**
|
|
412
|
-
* If a particular area is impacted, go to this location and perform 1 Wi-Fi Speedtest using the EX1 Screen Shot of EX1 Report by tapping the clipboard icon awating the report ro generate then attach to form. If a particular area is impacted, go to this location and perform 1 Wi-Fi Speedtest using the EX1 Screen Shot of EX1 Report by tapping the clipboard icon awating the report ro generate then attach to form. Turn on screen reader support. To enable screen reader support, press Ctrl+Alt+Z To learn about keyboard shortcuts, press Ctrl+slash
|
|
412
|
+
* If a particular area is impacted, go to this location and perform 1 Wi-Fi Speedtest using the EX1 Screen Shot of EX1 Report by tapping the clipboard icon awating the report ro generate then attach to form. If a particular area is impacted, go to this location and perform 1 Wi-Fi Speedtest using the EX1 Screen Shot of EX1 Report by tapping the clipboard icon awating the report ro generate then attach to form. Turn on screen reader support. To enable screen reader support, press Ctrl+Alt+Z To learn about keyboard shortcuts, press Ctrl+slash.
|
|
413
413
|
*
|
|
414
414
|
* Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
415
415
|
* @type {FILE_MULTIPLE}
|
|
@@ -16,7 +16,7 @@ import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/di
|
|
|
16
16
|
* Properties for CreateEmailTemplate action
|
|
17
17
|
*
|
|
18
18
|
* @property Required fields: 2
|
|
19
|
-
* @property Optional fields:
|
|
19
|
+
* @property Optional fields: 2
|
|
20
20
|
*/
|
|
21
21
|
export interface CreateEmailTemplateProperties {
|
|
22
22
|
/**
|
|
@@ -35,6 +35,13 @@ export interface CreateEmailTemplateProperties {
|
|
|
35
35
|
* @required
|
|
36
36
|
*/
|
|
37
37
|
Content: string;
|
|
38
|
+
/**
|
|
39
|
+
* CaseChannels
|
|
40
|
+
*
|
|
41
|
+
* Channels where this template applies. Used to target templates by support interaction type (e.g. outage, web chat, in-app chat).
|
|
42
|
+
* @type {ENUM_MULTI_SELECT}
|
|
43
|
+
*/
|
|
44
|
+
CaseChannels?: string;
|
|
38
45
|
}
|
|
39
46
|
/**
|
|
40
47
|
* CreateEmailTemplate
|
|
@@ -16,7 +16,7 @@ import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/o
|
|
|
16
16
|
* Properties for UpdateEmailTemplate action
|
|
17
17
|
*
|
|
18
18
|
* @property Required fields: 2
|
|
19
|
-
* @property Optional fields:
|
|
19
|
+
* @property Optional fields: 2
|
|
20
20
|
*/
|
|
21
21
|
export interface UpdateEmailTemplateProperties {
|
|
22
22
|
/**
|
|
@@ -35,6 +35,13 @@ export interface UpdateEmailTemplateProperties {
|
|
|
35
35
|
* @required
|
|
36
36
|
*/
|
|
37
37
|
Content: string;
|
|
38
|
+
/**
|
|
39
|
+
* CaseChannels
|
|
40
|
+
*
|
|
41
|
+
* Channels where this template applies. Used to target templates by support interaction type (e.g. outage, web chat, in-app chat).
|
|
42
|
+
* @type {ENUM_MULTI_SELECT}
|
|
43
|
+
*/
|
|
44
|
+
CaseChannels?: string;
|
|
38
45
|
}
|
|
39
46
|
/**
|
|
40
47
|
* UpdateEmailTemplate
|
|
@@ -26,7 +26,9 @@ export declare enum EmailTemplatePropertyKeys {
|
|
|
26
26
|
/** Title of the email template (Communications - EmailTemplate) */
|
|
27
27
|
Title = "Title",
|
|
28
28
|
/** Content of the email template (Communications - EmailTemplate) */
|
|
29
|
-
Content = "Content"
|
|
29
|
+
Content = "Content",
|
|
30
|
+
/** Channels where this template applies. Used to target templates by support interaction type (e.g. outage, web chat, in-app chat). */
|
|
31
|
+
CaseChannels = "CaseChannels"
|
|
30
32
|
}
|
|
31
33
|
/**
|
|
32
34
|
* Properties for EmailTemplate records
|
|
@@ -44,6 +46,11 @@ export interface EmailTemplateProperties {
|
|
|
44
46
|
* @type {TEXT_LONG}
|
|
45
47
|
*/
|
|
46
48
|
Content?: string;
|
|
49
|
+
/** Channels where this template applies. Used to target templates by support interaction type (e.g. outage, web chat, in-app chat).
|
|
50
|
+
*
|
|
51
|
+
* @type {ENUM_MULTI_SELECT}
|
|
52
|
+
*/
|
|
53
|
+
CaseChannels?: string;
|
|
47
54
|
}
|
|
48
55
|
/**
|
|
49
56
|
* EmailTemplate entity from NotificationModule
|
|
@@ -32,6 +32,8 @@ var EmailTemplatePropertyKeys;
|
|
|
32
32
|
EmailTemplatePropertyKeys["Title"] = "Title";
|
|
33
33
|
/** Content of the email template (Communications - EmailTemplate) */
|
|
34
34
|
EmailTemplatePropertyKeys["Content"] = "Content";
|
|
35
|
+
/** Channels where this template applies. Used to target templates by support interaction type (e.g. outage, web chat, in-app chat). */
|
|
36
|
+
EmailTemplatePropertyKeys["CaseChannels"] = "CaseChannels";
|
|
35
37
|
})(EmailTemplatePropertyKeys = exports.EmailTemplatePropertyKeys || (exports.EmailTemplatePropertyKeys = {}));
|
|
36
38
|
/**
|
|
37
39
|
* EmailTemplate entity from NotificationModule
|
|
@@ -638,24 +638,16 @@ export declare enum OutcomeFormYfFieldServiceVisitPropertyKeys {
|
|
|
638
638
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
639
639
|
WiFiAnalysisConsent = "WiFiAnalysisConsent",
|
|
640
640
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
641
|
-
Ex1SpeedtestReport = "Ex1SpeedtestReport",
|
|
642
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
643
641
|
WorkEnvironmentUnsafePhoto = "WorkEnvironmentUnsafePhoto",
|
|
644
642
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
645
643
|
EeroPro6EPhoto = "EeroPro6EPhoto",
|
|
646
644
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
647
645
|
NetworkTopologyPhoto = "NetworkTopologyPhoto",
|
|
648
646
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
649
|
-
Ex1Report1 = "Ex1Report1",
|
|
650
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
651
647
|
WiFiSpeedTest = "WiFiSpeedTest",
|
|
652
648
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
653
|
-
Ex1Report2 = "Ex1Report2",
|
|
654
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
655
649
|
WiFiCoverageReport = "WiFiCoverageReport",
|
|
656
650
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
657
|
-
WiFiInterferenceReport = "WiFiInterferenceReport",
|
|
658
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
659
651
|
Eero6Photo = "Eero6Photo",
|
|
660
652
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
661
653
|
Eero6ProPhoto = "Eero6ProPhoto",
|
|
@@ -666,7 +658,15 @@ export declare enum OutcomeFormYfFieldServiceVisitPropertyKeys {
|
|
|
666
658
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
667
659
|
X5042Photo = "X5042Photo",
|
|
668
660
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
669
|
-
SecondSpeedTest = "SecondSpeedTest"
|
|
661
|
+
SecondSpeedTest = "SecondSpeedTest",
|
|
662
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
663
|
+
WiFiInterferenceReport = "WiFiInterferenceReport",
|
|
664
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
665
|
+
Ex1Report2 = "EX1Report2",
|
|
666
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
667
|
+
Ex1Report1 = "EX1Report1",
|
|
668
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
669
|
+
Ex1SpeedtestReport = "EX1SpeedtestReport"
|
|
670
670
|
}
|
|
671
671
|
/**
|
|
672
672
|
* Properties for OUTCOME_FORM YfFieldServiceVisit records
|
|
@@ -1112,77 +1112,77 @@ export interface OutcomeFormYfFieldServiceVisitProperties {
|
|
|
1112
1112
|
*
|
|
1113
1113
|
* @type {FILE_MULTIPLE}
|
|
1114
1114
|
*/
|
|
1115
|
-
|
|
1115
|
+
WorkEnvironmentUnsafePhoto?: string;
|
|
1116
1116
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1117
1117
|
*
|
|
1118
1118
|
* @type {FILE_MULTIPLE}
|
|
1119
1119
|
*/
|
|
1120
|
-
|
|
1120
|
+
EeroPro6EPhoto?: string;
|
|
1121
1121
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1122
1122
|
*
|
|
1123
1123
|
* @type {FILE_MULTIPLE}
|
|
1124
1124
|
*/
|
|
1125
|
-
|
|
1125
|
+
NetworkTopologyPhoto?: string;
|
|
1126
1126
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1127
1127
|
*
|
|
1128
1128
|
* @type {FILE_MULTIPLE}
|
|
1129
1129
|
*/
|
|
1130
|
-
|
|
1130
|
+
WiFiSpeedTest?: string;
|
|
1131
1131
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1132
1132
|
*
|
|
1133
1133
|
* @type {FILE_MULTIPLE}
|
|
1134
1134
|
*/
|
|
1135
|
-
|
|
1135
|
+
WiFiCoverageReport?: string;
|
|
1136
1136
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1137
1137
|
*
|
|
1138
1138
|
* @type {FILE_MULTIPLE}
|
|
1139
1139
|
*/
|
|
1140
|
-
|
|
1140
|
+
Eero6Photo?: string;
|
|
1141
1141
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1142
1142
|
*
|
|
1143
1143
|
* @type {FILE_MULTIPLE}
|
|
1144
1144
|
*/
|
|
1145
|
-
|
|
1145
|
+
Eero6ProPhoto?: string;
|
|
1146
1146
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1147
1147
|
*
|
|
1148
1148
|
* @type {FILE_MULTIPLE}
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
Nvg578Lx1Photo?: string;
|
|
1151
1151
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1152
1152
|
*
|
|
1153
1153
|
* @type {FILE_MULTIPLE}
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
Nvg578LxPhoto?: string;
|
|
1156
1156
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1157
1157
|
*
|
|
1158
1158
|
* @type {FILE_MULTIPLE}
|
|
1159
1159
|
*/
|
|
1160
|
-
|
|
1160
|
+
X5042Photo?: string;
|
|
1161
1161
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1162
1162
|
*
|
|
1163
1163
|
* @type {FILE_MULTIPLE}
|
|
1164
1164
|
*/
|
|
1165
|
-
|
|
1165
|
+
SecondSpeedTest?: string;
|
|
1166
1166
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1167
1167
|
*
|
|
1168
1168
|
* @type {FILE_MULTIPLE}
|
|
1169
1169
|
*/
|
|
1170
|
-
|
|
1170
|
+
WiFiInterferenceReport?: string;
|
|
1171
1171
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1172
1172
|
*
|
|
1173
1173
|
* @type {FILE_MULTIPLE}
|
|
1174
1174
|
*/
|
|
1175
|
-
|
|
1175
|
+
Ex1Report2?: string;
|
|
1176
1176
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1177
1177
|
*
|
|
1178
1178
|
* @type {FILE_MULTIPLE}
|
|
1179
1179
|
*/
|
|
1180
|
-
|
|
1180
|
+
Ex1Report1?: string;
|
|
1181
1181
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1182
1182
|
*
|
|
1183
1183
|
* @type {FILE_MULTIPLE}
|
|
1184
1184
|
*/
|
|
1185
|
-
|
|
1185
|
+
Ex1SpeedtestReport?: string;
|
|
1186
1186
|
}
|
|
1187
1187
|
/**
|
|
1188
1188
|
* outcome form
|
|
@@ -671,24 +671,16 @@ var OutcomeFormYfFieldServiceVisitPropertyKeys;
|
|
|
671
671
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
672
672
|
OutcomeFormYfFieldServiceVisitPropertyKeys["WiFiAnalysisConsent"] = "WiFiAnalysisConsent";
|
|
673
673
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
674
|
-
OutcomeFormYfFieldServiceVisitPropertyKeys["Ex1SpeedtestReport"] = "Ex1SpeedtestReport";
|
|
675
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
676
674
|
OutcomeFormYfFieldServiceVisitPropertyKeys["WorkEnvironmentUnsafePhoto"] = "WorkEnvironmentUnsafePhoto";
|
|
677
675
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
678
676
|
OutcomeFormYfFieldServiceVisitPropertyKeys["EeroPro6EPhoto"] = "EeroPro6EPhoto";
|
|
679
677
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
680
678
|
OutcomeFormYfFieldServiceVisitPropertyKeys["NetworkTopologyPhoto"] = "NetworkTopologyPhoto";
|
|
681
679
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
682
|
-
OutcomeFormYfFieldServiceVisitPropertyKeys["Ex1Report1"] = "Ex1Report1";
|
|
683
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
684
680
|
OutcomeFormYfFieldServiceVisitPropertyKeys["WiFiSpeedTest"] = "WiFiSpeedTest";
|
|
685
681
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
686
|
-
OutcomeFormYfFieldServiceVisitPropertyKeys["Ex1Report2"] = "Ex1Report2";
|
|
687
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
688
682
|
OutcomeFormYfFieldServiceVisitPropertyKeys["WiFiCoverageReport"] = "WiFiCoverageReport";
|
|
689
683
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
690
|
-
OutcomeFormYfFieldServiceVisitPropertyKeys["WiFiInterferenceReport"] = "WiFiInterferenceReport";
|
|
691
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
692
684
|
OutcomeFormYfFieldServiceVisitPropertyKeys["Eero6Photo"] = "Eero6Photo";
|
|
693
685
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
694
686
|
OutcomeFormYfFieldServiceVisitPropertyKeys["Eero6ProPhoto"] = "Eero6ProPhoto";
|
|
@@ -700,6 +692,14 @@ var OutcomeFormYfFieldServiceVisitPropertyKeys;
|
|
|
700
692
|
OutcomeFormYfFieldServiceVisitPropertyKeys["X5042Photo"] = "X5042Photo";
|
|
701
693
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
702
694
|
OutcomeFormYfFieldServiceVisitPropertyKeys["SecondSpeedTest"] = "SecondSpeedTest";
|
|
695
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
696
|
+
OutcomeFormYfFieldServiceVisitPropertyKeys["WiFiInterferenceReport"] = "WiFiInterferenceReport";
|
|
697
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
698
|
+
OutcomeFormYfFieldServiceVisitPropertyKeys["Ex1Report2"] = "EX1Report2";
|
|
699
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
700
|
+
OutcomeFormYfFieldServiceVisitPropertyKeys["Ex1Report1"] = "EX1Report1";
|
|
701
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
702
|
+
OutcomeFormYfFieldServiceVisitPropertyKeys["Ex1SpeedtestReport"] = "EX1SpeedtestReport";
|
|
703
703
|
})(OutcomeFormYfFieldServiceVisitPropertyKeys = exports.OutcomeFormYfFieldServiceVisitPropertyKeys || (exports.OutcomeFormYfFieldServiceVisitPropertyKeys = {}));
|
|
704
704
|
/**
|
|
705
705
|
* outcome form
|
|
@@ -646,24 +646,16 @@ export declare enum YfFieldServiceVisitPropertyKeys {
|
|
|
646
646
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
647
647
|
WiFiAnalysisConsent = "WiFiAnalysisConsent",
|
|
648
648
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
649
|
-
Ex1SpeedtestReport = "Ex1SpeedtestReport",
|
|
650
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
651
649
|
WorkEnvironmentUnsafePhoto = "WorkEnvironmentUnsafePhoto",
|
|
652
650
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
653
651
|
EeroPro6EPhoto = "EeroPro6EPhoto",
|
|
654
652
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
655
653
|
NetworkTopologyPhoto = "NetworkTopologyPhoto",
|
|
656
654
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
657
|
-
Ex1Report1 = "Ex1Report1",
|
|
658
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
659
655
|
WiFiSpeedTest = "WiFiSpeedTest",
|
|
660
656
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
661
|
-
Ex1Report2 = "Ex1Report2",
|
|
662
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
663
657
|
WiFiCoverageReport = "WiFiCoverageReport",
|
|
664
658
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
665
|
-
WiFiInterferenceReport = "WiFiInterferenceReport",
|
|
666
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
667
659
|
Eero6Photo = "Eero6Photo",
|
|
668
660
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
669
661
|
Eero6ProPhoto = "Eero6ProPhoto",
|
|
@@ -674,7 +666,15 @@ export declare enum YfFieldServiceVisitPropertyKeys {
|
|
|
674
666
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
675
667
|
X5042Photo = "X5042Photo",
|
|
676
668
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
677
|
-
SecondSpeedTest = "SecondSpeedTest"
|
|
669
|
+
SecondSpeedTest = "SecondSpeedTest",
|
|
670
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
671
|
+
WiFiInterferenceReport = "WiFiInterferenceReport",
|
|
672
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
673
|
+
Ex1Report2 = "EX1Report2",
|
|
674
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
675
|
+
Ex1Report1 = "EX1Report1",
|
|
676
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
677
|
+
Ex1SpeedtestReport = "EX1SpeedtestReport"
|
|
678
678
|
}
|
|
679
679
|
/**
|
|
680
680
|
* Properties for YfFieldServiceVisit records
|
|
@@ -1120,77 +1120,77 @@ export interface YfFieldServiceVisitProperties {
|
|
|
1120
1120
|
*
|
|
1121
1121
|
* @type {FILE_MULTIPLE}
|
|
1122
1122
|
*/
|
|
1123
|
-
|
|
1123
|
+
WorkEnvironmentUnsafePhoto?: string;
|
|
1124
1124
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1125
1125
|
*
|
|
1126
1126
|
* @type {FILE_MULTIPLE}
|
|
1127
1127
|
*/
|
|
1128
|
-
|
|
1128
|
+
EeroPro6EPhoto?: string;
|
|
1129
1129
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1130
1130
|
*
|
|
1131
1131
|
* @type {FILE_MULTIPLE}
|
|
1132
1132
|
*/
|
|
1133
|
-
|
|
1133
|
+
NetworkTopologyPhoto?: string;
|
|
1134
1134
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1135
1135
|
*
|
|
1136
1136
|
* @type {FILE_MULTIPLE}
|
|
1137
1137
|
*/
|
|
1138
|
-
|
|
1138
|
+
WiFiSpeedTest?: string;
|
|
1139
1139
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1140
1140
|
*
|
|
1141
1141
|
* @type {FILE_MULTIPLE}
|
|
1142
1142
|
*/
|
|
1143
|
-
|
|
1143
|
+
WiFiCoverageReport?: string;
|
|
1144
1144
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1145
1145
|
*
|
|
1146
1146
|
* @type {FILE_MULTIPLE}
|
|
1147
1147
|
*/
|
|
1148
|
-
|
|
1148
|
+
Eero6Photo?: string;
|
|
1149
1149
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1150
1150
|
*
|
|
1151
1151
|
* @type {FILE_MULTIPLE}
|
|
1152
1152
|
*/
|
|
1153
|
-
|
|
1153
|
+
Eero6ProPhoto?: string;
|
|
1154
1154
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1155
1155
|
*
|
|
1156
1156
|
* @type {FILE_MULTIPLE}
|
|
1157
1157
|
*/
|
|
1158
|
-
|
|
1158
|
+
Nvg578Lx1Photo?: string;
|
|
1159
1159
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1160
1160
|
*
|
|
1161
1161
|
* @type {FILE_MULTIPLE}
|
|
1162
1162
|
*/
|
|
1163
|
-
|
|
1163
|
+
Nvg578LxPhoto?: string;
|
|
1164
1164
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1165
1165
|
*
|
|
1166
1166
|
* @type {FILE_MULTIPLE}
|
|
1167
1167
|
*/
|
|
1168
|
-
|
|
1168
|
+
X5042Photo?: string;
|
|
1169
1169
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1170
1170
|
*
|
|
1171
1171
|
* @type {FILE_MULTIPLE}
|
|
1172
1172
|
*/
|
|
1173
|
-
|
|
1173
|
+
SecondSpeedTest?: string;
|
|
1174
1174
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1175
1175
|
*
|
|
1176
1176
|
* @type {FILE_MULTIPLE}
|
|
1177
1177
|
*/
|
|
1178
|
-
|
|
1178
|
+
WiFiInterferenceReport?: string;
|
|
1179
1179
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1180
1180
|
*
|
|
1181
1181
|
* @type {FILE_MULTIPLE}
|
|
1182
1182
|
*/
|
|
1183
|
-
|
|
1183
|
+
Ex1Report2?: string;
|
|
1184
1184
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1185
1185
|
*
|
|
1186
1186
|
* @type {FILE_MULTIPLE}
|
|
1187
1187
|
*/
|
|
1188
|
-
|
|
1188
|
+
Ex1Report1?: string;
|
|
1189
1189
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team.
|
|
1190
1190
|
*
|
|
1191
1191
|
* @type {FILE_MULTIPLE}
|
|
1192
1192
|
*/
|
|
1193
|
-
|
|
1193
|
+
Ex1SpeedtestReport?: string;
|
|
1194
1194
|
}
|
|
1195
1195
|
/**
|
|
1196
1196
|
* YfFieldServiceVisit entity from FieldServiceModule
|
|
@@ -679,24 +679,16 @@ var YfFieldServiceVisitPropertyKeys;
|
|
|
679
679
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
680
680
|
YfFieldServiceVisitPropertyKeys["WiFiAnalysisConsent"] = "WiFiAnalysisConsent";
|
|
681
681
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
682
|
-
YfFieldServiceVisitPropertyKeys["Ex1SpeedtestReport"] = "Ex1SpeedtestReport";
|
|
683
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
684
682
|
YfFieldServiceVisitPropertyKeys["WorkEnvironmentUnsafePhoto"] = "WorkEnvironmentUnsafePhoto";
|
|
685
683
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
686
684
|
YfFieldServiceVisitPropertyKeys["EeroPro6EPhoto"] = "EeroPro6EPhoto";
|
|
687
685
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
688
686
|
YfFieldServiceVisitPropertyKeys["NetworkTopologyPhoto"] = "NetworkTopologyPhoto";
|
|
689
687
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
690
|
-
YfFieldServiceVisitPropertyKeys["Ex1Report1"] = "Ex1Report1";
|
|
691
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
692
688
|
YfFieldServiceVisitPropertyKeys["WiFiSpeedTest"] = "WiFiSpeedTest";
|
|
693
689
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
694
|
-
YfFieldServiceVisitPropertyKeys["Ex1Report2"] = "Ex1Report2";
|
|
695
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
696
690
|
YfFieldServiceVisitPropertyKeys["WiFiCoverageReport"] = "WiFiCoverageReport";
|
|
697
691
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
698
|
-
YfFieldServiceVisitPropertyKeys["WiFiInterferenceReport"] = "WiFiInterferenceReport";
|
|
699
|
-
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
700
692
|
YfFieldServiceVisitPropertyKeys["Eero6Photo"] = "Eero6Photo";
|
|
701
693
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
702
694
|
YfFieldServiceVisitPropertyKeys["Eero6ProPhoto"] = "Eero6ProPhoto";
|
|
@@ -708,6 +700,14 @@ var YfFieldServiceVisitPropertyKeys;
|
|
|
708
700
|
YfFieldServiceVisitPropertyKeys["X5042Photo"] = "X5042Photo";
|
|
709
701
|
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
710
702
|
YfFieldServiceVisitPropertyKeys["SecondSpeedTest"] = "SecondSpeedTest";
|
|
703
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
704
|
+
YfFieldServiceVisitPropertyKeys["WiFiInterferenceReport"] = "WiFiInterferenceReport";
|
|
705
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
706
|
+
YfFieldServiceVisitPropertyKeys["Ex1Report2"] = "EX1Report2";
|
|
707
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
708
|
+
YfFieldServiceVisitPropertyKeys["Ex1Report1"] = "EX1Report1";
|
|
709
|
+
/** Data field for YfFieldServiceVisit records. Used by Field Operations team. */
|
|
710
|
+
YfFieldServiceVisitPropertyKeys["Ex1SpeedtestReport"] = "EX1SpeedtestReport";
|
|
711
711
|
})(YfFieldServiceVisitPropertyKeys = exports.YfFieldServiceVisitPropertyKeys || (exports.YfFieldServiceVisitPropertyKeys = {}));
|
|
712
712
|
/**
|
|
713
713
|
* YfFieldServiceVisit entity from FieldServiceModule
|