@diia-inhouse/analytics 1.72.30 → 2.3.0
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/index.d.ts +12 -0
- package/dist/index.js +9 -21
- package/dist/interfaces/actionResult.d.ts +26 -0
- package/dist/interfaces/actionResult.js +27 -28
- package/dist/interfaces/actionType.d.ts +24 -0
- package/dist/interfaces/actionType.js +25 -26
- package/dist/interfaces/analytics.d.ts +40 -0
- package/dist/interfaces/categories.d.ts +11 -0
- package/dist/interfaces/categories.js +12 -13
- package/dist/interfaces/data.d.ts +28 -0
- package/dist/interfaces/device.d.ts +12 -0
- package/dist/interfaces/index.d.ts +8 -0
- package/dist/interfaces/nextGenAnalytics.d.ts +18 -0
- package/dist/interfaces/rating.d.ts +457 -0
- package/dist/interfaces/rating.js +348 -355
- package/dist/mocks/analytics.d.ts +6 -0
- package/dist/mocks/analytics.js +75 -79
- package/dist/mocks/index.d.ts +1 -0
- package/dist/services/analytics.d.ts +25 -0
- package/dist/services/analytics.js +134 -146
- package/dist/services/index.d.ts +1 -0
- package/dist/services/index.js +2 -18
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/rating.d.ts +13 -0
- package/dist/utils/rating.js +179 -157
- package/package.json +35 -44
- package/dist/index.js.map +0 -1
- package/dist/interfaces/actionResult.js.map +0 -1
- package/dist/interfaces/actionType.js.map +0 -1
- package/dist/interfaces/analytics.js +0 -3
- package/dist/interfaces/analytics.js.map +0 -1
- package/dist/interfaces/categories.js.map +0 -1
- package/dist/interfaces/data.js +0 -3
- package/dist/interfaces/data.js.map +0 -1
- package/dist/interfaces/device.js +0 -3
- package/dist/interfaces/device.js.map +0 -1
- package/dist/interfaces/index.js +0 -25
- package/dist/interfaces/index.js.map +0 -1
- package/dist/interfaces/nextGenAnalytics.js +0 -3
- package/dist/interfaces/nextGenAnalytics.js.map +0 -1
- package/dist/interfaces/rating.js.map +0 -1
- package/dist/mocks/analytics.js.map +0 -1
- package/dist/mocks/index.js +0 -18
- package/dist/mocks/index.js.map +0 -1
- package/dist/services/analytics.js.map +0 -1
- package/dist/services/index.js.map +0 -1
- package/dist/types/index.d.ts +0 -4
- package/dist/types/interfaces/actionResult.d.ts +0 -23
- package/dist/types/interfaces/actionType.d.ts +0 -21
- package/dist/types/interfaces/analytics.d.ts +0 -37
- package/dist/types/interfaces/categories.d.ts +0 -8
- package/dist/types/interfaces/data.d.ts +0 -25
- package/dist/types/interfaces/device.d.ts +0 -8
- package/dist/types/interfaces/index.d.ts +0 -8
- package/dist/types/interfaces/nextGenAnalytics.d.ts +0 -14
- package/dist/types/interfaces/rating.d.ts +0 -441
- package/dist/types/mocks/analytics.d.ts +0 -2
- package/dist/types/mocks/index.d.ts +0 -1
- package/dist/types/services/analytics.d.ts +0 -18
- package/dist/types/services/index.d.ts +0 -1
- package/dist/types/utils/index.d.ts +0 -1
- package/dist/types/utils/rating.d.ts +0 -9
- package/dist/utils/index.js +0 -18
- package/dist/utils/index.js.map +0 -1
- package/dist/utils/rating.js.map +0 -1
|
@@ -1,356 +1,349 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
RatingChipCommon["ContributionVictory"] = "contributionVictory";
|
|
100
|
-
RatingChipCommon["PartnersInteraction"] = "partnersInteraction";
|
|
101
|
-
})(RatingChipCommon || (exports.RatingChipCommon = RatingChipCommon = {}));
|
|
1
|
+
//#region src/interfaces/rating.ts
|
|
2
|
+
let RatingCategory = /* @__PURE__ */ function(RatingCategory) {
|
|
3
|
+
RatingCategory["PublicService"] = "public-service";
|
|
4
|
+
RatingCategory["Document"] = "document";
|
|
5
|
+
RatingCategory["DiiaId"] = "diia-id";
|
|
6
|
+
return RatingCategory;
|
|
7
|
+
}({});
|
|
8
|
+
let DiiaIdServiceCode = /* @__PURE__ */ function(DiiaIdServiceCode) {
|
|
9
|
+
DiiaIdServiceCode["Authorization"] = "authorization";
|
|
10
|
+
DiiaIdServiceCode["Signing"] = "signing";
|
|
11
|
+
return DiiaIdServiceCode;
|
|
12
|
+
}({});
|
|
13
|
+
let RatingType = /* @__PURE__ */ function(RatingType) {
|
|
14
|
+
RatingType["UserInitiative"] = "userInitiative";
|
|
15
|
+
RatingType["ByRequest"] = "byRequest";
|
|
16
|
+
return RatingType;
|
|
17
|
+
}({});
|
|
18
|
+
let RatingAvailabilityProcessCode = /* @__PURE__ */ function(RatingAvailabilityProcessCode) {
|
|
19
|
+
RatingAvailabilityProcessCode[RatingAvailabilityProcessCode["RatingAlreadySaved"] = 47101002] = "RatingAlreadySaved";
|
|
20
|
+
RatingAvailabilityProcessCode[RatingAvailabilityProcessCode["RatingMissingTaxpayerCard"] = 47101003] = "RatingMissingTaxpayerCard";
|
|
21
|
+
return RatingAvailabilityProcessCode;
|
|
22
|
+
}({});
|
|
23
|
+
let RatingChipCommon = /* @__PURE__ */ function(RatingChipCommon) {
|
|
24
|
+
RatingChipCommon["RegistryUnavailable"] = "registryUnavailable";
|
|
25
|
+
RatingChipCommon["IncorrectData"] = "incorrectData";
|
|
26
|
+
RatingChipCommon["MoreOneTry"] = "moreOneTry";
|
|
27
|
+
RatingChipCommon["Other"] = "other";
|
|
28
|
+
RatingChipCommon["LongServiceSearch"] = "longServiceSearch";
|
|
29
|
+
RatingChipCommon["LongApplicationProcessing"] = "longApplicationProcessing";
|
|
30
|
+
RatingChipCommon["NotComprehensibleText"] = "notComprehensibleText";
|
|
31
|
+
RatingChipCommon["ComprehensibleText"] = "comprehensibleText";
|
|
32
|
+
RatingChipCommon["EnoughHints"] = "enoughHints";
|
|
33
|
+
RatingChipCommon["NotEnoughHints"] = "notEnoughHints";
|
|
34
|
+
RatingChipCommon["Design"] = "design";
|
|
35
|
+
RatingChipCommon["BadDesign"] = "badDesign";
|
|
36
|
+
RatingChipCommon["EasyFast"] = "easyFast";
|
|
37
|
+
RatingChipCommon["WasWaitingForService"] = "wasWaitingForService";
|
|
38
|
+
RatingChipCommon["PostOfficeInteraction"] = "postOfficeInteraction";
|
|
39
|
+
RatingChipCommon["UsefulService"] = "usefulService";
|
|
40
|
+
RatingChipCommon["SeveralPaymentAttempts"] = "severalPaymentAttempts";
|
|
41
|
+
RatingChipCommon["SigningError"] = "signingError";
|
|
42
|
+
RatingChipCommon["LicenseWasNotDisplayed"] = "licenseWasNotDisplayed";
|
|
43
|
+
RatingChipCommon["LicensePlateSelection"] = "licensePlateSelection";
|
|
44
|
+
RatingChipCommon["LongRegistration"] = "longRegistration";
|
|
45
|
+
RatingChipCommon["AddressError"] = "addressError";
|
|
46
|
+
RatingChipCommon["DigitalDocument"] = "digitalDocument";
|
|
47
|
+
RatingChipCommon["DemocracyInSmartphone"] = "democracyInSmartphone";
|
|
48
|
+
RatingChipCommon["UntimelyCert"] = "UntimelyCert";
|
|
49
|
+
RatingChipCommon["GotError"] = "gotError";
|
|
50
|
+
RatingChipCommon["GeolocationNotConfirmed"] = "geolocationNotConfirmed";
|
|
51
|
+
RatingChipCommon["StreetMissing"] = "streetMissing";
|
|
52
|
+
RatingChipCommon["GotRefuse"] = "gotRefuse";
|
|
53
|
+
RatingChipCommon["AutomaticService"] = "automaticService";
|
|
54
|
+
RatingChipCommon["NeededHelp"] = "neededHelp";
|
|
55
|
+
RatingChipCommon["MissingData"] = "missingData";
|
|
56
|
+
RatingChipCommon["EmploymentCenterInteraction"] = "employmentCenterInteraction";
|
|
57
|
+
RatingChipCommon["NoNotification"] = "noNotification";
|
|
58
|
+
RatingChipCommon["PaymentFee"] = "paymentFee";
|
|
59
|
+
RatingChipCommon["PaymentOptions"] = "paymentOptions";
|
|
60
|
+
RatingChipCommon["PaymentProcessing"] = "paymentProcessing";
|
|
61
|
+
RatingChipCommon["PaymentIssues"] = "paymentIssues";
|
|
62
|
+
RatingChipCommon["Delivery"] = "delivery";
|
|
63
|
+
RatingChipCommon["FastPayment"] = "fastPayment";
|
|
64
|
+
RatingChipCommon["InconvenientPlayer"] = "inconvenientPlayer";
|
|
65
|
+
RatingChipCommon["SlowLoading"] = "slowLoading";
|
|
66
|
+
RatingChipCommon["NotEnoughRadioWaves"] = "notEnoughRadioWaves";
|
|
67
|
+
RatingChipCommon["NotEnoughChannels"] = "notEnoughChannels";
|
|
68
|
+
RatingChipCommon["NotTheFirstTimePayment"] = "notTheFirstTimePayment";
|
|
69
|
+
RatingChipCommon["Convenient"] = "convenient";
|
|
70
|
+
RatingChipCommon["Inconvenient"] = "inconvenient";
|
|
71
|
+
RatingChipCommon["IntuitiveInterface"] = "intuitiveInterface";
|
|
72
|
+
RatingChipCommon["NoTariffing"] = "noTariffing";
|
|
73
|
+
RatingChipCommon["NoTVProgram"] = "noTVProgram";
|
|
74
|
+
RatingChipCommon["PushNotReceived"] = "pushNotReceived";
|
|
75
|
+
RatingChipCommon["VehicleLicenseIsStillActive"] = "vehicleLicenseIsStillActive";
|
|
76
|
+
RatingChipCommon["Mobility"] = "mobility";
|
|
77
|
+
RatingChipCommon["BadConditions"] = "badConditions";
|
|
78
|
+
RatingChipCommon["LostPayment"] = "lostPayment";
|
|
79
|
+
RatingChipCommon["FrequentUse"] = "frequentUse";
|
|
80
|
+
RatingChipCommon["InteractionWithServiceCenter"] = "interactionWithServiceCenter";
|
|
81
|
+
RatingChipCommon["BadInteractionWithServiceCenter"] = "badInteractionWithServiceCenter";
|
|
82
|
+
RatingChipCommon["DownloadSolutionFile"] = "downloadSolutionFile";
|
|
83
|
+
RatingChipCommon["AddMeetingCalendar"] = "addMeetingCalendar";
|
|
84
|
+
RatingChipCommon["NoFineCame"] = "noFineCame";
|
|
85
|
+
RatingChipCommon["TakesALongToLoad"] = "takesALongToLoad";
|
|
86
|
+
RatingChipCommon["IrrelevantInformation"] = "irrelevantInformation";
|
|
87
|
+
RatingChipCommon["AlwayRelevantInformation"] = "alwayRelevantInformation";
|
|
88
|
+
RatingChipCommon["NotUnderstandingWhatNext"] = "notUnderstandingWhatNext";
|
|
89
|
+
RatingChipCommon["WrongfulRefusal"] = "wrongfulRefusal";
|
|
90
|
+
RatingChipCommon["UploadingPhoto"] = "uploadingPhoto";
|
|
91
|
+
RatingChipCommon["BankInteraction"] = "bankInteraction";
|
|
92
|
+
RatingChipCommon["BadBankInteraction"] = "badBankInteraction";
|
|
93
|
+
RatingChipCommon["LimitedSelectionCities"] = "limitedSelectionCities";
|
|
94
|
+
RatingChipCommon["BadPartnersInteraction"] = "badPartnersInteraction";
|
|
95
|
+
RatingChipCommon["ContributionVictory"] = "contributionVictory";
|
|
96
|
+
RatingChipCommon["PartnersInteraction"] = "partnersInteraction";
|
|
97
|
+
return RatingChipCommon;
|
|
98
|
+
}({});
|
|
102
99
|
/** @deprecated */
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
StaticScreenCode["TypeOfConnection"] = "typeOfConnection";
|
|
354
|
-
StaticScreenCode["Place"] = "place";
|
|
355
|
-
})(StaticScreenCode || (exports.StaticScreenCode = StaticScreenCode = {}));
|
|
356
|
-
//# sourceMappingURL=rating.js.map
|
|
100
|
+
let RatingChip = /* @__PURE__ */ function(RatingChip) {
|
|
101
|
+
RatingChip["NeedesHelp"] = "needesHelp";
|
|
102
|
+
RatingChip["RegistryUnavailable"] = "registryUnavailable";
|
|
103
|
+
RatingChip["OutdatedData"] = "outdatedData";
|
|
104
|
+
RatingChip["IncorrectData"] = "incorrectData";
|
|
105
|
+
RatingChip["MoreOneTry"] = "moreOneTry";
|
|
106
|
+
RatingChip["Other"] = "other";
|
|
107
|
+
RatingChip["LongServiceSearch"] = "longServiceSearch";
|
|
108
|
+
RatingChip["LongProcessing"] = "longProcessing";
|
|
109
|
+
RatingChip["LongApplicationProcessing"] = "longApplicationProcessing";
|
|
110
|
+
RatingChip["NotComprehensibleText"] = "notComprehensibleText";
|
|
111
|
+
RatingChip["ComprehensibleText"] = "comprehensibleText";
|
|
112
|
+
RatingChip["EnoughHints"] = "enoughHints";
|
|
113
|
+
RatingChip["NotEnoughHints"] = "notEnoughHints";
|
|
114
|
+
RatingChip["Design"] = "design";
|
|
115
|
+
RatingChip["BadDesign"] = "badDesign";
|
|
116
|
+
RatingChip["EasyFast"] = "easyFast";
|
|
117
|
+
RatingChip["WasWaitingForService"] = "wasWaitingForService";
|
|
118
|
+
RatingChip["PostOfficeInteraction"] = "postOfficeInteraction";
|
|
119
|
+
RatingChip["UsefulService"] = "usefulService";
|
|
120
|
+
RatingChip["SeveralPaymentAttempts"] = "severalPaymentAttempts";
|
|
121
|
+
RatingChip["SigningError"] = "signingError";
|
|
122
|
+
RatingChip["LicenseWasNotDisplayed"] = "licenseWasNotDisplayed";
|
|
123
|
+
RatingChip["AddressError"] = "addressError";
|
|
124
|
+
RatingChip["DigitalDocument"] = "digitalDocument";
|
|
125
|
+
RatingChip["UntimelyCert"] = "UntimelyCert";
|
|
126
|
+
RatingChip["NotTheFirstTime"] = "notTheFirstTime";
|
|
127
|
+
RatingChip["GotError"] = "gotError";
|
|
128
|
+
RatingChip["GeolocationNotConfirmed"] = "geolocationNotConfirmed";
|
|
129
|
+
RatingChip["StreetMissing"] = "streetMissing";
|
|
130
|
+
RatingChip["GotRefuse"] = "gotRefuse";
|
|
131
|
+
RatingChip["AutomaticService"] = "automaticService";
|
|
132
|
+
RatingChip["InteractionWithCommission"] = "interactionWithCommission";
|
|
133
|
+
RatingChip["WrongfulRefusal"] = "wrongfulRefusal";
|
|
134
|
+
RatingChip["RefusalDueToRepairsMade"] = "RefusalDueToRepairsMade";
|
|
135
|
+
RatingChip["NeededHelp"] = "neededHelp";
|
|
136
|
+
RatingChip["MissingData"] = "missingData";
|
|
137
|
+
RatingChip["EmploymentCenterInteraction"] = "employmentCenterInteraction";
|
|
138
|
+
RatingChip["NoNotification"] = "noNotification";
|
|
139
|
+
RatingChip["PaymentFee"] = "paymentFee";
|
|
140
|
+
RatingChip["PaymentOptions"] = "paymentOptions";
|
|
141
|
+
RatingChip["FastPayment"] = "fastPayment";
|
|
142
|
+
RatingChip["InconvenientPlayer"] = "inconvenientPlayer";
|
|
143
|
+
RatingChip["SlowLoading"] = "slowLoading";
|
|
144
|
+
RatingChip["NotEnoughRadioWaves"] = "notEnoughRadioWaves";
|
|
145
|
+
RatingChip["NotEnoughChannels"] = "notEnoughChannels";
|
|
146
|
+
RatingChip["Convenient"] = "convenient";
|
|
147
|
+
RatingChip["Inconvenient"] = "inconvenient";
|
|
148
|
+
RatingChip["IntuitiveInterface"] = "intuitiveInterface";
|
|
149
|
+
RatingChip["NoTariffing"] = "noTariffing";
|
|
150
|
+
RatingChip["NoTVProgram"] = "noTVProgram";
|
|
151
|
+
RatingChip["PushNotReceived"] = "pushNotReceived";
|
|
152
|
+
RatingChip["VehicleLicenseIsStillActive"] = "vehicleLicenseIsStillActive";
|
|
153
|
+
RatingChip["AllInSmartphone"] = "allInSmartphone";
|
|
154
|
+
RatingChip["ComplexServices"] = "complexServices";
|
|
155
|
+
RatingChip["Mobility"] = "mobility";
|
|
156
|
+
RatingChip["BadConditions"] = "badConditions";
|
|
157
|
+
RatingChip["LostPayment"] = "lostPayment";
|
|
158
|
+
RatingChip["FrequentUse"] = "frequentUse";
|
|
159
|
+
RatingChip["NotAcceptDocument"] = "notAcceptDocument";
|
|
160
|
+
RatingChip["UsePlastic"] = "usePlastic";
|
|
161
|
+
RatingChip["NotUsePlastic"] = "notUsePlastic";
|
|
162
|
+
RatingChip["DocumentNotDisplayedSometimes"] = "documentNotDisplayedSometimes";
|
|
163
|
+
RatingChip["GoogleServices"] = "googleServices";
|
|
164
|
+
RatingChip["ForwardingFromApplication"] = "forwardingFromApplication";
|
|
165
|
+
RatingChip["NotFindColleagues"] = "notFindColleagues";
|
|
166
|
+
RatingChip["MissingUnit"] = "missingUnit";
|
|
167
|
+
RatingChip["ProblemsApproval"] = "problemsApproval";
|
|
168
|
+
RatingChip["QrCodeError"] = "qrCodeError";
|
|
169
|
+
RatingChip["ApplicationSubmission"] = "applicationSubmission";
|
|
170
|
+
RatingChip["BadBankInteraction"] = "badBankInteraction";
|
|
171
|
+
RatingChip["NoLiquidatedBank"] = "noLiquidatedBank";
|
|
172
|
+
RatingChip["AccountOpeningProblems"] = "accountOpeningProblems";
|
|
173
|
+
RatingChip["BankInteraction"] = "bankInteraction";
|
|
174
|
+
RatingChip["SetUpNotifications"] = "setUpNotifications";
|
|
175
|
+
RatingChip["AddPostOffices"] = "addPostOffices";
|
|
176
|
+
RatingChip["ImproveDelivery"] = "improveDelivery";
|
|
177
|
+
RatingChip["AwardOffline"] = "awardOffline";
|
|
178
|
+
RatingChip["EverythingYouDo"] = "everythingYouDo";
|
|
179
|
+
RatingChip["ConvenientDelivery"] = "convenientDelivery";
|
|
180
|
+
RatingChip["DeleteFunction"] = "deleteFunction";
|
|
181
|
+
RatingChip["OnlineOfflineVersions"] = "onlineOfflineVersions";
|
|
182
|
+
return RatingChip;
|
|
183
|
+
}({});
|
|
184
|
+
let RatingScore = /* @__PURE__ */ function(RatingScore) {
|
|
185
|
+
RatingScore["Awful"] = "1";
|
|
186
|
+
RatingScore["Bad"] = "2";
|
|
187
|
+
RatingScore["Ok"] = "3";
|
|
188
|
+
RatingScore["Good"] = "4";
|
|
189
|
+
RatingScore["Excellent"] = "5";
|
|
190
|
+
return RatingScore;
|
|
191
|
+
}({});
|
|
192
|
+
let CustomRatingFormCode = /* @__PURE__ */ function(CustomRatingFormCode) {
|
|
193
|
+
CustomRatingFormCode["PenaltiesPaid"] = "penaltiesPaid";
|
|
194
|
+
CustomRatingFormCode["PenaltiesPaidOutside"] = "penaltiesPaidOutside";
|
|
195
|
+
CustomRatingFormCode["CancelProperUser"] = "cancelProperUser";
|
|
196
|
+
CustomRatingFormCode["PollClosed"] = "pollClosed";
|
|
197
|
+
CustomRatingFormCode["DebtsIn"] = "debtsIn";
|
|
198
|
+
CustomRatingFormCode["DebtsOut"] = "debtsOut";
|
|
199
|
+
CustomRatingFormCode["ResidenceRegistrationApplicant"] = "residenceRegistrationApplicant";
|
|
200
|
+
CustomRatingFormCode["ResidenceRegistrationOwner"] = "residenceRegistrationOwner";
|
|
201
|
+
CustomRatingFormCode["ResidenceRegistrationParent"] = "residenceRegistrationParent";
|
|
202
|
+
CustomRatingFormCode["DepositGuaranteePaymentsDoneRefuse"] = "depositGuaranteePaymentsDoneRefuse";
|
|
203
|
+
CustomRatingFormCode["ReplacementDriverLicenseWithPlastic"] = "replacementDriverLicenseWithPlastic";
|
|
204
|
+
CustomRatingFormCode["ReplacementDriverLicenseWithPlasticPickup"] = "replacementDriverLicenseWithPlasticPickup";
|
|
205
|
+
CustomRatingFormCode["ReplacementDriverLicenseWithPlasticPost"] = "replacementDriverLicenseWithPlasticPost";
|
|
206
|
+
CustomRatingFormCode["ReplacementDriverLicenseDigitalOnly"] = "replacementDriverLicenseDigitalOnly";
|
|
207
|
+
CustomRatingFormCode["DamagedPropertyDecision"] = "damagedPropertyDecision";
|
|
208
|
+
CustomRatingFormCode["DestroyedPropertyDecision"] = "destroyedPropertyDecision";
|
|
209
|
+
CustomRatingFormCode["DamagedPropertyRepairMessage"] = "damagedPropertyRepairMessage";
|
|
210
|
+
CustomRatingFormCode["CourtPenaltiesPaid"] = "courtPenaltiesPaid";
|
|
211
|
+
CustomRatingFormCode["MortgageDone"] = "mortgageDone";
|
|
212
|
+
CustomRatingFormCode["TargetFeedbackShelters"] = "targetFeedbackShelters";
|
|
213
|
+
CustomRatingFormCode["TargetFeedbackInvincibility"] = "targetFeedbackInvincibility";
|
|
214
|
+
CustomRatingFormCode["MilitaryBondsDoneRefuse"] = "militaryBondsDoneRefuse";
|
|
215
|
+
CustomRatingFormCode["SmartMobilizationSuccess"] = "smartMobilizationSuccess";
|
|
216
|
+
return CustomRatingFormCode;
|
|
217
|
+
}({});
|
|
218
|
+
let StaticScreenCode = /* @__PURE__ */ function(StaticScreenCode) {
|
|
219
|
+
StaticScreenCode["Document"] = "document";
|
|
220
|
+
StaticScreenCode["Start"] = "start";
|
|
221
|
+
StaticScreenCode["Home"] = "home";
|
|
222
|
+
StaticScreenCode["Status"] = "status";
|
|
223
|
+
StaticScreenCode["ChildrenCertificatesSelection"] = "childrenCertificatesSelection";
|
|
224
|
+
StaticScreenCode["ReasonSelection"] = "reasonSelection";
|
|
225
|
+
StaticScreenCode["CertTypeSelection"] = "certTypeSelection";
|
|
226
|
+
StaticScreenCode["RequesterData"] = "requesterData";
|
|
227
|
+
StaticScreenCode["BirthPlace"] = "birthPlace";
|
|
228
|
+
StaticScreenCode["Nationality"] = "nationality";
|
|
229
|
+
StaticScreenCode["RegistrationPlace"] = "registrationPlace";
|
|
230
|
+
StaticScreenCode["RegistrationPlaceSelection"] = "registrationPlaceSelection";
|
|
231
|
+
StaticScreenCode["Contacts"] = "contacts";
|
|
232
|
+
StaticScreenCode["Application"] = "application";
|
|
233
|
+
StaticScreenCode["VehicleSelection"] = "vehicleSelection";
|
|
234
|
+
StaticScreenCode["VehiclePrice"] = "vehiclePrice";
|
|
235
|
+
StaticScreenCode["LicensePlateType"] = "licensePlateType";
|
|
236
|
+
StaticScreenCode["GenLicensePlate"] = "genLicensePlate";
|
|
237
|
+
StaticScreenCode["LicensePlates"] = "licensePlates";
|
|
238
|
+
StaticScreenCode["VehicleLicenseType"] = "vehicleLicenseType";
|
|
239
|
+
StaticScreenCode["ExpirationDateSelection"] = "expirationDateSelection";
|
|
240
|
+
StaticScreenCode["Sharing"] = "sharing";
|
|
241
|
+
StaticScreenCode["SharingCancelProperUser"] = "sharingCancelProperUser";
|
|
242
|
+
StaticScreenCode["ConfirmationRequest"] = "confirmationRequest";
|
|
243
|
+
StaticScreenCode["ProperUsers"] = "properUsers";
|
|
244
|
+
StaticScreenCode["ProperUser"] = "properUser";
|
|
245
|
+
StaticScreenCode["StartCancelProperUser"] = "startCancelProperUser";
|
|
246
|
+
StaticScreenCode["StatusCancelProperUser"] = "statusCancelProperUser";
|
|
247
|
+
StaticScreenCode["ApplicationCancelProperUser"] = "applicationCancelProperUser";
|
|
248
|
+
StaticScreenCode["LedSelection"] = "ledSelection";
|
|
249
|
+
StaticScreenCode["PostOfficeSelection"] = "postOfficeSelection";
|
|
250
|
+
StaticScreenCode["DocumentTypeSelection"] = "documentTypeSelection";
|
|
251
|
+
StaticScreenCode["ResidenceCert"] = "residenceCert";
|
|
252
|
+
StaticScreenCode["CurrentResidencePlaceSelection"] = "currentResidencePlaceSelection";
|
|
253
|
+
StaticScreenCode["CurrentResidencePlaceConfirmation"] = "currentResidencePlaceConfirmation";
|
|
254
|
+
StaticScreenCode["BankAccountSelection"] = "bankAccountSelection";
|
|
255
|
+
StaticScreenCode["AssistanceTypes"] = "assistanceTypes";
|
|
256
|
+
StaticScreenCode["Payment"] = "payment";
|
|
257
|
+
StaticScreenCode["AllCertificatesDoneOk5"] = "allCertificatesDoneOk5";
|
|
258
|
+
StaticScreenCode["AllCertificatesDoneOk7"] = "allCertificatesDoneOk7";
|
|
259
|
+
StaticScreenCode["ConfirmJobLoss"] = "confirmJobLoss";
|
|
260
|
+
StaticScreenCode["EmploymentCenterRegistration"] = "employmentCenterRegistration";
|
|
261
|
+
StaticScreenCode["AddPassportData"] = "addPassportData";
|
|
262
|
+
StaticScreenCode["ConfirmationAwaiting"] = "confirmationAwaiting";
|
|
263
|
+
StaticScreenCode["PropertyTypes"] = "propertyTypes";
|
|
264
|
+
StaticScreenCode["ObjectApplications"] = "objectApplications";
|
|
265
|
+
StaticScreenCode["ObjectMessages"] = "objectMessages";
|
|
266
|
+
StaticScreenCode["ApplicationStatus"] = "applicationStatus";
|
|
267
|
+
StaticScreenCode["MessageStatus"] = "messageStatus";
|
|
268
|
+
StaticScreenCode["ApplicationMessages"] = "applicationMessages";
|
|
269
|
+
StaticScreenCode["Onboarding"] = "onboarding";
|
|
270
|
+
StaticScreenCode["RepairsQuestions"] = "repairsQuestions";
|
|
271
|
+
StaticScreenCode["BenefitsQuestions"] = "benefitsQuestions";
|
|
272
|
+
StaticScreenCode["CardAwaiting"] = "cardAwaiting";
|
|
273
|
+
StaticScreenCode["LinkDrrp"] = "linkDrrp";
|
|
274
|
+
StaticScreenCode["DiiaRadio"] = "diiaRadio";
|
|
275
|
+
StaticScreenCode["DiiaRadioPlaying"] = "diiaRadioPlaying";
|
|
276
|
+
StaticScreenCode["DiiaRadioPaused"] = "diiaRadioPaused";
|
|
277
|
+
StaticScreenCode["DiiaTVPlaying"] = "diiaTVPlaying";
|
|
278
|
+
StaticScreenCode["TvChannelSelection"] = "tvChannelSelection";
|
|
279
|
+
StaticScreenCode["DamageMessages"] = "damageMessages";
|
|
280
|
+
StaticScreenCode["DamagedPropertyRecovery"] = "damagedPropertyRecovery";
|
|
281
|
+
StaticScreenCode["ChooseDrrpObject"] = "chooseDrrpObject";
|
|
282
|
+
StaticScreenCode["AddManualObject"] = "addManualObject";
|
|
283
|
+
StaticScreenCode["AddManualObjectAddress"] = "addManualObjectAddress";
|
|
284
|
+
StaticScreenCode["DamageAssessment"] = "damageAssessment";
|
|
285
|
+
StaticScreenCode["DamagesFixing"] = "damagesFixing";
|
|
286
|
+
StaticScreenCode["NewAdultRegistration"] = "newAdultRegistration";
|
|
287
|
+
StaticScreenCode["NewChildRegistration"] = "newChildRegistration";
|
|
288
|
+
StaticScreenCode["Adult"] = "adult";
|
|
289
|
+
StaticScreenCode["AddBirthCertificate"] = "addBirthCertificate";
|
|
290
|
+
StaticScreenCode["AddBirthCertificateOwnersChild"] = "addBirthCertificateOwnersChild";
|
|
291
|
+
StaticScreenCode["ApproveOwnerData"] = "approveOwnerData";
|
|
292
|
+
StaticScreenCode["LiquidatedBanks"] = "liquidatedBanks";
|
|
293
|
+
StaticScreenCode["CurrentAdultRegistration"] = "currentAdultRegistration";
|
|
294
|
+
StaticScreenCode["CurrentChildRegistration"] = "currentChildRegistration";
|
|
295
|
+
StaticScreenCode["ContactsOwner"] = "contactsOwner";
|
|
296
|
+
StaticScreenCode["PenaltiesPaidOutside"] = "penaltiesPaidOutside";
|
|
297
|
+
StaticScreenCode["Penalties"] = "penalties";
|
|
298
|
+
StaticScreenCode["CriminalRecordCertificate"] = "criminalRecordCertificate";
|
|
299
|
+
StaticScreenCode["ReplacementDriverLicense"] = "replacementDriverLicense";
|
|
300
|
+
StaticScreenCode["QuizArchive"] = "quizArchive";
|
|
301
|
+
StaticScreenCode["QuizDetailsActive"] = "quizDetailsActive";
|
|
302
|
+
StaticScreenCode["QuizDetailsClose"] = "quizDetailsClose";
|
|
303
|
+
StaticScreenCode["OfficialsPoll"] = "officialsPoll";
|
|
304
|
+
StaticScreenCode["OfficialsWorkspace"] = "officialsWorkspace";
|
|
305
|
+
StaticScreenCode["OfficialsBadges"] = "officialsBadges";
|
|
306
|
+
StaticScreenCode["OfficialsSearchColleagues"] = "officialsSearchColleagues";
|
|
307
|
+
StaticScreenCode["BenefitsConfirmation"] = "benefitsConfirmation";
|
|
308
|
+
StaticScreenCode["OwnersConfirmation"] = "ownersConfirmation";
|
|
309
|
+
StaticScreenCode["CourtCasesDetails"] = "courtCasesDetails";
|
|
310
|
+
StaticScreenCode["CourtCasesDecisions"] = "courtCasesDecisions";
|
|
311
|
+
StaticScreenCode["CourtCasesDecisionsDetails"] = "courtCasesDecisionsDetails";
|
|
312
|
+
StaticScreenCode["CourtCasesHearings"] = "courtCasesHearings";
|
|
313
|
+
StaticScreenCode["CourtCasesHearingsDetails"] = "courtCasesHearingsDetails";
|
|
314
|
+
StaticScreenCode["AllApplications"] = "allApplications";
|
|
315
|
+
StaticScreenCode["DownloadList"] = "downloadList";
|
|
316
|
+
StaticScreenCode["Map"] = "map";
|
|
317
|
+
StaticScreenCode["MaritalStatus"] = "maritalStatus";
|
|
318
|
+
StaticScreenCode["ChildrenNumber"] = "childrenNumber";
|
|
319
|
+
StaticScreenCode["Income"] = "income";
|
|
320
|
+
StaticScreenCode["MortgageApartment"] = "mortgageApartment";
|
|
321
|
+
StaticScreenCode["AddressMortgageApartment"] = "addressMortgageApartment";
|
|
322
|
+
StaticScreenCode["MortgageBanks"] = "mortgageBanks";
|
|
323
|
+
StaticScreenCode["SelectionRepairStage"] = "selectionRepairStage";
|
|
324
|
+
StaticScreenCode["MediaUpload"] = "mediaUpload";
|
|
325
|
+
StaticScreenCode["StartBookingFunds"] = "startBookingFunds";
|
|
326
|
+
StaticScreenCode["SelectionBookingCertificate"] = "selectionBookingCertificate";
|
|
327
|
+
StaticScreenCode["MapPointDetails"] = "mapPointDetails";
|
|
328
|
+
StaticScreenCode["TargetFeedbackInvincibility"] = "targetFeedbackInvincibility";
|
|
329
|
+
StaticScreenCode["TargetFeedbackShelters"] = "targetFeedbackShelters";
|
|
330
|
+
StaticScreenCode["Specialities"] = "specialities";
|
|
331
|
+
StaticScreenCode["AvailableBonds"] = "availableBonds";
|
|
332
|
+
StaticScreenCode["AvailableBondsPartners"] = "availableBondsPartners";
|
|
333
|
+
StaticScreenCode["AvailableBondsPartnersCart"] = "availableBondsPartnersCart";
|
|
334
|
+
StaticScreenCode["CompensationType"] = "compensationType";
|
|
335
|
+
StaticScreenCode["RepeatedDeliveryApplication"] = "repeatedDeliveryApplication";
|
|
336
|
+
StaticScreenCode["RepeatedDeliveryContacts"] = "repeatedDeliveryContacts";
|
|
337
|
+
StaticScreenCode["RepeatedDeliveryMethodsOfObtaining"] = "repeatedDeliveryMethodsOfObtaining";
|
|
338
|
+
StaticScreenCode["DepartmentSelection"] = "departmentSelection";
|
|
339
|
+
StaticScreenCode["DeliveryAddressDefinition"] = "deliveryAddressDefinition";
|
|
340
|
+
StaticScreenCode["ConstructingStartMessage"] = "constructingStartMessage";
|
|
341
|
+
StaticScreenCode["ConstructingCompletionMessage"] = "constructingCompletionMessage";
|
|
342
|
+
StaticScreenCode["OnlyDuringBlackout"] = "onlyDuringBlackout";
|
|
343
|
+
StaticScreenCode["MobileOperators"] = "mobileOperators";
|
|
344
|
+
StaticScreenCode["TypeOfConnection"] = "typeOfConnection";
|
|
345
|
+
StaticScreenCode["Place"] = "place";
|
|
346
|
+
return StaticScreenCode;
|
|
347
|
+
}({});
|
|
348
|
+
//#endregion
|
|
349
|
+
export { CustomRatingFormCode, DiiaIdServiceCode, RatingAvailabilityProcessCode, RatingCategory, RatingChip, RatingChipCommon, RatingScore, RatingType, StaticScreenCode };
|