@bringg/dashboard-sdk 0.4.69 → 0.4.70
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/BringgDashboardSDK.d.ts +2 -2
- package/dist/BringgDashboardSDK.js +18 -6
- package/dist/BringgDashboardSDK.js.map +1 -1
- package/dist/Core/ConfigurationProvider.d.ts +4 -0
- package/dist/Core/ConfigurationProvider.js +6 -0
- package/dist/Core/ConfigurationProvider.js.map +1 -1
- package/dist/Services/ServiceRequest.js +1 -1
- package/dist/UserAnalytics/UserAnalyticsApi.d.ts +10 -0
- package/dist/UserAnalytics/UserAnalyticsApi.js +93 -0
- package/dist/UserAnalytics/UserAnalyticsApi.js.map +1 -0
- package/dist/bringg-dashboard-sdk-cjs2.js +203 -54
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +68 -29
- package/dist/bringg-dashboard-sdk.min.js +2 -2
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/dist/stats.json +1078 -740
- package/package.json +2 -2
|
@@ -22046,9 +22046,9 @@ var CustomFilterApi_1 = __webpack_require__(439);
|
|
|
22046
22046
|
var FloatingInventoryApi_1 = __webpack_require__(441);
|
|
22047
22047
|
var ServiceAreaApi_1 = __webpack_require__(444);
|
|
22048
22048
|
var BillingApi_1 = __webpack_require__(446);
|
|
22049
|
-
var
|
|
22050
|
-
var AnalyticsReportsApi_1 = __webpack_require__(
|
|
22051
|
-
var ServicePlansApi_1 = __webpack_require__(
|
|
22049
|
+
var UserAnalyticsApi_1 = __webpack_require__(448);
|
|
22050
|
+
var AnalyticsReportsApi_1 = __webpack_require__(453);
|
|
22051
|
+
var ServicePlansApi_1 = __webpack_require__(455);
|
|
22052
22052
|
var BringgDashboardSDK = /** @class */ (function () {
|
|
22053
22053
|
function BringgDashboardSDK(session) {
|
|
22054
22054
|
this.applicationMerchantConfiguration = null;
|
|
@@ -22163,7 +22163,7 @@ var BringgDashboardSDK = /** @class */ (function () {
|
|
|
22163
22163
|
bringg.customFilters = new CustomFilterApi_1.default(session);
|
|
22164
22164
|
bringg.serviceAreas = new ServiceAreaApi_1.default(session);
|
|
22165
22165
|
bringg.billing = new BillingApi_1.default(session);
|
|
22166
|
-
bringg.
|
|
22166
|
+
bringg.userAnalytics = new UserAnalyticsApi_1.default(session);
|
|
22167
22167
|
bringg.analyticsReports = new AnalyticsReportsApi_1.default(session);
|
|
22168
22168
|
bringg.servicePlans = new ServicePlansApi_1.default(session);
|
|
22169
22169
|
// dependent
|
|
@@ -22185,7 +22185,22 @@ var BringgDashboardSDK = /** @class */ (function () {
|
|
|
22185
22185
|
case 0: return [4 /*yield*/, Promise.all([bringg.merchantConfiguration.get(), bringg.webApplicationConfiguration.get()])];
|
|
22186
22186
|
case 1:
|
|
22187
22187
|
_a.sent();
|
|
22188
|
-
return [
|
|
22188
|
+
if (!this._configurationProvider.isUserAnalyticsEnabled()) return [3 /*break*/, 5];
|
|
22189
|
+
return [4 /*yield*/, bringg.userAnalytics.addSnippet({
|
|
22190
|
+
apiKey: this._configurationProvider.getUserAnalyticsApiKey()
|
|
22191
|
+
})];
|
|
22192
|
+
case 2:
|
|
22193
|
+
_a.sent();
|
|
22194
|
+
return [4 /*yield*/, bringg.merchant.get()];
|
|
22195
|
+
case 3:
|
|
22196
|
+
_a.sent();
|
|
22197
|
+
return [4 /*yield*/, bringg.userAnalytics.run({
|
|
22198
|
+
environment: BringgDashboardSDK._environment
|
|
22199
|
+
})];
|
|
22200
|
+
case 4:
|
|
22201
|
+
_a.sent();
|
|
22202
|
+
_a.label = 5;
|
|
22203
|
+
case 5: return [2 /*return*/];
|
|
22189
22204
|
}
|
|
22190
22205
|
});
|
|
22191
22206
|
});
|
|
@@ -22249,9 +22264,6 @@ var BringgDashboardSDK = /** @class */ (function () {
|
|
|
22249
22264
|
};
|
|
22250
22265
|
BringgDashboardSDK.loginInternal = function (sdkInitialiser, params) {
|
|
22251
22266
|
return __awaiter(this, void 0, void 0, function () {
|
|
22252
|
-
function isMerchantsData(object) {
|
|
22253
|
-
return 'merchants_data' in object;
|
|
22254
|
-
}
|
|
22255
22267
|
var response;
|
|
22256
22268
|
return __generator(this, function (_a) {
|
|
22257
22269
|
switch (_a.label) {
|
|
@@ -30013,7 +30025,7 @@ var axios_1 = __webpack_require__(146);
|
|
|
30013
30025
|
var Logger_1 = __webpack_require__(39);
|
|
30014
30026
|
var lodash_1 = __webpack_require__(10);
|
|
30015
30027
|
var BringgException_1 = __webpack_require__(15);
|
|
30016
|
-
var version = '0.4.
|
|
30028
|
+
var version = '0.4.70';
|
|
30017
30029
|
function logErrorResponse(response) {
|
|
30018
30030
|
var data = response.data, status = response.status;
|
|
30019
30031
|
try {
|
|
@@ -36315,6 +36327,12 @@ var ConfigurationProvider = /** @class */ (function () {
|
|
|
36315
36327
|
ConfigurationProvider.prototype.getClientId = function () {
|
|
36316
36328
|
return 'Bringg Dashboard';
|
|
36317
36329
|
};
|
|
36330
|
+
ConfigurationProvider.prototype.isUserAnalyticsEnabled = function () {
|
|
36331
|
+
return this.config.user_analytics.enabled;
|
|
36332
|
+
};
|
|
36333
|
+
ConfigurationProvider.prototype.getUserAnalyticsApiKey = function () {
|
|
36334
|
+
return this.config.user_analytics.api_key;
|
|
36335
|
+
};
|
|
36318
36336
|
ConfigurationProvider.getConfigUrl = function (env) { return "https://s3.amazonaws.com/bringg-hosts/regions/" + env + ".json"; };
|
|
36319
36337
|
return ConfigurationProvider;
|
|
36320
36338
|
}());
|
|
@@ -36561,7 +36579,7 @@ var Logger_1 = __webpack_require__(39);
|
|
|
36561
36579
|
//export types
|
|
36562
36580
|
var BringgDashboardSDK_1 = __webpack_require__(61);
|
|
36563
36581
|
Object.defineProperty(exports, "BringgDashboardSDK", { enumerable: true, get: function () { return BringgDashboardSDK_1.BringgDashboardSDK; } });
|
|
36564
|
-
var VehicleTypeConsts = __webpack_require__(
|
|
36582
|
+
var VehicleTypeConsts = __webpack_require__(458);
|
|
36565
36583
|
exports.VehicleTypeConsts = VehicleTypeConsts;
|
|
36566
36584
|
var TaskInventoryConsts = __webpack_require__(136);
|
|
36567
36585
|
exports.TaskInventoryConsts = TaskInventoryConsts;
|
|
@@ -36569,7 +36587,7 @@ var RunConsts = __webpack_require__(133);
|
|
|
36569
36587
|
exports.RunConsts = RunConsts;
|
|
36570
36588
|
var ReasonToChangeInventory = __webpack_require__(135);
|
|
36571
36589
|
exports.ReasonToChangeInventory = ReasonToChangeInventory;
|
|
36572
|
-
var PlannedRoutesConsts = __webpack_require__(
|
|
36590
|
+
var PlannedRoutesConsts = __webpack_require__(459);
|
|
36573
36591
|
exports.PlannedRoutesConsts = PlannedRoutesConsts;
|
|
36574
36592
|
var NotificationTypesConsts = __webpack_require__(140);
|
|
36575
36593
|
exports.NotificationTypesConsts = NotificationTypesConsts;
|
|
@@ -36579,19 +36597,19 @@ var LanguageConsts = __webpack_require__(139);
|
|
|
36579
36597
|
exports.LanguageConsts = LanguageConsts;
|
|
36580
36598
|
var DashboardConsts = __webpack_require__(134);
|
|
36581
36599
|
exports.DashboardConsts = DashboardConsts;
|
|
36582
|
-
var CrewConsts = __webpack_require__(
|
|
36600
|
+
var CrewConsts = __webpack_require__(460);
|
|
36583
36601
|
exports.CrewConsts = CrewConsts;
|
|
36584
36602
|
var ChatMessageConsts = __webpack_require__(138);
|
|
36585
36603
|
exports.ChatMessageConsts = ChatMessageConsts;
|
|
36586
36604
|
var ChatConversationConsts = __webpack_require__(137);
|
|
36587
36605
|
exports.ChatConversationConsts = ChatConversationConsts;
|
|
36588
|
-
var Responses = __webpack_require__(
|
|
36606
|
+
var Responses = __webpack_require__(461);
|
|
36589
36607
|
exports.Responses = Responses;
|
|
36590
|
-
var TagConsts = __webpack_require__(
|
|
36608
|
+
var TagConsts = __webpack_require__(462);
|
|
36591
36609
|
exports.TagConsts = TagConsts;
|
|
36592
|
-
var DeliveryBlockConsts = __webpack_require__(
|
|
36610
|
+
var DeliveryBlockConsts = __webpack_require__(463);
|
|
36593
36611
|
exports.DeliveryBlockConsts = DeliveryBlockConsts;
|
|
36594
|
-
var ResourceUploadType_1 = __webpack_require__(
|
|
36612
|
+
var ResourceUploadType_1 = __webpack_require__(464);
|
|
36595
36613
|
exports.ResourceUploadType = ResourceUploadType_1.default;
|
|
36596
36614
|
module.exports = {};
|
|
36597
36615
|
lodash_1.extend(module.exports, BringgDashboardSDK_1.BringgDashboardSDK);
|
|
@@ -56395,7 +56413,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56395
56413
|
};
|
|
56396
56414
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56397
56415
|
var StoreEntity_1 = __webpack_require__(11);
|
|
56398
|
-
var uuid_1 = __webpack_require__(
|
|
56416
|
+
var uuid_1 = __webpack_require__(465);
|
|
56399
56417
|
var _ = __webpack_require__(10);
|
|
56400
56418
|
var entityName = 'application_action';
|
|
56401
56419
|
var ApplicationEntity = /** @class */ (function (_super) {
|
|
@@ -58138,8 +58156,107 @@ exports.default = BillingEntity;
|
|
|
58138
58156
|
|
|
58139
58157
|
"use strict";
|
|
58140
58158
|
|
|
58159
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
58160
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
58161
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
58162
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
58163
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
58164
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
58165
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
58166
|
+
});
|
|
58167
|
+
};
|
|
58168
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
58169
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
58170
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
58171
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
58172
|
+
function step(op) {
|
|
58173
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
58174
|
+
while (_) try {
|
|
58175
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
58176
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
58177
|
+
switch (op[0]) {
|
|
58178
|
+
case 0: case 1: t = op; break;
|
|
58179
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
58180
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
58181
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
58182
|
+
default:
|
|
58183
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
58184
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
58185
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
58186
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
58187
|
+
if (t[2]) _.ops.pop();
|
|
58188
|
+
_.trys.pop(); continue;
|
|
58189
|
+
}
|
|
58190
|
+
op = body.call(thisArg, _);
|
|
58191
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
58192
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
58193
|
+
}
|
|
58194
|
+
};
|
|
58141
58195
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58142
|
-
|
|
58196
|
+
var user_analytics_1 = __webpack_require__(449);
|
|
58197
|
+
var types_1 = __webpack_require__(452);
|
|
58198
|
+
var UserAnalyticsApi = /** @class */ (function () {
|
|
58199
|
+
function UserAnalyticsApi(session) {
|
|
58200
|
+
this.session = session;
|
|
58201
|
+
this.userAnalytics = new user_analytics_1.default();
|
|
58202
|
+
}
|
|
58203
|
+
UserAnalyticsApi.prototype.addSnippet = function (_a) {
|
|
58204
|
+
var apiKey = _a.apiKey;
|
|
58205
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
58206
|
+
return __generator(this, function (_b) {
|
|
58207
|
+
switch (_b.label) {
|
|
58208
|
+
case 0: return [4 /*yield*/, this.userAnalytics.addSnippet({ apiKey: apiKey })];
|
|
58209
|
+
case 1: return [2 /*return*/, _b.sent()];
|
|
58210
|
+
}
|
|
58211
|
+
});
|
|
58212
|
+
});
|
|
58213
|
+
};
|
|
58214
|
+
UserAnalyticsApi.prototype.run = function () {
|
|
58215
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
58216
|
+
var role;
|
|
58217
|
+
return __generator(this, function (_a) {
|
|
58218
|
+
switch (_a.label) {
|
|
58219
|
+
case 0:
|
|
58220
|
+
role = (this.session.user.admin && types_1.Role.ADMIN) ||
|
|
58221
|
+
(this.session.user.dispatcher && types_1.Role.DISPATCHER) ||
|
|
58222
|
+
(this.session.user.driver && types_1.Role.DRIVER) ||
|
|
58223
|
+
undefined;
|
|
58224
|
+
if (!role) {
|
|
58225
|
+
throw new Error('Invalid analytics user role');
|
|
58226
|
+
}
|
|
58227
|
+
return [4 /*yield*/, this.userAnalytics.run({
|
|
58228
|
+
user: {
|
|
58229
|
+
id: this.session.user.id,
|
|
58230
|
+
name: this.session.user.name,
|
|
58231
|
+
email: this.session.user.email,
|
|
58232
|
+
role: role,
|
|
58233
|
+
isImpersonated: typeof localStorage !== 'undefined' && Boolean(localStorage.getItem('impersonate_original_user'))
|
|
58234
|
+
},
|
|
58235
|
+
merchant: {
|
|
58236
|
+
id: this.session.merchant.id,
|
|
58237
|
+
name: this.session.merchant.name,
|
|
58238
|
+
environment: this.session.user.region,
|
|
58239
|
+
isBringgAccount: this.session.merchant.id === 1
|
|
58240
|
+
}
|
|
58241
|
+
})];
|
|
58242
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
58243
|
+
}
|
|
58244
|
+
});
|
|
58245
|
+
});
|
|
58246
|
+
};
|
|
58247
|
+
return UserAnalyticsApi;
|
|
58248
|
+
}());
|
|
58249
|
+
exports.default = UserAnalyticsApi;
|
|
58250
|
+
//# sourceMappingURL=UserAnalyticsApi.js.map
|
|
58251
|
+
|
|
58252
|
+
/***/ }),
|
|
58253
|
+
/* 449 */
|
|
58254
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
58255
|
+
|
|
58256
|
+
"use strict";
|
|
58257
|
+
|
|
58258
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58259
|
+
const pendo_1 = __webpack_require__(450);
|
|
58143
58260
|
class AnalyticsApi {
|
|
58144
58261
|
constructor() {
|
|
58145
58262
|
this.provider = new pendo_1.PendoProvider();
|
|
@@ -58147,8 +58264,8 @@ class AnalyticsApi {
|
|
|
58147
58264
|
async addSnippet(data) {
|
|
58148
58265
|
return await this.provider.addSnippet(data);
|
|
58149
58266
|
}
|
|
58150
|
-
async
|
|
58151
|
-
return await this.provider.
|
|
58267
|
+
async run(data) {
|
|
58268
|
+
return await this.provider.run(data);
|
|
58152
58269
|
}
|
|
58153
58270
|
async trackEvent(data) {
|
|
58154
58271
|
return await this.provider.trackEvent(data);
|
|
@@ -58159,32 +58276,19 @@ exports.default = AnalyticsApi;
|
|
|
58159
58276
|
//# sourceMappingURL=index.js.map
|
|
58160
58277
|
|
|
58161
58278
|
/***/ }),
|
|
58162
|
-
/*
|
|
58279
|
+
/* 450 */
|
|
58163
58280
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58164
58281
|
|
|
58165
58282
|
"use strict";
|
|
58166
58283
|
|
|
58167
58284
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58168
58285
|
exports.PendoProvider = void 0;
|
|
58286
|
+
const pendoSnippet_1 = __webpack_require__(451);
|
|
58169
58287
|
class PendoProvider {
|
|
58170
58288
|
async addSnippet({ apiKey }) {
|
|
58171
|
-
(
|
|
58172
|
-
|
|
58173
|
-
|
|
58174
|
-
o._q = o._q || [];
|
|
58175
|
-
v = ['initialize', 'identify', 'updateOptions', 'pageLoad', 'track'];
|
|
58176
|
-
for (w = 0, x = v.length; w < x; ++w)
|
|
58177
|
-
(function (m) {
|
|
58178
|
-
o[m] = o[m] || function () { o._q[m === v[0] ? 'unshift' : 'push']([m].concat([].slice.call(arguments, 0))); };
|
|
58179
|
-
})(v[w]);
|
|
58180
|
-
y = e.createElement(n);
|
|
58181
|
-
y.async = !0;
|
|
58182
|
-
y.src = 'https://cdn.eu.pendo.io/agent/static/' + apiKey + '/pendo.js';
|
|
58183
|
-
z = e.getElementsByTagName(n)[0];
|
|
58184
|
-
z.parentNode.insertBefore(y, z);
|
|
58185
|
-
})(window, document, 'script', 'pendo');
|
|
58186
|
-
}
|
|
58187
|
-
async init({ user, merchant }) {
|
|
58289
|
+
(0, pendoSnippet_1.addSnippet)(apiKey);
|
|
58290
|
+
}
|
|
58291
|
+
async run({ user, merchant }) {
|
|
58188
58292
|
if (typeof pendo === 'undefined') {
|
|
58189
58293
|
throw new Error('Pendo global is not defined');
|
|
58190
58294
|
}
|
|
@@ -58201,13 +58305,58 @@ exports.PendoProvider = PendoProvider;
|
|
|
58201
58305
|
//# sourceMappingURL=pendo.js.map
|
|
58202
58306
|
|
|
58203
58307
|
/***/ }),
|
|
58204
|
-
/*
|
|
58308
|
+
/* 451 */
|
|
58309
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
58310
|
+
|
|
58311
|
+
"use strict";
|
|
58312
|
+
|
|
58313
|
+
// @ts-nocheck
|
|
58314
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58315
|
+
exports.addSnippet = void 0;
|
|
58316
|
+
const addSnippet = (apiKey) => {
|
|
58317
|
+
(function (p, e, n, d, o) {
|
|
58318
|
+
var v, w, x, y, z;
|
|
58319
|
+
o = p[d] = p[d] || {};
|
|
58320
|
+
o._q = o._q || [];
|
|
58321
|
+
v = ['initialize', 'identify', 'updateOptions', 'pageLoad', 'track'];
|
|
58322
|
+
for (w = 0, x = v.length; w < x; ++w)
|
|
58323
|
+
(function (m) {
|
|
58324
|
+
o[m] = o[m] || function () { o._q[m === v[0] ? 'unshift' : 'push']([m].concat([].slice.call(arguments, 0))); };
|
|
58325
|
+
})(v[w]);
|
|
58326
|
+
y = e.createElement(n);
|
|
58327
|
+
y.async = !0;
|
|
58328
|
+
y.src = 'https://cdn.eu.pendo.io/agent/static/' + apiKey + '/pendo.js';
|
|
58329
|
+
z = e.getElementsByTagName(n)[0];
|
|
58330
|
+
z.parentNode.insertBefore(y, z);
|
|
58331
|
+
})(window, document, 'script', 'pendo');
|
|
58332
|
+
};
|
|
58333
|
+
exports.addSnippet = addSnippet;
|
|
58334
|
+
//# sourceMappingURL=pendoSnippet.js.map
|
|
58335
|
+
|
|
58336
|
+
/***/ }),
|
|
58337
|
+
/* 452 */
|
|
58205
58338
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58206
58339
|
|
|
58207
58340
|
"use strict";
|
|
58208
58341
|
|
|
58209
58342
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58210
|
-
|
|
58343
|
+
exports.Role = void 0;
|
|
58344
|
+
var Role;
|
|
58345
|
+
(function (Role) {
|
|
58346
|
+
Role["ADMIN"] = "admin";
|
|
58347
|
+
Role["DISPATCHER"] = "dispatcher";
|
|
58348
|
+
Role["DRIVER"] = "driver";
|
|
58349
|
+
})(Role = exports.Role || (exports.Role = {}));
|
|
58350
|
+
//# sourceMappingURL=types.js.map
|
|
58351
|
+
|
|
58352
|
+
/***/ }),
|
|
58353
|
+
/* 453 */
|
|
58354
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
58355
|
+
|
|
58356
|
+
"use strict";
|
|
58357
|
+
|
|
58358
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58359
|
+
var AnalyticsReportsEntity_1 = __webpack_require__(454);
|
|
58211
58360
|
var AnalyticsReportsApi = /** @class */ (function () {
|
|
58212
58361
|
function AnalyticsReportsApi(session) {
|
|
58213
58362
|
this.analyticsReportsEntity = new AnalyticsReportsEntity_1.default(session);
|
|
@@ -58248,7 +58397,7 @@ exports.default = AnalyticsReportsApi;
|
|
|
58248
58397
|
//# sourceMappingURL=AnalyticsReportsApi.js.map
|
|
58249
58398
|
|
|
58250
58399
|
/***/ }),
|
|
58251
|
-
/*
|
|
58400
|
+
/* 454 */
|
|
58252
58401
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58253
58402
|
|
|
58254
58403
|
"use strict";
|
|
@@ -58470,13 +58619,13 @@ exports.default = AnalyticsReportsEntity;
|
|
|
58470
58619
|
//# sourceMappingURL=AnalyticsReportsEntity.js.map
|
|
58471
58620
|
|
|
58472
58621
|
/***/ }),
|
|
58473
|
-
/*
|
|
58622
|
+
/* 455 */
|
|
58474
58623
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58475
58624
|
|
|
58476
58625
|
"use strict";
|
|
58477
58626
|
|
|
58478
58627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58479
|
-
var ServicePlansEntity_1 = __webpack_require__(
|
|
58628
|
+
var ServicePlansEntity_1 = __webpack_require__(456);
|
|
58480
58629
|
var ServicePlansApi = /** @class */ (function () {
|
|
58481
58630
|
function ServicePlansApi(session) {
|
|
58482
58631
|
this.servicePlansEntity = new ServicePlansEntity_1.default(session);
|
|
@@ -58493,7 +58642,7 @@ exports.default = ServicePlansApi;
|
|
|
58493
58642
|
//# sourceMappingURL=ServicePlansApi.js.map
|
|
58494
58643
|
|
|
58495
58644
|
/***/ }),
|
|
58496
|
-
/*
|
|
58645
|
+
/* 456 */
|
|
58497
58646
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58498
58647
|
|
|
58499
58648
|
"use strict";
|
|
@@ -58552,7 +58701,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58552
58701
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58553
58702
|
var Entity_1 = __webpack_require__(5);
|
|
58554
58703
|
var StoreEntity_1 = __webpack_require__(11);
|
|
58555
|
-
var ServicePlans_consts_1 = __webpack_require__(
|
|
58704
|
+
var ServicePlans_consts_1 = __webpack_require__(457);
|
|
58556
58705
|
var ServicePlanSEntity = /** @class */ (function (_super) {
|
|
58557
58706
|
__extends(ServicePlanSEntity, _super);
|
|
58558
58707
|
function ServicePlanSEntity(session) {
|
|
@@ -58582,7 +58731,7 @@ exports.default = ServicePlanSEntity;
|
|
|
58582
58731
|
//# sourceMappingURL=ServicePlansEntity.js.map
|
|
58583
58732
|
|
|
58584
58733
|
/***/ }),
|
|
58585
|
-
/*
|
|
58734
|
+
/* 457 */
|
|
58586
58735
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58587
58736
|
|
|
58588
58737
|
"use strict";
|
|
@@ -58596,7 +58745,7 @@ exports.planningResponseExtractor = planningResponseExtractor;
|
|
|
58596
58745
|
//# sourceMappingURL=ServicePlans.consts.js.map
|
|
58597
58746
|
|
|
58598
58747
|
/***/ }),
|
|
58599
|
-
/*
|
|
58748
|
+
/* 458 */
|
|
58600
58749
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58601
58750
|
|
|
58602
58751
|
"use strict";
|
|
@@ -58605,7 +58754,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58605
58754
|
//# sourceMappingURL=VehicleType.consts.js.map
|
|
58606
58755
|
|
|
58607
58756
|
/***/ }),
|
|
58608
|
-
/*
|
|
58757
|
+
/* 459 */
|
|
58609
58758
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58610
58759
|
|
|
58611
58760
|
"use strict";
|
|
@@ -58614,7 +58763,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58614
58763
|
//# sourceMappingURL=PlannedRoutes.consts.js.map
|
|
58615
58764
|
|
|
58616
58765
|
/***/ }),
|
|
58617
|
-
/*
|
|
58766
|
+
/* 460 */
|
|
58618
58767
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58619
58768
|
|
|
58620
58769
|
"use strict";
|
|
@@ -58623,7 +58772,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58623
58772
|
//# sourceMappingURL=Crew.consts.js.map
|
|
58624
58773
|
|
|
58625
58774
|
/***/ }),
|
|
58626
|
-
/*
|
|
58775
|
+
/* 461 */
|
|
58627
58776
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58628
58777
|
|
|
58629
58778
|
"use strict";
|
|
@@ -58632,7 +58781,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58632
58781
|
//# sourceMappingURL=Responses.js.map
|
|
58633
58782
|
|
|
58634
58783
|
/***/ }),
|
|
58635
|
-
/*
|
|
58784
|
+
/* 462 */
|
|
58636
58785
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58637
58786
|
|
|
58638
58787
|
"use strict";
|
|
@@ -58644,7 +58793,7 @@ exports.defaultExtractor = defaultExtractor;
|
|
|
58644
58793
|
//# sourceMappingURL=Tag.consts.js.map
|
|
58645
58794
|
|
|
58646
58795
|
/***/ }),
|
|
58647
|
-
/*
|
|
58796
|
+
/* 463 */
|
|
58648
58797
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58649
58798
|
|
|
58650
58799
|
"use strict";
|
|
@@ -58653,7 +58802,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58653
58802
|
//# sourceMappingURL=DeliveryBlocks.consts.js.map
|
|
58654
58803
|
|
|
58655
58804
|
/***/ }),
|
|
58656
|
-
/*
|
|
58805
|
+
/* 464 */
|
|
58657
58806
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58658
58807
|
|
|
58659
58808
|
"use strict";
|
|
@@ -58667,7 +58816,7 @@ exports.default = ResourceUploadType;
|
|
|
58667
58816
|
//# sourceMappingURL=ResourceUploadType.js.map
|
|
58668
58817
|
|
|
58669
58818
|
/***/ }),
|
|
58670
|
-
/*
|
|
58819
|
+
/* 465 */
|
|
58671
58820
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
58672
58821
|
|
|
58673
58822
|
"use strict";
|