@diia-inhouse/analytics 1.61.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/LICENCE.md +287 -0
- package/README.md +93 -0
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -0
- package/dist/interfaces/actionResult.js +30 -0
- package/dist/interfaces/actionResult.js.map +1 -0
- package/dist/interfaces/actionType.js +27 -0
- package/dist/interfaces/actionType.js.map +1 -0
- package/dist/interfaces/analytics.js +3 -0
- package/dist/interfaces/analytics.js.map +1 -0
- package/dist/interfaces/categories.js +13 -0
- package/dist/interfaces/categories.js.map +1 -0
- package/dist/interfaces/data.js +3 -0
- package/dist/interfaces/data.js.map +1 -0
- package/dist/interfaces/device.js +3 -0
- package/dist/interfaces/device.js.map +1 -0
- package/dist/interfaces/index.js +25 -0
- package/dist/interfaces/index.js.map +1 -0
- package/dist/interfaces/nextGenAnalytics.js +3 -0
- package/dist/interfaces/nextGenAnalytics.js.map +1 -0
- package/dist/interfaces/rating.js +350 -0
- package/dist/interfaces/rating.js.map +1 -0
- package/dist/mocks/analytics.js +77 -0
- package/dist/mocks/analytics.js.map +1 -0
- package/dist/mocks/index.js +18 -0
- package/dist/mocks/index.js.map +1 -0
- package/dist/services/analytics.js +146 -0
- package/dist/services/analytics.js.map +1 -0
- package/dist/services/index.js +18 -0
- package/dist/services/index.js.map +1 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/interfaces/actionResult.d.ts +25 -0
- package/dist/types/interfaces/actionType.d.ts +22 -0
- package/dist/types/interfaces/analytics.d.ts +37 -0
- package/dist/types/interfaces/categories.d.ts +8 -0
- package/dist/types/interfaces/data.d.ts +25 -0
- package/dist/types/interfaces/device.d.ts +8 -0
- package/dist/types/interfaces/index.d.ts +8 -0
- package/dist/types/interfaces/nextGenAnalytics.d.ts +15 -0
- package/dist/types/interfaces/rating.d.ts +452 -0
- package/dist/types/mocks/analytics.d.ts +2 -0
- package/dist/types/mocks/index.d.ts +1 -0
- package/dist/types/services/analytics.d.ts +19 -0
- package/dist/types/services/index.d.ts +1 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/rating.d.ts +8 -0
- package/dist/utils/index.js +18 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/rating.js +151 -0
- package/dist/utils/rating.js.map +1 -0
- package/package.json +94 -0
|
@@ -0,0 +1,350 @@
|
|
|
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
|
+
// Military bonds
|
|
95
|
+
RatingChipCommon["LimitedSelectionCities"] = "limitedSelectionCities";
|
|
96
|
+
RatingChipCommon["BadPartnersInteraction"] = "badPartnersInteraction";
|
|
97
|
+
RatingChipCommon["ContributionVictory"] = "contributionVictory";
|
|
98
|
+
RatingChipCommon["PartnersInteraction"] = "partnersInteraction";
|
|
99
|
+
})(RatingChipCommon || (exports.RatingChipCommon = RatingChipCommon = {}));
|
|
100
|
+
/** @deprecated */
|
|
101
|
+
var RatingChip;
|
|
102
|
+
(function (RatingChip) {
|
|
103
|
+
RatingChip["NeedesHelp"] = "needesHelp"; /** @deprecated use NeededHelp instead */
|
|
104
|
+
RatingChip["RegistryUnavailable"] = "registryUnavailable";
|
|
105
|
+
RatingChip["OutdatedData"] = "outdatedData"; /** @deprecated use IncorrectData instead */
|
|
106
|
+
RatingChip["IncorrectData"] = "incorrectData";
|
|
107
|
+
RatingChip["MoreOneTry"] = "moreOneTry";
|
|
108
|
+
RatingChip["Other"] = "other";
|
|
109
|
+
RatingChip["LongServiceSearch"] = "longServiceSearch";
|
|
110
|
+
RatingChip["LongProcessing"] = "longProcessing"; /** @deprecated use LongApplicationProcessing instead */
|
|
111
|
+
RatingChip["LongApplicationProcessing"] = "longApplicationProcessing";
|
|
112
|
+
RatingChip["NotComprehensibleText"] = "notComprehensibleText";
|
|
113
|
+
RatingChip["ComprehensibleText"] = "comprehensibleText";
|
|
114
|
+
RatingChip["EnoughHints"] = "enoughHints";
|
|
115
|
+
RatingChip["NotEnoughHints"] = "notEnoughHints";
|
|
116
|
+
RatingChip["Design"] = "design";
|
|
117
|
+
RatingChip["BadDesign"] = "badDesign";
|
|
118
|
+
RatingChip["EasyFast"] = "easyFast";
|
|
119
|
+
RatingChip["WasWaitingForService"] = "wasWaitingForService";
|
|
120
|
+
RatingChip["PostOfficeInteraction"] = "postOfficeInteraction";
|
|
121
|
+
RatingChip["UsefulService"] = "usefulService";
|
|
122
|
+
RatingChip["SeveralPaymentAttempts"] = "severalPaymentAttempts";
|
|
123
|
+
RatingChip["SigningError"] = "signingError";
|
|
124
|
+
RatingChip["LicenseWasNotDisplayed"] = "licenseWasNotDisplayed";
|
|
125
|
+
RatingChip["AddressError"] = "addressError";
|
|
126
|
+
RatingChip["DigitalDocument"] = "digitalDocument";
|
|
127
|
+
RatingChip["UntimelyCert"] = "UntimelyCert";
|
|
128
|
+
RatingChip["NotTheFirstTime"] = "notTheFirstTime";
|
|
129
|
+
RatingChip["GotError"] = "gotError";
|
|
130
|
+
RatingChip["GeolocationNotConfirmed"] = "geolocationNotConfirmed";
|
|
131
|
+
RatingChip["StreetMissing"] = "streetMissing";
|
|
132
|
+
RatingChip["GotRefuse"] = "gotRefuse";
|
|
133
|
+
RatingChip["AutomaticService"] = "automaticService";
|
|
134
|
+
RatingChip["InteractionWithCommission"] = "interactionWithCommission";
|
|
135
|
+
RatingChip["WrongfulRefusal"] = "wrongfulRefusal";
|
|
136
|
+
RatingChip["RefusalDueToRepairsMade"] = "RefusalDueToRepairsMade";
|
|
137
|
+
RatingChip["NeededHelp"] = "neededHelp";
|
|
138
|
+
RatingChip["MissingData"] = "missingData";
|
|
139
|
+
RatingChip["EmploymentCenterInteraction"] = "employmentCenterInteraction";
|
|
140
|
+
RatingChip["NoNotification"] = "noNotification";
|
|
141
|
+
RatingChip["PaymentFee"] = "paymentFee";
|
|
142
|
+
RatingChip["PaymentOptions"] = "paymentOptions";
|
|
143
|
+
RatingChip["FastPayment"] = "fastPayment";
|
|
144
|
+
RatingChip["InconvenientPlayer"] = "inconvenientPlayer";
|
|
145
|
+
RatingChip["SlowLoading"] = "slowLoading";
|
|
146
|
+
RatingChip["NotEnoughRadioWaves"] = "notEnoughRadioWaves";
|
|
147
|
+
RatingChip["NotEnoughChannels"] = "notEnoughChannels";
|
|
148
|
+
RatingChip["Convenient"] = "convenient";
|
|
149
|
+
RatingChip["Inconvenient"] = "inconvenient";
|
|
150
|
+
RatingChip["IntuitiveInterface"] = "intuitiveInterface";
|
|
151
|
+
RatingChip["NoTariffing"] = "noTariffing";
|
|
152
|
+
RatingChip["NoTVProgram"] = "noTVProgram";
|
|
153
|
+
RatingChip["PushNotReceived"] = "pushNotReceived";
|
|
154
|
+
RatingChip["VehicleLicenseIsStillActive"] = "vehicleLicenseIsStillActive";
|
|
155
|
+
RatingChip["AllInSmartphone"] = "allInSmartphone"; /** @deprecated use Mobility instead */
|
|
156
|
+
RatingChip["ComplexServices"] = "complexServices"; /** @deprecated use Mobility instead */
|
|
157
|
+
RatingChip["Mobility"] = "mobility";
|
|
158
|
+
RatingChip["BadConditions"] = "badConditions";
|
|
159
|
+
RatingChip["LostPayment"] = "lostPayment";
|
|
160
|
+
RatingChip["FrequentUse"] = "frequentUse";
|
|
161
|
+
// Documents
|
|
162
|
+
RatingChip["NotAcceptDocument"] = "notAcceptDocument";
|
|
163
|
+
RatingChip["UsePlastic"] = "usePlastic";
|
|
164
|
+
RatingChip["NotUsePlastic"] = "notUsePlastic";
|
|
165
|
+
RatingChip["DocumentNotDisplayedSometimes"] = "documentNotDisplayedSometimes";
|
|
166
|
+
// Office
|
|
167
|
+
RatingChip["GoogleServices"] = "googleServices";
|
|
168
|
+
RatingChip["ForwardingFromApplication"] = "forwardingFromApplication";
|
|
169
|
+
RatingChip["NotFindColleagues"] = "notFindColleagues";
|
|
170
|
+
RatingChip["MissingUnit"] = "missingUnit";
|
|
171
|
+
// Residence registration
|
|
172
|
+
RatingChip["ProblemsApproval"] = "problemsApproval";
|
|
173
|
+
RatingChip["QrCodeError"] = "qrCodeError";
|
|
174
|
+
RatingChip["ApplicationSubmission"] = "applicationSubmission";
|
|
175
|
+
// Deposit guarantee payments
|
|
176
|
+
RatingChip["BadBankInteraction"] = "badBankInteraction";
|
|
177
|
+
RatingChip["NoLiquidatedBank"] = "noLiquidatedBank";
|
|
178
|
+
RatingChip["AccountOpeningProblems"] = "accountOpeningProblems";
|
|
179
|
+
RatingChip["BankInteraction"] = "bankInteraction";
|
|
180
|
+
// Award
|
|
181
|
+
RatingChip["SetUpNotifications"] = "setUpNotifications";
|
|
182
|
+
RatingChip["AddPostOffices"] = "addPostOffices";
|
|
183
|
+
RatingChip["ImproveDelivery"] = "improveDelivery";
|
|
184
|
+
RatingChip["AwardOffline"] = "awardOffline";
|
|
185
|
+
RatingChip["EverythingYouDo"] = "everythingYouDo";
|
|
186
|
+
RatingChip["ConvenientDelivery"] = "convenientDelivery";
|
|
187
|
+
RatingChip["DeleteFunction"] = "deleteFunction";
|
|
188
|
+
RatingChip["OnlineOfflineVersions"] = "onlineOfflineVersions";
|
|
189
|
+
})(RatingChip || (exports.RatingChip = RatingChip = {}));
|
|
190
|
+
var RatingScore;
|
|
191
|
+
(function (RatingScore) {
|
|
192
|
+
RatingScore["Awful"] = "1";
|
|
193
|
+
RatingScore["Bad"] = "2";
|
|
194
|
+
RatingScore["Ok"] = "3";
|
|
195
|
+
RatingScore["Good"] = "4";
|
|
196
|
+
RatingScore["Excellent"] = "5";
|
|
197
|
+
})(RatingScore || (exports.RatingScore = RatingScore = {}));
|
|
198
|
+
var CustomRatingFormCode;
|
|
199
|
+
(function (CustomRatingFormCode) {
|
|
200
|
+
CustomRatingFormCode["PenaltiesPaid"] = "penaltiesPaid";
|
|
201
|
+
CustomRatingFormCode["PenaltiesPaidOutside"] = "penaltiesPaidOutside";
|
|
202
|
+
CustomRatingFormCode["CancelProperUser"] = "cancelProperUser";
|
|
203
|
+
CustomRatingFormCode["PollClosed"] = "pollClosed";
|
|
204
|
+
CustomRatingFormCode["DebtsIn"] = "debtsIn";
|
|
205
|
+
CustomRatingFormCode["DebtsOut"] = "debtsOut";
|
|
206
|
+
CustomRatingFormCode["ResidenceRegistrationApplicant"] = "residenceRegistrationApplicant";
|
|
207
|
+
CustomRatingFormCode["ResidenceRegistrationOwner"] = "residenceRegistrationOwner";
|
|
208
|
+
CustomRatingFormCode["ResidenceRegistrationParent"] = "residenceRegistrationParent";
|
|
209
|
+
CustomRatingFormCode["DepositGuaranteePaymentsDoneRefuse"] = "depositGuaranteePaymentsDoneRefuse";
|
|
210
|
+
CustomRatingFormCode["ReplacementDriverLicenseWithPlastic"] = "replacementDriverLicenseWithPlastic"; /** @deprecated use ReplacementDriverLicenseWithPlasticPickup instead */
|
|
211
|
+
CustomRatingFormCode["ReplacementDriverLicenseWithPlasticPickup"] = "replacementDriverLicenseWithPlasticPickup";
|
|
212
|
+
CustomRatingFormCode["ReplacementDriverLicenseWithPlasticPost"] = "replacementDriverLicenseWithPlasticPost";
|
|
213
|
+
CustomRatingFormCode["ReplacementDriverLicenseDigitalOnly"] = "replacementDriverLicenseDigitalOnly";
|
|
214
|
+
CustomRatingFormCode["DamagedPropertyDecision"] = "damagedPropertyDecision";
|
|
215
|
+
CustomRatingFormCode["DestroyedPropertyDecision"] = "destroyedPropertyDecision";
|
|
216
|
+
CustomRatingFormCode["DamagedPropertyRepairMessage"] = "damagedPropertyRepairMessage";
|
|
217
|
+
CustomRatingFormCode["CourtPenaltiesPaid"] = "courtPenaltiesPaid";
|
|
218
|
+
CustomRatingFormCode["MortgageDone"] = "mortgageDone";
|
|
219
|
+
CustomRatingFormCode["TargetFeedbackShelters"] = "targetFeedbackShelters";
|
|
220
|
+
CustomRatingFormCode["TargetFeedbackInvincibility"] = "targetFeedbackInvincibility";
|
|
221
|
+
CustomRatingFormCode["MilitaryBondsDoneRefuse"] = "militaryBondsDoneRefuse";
|
|
222
|
+
})(CustomRatingFormCode || (exports.CustomRatingFormCode = CustomRatingFormCode = {}));
|
|
223
|
+
var StaticScreenCode;
|
|
224
|
+
(function (StaticScreenCode) {
|
|
225
|
+
StaticScreenCode["Document"] = "document";
|
|
226
|
+
StaticScreenCode["Start"] = "start";
|
|
227
|
+
StaticScreenCode["Home"] = "home";
|
|
228
|
+
StaticScreenCode["Status"] = "status";
|
|
229
|
+
StaticScreenCode["ChildrenCertificatesSelection"] = "childrenCertificatesSelection";
|
|
230
|
+
StaticScreenCode["ReasonSelection"] = "reasonSelection";
|
|
231
|
+
StaticScreenCode["CertTypeSelection"] = "certTypeSelection";
|
|
232
|
+
StaticScreenCode["RequesterData"] = "requesterData";
|
|
233
|
+
StaticScreenCode["BirthPlace"] = "birthPlace";
|
|
234
|
+
StaticScreenCode["Nationality"] = "nationality";
|
|
235
|
+
StaticScreenCode["RegistrationPlace"] = "registrationPlace";
|
|
236
|
+
StaticScreenCode["RegistrationPlaceSelection"] = "registrationPlaceSelection";
|
|
237
|
+
StaticScreenCode["Contacts"] = "contacts";
|
|
238
|
+
StaticScreenCode["Application"] = "application";
|
|
239
|
+
StaticScreenCode["VehicleSelection"] = "vehicleSelection";
|
|
240
|
+
StaticScreenCode["VehiclePrice"] = "vehiclePrice";
|
|
241
|
+
StaticScreenCode["LicensePlateType"] = "licensePlateType";
|
|
242
|
+
StaticScreenCode["GenLicensePlate"] = "genLicensePlate";
|
|
243
|
+
StaticScreenCode["LicensePlates"] = "licensePlates";
|
|
244
|
+
StaticScreenCode["VehicleLicenseType"] = "vehicleLicenseType";
|
|
245
|
+
StaticScreenCode["ExpirationDateSelection"] = "expirationDateSelection";
|
|
246
|
+
StaticScreenCode["Sharing"] = "sharing";
|
|
247
|
+
StaticScreenCode["SharingCancelProperUser"] = "sharingCancelProperUser";
|
|
248
|
+
StaticScreenCode["ConfirmationRequest"] = "confirmationRequest";
|
|
249
|
+
StaticScreenCode["ProperUsers"] = "properUsers";
|
|
250
|
+
StaticScreenCode["ProperUser"] = "properUser";
|
|
251
|
+
StaticScreenCode["StartCancelProperUser"] = "startCancelProperUser";
|
|
252
|
+
StaticScreenCode["StatusCancelProperUser"] = "statusCancelProperUser";
|
|
253
|
+
StaticScreenCode["ApplicationCancelProperUser"] = "applicationCancelProperUser";
|
|
254
|
+
StaticScreenCode["LedSelection"] = "ledSelection";
|
|
255
|
+
StaticScreenCode["LedExchange"] = "ledExchange";
|
|
256
|
+
StaticScreenCode["PostOfficeSelection"] = "postOfficeSelection";
|
|
257
|
+
StaticScreenCode["DocumentTypeSelection"] = "documentTypeSelection";
|
|
258
|
+
StaticScreenCode["ResidenceCert"] = "residenceCert";
|
|
259
|
+
StaticScreenCode["CurrentResidencePlaceSelection"] = "currentResidencePlaceSelection";
|
|
260
|
+
StaticScreenCode["CurrentResidencePlaceConfirmation"] = "currentResidencePlaceConfirmation";
|
|
261
|
+
StaticScreenCode["BankAccountSelection"] = "bankAccountSelection";
|
|
262
|
+
StaticScreenCode["AssistanceTypes"] = "assistanceTypes";
|
|
263
|
+
StaticScreenCode["Payment"] = "payment";
|
|
264
|
+
StaticScreenCode["AllCertificatesDoneOk5"] = "allCertificatesDoneOk5";
|
|
265
|
+
StaticScreenCode["AllCertificatesDoneOk7"] = "allCertificatesDoneOk7";
|
|
266
|
+
StaticScreenCode["ConfirmJobLoss"] = "confirmJobLoss";
|
|
267
|
+
StaticScreenCode["EmploymentCenterRegistration"] = "employmentCenterRegistration";
|
|
268
|
+
StaticScreenCode["AddPassportData"] = "addPassportData";
|
|
269
|
+
StaticScreenCode["ConfirmationAwaiting"] = "confirmationAwaiting";
|
|
270
|
+
StaticScreenCode["PropertyTypes"] = "propertyTypes";
|
|
271
|
+
StaticScreenCode["ObjectApplications"] = "objectApplications";
|
|
272
|
+
StaticScreenCode["ObjectMessages"] = "objectMessages";
|
|
273
|
+
StaticScreenCode["ApplicationStatus"] = "applicationStatus";
|
|
274
|
+
StaticScreenCode["MessageStatus"] = "messageStatus";
|
|
275
|
+
StaticScreenCode["ApplicationMessages"] = "applicationMessages";
|
|
276
|
+
StaticScreenCode["Onboarding"] = "onboarding";
|
|
277
|
+
StaticScreenCode["RepairsQuestions"] = "repairsQuestions";
|
|
278
|
+
StaticScreenCode["BenefitsQuestions"] = "benefitsQuestions";
|
|
279
|
+
StaticScreenCode["CardAwaiting"] = "cardAwaiting";
|
|
280
|
+
StaticScreenCode["LinkDrrp"] = "linkDrrp";
|
|
281
|
+
StaticScreenCode["DiiaRadio"] = "diiaRadio";
|
|
282
|
+
StaticScreenCode["DiiaRadioPlaying"] = "diiaRadioPlaying";
|
|
283
|
+
StaticScreenCode["DiiaRadioPaused"] = "diiaRadioPaused";
|
|
284
|
+
StaticScreenCode["DiiaTVPlaying"] = "diiaTVPlaying";
|
|
285
|
+
StaticScreenCode["TvChannelSelection"] = "tvChannelSelection";
|
|
286
|
+
StaticScreenCode["DamageMessages"] = "damageMessages";
|
|
287
|
+
StaticScreenCode["DamagedPropertyRecovery"] = "damagedPropertyRecovery";
|
|
288
|
+
StaticScreenCode["ChooseDrrpObject"] = "chooseDrrpObject";
|
|
289
|
+
StaticScreenCode["AddManualObject"] = "addManualObject";
|
|
290
|
+
StaticScreenCode["AddManualObjectAddress"] = "addManualObjectAddress";
|
|
291
|
+
StaticScreenCode["DamageAssessment"] = "damageAssessment";
|
|
292
|
+
StaticScreenCode["DamagesFixing"] = "damagesFixing";
|
|
293
|
+
StaticScreenCode["NewAdultRegistration"] = "newAdultRegistration";
|
|
294
|
+
StaticScreenCode["NewChildRegistration"] = "newChildRegistration";
|
|
295
|
+
StaticScreenCode["Adult"] = "adult";
|
|
296
|
+
StaticScreenCode["AddBirthCertificate"] = "addBirthCertificate";
|
|
297
|
+
StaticScreenCode["AddBirthCertificateOwnersChild"] = "addBirthCertificateOwnersChild";
|
|
298
|
+
StaticScreenCode["ApproveOwnerData"] = "approveOwnerData";
|
|
299
|
+
StaticScreenCode["LiquidatedBanks"] = "liquidatedBanks";
|
|
300
|
+
StaticScreenCode["CurrentAdultRegistration"] = "currentAdultRegistration";
|
|
301
|
+
StaticScreenCode["CurrentChildRegistration"] = "currentChildRegistration";
|
|
302
|
+
StaticScreenCode["ContactsOwner"] = "contactsOwner";
|
|
303
|
+
StaticScreenCode["PenaltiesPaidOutside"] = "penaltiesPaidOutside";
|
|
304
|
+
StaticScreenCode["Penalties"] = "penalties";
|
|
305
|
+
StaticScreenCode["CriminalRecordCertificate"] = "criminalRecordCertificate";
|
|
306
|
+
StaticScreenCode["ReplacementDriverLicense"] = "replacementDriverLicense";
|
|
307
|
+
StaticScreenCode["QuizArchive"] = "quizArchive";
|
|
308
|
+
StaticScreenCode["QuizDetailsActive"] = "quizDetailsActive";
|
|
309
|
+
StaticScreenCode["QuizDetailsClose"] = "quizDetailsClose";
|
|
310
|
+
StaticScreenCode["OfficialsPoll"] = "officialsPoll";
|
|
311
|
+
StaticScreenCode["OfficialsWorkspace"] = "officialsWorkspace";
|
|
312
|
+
StaticScreenCode["OfficialsBadges"] = "officialsBadges";
|
|
313
|
+
StaticScreenCode["OfficialsSearchColleagues"] = "officialsSearchColleagues";
|
|
314
|
+
StaticScreenCode["BenefitsConfirmation"] = "benefitsConfirmation";
|
|
315
|
+
StaticScreenCode["OwnersConfirmation"] = "ownersConfirmation";
|
|
316
|
+
StaticScreenCode["CourtCasesDetails"] = "courtCasesDetails";
|
|
317
|
+
StaticScreenCode["CourtCasesDecisions"] = "courtCasesDecisions";
|
|
318
|
+
StaticScreenCode["CourtCasesDecisionsDetails"] = "courtCasesDecisionsDetails";
|
|
319
|
+
StaticScreenCode["CourtCasesHearings"] = "courtCasesHearings";
|
|
320
|
+
StaticScreenCode["CourtCasesHearingsDetails"] = "courtCasesHearingsDetails";
|
|
321
|
+
StaticScreenCode["AllApplications"] = "allApplications";
|
|
322
|
+
StaticScreenCode["DownloadList"] = "downloadList";
|
|
323
|
+
StaticScreenCode["Map"] = "map";
|
|
324
|
+
StaticScreenCode["MaritalStatus"] = "maritalStatus";
|
|
325
|
+
StaticScreenCode["ChildrenNumber"] = "childrenNumber";
|
|
326
|
+
StaticScreenCode["Income"] = "income";
|
|
327
|
+
StaticScreenCode["MortgageApartment"] = "mortgageApartment";
|
|
328
|
+
StaticScreenCode["AddressMortgageApartment"] = "addressMortgageApartment";
|
|
329
|
+
StaticScreenCode["MortgageBanks"] = "mortgageBanks";
|
|
330
|
+
StaticScreenCode["SelectionRepairStage"] = "selectionRepairStage";
|
|
331
|
+
StaticScreenCode["MediaUpload"] = "mediaUpload";
|
|
332
|
+
StaticScreenCode["StartBookingFunds"] = "startBookingFunds";
|
|
333
|
+
StaticScreenCode["SelectionBookingCertificate"] = "selectionBookingCertificate";
|
|
334
|
+
StaticScreenCode["MapPointDetails"] = "mapPointDetails";
|
|
335
|
+
StaticScreenCode["TargetFeedbackInvincibility"] = "targetFeedbackInvincibility";
|
|
336
|
+
StaticScreenCode["TargetFeedbackShelters"] = "targetFeedbackShelters";
|
|
337
|
+
StaticScreenCode["Specialities"] = "specialities";
|
|
338
|
+
StaticScreenCode["AvailableBonds"] = "availableBonds";
|
|
339
|
+
StaticScreenCode["AvailableBondsPartners"] = "availableBondsPartners";
|
|
340
|
+
StaticScreenCode["AvailableBondsPartnersCart"] = "availableBondsPartnersCart";
|
|
341
|
+
StaticScreenCode["CompensationType"] = "compensationType";
|
|
342
|
+
StaticScreenCode["RepeatedDeliveryApplication"] = "repeatedDeliveryApplication";
|
|
343
|
+
StaticScreenCode["RepeatedDeliveryContacts"] = "repeatedDeliveryContacts";
|
|
344
|
+
StaticScreenCode["RepeatedDeliveryMethodsOfObtaining"] = "repeatedDeliveryMethodsOfObtaining";
|
|
345
|
+
StaticScreenCode["DepartmentSelection"] = "departmentSelection";
|
|
346
|
+
StaticScreenCode["DeliveryAddressDefinition"] = "deliveryAddressDefinition";
|
|
347
|
+
StaticScreenCode["ConstructingStartMessage"] = "constructingStartMessage";
|
|
348
|
+
StaticScreenCode["ConstructingCompletionMessage"] = "constructingCompletionMessage";
|
|
349
|
+
})(StaticScreenCode || (exports.StaticScreenCode = StaticScreenCode = {}));
|
|
350
|
+
//# sourceMappingURL=rating.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rating.js","sourceRoot":"","sources":["../../src/interfaces/rating.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getRatingFormMock = void 0;
|
|
4
|
+
const interfaces_1 = require("../interfaces");
|
|
5
|
+
function getRatingFormMock(ratingForm = {}) {
|
|
6
|
+
const chips = [
|
|
7
|
+
{
|
|
8
|
+
code: 'addressError',
|
|
9
|
+
name: 'name',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
code: 'mobility',
|
|
13
|
+
name: 'name',
|
|
14
|
+
},
|
|
15
|
+
];
|
|
16
|
+
return {
|
|
17
|
+
title: 'Поділіться враженнями',
|
|
18
|
+
rating: {
|
|
19
|
+
label: 'Задоволені замовленням та отриманням послуги в Дії?',
|
|
20
|
+
items: [
|
|
21
|
+
{
|
|
22
|
+
rate: interfaces_1.RatingScore.Awful,
|
|
23
|
+
emoji: '😡',
|
|
24
|
+
chip: {
|
|
25
|
+
label: 'Що засмутило?',
|
|
26
|
+
description: 'Оберіть один або кілька варіантів.',
|
|
27
|
+
chips,
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
rate: interfaces_1.RatingScore.Bad,
|
|
32
|
+
emoji: '😢',
|
|
33
|
+
chip: {
|
|
34
|
+
label: 'Що засмутило?',
|
|
35
|
+
description: 'Оберіть один або кілька варіантів.',
|
|
36
|
+
chips,
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
rate: interfaces_1.RatingScore.Ok,
|
|
41
|
+
emoji: '😐',
|
|
42
|
+
chip: {
|
|
43
|
+
label: 'На що команді звернути увагу?',
|
|
44
|
+
description: 'Оберіть один або кілька варіантів.',
|
|
45
|
+
chips,
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
rate: interfaces_1.RatingScore.Good,
|
|
50
|
+
emoji: '😁',
|
|
51
|
+
chip: {
|
|
52
|
+
label: 'Що сподобалось?',
|
|
53
|
+
description: 'Оберіть один або кілька варіантів.',
|
|
54
|
+
chips,
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
rate: interfaces_1.RatingScore.Excellent,
|
|
59
|
+
emoji: '😍',
|
|
60
|
+
chip: {
|
|
61
|
+
label: 'Що сподобалось?',
|
|
62
|
+
description: 'Оберіть один або кілька варіантів.',
|
|
63
|
+
chips,
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
},
|
|
68
|
+
comment: {
|
|
69
|
+
label: 'Як можна покращити послугу?',
|
|
70
|
+
hint: 'Розкажіть більше про враження (необовʼязково)',
|
|
71
|
+
},
|
|
72
|
+
mainButton: 'Надіслати відгук',
|
|
73
|
+
...ratingForm,
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
exports.getRatingFormMock = getRatingFormMock;
|
|
77
|
+
//# sourceMappingURL=analytics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"analytics.js","sourceRoot":"","sources":["../../src/mocks/analytics.ts"],"names":[],"mappings":";;;AAAA,8CAAuE;AAEvE,SAAgB,iBAAiB,CAAC,aAAkC,EAAE;IAClE,MAAM,KAAK,GAAqB;QAC5B;YACI,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,MAAM;SACf;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,MAAM;SACf;KACJ,CAAA;IAED,OAAmB;QACf,KAAK,EAAE,uBAAuB;QAC9B,MAAM,EAAE;YACJ,KAAK,EAAE,qDAAqD;YAC5D,KAAK,EAAE;gBACH;oBACI,IAAI,EAAE,wBAAW,CAAC,KAAK;oBACvB,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE;wBACF,KAAK,EAAE,eAAe;wBACtB,WAAW,EAAE,oCAAoC;wBACjD,KAAK;qBACR;iBACJ;gBACD;oBACI,IAAI,EAAE,wBAAW,CAAC,GAAG;oBACrB,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE;wBACF,KAAK,EAAE,eAAe;wBACtB,WAAW,EAAE,oCAAoC;wBACjD,KAAK;qBACR;iBACJ;gBACD;oBACI,IAAI,EAAE,wBAAW,CAAC,EAAE;oBACpB,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE;wBACF,KAAK,EAAE,+BAA+B;wBACtC,WAAW,EAAE,oCAAoC;wBACjD,KAAK;qBACR;iBACJ;gBACD;oBACI,IAAI,EAAE,wBAAW,CAAC,IAAI;oBACtB,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE;wBACF,KAAK,EAAE,iBAAiB;wBACxB,WAAW,EAAE,oCAAoC;wBACjD,KAAK;qBACR;iBACJ;gBACD;oBACI,IAAI,EAAE,wBAAW,CAAC,SAAS;oBAC3B,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE;wBACF,KAAK,EAAE,iBAAiB;wBACxB,WAAW,EAAE,oCAAoC;wBACjD,KAAK;qBACR;iBACJ;aACJ;SACJ;QACD,OAAO,EAAE;YACL,KAAK,EAAE,6BAA6B;YACpC,IAAI,EAAE,+CAA+C;SACxD;QACD,UAAU,EAAE,kBAAkB;QAC9B,GAAG,UAAU;KAChB,CAAA;AACL,CAAC;AAvED,8CAuEC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./analytics"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mocks/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnalyticsService = void 0;
|
|
4
|
+
const utils_1 = require("@diia-inhouse/utils");
|
|
5
|
+
const interfaces_1 = require("../interfaces");
|
|
6
|
+
class AnalyticsService {
|
|
7
|
+
logger;
|
|
8
|
+
asyncLocalStorage;
|
|
9
|
+
constructor(logger, asyncLocalStorage) {
|
|
10
|
+
this.logger = logger;
|
|
11
|
+
this.asyncLocalStorage = asyncLocalStorage;
|
|
12
|
+
}
|
|
13
|
+
acquirerLog(category, acquirerId, actionType, actionResult, headers, data) {
|
|
14
|
+
const analytics = {
|
|
15
|
+
date: this.getDate(),
|
|
16
|
+
category,
|
|
17
|
+
acquirer: acquirerId,
|
|
18
|
+
action: {
|
|
19
|
+
type: actionType,
|
|
20
|
+
result: actionResult,
|
|
21
|
+
},
|
|
22
|
+
appVersion: headers?.appVersion,
|
|
23
|
+
device: this.getDevice(headers),
|
|
24
|
+
data,
|
|
25
|
+
};
|
|
26
|
+
this.logAnalytics(analytics);
|
|
27
|
+
}
|
|
28
|
+
userAcquirerLog(category, userIdentifier, acquirerId, actionType, actionResult, headers, data) {
|
|
29
|
+
const analytics = {
|
|
30
|
+
date: this.getDate(),
|
|
31
|
+
category,
|
|
32
|
+
acquirer: acquirerId,
|
|
33
|
+
identifier: userIdentifier,
|
|
34
|
+
action: {
|
|
35
|
+
type: actionType,
|
|
36
|
+
result: actionResult,
|
|
37
|
+
},
|
|
38
|
+
appVersion: headers?.appVersion,
|
|
39
|
+
device: this.getDevice(headers),
|
|
40
|
+
data,
|
|
41
|
+
};
|
|
42
|
+
this.logAnalytics(analytics);
|
|
43
|
+
}
|
|
44
|
+
notificationLog(actionType, actionResult, headers, data) {
|
|
45
|
+
const analytics = {
|
|
46
|
+
date: this.getDate(),
|
|
47
|
+
category: interfaces_1.AnalyticsCategory.Notification,
|
|
48
|
+
action: {
|
|
49
|
+
type: actionType,
|
|
50
|
+
result: actionResult,
|
|
51
|
+
},
|
|
52
|
+
appVersion: headers.appVersion,
|
|
53
|
+
device: this.getDevice(headers),
|
|
54
|
+
data,
|
|
55
|
+
};
|
|
56
|
+
this.logAnalytics(analytics);
|
|
57
|
+
}
|
|
58
|
+
userLog(actionType, actionResult, userIdentifier, headers, data) {
|
|
59
|
+
const analytics = {
|
|
60
|
+
date: this.getDate(),
|
|
61
|
+
category: interfaces_1.AnalyticsCategory.Users,
|
|
62
|
+
action: {
|
|
63
|
+
type: actionType,
|
|
64
|
+
result: actionResult,
|
|
65
|
+
},
|
|
66
|
+
identifier: userIdentifier,
|
|
67
|
+
appVersion: headers.appVersion,
|
|
68
|
+
device: this.getDevice(headers),
|
|
69
|
+
data,
|
|
70
|
+
};
|
|
71
|
+
this.logAnalytics(analytics);
|
|
72
|
+
}
|
|
73
|
+
authLog(actionType, actionResult, userIdentifier, headers, data) {
|
|
74
|
+
const analytics = {
|
|
75
|
+
date: this.getDate(),
|
|
76
|
+
category: interfaces_1.AnalyticsCategory.Auth,
|
|
77
|
+
action: {
|
|
78
|
+
type: actionType,
|
|
79
|
+
result: actionResult,
|
|
80
|
+
},
|
|
81
|
+
identifier: userIdentifier,
|
|
82
|
+
appVersion: headers.appVersion,
|
|
83
|
+
device: this.getDevice(headers),
|
|
84
|
+
data,
|
|
85
|
+
};
|
|
86
|
+
this.logAnalytics(analytics);
|
|
87
|
+
}
|
|
88
|
+
log(category, actionType, actionResult, data) {
|
|
89
|
+
const context = this.asyncLocalStorage.getStore();
|
|
90
|
+
if (!context) {
|
|
91
|
+
this.logger.fatal('Analytics log is used without als context');
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
const { session, headers } = context;
|
|
95
|
+
const analytics = {
|
|
96
|
+
date: this.getDate(),
|
|
97
|
+
category,
|
|
98
|
+
action: {
|
|
99
|
+
type: actionType,
|
|
100
|
+
result: actionResult,
|
|
101
|
+
},
|
|
102
|
+
appVersion: headers?.appVersion,
|
|
103
|
+
device: this.getDevice(headers),
|
|
104
|
+
data,
|
|
105
|
+
};
|
|
106
|
+
if (utils_1.guards.isUserSession(session)) {
|
|
107
|
+
analytics.identifier = session.user.identifier;
|
|
108
|
+
}
|
|
109
|
+
if (utils_1.guards.isServiceEntranceSession(session)) {
|
|
110
|
+
const { acquirerId, branchHashId, offerHashId } = session.entrance;
|
|
111
|
+
analytics.acquirer = acquirerId;
|
|
112
|
+
if (!data) {
|
|
113
|
+
data = {};
|
|
114
|
+
}
|
|
115
|
+
if (!data.branch) {
|
|
116
|
+
data.branch = branchHashId;
|
|
117
|
+
}
|
|
118
|
+
if (!data.offer) {
|
|
119
|
+
data.offer = offerHashId;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
this.logger.info('Analytics', { analytics });
|
|
123
|
+
}
|
|
124
|
+
getDate() {
|
|
125
|
+
return new Date().toISOString();
|
|
126
|
+
}
|
|
127
|
+
getDevice(headers) {
|
|
128
|
+
if (!headers) {
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
const { mobileUid, platformType, platformVersion } = headers;
|
|
132
|
+
return {
|
|
133
|
+
identifier: mobileUid,
|
|
134
|
+
platform: {
|
|
135
|
+
type: platformType,
|
|
136
|
+
version: platformVersion,
|
|
137
|
+
},
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
logAnalytics(analytics) {
|
|
141
|
+
const log = { analytics };
|
|
142
|
+
this.logger.info('Analytics', log);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
exports.AnalyticsService = AnalyticsService;
|
|
146
|
+
//# sourceMappingURL=analytics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"analytics.js","sourceRoot":"","sources":["../../src/services/analytics.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./analytics"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|