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