@bringg/dashboard-sdk 0.4.78 → 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/BringgDashboardSDK.d.ts +2 -0
- package/dist/BringgDashboardSDK.js +2 -0
- package/dist/BringgDashboardSDK.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/bringg-dashboard-sdk-cjs2.js +712 -528
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +71 -6
- package/dist/bringg-dashboard-sdk.min.js +3 -3
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/dist/stats.json +3862 -3250
- 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/>
|
|
@@ -18399,245 +18645,6 @@ var async = /*@__PURE__*/ new _AsyncScheduler__WEBPACK_IMPORTED_MODULE_1__[/* As
|
|
|
18399
18645
|
|
|
18400
18646
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(103), __webpack_require__(144)(module)))
|
|
18401
18647
|
|
|
18402
|
-
/***/ }),
|
|
18403
|
-
/* 11 */
|
|
18404
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
18405
|
-
|
|
18406
|
-
"use strict";
|
|
18407
|
-
|
|
18408
|
-
var __extends = (this && this.__extends) || (function () {
|
|
18409
|
-
var extendStatics = function (d, b) {
|
|
18410
|
-
extendStatics = Object.setPrototypeOf ||
|
|
18411
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
18412
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
18413
|
-
return extendStatics(d, b);
|
|
18414
|
-
};
|
|
18415
|
-
return function (d, b) {
|
|
18416
|
-
if (typeof b !== "function" && b !== null)
|
|
18417
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
18418
|
-
extendStatics(d, b);
|
|
18419
|
-
function __() { this.constructor = d; }
|
|
18420
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18421
|
-
};
|
|
18422
|
-
})();
|
|
18423
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18424
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
18425
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
18426
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
18427
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18428
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
18429
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
18430
|
-
});
|
|
18431
|
-
};
|
|
18432
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
18433
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
18434
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
18435
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
18436
|
-
function step(op) {
|
|
18437
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
18438
|
-
while (_) try {
|
|
18439
|
-
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;
|
|
18440
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
18441
|
-
switch (op[0]) {
|
|
18442
|
-
case 0: case 1: t = op; break;
|
|
18443
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
18444
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
18445
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
18446
|
-
default:
|
|
18447
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
18448
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
18449
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
18450
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
18451
|
-
if (t[2]) _.ops.pop();
|
|
18452
|
-
_.trys.pop(); continue;
|
|
18453
|
-
}
|
|
18454
|
-
op = body.call(thisArg, _);
|
|
18455
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
18456
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
18457
|
-
}
|
|
18458
|
-
};
|
|
18459
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18460
|
-
exports.RealTimeHandler = void 0;
|
|
18461
|
-
var Entity_1 = __webpack_require__(5);
|
|
18462
|
-
var BaseStore_1 = __webpack_require__(48);
|
|
18463
|
-
var PubSubEvents_1 = __webpack_require__(68);
|
|
18464
|
-
var RouteGenerator_1 = __webpack_require__(93);
|
|
18465
|
-
var RealTimeHandler = /** @class */ (function () {
|
|
18466
|
-
function RealTimeHandler(realTimeConnection) {
|
|
18467
|
-
this.realTimeConnection = realTimeConnection;
|
|
18468
|
-
}
|
|
18469
|
-
RealTimeHandler.prototype.on = function (eventName, eventHandler) {
|
|
18470
|
-
this.realTimeConnection.subscribe(new PubSubEvents_1.PubSubEvent(eventName), eventHandler);
|
|
18471
|
-
};
|
|
18472
|
-
RealTimeHandler.prototype.off = function (eventName) {
|
|
18473
|
-
this.realTimeConnection.unsubscribe(new PubSubEvents_1.PubSubEvent(eventName));
|
|
18474
|
-
};
|
|
18475
|
-
return RealTimeHandler;
|
|
18476
|
-
}());
|
|
18477
|
-
exports.RealTimeHandler = RealTimeHandler;
|
|
18478
|
-
var StoreEntity = /** @class */ (function (_super) {
|
|
18479
|
-
__extends(StoreEntity, _super);
|
|
18480
|
-
function StoreEntity(_a) {
|
|
18481
|
-
var session = _a.session, entityName = _a.entityName, routes = _a.routes, routeSuffix = _a.routeSuffix;
|
|
18482
|
-
var _this = _super.call(this, { session: session, entityName: entityName, routes: routes, routeSuffix: routeSuffix }) || this;
|
|
18483
|
-
_this.isAllFetched = false;
|
|
18484
|
-
_this._onUpdate = [];
|
|
18485
|
-
_this._onCreate = [];
|
|
18486
|
-
_this._onDelete = [];
|
|
18487
|
-
_this.addOrUpdateByItem = function (item) {
|
|
18488
|
-
return _this.store.getItem(item.id) ? _this.store.updateInStore(item) : _this.store.addToStore(item);
|
|
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
18648
|
/***/ }),
|
|
18642
18649
|
/* 12 */
|
|
18643
18650
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -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'
|
|
@@ -20924,7 +20931,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
20924
20931
|
exports.THROTTLE_TIME = exports.ActionToFunction = exports.Actions = void 0;
|
|
20925
20932
|
var operators_1 = __webpack_require__(63);
|
|
20926
20933
|
var Subject_1 = __webpack_require__(196);
|
|
20927
|
-
var lodash_1 = __webpack_require__(
|
|
20934
|
+
var lodash_1 = __webpack_require__(11);
|
|
20928
20935
|
var Logger_1 = __webpack_require__(39);
|
|
20929
20936
|
var Actions;
|
|
20930
20937
|
(function (Actions) {
|
|
@@ -22026,33 +22033,34 @@ var FleetApi_1 = __webpack_require__(300);
|
|
|
22026
22033
|
var RuleApi_1 = __webpack_require__(302);
|
|
22027
22034
|
var PushTokenSubscriptionApi_1 = __webpack_require__(304);
|
|
22028
22035
|
var TaskApi_1 = __webpack_require__(306);
|
|
22029
|
-
var ApplicationMerchantConfigurationApi_1 = __webpack_require__(
|
|
22030
|
-
var ApplicationTeamConfigurationApi_1 = __webpack_require__(
|
|
22031
|
-
var GoogleMapsHelperApi_1 = __webpack_require__(
|
|
22032
|
-
var OnboardingApi_1 = __webpack_require__(
|
|
22033
|
-
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);
|
|
22034
22042
|
var AuthService_1 = __webpack_require__(104);
|
|
22035
|
-
var ServiceApi_1 = __webpack_require__(
|
|
22036
|
-
var FleetTemplateApi_1 = __webpack_require__(
|
|
22037
|
-
var OpenFleetApi_1 = __webpack_require__(
|
|
22038
|
-
var GeocodingApi_1 = __webpack_require__(
|
|
22039
|
-
var ApplicationApi_1 = __webpack_require__(
|
|
22040
|
-
var CustomerAvailabilityHourApi_1 = __webpack_require__(
|
|
22041
|
-
var ShiftsApi_1 = __webpack_require__(
|
|
22042
|
-
var ExclusionWindowApi_1 = __webpack_require__(
|
|
22043
|
-
var Country_1 = __webpack_require__(
|
|
22044
|
-
var OauthApplicationApi_1 = __webpack_require__(
|
|
22045
|
-
var Inventory_1 = __webpack_require__(
|
|
22046
|
-
var PushNotificationRegistration_1 = __webpack_require__(
|
|
22047
|
-
var ReasonToCancelTasksApi_1 = __webpack_require__(
|
|
22048
|
-
var CustomFilterApi_1 = __webpack_require__(
|
|
22049
|
-
var FloatingInventoryApi_1 = __webpack_require__(
|
|
22050
|
-
var ServiceAreaApi_1 = __webpack_require__(
|
|
22051
|
-
var BillingApi_1 = __webpack_require__(
|
|
22052
|
-
var UserAnalyticsApi_1 = __webpack_require__(
|
|
22053
|
-
var AnalyticsReportsApi_1 = __webpack_require__(
|
|
22054
|
-
var ServicePlansApi_1 = __webpack_require__(
|
|
22055
|
-
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);
|
|
22056
22064
|
var BringgDashboardSDK = /** @class */ (function () {
|
|
22057
22065
|
function BringgDashboardSDK(session) {
|
|
22058
22066
|
this.applicationMerchantConfiguration = null;
|
|
@@ -22116,6 +22124,7 @@ var BringgDashboardSDK = /** @class */ (function () {
|
|
|
22116
22124
|
bringg.fleets = new FleetApi_1.default(session);
|
|
22117
22125
|
bringg.rules = new RuleApi_1.default(session);
|
|
22118
22126
|
bringg.fleetRouterApi = new FleetRouterApi_1.default(session);
|
|
22127
|
+
bringg.alertConfiguration = new AlertConfigurationApi_1.default(session);
|
|
22119
22128
|
bringg.floatingInventory = new FloatingInventoryApi_1.default(session);
|
|
22120
22129
|
bringg.geocoding = new GeocodingApi_1.default(session);
|
|
22121
22130
|
bringg.googleMapsHelper = new GoogleMapsHelperApi_1.default(session);
|
|
@@ -30029,9 +30038,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
30029
30038
|
exports.AnonymousServiceRequest = exports.AuthorizedServiceRequest = exports.ResponseHandler = exports.RequestOptions = exports.logErrorResponse = void 0;
|
|
30030
30039
|
var axios_1 = __webpack_require__(146);
|
|
30031
30040
|
var Logger_1 = __webpack_require__(39);
|
|
30032
|
-
var lodash_1 = __webpack_require__(
|
|
30041
|
+
var lodash_1 = __webpack_require__(11);
|
|
30033
30042
|
var BringgException_1 = __webpack_require__(15);
|
|
30034
|
-
var version = '0.4.
|
|
30043
|
+
var version = '0.4.79';
|
|
30035
30044
|
function logErrorResponse(response) {
|
|
30036
30045
|
var data = response.data, status = response.status;
|
|
30037
30046
|
try {
|
|
@@ -31650,7 +31659,7 @@ __exportStar(__webpack_require__(358), exports);
|
|
|
31650
31659
|
__exportStar(__webpack_require__(359), exports);
|
|
31651
31660
|
__exportStar(__webpack_require__(360), exports);
|
|
31652
31661
|
__exportStar(__webpack_require__(361), exports);
|
|
31653
|
-
__exportStar(__webpack_require__(
|
|
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);
|
|
@@ -31690,6 +31699,7 @@ __exportStar(__webpack_require__(401), exports);
|
|
|
31690
31699
|
__exportStar(__webpack_require__(402), exports);
|
|
31691
31700
|
__exportStar(__webpack_require__(403), exports);
|
|
31692
31701
|
__exportStar(__webpack_require__(404), exports);
|
|
31702
|
+
__exportStar(__webpack_require__(405), exports);
|
|
31693
31703
|
//# sourceMappingURL=index.js.map
|
|
31694
31704
|
|
|
31695
31705
|
/***/ }),
|
|
@@ -31700,7 +31710,7 @@ __exportStar(__webpack_require__(404), exports);
|
|
|
31700
31710
|
|
|
31701
31711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31702
31712
|
exports.TaskHelpers = void 0;
|
|
31703
|
-
var lodash_1 = __webpack_require__(
|
|
31713
|
+
var lodash_1 = __webpack_require__(11);
|
|
31704
31714
|
var types_1 = __webpack_require__(101);
|
|
31705
31715
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
31706
31716
|
var TaskHelpers = /** @class */ (function () {
|
|
@@ -31819,7 +31829,7 @@ var Route_1 = __webpack_require__(20);
|
|
|
31819
31829
|
var BringgException_1 = __webpack_require__(15);
|
|
31820
31830
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
31821
31831
|
var sha1 = __webpack_require__(165);
|
|
31822
|
-
var lodash_1 = __webpack_require__(
|
|
31832
|
+
var lodash_1 = __webpack_require__(11);
|
|
31823
31833
|
var BringgDashboardSDK_1 = __webpack_require__(61);
|
|
31824
31834
|
exports.CREATE_TOKEN_ROUTE = new Route_1.Route('/tokens', 1 /* POST */);
|
|
31825
31835
|
exports.GET_USER_ROUTE = new Route_1.Route('/tokens', 0 /* GET */);
|
|
@@ -36583,12 +36593,12 @@ exports.getCsvFieldsExtractor = getCsvFieldsExtractor;
|
|
|
36583
36593
|
|
|
36584
36594
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36585
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;
|
|
36586
|
-
var lodash_1 = __webpack_require__(
|
|
36596
|
+
var lodash_1 = __webpack_require__(11);
|
|
36587
36597
|
var Logger_1 = __webpack_require__(39);
|
|
36588
36598
|
//export types
|
|
36589
36599
|
var BringgDashboardSDK_1 = __webpack_require__(61);
|
|
36590
36600
|
Object.defineProperty(exports, "BringgDashboardSDK", { enumerable: true, get: function () { return BringgDashboardSDK_1.BringgDashboardSDK; } });
|
|
36591
|
-
var VehicleTypeConsts = __webpack_require__(
|
|
36601
|
+
var VehicleTypeConsts = __webpack_require__(468);
|
|
36592
36602
|
exports.VehicleTypeConsts = VehicleTypeConsts;
|
|
36593
36603
|
var TaskInventoryConsts = __webpack_require__(136);
|
|
36594
36604
|
exports.TaskInventoryConsts = TaskInventoryConsts;
|
|
@@ -36596,7 +36606,7 @@ var RunConsts = __webpack_require__(133);
|
|
|
36596
36606
|
exports.RunConsts = RunConsts;
|
|
36597
36607
|
var ReasonToChangeInventory = __webpack_require__(135);
|
|
36598
36608
|
exports.ReasonToChangeInventory = ReasonToChangeInventory;
|
|
36599
|
-
var PlannedRoutesConsts = __webpack_require__(
|
|
36609
|
+
var PlannedRoutesConsts = __webpack_require__(469);
|
|
36600
36610
|
exports.PlannedRoutesConsts = PlannedRoutesConsts;
|
|
36601
36611
|
var NotificationTypesConsts = __webpack_require__(140);
|
|
36602
36612
|
exports.NotificationTypesConsts = NotificationTypesConsts;
|
|
@@ -36606,19 +36616,19 @@ var LanguageConsts = __webpack_require__(139);
|
|
|
36606
36616
|
exports.LanguageConsts = LanguageConsts;
|
|
36607
36617
|
var DashboardConsts = __webpack_require__(134);
|
|
36608
36618
|
exports.DashboardConsts = DashboardConsts;
|
|
36609
|
-
var CrewConsts = __webpack_require__(
|
|
36619
|
+
var CrewConsts = __webpack_require__(470);
|
|
36610
36620
|
exports.CrewConsts = CrewConsts;
|
|
36611
36621
|
var ChatMessageConsts = __webpack_require__(138);
|
|
36612
36622
|
exports.ChatMessageConsts = ChatMessageConsts;
|
|
36613
36623
|
var ChatConversationConsts = __webpack_require__(137);
|
|
36614
36624
|
exports.ChatConversationConsts = ChatConversationConsts;
|
|
36615
|
-
var Responses = __webpack_require__(
|
|
36625
|
+
var Responses = __webpack_require__(471);
|
|
36616
36626
|
exports.Responses = Responses;
|
|
36617
|
-
var TagConsts = __webpack_require__(
|
|
36627
|
+
var TagConsts = __webpack_require__(472);
|
|
36618
36628
|
exports.TagConsts = TagConsts;
|
|
36619
|
-
var DeliveryBlockConsts = __webpack_require__(
|
|
36629
|
+
var DeliveryBlockConsts = __webpack_require__(473);
|
|
36620
36630
|
exports.DeliveryBlockConsts = DeliveryBlockConsts;
|
|
36621
|
-
var ResourceUploadType_1 = __webpack_require__(
|
|
36631
|
+
var ResourceUploadType_1 = __webpack_require__(474);
|
|
36622
36632
|
exports.ResourceUploadType = ResourceUploadType_1.default;
|
|
36623
36633
|
module.exports = {};
|
|
36624
36634
|
lodash_1.extend(module.exports, BringgDashboardSDK_1.BringgDashboardSDK);
|
|
@@ -37858,7 +37868,7 @@ module.exports = function isAxiosError(payload) {
|
|
|
37858
37868
|
"use strict";
|
|
37859
37869
|
|
|
37860
37870
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37861
|
-
var lodash_1 = __webpack_require__(
|
|
37871
|
+
var lodash_1 = __webpack_require__(11);
|
|
37862
37872
|
var User = /** @class */ (function () {
|
|
37863
37873
|
function User(data) {
|
|
37864
37874
|
if (data) {
|
|
@@ -41985,7 +41995,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
41985
41995
|
};
|
|
41986
41996
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41987
41997
|
var MerchantEntity_1 = __webpack_require__(194);
|
|
41988
|
-
var lodash_1 = __webpack_require__(
|
|
41998
|
+
var lodash_1 = __webpack_require__(11);
|
|
41989
41999
|
var cached_promise_1 = __webpack_require__(70);
|
|
41990
42000
|
var MerchantApi = /** @class */ (function () {
|
|
41991
42001
|
function MerchantApi(session) {
|
|
@@ -42112,8 +42122,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
42112
42122
|
}
|
|
42113
42123
|
};
|
|
42114
42124
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42115
|
-
var StoreEntity_1 = __webpack_require__(
|
|
42116
|
-
var lodash_1 = __webpack_require__(
|
|
42125
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
42126
|
+
var lodash_1 = __webpack_require__(11);
|
|
42117
42127
|
var Merchant_consts_1 = __webpack_require__(208);
|
|
42118
42128
|
var BaseRoute = '/merchant';
|
|
42119
42129
|
var ROUTES = {
|
|
@@ -42397,13 +42407,14 @@ var CrudService = /** @class */ (function (_super) {
|
|
|
42397
42407
|
}
|
|
42398
42408
|
});
|
|
42399
42409
|
}); };
|
|
42400
|
-
_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 () {
|
|
42401
42411
|
return __generator(this, function (_a) {
|
|
42402
42412
|
switch (_a.label) {
|
|
42403
42413
|
case 0: return [4 /*yield*/, this.routeGenerator
|
|
42404
|
-
.patch(this.Routes.PATCH)
|
|
42414
|
+
.patch(id ? this.Routes.PATCH_WITH_ID : this.Routes.PATCH)
|
|
42415
|
+
.withRouteParams({ id: id })
|
|
42405
42416
|
.withPayload(payload)
|
|
42406
|
-
.setException("Failed to
|
|
42417
|
+
.setException("Failed to patch " + this.entityName)
|
|
42407
42418
|
.invoke()];
|
|
42408
42419
|
case 1: return [2 /*return*/, _a.sent()];
|
|
42409
42420
|
}
|
|
@@ -42419,7 +42430,8 @@ var CrudService = /** @class */ (function (_super) {
|
|
|
42419
42430
|
CREATE: basePath,
|
|
42420
42431
|
UPDATE: basePath + "/{:id}",
|
|
42421
42432
|
DELETE: basePath + "/{:id}",
|
|
42422
|
-
PATCH: basePath
|
|
42433
|
+
PATCH: basePath,
|
|
42434
|
+
PATCH_WITH_ID: basePath + "/{:id}"
|
|
42423
42435
|
};
|
|
42424
42436
|
return _this;
|
|
42425
42437
|
}
|
|
@@ -43005,7 +43017,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
43005
43017
|
};
|
|
43006
43018
|
})();
|
|
43007
43019
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43008
|
-
var StoreEntity_1 = __webpack_require__(
|
|
43020
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
43009
43021
|
var Rollouts_consts_1 = __webpack_require__(211);
|
|
43010
43022
|
var RolloutsEntity = /** @class */ (function (_super) {
|
|
43011
43023
|
__extends(RolloutsEntity, _super);
|
|
@@ -43691,7 +43703,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
43691
43703
|
}
|
|
43692
43704
|
};
|
|
43693
43705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43694
|
-
var StoreEntity_1 = __webpack_require__(
|
|
43706
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
43695
43707
|
var Entity_1 = __webpack_require__(5);
|
|
43696
43708
|
var CustomerEntity = /** @class */ (function (_super) {
|
|
43697
43709
|
__extends(CustomerEntity, _super);
|
|
@@ -43861,7 +43873,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
43861
43873
|
};
|
|
43862
43874
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43863
43875
|
exports.WidgetGetResponseExtractor = exports.DashboardGetResponseExtractor = exports.Routes = void 0;
|
|
43864
|
-
var lodash_1 = __webpack_require__(
|
|
43876
|
+
var lodash_1 = __webpack_require__(11);
|
|
43865
43877
|
var SessionBasedService_1 = __webpack_require__(26);
|
|
43866
43878
|
var BringgException_1 = __webpack_require__(15);
|
|
43867
43879
|
var Route_1 = __webpack_require__(20);
|
|
@@ -44356,9 +44368,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
44356
44368
|
};
|
|
44357
44369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44358
44370
|
var ChatConversation_consts_1 = __webpack_require__(137);
|
|
44359
|
-
var StoreEntity_1 = __webpack_require__(
|
|
44371
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
44360
44372
|
var Entity_1 = __webpack_require__(5);
|
|
44361
|
-
var lodash_1 = __webpack_require__(
|
|
44373
|
+
var lodash_1 = __webpack_require__(11);
|
|
44362
44374
|
var Routes = {
|
|
44363
44375
|
UpdateLastRead: '/chat_conversations/{:id}/update_last_read'
|
|
44364
44376
|
};
|
|
@@ -44567,8 +44579,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
44567
44579
|
var ChatMessage_consts_1 = __webpack_require__(138);
|
|
44568
44580
|
var operators_1 = __webpack_require__(63);
|
|
44569
44581
|
var rxjs_1 = __webpack_require__(71);
|
|
44570
|
-
var lodash_1 = __webpack_require__(
|
|
44571
|
-
var StoreEntity_1 = __webpack_require__(
|
|
44582
|
+
var lodash_1 = __webpack_require__(11);
|
|
44583
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
44572
44584
|
var Entity_1 = __webpack_require__(5);
|
|
44573
44585
|
var ChatMessage = /** @class */ (function (_super) {
|
|
44574
44586
|
__extends(ChatMessage, _super);
|
|
@@ -44833,7 +44845,7 @@ var BaseStore_1 = __webpack_require__(48);
|
|
|
44833
44845
|
var CrewService_1 = __webpack_require__(228);
|
|
44834
44846
|
var rxjs_1 = __webpack_require__(71);
|
|
44835
44847
|
var operators_1 = __webpack_require__(63);
|
|
44836
|
-
var lodash_1 = __webpack_require__(
|
|
44848
|
+
var lodash_1 = __webpack_require__(11);
|
|
44837
44849
|
var CrewStore = /** @class */ (function (_super) {
|
|
44838
44850
|
__extends(CrewStore, _super);
|
|
44839
44851
|
function CrewStore(session) {
|
|
@@ -45187,7 +45199,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
45187
45199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45188
45200
|
exports.extractor = void 0;
|
|
45189
45201
|
var Entity_1 = __webpack_require__(5);
|
|
45190
|
-
var StoreEntity_1 = __webpack_require__(
|
|
45202
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
45191
45203
|
var extractor = function (response) { return response.planned_routes; };
|
|
45192
45204
|
exports.extractor = extractor;
|
|
45193
45205
|
var Routes = {
|
|
@@ -45682,7 +45694,7 @@ var UsersStore_1 = __webpack_require__(238);
|
|
|
45682
45694
|
var BringgException_1 = __webpack_require__(15);
|
|
45683
45695
|
var MethodsArgsDecorators_1 = __webpack_require__(242);
|
|
45684
45696
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
45685
|
-
var lodash_1 = __webpack_require__(
|
|
45697
|
+
var lodash_1 = __webpack_require__(11);
|
|
45686
45698
|
var User_consts_1 = __webpack_require__(98);
|
|
45687
45699
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
45688
45700
|
var ALLOWED_KEYS = {
|
|
@@ -46031,7 +46043,7 @@ var UsersService_1 = __webpack_require__(239);
|
|
|
46031
46043
|
var User_consts_1 = __webpack_require__(98);
|
|
46032
46044
|
var operators_1 = __webpack_require__(63);
|
|
46033
46045
|
var rxjs_1 = __webpack_require__(71);
|
|
46034
|
-
var lodash_1 = __webpack_require__(
|
|
46046
|
+
var lodash_1 = __webpack_require__(11);
|
|
46035
46047
|
var THROTTLE_TIME = 500;
|
|
46036
46048
|
var UsersStore = /** @class */ (function (_super) {
|
|
46037
46049
|
__extends(UsersStore, _super);
|
|
@@ -46481,7 +46493,7 @@ var Route_1 = __webpack_require__(20);
|
|
|
46481
46493
|
var User_consts_1 = __webpack_require__(98);
|
|
46482
46494
|
var PubSubEvents_1 = __webpack_require__(68);
|
|
46483
46495
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
46484
|
-
var lodash_1 = __webpack_require__(
|
|
46496
|
+
var lodash_1 = __webpack_require__(11);
|
|
46485
46497
|
var ROUTES = {
|
|
46486
46498
|
GET: new Route_1.Route('/users/{:userId}', 0 /* GET */),
|
|
46487
46499
|
GET_ALL: new Route_1.Route('/users/', 0 /* GET */),
|
|
@@ -46838,7 +46850,7 @@ exports.PubSubService = PubSubService;
|
|
|
46838
46850
|
|
|
46839
46851
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46840
46852
|
exports.UserHelpers = void 0;
|
|
46841
|
-
var lodash_1 = __webpack_require__(
|
|
46853
|
+
var lodash_1 = __webpack_require__(11);
|
|
46842
46854
|
var UserHelpers = /** @class */ (function () {
|
|
46843
46855
|
function UserHelpers() {
|
|
46844
46856
|
}
|
|
@@ -46875,7 +46887,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
46875
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;
|
|
46876
46888
|
var BringgException_1 = __webpack_require__(15);
|
|
46877
46889
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
46878
|
-
var lodash_1 = __webpack_require__(
|
|
46890
|
+
var lodash_1 = __webpack_require__(11);
|
|
46879
46891
|
exports.processorsMetadataKey = Symbol('validations');
|
|
46880
46892
|
var ArgValidator = /** @class */ (function () {
|
|
46881
46893
|
function ArgValidator(argProcessor) {
|
|
@@ -47436,7 +47448,7 @@ exports.default = CustomerConfigurationService;
|
|
|
47436
47448
|
"use strict";
|
|
47437
47449
|
|
|
47438
47450
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47439
|
-
var lodash_1 = __webpack_require__(
|
|
47451
|
+
var lodash_1 = __webpack_require__(11);
|
|
47440
47452
|
var CrossAppTransport = /** @class */ (function () {
|
|
47441
47453
|
function CrossAppTransport() {
|
|
47442
47454
|
var _this = this;
|
|
@@ -47963,9 +47975,9 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
47963
47975
|
})();
|
|
47964
47976
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47965
47977
|
var Entity_1 = __webpack_require__(5);
|
|
47966
|
-
var StoreEntity_1 = __webpack_require__(
|
|
47978
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
47967
47979
|
var AutoDispatchTeamState_consts_1 = __webpack_require__(257);
|
|
47968
|
-
var lodash_1 = __webpack_require__(
|
|
47980
|
+
var lodash_1 = __webpack_require__(11);
|
|
47969
47981
|
var VrpAutoDispatchAnalyticEntity = /** @class */ (function (_super) {
|
|
47970
47982
|
__extends(VrpAutoDispatchAnalyticEntity, _super);
|
|
47971
47983
|
function VrpAutoDispatchAnalyticEntity(session) {
|
|
@@ -48575,7 +48587,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
48575
48587
|
}
|
|
48576
48588
|
};
|
|
48577
48589
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48578
|
-
var StoreEntity_1 = __webpack_require__(
|
|
48590
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
48579
48591
|
var Entity_1 = __webpack_require__(5);
|
|
48580
48592
|
var UserType_consts_1 = __webpack_require__(270);
|
|
48581
48593
|
var UserTypeRoute = [Entity_1.BaseRoutes.Get, Entity_1.BaseRoutes.GetAll, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Update];
|
|
@@ -49085,7 +49097,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49085
49097
|
};
|
|
49086
49098
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49087
49099
|
var Entity_1 = __webpack_require__(5);
|
|
49088
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49100
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49089
49101
|
var defaultExtractor = function (response) { return response.team; };
|
|
49090
49102
|
var Routes = {
|
|
49091
49103
|
GET_TEAMS_BY_USER: '/users/{:userId}/teams',
|
|
@@ -49210,7 +49222,7 @@ var BringgException_1 = __webpack_require__(15);
|
|
|
49210
49222
|
var Route_1 = __webpack_require__(20);
|
|
49211
49223
|
var SessionBasedService_1 = __webpack_require__(26);
|
|
49212
49224
|
var RouteGenerator_1 = __webpack_require__(93);
|
|
49213
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49225
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49214
49226
|
var ResourceUploadApi = /** @class */ (function (_super) {
|
|
49215
49227
|
__extends(ResourceUploadApi, _super);
|
|
49216
49228
|
function ResourceUploadApi(session) {
|
|
@@ -49296,7 +49308,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
49296
49308
|
})();
|
|
49297
49309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49298
49310
|
var Entity_1 = __webpack_require__(5);
|
|
49299
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49311
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49300
49312
|
var TeamConfigurationEntity = /** @class */ (function (_super) {
|
|
49301
49313
|
__extends(TeamConfigurationEntity, _super);
|
|
49302
49314
|
function TeamConfigurationEntity(session) {
|
|
@@ -49436,7 +49448,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49436
49448
|
}
|
|
49437
49449
|
};
|
|
49438
49450
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49439
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49451
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49440
49452
|
var Entity_1 = __webpack_require__(5);
|
|
49441
49453
|
var ScanEntity = /** @class */ (function (_super) {
|
|
49442
49454
|
__extends(ScanEntity, _super);
|
|
@@ -49579,7 +49591,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49579
49591
|
}
|
|
49580
49592
|
};
|
|
49581
49593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49582
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49594
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49583
49595
|
var SignatureEntity = /** @class */ (function (_super) {
|
|
49584
49596
|
__extends(SignatureEntity, _super);
|
|
49585
49597
|
function SignatureEntity(session) {
|
|
@@ -49719,7 +49731,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49719
49731
|
}
|
|
49720
49732
|
};
|
|
49721
49733
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49722
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49734
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49723
49735
|
var PhotoEntity = /** @class */ (function (_super) {
|
|
49724
49736
|
__extends(PhotoEntity, _super);
|
|
49725
49737
|
function PhotoEntity(session) {
|
|
@@ -49786,7 +49798,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49786
49798
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49787
49799
|
exports.MerchantConfigurationApi = void 0;
|
|
49788
49800
|
var MerchantConfigurationEntity_1 = __webpack_require__(287);
|
|
49789
|
-
var lodash_1 = __webpack_require__(
|
|
49801
|
+
var lodash_1 = __webpack_require__(11);
|
|
49790
49802
|
var MerchantConfiguration_consts_1 = __webpack_require__(288);
|
|
49791
49803
|
var MerchantConfigurationApi = /** @class */ (function () {
|
|
49792
49804
|
function MerchantConfigurationApi(session) {
|
|
@@ -50726,7 +50738,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
50726
50738
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50727
50739
|
exports.singleExtractor = exports.listExtractor = void 0;
|
|
50728
50740
|
var Entity_1 = __webpack_require__(5);
|
|
50729
|
-
var StoreEntity_1 = __webpack_require__(
|
|
50741
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
50730
50742
|
var listExtractor = function (response) { return response.vehicle_types; };
|
|
50731
50743
|
exports.listExtractor = listExtractor;
|
|
50732
50744
|
var singleExtractor = function (response) { return response.vehicle_type; };
|
|
@@ -50840,7 +50852,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
50840
50852
|
};
|
|
50841
50853
|
})();
|
|
50842
50854
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50843
|
-
var StoreEntity_1 = __webpack_require__(
|
|
50855
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
50844
50856
|
var Entity_1 = __webpack_require__(5);
|
|
50845
50857
|
var extactor = function (response) { return response.reasons_to_reassign_tasks; };
|
|
50846
50858
|
var ReasonToReassignTasksEntity = /** @class */ (function (_super) {
|
|
@@ -51125,10 +51137,10 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51125
51137
|
};
|
|
51126
51138
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51127
51139
|
exports.Routes = void 0;
|
|
51128
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51140
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51129
51141
|
var Entity_1 = __webpack_require__(5);
|
|
51130
51142
|
var Vehicle_consts_1 = __webpack_require__(142);
|
|
51131
|
-
var lodash_1 = __webpack_require__(
|
|
51143
|
+
var lodash_1 = __webpack_require__(11);
|
|
51132
51144
|
exports.Routes = {
|
|
51133
51145
|
GET_ASSIGNMENT_HISTORY: '/vehicles/get_assignment_history/',
|
|
51134
51146
|
GET_BY_TEAM: '/teams/{:teamId}/vehicles',
|
|
@@ -51307,7 +51319,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51307
51319
|
}
|
|
51308
51320
|
};
|
|
51309
51321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51310
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51322
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51311
51323
|
var WebApplicationConfigurationEntityName = 'web_application_configurations';
|
|
51312
51324
|
var WebApplicationConfigurationEntity = /** @class */ (function (_super) {
|
|
51313
51325
|
__extends(WebApplicationConfigurationEntity, _super);
|
|
@@ -51544,7 +51556,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51544
51556
|
};
|
|
51545
51557
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51546
51558
|
exports.quoteExtractor = exports.fleetsExtractor = exports.Routes = void 0;
|
|
51547
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51559
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51548
51560
|
var Entity_1 = __webpack_require__(5);
|
|
51549
51561
|
exports.Routes = {
|
|
51550
51562
|
GET_RELATED: '/fleets/related',
|
|
@@ -51766,7 +51778,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51766
51778
|
};
|
|
51767
51779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51768
51780
|
exports.Routes = void 0;
|
|
51769
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51781
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51770
51782
|
var Entity_1 = __webpack_require__(5);
|
|
51771
51783
|
exports.Routes = {
|
|
51772
51784
|
GET_RULES: '/rule-service/rules',
|
|
@@ -51919,7 +51931,7 @@ exports.default = PushTokenSubscriptionEntity;
|
|
|
51919
51931
|
|
|
51920
51932
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51921
51933
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
51922
|
-
var TaskEntity_1 = __webpack_require__(
|
|
51934
|
+
var TaskEntity_1 = __webpack_require__(406);
|
|
51923
51935
|
var TaskHelpers_1 = __webpack_require__(102);
|
|
51924
51936
|
var Tasks = /** @class */ (function () {
|
|
51925
51937
|
function Tasks(session) {
|
|
@@ -52201,6 +52213,22 @@ exports.ALERT_TYPES_VALUES = Object.values(ALERT_TYPES).filter(function (t) { re
|
|
|
52201
52213
|
|
|
52202
52214
|
"use strict";
|
|
52203
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
|
+
|
|
52204
52232
|
exports.__esModule = true;
|
|
52205
52233
|
exports.ApplicationUuid = void 0;
|
|
52206
52234
|
var ApplicationUuid;
|
|
@@ -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,13 +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);
|
|
53349
53376
|
__exportStar(__webpack_require__(364), exports);
|
|
53377
|
+
__exportStar(__webpack_require__(365), exports);
|
|
53350
53378
|
//# sourceMappingURL=index.js.map
|
|
53351
53379
|
|
|
53352
53380
|
/***/ }),
|
|
53353
|
-
/*
|
|
53381
|
+
/* 363 */
|
|
53354
53382
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53355
53383
|
|
|
53356
53384
|
"use strict";
|
|
@@ -53365,7 +53393,7 @@ var Order;
|
|
|
53365
53393
|
//# sourceMappingURL=report.js.map
|
|
53366
53394
|
|
|
53367
53395
|
/***/ }),
|
|
53368
|
-
/*
|
|
53396
|
+
/* 364 */
|
|
53369
53397
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53370
53398
|
|
|
53371
53399
|
"use strict";
|
|
@@ -53388,7 +53416,7 @@ var ReportExportingStatus;
|
|
|
53388
53416
|
//# sourceMappingURL=report_export.js.map
|
|
53389
53417
|
|
|
53390
53418
|
/***/ }),
|
|
53391
|
-
/*
|
|
53419
|
+
/* 365 */
|
|
53392
53420
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53393
53421
|
|
|
53394
53422
|
"use strict";
|
|
@@ -53424,7 +53452,7 @@ var CronDayOfWeek;
|
|
|
53424
53452
|
//# sourceMappingURL=reports_scheduled_jobs.js.map
|
|
53425
53453
|
|
|
53426
53454
|
/***/ }),
|
|
53427
|
-
/*
|
|
53455
|
+
/* 366 */
|
|
53428
53456
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53429
53457
|
|
|
53430
53458
|
"use strict";
|
|
@@ -53433,7 +53461,7 @@ exports.__esModule = true;
|
|
|
53433
53461
|
//# sourceMappingURL=report_preference.js.map
|
|
53434
53462
|
|
|
53435
53463
|
/***/ }),
|
|
53436
|
-
/*
|
|
53464
|
+
/* 367 */
|
|
53437
53465
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53438
53466
|
|
|
53439
53467
|
"use strict";
|
|
@@ -53502,7 +53530,7 @@ var FILTER_TYPES;
|
|
|
53502
53530
|
//# sourceMappingURL=reports.js.map
|
|
53503
53531
|
|
|
53504
53532
|
/***/ }),
|
|
53505
|
-
/*
|
|
53533
|
+
/* 368 */
|
|
53506
53534
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53507
53535
|
|
|
53508
53536
|
"use strict";
|
|
@@ -53521,7 +53549,7 @@ var RequestOrigin;
|
|
|
53521
53549
|
//# sourceMappingURL=request_origin.js.map
|
|
53522
53550
|
|
|
53523
53551
|
/***/ }),
|
|
53524
|
-
/*
|
|
53552
|
+
/* 369 */
|
|
53525
53553
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53526
53554
|
|
|
53527
53555
|
"use strict";
|
|
@@ -53558,7 +53586,7 @@ var RuleRequestType;
|
|
|
53558
53586
|
//# sourceMappingURL=rule_types.js.map
|
|
53559
53587
|
|
|
53560
53588
|
/***/ }),
|
|
53561
|
-
/*
|
|
53589
|
+
/* 370 */
|
|
53562
53590
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53563
53591
|
|
|
53564
53592
|
"use strict";
|
|
@@ -53612,7 +53640,7 @@ var OFFLINE_ONLINE_EVENT_TYPES;
|
|
|
53612
53640
|
//# sourceMappingURL=run.js.map
|
|
53613
53641
|
|
|
53614
53642
|
/***/ }),
|
|
53615
|
-
/*
|
|
53643
|
+
/* 371 */
|
|
53616
53644
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53617
53645
|
|
|
53618
53646
|
"use strict";
|
|
@@ -53628,7 +53656,7 @@ var ScanType;
|
|
|
53628
53656
|
//# sourceMappingURL=scan.js.map
|
|
53629
53657
|
|
|
53630
53658
|
/***/ }),
|
|
53631
|
-
/*
|
|
53659
|
+
/* 372 */
|
|
53632
53660
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53633
53661
|
|
|
53634
53662
|
"use strict";
|
|
@@ -53637,7 +53665,7 @@ exports.__esModule = true;
|
|
|
53637
53665
|
//# sourceMappingURL=serializer.js.map
|
|
53638
53666
|
|
|
53639
53667
|
/***/ }),
|
|
53640
|
-
/*
|
|
53668
|
+
/* 373 */
|
|
53641
53669
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53642
53670
|
|
|
53643
53671
|
"use strict";
|
|
@@ -53646,7 +53674,7 @@ exports.__esModule = true;
|
|
|
53646
53674
|
//# sourceMappingURL=service.js.map
|
|
53647
53675
|
|
|
53648
53676
|
/***/ }),
|
|
53649
|
-
/*
|
|
53677
|
+
/* 374 */
|
|
53650
53678
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53651
53679
|
|
|
53652
53680
|
"use strict";
|
|
@@ -53655,7 +53683,7 @@ exports.__esModule = true;
|
|
|
53655
53683
|
//# sourceMappingURL=service_area.js.map
|
|
53656
53684
|
|
|
53657
53685
|
/***/ }),
|
|
53658
|
-
/*
|
|
53686
|
+
/* 375 */
|
|
53659
53687
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53660
53688
|
|
|
53661
53689
|
"use strict";
|
|
@@ -53664,7 +53692,7 @@ exports.__esModule = true;
|
|
|
53664
53692
|
//# sourceMappingURL=service_event.js.map
|
|
53665
53693
|
|
|
53666
53694
|
/***/ }),
|
|
53667
|
-
/*
|
|
53695
|
+
/* 376 */
|
|
53668
53696
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53669
53697
|
|
|
53670
53698
|
"use strict";
|
|
@@ -53673,7 +53701,7 @@ exports.__esModule = true;
|
|
|
53673
53701
|
//# sourceMappingURL=service_plan.js.map
|
|
53674
53702
|
|
|
53675
53703
|
/***/ }),
|
|
53676
|
-
/*
|
|
53704
|
+
/* 377 */
|
|
53677
53705
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53678
53706
|
|
|
53679
53707
|
"use strict";
|
|
@@ -53689,7 +53717,7 @@ var ServiceWindowType;
|
|
|
53689
53717
|
//# sourceMappingURL=service_window.js.map
|
|
53690
53718
|
|
|
53691
53719
|
/***/ }),
|
|
53692
|
-
/*
|
|
53720
|
+
/* 378 */
|
|
53693
53721
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53694
53722
|
|
|
53695
53723
|
"use strict";
|
|
@@ -53728,7 +53756,7 @@ var SharingMethod;
|
|
|
53728
53756
|
//# sourceMappingURL=shared_location.js.map
|
|
53729
53757
|
|
|
53730
53758
|
/***/ }),
|
|
53731
|
-
/*
|
|
53759
|
+
/* 379 */
|
|
53732
53760
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53733
53761
|
|
|
53734
53762
|
"use strict";
|
|
@@ -53751,7 +53779,7 @@ var ShiftRule;
|
|
|
53751
53779
|
//# sourceMappingURL=shift.js.map
|
|
53752
53780
|
|
|
53753
53781
|
/***/ }),
|
|
53754
|
-
/*
|
|
53782
|
+
/* 380 */
|
|
53755
53783
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53756
53784
|
|
|
53757
53785
|
"use strict";
|
|
@@ -53760,7 +53788,7 @@ exports.__esModule = true;
|
|
|
53760
53788
|
//# sourceMappingURL=skill.js.map
|
|
53761
53789
|
|
|
53762
53790
|
/***/ }),
|
|
53763
|
-
/*
|
|
53791
|
+
/* 381 */
|
|
53764
53792
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53765
53793
|
|
|
53766
53794
|
"use strict";
|
|
@@ -53769,7 +53797,7 @@ exports.__esModule = true;
|
|
|
53769
53797
|
//# sourceMappingURL=sms_data.js.map
|
|
53770
53798
|
|
|
53771
53799
|
/***/ }),
|
|
53772
|
-
/*
|
|
53800
|
+
/* 382 */
|
|
53773
53801
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53774
53802
|
|
|
53775
53803
|
"use strict";
|
|
@@ -53786,7 +53814,7 @@ var NumberType;
|
|
|
53786
53814
|
//# sourceMappingURL=sms_number.js.map
|
|
53787
53815
|
|
|
53788
53816
|
/***/ }),
|
|
53789
|
-
/*
|
|
53817
|
+
/* 383 */
|
|
53790
53818
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53791
53819
|
|
|
53792
53820
|
"use strict";
|
|
@@ -53795,7 +53823,7 @@ exports.__esModule = true;
|
|
|
53795
53823
|
//# sourceMappingURL=sms_setting.js.map
|
|
53796
53824
|
|
|
53797
53825
|
/***/ }),
|
|
53798
|
-
/*
|
|
53826
|
+
/* 384 */
|
|
53799
53827
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53800
53828
|
|
|
53801
53829
|
"use strict";
|
|
@@ -53804,7 +53832,7 @@ exports.__esModule = true;
|
|
|
53804
53832
|
//# sourceMappingURL=tag.js.map
|
|
53805
53833
|
|
|
53806
53834
|
/***/ }),
|
|
53807
|
-
/*
|
|
53835
|
+
/* 385 */
|
|
53808
53836
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53809
53837
|
|
|
53810
53838
|
"use strict";
|
|
@@ -53813,7 +53841,7 @@ exports.__esModule = true;
|
|
|
53813
53841
|
//# sourceMappingURL=tag_customer_configuration.js.map
|
|
53814
53842
|
|
|
53815
53843
|
/***/ }),
|
|
53816
|
-
/*
|
|
53844
|
+
/* 386 */
|
|
53817
53845
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53818
53846
|
|
|
53819
53847
|
"use strict";
|
|
@@ -53822,7 +53850,7 @@ exports.__esModule = true;
|
|
|
53822
53850
|
//# sourceMappingURL=tag_merchant_configuration.js.map
|
|
53823
53851
|
|
|
53824
53852
|
/***/ }),
|
|
53825
|
-
/*
|
|
53853
|
+
/* 387 */
|
|
53826
53854
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53827
53855
|
|
|
53828
53856
|
"use strict";
|
|
@@ -53831,7 +53859,7 @@ exports.__esModule = true;
|
|
|
53831
53859
|
//# sourceMappingURL=tag_rules_configuration.js.map
|
|
53832
53860
|
|
|
53833
53861
|
/***/ }),
|
|
53834
|
-
/*
|
|
53862
|
+
/* 388 */
|
|
53835
53863
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53836
53864
|
|
|
53837
53865
|
"use strict";
|
|
@@ -54040,7 +54068,7 @@ var Association;
|
|
|
54040
54068
|
//# sourceMappingURL=task.js.map
|
|
54041
54069
|
|
|
54042
54070
|
/***/ }),
|
|
54043
|
-
/*
|
|
54071
|
+
/* 389 */
|
|
54044
54072
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54045
54073
|
|
|
54046
54074
|
"use strict";
|
|
@@ -54061,7 +54089,7 @@ var AutoScheduleType;
|
|
|
54061
54089
|
//# sourceMappingURL=task_configuration.js.map
|
|
54062
54090
|
|
|
54063
54091
|
/***/ }),
|
|
54064
|
-
/*
|
|
54092
|
+
/* 390 */
|
|
54065
54093
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54066
54094
|
|
|
54067
54095
|
"use strict";
|
|
@@ -54070,7 +54098,7 @@ exports.__esModule = true;
|
|
|
54070
54098
|
//# sourceMappingURL=task_payment_history.js.map
|
|
54071
54099
|
|
|
54072
54100
|
/***/ }),
|
|
54073
|
-
/*
|
|
54101
|
+
/* 391 */
|
|
54074
54102
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54075
54103
|
|
|
54076
54104
|
"use strict";
|
|
@@ -54084,7 +54112,7 @@ var TaskServiceType;
|
|
|
54084
54112
|
//# sourceMappingURL=task_service.js.map
|
|
54085
54113
|
|
|
54086
54114
|
/***/ }),
|
|
54087
|
-
/*
|
|
54115
|
+
/* 392 */
|
|
54088
54116
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54089
54117
|
|
|
54090
54118
|
"use strict";
|
|
@@ -54093,7 +54121,7 @@ exports.__esModule = true;
|
|
|
54093
54121
|
//# sourceMappingURL=team_configuration.js.map
|
|
54094
54122
|
|
|
54095
54123
|
/***/ }),
|
|
54096
|
-
/*
|
|
54124
|
+
/* 393 */
|
|
54097
54125
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54098
54126
|
|
|
54099
54127
|
"use strict";
|
|
@@ -54102,7 +54130,7 @@ exports.__esModule = true;
|
|
|
54102
54130
|
//# sourceMappingURL=team_service_zip_codes.js.map
|
|
54103
54131
|
|
|
54104
54132
|
/***/ }),
|
|
54105
|
-
/*
|
|
54133
|
+
/* 394 */
|
|
54106
54134
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54107
54135
|
|
|
54108
54136
|
"use strict";
|
|
@@ -54111,7 +54139,7 @@ exports.__esModule = true;
|
|
|
54111
54139
|
//# sourceMappingURL=teams.js.map
|
|
54112
54140
|
|
|
54113
54141
|
/***/ }),
|
|
54114
|
-
/*
|
|
54142
|
+
/* 395 */
|
|
54115
54143
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54116
54144
|
|
|
54117
54145
|
"use strict";
|
|
@@ -54120,7 +54148,7 @@ exports.__esModule = true;
|
|
|
54120
54148
|
//# sourceMappingURL=user_configuration.js.map
|
|
54121
54149
|
|
|
54122
54150
|
/***/ }),
|
|
54123
|
-
/*
|
|
54151
|
+
/* 396 */
|
|
54124
54152
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54125
54153
|
|
|
54126
54154
|
"use strict";
|
|
@@ -54129,7 +54157,7 @@ exports.__esModule = true;
|
|
|
54129
54157
|
//# sourceMappingURL=user_realtime_data.js.map
|
|
54130
54158
|
|
|
54131
54159
|
/***/ }),
|
|
54132
|
-
/*
|
|
54160
|
+
/* 397 */
|
|
54133
54161
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54134
54162
|
|
|
54135
54163
|
"use strict";
|
|
@@ -54138,7 +54166,7 @@ exports.__esModule = true;
|
|
|
54138
54166
|
//# sourceMappingURL=user_types.js.map
|
|
54139
54167
|
|
|
54140
54168
|
/***/ }),
|
|
54141
|
-
/*
|
|
54169
|
+
/* 398 */
|
|
54142
54170
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54143
54171
|
|
|
54144
54172
|
"use strict";
|
|
@@ -54175,7 +54203,7 @@ var UserStatus;
|
|
|
54175
54203
|
//# sourceMappingURL=users.js.map
|
|
54176
54204
|
|
|
54177
54205
|
/***/ }),
|
|
54178
|
-
/*
|
|
54206
|
+
/* 399 */
|
|
54179
54207
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54180
54208
|
|
|
54181
54209
|
"use strict";
|
|
@@ -54184,7 +54212,7 @@ exports.__esModule = true;
|
|
|
54184
54212
|
//# sourceMappingURL=vehicle.js.map
|
|
54185
54213
|
|
|
54186
54214
|
/***/ }),
|
|
54187
|
-
/*
|
|
54215
|
+
/* 400 */
|
|
54188
54216
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54189
54217
|
|
|
54190
54218
|
"use strict";
|
|
@@ -54193,7 +54221,7 @@ exports.__esModule = true;
|
|
|
54193
54221
|
//# sourceMappingURL=vehicle_type.js.map
|
|
54194
54222
|
|
|
54195
54223
|
/***/ }),
|
|
54196
|
-
/*
|
|
54224
|
+
/* 401 */
|
|
54197
54225
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54198
54226
|
|
|
54199
54227
|
"use strict";
|
|
@@ -54202,7 +54230,7 @@ exports.__esModule = true;
|
|
|
54202
54230
|
//# sourceMappingURL=web_application_configuration.js.map
|
|
54203
54231
|
|
|
54204
54232
|
/***/ }),
|
|
54205
|
-
/*
|
|
54233
|
+
/* 402 */
|
|
54206
54234
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54207
54235
|
|
|
54208
54236
|
"use strict";
|
|
@@ -54211,7 +54239,7 @@ exports.__esModule = true;
|
|
|
54211
54239
|
//# sourceMappingURL=webhooks.js.map
|
|
54212
54240
|
|
|
54213
54241
|
/***/ }),
|
|
54214
|
-
/*
|
|
54242
|
+
/* 403 */
|
|
54215
54243
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54216
54244
|
|
|
54217
54245
|
"use strict";
|
|
@@ -54227,7 +54255,7 @@ var Plan;
|
|
|
54227
54255
|
//# sourceMappingURL=webhooks_configuration.js.map
|
|
54228
54256
|
|
|
54229
54257
|
/***/ }),
|
|
54230
|
-
/*
|
|
54258
|
+
/* 404 */
|
|
54231
54259
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54232
54260
|
|
|
54233
54261
|
"use strict";
|
|
@@ -54236,7 +54264,7 @@ exports.__esModule = true;
|
|
|
54236
54264
|
//# sourceMappingURL=widget.js.map
|
|
54237
54265
|
|
|
54238
54266
|
/***/ }),
|
|
54239
|
-
/*
|
|
54267
|
+
/* 405 */
|
|
54240
54268
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54241
54269
|
|
|
54242
54270
|
"use strict";
|
|
@@ -54245,7 +54273,7 @@ exports.__esModule = true;
|
|
|
54245
54273
|
//# sourceMappingURL=windows.js.map
|
|
54246
54274
|
|
|
54247
54275
|
/***/ }),
|
|
54248
|
-
/*
|
|
54276
|
+
/* 406 */
|
|
54249
54277
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54250
54278
|
|
|
54251
54279
|
"use strict";
|
|
@@ -54313,13 +54341,13 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
54313
54341
|
}
|
|
54314
54342
|
};
|
|
54315
54343
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54316
|
-
var StoreEntity_1 = __webpack_require__(
|
|
54344
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
54317
54345
|
var types_1 = __webpack_require__(101);
|
|
54318
54346
|
var Entity_1 = __webpack_require__(5);
|
|
54319
54347
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
54320
54348
|
var rxjs_1 = __webpack_require__(71);
|
|
54321
54349
|
var operators_1 = __webpack_require__(63);
|
|
54322
|
-
var lodash_1 = __webpack_require__(
|
|
54350
|
+
var lodash_1 = __webpack_require__(11);
|
|
54323
54351
|
var TaskHelpers_1 = __webpack_require__(102);
|
|
54324
54352
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
54325
54353
|
var THROTTLE_TIME = 500;
|
|
@@ -54856,7 +54884,7 @@ exports.default = TaskEntity;
|
|
|
54856
54884
|
//# sourceMappingURL=TaskEntity.js.map
|
|
54857
54885
|
|
|
54858
54886
|
/***/ }),
|
|
54859
|
-
/*
|
|
54887
|
+
/* 407 */
|
|
54860
54888
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54861
54889
|
|
|
54862
54890
|
"use strict";
|
|
@@ -54898,7 +54926,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
54898
54926
|
}
|
|
54899
54927
|
};
|
|
54900
54928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54901
|
-
var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(
|
|
54929
|
+
var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(408);
|
|
54902
54930
|
var ApplicationMerchantConfigurationApi = /** @class */ (function () {
|
|
54903
54931
|
function ApplicationMerchantConfigurationApi(session, merchantConfigurationApi) {
|
|
54904
54932
|
this.entity = new ApplicationMerchantConfigurationEntity_1.default(session);
|
|
@@ -55017,7 +55045,7 @@ exports.default = ApplicationMerchantConfigurationApi;
|
|
|
55017
55045
|
//# sourceMappingURL=ApplicationMerchantConfigurationApi.js.map
|
|
55018
55046
|
|
|
55019
55047
|
/***/ }),
|
|
55020
|
-
/*
|
|
55048
|
+
/* 408 */
|
|
55021
55049
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55022
55050
|
|
|
55023
55051
|
"use strict";
|
|
@@ -55247,7 +55275,7 @@ exports.default = ApplicationMerchantConfigurationEntity;
|
|
|
55247
55275
|
//# sourceMappingURL=ApplicationMerchantConfigurationEntity.js.map
|
|
55248
55276
|
|
|
55249
55277
|
/***/ }),
|
|
55250
|
-
/*
|
|
55278
|
+
/* 409 */
|
|
55251
55279
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55252
55280
|
|
|
55253
55281
|
"use strict";
|
|
@@ -55289,7 +55317,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55289
55317
|
}
|
|
55290
55318
|
};
|
|
55291
55319
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55292
|
-
var ApplicationTeamConfigurationEntity_1 = __webpack_require__(
|
|
55320
|
+
var ApplicationTeamConfigurationEntity_1 = __webpack_require__(410);
|
|
55293
55321
|
var ApplicationTeamConfigurationApi = /** @class */ (function () {
|
|
55294
55322
|
function ApplicationTeamConfigurationApi(session) {
|
|
55295
55323
|
this.entity = new ApplicationTeamConfigurationEntity_1.default(session);
|
|
@@ -55330,7 +55358,7 @@ exports.default = ApplicationTeamConfigurationApi;
|
|
|
55330
55358
|
//# sourceMappingURL=ApplicationTeamConfigurationApi.js.map
|
|
55331
55359
|
|
|
55332
55360
|
/***/ }),
|
|
55333
|
-
/*
|
|
55361
|
+
/* 410 */
|
|
55334
55362
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55335
55363
|
|
|
55336
55364
|
"use strict";
|
|
@@ -55443,13 +55471,13 @@ exports.default = ApplicationTeamConfigurationEntity;
|
|
|
55443
55471
|
//# sourceMappingURL=ApplicationTeamConfigurationEntity.js.map
|
|
55444
55472
|
|
|
55445
55473
|
/***/ }),
|
|
55446
|
-
/*
|
|
55474
|
+
/* 411 */
|
|
55447
55475
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55448
55476
|
|
|
55449
55477
|
"use strict";
|
|
55450
55478
|
|
|
55451
55479
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55452
|
-
var GoogleMapsHelper_1 = __webpack_require__(
|
|
55480
|
+
var GoogleMapsHelper_1 = __webpack_require__(412);
|
|
55453
55481
|
var GoogleMapsHelperApi = /** @class */ (function () {
|
|
55454
55482
|
function GoogleMapsHelperApi(session) {
|
|
55455
55483
|
this.googleMapsHelperEntity = new GoogleMapsHelper_1.default(session);
|
|
@@ -55463,7 +55491,7 @@ exports.default = GoogleMapsHelperApi;
|
|
|
55463
55491
|
//# sourceMappingURL=GoogleMapsHelperApi.js.map
|
|
55464
55492
|
|
|
55465
55493
|
/***/ }),
|
|
55466
|
-
/*
|
|
55494
|
+
/* 412 */
|
|
55467
55495
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55468
55496
|
|
|
55469
55497
|
"use strict";
|
|
@@ -55544,7 +55572,7 @@ exports.default = GoogleMapsHelper;
|
|
|
55544
55572
|
//# sourceMappingURL=GoogleMapsHelper.js.map
|
|
55545
55573
|
|
|
55546
55574
|
/***/ }),
|
|
55547
|
-
/*
|
|
55575
|
+
/* 413 */
|
|
55548
55576
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55549
55577
|
|
|
55550
55578
|
"use strict";
|
|
@@ -55586,7 +55614,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55586
55614
|
}
|
|
55587
55615
|
};
|
|
55588
55616
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55589
|
-
var OnboardingEntity_1 = __webpack_require__(
|
|
55617
|
+
var OnboardingEntity_1 = __webpack_require__(414);
|
|
55590
55618
|
var OnboardingApi = /** @class */ (function () {
|
|
55591
55619
|
function OnboardingApi(session) {
|
|
55592
55620
|
this.onboardingEntity = new OnboardingEntity_1.default(session);
|
|
@@ -55611,7 +55639,7 @@ exports.default = OnboardingApi;
|
|
|
55611
55639
|
//# sourceMappingURL=OnboardingApi.js.map
|
|
55612
55640
|
|
|
55613
55641
|
/***/ }),
|
|
55614
|
-
/*
|
|
55642
|
+
/* 414 */
|
|
55615
55643
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55616
55644
|
|
|
55617
55645
|
"use strict";
|
|
@@ -55644,13 +55672,13 @@ exports.default = OnboardingEntity;
|
|
|
55644
55672
|
//# sourceMappingURL=OnboardingEntity.js.map
|
|
55645
55673
|
|
|
55646
55674
|
/***/ }),
|
|
55647
|
-
/*
|
|
55675
|
+
/* 415 */
|
|
55648
55676
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55649
55677
|
|
|
55650
55678
|
"use strict";
|
|
55651
55679
|
|
|
55652
55680
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55653
|
-
var FleetRouterEntity_1 = __webpack_require__(
|
|
55681
|
+
var FleetRouterEntity_1 = __webpack_require__(416);
|
|
55654
55682
|
var FleetRouterApi = /** @class */ (function () {
|
|
55655
55683
|
function FleetRouterApi(session) {
|
|
55656
55684
|
this.fleetRouterEntity = new FleetRouterEntity_1.default(session);
|
|
@@ -55668,7 +55696,7 @@ var FleetRouterApi = /** @class */ (function () {
|
|
|
55668
55696
|
return this.fleetRouterEntity.service.delete(id);
|
|
55669
55697
|
};
|
|
55670
55698
|
FleetRouterApi.prototype.patch = function (params) {
|
|
55671
|
-
return this.fleetRouterEntity.service.patch(params);
|
|
55699
|
+
return this.fleetRouterEntity.service.patch(undefined, params);
|
|
55672
55700
|
};
|
|
55673
55701
|
return FleetRouterApi;
|
|
55674
55702
|
}());
|
|
@@ -55676,7 +55704,7 @@ exports.default = FleetRouterApi;
|
|
|
55676
55704
|
//# sourceMappingURL=FleetRouterApi.js.map
|
|
55677
55705
|
|
|
55678
55706
|
/***/ }),
|
|
55679
|
-
/*
|
|
55707
|
+
/* 416 */
|
|
55680
55708
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55681
55709
|
|
|
55682
55710
|
"use strict";
|
|
@@ -55697,7 +55725,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
55697
55725
|
};
|
|
55698
55726
|
})();
|
|
55699
55727
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55700
|
-
var StoreEntity_1 = __webpack_require__(
|
|
55728
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
55701
55729
|
var Entity_1 = __webpack_require__(5);
|
|
55702
55730
|
var FleetRouterEntity = /** @class */ (function (_super) {
|
|
55703
55731
|
__extends(FleetRouterEntity, _super);
|
|
@@ -55715,7 +55743,163 @@ exports.default = FleetRouterEntity;
|
|
|
55715
55743
|
//# sourceMappingURL=FleetRouterEntity.js.map
|
|
55716
55744
|
|
|
55717
55745
|
/***/ }),
|
|
55718
|
-
/*
|
|
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 */
|
|
55719
55903
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55720
55904
|
|
|
55721
55905
|
"use strict";
|
|
@@ -55757,7 +55941,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55757
55941
|
}
|
|
55758
55942
|
};
|
|
55759
55943
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55760
|
-
var ServiceEntity_1 = __webpack_require__(
|
|
55944
|
+
var ServiceEntity_1 = __webpack_require__(422);
|
|
55761
55945
|
var ServiceApi = /** @class */ (function () {
|
|
55762
55946
|
function ServiceApi(session) {
|
|
55763
55947
|
this.entity = new ServiceEntity_1.default(session);
|
|
@@ -55778,7 +55962,7 @@ exports.default = ServiceApi;
|
|
|
55778
55962
|
//# sourceMappingURL=ServiceApi.js.map
|
|
55779
55963
|
|
|
55780
55964
|
/***/ }),
|
|
55781
|
-
/*
|
|
55965
|
+
/* 422 */
|
|
55782
55966
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55783
55967
|
|
|
55784
55968
|
"use strict";
|
|
@@ -55861,7 +56045,7 @@ exports.default = ServiceEntity;
|
|
|
55861
56045
|
//# sourceMappingURL=ServiceEntity.js.map
|
|
55862
56046
|
|
|
55863
56047
|
/***/ }),
|
|
55864
|
-
/*
|
|
56048
|
+
/* 423 */
|
|
55865
56049
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55866
56050
|
|
|
55867
56051
|
"use strict";
|
|
@@ -55903,7 +56087,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55903
56087
|
}
|
|
55904
56088
|
};
|
|
55905
56089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55906
|
-
var FleetTemplateEntity_1 = __webpack_require__(
|
|
56090
|
+
var FleetTemplateEntity_1 = __webpack_require__(424);
|
|
55907
56091
|
var FleetTemplateApi = /** @class */ (function () {
|
|
55908
56092
|
function FleetTemplateApi(session) {
|
|
55909
56093
|
this.entity = new FleetTemplateEntity_1.default(session);
|
|
@@ -55931,7 +56115,7 @@ exports.default = FleetTemplateApi;
|
|
|
55931
56115
|
//# sourceMappingURL=FleetTemplateApi.js.map
|
|
55932
56116
|
|
|
55933
56117
|
/***/ }),
|
|
55934
|
-
/*
|
|
56118
|
+
/* 424 */
|
|
55935
56119
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55936
56120
|
|
|
55937
56121
|
"use strict";
|
|
@@ -56032,7 +56216,7 @@ exports.fleetTemplatesExtractor = fleetTemplatesExtractor;
|
|
|
56032
56216
|
//# sourceMappingURL=FleetTemplateEntity.js.map
|
|
56033
56217
|
|
|
56034
56218
|
/***/ }),
|
|
56035
|
-
/*
|
|
56219
|
+
/* 425 */
|
|
56036
56220
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56037
56221
|
|
|
56038
56222
|
"use strict";
|
|
@@ -56074,7 +56258,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56074
56258
|
}
|
|
56075
56259
|
};
|
|
56076
56260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56077
|
-
var OpenFleetEntity_1 = __webpack_require__(
|
|
56261
|
+
var OpenFleetEntity_1 = __webpack_require__(426);
|
|
56078
56262
|
var OpenFleetApi = /** @class */ (function () {
|
|
56079
56263
|
function OpenFleetApi(session) {
|
|
56080
56264
|
this.entity = new OpenFleetEntity_1.default(session);
|
|
@@ -56141,7 +56325,7 @@ exports.default = OpenFleetApi;
|
|
|
56141
56325
|
//# sourceMappingURL=OpenFleetApi.js.map
|
|
56142
56326
|
|
|
56143
56327
|
/***/ }),
|
|
56144
|
-
/*
|
|
56328
|
+
/* 426 */
|
|
56145
56329
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56146
56330
|
|
|
56147
56331
|
"use strict";
|
|
@@ -56289,13 +56473,13 @@ exports.default = OpenFleetEntity;
|
|
|
56289
56473
|
//# sourceMappingURL=OpenFleetEntity.js.map
|
|
56290
56474
|
|
|
56291
56475
|
/***/ }),
|
|
56292
|
-
/*
|
|
56476
|
+
/* 427 */
|
|
56293
56477
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56294
56478
|
|
|
56295
56479
|
"use strict";
|
|
56296
56480
|
|
|
56297
56481
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56298
|
-
var Geocoding_1 = __webpack_require__(
|
|
56482
|
+
var Geocoding_1 = __webpack_require__(428);
|
|
56299
56483
|
var GeocodingApi = /** @class */ (function () {
|
|
56300
56484
|
function GeocodingApi(session) {
|
|
56301
56485
|
this.geocodingEntity = new Geocoding_1.default(session);
|
|
@@ -56312,7 +56496,7 @@ exports.default = GeocodingApi;
|
|
|
56312
56496
|
//# sourceMappingURL=GeocodingApi.js.map
|
|
56313
56497
|
|
|
56314
56498
|
/***/ }),
|
|
56315
|
-
/*
|
|
56499
|
+
/* 428 */
|
|
56316
56500
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56317
56501
|
|
|
56318
56502
|
"use strict";
|
|
@@ -56413,7 +56597,7 @@ exports.default = GeocodingEntity;
|
|
|
56413
56597
|
//# sourceMappingURL=Geocoding.js.map
|
|
56414
56598
|
|
|
56415
56599
|
/***/ }),
|
|
56416
|
-
/*
|
|
56600
|
+
/* 429 */
|
|
56417
56601
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56418
56602
|
|
|
56419
56603
|
"use strict";
|
|
@@ -56455,7 +56639,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56455
56639
|
}
|
|
56456
56640
|
};
|
|
56457
56641
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56458
|
-
var ApplicationEntity_1 = __webpack_require__(
|
|
56642
|
+
var ApplicationEntity_1 = __webpack_require__(430);
|
|
56459
56643
|
var ApplicationApi = /** @class */ (function () {
|
|
56460
56644
|
function ApplicationApi(session) {
|
|
56461
56645
|
this.entity = new ApplicationEntity_1.default(session);
|
|
@@ -56476,7 +56660,7 @@ exports.default = ApplicationApi;
|
|
|
56476
56660
|
//# sourceMappingURL=ApplicationApi.js.map
|
|
56477
56661
|
|
|
56478
56662
|
/***/ }),
|
|
56479
|
-
/*
|
|
56663
|
+
/* 430 */
|
|
56480
56664
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56481
56665
|
|
|
56482
56666
|
"use strict";
|
|
@@ -56544,9 +56728,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56544
56728
|
}
|
|
56545
56729
|
};
|
|
56546
56730
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56547
|
-
var StoreEntity_1 = __webpack_require__(
|
|
56548
|
-
var uuid_1 = __webpack_require__(
|
|
56549
|
-
var _ = __webpack_require__(
|
|
56731
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
56732
|
+
var uuid_1 = __webpack_require__(475);
|
|
56733
|
+
var _ = __webpack_require__(11);
|
|
56550
56734
|
var entityName = 'application_action';
|
|
56551
56735
|
var ApplicationEntity = /** @class */ (function (_super) {
|
|
56552
56736
|
__extends(ApplicationEntity, _super);
|
|
@@ -56639,7 +56823,7 @@ exports.default = ApplicationEntity;
|
|
|
56639
56823
|
//# sourceMappingURL=ApplicationEntity.js.map
|
|
56640
56824
|
|
|
56641
56825
|
/***/ }),
|
|
56642
|
-
/*
|
|
56826
|
+
/* 431 */
|
|
56643
56827
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56644
56828
|
|
|
56645
56829
|
"use strict";
|
|
@@ -56681,7 +56865,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56681
56865
|
}
|
|
56682
56866
|
};
|
|
56683
56867
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56684
|
-
var CustomerAvailabilityHourEntity_1 = __webpack_require__(
|
|
56868
|
+
var CustomerAvailabilityHourEntity_1 = __webpack_require__(432);
|
|
56685
56869
|
var CustomerAvailabilityHourApi = /** @class */ (function () {
|
|
56686
56870
|
function CustomerAvailabilityHourApi(session) {
|
|
56687
56871
|
this.customerAvailabilityHourEntity = new CustomerAvailabilityHourEntity_1.default(session);
|
|
@@ -56699,7 +56883,7 @@ exports.default = CustomerAvailabilityHourApi;
|
|
|
56699
56883
|
//# sourceMappingURL=CustomerAvailabilityHourApi.js.map
|
|
56700
56884
|
|
|
56701
56885
|
/***/ }),
|
|
56702
|
-
/*
|
|
56886
|
+
/* 432 */
|
|
56703
56887
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56704
56888
|
|
|
56705
56889
|
"use strict";
|
|
@@ -56757,7 +56941,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56757
56941
|
};
|
|
56758
56942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56759
56943
|
exports.Routes = void 0;
|
|
56760
|
-
var StoreEntity_1 = __webpack_require__(
|
|
56944
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
56761
56945
|
exports.Routes = {
|
|
56762
56946
|
GET_AVAILABILITY_HOURS: '/customer_availability_hours'
|
|
56763
56947
|
};
|
|
@@ -56810,13 +56994,13 @@ exports.default = CustomerAvailabilityHourEntity;
|
|
|
56810
56994
|
//# sourceMappingURL=CustomerAvailabilityHourEntity.js.map
|
|
56811
56995
|
|
|
56812
56996
|
/***/ }),
|
|
56813
|
-
/*
|
|
56997
|
+
/* 433 */
|
|
56814
56998
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56815
56999
|
|
|
56816
57000
|
"use strict";
|
|
56817
57001
|
|
|
56818
57002
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56819
|
-
var Shifts_1 = __webpack_require__(
|
|
57003
|
+
var Shifts_1 = __webpack_require__(434);
|
|
56820
57004
|
var ShiftsApi = /** @class */ (function () {
|
|
56821
57005
|
function ShiftsApi(session) {
|
|
56822
57006
|
this.shiftsEntity = new Shifts_1.default(session);
|
|
@@ -56839,7 +57023,7 @@ exports.default = ShiftsApi;
|
|
|
56839
57023
|
//# sourceMappingURL=ShiftsApi.js.map
|
|
56840
57024
|
|
|
56841
57025
|
/***/ }),
|
|
56842
|
-
/*
|
|
57026
|
+
/* 434 */
|
|
56843
57027
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56844
57028
|
|
|
56845
57029
|
"use strict";
|
|
@@ -56954,7 +57138,7 @@ exports.default = ShiftsEntity;
|
|
|
56954
57138
|
//# sourceMappingURL=Shifts.js.map
|
|
56955
57139
|
|
|
56956
57140
|
/***/ }),
|
|
56957
|
-
/*
|
|
57141
|
+
/* 435 */
|
|
56958
57142
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56959
57143
|
|
|
56960
57144
|
"use strict";
|
|
@@ -56996,7 +57180,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56996
57180
|
}
|
|
56997
57181
|
};
|
|
56998
57182
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56999
|
-
var ExclusionWindowEntity_1 = __webpack_require__(
|
|
57183
|
+
var ExclusionWindowEntity_1 = __webpack_require__(436);
|
|
57000
57184
|
var ExclusionWindowApi = /** @class */ (function () {
|
|
57001
57185
|
function ExclusionWindowApi(session) {
|
|
57002
57186
|
this.exclusionWindowEntity = new ExclusionWindowEntity_1.default(session);
|
|
@@ -57042,7 +57226,7 @@ exports.default = ExclusionWindowApi;
|
|
|
57042
57226
|
//# sourceMappingURL=ExclusionWindowApi.js.map
|
|
57043
57227
|
|
|
57044
57228
|
/***/ }),
|
|
57045
|
-
/*
|
|
57229
|
+
/* 436 */
|
|
57046
57230
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57047
57231
|
|
|
57048
57232
|
"use strict";
|
|
@@ -57132,7 +57316,7 @@ exports.default = ExclusionWindowEntity;
|
|
|
57132
57316
|
//# sourceMappingURL=ExclusionWindowEntity.js.map
|
|
57133
57317
|
|
|
57134
57318
|
/***/ }),
|
|
57135
|
-
/*
|
|
57319
|
+
/* 437 */
|
|
57136
57320
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57137
57321
|
|
|
57138
57322
|
"use strict";
|
|
@@ -57168,7 +57352,7 @@ exports.default = Country;
|
|
|
57168
57352
|
//# sourceMappingURL=Country.js.map
|
|
57169
57353
|
|
|
57170
57354
|
/***/ }),
|
|
57171
|
-
/*
|
|
57355
|
+
/* 438 */
|
|
57172
57356
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57173
57357
|
|
|
57174
57358
|
"use strict";
|
|
@@ -57210,7 +57394,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57210
57394
|
}
|
|
57211
57395
|
};
|
|
57212
57396
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57213
|
-
var OauthApplicationEntity_1 = __webpack_require__(
|
|
57397
|
+
var OauthApplicationEntity_1 = __webpack_require__(439);
|
|
57214
57398
|
var OauthApplicationApi = /** @class */ (function () {
|
|
57215
57399
|
function OauthApplicationApi(session) {
|
|
57216
57400
|
this.entity = new OauthApplicationEntity_1.default(session);
|
|
@@ -57270,7 +57454,7 @@ exports.default = OauthApplicationApi;
|
|
|
57270
57454
|
//# sourceMappingURL=OauthApplicationApi.js.map
|
|
57271
57455
|
|
|
57272
57456
|
/***/ }),
|
|
57273
|
-
/*
|
|
57457
|
+
/* 439 */
|
|
57274
57458
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57275
57459
|
|
|
57276
57460
|
"use strict";
|
|
@@ -57387,13 +57571,13 @@ exports.default = OauthApplicationEntity;
|
|
|
57387
57571
|
//# sourceMappingURL=OauthApplicationEntity.js.map
|
|
57388
57572
|
|
|
57389
57573
|
/***/ }),
|
|
57390
|
-
/*
|
|
57574
|
+
/* 440 */
|
|
57391
57575
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57392
57576
|
|
|
57393
57577
|
"use strict";
|
|
57394
57578
|
|
|
57395
57579
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57396
|
-
var InventoryEntity_1 = __webpack_require__(
|
|
57580
|
+
var InventoryEntity_1 = __webpack_require__(441);
|
|
57397
57581
|
var Inventory = /** @class */ (function () {
|
|
57398
57582
|
function Inventory(session) {
|
|
57399
57583
|
this.inventory = new InventoryEntity_1.default(session);
|
|
@@ -57416,7 +57600,7 @@ exports.default = Inventory;
|
|
|
57416
57600
|
//# sourceMappingURL=Inventory.js.map
|
|
57417
57601
|
|
|
57418
57602
|
/***/ }),
|
|
57419
|
-
/*
|
|
57603
|
+
/* 441 */
|
|
57420
57604
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57421
57605
|
|
|
57422
57606
|
"use strict";
|
|
@@ -57453,7 +57637,7 @@ exports.default = InventoryEntity;
|
|
|
57453
57637
|
//# sourceMappingURL=InventoryEntity.js.map
|
|
57454
57638
|
|
|
57455
57639
|
/***/ }),
|
|
57456
|
-
/*
|
|
57640
|
+
/* 442 */
|
|
57457
57641
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57458
57642
|
|
|
57459
57643
|
"use strict";
|
|
@@ -57495,7 +57679,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57495
57679
|
}
|
|
57496
57680
|
};
|
|
57497
57681
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57498
|
-
var PushNotificationRegistrationEntity_1 = __webpack_require__(
|
|
57682
|
+
var PushNotificationRegistrationEntity_1 = __webpack_require__(443);
|
|
57499
57683
|
var PushNotificationRegistration = /** @class */ (function () {
|
|
57500
57684
|
function PushNotificationRegistration(session) {
|
|
57501
57685
|
this.pushNotificationRegistrationEntity = new PushNotificationRegistrationEntity_1.default(session);
|
|
@@ -57520,7 +57704,7 @@ exports.default = PushNotificationRegistration;
|
|
|
57520
57704
|
//# sourceMappingURL=PushNotificationRegistration.js.map
|
|
57521
57705
|
|
|
57522
57706
|
/***/ }),
|
|
57523
|
-
/*
|
|
57707
|
+
/* 443 */
|
|
57524
57708
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57525
57709
|
|
|
57526
57710
|
"use strict";
|
|
@@ -57553,7 +57737,7 @@ exports.default = PushNotificationRegistrationEntity;
|
|
|
57553
57737
|
//# sourceMappingURL=PushNotificationRegistrationEntity.js.map
|
|
57554
57738
|
|
|
57555
57739
|
/***/ }),
|
|
57556
|
-
/*
|
|
57740
|
+
/* 444 */
|
|
57557
57741
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57558
57742
|
|
|
57559
57743
|
"use strict";
|
|
@@ -57595,7 +57779,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57595
57779
|
}
|
|
57596
57780
|
};
|
|
57597
57781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57598
|
-
var ReasonToCancelTasksEntity_1 = __webpack_require__(
|
|
57782
|
+
var ReasonToCancelTasksEntity_1 = __webpack_require__(445);
|
|
57599
57783
|
var ReasonToCancelTasks = /** @class */ (function () {
|
|
57600
57784
|
function ReasonToCancelTasks(session) {
|
|
57601
57785
|
this.reasonToCancelTasksEntity = new ReasonToCancelTasksEntity_1.default(session);
|
|
@@ -57616,7 +57800,7 @@ exports.default = ReasonToCancelTasks;
|
|
|
57616
57800
|
//# sourceMappingURL=ReasonToCancelTasksApi.js.map
|
|
57617
57801
|
|
|
57618
57802
|
/***/ }),
|
|
57619
|
-
/*
|
|
57803
|
+
/* 445 */
|
|
57620
57804
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57621
57805
|
|
|
57622
57806
|
"use strict";
|
|
@@ -57637,7 +57821,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
57637
57821
|
};
|
|
57638
57822
|
})();
|
|
57639
57823
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57640
|
-
var StoreEntity_1 = __webpack_require__(
|
|
57824
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
57641
57825
|
var Entity_1 = __webpack_require__(5);
|
|
57642
57826
|
var extractor = function (response) { return response.reasons_to_cancel_task; };
|
|
57643
57827
|
var BASE_ROUTE = 'reason_to_cancel_tasks';
|
|
@@ -57664,7 +57848,7 @@ exports.default = ReasonToCancelTasksEntity;
|
|
|
57664
57848
|
//# sourceMappingURL=ReasonToCancelTasksEntity.js.map
|
|
57665
57849
|
|
|
57666
57850
|
/***/ }),
|
|
57667
|
-
/*
|
|
57851
|
+
/* 446 */
|
|
57668
57852
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57669
57853
|
|
|
57670
57854
|
"use strict";
|
|
@@ -57706,7 +57890,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57706
57890
|
}
|
|
57707
57891
|
};
|
|
57708
57892
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57709
|
-
var CustomFilterEntity_1 = __webpack_require__(
|
|
57893
|
+
var CustomFilterEntity_1 = __webpack_require__(447);
|
|
57710
57894
|
var CustomFilterApi = /** @class */ (function () {
|
|
57711
57895
|
function CustomFilterApi(session) {
|
|
57712
57896
|
this.customFilterEntity = new CustomFilterEntity_1.default(session);
|
|
@@ -57745,7 +57929,7 @@ exports.default = CustomFilterApi;
|
|
|
57745
57929
|
//# sourceMappingURL=CustomFilterApi.js.map
|
|
57746
57930
|
|
|
57747
57931
|
/***/ }),
|
|
57748
|
-
/*
|
|
57932
|
+
/* 447 */
|
|
57749
57933
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57750
57934
|
|
|
57751
57935
|
"use strict";
|
|
@@ -57783,13 +57967,13 @@ exports.default = CustomFilterEntity;
|
|
|
57783
57967
|
//# sourceMappingURL=CustomFilterEntity.js.map
|
|
57784
57968
|
|
|
57785
57969
|
/***/ }),
|
|
57786
|
-
/*
|
|
57970
|
+
/* 448 */
|
|
57787
57971
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57788
57972
|
|
|
57789
57973
|
"use strict";
|
|
57790
57974
|
|
|
57791
57975
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57792
|
-
var FloatingInventoryEntity_1 = __webpack_require__(
|
|
57976
|
+
var FloatingInventoryEntity_1 = __webpack_require__(449);
|
|
57793
57977
|
var FloatingInventory = /** @class */ (function () {
|
|
57794
57978
|
function FloatingInventory(session) {
|
|
57795
57979
|
this.floatingInventory = new FloatingInventoryEntity_1.default(session);
|
|
@@ -57803,7 +57987,7 @@ exports.default = FloatingInventory;
|
|
|
57803
57987
|
//# sourceMappingURL=FloatingInventoryApi.js.map
|
|
57804
57988
|
|
|
57805
57989
|
/***/ }),
|
|
57806
|
-
/*
|
|
57990
|
+
/* 449 */
|
|
57807
57991
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57808
57992
|
|
|
57809
57993
|
"use strict";
|
|
@@ -57825,7 +58009,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
57825
58009
|
})();
|
|
57826
58010
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57827
58011
|
var Entity_1 = __webpack_require__(5);
|
|
57828
|
-
var FloatingInventory_consts_1 = __webpack_require__(
|
|
58012
|
+
var FloatingInventory_consts_1 = __webpack_require__(450);
|
|
57829
58013
|
var BASE_ROUTE = 'floating_inventories';
|
|
57830
58014
|
var USERS_WITH_AVAILABLE_FLOATING_INVENTORY = "/" + BASE_ROUTE + "/users_with_available_floating_inventory";
|
|
57831
58015
|
var FloatingInventoryEntity = /** @class */ (function (_super) {
|
|
@@ -57850,7 +58034,7 @@ exports.default = FloatingInventoryEntity;
|
|
|
57850
58034
|
//# sourceMappingURL=FloatingInventoryEntity.js.map
|
|
57851
58035
|
|
|
57852
58036
|
/***/ }),
|
|
57853
|
-
/*
|
|
58037
|
+
/* 450 */
|
|
57854
58038
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57855
58039
|
|
|
57856
58040
|
"use strict";
|
|
@@ -57862,13 +58046,13 @@ exports.userIdsExtractor = userIdsExtractor;
|
|
|
57862
58046
|
//# sourceMappingURL=FloatingInventory.consts.js.map
|
|
57863
58047
|
|
|
57864
58048
|
/***/ }),
|
|
57865
|
-
/*
|
|
58049
|
+
/* 451 */
|
|
57866
58050
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57867
58051
|
|
|
57868
58052
|
"use strict";
|
|
57869
58053
|
|
|
57870
58054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57871
|
-
var ServiceAreaEntity_1 = __webpack_require__(
|
|
58055
|
+
var ServiceAreaEntity_1 = __webpack_require__(452);
|
|
57872
58056
|
var ServiceAreaApi = /** @class */ (function () {
|
|
57873
58057
|
function ServiceAreaApi(session) {
|
|
57874
58058
|
this.serviceAreaEntity = new ServiceAreaEntity_1.default(session);
|
|
@@ -57897,7 +58081,7 @@ exports.default = ServiceAreaApi;
|
|
|
57897
58081
|
//# sourceMappingURL=ServiceAreaApi.js.map
|
|
57898
58082
|
|
|
57899
58083
|
/***/ }),
|
|
57900
|
-
/*
|
|
58084
|
+
/* 452 */
|
|
57901
58085
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57902
58086
|
|
|
57903
58087
|
"use strict";
|
|
@@ -57947,13 +58131,13 @@ exports.default = ServiceAreaEntity;
|
|
|
57947
58131
|
//# sourceMappingURL=ServiceAreaEntity.js.map
|
|
57948
58132
|
|
|
57949
58133
|
/***/ }),
|
|
57950
|
-
/*
|
|
58134
|
+
/* 453 */
|
|
57951
58135
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57952
58136
|
|
|
57953
58137
|
"use strict";
|
|
57954
58138
|
|
|
57955
58139
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57956
|
-
var BillingEntity_1 = __webpack_require__(
|
|
58140
|
+
var BillingEntity_1 = __webpack_require__(454);
|
|
57957
58141
|
var BillingApi = /** @class */ (function () {
|
|
57958
58142
|
function BillingApi(session) {
|
|
57959
58143
|
this.billingEntity = new BillingEntity_1.default(session);
|
|
@@ -58006,7 +58190,7 @@ exports.default = BillingApi;
|
|
|
58006
58190
|
//# sourceMappingURL=BillingApi.js.map
|
|
58007
58191
|
|
|
58008
58192
|
/***/ }),
|
|
58009
|
-
/*
|
|
58193
|
+
/* 454 */
|
|
58010
58194
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58011
58195
|
|
|
58012
58196
|
"use strict";
|
|
@@ -58244,7 +58428,7 @@ exports.default = BillingEntity;
|
|
|
58244
58428
|
//# sourceMappingURL=BillingEntity.js.map
|
|
58245
58429
|
|
|
58246
58430
|
/***/ }),
|
|
58247
|
-
/*
|
|
58431
|
+
/* 455 */
|
|
58248
58432
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58249
58433
|
|
|
58250
58434
|
"use strict";
|
|
@@ -58286,8 +58470,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58286
58470
|
}
|
|
58287
58471
|
};
|
|
58288
58472
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58289
|
-
var user_analytics_1 = __webpack_require__(
|
|
58290
|
-
var types_1 = __webpack_require__(
|
|
58473
|
+
var user_analytics_1 = __webpack_require__(456);
|
|
58474
|
+
var types_1 = __webpack_require__(459);
|
|
58291
58475
|
var UserAnalyticsApi = /** @class */ (function () {
|
|
58292
58476
|
function UserAnalyticsApi(session) {
|
|
58293
58477
|
this.session = session;
|
|
@@ -58343,13 +58527,13 @@ exports.default = UserAnalyticsApi;
|
|
|
58343
58527
|
//# sourceMappingURL=UserAnalyticsApi.js.map
|
|
58344
58528
|
|
|
58345
58529
|
/***/ }),
|
|
58346
|
-
/*
|
|
58530
|
+
/* 456 */
|
|
58347
58531
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58348
58532
|
|
|
58349
58533
|
"use strict";
|
|
58350
58534
|
|
|
58351
58535
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58352
|
-
const pendo_1 = __webpack_require__(
|
|
58536
|
+
const pendo_1 = __webpack_require__(457);
|
|
58353
58537
|
class AnalyticsApi {
|
|
58354
58538
|
constructor() {
|
|
58355
58539
|
this.provider = new pendo_1.PendoProvider();
|
|
@@ -58369,14 +58553,14 @@ exports.default = AnalyticsApi;
|
|
|
58369
58553
|
//# sourceMappingURL=index.js.map
|
|
58370
58554
|
|
|
58371
58555
|
/***/ }),
|
|
58372
|
-
/*
|
|
58556
|
+
/* 457 */
|
|
58373
58557
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58374
58558
|
|
|
58375
58559
|
"use strict";
|
|
58376
58560
|
|
|
58377
58561
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58378
58562
|
exports.PendoProvider = void 0;
|
|
58379
|
-
const pendoSnippet_1 = __webpack_require__(
|
|
58563
|
+
const pendoSnippet_1 = __webpack_require__(458);
|
|
58380
58564
|
class PendoProvider {
|
|
58381
58565
|
async addSnippet({ apiKey }) {
|
|
58382
58566
|
(0, pendoSnippet_1.addSnippet)(apiKey);
|
|
@@ -58398,7 +58582,7 @@ exports.PendoProvider = PendoProvider;
|
|
|
58398
58582
|
//# sourceMappingURL=pendo.js.map
|
|
58399
58583
|
|
|
58400
58584
|
/***/ }),
|
|
58401
|
-
/*
|
|
58585
|
+
/* 458 */
|
|
58402
58586
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58403
58587
|
|
|
58404
58588
|
"use strict";
|
|
@@ -58427,7 +58611,7 @@ exports.addSnippet = addSnippet;
|
|
|
58427
58611
|
//# sourceMappingURL=pendoSnippet.js.map
|
|
58428
58612
|
|
|
58429
58613
|
/***/ }),
|
|
58430
|
-
/*
|
|
58614
|
+
/* 459 */
|
|
58431
58615
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58432
58616
|
|
|
58433
58617
|
"use strict";
|
|
@@ -58443,13 +58627,13 @@ var Role;
|
|
|
58443
58627
|
//# sourceMappingURL=types.js.map
|
|
58444
58628
|
|
|
58445
58629
|
/***/ }),
|
|
58446
|
-
/*
|
|
58630
|
+
/* 460 */
|
|
58447
58631
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58448
58632
|
|
|
58449
58633
|
"use strict";
|
|
58450
58634
|
|
|
58451
58635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58452
|
-
var AnalyticsReportsEntity_1 = __webpack_require__(
|
|
58636
|
+
var AnalyticsReportsEntity_1 = __webpack_require__(461);
|
|
58453
58637
|
var AnalyticsReportsApi = /** @class */ (function () {
|
|
58454
58638
|
function AnalyticsReportsApi(session) {
|
|
58455
58639
|
this.analyticsReportsEntity = new AnalyticsReportsEntity_1.default(session);
|
|
@@ -58496,7 +58680,7 @@ exports.default = AnalyticsReportsApi;
|
|
|
58496
58680
|
//# sourceMappingURL=AnalyticsReportsApi.js.map
|
|
58497
58681
|
|
|
58498
58682
|
/***/ }),
|
|
58499
|
-
/*
|
|
58683
|
+
/* 461 */
|
|
58500
58684
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58501
58685
|
|
|
58502
58686
|
"use strict";
|
|
@@ -58723,13 +58907,13 @@ exports.default = AnalyticsReportsEntity;
|
|
|
58723
58907
|
//# sourceMappingURL=AnalyticsReportsEntity.js.map
|
|
58724
58908
|
|
|
58725
58909
|
/***/ }),
|
|
58726
|
-
/*
|
|
58910
|
+
/* 462 */
|
|
58727
58911
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58728
58912
|
|
|
58729
58913
|
"use strict";
|
|
58730
58914
|
|
|
58731
58915
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58732
|
-
var ServicePlansEntity_1 = __webpack_require__(
|
|
58916
|
+
var ServicePlansEntity_1 = __webpack_require__(463);
|
|
58733
58917
|
var ServicePlansApi = /** @class */ (function () {
|
|
58734
58918
|
function ServicePlansApi(session) {
|
|
58735
58919
|
this.servicePlansEntity = new ServicePlansEntity_1.default(session);
|
|
@@ -58746,7 +58930,7 @@ exports.default = ServicePlansApi;
|
|
|
58746
58930
|
//# sourceMappingURL=ServicePlansApi.js.map
|
|
58747
58931
|
|
|
58748
58932
|
/***/ }),
|
|
58749
|
-
/*
|
|
58933
|
+
/* 463 */
|
|
58750
58934
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58751
58935
|
|
|
58752
58936
|
"use strict";
|
|
@@ -58804,8 +58988,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58804
58988
|
};
|
|
58805
58989
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58806
58990
|
var Entity_1 = __webpack_require__(5);
|
|
58807
|
-
var StoreEntity_1 = __webpack_require__(
|
|
58808
|
-
var ServicePlans_consts_1 = __webpack_require__(
|
|
58991
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
58992
|
+
var ServicePlans_consts_1 = __webpack_require__(464);
|
|
58809
58993
|
var ServicePlanSEntity = /** @class */ (function (_super) {
|
|
58810
58994
|
__extends(ServicePlanSEntity, _super);
|
|
58811
58995
|
function ServicePlanSEntity(session) {
|
|
@@ -58835,7 +59019,7 @@ exports.default = ServicePlanSEntity;
|
|
|
58835
59019
|
//# sourceMappingURL=ServicePlansEntity.js.map
|
|
58836
59020
|
|
|
58837
59021
|
/***/ }),
|
|
58838
|
-
/*
|
|
59022
|
+
/* 464 */
|
|
58839
59023
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58840
59024
|
|
|
58841
59025
|
"use strict";
|
|
@@ -58849,13 +59033,13 @@ exports.planningResponseExtractor = planningResponseExtractor;
|
|
|
58849
59033
|
//# sourceMappingURL=ServicePlans.consts.js.map
|
|
58850
59034
|
|
|
58851
59035
|
/***/ }),
|
|
58852
|
-
/*
|
|
59036
|
+
/* 465 */
|
|
58853
59037
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58854
59038
|
|
|
58855
59039
|
"use strict";
|
|
58856
59040
|
|
|
58857
59041
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58858
|
-
var AlertsEntity_1 = __webpack_require__(
|
|
59042
|
+
var AlertsEntity_1 = __webpack_require__(466);
|
|
58859
59043
|
var AlertsApi = /** @class */ (function () {
|
|
58860
59044
|
function AlertsApi(session) {
|
|
58861
59045
|
this.alertsEntity = new AlertsEntity_1.default(session);
|
|
@@ -58884,7 +59068,7 @@ exports.default = AlertsApi;
|
|
|
58884
59068
|
//# sourceMappingURL=AlertsApi.js.map
|
|
58885
59069
|
|
|
58886
59070
|
/***/ }),
|
|
58887
|
-
/*
|
|
59071
|
+
/* 466 */
|
|
58888
59072
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58889
59073
|
|
|
58890
59074
|
"use strict";
|
|
@@ -58941,8 +59125,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58941
59125
|
}
|
|
58942
59126
|
};
|
|
58943
59127
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58944
|
-
var StoreEntity_1 = __webpack_require__(
|
|
58945
|
-
var Alerts_consts_1 = __webpack_require__(
|
|
59128
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
59129
|
+
var Alerts_consts_1 = __webpack_require__(467);
|
|
58946
59130
|
// Some adjustments to StoreEntity logic is required if proxying through store is required
|
|
58947
59131
|
var AlertsEntity = /** @class */ (function (_super) {
|
|
58948
59132
|
__extends(AlertsEntity, _super);
|
|
@@ -59017,7 +59201,7 @@ exports.default = AlertsEntity;
|
|
|
59017
59201
|
//# sourceMappingURL=AlertsEntity.js.map
|
|
59018
59202
|
|
|
59019
59203
|
/***/ }),
|
|
59020
|
-
/*
|
|
59204
|
+
/* 467 */
|
|
59021
59205
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59022
59206
|
|
|
59023
59207
|
"use strict";
|
|
@@ -59043,7 +59227,7 @@ exports.Routes = {
|
|
|
59043
59227
|
//# sourceMappingURL=Alerts.consts.js.map
|
|
59044
59228
|
|
|
59045
59229
|
/***/ }),
|
|
59046
|
-
/*
|
|
59230
|
+
/* 468 */
|
|
59047
59231
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59048
59232
|
|
|
59049
59233
|
"use strict";
|
|
@@ -59052,7 +59236,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59052
59236
|
//# sourceMappingURL=VehicleType.consts.js.map
|
|
59053
59237
|
|
|
59054
59238
|
/***/ }),
|
|
59055
|
-
/*
|
|
59239
|
+
/* 469 */
|
|
59056
59240
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59057
59241
|
|
|
59058
59242
|
"use strict";
|
|
@@ -59061,7 +59245,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59061
59245
|
//# sourceMappingURL=PlannedRoutes.consts.js.map
|
|
59062
59246
|
|
|
59063
59247
|
/***/ }),
|
|
59064
|
-
/*
|
|
59248
|
+
/* 470 */
|
|
59065
59249
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59066
59250
|
|
|
59067
59251
|
"use strict";
|
|
@@ -59070,7 +59254,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59070
59254
|
//# sourceMappingURL=Crew.consts.js.map
|
|
59071
59255
|
|
|
59072
59256
|
/***/ }),
|
|
59073
|
-
/*
|
|
59257
|
+
/* 471 */
|
|
59074
59258
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59075
59259
|
|
|
59076
59260
|
"use strict";
|
|
@@ -59079,7 +59263,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59079
59263
|
//# sourceMappingURL=Responses.js.map
|
|
59080
59264
|
|
|
59081
59265
|
/***/ }),
|
|
59082
|
-
/*
|
|
59266
|
+
/* 472 */
|
|
59083
59267
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59084
59268
|
|
|
59085
59269
|
"use strict";
|
|
@@ -59091,7 +59275,7 @@ exports.defaultExtractor = defaultExtractor;
|
|
|
59091
59275
|
//# sourceMappingURL=Tag.consts.js.map
|
|
59092
59276
|
|
|
59093
59277
|
/***/ }),
|
|
59094
|
-
/*
|
|
59278
|
+
/* 473 */
|
|
59095
59279
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59096
59280
|
|
|
59097
59281
|
"use strict";
|
|
@@ -59100,7 +59284,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59100
59284
|
//# sourceMappingURL=DeliveryBlocks.consts.js.map
|
|
59101
59285
|
|
|
59102
59286
|
/***/ }),
|
|
59103
|
-
/*
|
|
59287
|
+
/* 474 */
|
|
59104
59288
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59105
59289
|
|
|
59106
59290
|
"use strict";
|
|
@@ -59114,7 +59298,7 @@ exports.default = ResourceUploadType;
|
|
|
59114
59298
|
//# sourceMappingURL=ResourceUploadType.js.map
|
|
59115
59299
|
|
|
59116
59300
|
/***/ }),
|
|
59117
|
-
/*
|
|
59301
|
+
/* 475 */
|
|
59118
59302
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
59119
59303
|
|
|
59120
59304
|
"use strict";
|