@bringg/dashboard-sdk 0.4.75 → 0.4.79
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/AlertConfiguration/AlertConfigurationApi.d.ts +16 -0
- package/dist/AlertConfiguration/AlertConfigurationApi.js +36 -0
- package/dist/AlertConfiguration/AlertConfigurationApi.js.map +1 -0
- package/dist/AlertConfiguration/Entity/AlertConfigurationEntity.d.ts +10 -0
- package/dist/AlertConfiguration/Entity/AlertConfigurationEntity.js +32 -0
- package/dist/AlertConfiguration/Entity/AlertConfigurationEntity.js.map +1 -0
- package/dist/AlertConfiguration/Entity/ConfigurationEntity.d.ts +6 -0
- package/dist/AlertConfiguration/Entity/ConfigurationEntity.js +32 -0
- package/dist/AlertConfiguration/Entity/ConfigurationEntity.js.map +1 -0
- package/dist/AlertConfiguration/Entity/SetEntity.d.ts +6 -0
- package/dist/AlertConfiguration/Entity/SetEntity.js +32 -0
- package/dist/AlertConfiguration/Entity/SetEntity.js.map +1 -0
- package/dist/AnalyticsReports/AnalyticsReportsApi.d.ts +3 -0
- package/dist/AnalyticsReports/AnalyticsReportsApi.js +9 -0
- package/dist/AnalyticsReports/AnalyticsReportsApi.js.map +1 -1
- package/dist/AnalyticsReports/Entity/AnalyticsReportsEntity.d.ts +5 -1
- package/dist/AnalyticsReports/Entity/AnalyticsReportsEntity.js +44 -4
- package/dist/AnalyticsReports/Entity/AnalyticsReportsEntity.js.map +1 -1
- package/dist/BringgDashboardSDK.d.ts +2 -0
- package/dist/BringgDashboardSDK.js +2 -0
- package/dist/BringgDashboardSDK.js.map +1 -1
- package/dist/Core/BringgException.d.ts +1 -0
- package/dist/Core/BringgException.js.map +1 -1
- package/dist/Core/CrudService.d.ts +1 -1
- package/dist/Core/CrudService.js +6 -4
- package/dist/Core/CrudService.js.map +1 -1
- package/dist/Core/Entity.js +8 -1
- package/dist/Core/Entity.js.map +1 -1
- package/dist/FleetRouter/FleetRouterApi.js +1 -1
- package/dist/FleetRouter/FleetRouterApi.js.map +1 -1
- package/dist/Services/ServiceRequest.js +1 -1
- package/dist/Services/SessionBasedService.js +1 -0
- package/dist/Services/SessionBasedService.js.map +1 -1
- package/dist/bringg-dashboard-sdk-cjs2.js +933 -623
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +90 -12
- package/dist/bringg-dashboard-sdk.min.js +3 -3
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/dist/stats.json +4124 -3406
- package/package.json +2 -2
|
@@ -813,7 +813,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
813
813
|
exports.BaseRoutes = void 0;
|
|
814
814
|
var BaseService_1 = __webpack_require__(92);
|
|
815
815
|
var CrudService_1 = __webpack_require__(195);
|
|
816
|
-
var lodash_1 = __webpack_require__(
|
|
816
|
+
var lodash_1 = __webpack_require__(11);
|
|
817
817
|
var BaseRoutes;
|
|
818
818
|
(function (BaseRoutes) {
|
|
819
819
|
BaseRoutes["Get"] = "get";
|
|
@@ -823,7 +823,14 @@ var BaseRoutes;
|
|
|
823
823
|
BaseRoutes["Delete"] = "delete";
|
|
824
824
|
BaseRoutes["Patch"] = "patch";
|
|
825
825
|
})(BaseRoutes = exports.BaseRoutes || (exports.BaseRoutes = {}));
|
|
826
|
-
var defaultRoutes = [
|
|
826
|
+
var defaultRoutes = [
|
|
827
|
+
BaseRoutes.Get,
|
|
828
|
+
BaseRoutes.GetAll,
|
|
829
|
+
BaseRoutes.Update,
|
|
830
|
+
BaseRoutes.Create,
|
|
831
|
+
BaseRoutes.Delete,
|
|
832
|
+
BaseRoutes.Patch
|
|
833
|
+
];
|
|
827
834
|
var Entity = /** @class */ (function () {
|
|
828
835
|
function Entity(_a) {
|
|
829
836
|
var _this = this;
|
|
@@ -1195,6 +1202,245 @@ var async = /*@__PURE__*/ new _AsyncScheduler__WEBPACK_IMPORTED_MODULE_1__[/* As
|
|
|
1195
1202
|
/* 10 */
|
|
1196
1203
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1197
1204
|
|
|
1205
|
+
"use strict";
|
|
1206
|
+
|
|
1207
|
+
var __extends = (this && this.__extends) || (function () {
|
|
1208
|
+
var extendStatics = function (d, b) {
|
|
1209
|
+
extendStatics = Object.setPrototypeOf ||
|
|
1210
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
1211
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
1212
|
+
return extendStatics(d, b);
|
|
1213
|
+
};
|
|
1214
|
+
return function (d, b) {
|
|
1215
|
+
if (typeof b !== "function" && b !== null)
|
|
1216
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
1217
|
+
extendStatics(d, b);
|
|
1218
|
+
function __() { this.constructor = d; }
|
|
1219
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
1220
|
+
};
|
|
1221
|
+
})();
|
|
1222
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
1223
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
1224
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
1225
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
1226
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
1227
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
1228
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
1229
|
+
});
|
|
1230
|
+
};
|
|
1231
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
1232
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
1233
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
1234
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
1235
|
+
function step(op) {
|
|
1236
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
1237
|
+
while (_) try {
|
|
1238
|
+
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;
|
|
1239
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
1240
|
+
switch (op[0]) {
|
|
1241
|
+
case 0: case 1: t = op; break;
|
|
1242
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
1243
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
1244
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
1245
|
+
default:
|
|
1246
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
1247
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
1248
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
1249
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
1250
|
+
if (t[2]) _.ops.pop();
|
|
1251
|
+
_.trys.pop(); continue;
|
|
1252
|
+
}
|
|
1253
|
+
op = body.call(thisArg, _);
|
|
1254
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
1255
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
1256
|
+
}
|
|
1257
|
+
};
|
|
1258
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1259
|
+
exports.RealTimeHandler = void 0;
|
|
1260
|
+
var Entity_1 = __webpack_require__(5);
|
|
1261
|
+
var BaseStore_1 = __webpack_require__(48);
|
|
1262
|
+
var PubSubEvents_1 = __webpack_require__(68);
|
|
1263
|
+
var RouteGenerator_1 = __webpack_require__(93);
|
|
1264
|
+
var RealTimeHandler = /** @class */ (function () {
|
|
1265
|
+
function RealTimeHandler(realTimeConnection) {
|
|
1266
|
+
this.realTimeConnection = realTimeConnection;
|
|
1267
|
+
}
|
|
1268
|
+
RealTimeHandler.prototype.on = function (eventName, eventHandler) {
|
|
1269
|
+
this.realTimeConnection.subscribe(new PubSubEvents_1.PubSubEvent(eventName), eventHandler);
|
|
1270
|
+
};
|
|
1271
|
+
RealTimeHandler.prototype.off = function (eventName) {
|
|
1272
|
+
this.realTimeConnection.unsubscribe(new PubSubEvents_1.PubSubEvent(eventName));
|
|
1273
|
+
};
|
|
1274
|
+
return RealTimeHandler;
|
|
1275
|
+
}());
|
|
1276
|
+
exports.RealTimeHandler = RealTimeHandler;
|
|
1277
|
+
var StoreEntity = /** @class */ (function (_super) {
|
|
1278
|
+
__extends(StoreEntity, _super);
|
|
1279
|
+
function StoreEntity(_a) {
|
|
1280
|
+
var session = _a.session, entityName = _a.entityName, routes = _a.routes, routeSuffix = _a.routeSuffix;
|
|
1281
|
+
var _this = _super.call(this, { session: session, entityName: entityName, routes: routes, routeSuffix: routeSuffix }) || this;
|
|
1282
|
+
_this.isAllFetched = false;
|
|
1283
|
+
_this._onUpdate = [];
|
|
1284
|
+
_this._onCreate = [];
|
|
1285
|
+
_this._onDelete = [];
|
|
1286
|
+
_this.addOrUpdateByItem = function (item) {
|
|
1287
|
+
return _this.store.getItem(item.id) ? _this.store.updateInStore(item) : _this.store.addToStore(item);
|
|
1288
|
+
};
|
|
1289
|
+
_this.extract = function (response, extractor) {
|
|
1290
|
+
return extractor ? extractor(response) : RouteGenerator_1.defaultExtractor(response);
|
|
1291
|
+
};
|
|
1292
|
+
/*
|
|
1293
|
+
Realtime Event Handlers
|
|
1294
|
+
*/
|
|
1295
|
+
_this.onCreate = function (entity) {
|
|
1296
|
+
_this._onCreate.forEach(function (fn) { return fn(entity); });
|
|
1297
|
+
};
|
|
1298
|
+
// TODO: create a separate method registerOnBatchCreate with infrastructure
|
|
1299
|
+
// to avoid union T | T[] here
|
|
1300
|
+
_this.registerOnCreate = function (fn) {
|
|
1301
|
+
_this._onCreate.push(fn);
|
|
1302
|
+
return function () { return _this._onCreate.splice(_this._onCreate.indexOf(fn), 1); };
|
|
1303
|
+
};
|
|
1304
|
+
_this.onUpdate = function (entity) {
|
|
1305
|
+
_this._onUpdate.forEach(function (fn) { return fn(entity); });
|
|
1306
|
+
};
|
|
1307
|
+
_this.registerOnUpdate = function (fn) {
|
|
1308
|
+
_this._onUpdate.push(fn);
|
|
1309
|
+
return function () { return _this._onUpdate.splice(_this._onUpdate.indexOf(fn), 1); };
|
|
1310
|
+
};
|
|
1311
|
+
_this.onDelete = function (entity) {
|
|
1312
|
+
_this._onDelete.forEach(function (fn) { return fn(entity); });
|
|
1313
|
+
};
|
|
1314
|
+
_this.registerOnDelete = function (fn) {
|
|
1315
|
+
_this._onDelete.push(fn);
|
|
1316
|
+
return function () { return _this._onDelete.splice(_this._onDelete.indexOf(fn), 1); };
|
|
1317
|
+
};
|
|
1318
|
+
_this.realTime = new RealTimeHandler(session.persistentConnection);
|
|
1319
|
+
_this.store = new BaseStore_1.default();
|
|
1320
|
+
return _this;
|
|
1321
|
+
}
|
|
1322
|
+
StoreEntity.prototype.getOrFetch = function (id, storeExtractor, requestExtractor) {
|
|
1323
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1324
|
+
return __generator(this, function (_a) {
|
|
1325
|
+
return [2 /*return*/, this.store.getItem(id) || this.fetchAndStore(id, storeExtractor, requestExtractor)];
|
|
1326
|
+
});
|
|
1327
|
+
});
|
|
1328
|
+
};
|
|
1329
|
+
StoreEntity.prototype.getAllOrFetch = function (request, storeExtractor, requestExtractor) {
|
|
1330
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1331
|
+
return __generator(this, function (_a) {
|
|
1332
|
+
if (this.isAllFetched) {
|
|
1333
|
+
return [2 /*return*/, this.store.getItems()];
|
|
1334
|
+
}
|
|
1335
|
+
return [2 /*return*/, this.fetchAllAndStore(request, storeExtractor, requestExtractor)];
|
|
1336
|
+
});
|
|
1337
|
+
});
|
|
1338
|
+
};
|
|
1339
|
+
StoreEntity.prototype.create = function (request, storeExtractor, requestExtractor) {
|
|
1340
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1341
|
+
var response;
|
|
1342
|
+
return __generator(this, function (_a) {
|
|
1343
|
+
switch (_a.label) {
|
|
1344
|
+
case 0: return [4 /*yield*/, this.service.create(request)];
|
|
1345
|
+
case 1:
|
|
1346
|
+
response = _a.sent();
|
|
1347
|
+
this.storeItem(response, storeExtractor);
|
|
1348
|
+
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
1349
|
+
}
|
|
1350
|
+
});
|
|
1351
|
+
});
|
|
1352
|
+
};
|
|
1353
|
+
StoreEntity.prototype.bulkCreate = function (request, storeExtractor, requestExtractor) {
|
|
1354
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1355
|
+
var response;
|
|
1356
|
+
return __generator(this, function (_a) {
|
|
1357
|
+
switch (_a.label) {
|
|
1358
|
+
case 0: return [4 /*yield*/, this.service.create(request)];
|
|
1359
|
+
case 1:
|
|
1360
|
+
response = _a.sent();
|
|
1361
|
+
this.storeAllItems(response, storeExtractor);
|
|
1362
|
+
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
1363
|
+
}
|
|
1364
|
+
});
|
|
1365
|
+
});
|
|
1366
|
+
};
|
|
1367
|
+
StoreEntity.prototype.delete = function (id) {
|
|
1368
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1369
|
+
var response;
|
|
1370
|
+
return __generator(this, function (_a) {
|
|
1371
|
+
switch (_a.label) {
|
|
1372
|
+
case 0: return [4 /*yield*/, this.service.delete(id)];
|
|
1373
|
+
case 1:
|
|
1374
|
+
response = _a.sent();
|
|
1375
|
+
this.store.removeFromStore(id);
|
|
1376
|
+
return [2 /*return*/, response.success];
|
|
1377
|
+
}
|
|
1378
|
+
});
|
|
1379
|
+
});
|
|
1380
|
+
};
|
|
1381
|
+
StoreEntity.prototype.update = function (id, request, storeExtractor, requestExtractor) {
|
|
1382
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1383
|
+
var response;
|
|
1384
|
+
return __generator(this, function (_a) {
|
|
1385
|
+
switch (_a.label) {
|
|
1386
|
+
case 0: return [4 /*yield*/, this.service.update(id, request)];
|
|
1387
|
+
case 1:
|
|
1388
|
+
response = _a.sent();
|
|
1389
|
+
this.storeItem(response, storeExtractor);
|
|
1390
|
+
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
1391
|
+
}
|
|
1392
|
+
});
|
|
1393
|
+
});
|
|
1394
|
+
};
|
|
1395
|
+
StoreEntity.prototype.fetchAndStore = function (id, storeExtractor, requestExtractor) {
|
|
1396
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1397
|
+
var response;
|
|
1398
|
+
return __generator(this, function (_a) {
|
|
1399
|
+
switch (_a.label) {
|
|
1400
|
+
case 0: return [4 /*yield*/, this.service.get(id)];
|
|
1401
|
+
case 1:
|
|
1402
|
+
response = _a.sent();
|
|
1403
|
+
this.storeItem(response, storeExtractor);
|
|
1404
|
+
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
1405
|
+
}
|
|
1406
|
+
});
|
|
1407
|
+
});
|
|
1408
|
+
};
|
|
1409
|
+
StoreEntity.prototype.fetchAllAndStore = function (request, storeExtractor, requestExtractor) {
|
|
1410
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1411
|
+
var response;
|
|
1412
|
+
return __generator(this, function (_a) {
|
|
1413
|
+
switch (_a.label) {
|
|
1414
|
+
case 0: return [4 /*yield*/, this.service.getAll(request)];
|
|
1415
|
+
case 1:
|
|
1416
|
+
response = _a.sent();
|
|
1417
|
+
this.storeAllItems(response, storeExtractor);
|
|
1418
|
+
this.isAllFetched = true;
|
|
1419
|
+
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
1420
|
+
}
|
|
1421
|
+
});
|
|
1422
|
+
});
|
|
1423
|
+
};
|
|
1424
|
+
StoreEntity.prototype.storeItem = function (response, storeExtractor) {
|
|
1425
|
+
var storeItem = this.extract(response, storeExtractor);
|
|
1426
|
+
this.addOrUpdateByItem(storeItem);
|
|
1427
|
+
return storeItem;
|
|
1428
|
+
};
|
|
1429
|
+
StoreEntity.prototype.storeAllItems = function (response, storeExtractor) {
|
|
1430
|
+
var _this = this;
|
|
1431
|
+
var storeItems = this.extract(response, storeExtractor);
|
|
1432
|
+
storeItems.forEach(function (item) { return _this.addOrUpdateByItem(item); });
|
|
1433
|
+
return storeItems;
|
|
1434
|
+
};
|
|
1435
|
+
return StoreEntity;
|
|
1436
|
+
}(Entity_1.default));
|
|
1437
|
+
exports.default = StoreEntity;
|
|
1438
|
+
//# sourceMappingURL=StoreEntity.js.map
|
|
1439
|
+
|
|
1440
|
+
/***/ }),
|
|
1441
|
+
/* 11 */
|
|
1442
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1443
|
+
|
|
1198
1444
|
/* WEBPACK VAR INJECTION */(function(global, module) {var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
1199
1445
|
* @license
|
|
1200
1446
|
* Lodash <https://lodash.com/>
|
|
@@ -18400,339 +18646,100 @@ var async = /*@__PURE__*/ new _AsyncScheduler__WEBPACK_IMPORTED_MODULE_1__[/* As
|
|
|
18400
18646
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(103), __webpack_require__(144)(module)))
|
|
18401
18647
|
|
|
18402
18648
|
/***/ }),
|
|
18403
|
-
/*
|
|
18404
|
-
/***/ (function(module,
|
|
18649
|
+
/* 12 */
|
|
18650
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
18405
18651
|
|
|
18406
18652
|
"use strict";
|
|
18653
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return map; });
|
|
18654
|
+
/* unused harmony export MapOperator */
|
|
18655
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
18656
|
+
/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
18657
|
+
/** PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END */
|
|
18407
18658
|
|
|
18408
|
-
|
|
18409
|
-
|
|
18410
|
-
|
|
18411
|
-
|
|
18412
|
-
|
|
18413
|
-
|
|
18659
|
+
|
|
18660
|
+
function map(project, thisArg) {
|
|
18661
|
+
return function mapOperation(source) {
|
|
18662
|
+
if (typeof project !== 'function') {
|
|
18663
|
+
throw new TypeError('argument is not a function. Are you looking for `mapTo()`?');
|
|
18664
|
+
}
|
|
18665
|
+
return source.lift(new MapOperator(project, thisArg));
|
|
18414
18666
|
};
|
|
18415
|
-
|
|
18416
|
-
|
|
18417
|
-
|
|
18418
|
-
|
|
18419
|
-
|
|
18420
|
-
|
|
18667
|
+
}
|
|
18668
|
+
var MapOperator = /*@__PURE__*/ (function () {
|
|
18669
|
+
function MapOperator(project, thisArg) {
|
|
18670
|
+
this.project = project;
|
|
18671
|
+
this.thisArg = thisArg;
|
|
18672
|
+
}
|
|
18673
|
+
MapOperator.prototype.call = function (subscriber, source) {
|
|
18674
|
+
return source.subscribe(new MapSubscriber(subscriber, this.project, this.thisArg));
|
|
18421
18675
|
};
|
|
18422
|
-
|
|
18423
|
-
|
|
18424
|
-
|
|
18425
|
-
|
|
18426
|
-
|
|
18427
|
-
|
|
18428
|
-
|
|
18429
|
-
|
|
18430
|
-
|
|
18431
|
-
|
|
18432
|
-
|
|
18433
|
-
|
|
18434
|
-
|
|
18435
|
-
|
|
18436
|
-
|
|
18437
|
-
|
|
18438
|
-
|
|
18439
|
-
|
|
18440
|
-
|
|
18441
|
-
|
|
18442
|
-
|
|
18443
|
-
|
|
18444
|
-
|
|
18445
|
-
|
|
18446
|
-
|
|
18447
|
-
|
|
18448
|
-
|
|
18449
|
-
|
|
18450
|
-
|
|
18451
|
-
|
|
18452
|
-
|
|
18453
|
-
|
|
18454
|
-
|
|
18455
|
-
|
|
18456
|
-
|
|
18457
|
-
|
|
18458
|
-
|
|
18459
|
-
|
|
18460
|
-
|
|
18461
|
-
|
|
18462
|
-
|
|
18463
|
-
|
|
18464
|
-
|
|
18465
|
-
|
|
18466
|
-
|
|
18467
|
-
|
|
18468
|
-
|
|
18469
|
-
|
|
18470
|
-
|
|
18471
|
-
|
|
18472
|
-
|
|
18473
|
-
|
|
18474
|
-
|
|
18475
|
-
return
|
|
18476
|
-
}
|
|
18477
|
-
|
|
18478
|
-
|
|
18479
|
-
|
|
18480
|
-
|
|
18481
|
-
|
|
18482
|
-
|
|
18483
|
-
|
|
18484
|
-
|
|
18485
|
-
|
|
18486
|
-
|
|
18487
|
-
|
|
18488
|
-
|
|
18489
|
-
};
|
|
18490
|
-
_this.extract = function (response, extractor) {
|
|
18491
|
-
return extractor ? extractor(response) : RouteGenerator_1.defaultExtractor(response);
|
|
18492
|
-
};
|
|
18493
|
-
/*
|
|
18494
|
-
Realtime Event Handlers
|
|
18495
|
-
*/
|
|
18496
|
-
_this.onCreate = function (entity) {
|
|
18497
|
-
_this._onCreate.forEach(function (fn) { return fn(entity); });
|
|
18498
|
-
};
|
|
18499
|
-
// TODO: create a separate method registerOnBatchCreate with infrastructure
|
|
18500
|
-
// to avoid union T | T[] here
|
|
18501
|
-
_this.registerOnCreate = function (fn) {
|
|
18502
|
-
_this._onCreate.push(fn);
|
|
18503
|
-
return function () { return _this._onCreate.splice(_this._onCreate.indexOf(fn), 1); };
|
|
18504
|
-
};
|
|
18505
|
-
_this.onUpdate = function (entity) {
|
|
18506
|
-
_this._onUpdate.forEach(function (fn) { return fn(entity); });
|
|
18507
|
-
};
|
|
18508
|
-
_this.registerOnUpdate = function (fn) {
|
|
18509
|
-
_this._onUpdate.push(fn);
|
|
18510
|
-
return function () { return _this._onUpdate.splice(_this._onUpdate.indexOf(fn), 1); };
|
|
18511
|
-
};
|
|
18512
|
-
_this.onDelete = function (entity) {
|
|
18513
|
-
_this._onDelete.forEach(function (fn) { return fn(entity); });
|
|
18514
|
-
};
|
|
18515
|
-
_this.registerOnDelete = function (fn) {
|
|
18516
|
-
_this._onDelete.push(fn);
|
|
18517
|
-
return function () { return _this._onDelete.splice(_this._onDelete.indexOf(fn), 1); };
|
|
18518
|
-
};
|
|
18519
|
-
_this.realTime = new RealTimeHandler(session.persistentConnection);
|
|
18520
|
-
_this.store = new BaseStore_1.default();
|
|
18521
|
-
return _this;
|
|
18522
|
-
}
|
|
18523
|
-
StoreEntity.prototype.getOrFetch = function (id, storeExtractor, requestExtractor) {
|
|
18524
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18525
|
-
return __generator(this, function (_a) {
|
|
18526
|
-
return [2 /*return*/, this.store.getItem(id) || this.fetchAndStore(id, storeExtractor, requestExtractor)];
|
|
18527
|
-
});
|
|
18528
|
-
});
|
|
18529
|
-
};
|
|
18530
|
-
StoreEntity.prototype.getAllOrFetch = function (request, storeExtractor, requestExtractor) {
|
|
18531
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18532
|
-
return __generator(this, function (_a) {
|
|
18533
|
-
if (this.isAllFetched) {
|
|
18534
|
-
return [2 /*return*/, this.store.getItems()];
|
|
18535
|
-
}
|
|
18536
|
-
return [2 /*return*/, this.fetchAllAndStore(request, storeExtractor, requestExtractor)];
|
|
18537
|
-
});
|
|
18538
|
-
});
|
|
18539
|
-
};
|
|
18540
|
-
StoreEntity.prototype.create = function (request, storeExtractor, requestExtractor) {
|
|
18541
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18542
|
-
var response;
|
|
18543
|
-
return __generator(this, function (_a) {
|
|
18544
|
-
switch (_a.label) {
|
|
18545
|
-
case 0: return [4 /*yield*/, this.service.create(request)];
|
|
18546
|
-
case 1:
|
|
18547
|
-
response = _a.sent();
|
|
18548
|
-
this.storeItem(response, storeExtractor);
|
|
18549
|
-
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
18550
|
-
}
|
|
18551
|
-
});
|
|
18552
|
-
});
|
|
18553
|
-
};
|
|
18554
|
-
StoreEntity.prototype.bulkCreate = function (request, storeExtractor, requestExtractor) {
|
|
18555
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18556
|
-
var response;
|
|
18557
|
-
return __generator(this, function (_a) {
|
|
18558
|
-
switch (_a.label) {
|
|
18559
|
-
case 0: return [4 /*yield*/, this.service.create(request)];
|
|
18560
|
-
case 1:
|
|
18561
|
-
response = _a.sent();
|
|
18562
|
-
this.storeAllItems(response, storeExtractor);
|
|
18563
|
-
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
18564
|
-
}
|
|
18565
|
-
});
|
|
18566
|
-
});
|
|
18567
|
-
};
|
|
18568
|
-
StoreEntity.prototype.delete = function (id) {
|
|
18569
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18570
|
-
var response;
|
|
18571
|
-
return __generator(this, function (_a) {
|
|
18572
|
-
switch (_a.label) {
|
|
18573
|
-
case 0: return [4 /*yield*/, this.service.delete(id)];
|
|
18574
|
-
case 1:
|
|
18575
|
-
response = _a.sent();
|
|
18576
|
-
this.store.removeFromStore(id);
|
|
18577
|
-
return [2 /*return*/, response.success];
|
|
18578
|
-
}
|
|
18579
|
-
});
|
|
18580
|
-
});
|
|
18581
|
-
};
|
|
18582
|
-
StoreEntity.prototype.update = function (id, request, storeExtractor, requestExtractor) {
|
|
18583
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18584
|
-
var response;
|
|
18585
|
-
return __generator(this, function (_a) {
|
|
18586
|
-
switch (_a.label) {
|
|
18587
|
-
case 0: return [4 /*yield*/, this.service.update(id, request)];
|
|
18588
|
-
case 1:
|
|
18589
|
-
response = _a.sent();
|
|
18590
|
-
this.storeItem(response, storeExtractor);
|
|
18591
|
-
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
18592
|
-
}
|
|
18593
|
-
});
|
|
18594
|
-
});
|
|
18595
|
-
};
|
|
18596
|
-
StoreEntity.prototype.fetchAndStore = function (id, storeExtractor, requestExtractor) {
|
|
18597
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18598
|
-
var response;
|
|
18599
|
-
return __generator(this, function (_a) {
|
|
18600
|
-
switch (_a.label) {
|
|
18601
|
-
case 0: return [4 /*yield*/, this.service.get(id)];
|
|
18602
|
-
case 1:
|
|
18603
|
-
response = _a.sent();
|
|
18604
|
-
this.storeItem(response, storeExtractor);
|
|
18605
|
-
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
18606
|
-
}
|
|
18607
|
-
});
|
|
18608
|
-
});
|
|
18609
|
-
};
|
|
18610
|
-
StoreEntity.prototype.fetchAllAndStore = function (request, storeExtractor, requestExtractor) {
|
|
18611
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18612
|
-
var response;
|
|
18613
|
-
return __generator(this, function (_a) {
|
|
18614
|
-
switch (_a.label) {
|
|
18615
|
-
case 0: return [4 /*yield*/, this.service.getAll(request)];
|
|
18616
|
-
case 1:
|
|
18617
|
-
response = _a.sent();
|
|
18618
|
-
this.storeAllItems(response, storeExtractor);
|
|
18619
|
-
this.isAllFetched = true;
|
|
18620
|
-
return [2 /*return*/, requestExtractor ? requestExtractor(response) : response];
|
|
18621
|
-
}
|
|
18622
|
-
});
|
|
18623
|
-
});
|
|
18624
|
-
};
|
|
18625
|
-
StoreEntity.prototype.storeItem = function (response, storeExtractor) {
|
|
18626
|
-
var storeItem = this.extract(response, storeExtractor);
|
|
18627
|
-
this.addOrUpdateByItem(storeItem);
|
|
18628
|
-
return storeItem;
|
|
18629
|
-
};
|
|
18630
|
-
StoreEntity.prototype.storeAllItems = function (response, storeExtractor) {
|
|
18631
|
-
var _this = this;
|
|
18632
|
-
var storeItems = this.extract(response, storeExtractor);
|
|
18633
|
-
storeItems.forEach(function (item) { return _this.addOrUpdateByItem(item); });
|
|
18634
|
-
return storeItems;
|
|
18635
|
-
};
|
|
18636
|
-
return StoreEntity;
|
|
18637
|
-
}(Entity_1.default));
|
|
18638
|
-
exports.default = StoreEntity;
|
|
18639
|
-
//# sourceMappingURL=StoreEntity.js.map
|
|
18640
|
-
|
|
18641
|
-
/***/ }),
|
|
18642
|
-
/* 12 */
|
|
18643
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
18644
|
-
|
|
18645
|
-
"use strict";
|
|
18646
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return map; });
|
|
18647
|
-
/* unused harmony export MapOperator */
|
|
18648
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
18649
|
-
/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
18650
|
-
/** PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END */
|
|
18651
|
-
|
|
18652
|
-
|
|
18653
|
-
function map(project, thisArg) {
|
|
18654
|
-
return function mapOperation(source) {
|
|
18655
|
-
if (typeof project !== 'function') {
|
|
18656
|
-
throw new TypeError('argument is not a function. Are you looking for `mapTo()`?');
|
|
18657
|
-
}
|
|
18658
|
-
return source.lift(new MapOperator(project, thisArg));
|
|
18659
|
-
};
|
|
18660
|
-
}
|
|
18661
|
-
var MapOperator = /*@__PURE__*/ (function () {
|
|
18662
|
-
function MapOperator(project, thisArg) {
|
|
18663
|
-
this.project = project;
|
|
18664
|
-
this.thisArg = thisArg;
|
|
18665
|
-
}
|
|
18666
|
-
MapOperator.prototype.call = function (subscriber, source) {
|
|
18667
|
-
return source.subscribe(new MapSubscriber(subscriber, this.project, this.thisArg));
|
|
18668
|
-
};
|
|
18669
|
-
return MapOperator;
|
|
18670
|
-
}());
|
|
18671
|
-
|
|
18672
|
-
var MapSubscriber = /*@__PURE__*/ (function (_super) {
|
|
18673
|
-
tslib__WEBPACK_IMPORTED_MODULE_0__[/* __extends */ "a"](MapSubscriber, _super);
|
|
18674
|
-
function MapSubscriber(destination, project, thisArg) {
|
|
18675
|
-
var _this = _super.call(this, destination) || this;
|
|
18676
|
-
_this.project = project;
|
|
18677
|
-
_this.count = 0;
|
|
18678
|
-
_this.thisArg = thisArg || _this;
|
|
18679
|
-
return _this;
|
|
18680
|
-
}
|
|
18681
|
-
MapSubscriber.prototype._next = function (value) {
|
|
18682
|
-
var result;
|
|
18683
|
-
try {
|
|
18684
|
-
result = this.project.call(this.thisArg, value, this.count++);
|
|
18685
|
-
}
|
|
18686
|
-
catch (err) {
|
|
18687
|
-
this.destination.error(err);
|
|
18688
|
-
return;
|
|
18689
|
-
}
|
|
18690
|
-
this.destination.next(result);
|
|
18691
|
-
};
|
|
18692
|
-
return MapSubscriber;
|
|
18693
|
-
}(_Subscriber__WEBPACK_IMPORTED_MODULE_1__[/* Subscriber */ "a"]));
|
|
18694
|
-
//# sourceMappingURL=map.js.map
|
|
18695
|
-
|
|
18696
|
-
|
|
18697
|
-
/***/ }),
|
|
18698
|
-
/* 13 */
|
|
18699
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
18700
|
-
|
|
18701
|
-
"use strict";
|
|
18702
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return isScheduler; });
|
|
18703
|
-
/** PURE_IMPORTS_START PURE_IMPORTS_END */
|
|
18704
|
-
function isScheduler(value) {
|
|
18705
|
-
return value && typeof value.schedule === 'function';
|
|
18706
|
-
}
|
|
18707
|
-
//# sourceMappingURL=isScheduler.js.map
|
|
18708
|
-
|
|
18709
|
-
|
|
18710
|
-
/***/ }),
|
|
18711
|
-
/* 14 */
|
|
18712
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
18713
|
-
|
|
18714
|
-
"use strict";
|
|
18715
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return EMPTY; });
|
|
18716
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return empty; });
|
|
18717
|
-
/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
18718
|
-
/** PURE_IMPORTS_START _Observable PURE_IMPORTS_END */
|
|
18719
|
-
|
|
18720
|
-
var EMPTY = /*@__PURE__*/ new _Observable__WEBPACK_IMPORTED_MODULE_0__[/* Observable */ "a"](function (subscriber) { return subscriber.complete(); });
|
|
18721
|
-
function empty(scheduler) {
|
|
18722
|
-
return scheduler ? emptyScheduled(scheduler) : EMPTY;
|
|
18723
|
-
}
|
|
18724
|
-
function emptyScheduled(scheduler) {
|
|
18725
|
-
return new _Observable__WEBPACK_IMPORTED_MODULE_0__[/* Observable */ "a"](function (subscriber) { return scheduler.schedule(function () { return subscriber.complete(); }); });
|
|
18726
|
-
}
|
|
18727
|
-
//# sourceMappingURL=empty.js.map
|
|
18728
|
-
|
|
18729
|
-
|
|
18730
|
-
/***/ }),
|
|
18731
|
-
/* 15 */
|
|
18732
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
18733
|
-
|
|
18734
|
-
"use strict";
|
|
18735
|
-
|
|
18676
|
+
return MapOperator;
|
|
18677
|
+
}());
|
|
18678
|
+
|
|
18679
|
+
var MapSubscriber = /*@__PURE__*/ (function (_super) {
|
|
18680
|
+
tslib__WEBPACK_IMPORTED_MODULE_0__[/* __extends */ "a"](MapSubscriber, _super);
|
|
18681
|
+
function MapSubscriber(destination, project, thisArg) {
|
|
18682
|
+
var _this = _super.call(this, destination) || this;
|
|
18683
|
+
_this.project = project;
|
|
18684
|
+
_this.count = 0;
|
|
18685
|
+
_this.thisArg = thisArg || _this;
|
|
18686
|
+
return _this;
|
|
18687
|
+
}
|
|
18688
|
+
MapSubscriber.prototype._next = function (value) {
|
|
18689
|
+
var result;
|
|
18690
|
+
try {
|
|
18691
|
+
result = this.project.call(this.thisArg, value, this.count++);
|
|
18692
|
+
}
|
|
18693
|
+
catch (err) {
|
|
18694
|
+
this.destination.error(err);
|
|
18695
|
+
return;
|
|
18696
|
+
}
|
|
18697
|
+
this.destination.next(result);
|
|
18698
|
+
};
|
|
18699
|
+
return MapSubscriber;
|
|
18700
|
+
}(_Subscriber__WEBPACK_IMPORTED_MODULE_1__[/* Subscriber */ "a"]));
|
|
18701
|
+
//# sourceMappingURL=map.js.map
|
|
18702
|
+
|
|
18703
|
+
|
|
18704
|
+
/***/ }),
|
|
18705
|
+
/* 13 */
|
|
18706
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
18707
|
+
|
|
18708
|
+
"use strict";
|
|
18709
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return isScheduler; });
|
|
18710
|
+
/** PURE_IMPORTS_START PURE_IMPORTS_END */
|
|
18711
|
+
function isScheduler(value) {
|
|
18712
|
+
return value && typeof value.schedule === 'function';
|
|
18713
|
+
}
|
|
18714
|
+
//# sourceMappingURL=isScheduler.js.map
|
|
18715
|
+
|
|
18716
|
+
|
|
18717
|
+
/***/ }),
|
|
18718
|
+
/* 14 */
|
|
18719
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
18720
|
+
|
|
18721
|
+
"use strict";
|
|
18722
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return EMPTY; });
|
|
18723
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return empty; });
|
|
18724
|
+
/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
18725
|
+
/** PURE_IMPORTS_START _Observable PURE_IMPORTS_END */
|
|
18726
|
+
|
|
18727
|
+
var EMPTY = /*@__PURE__*/ new _Observable__WEBPACK_IMPORTED_MODULE_0__[/* Observable */ "a"](function (subscriber) { return subscriber.complete(); });
|
|
18728
|
+
function empty(scheduler) {
|
|
18729
|
+
return scheduler ? emptyScheduled(scheduler) : EMPTY;
|
|
18730
|
+
}
|
|
18731
|
+
function emptyScheduled(scheduler) {
|
|
18732
|
+
return new _Observable__WEBPACK_IMPORTED_MODULE_0__[/* Observable */ "a"](function (subscriber) { return scheduler.schedule(function () { return subscriber.complete(); }); });
|
|
18733
|
+
}
|
|
18734
|
+
//# sourceMappingURL=empty.js.map
|
|
18735
|
+
|
|
18736
|
+
|
|
18737
|
+
/***/ }),
|
|
18738
|
+
/* 15 */
|
|
18739
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
18740
|
+
|
|
18741
|
+
"use strict";
|
|
18742
|
+
|
|
18736
18743
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18737
18744
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
18738
18745
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -18771,7 +18778,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
18771
18778
|
};
|
|
18772
18779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18773
18780
|
exports.BringgException = exports.logOnException = void 0;
|
|
18774
|
-
var _ = __webpack_require__(
|
|
18781
|
+
var _ = __webpack_require__(11);
|
|
18775
18782
|
var Logger_1 = __webpack_require__(39);
|
|
18776
18783
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
18777
18784
|
var logOnException = function (target, propertyKey, descriptor) {
|
|
@@ -18975,7 +18982,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18975
18982
|
exports.Route = void 0;
|
|
18976
18983
|
var BringgException_1 = __webpack_require__(15);
|
|
18977
18984
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
18978
|
-
var lodash_1 = __webpack_require__(
|
|
18985
|
+
var lodash_1 = __webpack_require__(11);
|
|
18979
18986
|
var Route = /** @class */ (function () {
|
|
18980
18987
|
function Route(uri, httpMethod) {
|
|
18981
18988
|
if (uri.charAt(0) != '/')
|
|
@@ -19574,7 +19581,7 @@ exports.SessionBasedService = exports.HTTP_EVENTS = void 0;
|
|
|
19574
19581
|
var ServiceRequest_1 = __webpack_require__(87);
|
|
19575
19582
|
var Enums_1 = __webpack_require__(65);
|
|
19576
19583
|
var BringgException_1 = __webpack_require__(15);
|
|
19577
|
-
var lodash_1 = __webpack_require__(
|
|
19584
|
+
var lodash_1 = __webpack_require__(11);
|
|
19578
19585
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
19579
19586
|
exports.HTTP_EVENTS = {
|
|
19580
19587
|
HTTP_REQUEST_FAILURE: 'http failure'
|
|
@@ -19645,6 +19652,7 @@ var SessionBasedService = /** @class */ (function () {
|
|
|
19645
19652
|
if (responseAsDefault.success === false) {
|
|
19646
19653
|
bringgException = exceptionProducer();
|
|
19647
19654
|
bringgException.details = responseAsDefault.message;
|
|
19655
|
+
bringgException.rc = responseAsDefault.rc;
|
|
19648
19656
|
throw bringgException;
|
|
19649
19657
|
}
|
|
19650
19658
|
return [2 /*return*/, extractor(response)];
|
|
@@ -20923,7 +20931,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
20923
20931
|
exports.THROTTLE_TIME = exports.ActionToFunction = exports.Actions = void 0;
|
|
20924
20932
|
var operators_1 = __webpack_require__(63);
|
|
20925
20933
|
var Subject_1 = __webpack_require__(196);
|
|
20926
|
-
var lodash_1 = __webpack_require__(
|
|
20934
|
+
var lodash_1 = __webpack_require__(11);
|
|
20927
20935
|
var Logger_1 = __webpack_require__(39);
|
|
20928
20936
|
var Actions;
|
|
20929
20937
|
(function (Actions) {
|
|
@@ -22025,33 +22033,34 @@ var FleetApi_1 = __webpack_require__(300);
|
|
|
22025
22033
|
var RuleApi_1 = __webpack_require__(302);
|
|
22026
22034
|
var PushTokenSubscriptionApi_1 = __webpack_require__(304);
|
|
22027
22035
|
var TaskApi_1 = __webpack_require__(306);
|
|
22028
|
-
var ApplicationMerchantConfigurationApi_1 = __webpack_require__(
|
|
22029
|
-
var ApplicationTeamConfigurationApi_1 = __webpack_require__(
|
|
22030
|
-
var GoogleMapsHelperApi_1 = __webpack_require__(
|
|
22031
|
-
var OnboardingApi_1 = __webpack_require__(
|
|
22032
|
-
var FleetRouterApi_1 = __webpack_require__(
|
|
22036
|
+
var ApplicationMerchantConfigurationApi_1 = __webpack_require__(407);
|
|
22037
|
+
var ApplicationTeamConfigurationApi_1 = __webpack_require__(409);
|
|
22038
|
+
var GoogleMapsHelperApi_1 = __webpack_require__(411);
|
|
22039
|
+
var OnboardingApi_1 = __webpack_require__(413);
|
|
22040
|
+
var FleetRouterApi_1 = __webpack_require__(415);
|
|
22041
|
+
var AlertConfigurationApi_1 = __webpack_require__(417);
|
|
22033
22042
|
var AuthService_1 = __webpack_require__(104);
|
|
22034
|
-
var ServiceApi_1 = __webpack_require__(
|
|
22035
|
-
var FleetTemplateApi_1 = __webpack_require__(
|
|
22036
|
-
var OpenFleetApi_1 = __webpack_require__(
|
|
22037
|
-
var GeocodingApi_1 = __webpack_require__(
|
|
22038
|
-
var ApplicationApi_1 = __webpack_require__(
|
|
22039
|
-
var CustomerAvailabilityHourApi_1 = __webpack_require__(
|
|
22040
|
-
var ShiftsApi_1 = __webpack_require__(
|
|
22041
|
-
var ExclusionWindowApi_1 = __webpack_require__(
|
|
22042
|
-
var Country_1 = __webpack_require__(
|
|
22043
|
-
var OauthApplicationApi_1 = __webpack_require__(
|
|
22044
|
-
var Inventory_1 = __webpack_require__(
|
|
22045
|
-
var PushNotificationRegistration_1 = __webpack_require__(
|
|
22046
|
-
var ReasonToCancelTasksApi_1 = __webpack_require__(
|
|
22047
|
-
var CustomFilterApi_1 = __webpack_require__(
|
|
22048
|
-
var FloatingInventoryApi_1 = __webpack_require__(
|
|
22049
|
-
var ServiceAreaApi_1 = __webpack_require__(
|
|
22050
|
-
var BillingApi_1 = __webpack_require__(
|
|
22051
|
-
var UserAnalyticsApi_1 = __webpack_require__(
|
|
22052
|
-
var AnalyticsReportsApi_1 = __webpack_require__(
|
|
22053
|
-
var ServicePlansApi_1 = __webpack_require__(
|
|
22054
|
-
var AlertsApi_1 = __webpack_require__(
|
|
22043
|
+
var ServiceApi_1 = __webpack_require__(421);
|
|
22044
|
+
var FleetTemplateApi_1 = __webpack_require__(423);
|
|
22045
|
+
var OpenFleetApi_1 = __webpack_require__(425);
|
|
22046
|
+
var GeocodingApi_1 = __webpack_require__(427);
|
|
22047
|
+
var ApplicationApi_1 = __webpack_require__(429);
|
|
22048
|
+
var CustomerAvailabilityHourApi_1 = __webpack_require__(431);
|
|
22049
|
+
var ShiftsApi_1 = __webpack_require__(433);
|
|
22050
|
+
var ExclusionWindowApi_1 = __webpack_require__(435);
|
|
22051
|
+
var Country_1 = __webpack_require__(437);
|
|
22052
|
+
var OauthApplicationApi_1 = __webpack_require__(438);
|
|
22053
|
+
var Inventory_1 = __webpack_require__(440);
|
|
22054
|
+
var PushNotificationRegistration_1 = __webpack_require__(442);
|
|
22055
|
+
var ReasonToCancelTasksApi_1 = __webpack_require__(444);
|
|
22056
|
+
var CustomFilterApi_1 = __webpack_require__(446);
|
|
22057
|
+
var FloatingInventoryApi_1 = __webpack_require__(448);
|
|
22058
|
+
var ServiceAreaApi_1 = __webpack_require__(451);
|
|
22059
|
+
var BillingApi_1 = __webpack_require__(453);
|
|
22060
|
+
var UserAnalyticsApi_1 = __webpack_require__(455);
|
|
22061
|
+
var AnalyticsReportsApi_1 = __webpack_require__(460);
|
|
22062
|
+
var ServicePlansApi_1 = __webpack_require__(462);
|
|
22063
|
+
var AlertsApi_1 = __webpack_require__(465);
|
|
22055
22064
|
var BringgDashboardSDK = /** @class */ (function () {
|
|
22056
22065
|
function BringgDashboardSDK(session) {
|
|
22057
22066
|
this.applicationMerchantConfiguration = null;
|
|
@@ -22115,6 +22124,7 @@ var BringgDashboardSDK = /** @class */ (function () {
|
|
|
22115
22124
|
bringg.fleets = new FleetApi_1.default(session);
|
|
22116
22125
|
bringg.rules = new RuleApi_1.default(session);
|
|
22117
22126
|
bringg.fleetRouterApi = new FleetRouterApi_1.default(session);
|
|
22127
|
+
bringg.alertConfiguration = new AlertConfigurationApi_1.default(session);
|
|
22118
22128
|
bringg.floatingInventory = new FloatingInventoryApi_1.default(session);
|
|
22119
22129
|
bringg.geocoding = new GeocodingApi_1.default(session);
|
|
22120
22130
|
bringg.googleMapsHelper = new GoogleMapsHelperApi_1.default(session);
|
|
@@ -30028,9 +30038,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
30028
30038
|
exports.AnonymousServiceRequest = exports.AuthorizedServiceRequest = exports.ResponseHandler = exports.RequestOptions = exports.logErrorResponse = void 0;
|
|
30029
30039
|
var axios_1 = __webpack_require__(146);
|
|
30030
30040
|
var Logger_1 = __webpack_require__(39);
|
|
30031
|
-
var lodash_1 = __webpack_require__(
|
|
30041
|
+
var lodash_1 = __webpack_require__(11);
|
|
30032
30042
|
var BringgException_1 = __webpack_require__(15);
|
|
30033
|
-
var version = '0.4.
|
|
30043
|
+
var version = '0.4.79';
|
|
30034
30044
|
function logErrorResponse(response) {
|
|
30035
30045
|
var data = response.data, status = response.status;
|
|
30036
30046
|
try {
|
|
@@ -31649,8 +31659,7 @@ __exportStar(__webpack_require__(358), exports);
|
|
|
31649
31659
|
__exportStar(__webpack_require__(359), exports);
|
|
31650
31660
|
__exportStar(__webpack_require__(360), exports);
|
|
31651
31661
|
__exportStar(__webpack_require__(361), exports);
|
|
31652
|
-
__exportStar(__webpack_require__(
|
|
31653
|
-
__exportStar(__webpack_require__(365), exports);
|
|
31662
|
+
__exportStar(__webpack_require__(362), exports);
|
|
31654
31663
|
__exportStar(__webpack_require__(366), exports);
|
|
31655
31664
|
__exportStar(__webpack_require__(367), exports);
|
|
31656
31665
|
__exportStar(__webpack_require__(368), exports);
|
|
@@ -31689,6 +31698,8 @@ __exportStar(__webpack_require__(400), exports);
|
|
|
31689
31698
|
__exportStar(__webpack_require__(401), exports);
|
|
31690
31699
|
__exportStar(__webpack_require__(402), exports);
|
|
31691
31700
|
__exportStar(__webpack_require__(403), exports);
|
|
31701
|
+
__exportStar(__webpack_require__(404), exports);
|
|
31702
|
+
__exportStar(__webpack_require__(405), exports);
|
|
31692
31703
|
//# sourceMappingURL=index.js.map
|
|
31693
31704
|
|
|
31694
31705
|
/***/ }),
|
|
@@ -31699,7 +31710,7 @@ __exportStar(__webpack_require__(403), exports);
|
|
|
31699
31710
|
|
|
31700
31711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31701
31712
|
exports.TaskHelpers = void 0;
|
|
31702
|
-
var lodash_1 = __webpack_require__(
|
|
31713
|
+
var lodash_1 = __webpack_require__(11);
|
|
31703
31714
|
var types_1 = __webpack_require__(101);
|
|
31704
31715
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
31705
31716
|
var TaskHelpers = /** @class */ (function () {
|
|
@@ -31818,7 +31829,7 @@ var Route_1 = __webpack_require__(20);
|
|
|
31818
31829
|
var BringgException_1 = __webpack_require__(15);
|
|
31819
31830
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
31820
31831
|
var sha1 = __webpack_require__(165);
|
|
31821
|
-
var lodash_1 = __webpack_require__(
|
|
31832
|
+
var lodash_1 = __webpack_require__(11);
|
|
31822
31833
|
var BringgDashboardSDK_1 = __webpack_require__(61);
|
|
31823
31834
|
exports.CREATE_TOKEN_ROUTE = new Route_1.Route('/tokens', 1 /* POST */);
|
|
31824
31835
|
exports.GET_USER_ROUTE = new Route_1.Route('/tokens', 0 /* GET */);
|
|
@@ -36582,12 +36593,12 @@ exports.getCsvFieldsExtractor = getCsvFieldsExtractor;
|
|
|
36582
36593
|
|
|
36583
36594
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36584
36595
|
exports.ResourceUploadType = exports.DeliveryBlockConsts = exports.TagConsts = exports.Responses = exports.ChatConversationConsts = exports.ChatMessageConsts = exports.CrewConsts = exports.DashboardConsts = exports.LanguageConsts = exports.NotificationTemplateConsts = exports.NotificationTypesConsts = exports.PlannedRoutesConsts = exports.ReasonToChangeInventory = exports.RunConsts = exports.TaskInventoryConsts = exports.VehicleTypeConsts = exports.BringgDashboardSDK = void 0;
|
|
36585
|
-
var lodash_1 = __webpack_require__(
|
|
36596
|
+
var lodash_1 = __webpack_require__(11);
|
|
36586
36597
|
var Logger_1 = __webpack_require__(39);
|
|
36587
36598
|
//export types
|
|
36588
36599
|
var BringgDashboardSDK_1 = __webpack_require__(61);
|
|
36589
36600
|
Object.defineProperty(exports, "BringgDashboardSDK", { enumerable: true, get: function () { return BringgDashboardSDK_1.BringgDashboardSDK; } });
|
|
36590
|
-
var VehicleTypeConsts = __webpack_require__(
|
|
36601
|
+
var VehicleTypeConsts = __webpack_require__(468);
|
|
36591
36602
|
exports.VehicleTypeConsts = VehicleTypeConsts;
|
|
36592
36603
|
var TaskInventoryConsts = __webpack_require__(136);
|
|
36593
36604
|
exports.TaskInventoryConsts = TaskInventoryConsts;
|
|
@@ -36595,7 +36606,7 @@ var RunConsts = __webpack_require__(133);
|
|
|
36595
36606
|
exports.RunConsts = RunConsts;
|
|
36596
36607
|
var ReasonToChangeInventory = __webpack_require__(135);
|
|
36597
36608
|
exports.ReasonToChangeInventory = ReasonToChangeInventory;
|
|
36598
|
-
var PlannedRoutesConsts = __webpack_require__(
|
|
36609
|
+
var PlannedRoutesConsts = __webpack_require__(469);
|
|
36599
36610
|
exports.PlannedRoutesConsts = PlannedRoutesConsts;
|
|
36600
36611
|
var NotificationTypesConsts = __webpack_require__(140);
|
|
36601
36612
|
exports.NotificationTypesConsts = NotificationTypesConsts;
|
|
@@ -36605,19 +36616,19 @@ var LanguageConsts = __webpack_require__(139);
|
|
|
36605
36616
|
exports.LanguageConsts = LanguageConsts;
|
|
36606
36617
|
var DashboardConsts = __webpack_require__(134);
|
|
36607
36618
|
exports.DashboardConsts = DashboardConsts;
|
|
36608
|
-
var CrewConsts = __webpack_require__(
|
|
36619
|
+
var CrewConsts = __webpack_require__(470);
|
|
36609
36620
|
exports.CrewConsts = CrewConsts;
|
|
36610
36621
|
var ChatMessageConsts = __webpack_require__(138);
|
|
36611
36622
|
exports.ChatMessageConsts = ChatMessageConsts;
|
|
36612
36623
|
var ChatConversationConsts = __webpack_require__(137);
|
|
36613
36624
|
exports.ChatConversationConsts = ChatConversationConsts;
|
|
36614
|
-
var Responses = __webpack_require__(
|
|
36625
|
+
var Responses = __webpack_require__(471);
|
|
36615
36626
|
exports.Responses = Responses;
|
|
36616
|
-
var TagConsts = __webpack_require__(
|
|
36627
|
+
var TagConsts = __webpack_require__(472);
|
|
36617
36628
|
exports.TagConsts = TagConsts;
|
|
36618
|
-
var DeliveryBlockConsts = __webpack_require__(
|
|
36629
|
+
var DeliveryBlockConsts = __webpack_require__(473);
|
|
36619
36630
|
exports.DeliveryBlockConsts = DeliveryBlockConsts;
|
|
36620
|
-
var ResourceUploadType_1 = __webpack_require__(
|
|
36631
|
+
var ResourceUploadType_1 = __webpack_require__(474);
|
|
36621
36632
|
exports.ResourceUploadType = ResourceUploadType_1.default;
|
|
36622
36633
|
module.exports = {};
|
|
36623
36634
|
lodash_1.extend(module.exports, BringgDashboardSDK_1.BringgDashboardSDK);
|
|
@@ -37857,7 +37868,7 @@ module.exports = function isAxiosError(payload) {
|
|
|
37857
37868
|
"use strict";
|
|
37858
37869
|
|
|
37859
37870
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37860
|
-
var lodash_1 = __webpack_require__(
|
|
37871
|
+
var lodash_1 = __webpack_require__(11);
|
|
37861
37872
|
var User = /** @class */ (function () {
|
|
37862
37873
|
function User(data) {
|
|
37863
37874
|
if (data) {
|
|
@@ -41984,7 +41995,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
41984
41995
|
};
|
|
41985
41996
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41986
41997
|
var MerchantEntity_1 = __webpack_require__(194);
|
|
41987
|
-
var lodash_1 = __webpack_require__(
|
|
41998
|
+
var lodash_1 = __webpack_require__(11);
|
|
41988
41999
|
var cached_promise_1 = __webpack_require__(70);
|
|
41989
42000
|
var MerchantApi = /** @class */ (function () {
|
|
41990
42001
|
function MerchantApi(session) {
|
|
@@ -42111,8 +42122,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
42111
42122
|
}
|
|
42112
42123
|
};
|
|
42113
42124
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42114
|
-
var StoreEntity_1 = __webpack_require__(
|
|
42115
|
-
var lodash_1 = __webpack_require__(
|
|
42125
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
42126
|
+
var lodash_1 = __webpack_require__(11);
|
|
42116
42127
|
var Merchant_consts_1 = __webpack_require__(208);
|
|
42117
42128
|
var BaseRoute = '/merchant';
|
|
42118
42129
|
var ROUTES = {
|
|
@@ -42396,13 +42407,14 @@ var CrudService = /** @class */ (function (_super) {
|
|
|
42396
42407
|
}
|
|
42397
42408
|
});
|
|
42398
42409
|
}); };
|
|
42399
|
-
_this.patch = function (payload) { return __awaiter(_this, void 0, void 0, function () {
|
|
42410
|
+
_this.patch = function (id, payload) { return __awaiter(_this, void 0, void 0, function () {
|
|
42400
42411
|
return __generator(this, function (_a) {
|
|
42401
42412
|
switch (_a.label) {
|
|
42402
42413
|
case 0: return [4 /*yield*/, this.routeGenerator
|
|
42403
|
-
.patch(this.Routes.PATCH)
|
|
42414
|
+
.patch(id ? this.Routes.PATCH_WITH_ID : this.Routes.PATCH)
|
|
42415
|
+
.withRouteParams({ id: id })
|
|
42404
42416
|
.withPayload(payload)
|
|
42405
|
-
.setException("Failed to
|
|
42417
|
+
.setException("Failed to patch " + this.entityName)
|
|
42406
42418
|
.invoke()];
|
|
42407
42419
|
case 1: return [2 /*return*/, _a.sent()];
|
|
42408
42420
|
}
|
|
@@ -42418,7 +42430,8 @@ var CrudService = /** @class */ (function (_super) {
|
|
|
42418
42430
|
CREATE: basePath,
|
|
42419
42431
|
UPDATE: basePath + "/{:id}",
|
|
42420
42432
|
DELETE: basePath + "/{:id}",
|
|
42421
|
-
PATCH: basePath
|
|
42433
|
+
PATCH: basePath,
|
|
42434
|
+
PATCH_WITH_ID: basePath + "/{:id}"
|
|
42422
42435
|
};
|
|
42423
42436
|
return _this;
|
|
42424
42437
|
}
|
|
@@ -43004,7 +43017,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
43004
43017
|
};
|
|
43005
43018
|
})();
|
|
43006
43019
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43007
|
-
var StoreEntity_1 = __webpack_require__(
|
|
43020
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
43008
43021
|
var Rollouts_consts_1 = __webpack_require__(211);
|
|
43009
43022
|
var RolloutsEntity = /** @class */ (function (_super) {
|
|
43010
43023
|
__extends(RolloutsEntity, _super);
|
|
@@ -43690,7 +43703,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
43690
43703
|
}
|
|
43691
43704
|
};
|
|
43692
43705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43693
|
-
var StoreEntity_1 = __webpack_require__(
|
|
43706
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
43694
43707
|
var Entity_1 = __webpack_require__(5);
|
|
43695
43708
|
var CustomerEntity = /** @class */ (function (_super) {
|
|
43696
43709
|
__extends(CustomerEntity, _super);
|
|
@@ -43860,7 +43873,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
43860
43873
|
};
|
|
43861
43874
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43862
43875
|
exports.WidgetGetResponseExtractor = exports.DashboardGetResponseExtractor = exports.Routes = void 0;
|
|
43863
|
-
var lodash_1 = __webpack_require__(
|
|
43876
|
+
var lodash_1 = __webpack_require__(11);
|
|
43864
43877
|
var SessionBasedService_1 = __webpack_require__(26);
|
|
43865
43878
|
var BringgException_1 = __webpack_require__(15);
|
|
43866
43879
|
var Route_1 = __webpack_require__(20);
|
|
@@ -44355,9 +44368,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
44355
44368
|
};
|
|
44356
44369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44357
44370
|
var ChatConversation_consts_1 = __webpack_require__(137);
|
|
44358
|
-
var StoreEntity_1 = __webpack_require__(
|
|
44371
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
44359
44372
|
var Entity_1 = __webpack_require__(5);
|
|
44360
|
-
var lodash_1 = __webpack_require__(
|
|
44373
|
+
var lodash_1 = __webpack_require__(11);
|
|
44361
44374
|
var Routes = {
|
|
44362
44375
|
UpdateLastRead: '/chat_conversations/{:id}/update_last_read'
|
|
44363
44376
|
};
|
|
@@ -44566,8 +44579,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
44566
44579
|
var ChatMessage_consts_1 = __webpack_require__(138);
|
|
44567
44580
|
var operators_1 = __webpack_require__(63);
|
|
44568
44581
|
var rxjs_1 = __webpack_require__(71);
|
|
44569
|
-
var lodash_1 = __webpack_require__(
|
|
44570
|
-
var StoreEntity_1 = __webpack_require__(
|
|
44582
|
+
var lodash_1 = __webpack_require__(11);
|
|
44583
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
44571
44584
|
var Entity_1 = __webpack_require__(5);
|
|
44572
44585
|
var ChatMessage = /** @class */ (function (_super) {
|
|
44573
44586
|
__extends(ChatMessage, _super);
|
|
@@ -44832,7 +44845,7 @@ var BaseStore_1 = __webpack_require__(48);
|
|
|
44832
44845
|
var CrewService_1 = __webpack_require__(228);
|
|
44833
44846
|
var rxjs_1 = __webpack_require__(71);
|
|
44834
44847
|
var operators_1 = __webpack_require__(63);
|
|
44835
|
-
var lodash_1 = __webpack_require__(
|
|
44848
|
+
var lodash_1 = __webpack_require__(11);
|
|
44836
44849
|
var CrewStore = /** @class */ (function (_super) {
|
|
44837
44850
|
__extends(CrewStore, _super);
|
|
44838
44851
|
function CrewStore(session) {
|
|
@@ -45186,7 +45199,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
45186
45199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45187
45200
|
exports.extractor = void 0;
|
|
45188
45201
|
var Entity_1 = __webpack_require__(5);
|
|
45189
|
-
var StoreEntity_1 = __webpack_require__(
|
|
45202
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
45190
45203
|
var extractor = function (response) { return response.planned_routes; };
|
|
45191
45204
|
exports.extractor = extractor;
|
|
45192
45205
|
var Routes = {
|
|
@@ -45681,7 +45694,7 @@ var UsersStore_1 = __webpack_require__(238);
|
|
|
45681
45694
|
var BringgException_1 = __webpack_require__(15);
|
|
45682
45695
|
var MethodsArgsDecorators_1 = __webpack_require__(242);
|
|
45683
45696
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
45684
|
-
var lodash_1 = __webpack_require__(
|
|
45697
|
+
var lodash_1 = __webpack_require__(11);
|
|
45685
45698
|
var User_consts_1 = __webpack_require__(98);
|
|
45686
45699
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
45687
45700
|
var ALLOWED_KEYS = {
|
|
@@ -46030,7 +46043,7 @@ var UsersService_1 = __webpack_require__(239);
|
|
|
46030
46043
|
var User_consts_1 = __webpack_require__(98);
|
|
46031
46044
|
var operators_1 = __webpack_require__(63);
|
|
46032
46045
|
var rxjs_1 = __webpack_require__(71);
|
|
46033
|
-
var lodash_1 = __webpack_require__(
|
|
46046
|
+
var lodash_1 = __webpack_require__(11);
|
|
46034
46047
|
var THROTTLE_TIME = 500;
|
|
46035
46048
|
var UsersStore = /** @class */ (function (_super) {
|
|
46036
46049
|
__extends(UsersStore, _super);
|
|
@@ -46480,7 +46493,7 @@ var Route_1 = __webpack_require__(20);
|
|
|
46480
46493
|
var User_consts_1 = __webpack_require__(98);
|
|
46481
46494
|
var PubSubEvents_1 = __webpack_require__(68);
|
|
46482
46495
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
46483
|
-
var lodash_1 = __webpack_require__(
|
|
46496
|
+
var lodash_1 = __webpack_require__(11);
|
|
46484
46497
|
var ROUTES = {
|
|
46485
46498
|
GET: new Route_1.Route('/users/{:userId}', 0 /* GET */),
|
|
46486
46499
|
GET_ALL: new Route_1.Route('/users/', 0 /* GET */),
|
|
@@ -46837,7 +46850,7 @@ exports.PubSubService = PubSubService;
|
|
|
46837
46850
|
|
|
46838
46851
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46839
46852
|
exports.UserHelpers = void 0;
|
|
46840
|
-
var lodash_1 = __webpack_require__(
|
|
46853
|
+
var lodash_1 = __webpack_require__(11);
|
|
46841
46854
|
var UserHelpers = /** @class */ (function () {
|
|
46842
46855
|
function UserHelpers() {
|
|
46843
46856
|
}
|
|
@@ -46874,7 +46887,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
46874
46887
|
exports.sanitize = exports.getArgSanitizeFromKeys = exports.requiredKeys = exports.allowedKeys = exports.getRequiredValidationFunctionFromKeys = exports.getValidationFunctionFromKeys = exports.createArgProcessingDecorator = exports.processArguments = exports.ArgModifier = exports.ArgValidator = exports.processorsMetadataKey = void 0;
|
|
46875
46888
|
var BringgException_1 = __webpack_require__(15);
|
|
46876
46889
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
46877
|
-
var lodash_1 = __webpack_require__(
|
|
46890
|
+
var lodash_1 = __webpack_require__(11);
|
|
46878
46891
|
exports.processorsMetadataKey = Symbol('validations');
|
|
46879
46892
|
var ArgValidator = /** @class */ (function () {
|
|
46880
46893
|
function ArgValidator(argProcessor) {
|
|
@@ -47435,7 +47448,7 @@ exports.default = CustomerConfigurationService;
|
|
|
47435
47448
|
"use strict";
|
|
47436
47449
|
|
|
47437
47450
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47438
|
-
var lodash_1 = __webpack_require__(
|
|
47451
|
+
var lodash_1 = __webpack_require__(11);
|
|
47439
47452
|
var CrossAppTransport = /** @class */ (function () {
|
|
47440
47453
|
function CrossAppTransport() {
|
|
47441
47454
|
var _this = this;
|
|
@@ -47962,9 +47975,9 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
47962
47975
|
})();
|
|
47963
47976
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47964
47977
|
var Entity_1 = __webpack_require__(5);
|
|
47965
|
-
var StoreEntity_1 = __webpack_require__(
|
|
47978
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
47966
47979
|
var AutoDispatchTeamState_consts_1 = __webpack_require__(257);
|
|
47967
|
-
var lodash_1 = __webpack_require__(
|
|
47980
|
+
var lodash_1 = __webpack_require__(11);
|
|
47968
47981
|
var VrpAutoDispatchAnalyticEntity = /** @class */ (function (_super) {
|
|
47969
47982
|
__extends(VrpAutoDispatchAnalyticEntity, _super);
|
|
47970
47983
|
function VrpAutoDispatchAnalyticEntity(session) {
|
|
@@ -48574,7 +48587,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
48574
48587
|
}
|
|
48575
48588
|
};
|
|
48576
48589
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48577
|
-
var StoreEntity_1 = __webpack_require__(
|
|
48590
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
48578
48591
|
var Entity_1 = __webpack_require__(5);
|
|
48579
48592
|
var UserType_consts_1 = __webpack_require__(270);
|
|
48580
48593
|
var UserTypeRoute = [Entity_1.BaseRoutes.Get, Entity_1.BaseRoutes.GetAll, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Update];
|
|
@@ -49084,7 +49097,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49084
49097
|
};
|
|
49085
49098
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49086
49099
|
var Entity_1 = __webpack_require__(5);
|
|
49087
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49100
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49088
49101
|
var defaultExtractor = function (response) { return response.team; };
|
|
49089
49102
|
var Routes = {
|
|
49090
49103
|
GET_TEAMS_BY_USER: '/users/{:userId}/teams',
|
|
@@ -49209,7 +49222,7 @@ var BringgException_1 = __webpack_require__(15);
|
|
|
49209
49222
|
var Route_1 = __webpack_require__(20);
|
|
49210
49223
|
var SessionBasedService_1 = __webpack_require__(26);
|
|
49211
49224
|
var RouteGenerator_1 = __webpack_require__(93);
|
|
49212
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49225
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49213
49226
|
var ResourceUploadApi = /** @class */ (function (_super) {
|
|
49214
49227
|
__extends(ResourceUploadApi, _super);
|
|
49215
49228
|
function ResourceUploadApi(session) {
|
|
@@ -49295,7 +49308,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
49295
49308
|
})();
|
|
49296
49309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49297
49310
|
var Entity_1 = __webpack_require__(5);
|
|
49298
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49311
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49299
49312
|
var TeamConfigurationEntity = /** @class */ (function (_super) {
|
|
49300
49313
|
__extends(TeamConfigurationEntity, _super);
|
|
49301
49314
|
function TeamConfigurationEntity(session) {
|
|
@@ -49435,7 +49448,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49435
49448
|
}
|
|
49436
49449
|
};
|
|
49437
49450
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49438
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49451
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49439
49452
|
var Entity_1 = __webpack_require__(5);
|
|
49440
49453
|
var ScanEntity = /** @class */ (function (_super) {
|
|
49441
49454
|
__extends(ScanEntity, _super);
|
|
@@ -49578,7 +49591,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49578
49591
|
}
|
|
49579
49592
|
};
|
|
49580
49593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49581
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49594
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49582
49595
|
var SignatureEntity = /** @class */ (function (_super) {
|
|
49583
49596
|
__extends(SignatureEntity, _super);
|
|
49584
49597
|
function SignatureEntity(session) {
|
|
@@ -49718,7 +49731,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49718
49731
|
}
|
|
49719
49732
|
};
|
|
49720
49733
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49721
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49734
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49722
49735
|
var PhotoEntity = /** @class */ (function (_super) {
|
|
49723
49736
|
__extends(PhotoEntity, _super);
|
|
49724
49737
|
function PhotoEntity(session) {
|
|
@@ -49785,7 +49798,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49785
49798
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49786
49799
|
exports.MerchantConfigurationApi = void 0;
|
|
49787
49800
|
var MerchantConfigurationEntity_1 = __webpack_require__(287);
|
|
49788
|
-
var lodash_1 = __webpack_require__(
|
|
49801
|
+
var lodash_1 = __webpack_require__(11);
|
|
49789
49802
|
var MerchantConfiguration_consts_1 = __webpack_require__(288);
|
|
49790
49803
|
var MerchantConfigurationApi = /** @class */ (function () {
|
|
49791
49804
|
function MerchantConfigurationApi(session) {
|
|
@@ -50725,7 +50738,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
50725
50738
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50726
50739
|
exports.singleExtractor = exports.listExtractor = void 0;
|
|
50727
50740
|
var Entity_1 = __webpack_require__(5);
|
|
50728
|
-
var StoreEntity_1 = __webpack_require__(
|
|
50741
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
50729
50742
|
var listExtractor = function (response) { return response.vehicle_types; };
|
|
50730
50743
|
exports.listExtractor = listExtractor;
|
|
50731
50744
|
var singleExtractor = function (response) { return response.vehicle_type; };
|
|
@@ -50839,7 +50852,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
50839
50852
|
};
|
|
50840
50853
|
})();
|
|
50841
50854
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50842
|
-
var StoreEntity_1 = __webpack_require__(
|
|
50855
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
50843
50856
|
var Entity_1 = __webpack_require__(5);
|
|
50844
50857
|
var extactor = function (response) { return response.reasons_to_reassign_tasks; };
|
|
50845
50858
|
var ReasonToReassignTasksEntity = /** @class */ (function (_super) {
|
|
@@ -51124,10 +51137,10 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51124
51137
|
};
|
|
51125
51138
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51126
51139
|
exports.Routes = void 0;
|
|
51127
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51140
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51128
51141
|
var Entity_1 = __webpack_require__(5);
|
|
51129
51142
|
var Vehicle_consts_1 = __webpack_require__(142);
|
|
51130
|
-
var lodash_1 = __webpack_require__(
|
|
51143
|
+
var lodash_1 = __webpack_require__(11);
|
|
51131
51144
|
exports.Routes = {
|
|
51132
51145
|
GET_ASSIGNMENT_HISTORY: '/vehicles/get_assignment_history/',
|
|
51133
51146
|
GET_BY_TEAM: '/teams/{:teamId}/vehicles',
|
|
@@ -51306,7 +51319,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51306
51319
|
}
|
|
51307
51320
|
};
|
|
51308
51321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51309
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51322
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51310
51323
|
var WebApplicationConfigurationEntityName = 'web_application_configurations';
|
|
51311
51324
|
var WebApplicationConfigurationEntity = /** @class */ (function (_super) {
|
|
51312
51325
|
__extends(WebApplicationConfigurationEntity, _super);
|
|
@@ -51543,7 +51556,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51543
51556
|
};
|
|
51544
51557
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51545
51558
|
exports.quoteExtractor = exports.fleetsExtractor = exports.Routes = void 0;
|
|
51546
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51559
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51547
51560
|
var Entity_1 = __webpack_require__(5);
|
|
51548
51561
|
exports.Routes = {
|
|
51549
51562
|
GET_RELATED: '/fleets/related',
|
|
@@ -51765,7 +51778,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51765
51778
|
};
|
|
51766
51779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51767
51780
|
exports.Routes = void 0;
|
|
51768
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51781
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51769
51782
|
var Entity_1 = __webpack_require__(5);
|
|
51770
51783
|
exports.Routes = {
|
|
51771
51784
|
GET_RULES: '/rule-service/rules',
|
|
@@ -51918,7 +51931,7 @@ exports.default = PushTokenSubscriptionEntity;
|
|
|
51918
51931
|
|
|
51919
51932
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51920
51933
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
51921
|
-
var TaskEntity_1 = __webpack_require__(
|
|
51934
|
+
var TaskEntity_1 = __webpack_require__(406);
|
|
51922
51935
|
var TaskHelpers_1 = __webpack_require__(102);
|
|
51923
51936
|
var Tasks = /** @class */ (function () {
|
|
51924
51937
|
function Tasks(session) {
|
|
@@ -52200,6 +52213,22 @@ exports.ALERT_TYPES_VALUES = Object.values(ALERT_TYPES).filter(function (t) { re
|
|
|
52200
52213
|
|
|
52201
52214
|
"use strict";
|
|
52202
52215
|
|
|
52216
|
+
exports.__esModule = true;
|
|
52217
|
+
exports.AlertSeverity = void 0;
|
|
52218
|
+
var AlertSeverity;
|
|
52219
|
+
(function (AlertSeverity) {
|
|
52220
|
+
AlertSeverity[AlertSeverity["Low"] = 1] = "Low";
|
|
52221
|
+
AlertSeverity[AlertSeverity["Medium"] = 2] = "Medium";
|
|
52222
|
+
AlertSeverity[AlertSeverity["High"] = 3] = "High";
|
|
52223
|
+
})(AlertSeverity = exports.AlertSeverity || (exports.AlertSeverity = {}));
|
|
52224
|
+
//# sourceMappingURL=alerts_configuration.js.map
|
|
52225
|
+
|
|
52226
|
+
/***/ }),
|
|
52227
|
+
/* 311 */
|
|
52228
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
52229
|
+
|
|
52230
|
+
"use strict";
|
|
52231
|
+
|
|
52203
52232
|
exports.__esModule = true;
|
|
52204
52233
|
exports.ApplicationUuid = void 0;
|
|
52205
52234
|
var ApplicationUuid;
|
|
@@ -52232,7 +52261,6 @@ var ApplicationUuid;
|
|
|
52232
52261
|
ApplicationUuid["DriverPayments"] = "88260a80-c003-4d66-bf81-5f15443286ed";
|
|
52233
52262
|
ApplicationUuid["ETA"] = "9369f5d4-57d8-4806-b2c9-fcc6f4e51531";
|
|
52234
52263
|
ApplicationUuid["ExternalFleetApp"] = "271c52e5-0a1a-40cb-9f24-730ec91e4afc";
|
|
52235
|
-
ApplicationUuid["FoodToYou"] = "90f9cc61-ef43-419a-ac82-6a1d1bf5875e";
|
|
52236
52264
|
ApplicationUuid["FailedDeliveryManager"] = "de7f883b-bab4-4e25-a830-83bd1c5cb270";
|
|
52237
52265
|
ApplicationUuid["FedexFreight"] = "064844ab-e6f4-4b0e-8e26-383a408cab2a";
|
|
52238
52266
|
ApplicationUuid["FedexIl"] = "1b4e301f-86d1-4711-9947-08e3d8e73c6a";
|
|
@@ -52293,7 +52321,7 @@ var ApplicationUuid;
|
|
|
52293
52321
|
//# sourceMappingURL=application.js.map
|
|
52294
52322
|
|
|
52295
52323
|
/***/ }),
|
|
52296
|
-
/*
|
|
52324
|
+
/* 312 */
|
|
52297
52325
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52298
52326
|
|
|
52299
52327
|
"use strict";
|
|
@@ -52308,7 +52336,7 @@ var LOGIN_ERRORS;
|
|
|
52308
52336
|
//# sourceMappingURL=auth.js.map
|
|
52309
52337
|
|
|
52310
52338
|
/***/ }),
|
|
52311
|
-
/*
|
|
52339
|
+
/* 313 */
|
|
52312
52340
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52313
52341
|
|
|
52314
52342
|
"use strict";
|
|
@@ -52324,7 +52352,7 @@ var ChatConversationType;
|
|
|
52324
52352
|
//# sourceMappingURL=chat_conversation.js.map
|
|
52325
52353
|
|
|
52326
52354
|
/***/ }),
|
|
52327
|
-
/*
|
|
52355
|
+
/* 314 */
|
|
52328
52356
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52329
52357
|
|
|
52330
52358
|
"use strict";
|
|
@@ -52345,7 +52373,7 @@ var ChatMessageOrigin;
|
|
|
52345
52373
|
//# sourceMappingURL=chat_message.js.map
|
|
52346
52374
|
|
|
52347
52375
|
/***/ }),
|
|
52348
|
-
/*
|
|
52376
|
+
/* 315 */
|
|
52349
52377
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52350
52378
|
|
|
52351
52379
|
"use strict";
|
|
@@ -52370,7 +52398,7 @@ var Connection;
|
|
|
52370
52398
|
//# sourceMappingURL=common.js.map
|
|
52371
52399
|
|
|
52372
52400
|
/***/ }),
|
|
52373
|
-
/*
|
|
52401
|
+
/* 316 */
|
|
52374
52402
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52375
52403
|
|
|
52376
52404
|
"use strict";
|
|
@@ -52379,7 +52407,7 @@ exports.__esModule = true;
|
|
|
52379
52407
|
//# sourceMappingURL=company.js.map
|
|
52380
52408
|
|
|
52381
52409
|
/***/ }),
|
|
52382
|
-
/*
|
|
52410
|
+
/* 317 */
|
|
52383
52411
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52384
52412
|
|
|
52385
52413
|
"use strict";
|
|
@@ -52388,7 +52416,7 @@ exports.__esModule = true;
|
|
|
52388
52416
|
//# sourceMappingURL=crew.js.map
|
|
52389
52417
|
|
|
52390
52418
|
/***/ }),
|
|
52391
|
-
/*
|
|
52419
|
+
/* 318 */
|
|
52392
52420
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52393
52421
|
|
|
52394
52422
|
"use strict";
|
|
@@ -52404,7 +52432,7 @@ var CustomFilterOperator;
|
|
|
52404
52432
|
//# sourceMappingURL=custom_filter.js.map
|
|
52405
52433
|
|
|
52406
52434
|
/***/ }),
|
|
52407
|
-
/*
|
|
52435
|
+
/* 319 */
|
|
52408
52436
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52409
52437
|
|
|
52410
52438
|
"use strict";
|
|
@@ -52413,7 +52441,7 @@ exports.__esModule = true;
|
|
|
52413
52441
|
//# sourceMappingURL=customer.js.map
|
|
52414
52442
|
|
|
52415
52443
|
/***/ }),
|
|
52416
|
-
/*
|
|
52444
|
+
/* 320 */
|
|
52417
52445
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52418
52446
|
|
|
52419
52447
|
"use strict";
|
|
@@ -52422,7 +52450,7 @@ exports.__esModule = true;
|
|
|
52422
52450
|
//# sourceMappingURL=customer_configuration.js.map
|
|
52423
52451
|
|
|
52424
52452
|
/***/ }),
|
|
52425
|
-
/*
|
|
52453
|
+
/* 321 */
|
|
52426
52454
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52427
52455
|
|
|
52428
52456
|
"use strict";
|
|
@@ -52445,7 +52473,7 @@ var TaskPhase;
|
|
|
52445
52473
|
//# sourceMappingURL=customer_experience.js.map
|
|
52446
52474
|
|
|
52447
52475
|
/***/ }),
|
|
52448
|
-
/*
|
|
52476
|
+
/* 322 */
|
|
52449
52477
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52450
52478
|
|
|
52451
52479
|
"use strict";
|
|
@@ -52460,7 +52488,7 @@ var BreakType;
|
|
|
52460
52488
|
//# sourceMappingURL=delivery_block.js.map
|
|
52461
52489
|
|
|
52462
52490
|
/***/ }),
|
|
52463
|
-
/*
|
|
52491
|
+
/* 323 */
|
|
52464
52492
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52465
52493
|
|
|
52466
52494
|
"use strict";
|
|
@@ -52469,7 +52497,7 @@ exports.__esModule = true;
|
|
|
52469
52497
|
//# sourceMappingURL=delivery_block_schedule.js.map
|
|
52470
52498
|
|
|
52471
52499
|
/***/ }),
|
|
52472
|
-
/*
|
|
52500
|
+
/* 324 */
|
|
52473
52501
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52474
52502
|
|
|
52475
52503
|
"use strict";
|
|
@@ -52543,7 +52571,7 @@ var DeliveryProviderDeliverFromCapability;
|
|
|
52543
52571
|
//# sourceMappingURL=delivery_provider.js.map
|
|
52544
52572
|
|
|
52545
52573
|
/***/ }),
|
|
52546
|
-
/*
|
|
52574
|
+
/* 325 */
|
|
52547
52575
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52548
52576
|
|
|
52549
52577
|
"use strict";
|
|
@@ -52564,7 +52592,7 @@ var DisputeReason;
|
|
|
52564
52592
|
//# sourceMappingURL=dispute.js.map
|
|
52565
52593
|
|
|
52566
52594
|
/***/ }),
|
|
52567
|
-
/*
|
|
52595
|
+
/* 326 */
|
|
52568
52596
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52569
52597
|
|
|
52570
52598
|
"use strict";
|
|
@@ -52573,7 +52601,7 @@ exports.__esModule = true;
|
|
|
52573
52601
|
//# sourceMappingURL=emulated_delivery_provider_types.js.map
|
|
52574
52602
|
|
|
52575
52603
|
/***/ }),
|
|
52576
|
-
/*
|
|
52604
|
+
/* 327 */
|
|
52577
52605
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52578
52606
|
|
|
52579
52607
|
"use strict";
|
|
@@ -52699,7 +52727,7 @@ var EventType;
|
|
|
52699
52727
|
//# sourceMappingURL=event.js.map
|
|
52700
52728
|
|
|
52701
52729
|
/***/ }),
|
|
52702
|
-
/*
|
|
52730
|
+
/* 328 */
|
|
52703
52731
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52704
52732
|
|
|
52705
52733
|
"use strict";
|
|
@@ -52726,7 +52754,7 @@ var AggregatorType;
|
|
|
52726
52754
|
//# sourceMappingURL=external_data_team.js.map
|
|
52727
52755
|
|
|
52728
52756
|
/***/ }),
|
|
52729
|
-
/*
|
|
52757
|
+
/* 329 */
|
|
52730
52758
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52731
52759
|
|
|
52732
52760
|
"use strict";
|
|
@@ -52800,7 +52828,7 @@ exports.FleetTypeToCapabilities = (_a = {},
|
|
|
52800
52828
|
//# sourceMappingURL=fleet.js.map
|
|
52801
52829
|
|
|
52802
52830
|
/***/ }),
|
|
52803
|
-
/*
|
|
52831
|
+
/* 330 */
|
|
52804
52832
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52805
52833
|
|
|
52806
52834
|
"use strict";
|
|
@@ -52816,7 +52844,7 @@ var PreferredMethod;
|
|
|
52816
52844
|
//# sourceMappingURL=fleet_router_rules.js.map
|
|
52817
52845
|
|
|
52818
52846
|
/***/ }),
|
|
52819
|
-
/*
|
|
52847
|
+
/* 331 */
|
|
52820
52848
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52821
52849
|
|
|
52822
52850
|
"use strict";
|
|
@@ -52825,7 +52853,7 @@ exports.__esModule = true;
|
|
|
52825
52853
|
//# sourceMappingURL=fleet_template.js.map
|
|
52826
52854
|
|
|
52827
52855
|
/***/ }),
|
|
52828
|
-
/*
|
|
52856
|
+
/* 332 */
|
|
52829
52857
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52830
52858
|
|
|
52831
52859
|
"use strict";
|
|
@@ -52842,7 +52870,7 @@ var OWNERSHIP_ORIGIN;
|
|
|
52842
52870
|
//# sourceMappingURL=floating_inventory.js.map
|
|
52843
52871
|
|
|
52844
52872
|
/***/ }),
|
|
52845
|
-
/*
|
|
52873
|
+
/* 333 */
|
|
52846
52874
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52847
52875
|
|
|
52848
52876
|
"use strict";
|
|
@@ -52851,7 +52879,7 @@ exports.__esModule = true;
|
|
|
52851
52879
|
//# sourceMappingURL=franchisee.js.map
|
|
52852
52880
|
|
|
52853
52881
|
/***/ }),
|
|
52854
|
-
/*
|
|
52882
|
+
/* 334 */
|
|
52855
52883
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52856
52884
|
|
|
52857
52885
|
"use strict";
|
|
@@ -52860,7 +52888,7 @@ exports.__esModule = true;
|
|
|
52860
52888
|
//# sourceMappingURL=geocoding.js.map
|
|
52861
52889
|
|
|
52862
52890
|
/***/ }),
|
|
52863
|
-
/*
|
|
52891
|
+
/* 335 */
|
|
52864
52892
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52865
52893
|
|
|
52866
52894
|
"use strict";
|
|
@@ -52869,7 +52897,7 @@ exports.__esModule = true;
|
|
|
52869
52897
|
//# sourceMappingURL=handling_units.js.map
|
|
52870
52898
|
|
|
52871
52899
|
/***/ }),
|
|
52872
|
-
/*
|
|
52900
|
+
/* 336 */
|
|
52873
52901
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52874
52902
|
|
|
52875
52903
|
"use strict";
|
|
@@ -52887,7 +52915,7 @@ var IntegrationName;
|
|
|
52887
52915
|
//# sourceMappingURL=integration.js.map
|
|
52888
52916
|
|
|
52889
52917
|
/***/ }),
|
|
52890
|
-
/*
|
|
52918
|
+
/* 337 */
|
|
52891
52919
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52892
52920
|
|
|
52893
52921
|
"use strict";
|
|
@@ -52903,7 +52931,7 @@ exports.KEYSET_PAGINATION_VER = 2;
|
|
|
52903
52931
|
//# sourceMappingURL=keyset_pagination.js.map
|
|
52904
52932
|
|
|
52905
52933
|
/***/ }),
|
|
52906
|
-
/*
|
|
52934
|
+
/* 338 */
|
|
52907
52935
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52908
52936
|
|
|
52909
52937
|
"use strict";
|
|
@@ -52912,7 +52940,7 @@ exports.__esModule = true;
|
|
|
52912
52940
|
//# sourceMappingURL=language.js.map
|
|
52913
52941
|
|
|
52914
52942
|
/***/ }),
|
|
52915
|
-
/*
|
|
52943
|
+
/* 339 */
|
|
52916
52944
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52917
52945
|
|
|
52918
52946
|
"use strict";
|
|
@@ -52921,7 +52949,7 @@ exports.__esModule = true;
|
|
|
52921
52949
|
//# sourceMappingURL=location.js.map
|
|
52922
52950
|
|
|
52923
52951
|
/***/ }),
|
|
52924
|
-
/*
|
|
52952
|
+
/* 340 */
|
|
52925
52953
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52926
52954
|
|
|
52927
52955
|
"use strict";
|
|
@@ -52951,7 +52979,7 @@ var Origin;
|
|
|
52951
52979
|
//# sourceMappingURL=menu.js.map
|
|
52952
52980
|
|
|
52953
52981
|
/***/ }),
|
|
52954
|
-
/*
|
|
52982
|
+
/* 341 */
|
|
52955
52983
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52956
52984
|
|
|
52957
52985
|
"use strict";
|
|
@@ -52989,7 +53017,7 @@ var EnvironmentTypes;
|
|
|
52989
53017
|
//# sourceMappingURL=merchant.js.map
|
|
52990
53018
|
|
|
52991
53019
|
/***/ }),
|
|
52992
|
-
/*
|
|
53020
|
+
/* 342 */
|
|
52993
53021
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52994
53022
|
|
|
52995
53023
|
"use strict";
|
|
@@ -53052,7 +53080,7 @@ var GrabMode;
|
|
|
53052
53080
|
//# sourceMappingURL=merchant_configuration.js.map
|
|
53053
53081
|
|
|
53054
53082
|
/***/ }),
|
|
53055
|
-
/*
|
|
53083
|
+
/* 343 */
|
|
53056
53084
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53057
53085
|
|
|
53058
53086
|
"use strict";
|
|
@@ -53074,7 +53102,7 @@ var SubscriptionNotificationType;
|
|
|
53074
53102
|
//# sourceMappingURL=notification_subscription.js.map
|
|
53075
53103
|
|
|
53076
53104
|
/***/ }),
|
|
53077
|
-
/*
|
|
53105
|
+
/* 344 */
|
|
53078
53106
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53079
53107
|
|
|
53080
53108
|
"use strict";
|
|
@@ -53083,7 +53111,7 @@ exports.__esModule = true;
|
|
|
53083
53111
|
//# sourceMappingURL=notification_template.js.map
|
|
53084
53112
|
|
|
53085
53113
|
/***/ }),
|
|
53086
|
-
/*
|
|
53114
|
+
/* 345 */
|
|
53087
53115
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53088
53116
|
|
|
53089
53117
|
"use strict";
|
|
@@ -53099,7 +53127,7 @@ var NotificationTypes;
|
|
|
53099
53127
|
//# sourceMappingURL=notification_type.js.map
|
|
53100
53128
|
|
|
53101
53129
|
/***/ }),
|
|
53102
|
-
/*
|
|
53130
|
+
/* 346 */
|
|
53103
53131
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53104
53132
|
|
|
53105
53133
|
"use strict";
|
|
@@ -53108,7 +53136,7 @@ exports.__esModule = true;
|
|
|
53108
53136
|
//# sourceMappingURL=open_fleet.js.map
|
|
53109
53137
|
|
|
53110
53138
|
/***/ }),
|
|
53111
|
-
/*
|
|
53139
|
+
/* 347 */
|
|
53112
53140
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53113
53141
|
|
|
53114
53142
|
"use strict";
|
|
@@ -53128,7 +53156,7 @@ var OptInMethod;
|
|
|
53128
53156
|
//# sourceMappingURL=opt_in_out_history.js.map
|
|
53129
53157
|
|
|
53130
53158
|
/***/ }),
|
|
53131
|
-
/*
|
|
53159
|
+
/* 348 */
|
|
53132
53160
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53133
53161
|
|
|
53134
53162
|
"use strict";
|
|
@@ -53150,7 +53178,7 @@ var RouteItemType;
|
|
|
53150
53178
|
//# sourceMappingURL=optimization_type.js.map
|
|
53151
53179
|
|
|
53152
53180
|
/***/ }),
|
|
53153
|
-
/*
|
|
53181
|
+
/* 349 */
|
|
53154
53182
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53155
53183
|
|
|
53156
53184
|
"use strict";
|
|
@@ -53159,7 +53187,7 @@ exports.__esModule = true;
|
|
|
53159
53187
|
//# sourceMappingURL=package.js.map
|
|
53160
53188
|
|
|
53161
53189
|
/***/ }),
|
|
53162
|
-
/*
|
|
53190
|
+
/* 350 */
|
|
53163
53191
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53164
53192
|
|
|
53165
53193
|
"use strict";
|
|
@@ -53168,7 +53196,7 @@ exports.__esModule = true;
|
|
|
53168
53196
|
//# sourceMappingURL=parking_spot.js.map
|
|
53169
53197
|
|
|
53170
53198
|
/***/ }),
|
|
53171
|
-
/*
|
|
53199
|
+
/* 351 */
|
|
53172
53200
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53173
53201
|
|
|
53174
53202
|
"use strict";
|
|
@@ -53177,7 +53205,7 @@ exports.__esModule = true;
|
|
|
53177
53205
|
//# sourceMappingURL=planned_delivery_window.js.map
|
|
53178
53206
|
|
|
53179
53207
|
/***/ }),
|
|
53180
|
-
/*
|
|
53208
|
+
/* 352 */
|
|
53181
53209
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53182
53210
|
|
|
53183
53211
|
"use strict";
|
|
@@ -53186,7 +53214,7 @@ exports.__esModule = true;
|
|
|
53186
53214
|
//# sourceMappingURL=planned_route.js.map
|
|
53187
53215
|
|
|
53188
53216
|
/***/ }),
|
|
53189
|
-
/*
|
|
53217
|
+
/* 353 */
|
|
53190
53218
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53191
53219
|
|
|
53192
53220
|
"use strict";
|
|
@@ -53195,7 +53223,7 @@ exports.__esModule = true;
|
|
|
53195
53223
|
//# sourceMappingURL=predicate.js.map
|
|
53196
53224
|
|
|
53197
53225
|
/***/ }),
|
|
53198
|
-
/*
|
|
53226
|
+
/* 354 */
|
|
53199
53227
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53200
53228
|
|
|
53201
53229
|
"use strict";
|
|
@@ -53249,7 +53277,7 @@ var PrivilegeTypes;
|
|
|
53249
53277
|
//# sourceMappingURL=privilege.js.map
|
|
53250
53278
|
|
|
53251
53279
|
/***/ }),
|
|
53252
|
-
/*
|
|
53280
|
+
/* 355 */
|
|
53253
53281
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53254
53282
|
|
|
53255
53283
|
"use strict";
|
|
@@ -53269,7 +53297,7 @@ var PushNotificationEnvironment;
|
|
|
53269
53297
|
//# sourceMappingURL=push_notification_registration.js.map
|
|
53270
53298
|
|
|
53271
53299
|
/***/ }),
|
|
53272
|
-
/*
|
|
53300
|
+
/* 356 */
|
|
53273
53301
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53274
53302
|
|
|
53275
53303
|
"use strict";
|
|
@@ -53283,7 +53311,7 @@ var ApplicationType;
|
|
|
53283
53311
|
//# sourceMappingURL=push_token_subscription.js.map
|
|
53284
53312
|
|
|
53285
53313
|
/***/ }),
|
|
53286
|
-
/*
|
|
53314
|
+
/* 357 */
|
|
53287
53315
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53288
53316
|
|
|
53289
53317
|
"use strict";
|
|
@@ -53292,7 +53320,7 @@ exports.__esModule = true;
|
|
|
53292
53320
|
//# sourceMappingURL=quote.js.map
|
|
53293
53321
|
|
|
53294
53322
|
/***/ }),
|
|
53295
|
-
/*
|
|
53323
|
+
/* 358 */
|
|
53296
53324
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53297
53325
|
|
|
53298
53326
|
"use strict";
|
|
@@ -53301,7 +53329,7 @@ exports.__esModule = true;
|
|
|
53301
53329
|
//# sourceMappingURL=rating.js.map
|
|
53302
53330
|
|
|
53303
53331
|
/***/ }),
|
|
53304
|
-
/*
|
|
53332
|
+
/* 359 */
|
|
53305
53333
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53306
53334
|
|
|
53307
53335
|
"use strict";
|
|
@@ -53310,7 +53338,7 @@ exports.__esModule = true;
|
|
|
53310
53338
|
//# sourceMappingURL=reason_to_cancel_task.js.map
|
|
53311
53339
|
|
|
53312
53340
|
/***/ }),
|
|
53313
|
-
/*
|
|
53341
|
+
/* 360 */
|
|
53314
53342
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53315
53343
|
|
|
53316
53344
|
"use strict";
|
|
@@ -53319,7 +53347,7 @@ exports.__esModule = true;
|
|
|
53319
53347
|
//# sourceMappingURL=reason_to_change_inventory.js.map
|
|
53320
53348
|
|
|
53321
53349
|
/***/ }),
|
|
53322
|
-
/*
|
|
53350
|
+
/* 361 */
|
|
53323
53351
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53324
53352
|
|
|
53325
53353
|
"use strict";
|
|
@@ -53328,7 +53356,7 @@ exports.__esModule = true;
|
|
|
53328
53356
|
//# sourceMappingURL=reason_to_reassign_task.js.map
|
|
53329
53357
|
|
|
53330
53358
|
/***/ }),
|
|
53331
|
-
/*
|
|
53359
|
+
/* 362 */
|
|
53332
53360
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53333
53361
|
|
|
53334
53362
|
"use strict";
|
|
@@ -53344,12 +53372,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
53344
53372
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
53345
53373
|
};
|
|
53346
53374
|
exports.__esModule = true;
|
|
53347
|
-
__exportStar(__webpack_require__(362), exports);
|
|
53348
53375
|
__exportStar(__webpack_require__(363), exports);
|
|
53376
|
+
__exportStar(__webpack_require__(364), exports);
|
|
53377
|
+
__exportStar(__webpack_require__(365), exports);
|
|
53349
53378
|
//# sourceMappingURL=index.js.map
|
|
53350
53379
|
|
|
53351
53380
|
/***/ }),
|
|
53352
|
-
/*
|
|
53381
|
+
/* 363 */
|
|
53353
53382
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53354
53383
|
|
|
53355
53384
|
"use strict";
|
|
@@ -53364,7 +53393,30 @@ var Order;
|
|
|
53364
53393
|
//# sourceMappingURL=report.js.map
|
|
53365
53394
|
|
|
53366
53395
|
/***/ }),
|
|
53367
|
-
/*
|
|
53396
|
+
/* 364 */
|
|
53397
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
53398
|
+
|
|
53399
|
+
"use strict";
|
|
53400
|
+
|
|
53401
|
+
exports.__esModule = true;
|
|
53402
|
+
exports.ReportExportingStatus = exports.ReportExecuteOrigin = void 0;
|
|
53403
|
+
var ReportExecuteOrigin;
|
|
53404
|
+
(function (ReportExecuteOrigin) {
|
|
53405
|
+
ReportExecuteOrigin[ReportExecuteOrigin["Scheduled"] = 0] = "Scheduled";
|
|
53406
|
+
ReportExecuteOrigin[ReportExecuteOrigin["ExportNow"] = 1] = "ExportNow";
|
|
53407
|
+
ReportExecuteOrigin[ReportExecuteOrigin["Download"] = 2] = "Download";
|
|
53408
|
+
})(ReportExecuteOrigin = exports.ReportExecuteOrigin || (exports.ReportExecuteOrigin = {}));
|
|
53409
|
+
var ReportExportingStatus;
|
|
53410
|
+
(function (ReportExportingStatus) {
|
|
53411
|
+
ReportExportingStatus["InProgress"] = "InProgress";
|
|
53412
|
+
ReportExportingStatus["Completed"] = "Completed";
|
|
53413
|
+
ReportExportingStatus["Error"] = "Error";
|
|
53414
|
+
ReportExportingStatus["Canceled"] = "Canceled";
|
|
53415
|
+
})(ReportExportingStatus = exports.ReportExportingStatus || (exports.ReportExportingStatus = {}));
|
|
53416
|
+
//# sourceMappingURL=report_export.js.map
|
|
53417
|
+
|
|
53418
|
+
/***/ }),
|
|
53419
|
+
/* 365 */
|
|
53368
53420
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53369
53421
|
|
|
53370
53422
|
"use strict";
|
|
@@ -53400,7 +53452,7 @@ var CronDayOfWeek;
|
|
|
53400
53452
|
//# sourceMappingURL=reports_scheduled_jobs.js.map
|
|
53401
53453
|
|
|
53402
53454
|
/***/ }),
|
|
53403
|
-
/*
|
|
53455
|
+
/* 366 */
|
|
53404
53456
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53405
53457
|
|
|
53406
53458
|
"use strict";
|
|
@@ -53409,7 +53461,7 @@ exports.__esModule = true;
|
|
|
53409
53461
|
//# sourceMappingURL=report_preference.js.map
|
|
53410
53462
|
|
|
53411
53463
|
/***/ }),
|
|
53412
|
-
/*
|
|
53464
|
+
/* 367 */
|
|
53413
53465
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53414
53466
|
|
|
53415
53467
|
"use strict";
|
|
@@ -53478,7 +53530,7 @@ var FILTER_TYPES;
|
|
|
53478
53530
|
//# sourceMappingURL=reports.js.map
|
|
53479
53531
|
|
|
53480
53532
|
/***/ }),
|
|
53481
|
-
/*
|
|
53533
|
+
/* 368 */
|
|
53482
53534
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53483
53535
|
|
|
53484
53536
|
"use strict";
|
|
@@ -53497,7 +53549,7 @@ var RequestOrigin;
|
|
|
53497
53549
|
//# sourceMappingURL=request_origin.js.map
|
|
53498
53550
|
|
|
53499
53551
|
/***/ }),
|
|
53500
|
-
/*
|
|
53552
|
+
/* 369 */
|
|
53501
53553
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53502
53554
|
|
|
53503
53555
|
"use strict";
|
|
@@ -53534,7 +53586,7 @@ var RuleRequestType;
|
|
|
53534
53586
|
//# sourceMappingURL=rule_types.js.map
|
|
53535
53587
|
|
|
53536
53588
|
/***/ }),
|
|
53537
|
-
/*
|
|
53589
|
+
/* 370 */
|
|
53538
53590
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53539
53591
|
|
|
53540
53592
|
"use strict";
|
|
@@ -53588,7 +53640,7 @@ var OFFLINE_ONLINE_EVENT_TYPES;
|
|
|
53588
53640
|
//# sourceMappingURL=run.js.map
|
|
53589
53641
|
|
|
53590
53642
|
/***/ }),
|
|
53591
|
-
/*
|
|
53643
|
+
/* 371 */
|
|
53592
53644
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53593
53645
|
|
|
53594
53646
|
"use strict";
|
|
@@ -53604,7 +53656,7 @@ var ScanType;
|
|
|
53604
53656
|
//# sourceMappingURL=scan.js.map
|
|
53605
53657
|
|
|
53606
53658
|
/***/ }),
|
|
53607
|
-
/*
|
|
53659
|
+
/* 372 */
|
|
53608
53660
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53609
53661
|
|
|
53610
53662
|
"use strict";
|
|
@@ -53613,7 +53665,7 @@ exports.__esModule = true;
|
|
|
53613
53665
|
//# sourceMappingURL=serializer.js.map
|
|
53614
53666
|
|
|
53615
53667
|
/***/ }),
|
|
53616
|
-
/*
|
|
53668
|
+
/* 373 */
|
|
53617
53669
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53618
53670
|
|
|
53619
53671
|
"use strict";
|
|
@@ -53622,7 +53674,7 @@ exports.__esModule = true;
|
|
|
53622
53674
|
//# sourceMappingURL=service.js.map
|
|
53623
53675
|
|
|
53624
53676
|
/***/ }),
|
|
53625
|
-
/*
|
|
53677
|
+
/* 374 */
|
|
53626
53678
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53627
53679
|
|
|
53628
53680
|
"use strict";
|
|
@@ -53631,7 +53683,7 @@ exports.__esModule = true;
|
|
|
53631
53683
|
//# sourceMappingURL=service_area.js.map
|
|
53632
53684
|
|
|
53633
53685
|
/***/ }),
|
|
53634
|
-
/*
|
|
53686
|
+
/* 375 */
|
|
53635
53687
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53636
53688
|
|
|
53637
53689
|
"use strict";
|
|
@@ -53640,7 +53692,7 @@ exports.__esModule = true;
|
|
|
53640
53692
|
//# sourceMappingURL=service_event.js.map
|
|
53641
53693
|
|
|
53642
53694
|
/***/ }),
|
|
53643
|
-
/*
|
|
53695
|
+
/* 376 */
|
|
53644
53696
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53645
53697
|
|
|
53646
53698
|
"use strict";
|
|
@@ -53649,7 +53701,7 @@ exports.__esModule = true;
|
|
|
53649
53701
|
//# sourceMappingURL=service_plan.js.map
|
|
53650
53702
|
|
|
53651
53703
|
/***/ }),
|
|
53652
|
-
/*
|
|
53704
|
+
/* 377 */
|
|
53653
53705
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53654
53706
|
|
|
53655
53707
|
"use strict";
|
|
@@ -53665,7 +53717,7 @@ var ServiceWindowType;
|
|
|
53665
53717
|
//# sourceMappingURL=service_window.js.map
|
|
53666
53718
|
|
|
53667
53719
|
/***/ }),
|
|
53668
|
-
/*
|
|
53720
|
+
/* 378 */
|
|
53669
53721
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53670
53722
|
|
|
53671
53723
|
"use strict";
|
|
@@ -53704,7 +53756,7 @@ var SharingMethod;
|
|
|
53704
53756
|
//# sourceMappingURL=shared_location.js.map
|
|
53705
53757
|
|
|
53706
53758
|
/***/ }),
|
|
53707
|
-
/*
|
|
53759
|
+
/* 379 */
|
|
53708
53760
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53709
53761
|
|
|
53710
53762
|
"use strict";
|
|
@@ -53727,7 +53779,7 @@ var ShiftRule;
|
|
|
53727
53779
|
//# sourceMappingURL=shift.js.map
|
|
53728
53780
|
|
|
53729
53781
|
/***/ }),
|
|
53730
|
-
/*
|
|
53782
|
+
/* 380 */
|
|
53731
53783
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53732
53784
|
|
|
53733
53785
|
"use strict";
|
|
@@ -53736,7 +53788,7 @@ exports.__esModule = true;
|
|
|
53736
53788
|
//# sourceMappingURL=skill.js.map
|
|
53737
53789
|
|
|
53738
53790
|
/***/ }),
|
|
53739
|
-
/*
|
|
53791
|
+
/* 381 */
|
|
53740
53792
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53741
53793
|
|
|
53742
53794
|
"use strict";
|
|
@@ -53745,7 +53797,7 @@ exports.__esModule = true;
|
|
|
53745
53797
|
//# sourceMappingURL=sms_data.js.map
|
|
53746
53798
|
|
|
53747
53799
|
/***/ }),
|
|
53748
|
-
/*
|
|
53800
|
+
/* 382 */
|
|
53749
53801
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53750
53802
|
|
|
53751
53803
|
"use strict";
|
|
@@ -53762,7 +53814,7 @@ var NumberType;
|
|
|
53762
53814
|
//# sourceMappingURL=sms_number.js.map
|
|
53763
53815
|
|
|
53764
53816
|
/***/ }),
|
|
53765
|
-
/*
|
|
53817
|
+
/* 383 */
|
|
53766
53818
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53767
53819
|
|
|
53768
53820
|
"use strict";
|
|
@@ -53771,7 +53823,7 @@ exports.__esModule = true;
|
|
|
53771
53823
|
//# sourceMappingURL=sms_setting.js.map
|
|
53772
53824
|
|
|
53773
53825
|
/***/ }),
|
|
53774
|
-
/*
|
|
53826
|
+
/* 384 */
|
|
53775
53827
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53776
53828
|
|
|
53777
53829
|
"use strict";
|
|
@@ -53780,7 +53832,7 @@ exports.__esModule = true;
|
|
|
53780
53832
|
//# sourceMappingURL=tag.js.map
|
|
53781
53833
|
|
|
53782
53834
|
/***/ }),
|
|
53783
|
-
/*
|
|
53835
|
+
/* 385 */
|
|
53784
53836
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53785
53837
|
|
|
53786
53838
|
"use strict";
|
|
@@ -53789,7 +53841,7 @@ exports.__esModule = true;
|
|
|
53789
53841
|
//# sourceMappingURL=tag_customer_configuration.js.map
|
|
53790
53842
|
|
|
53791
53843
|
/***/ }),
|
|
53792
|
-
/*
|
|
53844
|
+
/* 386 */
|
|
53793
53845
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53794
53846
|
|
|
53795
53847
|
"use strict";
|
|
@@ -53798,7 +53850,7 @@ exports.__esModule = true;
|
|
|
53798
53850
|
//# sourceMappingURL=tag_merchant_configuration.js.map
|
|
53799
53851
|
|
|
53800
53852
|
/***/ }),
|
|
53801
|
-
/*
|
|
53853
|
+
/* 387 */
|
|
53802
53854
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53803
53855
|
|
|
53804
53856
|
"use strict";
|
|
@@ -53807,13 +53859,13 @@ exports.__esModule = true;
|
|
|
53807
53859
|
//# sourceMappingURL=tag_rules_configuration.js.map
|
|
53808
53860
|
|
|
53809
53861
|
/***/ }),
|
|
53810
|
-
/*
|
|
53862
|
+
/* 388 */
|
|
53811
53863
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53812
53864
|
|
|
53813
53865
|
"use strict";
|
|
53814
53866
|
|
|
53815
53867
|
exports.__esModule = true;
|
|
53816
|
-
exports.Association = exports.InventoryServiceType = exports.DeliveryMethod = exports.RogueReasons = exports.PreparationStatus = exports.PaymentMethods = exports.PickupDropoffOption = exports.StatusChangedType = exports.TaskAutomaticallyCancelled = exports.TaskTypeId = exports.ScanningRole = exports.InventoryChangeType = exports.TaskStatus = exports.AddressType = exports.TaskHistoryOrigin = exports.NoteType = void 0;
|
|
53868
|
+
exports.Association = exports.InventoryServiceType = exports.DeliveryMethod = exports.RogueReasons = exports.PreparationStatus = exports.PaymentMethods = exports.PickupDropoffOption = exports.StatusChangedType = exports.TaskAutomaticallyCancelled = exports.TaskTypeId = exports.ScanningRole = exports.InventoryChangeType = exports.TaskStatus = exports.AddressType = exports.TaskHistoryOrigin = exports.TaskHistoryEvent = exports.NoteType = void 0;
|
|
53817
53869
|
var NoteType;
|
|
53818
53870
|
(function (NoteType) {
|
|
53819
53871
|
NoteType["FormattedTaskNote"] = "FormattedTaskNote";
|
|
@@ -53825,6 +53877,59 @@ var NoteType;
|
|
|
53825
53877
|
NoteType["Signature"] = "Signature";
|
|
53826
53878
|
NoteType["Document"] = "Document";
|
|
53827
53879
|
})(NoteType = exports.NoteType || (exports.NoteType = {}));
|
|
53880
|
+
var TaskHistoryEvent;
|
|
53881
|
+
(function (TaskHistoryEvent) {
|
|
53882
|
+
TaskHistoryEvent[TaskHistoryEvent["status_changed"] = 0] = "status_changed";
|
|
53883
|
+
TaskHistoryEvent[TaskHistoryEvent["application_event"] = 1] = "application_event";
|
|
53884
|
+
TaskHistoryEvent[TaskHistoryEvent["postpone_notification_event"] = 2] = "postpone_notification_event";
|
|
53885
|
+
TaskHistoryEvent[TaskHistoryEvent["late_notification_event"] = 3] = "late_notification_event";
|
|
53886
|
+
TaskHistoryEvent[TaskHistoryEvent["reassigned"] = 4] = "reassigned";
|
|
53887
|
+
TaskHistoryEvent[TaskHistoryEvent["shared_location_sent"] = 5] = "shared_location_sent";
|
|
53888
|
+
TaskHistoryEvent[TaskHistoryEvent["client_alert"] = 6] = "client_alert";
|
|
53889
|
+
TaskHistoryEvent[TaskHistoryEvent["estimations_updated"] = 7] = "estimations_updated";
|
|
53890
|
+
TaskHistoryEvent[TaskHistoryEvent["marked_as_done"] = 8] = "marked_as_done";
|
|
53891
|
+
TaskHistoryEvent[TaskHistoryEvent["activity_change"] = 9] = "activity_change";
|
|
53892
|
+
TaskHistoryEvent[TaskHistoryEvent["administrator_notification"] = 10] = "administrator_notification";
|
|
53893
|
+
TaskHistoryEvent[TaskHistoryEvent["user_rated"] = 11] = "user_rated";
|
|
53894
|
+
TaskHistoryEvent[TaskHistoryEvent["shared_location_cancelled"] = 12] = "shared_location_cancelled";
|
|
53895
|
+
TaskHistoryEvent[TaskHistoryEvent["customer_alert"] = 13] = "customer_alert";
|
|
53896
|
+
TaskHistoryEvent[TaskHistoryEvent["reject_event"] = 14] = "reject_event";
|
|
53897
|
+
TaskHistoryEvent[TaskHistoryEvent["dismiss_task"] = 15] = "dismiss_task";
|
|
53898
|
+
TaskHistoryEvent[TaskHistoryEvent["payment_event"] = 16] = "payment_event";
|
|
53899
|
+
TaskHistoryEvent[TaskHistoryEvent["customer_added_note"] = 17] = "customer_added_note";
|
|
53900
|
+
TaskHistoryEvent[TaskHistoryEvent["driver_turned_off_gps"] = 18] = "driver_turned_off_gps";
|
|
53901
|
+
TaskHistoryEvent[TaskHistoryEvent["driver_gps_back"] = 19] = "driver_gps_back";
|
|
53902
|
+
TaskHistoryEvent[TaskHistoryEvent["client_sent_tip"] = 20] = "client_sent_tip";
|
|
53903
|
+
TaskHistoryEvent[TaskHistoryEvent["driver_lost_gps_reception"] = 21] = "driver_lost_gps_reception";
|
|
53904
|
+
TaskHistoryEvent[TaskHistoryEvent["driver_found_gps_reception"] = 22] = "driver_found_gps_reception";
|
|
53905
|
+
TaskHistoryEvent[TaskHistoryEvent["auto_dispatch_no_drivers_found"] = 23] = "auto_dispatch_no_drivers_found";
|
|
53906
|
+
TaskHistoryEvent[TaskHistoryEvent["task_started_event"] = 24] = "task_started_event";
|
|
53907
|
+
TaskHistoryEvent[TaskHistoryEvent["task_cancelled_Event"] = 25] = "task_cancelled_Event";
|
|
53908
|
+
TaskHistoryEvent[TaskHistoryEvent["webhooks_event"] = 26] = "webhooks_event";
|
|
53909
|
+
TaskHistoryEvent[TaskHistoryEvent["checkin_out_of_geofence"] = 27] = "checkin_out_of_geofence";
|
|
53910
|
+
TaskHistoryEvent[TaskHistoryEvent["shared_location_sent_via_push"] = 28] = "shared_location_sent_via_push";
|
|
53911
|
+
TaskHistoryEvent[TaskHistoryEvent["customer_called_driver"] = 29] = "customer_called_driver";
|
|
53912
|
+
TaskHistoryEvent[TaskHistoryEvent["driver_called_customer"] = 30] = "driver_called_customer";
|
|
53913
|
+
TaskHistoryEvent[TaskHistoryEvent["customer_smsed_driver"] = 31] = "customer_smsed_driver";
|
|
53914
|
+
TaskHistoryEvent[TaskHistoryEvent["driver_smsed_customer"] = 32] = "driver_smsed_customer";
|
|
53915
|
+
TaskHistoryEvent[TaskHistoryEvent["eta_updated"] = 33] = "eta_updated";
|
|
53916
|
+
TaskHistoryEvent[TaskHistoryEvent["task_forward_declined"] = 34] = "task_forward_declined";
|
|
53917
|
+
TaskHistoryEvent[TaskHistoryEvent["task_forward_accepted"] = 35] = "task_forward_accepted";
|
|
53918
|
+
TaskHistoryEvent[TaskHistoryEvent["task_rescheduled"] = 36] = "task_rescheduled";
|
|
53919
|
+
TaskHistoryEvent[TaskHistoryEvent["distance_traveled_updated_manually"] = 37] = "distance_traveled_updated_manually";
|
|
53920
|
+
TaskHistoryEvent[TaskHistoryEvent["geocode"] = 38] = "geocode";
|
|
53921
|
+
TaskHistoryEvent[TaskHistoryEvent["task_assigned_to_team"] = 39] = "task_assigned_to_team";
|
|
53922
|
+
TaskHistoryEvent[TaskHistoryEvent["notnow_task"] = 40] = "notnow_task";
|
|
53923
|
+
TaskHistoryEvent[TaskHistoryEvent["preparation_status_changed"] = 41] = "preparation_status_changed";
|
|
53924
|
+
TaskHistoryEvent[TaskHistoryEvent["task_broadcasted"] = 42] = "task_broadcasted";
|
|
53925
|
+
TaskHistoryEvent[TaskHistoryEvent["route_optimized"] = 43] = "route_optimized";
|
|
53926
|
+
TaskHistoryEvent[TaskHistoryEvent["external_fleet_changed"] = 44] = "external_fleet_changed";
|
|
53927
|
+
TaskHistoryEvent[TaskHistoryEvent["external_delivery_changed"] = 45] = "external_delivery_changed";
|
|
53928
|
+
TaskHistoryEvent[TaskHistoryEvent["reschedule_virtual_task"] = 46] = "reschedule_virtual_task";
|
|
53929
|
+
TaskHistoryEvent[TaskHistoryEvent["task_schedule_ready_time_window_updated"] = 47] = "task_schedule_ready_time_window_updated";
|
|
53930
|
+
TaskHistoryEvent[TaskHistoryEvent["task_ready_to_execute_changed"] = 48] = "task_ready_to_execute_changed";
|
|
53931
|
+
TaskHistoryEvent[TaskHistoryEvent["way_point_sla_changed"] = 49] = "way_point_sla_changed";
|
|
53932
|
+
})(TaskHistoryEvent = exports.TaskHistoryEvent || (exports.TaskHistoryEvent = {}));
|
|
53828
53933
|
var TaskHistoryOrigin;
|
|
53829
53934
|
(function (TaskHistoryOrigin) {
|
|
53830
53935
|
TaskHistoryOrigin[TaskHistoryOrigin["UNKNOWN"] = 0] = "UNKNOWN";
|
|
@@ -53963,7 +54068,7 @@ var Association;
|
|
|
53963
54068
|
//# sourceMappingURL=task.js.map
|
|
53964
54069
|
|
|
53965
54070
|
/***/ }),
|
|
53966
|
-
/*
|
|
54071
|
+
/* 389 */
|
|
53967
54072
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53968
54073
|
|
|
53969
54074
|
"use strict";
|
|
@@ -53984,7 +54089,7 @@ var AutoScheduleType;
|
|
|
53984
54089
|
//# sourceMappingURL=task_configuration.js.map
|
|
53985
54090
|
|
|
53986
54091
|
/***/ }),
|
|
53987
|
-
/*
|
|
54092
|
+
/* 390 */
|
|
53988
54093
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53989
54094
|
|
|
53990
54095
|
"use strict";
|
|
@@ -53993,7 +54098,7 @@ exports.__esModule = true;
|
|
|
53993
54098
|
//# sourceMappingURL=task_payment_history.js.map
|
|
53994
54099
|
|
|
53995
54100
|
/***/ }),
|
|
53996
|
-
/*
|
|
54101
|
+
/* 391 */
|
|
53997
54102
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53998
54103
|
|
|
53999
54104
|
"use strict";
|
|
@@ -54007,7 +54112,7 @@ var TaskServiceType;
|
|
|
54007
54112
|
//# sourceMappingURL=task_service.js.map
|
|
54008
54113
|
|
|
54009
54114
|
/***/ }),
|
|
54010
|
-
/*
|
|
54115
|
+
/* 392 */
|
|
54011
54116
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54012
54117
|
|
|
54013
54118
|
"use strict";
|
|
@@ -54016,7 +54121,7 @@ exports.__esModule = true;
|
|
|
54016
54121
|
//# sourceMappingURL=team_configuration.js.map
|
|
54017
54122
|
|
|
54018
54123
|
/***/ }),
|
|
54019
|
-
/*
|
|
54124
|
+
/* 393 */
|
|
54020
54125
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54021
54126
|
|
|
54022
54127
|
"use strict";
|
|
@@ -54025,7 +54130,7 @@ exports.__esModule = true;
|
|
|
54025
54130
|
//# sourceMappingURL=team_service_zip_codes.js.map
|
|
54026
54131
|
|
|
54027
54132
|
/***/ }),
|
|
54028
|
-
/*
|
|
54133
|
+
/* 394 */
|
|
54029
54134
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54030
54135
|
|
|
54031
54136
|
"use strict";
|
|
@@ -54034,7 +54139,7 @@ exports.__esModule = true;
|
|
|
54034
54139
|
//# sourceMappingURL=teams.js.map
|
|
54035
54140
|
|
|
54036
54141
|
/***/ }),
|
|
54037
|
-
/*
|
|
54142
|
+
/* 395 */
|
|
54038
54143
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54039
54144
|
|
|
54040
54145
|
"use strict";
|
|
@@ -54043,7 +54148,7 @@ exports.__esModule = true;
|
|
|
54043
54148
|
//# sourceMappingURL=user_configuration.js.map
|
|
54044
54149
|
|
|
54045
54150
|
/***/ }),
|
|
54046
|
-
/*
|
|
54151
|
+
/* 396 */
|
|
54047
54152
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54048
54153
|
|
|
54049
54154
|
"use strict";
|
|
@@ -54052,7 +54157,7 @@ exports.__esModule = true;
|
|
|
54052
54157
|
//# sourceMappingURL=user_realtime_data.js.map
|
|
54053
54158
|
|
|
54054
54159
|
/***/ }),
|
|
54055
|
-
/*
|
|
54160
|
+
/* 397 */
|
|
54056
54161
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54057
54162
|
|
|
54058
54163
|
"use strict";
|
|
@@ -54061,7 +54166,7 @@ exports.__esModule = true;
|
|
|
54061
54166
|
//# sourceMappingURL=user_types.js.map
|
|
54062
54167
|
|
|
54063
54168
|
/***/ }),
|
|
54064
|
-
/*
|
|
54169
|
+
/* 398 */
|
|
54065
54170
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54066
54171
|
|
|
54067
54172
|
"use strict";
|
|
@@ -54098,7 +54203,7 @@ var UserStatus;
|
|
|
54098
54203
|
//# sourceMappingURL=users.js.map
|
|
54099
54204
|
|
|
54100
54205
|
/***/ }),
|
|
54101
|
-
/*
|
|
54206
|
+
/* 399 */
|
|
54102
54207
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54103
54208
|
|
|
54104
54209
|
"use strict";
|
|
@@ -54107,7 +54212,7 @@ exports.__esModule = true;
|
|
|
54107
54212
|
//# sourceMappingURL=vehicle.js.map
|
|
54108
54213
|
|
|
54109
54214
|
/***/ }),
|
|
54110
|
-
/*
|
|
54215
|
+
/* 400 */
|
|
54111
54216
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54112
54217
|
|
|
54113
54218
|
"use strict";
|
|
@@ -54116,7 +54221,7 @@ exports.__esModule = true;
|
|
|
54116
54221
|
//# sourceMappingURL=vehicle_type.js.map
|
|
54117
54222
|
|
|
54118
54223
|
/***/ }),
|
|
54119
|
-
/*
|
|
54224
|
+
/* 401 */
|
|
54120
54225
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54121
54226
|
|
|
54122
54227
|
"use strict";
|
|
@@ -54125,7 +54230,7 @@ exports.__esModule = true;
|
|
|
54125
54230
|
//# sourceMappingURL=web_application_configuration.js.map
|
|
54126
54231
|
|
|
54127
54232
|
/***/ }),
|
|
54128
|
-
/*
|
|
54233
|
+
/* 402 */
|
|
54129
54234
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54130
54235
|
|
|
54131
54236
|
"use strict";
|
|
@@ -54134,7 +54239,7 @@ exports.__esModule = true;
|
|
|
54134
54239
|
//# sourceMappingURL=webhooks.js.map
|
|
54135
54240
|
|
|
54136
54241
|
/***/ }),
|
|
54137
|
-
/*
|
|
54242
|
+
/* 403 */
|
|
54138
54243
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54139
54244
|
|
|
54140
54245
|
"use strict";
|
|
@@ -54150,7 +54255,7 @@ var Plan;
|
|
|
54150
54255
|
//# sourceMappingURL=webhooks_configuration.js.map
|
|
54151
54256
|
|
|
54152
54257
|
/***/ }),
|
|
54153
|
-
/*
|
|
54258
|
+
/* 404 */
|
|
54154
54259
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54155
54260
|
|
|
54156
54261
|
"use strict";
|
|
@@ -54159,7 +54264,7 @@ exports.__esModule = true;
|
|
|
54159
54264
|
//# sourceMappingURL=widget.js.map
|
|
54160
54265
|
|
|
54161
54266
|
/***/ }),
|
|
54162
|
-
/*
|
|
54267
|
+
/* 405 */
|
|
54163
54268
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54164
54269
|
|
|
54165
54270
|
"use strict";
|
|
@@ -54168,7 +54273,7 @@ exports.__esModule = true;
|
|
|
54168
54273
|
//# sourceMappingURL=windows.js.map
|
|
54169
54274
|
|
|
54170
54275
|
/***/ }),
|
|
54171
|
-
/*
|
|
54276
|
+
/* 406 */
|
|
54172
54277
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54173
54278
|
|
|
54174
54279
|
"use strict";
|
|
@@ -54236,13 +54341,13 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
54236
54341
|
}
|
|
54237
54342
|
};
|
|
54238
54343
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54239
|
-
var StoreEntity_1 = __webpack_require__(
|
|
54344
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
54240
54345
|
var types_1 = __webpack_require__(101);
|
|
54241
54346
|
var Entity_1 = __webpack_require__(5);
|
|
54242
54347
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
54243
54348
|
var rxjs_1 = __webpack_require__(71);
|
|
54244
54349
|
var operators_1 = __webpack_require__(63);
|
|
54245
|
-
var lodash_1 = __webpack_require__(
|
|
54350
|
+
var lodash_1 = __webpack_require__(11);
|
|
54246
54351
|
var TaskHelpers_1 = __webpack_require__(102);
|
|
54247
54352
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
54248
54353
|
var THROTTLE_TIME = 500;
|
|
@@ -54779,7 +54884,7 @@ exports.default = TaskEntity;
|
|
|
54779
54884
|
//# sourceMappingURL=TaskEntity.js.map
|
|
54780
54885
|
|
|
54781
54886
|
/***/ }),
|
|
54782
|
-
/*
|
|
54887
|
+
/* 407 */
|
|
54783
54888
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54784
54889
|
|
|
54785
54890
|
"use strict";
|
|
@@ -54821,7 +54926,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
54821
54926
|
}
|
|
54822
54927
|
};
|
|
54823
54928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54824
|
-
var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(
|
|
54929
|
+
var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(408);
|
|
54825
54930
|
var ApplicationMerchantConfigurationApi = /** @class */ (function () {
|
|
54826
54931
|
function ApplicationMerchantConfigurationApi(session, merchantConfigurationApi) {
|
|
54827
54932
|
this.entity = new ApplicationMerchantConfigurationEntity_1.default(session);
|
|
@@ -54940,7 +55045,7 @@ exports.default = ApplicationMerchantConfigurationApi;
|
|
|
54940
55045
|
//# sourceMappingURL=ApplicationMerchantConfigurationApi.js.map
|
|
54941
55046
|
|
|
54942
55047
|
/***/ }),
|
|
54943
|
-
/*
|
|
55048
|
+
/* 408 */
|
|
54944
55049
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54945
55050
|
|
|
54946
55051
|
"use strict";
|
|
@@ -55170,7 +55275,7 @@ exports.default = ApplicationMerchantConfigurationEntity;
|
|
|
55170
55275
|
//# sourceMappingURL=ApplicationMerchantConfigurationEntity.js.map
|
|
55171
55276
|
|
|
55172
55277
|
/***/ }),
|
|
55173
|
-
/*
|
|
55278
|
+
/* 409 */
|
|
55174
55279
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55175
55280
|
|
|
55176
55281
|
"use strict";
|
|
@@ -55212,7 +55317,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55212
55317
|
}
|
|
55213
55318
|
};
|
|
55214
55319
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55215
|
-
var ApplicationTeamConfigurationEntity_1 = __webpack_require__(
|
|
55320
|
+
var ApplicationTeamConfigurationEntity_1 = __webpack_require__(410);
|
|
55216
55321
|
var ApplicationTeamConfigurationApi = /** @class */ (function () {
|
|
55217
55322
|
function ApplicationTeamConfigurationApi(session) {
|
|
55218
55323
|
this.entity = new ApplicationTeamConfigurationEntity_1.default(session);
|
|
@@ -55253,7 +55358,7 @@ exports.default = ApplicationTeamConfigurationApi;
|
|
|
55253
55358
|
//# sourceMappingURL=ApplicationTeamConfigurationApi.js.map
|
|
55254
55359
|
|
|
55255
55360
|
/***/ }),
|
|
55256
|
-
/*
|
|
55361
|
+
/* 410 */
|
|
55257
55362
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55258
55363
|
|
|
55259
55364
|
"use strict";
|
|
@@ -55366,13 +55471,13 @@ exports.default = ApplicationTeamConfigurationEntity;
|
|
|
55366
55471
|
//# sourceMappingURL=ApplicationTeamConfigurationEntity.js.map
|
|
55367
55472
|
|
|
55368
55473
|
/***/ }),
|
|
55369
|
-
/*
|
|
55474
|
+
/* 411 */
|
|
55370
55475
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55371
55476
|
|
|
55372
55477
|
"use strict";
|
|
55373
55478
|
|
|
55374
55479
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55375
|
-
var GoogleMapsHelper_1 = __webpack_require__(
|
|
55480
|
+
var GoogleMapsHelper_1 = __webpack_require__(412);
|
|
55376
55481
|
var GoogleMapsHelperApi = /** @class */ (function () {
|
|
55377
55482
|
function GoogleMapsHelperApi(session) {
|
|
55378
55483
|
this.googleMapsHelperEntity = new GoogleMapsHelper_1.default(session);
|
|
@@ -55386,7 +55491,7 @@ exports.default = GoogleMapsHelperApi;
|
|
|
55386
55491
|
//# sourceMappingURL=GoogleMapsHelperApi.js.map
|
|
55387
55492
|
|
|
55388
55493
|
/***/ }),
|
|
55389
|
-
/*
|
|
55494
|
+
/* 412 */
|
|
55390
55495
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55391
55496
|
|
|
55392
55497
|
"use strict";
|
|
@@ -55467,7 +55572,7 @@ exports.default = GoogleMapsHelper;
|
|
|
55467
55572
|
//# sourceMappingURL=GoogleMapsHelper.js.map
|
|
55468
55573
|
|
|
55469
55574
|
/***/ }),
|
|
55470
|
-
/*
|
|
55575
|
+
/* 413 */
|
|
55471
55576
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55472
55577
|
|
|
55473
55578
|
"use strict";
|
|
@@ -55509,7 +55614,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55509
55614
|
}
|
|
55510
55615
|
};
|
|
55511
55616
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55512
|
-
var OnboardingEntity_1 = __webpack_require__(
|
|
55617
|
+
var OnboardingEntity_1 = __webpack_require__(414);
|
|
55513
55618
|
var OnboardingApi = /** @class */ (function () {
|
|
55514
55619
|
function OnboardingApi(session) {
|
|
55515
55620
|
this.onboardingEntity = new OnboardingEntity_1.default(session);
|
|
@@ -55534,7 +55639,7 @@ exports.default = OnboardingApi;
|
|
|
55534
55639
|
//# sourceMappingURL=OnboardingApi.js.map
|
|
55535
55640
|
|
|
55536
55641
|
/***/ }),
|
|
55537
|
-
/*
|
|
55642
|
+
/* 414 */
|
|
55538
55643
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55539
55644
|
|
|
55540
55645
|
"use strict";
|
|
@@ -55567,13 +55672,13 @@ exports.default = OnboardingEntity;
|
|
|
55567
55672
|
//# sourceMappingURL=OnboardingEntity.js.map
|
|
55568
55673
|
|
|
55569
55674
|
/***/ }),
|
|
55570
|
-
/*
|
|
55675
|
+
/* 415 */
|
|
55571
55676
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55572
55677
|
|
|
55573
55678
|
"use strict";
|
|
55574
55679
|
|
|
55575
55680
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55576
|
-
var FleetRouterEntity_1 = __webpack_require__(
|
|
55681
|
+
var FleetRouterEntity_1 = __webpack_require__(416);
|
|
55577
55682
|
var FleetRouterApi = /** @class */ (function () {
|
|
55578
55683
|
function FleetRouterApi(session) {
|
|
55579
55684
|
this.fleetRouterEntity = new FleetRouterEntity_1.default(session);
|
|
@@ -55591,7 +55696,7 @@ var FleetRouterApi = /** @class */ (function () {
|
|
|
55591
55696
|
return this.fleetRouterEntity.service.delete(id);
|
|
55592
55697
|
};
|
|
55593
55698
|
FleetRouterApi.prototype.patch = function (params) {
|
|
55594
|
-
return this.fleetRouterEntity.service.patch(params);
|
|
55699
|
+
return this.fleetRouterEntity.service.patch(undefined, params);
|
|
55595
55700
|
};
|
|
55596
55701
|
return FleetRouterApi;
|
|
55597
55702
|
}());
|
|
@@ -55599,7 +55704,7 @@ exports.default = FleetRouterApi;
|
|
|
55599
55704
|
//# sourceMappingURL=FleetRouterApi.js.map
|
|
55600
55705
|
|
|
55601
55706
|
/***/ }),
|
|
55602
|
-
/*
|
|
55707
|
+
/* 416 */
|
|
55603
55708
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55604
55709
|
|
|
55605
55710
|
"use strict";
|
|
@@ -55620,7 +55725,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
55620
55725
|
};
|
|
55621
55726
|
})();
|
|
55622
55727
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55623
|
-
var StoreEntity_1 = __webpack_require__(
|
|
55728
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
55624
55729
|
var Entity_1 = __webpack_require__(5);
|
|
55625
55730
|
var FleetRouterEntity = /** @class */ (function (_super) {
|
|
55626
55731
|
__extends(FleetRouterEntity, _super);
|
|
@@ -55638,7 +55743,163 @@ exports.default = FleetRouterEntity;
|
|
|
55638
55743
|
//# sourceMappingURL=FleetRouterEntity.js.map
|
|
55639
55744
|
|
|
55640
55745
|
/***/ }),
|
|
55641
|
-
/*
|
|
55746
|
+
/* 417 */
|
|
55747
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55748
|
+
|
|
55749
|
+
"use strict";
|
|
55750
|
+
|
|
55751
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55752
|
+
var AlertConfigurationEntity_1 = __webpack_require__(418);
|
|
55753
|
+
var ConfigurationEntity_1 = __webpack_require__(419);
|
|
55754
|
+
var SetEntity_1 = __webpack_require__(420);
|
|
55755
|
+
var AlertConfigurationApi = /** @class */ (function () {
|
|
55756
|
+
function AlertConfigurationApi(session) {
|
|
55757
|
+
this.alertConfigurationEntity = new AlertConfigurationEntity_1.default(session);
|
|
55758
|
+
this.configurationEntity = new ConfigurationEntity_1.default(session);
|
|
55759
|
+
this.alertSetEntity = new SetEntity_1.default(session);
|
|
55760
|
+
}
|
|
55761
|
+
AlertConfigurationApi.prototype.getAll = function () {
|
|
55762
|
+
return this.alertConfigurationEntity.service.getAll();
|
|
55763
|
+
};
|
|
55764
|
+
AlertConfigurationApi.prototype.createSet = function (request) {
|
|
55765
|
+
return this.alertSetEntity.service.create(request);
|
|
55766
|
+
};
|
|
55767
|
+
AlertConfigurationApi.prototype.deleteSet = function (setId) {
|
|
55768
|
+
return this.alertSetEntity.service.delete(setId);
|
|
55769
|
+
};
|
|
55770
|
+
AlertConfigurationApi.prototype.updateSet = function (setId, request) {
|
|
55771
|
+
return this.alertSetEntity.service.patch(setId, request);
|
|
55772
|
+
};
|
|
55773
|
+
AlertConfigurationApi.prototype.createAlertConfiguration = function (request) {
|
|
55774
|
+
return this.configurationEntity.service.create(request);
|
|
55775
|
+
};
|
|
55776
|
+
AlertConfigurationApi.prototype.deleteAlertConfiguration = function (configurationId) {
|
|
55777
|
+
return this.configurationEntity.service.delete(configurationId);
|
|
55778
|
+
};
|
|
55779
|
+
AlertConfigurationApi.prototype.updateAlertConfiguration = function (configurationId, request) {
|
|
55780
|
+
return this.configurationEntity.service.patch(configurationId, request);
|
|
55781
|
+
};
|
|
55782
|
+
return AlertConfigurationApi;
|
|
55783
|
+
}());
|
|
55784
|
+
exports.default = AlertConfigurationApi;
|
|
55785
|
+
//# sourceMappingURL=AlertConfigurationApi.js.map
|
|
55786
|
+
|
|
55787
|
+
/***/ }),
|
|
55788
|
+
/* 418 */
|
|
55789
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55790
|
+
|
|
55791
|
+
"use strict";
|
|
55792
|
+
|
|
55793
|
+
var __extends = (this && this.__extends) || (function () {
|
|
55794
|
+
var extendStatics = function (d, b) {
|
|
55795
|
+
extendStatics = Object.setPrototypeOf ||
|
|
55796
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
55797
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
55798
|
+
return extendStatics(d, b);
|
|
55799
|
+
};
|
|
55800
|
+
return function (d, b) {
|
|
55801
|
+
if (typeof b !== "function" && b !== null)
|
|
55802
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
55803
|
+
extendStatics(d, b);
|
|
55804
|
+
function __() { this.constructor = d; }
|
|
55805
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
55806
|
+
};
|
|
55807
|
+
})();
|
|
55808
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55809
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
55810
|
+
var Entity_1 = __webpack_require__(5);
|
|
55811
|
+
var AlertConfigurationEntity = /** @class */ (function (_super) {
|
|
55812
|
+
__extends(AlertConfigurationEntity, _super);
|
|
55813
|
+
function AlertConfigurationEntity(session) {
|
|
55814
|
+
return _super.call(this, {
|
|
55815
|
+
session: session,
|
|
55816
|
+
entityName: 'alerts_configuration',
|
|
55817
|
+
routes: [Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Delete, Entity_1.BaseRoutes.Update, Entity_1.BaseRoutes.GetAll, Entity_1.BaseRoutes.Patch]
|
|
55818
|
+
}) || this;
|
|
55819
|
+
}
|
|
55820
|
+
return AlertConfigurationEntity;
|
|
55821
|
+
}(StoreEntity_1.default));
|
|
55822
|
+
exports.default = AlertConfigurationEntity;
|
|
55823
|
+
//# sourceMappingURL=AlertConfigurationEntity.js.map
|
|
55824
|
+
|
|
55825
|
+
/***/ }),
|
|
55826
|
+
/* 419 */
|
|
55827
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55828
|
+
|
|
55829
|
+
"use strict";
|
|
55830
|
+
|
|
55831
|
+
var __extends = (this && this.__extends) || (function () {
|
|
55832
|
+
var extendStatics = function (d, b) {
|
|
55833
|
+
extendStatics = Object.setPrototypeOf ||
|
|
55834
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
55835
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
55836
|
+
return extendStatics(d, b);
|
|
55837
|
+
};
|
|
55838
|
+
return function (d, b) {
|
|
55839
|
+
if (typeof b !== "function" && b !== null)
|
|
55840
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
55841
|
+
extendStatics(d, b);
|
|
55842
|
+
function __() { this.constructor = d; }
|
|
55843
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
55844
|
+
};
|
|
55845
|
+
})();
|
|
55846
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55847
|
+
var Entity_1 = __webpack_require__(5);
|
|
55848
|
+
var ConfigurationEntity = /** @class */ (function (_super) {
|
|
55849
|
+
__extends(ConfigurationEntity, _super);
|
|
55850
|
+
function ConfigurationEntity(session) {
|
|
55851
|
+
return _super.call(this, {
|
|
55852
|
+
session: session,
|
|
55853
|
+
entityName: 'configurations',
|
|
55854
|
+
routePrefix: 'alerts_configuration',
|
|
55855
|
+
routes: [Entity_1.BaseRoutes.Patch, Entity_1.BaseRoutes.Delete, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Update]
|
|
55856
|
+
}) || this;
|
|
55857
|
+
}
|
|
55858
|
+
return ConfigurationEntity;
|
|
55859
|
+
}(Entity_1.default));
|
|
55860
|
+
exports.default = ConfigurationEntity;
|
|
55861
|
+
//# sourceMappingURL=ConfigurationEntity.js.map
|
|
55862
|
+
|
|
55863
|
+
/***/ }),
|
|
55864
|
+
/* 420 */
|
|
55865
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55866
|
+
|
|
55867
|
+
"use strict";
|
|
55868
|
+
|
|
55869
|
+
var __extends = (this && this.__extends) || (function () {
|
|
55870
|
+
var extendStatics = function (d, b) {
|
|
55871
|
+
extendStatics = Object.setPrototypeOf ||
|
|
55872
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
55873
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
55874
|
+
return extendStatics(d, b);
|
|
55875
|
+
};
|
|
55876
|
+
return function (d, b) {
|
|
55877
|
+
if (typeof b !== "function" && b !== null)
|
|
55878
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
55879
|
+
extendStatics(d, b);
|
|
55880
|
+
function __() { this.constructor = d; }
|
|
55881
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
55882
|
+
};
|
|
55883
|
+
})();
|
|
55884
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55885
|
+
var Entity_1 = __webpack_require__(5);
|
|
55886
|
+
var SetEntity = /** @class */ (function (_super) {
|
|
55887
|
+
__extends(SetEntity, _super);
|
|
55888
|
+
function SetEntity(session) {
|
|
55889
|
+
return _super.call(this, {
|
|
55890
|
+
session: session,
|
|
55891
|
+
entityName: 'sets',
|
|
55892
|
+
routePrefix: 'alerts_configuration',
|
|
55893
|
+
routes: [Entity_1.BaseRoutes.Patch, Entity_1.BaseRoutes.Delete, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Update]
|
|
55894
|
+
}) || this;
|
|
55895
|
+
}
|
|
55896
|
+
return SetEntity;
|
|
55897
|
+
}(Entity_1.default));
|
|
55898
|
+
exports.default = SetEntity;
|
|
55899
|
+
//# sourceMappingURL=SetEntity.js.map
|
|
55900
|
+
|
|
55901
|
+
/***/ }),
|
|
55902
|
+
/* 421 */
|
|
55642
55903
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55643
55904
|
|
|
55644
55905
|
"use strict";
|
|
@@ -55680,7 +55941,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55680
55941
|
}
|
|
55681
55942
|
};
|
|
55682
55943
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55683
|
-
var ServiceEntity_1 = __webpack_require__(
|
|
55944
|
+
var ServiceEntity_1 = __webpack_require__(422);
|
|
55684
55945
|
var ServiceApi = /** @class */ (function () {
|
|
55685
55946
|
function ServiceApi(session) {
|
|
55686
55947
|
this.entity = new ServiceEntity_1.default(session);
|
|
@@ -55701,7 +55962,7 @@ exports.default = ServiceApi;
|
|
|
55701
55962
|
//# sourceMappingURL=ServiceApi.js.map
|
|
55702
55963
|
|
|
55703
55964
|
/***/ }),
|
|
55704
|
-
/*
|
|
55965
|
+
/* 422 */
|
|
55705
55966
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55706
55967
|
|
|
55707
55968
|
"use strict";
|
|
@@ -55784,7 +56045,7 @@ exports.default = ServiceEntity;
|
|
|
55784
56045
|
//# sourceMappingURL=ServiceEntity.js.map
|
|
55785
56046
|
|
|
55786
56047
|
/***/ }),
|
|
55787
|
-
/*
|
|
56048
|
+
/* 423 */
|
|
55788
56049
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55789
56050
|
|
|
55790
56051
|
"use strict";
|
|
@@ -55826,7 +56087,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55826
56087
|
}
|
|
55827
56088
|
};
|
|
55828
56089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55829
|
-
var FleetTemplateEntity_1 = __webpack_require__(
|
|
56090
|
+
var FleetTemplateEntity_1 = __webpack_require__(424);
|
|
55830
56091
|
var FleetTemplateApi = /** @class */ (function () {
|
|
55831
56092
|
function FleetTemplateApi(session) {
|
|
55832
56093
|
this.entity = new FleetTemplateEntity_1.default(session);
|
|
@@ -55854,7 +56115,7 @@ exports.default = FleetTemplateApi;
|
|
|
55854
56115
|
//# sourceMappingURL=FleetTemplateApi.js.map
|
|
55855
56116
|
|
|
55856
56117
|
/***/ }),
|
|
55857
|
-
/*
|
|
56118
|
+
/* 424 */
|
|
55858
56119
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55859
56120
|
|
|
55860
56121
|
"use strict";
|
|
@@ -55955,7 +56216,7 @@ exports.fleetTemplatesExtractor = fleetTemplatesExtractor;
|
|
|
55955
56216
|
//# sourceMappingURL=FleetTemplateEntity.js.map
|
|
55956
56217
|
|
|
55957
56218
|
/***/ }),
|
|
55958
|
-
/*
|
|
56219
|
+
/* 425 */
|
|
55959
56220
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55960
56221
|
|
|
55961
56222
|
"use strict";
|
|
@@ -55997,7 +56258,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55997
56258
|
}
|
|
55998
56259
|
};
|
|
55999
56260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56000
|
-
var OpenFleetEntity_1 = __webpack_require__(
|
|
56261
|
+
var OpenFleetEntity_1 = __webpack_require__(426);
|
|
56001
56262
|
var OpenFleetApi = /** @class */ (function () {
|
|
56002
56263
|
function OpenFleetApi(session) {
|
|
56003
56264
|
this.entity = new OpenFleetEntity_1.default(session);
|
|
@@ -56064,7 +56325,7 @@ exports.default = OpenFleetApi;
|
|
|
56064
56325
|
//# sourceMappingURL=OpenFleetApi.js.map
|
|
56065
56326
|
|
|
56066
56327
|
/***/ }),
|
|
56067
|
-
/*
|
|
56328
|
+
/* 426 */
|
|
56068
56329
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56069
56330
|
|
|
56070
56331
|
"use strict";
|
|
@@ -56212,13 +56473,13 @@ exports.default = OpenFleetEntity;
|
|
|
56212
56473
|
//# sourceMappingURL=OpenFleetEntity.js.map
|
|
56213
56474
|
|
|
56214
56475
|
/***/ }),
|
|
56215
|
-
/*
|
|
56476
|
+
/* 427 */
|
|
56216
56477
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56217
56478
|
|
|
56218
56479
|
"use strict";
|
|
56219
56480
|
|
|
56220
56481
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56221
|
-
var Geocoding_1 = __webpack_require__(
|
|
56482
|
+
var Geocoding_1 = __webpack_require__(428);
|
|
56222
56483
|
var GeocodingApi = /** @class */ (function () {
|
|
56223
56484
|
function GeocodingApi(session) {
|
|
56224
56485
|
this.geocodingEntity = new Geocoding_1.default(session);
|
|
@@ -56235,7 +56496,7 @@ exports.default = GeocodingApi;
|
|
|
56235
56496
|
//# sourceMappingURL=GeocodingApi.js.map
|
|
56236
56497
|
|
|
56237
56498
|
/***/ }),
|
|
56238
|
-
/*
|
|
56499
|
+
/* 428 */
|
|
56239
56500
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56240
56501
|
|
|
56241
56502
|
"use strict";
|
|
@@ -56336,7 +56597,7 @@ exports.default = GeocodingEntity;
|
|
|
56336
56597
|
//# sourceMappingURL=Geocoding.js.map
|
|
56337
56598
|
|
|
56338
56599
|
/***/ }),
|
|
56339
|
-
/*
|
|
56600
|
+
/* 429 */
|
|
56340
56601
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56341
56602
|
|
|
56342
56603
|
"use strict";
|
|
@@ -56378,7 +56639,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56378
56639
|
}
|
|
56379
56640
|
};
|
|
56380
56641
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56381
|
-
var ApplicationEntity_1 = __webpack_require__(
|
|
56642
|
+
var ApplicationEntity_1 = __webpack_require__(430);
|
|
56382
56643
|
var ApplicationApi = /** @class */ (function () {
|
|
56383
56644
|
function ApplicationApi(session) {
|
|
56384
56645
|
this.entity = new ApplicationEntity_1.default(session);
|
|
@@ -56399,7 +56660,7 @@ exports.default = ApplicationApi;
|
|
|
56399
56660
|
//# sourceMappingURL=ApplicationApi.js.map
|
|
56400
56661
|
|
|
56401
56662
|
/***/ }),
|
|
56402
|
-
/*
|
|
56663
|
+
/* 430 */
|
|
56403
56664
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56404
56665
|
|
|
56405
56666
|
"use strict";
|
|
@@ -56467,9 +56728,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56467
56728
|
}
|
|
56468
56729
|
};
|
|
56469
56730
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56470
|
-
var StoreEntity_1 = __webpack_require__(
|
|
56471
|
-
var uuid_1 = __webpack_require__(
|
|
56472
|
-
var _ = __webpack_require__(
|
|
56731
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
56732
|
+
var uuid_1 = __webpack_require__(475);
|
|
56733
|
+
var _ = __webpack_require__(11);
|
|
56473
56734
|
var entityName = 'application_action';
|
|
56474
56735
|
var ApplicationEntity = /** @class */ (function (_super) {
|
|
56475
56736
|
__extends(ApplicationEntity, _super);
|
|
@@ -56562,7 +56823,7 @@ exports.default = ApplicationEntity;
|
|
|
56562
56823
|
//# sourceMappingURL=ApplicationEntity.js.map
|
|
56563
56824
|
|
|
56564
56825
|
/***/ }),
|
|
56565
|
-
/*
|
|
56826
|
+
/* 431 */
|
|
56566
56827
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56567
56828
|
|
|
56568
56829
|
"use strict";
|
|
@@ -56604,7 +56865,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56604
56865
|
}
|
|
56605
56866
|
};
|
|
56606
56867
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56607
|
-
var CustomerAvailabilityHourEntity_1 = __webpack_require__(
|
|
56868
|
+
var CustomerAvailabilityHourEntity_1 = __webpack_require__(432);
|
|
56608
56869
|
var CustomerAvailabilityHourApi = /** @class */ (function () {
|
|
56609
56870
|
function CustomerAvailabilityHourApi(session) {
|
|
56610
56871
|
this.customerAvailabilityHourEntity = new CustomerAvailabilityHourEntity_1.default(session);
|
|
@@ -56622,7 +56883,7 @@ exports.default = CustomerAvailabilityHourApi;
|
|
|
56622
56883
|
//# sourceMappingURL=CustomerAvailabilityHourApi.js.map
|
|
56623
56884
|
|
|
56624
56885
|
/***/ }),
|
|
56625
|
-
/*
|
|
56886
|
+
/* 432 */
|
|
56626
56887
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56627
56888
|
|
|
56628
56889
|
"use strict";
|
|
@@ -56680,7 +56941,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56680
56941
|
};
|
|
56681
56942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56682
56943
|
exports.Routes = void 0;
|
|
56683
|
-
var StoreEntity_1 = __webpack_require__(
|
|
56944
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
56684
56945
|
exports.Routes = {
|
|
56685
56946
|
GET_AVAILABILITY_HOURS: '/customer_availability_hours'
|
|
56686
56947
|
};
|
|
@@ -56733,13 +56994,13 @@ exports.default = CustomerAvailabilityHourEntity;
|
|
|
56733
56994
|
//# sourceMappingURL=CustomerAvailabilityHourEntity.js.map
|
|
56734
56995
|
|
|
56735
56996
|
/***/ }),
|
|
56736
|
-
/*
|
|
56997
|
+
/* 433 */
|
|
56737
56998
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56738
56999
|
|
|
56739
57000
|
"use strict";
|
|
56740
57001
|
|
|
56741
57002
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56742
|
-
var Shifts_1 = __webpack_require__(
|
|
57003
|
+
var Shifts_1 = __webpack_require__(434);
|
|
56743
57004
|
var ShiftsApi = /** @class */ (function () {
|
|
56744
57005
|
function ShiftsApi(session) {
|
|
56745
57006
|
this.shiftsEntity = new Shifts_1.default(session);
|
|
@@ -56762,7 +57023,7 @@ exports.default = ShiftsApi;
|
|
|
56762
57023
|
//# sourceMappingURL=ShiftsApi.js.map
|
|
56763
57024
|
|
|
56764
57025
|
/***/ }),
|
|
56765
|
-
/*
|
|
57026
|
+
/* 434 */
|
|
56766
57027
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56767
57028
|
|
|
56768
57029
|
"use strict";
|
|
@@ -56877,7 +57138,7 @@ exports.default = ShiftsEntity;
|
|
|
56877
57138
|
//# sourceMappingURL=Shifts.js.map
|
|
56878
57139
|
|
|
56879
57140
|
/***/ }),
|
|
56880
|
-
/*
|
|
57141
|
+
/* 435 */
|
|
56881
57142
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56882
57143
|
|
|
56883
57144
|
"use strict";
|
|
@@ -56919,7 +57180,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56919
57180
|
}
|
|
56920
57181
|
};
|
|
56921
57182
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56922
|
-
var ExclusionWindowEntity_1 = __webpack_require__(
|
|
57183
|
+
var ExclusionWindowEntity_1 = __webpack_require__(436);
|
|
56923
57184
|
var ExclusionWindowApi = /** @class */ (function () {
|
|
56924
57185
|
function ExclusionWindowApi(session) {
|
|
56925
57186
|
this.exclusionWindowEntity = new ExclusionWindowEntity_1.default(session);
|
|
@@ -56965,7 +57226,7 @@ exports.default = ExclusionWindowApi;
|
|
|
56965
57226
|
//# sourceMappingURL=ExclusionWindowApi.js.map
|
|
56966
57227
|
|
|
56967
57228
|
/***/ }),
|
|
56968
|
-
/*
|
|
57229
|
+
/* 436 */
|
|
56969
57230
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56970
57231
|
|
|
56971
57232
|
"use strict";
|
|
@@ -57055,7 +57316,7 @@ exports.default = ExclusionWindowEntity;
|
|
|
57055
57316
|
//# sourceMappingURL=ExclusionWindowEntity.js.map
|
|
57056
57317
|
|
|
57057
57318
|
/***/ }),
|
|
57058
|
-
/*
|
|
57319
|
+
/* 437 */
|
|
57059
57320
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57060
57321
|
|
|
57061
57322
|
"use strict";
|
|
@@ -57091,7 +57352,7 @@ exports.default = Country;
|
|
|
57091
57352
|
//# sourceMappingURL=Country.js.map
|
|
57092
57353
|
|
|
57093
57354
|
/***/ }),
|
|
57094
|
-
/*
|
|
57355
|
+
/* 438 */
|
|
57095
57356
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57096
57357
|
|
|
57097
57358
|
"use strict";
|
|
@@ -57133,7 +57394,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57133
57394
|
}
|
|
57134
57395
|
};
|
|
57135
57396
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57136
|
-
var OauthApplicationEntity_1 = __webpack_require__(
|
|
57397
|
+
var OauthApplicationEntity_1 = __webpack_require__(439);
|
|
57137
57398
|
var OauthApplicationApi = /** @class */ (function () {
|
|
57138
57399
|
function OauthApplicationApi(session) {
|
|
57139
57400
|
this.entity = new OauthApplicationEntity_1.default(session);
|
|
@@ -57193,7 +57454,7 @@ exports.default = OauthApplicationApi;
|
|
|
57193
57454
|
//# sourceMappingURL=OauthApplicationApi.js.map
|
|
57194
57455
|
|
|
57195
57456
|
/***/ }),
|
|
57196
|
-
/*
|
|
57457
|
+
/* 439 */
|
|
57197
57458
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57198
57459
|
|
|
57199
57460
|
"use strict";
|
|
@@ -57310,13 +57571,13 @@ exports.default = OauthApplicationEntity;
|
|
|
57310
57571
|
//# sourceMappingURL=OauthApplicationEntity.js.map
|
|
57311
57572
|
|
|
57312
57573
|
/***/ }),
|
|
57313
|
-
/*
|
|
57574
|
+
/* 440 */
|
|
57314
57575
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57315
57576
|
|
|
57316
57577
|
"use strict";
|
|
57317
57578
|
|
|
57318
57579
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57319
|
-
var InventoryEntity_1 = __webpack_require__(
|
|
57580
|
+
var InventoryEntity_1 = __webpack_require__(441);
|
|
57320
57581
|
var Inventory = /** @class */ (function () {
|
|
57321
57582
|
function Inventory(session) {
|
|
57322
57583
|
this.inventory = new InventoryEntity_1.default(session);
|
|
@@ -57339,7 +57600,7 @@ exports.default = Inventory;
|
|
|
57339
57600
|
//# sourceMappingURL=Inventory.js.map
|
|
57340
57601
|
|
|
57341
57602
|
/***/ }),
|
|
57342
|
-
/*
|
|
57603
|
+
/* 441 */
|
|
57343
57604
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57344
57605
|
|
|
57345
57606
|
"use strict";
|
|
@@ -57376,7 +57637,7 @@ exports.default = InventoryEntity;
|
|
|
57376
57637
|
//# sourceMappingURL=InventoryEntity.js.map
|
|
57377
57638
|
|
|
57378
57639
|
/***/ }),
|
|
57379
|
-
/*
|
|
57640
|
+
/* 442 */
|
|
57380
57641
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57381
57642
|
|
|
57382
57643
|
"use strict";
|
|
@@ -57418,7 +57679,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57418
57679
|
}
|
|
57419
57680
|
};
|
|
57420
57681
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57421
|
-
var PushNotificationRegistrationEntity_1 = __webpack_require__(
|
|
57682
|
+
var PushNotificationRegistrationEntity_1 = __webpack_require__(443);
|
|
57422
57683
|
var PushNotificationRegistration = /** @class */ (function () {
|
|
57423
57684
|
function PushNotificationRegistration(session) {
|
|
57424
57685
|
this.pushNotificationRegistrationEntity = new PushNotificationRegistrationEntity_1.default(session);
|
|
@@ -57443,7 +57704,7 @@ exports.default = PushNotificationRegistration;
|
|
|
57443
57704
|
//# sourceMappingURL=PushNotificationRegistration.js.map
|
|
57444
57705
|
|
|
57445
57706
|
/***/ }),
|
|
57446
|
-
/*
|
|
57707
|
+
/* 443 */
|
|
57447
57708
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57448
57709
|
|
|
57449
57710
|
"use strict";
|
|
@@ -57476,7 +57737,7 @@ exports.default = PushNotificationRegistrationEntity;
|
|
|
57476
57737
|
//# sourceMappingURL=PushNotificationRegistrationEntity.js.map
|
|
57477
57738
|
|
|
57478
57739
|
/***/ }),
|
|
57479
|
-
/*
|
|
57740
|
+
/* 444 */
|
|
57480
57741
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57481
57742
|
|
|
57482
57743
|
"use strict";
|
|
@@ -57518,7 +57779,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57518
57779
|
}
|
|
57519
57780
|
};
|
|
57520
57781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57521
|
-
var ReasonToCancelTasksEntity_1 = __webpack_require__(
|
|
57782
|
+
var ReasonToCancelTasksEntity_1 = __webpack_require__(445);
|
|
57522
57783
|
var ReasonToCancelTasks = /** @class */ (function () {
|
|
57523
57784
|
function ReasonToCancelTasks(session) {
|
|
57524
57785
|
this.reasonToCancelTasksEntity = new ReasonToCancelTasksEntity_1.default(session);
|
|
@@ -57539,7 +57800,7 @@ exports.default = ReasonToCancelTasks;
|
|
|
57539
57800
|
//# sourceMappingURL=ReasonToCancelTasksApi.js.map
|
|
57540
57801
|
|
|
57541
57802
|
/***/ }),
|
|
57542
|
-
/*
|
|
57803
|
+
/* 445 */
|
|
57543
57804
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57544
57805
|
|
|
57545
57806
|
"use strict";
|
|
@@ -57560,7 +57821,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
57560
57821
|
};
|
|
57561
57822
|
})();
|
|
57562
57823
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57563
|
-
var StoreEntity_1 = __webpack_require__(
|
|
57824
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
57564
57825
|
var Entity_1 = __webpack_require__(5);
|
|
57565
57826
|
var extractor = function (response) { return response.reasons_to_cancel_task; };
|
|
57566
57827
|
var BASE_ROUTE = 'reason_to_cancel_tasks';
|
|
@@ -57587,7 +57848,7 @@ exports.default = ReasonToCancelTasksEntity;
|
|
|
57587
57848
|
//# sourceMappingURL=ReasonToCancelTasksEntity.js.map
|
|
57588
57849
|
|
|
57589
57850
|
/***/ }),
|
|
57590
|
-
/*
|
|
57851
|
+
/* 446 */
|
|
57591
57852
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57592
57853
|
|
|
57593
57854
|
"use strict";
|
|
@@ -57629,7 +57890,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57629
57890
|
}
|
|
57630
57891
|
};
|
|
57631
57892
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57632
|
-
var CustomFilterEntity_1 = __webpack_require__(
|
|
57893
|
+
var CustomFilterEntity_1 = __webpack_require__(447);
|
|
57633
57894
|
var CustomFilterApi = /** @class */ (function () {
|
|
57634
57895
|
function CustomFilterApi(session) {
|
|
57635
57896
|
this.customFilterEntity = new CustomFilterEntity_1.default(session);
|
|
@@ -57668,7 +57929,7 @@ exports.default = CustomFilterApi;
|
|
|
57668
57929
|
//# sourceMappingURL=CustomFilterApi.js.map
|
|
57669
57930
|
|
|
57670
57931
|
/***/ }),
|
|
57671
|
-
/*
|
|
57932
|
+
/* 447 */
|
|
57672
57933
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57673
57934
|
|
|
57674
57935
|
"use strict";
|
|
@@ -57706,13 +57967,13 @@ exports.default = CustomFilterEntity;
|
|
|
57706
57967
|
//# sourceMappingURL=CustomFilterEntity.js.map
|
|
57707
57968
|
|
|
57708
57969
|
/***/ }),
|
|
57709
|
-
/*
|
|
57970
|
+
/* 448 */
|
|
57710
57971
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57711
57972
|
|
|
57712
57973
|
"use strict";
|
|
57713
57974
|
|
|
57714
57975
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57715
|
-
var FloatingInventoryEntity_1 = __webpack_require__(
|
|
57976
|
+
var FloatingInventoryEntity_1 = __webpack_require__(449);
|
|
57716
57977
|
var FloatingInventory = /** @class */ (function () {
|
|
57717
57978
|
function FloatingInventory(session) {
|
|
57718
57979
|
this.floatingInventory = new FloatingInventoryEntity_1.default(session);
|
|
@@ -57726,7 +57987,7 @@ exports.default = FloatingInventory;
|
|
|
57726
57987
|
//# sourceMappingURL=FloatingInventoryApi.js.map
|
|
57727
57988
|
|
|
57728
57989
|
/***/ }),
|
|
57729
|
-
/*
|
|
57990
|
+
/* 449 */
|
|
57730
57991
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57731
57992
|
|
|
57732
57993
|
"use strict";
|
|
@@ -57748,7 +58009,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
57748
58009
|
})();
|
|
57749
58010
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57750
58011
|
var Entity_1 = __webpack_require__(5);
|
|
57751
|
-
var FloatingInventory_consts_1 = __webpack_require__(
|
|
58012
|
+
var FloatingInventory_consts_1 = __webpack_require__(450);
|
|
57752
58013
|
var BASE_ROUTE = 'floating_inventories';
|
|
57753
58014
|
var USERS_WITH_AVAILABLE_FLOATING_INVENTORY = "/" + BASE_ROUTE + "/users_with_available_floating_inventory";
|
|
57754
58015
|
var FloatingInventoryEntity = /** @class */ (function (_super) {
|
|
@@ -57773,7 +58034,7 @@ exports.default = FloatingInventoryEntity;
|
|
|
57773
58034
|
//# sourceMappingURL=FloatingInventoryEntity.js.map
|
|
57774
58035
|
|
|
57775
58036
|
/***/ }),
|
|
57776
|
-
/*
|
|
58037
|
+
/* 450 */
|
|
57777
58038
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57778
58039
|
|
|
57779
58040
|
"use strict";
|
|
@@ -57785,13 +58046,13 @@ exports.userIdsExtractor = userIdsExtractor;
|
|
|
57785
58046
|
//# sourceMappingURL=FloatingInventory.consts.js.map
|
|
57786
58047
|
|
|
57787
58048
|
/***/ }),
|
|
57788
|
-
/*
|
|
58049
|
+
/* 451 */
|
|
57789
58050
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57790
58051
|
|
|
57791
58052
|
"use strict";
|
|
57792
58053
|
|
|
57793
58054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57794
|
-
var ServiceAreaEntity_1 = __webpack_require__(
|
|
58055
|
+
var ServiceAreaEntity_1 = __webpack_require__(452);
|
|
57795
58056
|
var ServiceAreaApi = /** @class */ (function () {
|
|
57796
58057
|
function ServiceAreaApi(session) {
|
|
57797
58058
|
this.serviceAreaEntity = new ServiceAreaEntity_1.default(session);
|
|
@@ -57820,7 +58081,7 @@ exports.default = ServiceAreaApi;
|
|
|
57820
58081
|
//# sourceMappingURL=ServiceAreaApi.js.map
|
|
57821
58082
|
|
|
57822
58083
|
/***/ }),
|
|
57823
|
-
/*
|
|
58084
|
+
/* 452 */
|
|
57824
58085
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57825
58086
|
|
|
57826
58087
|
"use strict";
|
|
@@ -57870,13 +58131,13 @@ exports.default = ServiceAreaEntity;
|
|
|
57870
58131
|
//# sourceMappingURL=ServiceAreaEntity.js.map
|
|
57871
58132
|
|
|
57872
58133
|
/***/ }),
|
|
57873
|
-
/*
|
|
58134
|
+
/* 453 */
|
|
57874
58135
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57875
58136
|
|
|
57876
58137
|
"use strict";
|
|
57877
58138
|
|
|
57878
58139
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57879
|
-
var BillingEntity_1 = __webpack_require__(
|
|
58140
|
+
var BillingEntity_1 = __webpack_require__(454);
|
|
57880
58141
|
var BillingApi = /** @class */ (function () {
|
|
57881
58142
|
function BillingApi(session) {
|
|
57882
58143
|
this.billingEntity = new BillingEntity_1.default(session);
|
|
@@ -57929,7 +58190,7 @@ exports.default = BillingApi;
|
|
|
57929
58190
|
//# sourceMappingURL=BillingApi.js.map
|
|
57930
58191
|
|
|
57931
58192
|
/***/ }),
|
|
57932
|
-
/*
|
|
58193
|
+
/* 454 */
|
|
57933
58194
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57934
58195
|
|
|
57935
58196
|
"use strict";
|
|
@@ -58167,7 +58428,7 @@ exports.default = BillingEntity;
|
|
|
58167
58428
|
//# sourceMappingURL=BillingEntity.js.map
|
|
58168
58429
|
|
|
58169
58430
|
/***/ }),
|
|
58170
|
-
/*
|
|
58431
|
+
/* 455 */
|
|
58171
58432
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58172
58433
|
|
|
58173
58434
|
"use strict";
|
|
@@ -58209,8 +58470,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58209
58470
|
}
|
|
58210
58471
|
};
|
|
58211
58472
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58212
|
-
var user_analytics_1 = __webpack_require__(
|
|
58213
|
-
var types_1 = __webpack_require__(
|
|
58473
|
+
var user_analytics_1 = __webpack_require__(456);
|
|
58474
|
+
var types_1 = __webpack_require__(459);
|
|
58214
58475
|
var UserAnalyticsApi = /** @class */ (function () {
|
|
58215
58476
|
function UserAnalyticsApi(session) {
|
|
58216
58477
|
this.session = session;
|
|
@@ -58266,13 +58527,13 @@ exports.default = UserAnalyticsApi;
|
|
|
58266
58527
|
//# sourceMappingURL=UserAnalyticsApi.js.map
|
|
58267
58528
|
|
|
58268
58529
|
/***/ }),
|
|
58269
|
-
/*
|
|
58530
|
+
/* 456 */
|
|
58270
58531
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58271
58532
|
|
|
58272
58533
|
"use strict";
|
|
58273
58534
|
|
|
58274
58535
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58275
|
-
const pendo_1 = __webpack_require__(
|
|
58536
|
+
const pendo_1 = __webpack_require__(457);
|
|
58276
58537
|
class AnalyticsApi {
|
|
58277
58538
|
constructor() {
|
|
58278
58539
|
this.provider = new pendo_1.PendoProvider();
|
|
@@ -58292,14 +58553,14 @@ exports.default = AnalyticsApi;
|
|
|
58292
58553
|
//# sourceMappingURL=index.js.map
|
|
58293
58554
|
|
|
58294
58555
|
/***/ }),
|
|
58295
|
-
/*
|
|
58556
|
+
/* 457 */
|
|
58296
58557
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58297
58558
|
|
|
58298
58559
|
"use strict";
|
|
58299
58560
|
|
|
58300
58561
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58301
58562
|
exports.PendoProvider = void 0;
|
|
58302
|
-
const pendoSnippet_1 = __webpack_require__(
|
|
58563
|
+
const pendoSnippet_1 = __webpack_require__(458);
|
|
58303
58564
|
class PendoProvider {
|
|
58304
58565
|
async addSnippet({ apiKey }) {
|
|
58305
58566
|
(0, pendoSnippet_1.addSnippet)(apiKey);
|
|
@@ -58321,7 +58582,7 @@ exports.PendoProvider = PendoProvider;
|
|
|
58321
58582
|
//# sourceMappingURL=pendo.js.map
|
|
58322
58583
|
|
|
58323
58584
|
/***/ }),
|
|
58324
|
-
/*
|
|
58585
|
+
/* 458 */
|
|
58325
58586
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58326
58587
|
|
|
58327
58588
|
"use strict";
|
|
@@ -58350,7 +58611,7 @@ exports.addSnippet = addSnippet;
|
|
|
58350
58611
|
//# sourceMappingURL=pendoSnippet.js.map
|
|
58351
58612
|
|
|
58352
58613
|
/***/ }),
|
|
58353
|
-
/*
|
|
58614
|
+
/* 459 */
|
|
58354
58615
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58355
58616
|
|
|
58356
58617
|
"use strict";
|
|
@@ -58366,13 +58627,13 @@ var Role;
|
|
|
58366
58627
|
//# sourceMappingURL=types.js.map
|
|
58367
58628
|
|
|
58368
58629
|
/***/ }),
|
|
58369
|
-
/*
|
|
58630
|
+
/* 460 */
|
|
58370
58631
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58371
58632
|
|
|
58372
58633
|
"use strict";
|
|
58373
58634
|
|
|
58374
58635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58375
|
-
var AnalyticsReportsEntity_1 = __webpack_require__(
|
|
58636
|
+
var AnalyticsReportsEntity_1 = __webpack_require__(461);
|
|
58376
58637
|
var AnalyticsReportsApi = /** @class */ (function () {
|
|
58377
58638
|
function AnalyticsReportsApi(session) {
|
|
58378
58639
|
this.analyticsReportsEntity = new AnalyticsReportsEntity_1.default(session);
|
|
@@ -58404,13 +58665,22 @@ var AnalyticsReportsApi = /** @class */ (function () {
|
|
|
58404
58665
|
AnalyticsReportsApi.prototype.getApiLink = function () {
|
|
58405
58666
|
return this.analyticsReportsEntity.getApiLink();
|
|
58406
58667
|
};
|
|
58668
|
+
AnalyticsReportsApi.prototype.getActiveReportExecutions = function () {
|
|
58669
|
+
return this.analyticsReportsEntity.getActiveReportExecutions();
|
|
58670
|
+
};
|
|
58671
|
+
AnalyticsReportsApi.prototype.exportReport = function (reportId, queryParams) {
|
|
58672
|
+
return this.analyticsReportsEntity.exportReport(reportId, queryParams);
|
|
58673
|
+
};
|
|
58674
|
+
AnalyticsReportsApi.prototype.downloadReport = function (reportId, queryParams) {
|
|
58675
|
+
return this.analyticsReportsEntity.downloadReport(reportId, queryParams);
|
|
58676
|
+
};
|
|
58407
58677
|
return AnalyticsReportsApi;
|
|
58408
58678
|
}());
|
|
58409
58679
|
exports.default = AnalyticsReportsApi;
|
|
58410
58680
|
//# sourceMappingURL=AnalyticsReportsApi.js.map
|
|
58411
58681
|
|
|
58412
58682
|
/***/ }),
|
|
58413
|
-
/*
|
|
58683
|
+
/* 461 */
|
|
58414
58684
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58415
58685
|
|
|
58416
58686
|
"use strict";
|
|
@@ -58472,7 +58742,7 @@ var Version;
|
|
|
58472
58742
|
(function (Version) {
|
|
58473
58743
|
Version["v1"] = "v1";
|
|
58474
58744
|
})(Version || (Version = {}));
|
|
58475
|
-
var BaseRoute = '/
|
|
58745
|
+
var BaseRoute = '/analytics-service';
|
|
58476
58746
|
var createRoute = function (route, version) {
|
|
58477
58747
|
if (version === void 0) { version = Version.v1; }
|
|
58478
58748
|
return BaseRoute + "/" + version + route;
|
|
@@ -58482,19 +58752,21 @@ var Routes = {
|
|
|
58482
58752
|
GET_SYSTEM_REPORTS: createRoute('/system-reports'),
|
|
58483
58753
|
GET_REPORT: createRoute('/reports/{:reportId}'),
|
|
58484
58754
|
DELETE_REPORT: createRoute('/reports/{:reportId}'),
|
|
58485
|
-
GET_EXECUTED_REPORT: createRoute('/reports/{:reportId}/execute'),
|
|
58486
58755
|
CREATE_SCHEDULE_JOB: createRoute('/scheduled-jobs'),
|
|
58487
58756
|
UPDATE_SCHEDULE_JOB: createRoute('/scheduled-jobs/{:jobId}'),
|
|
58488
58757
|
GET_SCHEDULE_JOB: createRoute('/scheduled-jobs/{:jobId}'),
|
|
58489
58758
|
DELETE_SCHEDULE_JOB: createRoute('/scheduled-jobs/{:jobId}'),
|
|
58490
|
-
GET_API_LINK: createRoute('/api-link')
|
|
58759
|
+
GET_API_LINK: createRoute('/api-link'),
|
|
58760
|
+
GET_ACTIVE_REPORT_EXECUTIONS: createRoute('/report-executions/active'),
|
|
58761
|
+
START_EXPORT_REPORT: createRoute('/reports/{:reportId}/start-export'),
|
|
58762
|
+
START_DOWNLOAD_REPORT: createRoute('/reports/{:reportId}/start-download')
|
|
58491
58763
|
};
|
|
58492
58764
|
var AnalyticsReportsEntity = /** @class */ (function (_super) {
|
|
58493
58765
|
__extends(AnalyticsReportsEntity, _super);
|
|
58494
58766
|
function AnalyticsReportsEntity(session) {
|
|
58495
58767
|
return _super.call(this, {
|
|
58496
58768
|
session: session,
|
|
58497
|
-
entityName: '
|
|
58769
|
+
entityName: 'analytics-service'
|
|
58498
58770
|
}) || this;
|
|
58499
58771
|
}
|
|
58500
58772
|
AnalyticsReportsEntity.prototype.getReport = function (reportId) {
|
|
@@ -58591,19 +58863,57 @@ var AnalyticsReportsEntity = /** @class */ (function (_super) {
|
|
|
58591
58863
|
});
|
|
58592
58864
|
});
|
|
58593
58865
|
};
|
|
58866
|
+
AnalyticsReportsEntity.prototype.getActiveReportExecutions = function () {
|
|
58867
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
58868
|
+
return __generator(this, function (_a) {
|
|
58869
|
+
switch (_a.label) {
|
|
58870
|
+
case 0: return [4 /*yield*/, this.service.routeGenerator.get(Routes.GET_ACTIVE_REPORT_EXECUTIONS).invoke()];
|
|
58871
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
58872
|
+
}
|
|
58873
|
+
});
|
|
58874
|
+
});
|
|
58875
|
+
};
|
|
58876
|
+
AnalyticsReportsEntity.prototype.exportReport = function (reportId, queryParams) {
|
|
58877
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
58878
|
+
return __generator(this, function (_a) {
|
|
58879
|
+
switch (_a.label) {
|
|
58880
|
+
case 0: return [4 /*yield*/, this.service.routeGenerator
|
|
58881
|
+
.post(Routes.START_EXPORT_REPORT)
|
|
58882
|
+
.withRouteParams({ reportId: reportId })
|
|
58883
|
+
.withPayload(queryParams)
|
|
58884
|
+
.invoke()];
|
|
58885
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
58886
|
+
}
|
|
58887
|
+
});
|
|
58888
|
+
});
|
|
58889
|
+
};
|
|
58890
|
+
AnalyticsReportsEntity.prototype.downloadReport = function (reportId, queryParams) {
|
|
58891
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
58892
|
+
return __generator(this, function (_a) {
|
|
58893
|
+
switch (_a.label) {
|
|
58894
|
+
case 0: return [4 /*yield*/, this.service.routeGenerator
|
|
58895
|
+
.post(Routes.START_DOWNLOAD_REPORT)
|
|
58896
|
+
.withRouteParams({ reportId: reportId })
|
|
58897
|
+
.withPayload(queryParams)
|
|
58898
|
+
.invoke()];
|
|
58899
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
58900
|
+
}
|
|
58901
|
+
});
|
|
58902
|
+
});
|
|
58903
|
+
};
|
|
58594
58904
|
return AnalyticsReportsEntity;
|
|
58595
58905
|
}(Entity_1.default));
|
|
58596
58906
|
exports.default = AnalyticsReportsEntity;
|
|
58597
58907
|
//# sourceMappingURL=AnalyticsReportsEntity.js.map
|
|
58598
58908
|
|
|
58599
58909
|
/***/ }),
|
|
58600
|
-
/*
|
|
58910
|
+
/* 462 */
|
|
58601
58911
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58602
58912
|
|
|
58603
58913
|
"use strict";
|
|
58604
58914
|
|
|
58605
58915
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58606
|
-
var ServicePlansEntity_1 = __webpack_require__(
|
|
58916
|
+
var ServicePlansEntity_1 = __webpack_require__(463);
|
|
58607
58917
|
var ServicePlansApi = /** @class */ (function () {
|
|
58608
58918
|
function ServicePlansApi(session) {
|
|
58609
58919
|
this.servicePlansEntity = new ServicePlansEntity_1.default(session);
|
|
@@ -58620,7 +58930,7 @@ exports.default = ServicePlansApi;
|
|
|
58620
58930
|
//# sourceMappingURL=ServicePlansApi.js.map
|
|
58621
58931
|
|
|
58622
58932
|
/***/ }),
|
|
58623
|
-
/*
|
|
58933
|
+
/* 463 */
|
|
58624
58934
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58625
58935
|
|
|
58626
58936
|
"use strict";
|
|
@@ -58678,8 +58988,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58678
58988
|
};
|
|
58679
58989
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58680
58990
|
var Entity_1 = __webpack_require__(5);
|
|
58681
|
-
var StoreEntity_1 = __webpack_require__(
|
|
58682
|
-
var ServicePlans_consts_1 = __webpack_require__(
|
|
58991
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
58992
|
+
var ServicePlans_consts_1 = __webpack_require__(464);
|
|
58683
58993
|
var ServicePlanSEntity = /** @class */ (function (_super) {
|
|
58684
58994
|
__extends(ServicePlanSEntity, _super);
|
|
58685
58995
|
function ServicePlanSEntity(session) {
|
|
@@ -58709,7 +59019,7 @@ exports.default = ServicePlanSEntity;
|
|
|
58709
59019
|
//# sourceMappingURL=ServicePlansEntity.js.map
|
|
58710
59020
|
|
|
58711
59021
|
/***/ }),
|
|
58712
|
-
/*
|
|
59022
|
+
/* 464 */
|
|
58713
59023
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58714
59024
|
|
|
58715
59025
|
"use strict";
|
|
@@ -58723,13 +59033,13 @@ exports.planningResponseExtractor = planningResponseExtractor;
|
|
|
58723
59033
|
//# sourceMappingURL=ServicePlans.consts.js.map
|
|
58724
59034
|
|
|
58725
59035
|
/***/ }),
|
|
58726
|
-
/*
|
|
59036
|
+
/* 465 */
|
|
58727
59037
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58728
59038
|
|
|
58729
59039
|
"use strict";
|
|
58730
59040
|
|
|
58731
59041
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58732
|
-
var AlertsEntity_1 = __webpack_require__(
|
|
59042
|
+
var AlertsEntity_1 = __webpack_require__(466);
|
|
58733
59043
|
var AlertsApi = /** @class */ (function () {
|
|
58734
59044
|
function AlertsApi(session) {
|
|
58735
59045
|
this.alertsEntity = new AlertsEntity_1.default(session);
|
|
@@ -58758,7 +59068,7 @@ exports.default = AlertsApi;
|
|
|
58758
59068
|
//# sourceMappingURL=AlertsApi.js.map
|
|
58759
59069
|
|
|
58760
59070
|
/***/ }),
|
|
58761
|
-
/*
|
|
59071
|
+
/* 466 */
|
|
58762
59072
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58763
59073
|
|
|
58764
59074
|
"use strict";
|
|
@@ -58815,8 +59125,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58815
59125
|
}
|
|
58816
59126
|
};
|
|
58817
59127
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58818
|
-
var StoreEntity_1 = __webpack_require__(
|
|
58819
|
-
var Alerts_consts_1 = __webpack_require__(
|
|
59128
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
59129
|
+
var Alerts_consts_1 = __webpack_require__(467);
|
|
58820
59130
|
// Some adjustments to StoreEntity logic is required if proxying through store is required
|
|
58821
59131
|
var AlertsEntity = /** @class */ (function (_super) {
|
|
58822
59132
|
__extends(AlertsEntity, _super);
|
|
@@ -58891,7 +59201,7 @@ exports.default = AlertsEntity;
|
|
|
58891
59201
|
//# sourceMappingURL=AlertsEntity.js.map
|
|
58892
59202
|
|
|
58893
59203
|
/***/ }),
|
|
58894
|
-
/*
|
|
59204
|
+
/* 467 */
|
|
58895
59205
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58896
59206
|
|
|
58897
59207
|
"use strict";
|
|
@@ -58917,7 +59227,7 @@ exports.Routes = {
|
|
|
58917
59227
|
//# sourceMappingURL=Alerts.consts.js.map
|
|
58918
59228
|
|
|
58919
59229
|
/***/ }),
|
|
58920
|
-
/*
|
|
59230
|
+
/* 468 */
|
|
58921
59231
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58922
59232
|
|
|
58923
59233
|
"use strict";
|
|
@@ -58926,7 +59236,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58926
59236
|
//# sourceMappingURL=VehicleType.consts.js.map
|
|
58927
59237
|
|
|
58928
59238
|
/***/ }),
|
|
58929
|
-
/*
|
|
59239
|
+
/* 469 */
|
|
58930
59240
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58931
59241
|
|
|
58932
59242
|
"use strict";
|
|
@@ -58935,7 +59245,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58935
59245
|
//# sourceMappingURL=PlannedRoutes.consts.js.map
|
|
58936
59246
|
|
|
58937
59247
|
/***/ }),
|
|
58938
|
-
/*
|
|
59248
|
+
/* 470 */
|
|
58939
59249
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58940
59250
|
|
|
58941
59251
|
"use strict";
|
|
@@ -58944,7 +59254,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58944
59254
|
//# sourceMappingURL=Crew.consts.js.map
|
|
58945
59255
|
|
|
58946
59256
|
/***/ }),
|
|
58947
|
-
/*
|
|
59257
|
+
/* 471 */
|
|
58948
59258
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58949
59259
|
|
|
58950
59260
|
"use strict";
|
|
@@ -58953,7 +59263,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58953
59263
|
//# sourceMappingURL=Responses.js.map
|
|
58954
59264
|
|
|
58955
59265
|
/***/ }),
|
|
58956
|
-
/*
|
|
59266
|
+
/* 472 */
|
|
58957
59267
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58958
59268
|
|
|
58959
59269
|
"use strict";
|
|
@@ -58965,7 +59275,7 @@ exports.defaultExtractor = defaultExtractor;
|
|
|
58965
59275
|
//# sourceMappingURL=Tag.consts.js.map
|
|
58966
59276
|
|
|
58967
59277
|
/***/ }),
|
|
58968
|
-
/*
|
|
59278
|
+
/* 473 */
|
|
58969
59279
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58970
59280
|
|
|
58971
59281
|
"use strict";
|
|
@@ -58974,7 +59284,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58974
59284
|
//# sourceMappingURL=DeliveryBlocks.consts.js.map
|
|
58975
59285
|
|
|
58976
59286
|
/***/ }),
|
|
58977
|
-
/*
|
|
59287
|
+
/* 474 */
|
|
58978
59288
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58979
59289
|
|
|
58980
59290
|
"use strict";
|
|
@@ -58988,7 +59298,7 @@ exports.default = ResourceUploadType;
|
|
|
58988
59298
|
//# sourceMappingURL=ResourceUploadType.js.map
|
|
58989
59299
|
|
|
58990
59300
|
/***/ }),
|
|
58991
|
-
/*
|
|
59301
|
+
/* 475 */
|
|
58992
59302
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
58993
59303
|
|
|
58994
59304
|
"use strict";
|