@bringg/dashboard-sdk 0.4.76 → 0.4.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AlertConfiguration/AlertConfigurationApi.d.ts +16 -0
- package/dist/AlertConfiguration/AlertConfigurationApi.js +36 -0
- package/dist/AlertConfiguration/AlertConfigurationApi.js.map +1 -0
- package/dist/AlertConfiguration/Entity/AlertConfigurationEntity.d.ts +10 -0
- package/dist/AlertConfiguration/Entity/AlertConfigurationEntity.js +32 -0
- package/dist/AlertConfiguration/Entity/AlertConfigurationEntity.js.map +1 -0
- package/dist/AlertConfiguration/Entity/ConfigurationEntity.d.ts +6 -0
- package/dist/AlertConfiguration/Entity/ConfigurationEntity.js +32 -0
- package/dist/AlertConfiguration/Entity/ConfigurationEntity.js.map +1 -0
- package/dist/AlertConfiguration/Entity/SetEntity.d.ts +6 -0
- package/dist/AlertConfiguration/Entity/SetEntity.js +32 -0
- package/dist/AlertConfiguration/Entity/SetEntity.js.map +1 -0
- package/dist/AnalyticsReports/Entity/AnalyticsReportsEntity.js +2 -2
- package/dist/AnalyticsReports/Entity/AnalyticsReportsEntity.js.map +1 -1
- package/dist/BringgDashboardSDK.d.ts +2 -0
- package/dist/BringgDashboardSDK.js +2 -0
- package/dist/BringgDashboardSDK.js.map +1 -1
- package/dist/Core/BringgException.d.ts +1 -0
- package/dist/Core/BringgException.js.map +1 -1
- package/dist/Core/CrudService.d.ts +1 -1
- package/dist/Core/CrudService.js +6 -4
- package/dist/Core/CrudService.js.map +1 -1
- package/dist/Core/Entity.js +8 -1
- package/dist/Core/Entity.js.map +1 -1
- package/dist/FleetRouter/FleetRouterApi.js +1 -1
- package/dist/FleetRouter/FleetRouterApi.js.map +1 -1
- package/dist/Services/ServiceRequest.js +1 -1
- package/dist/Services/SessionBasedService.js +1 -0
- package/dist/Services/SessionBasedService.js.map +1 -1
- package/dist/Task/Entity/TaskEntity.d.ts +3 -0
- package/dist/Task/Entity/TaskEntity.js +12 -3
- package/dist/Task/Entity/TaskEntity.js.map +1 -1
- package/dist/Task/TaskApi.d.ts +3 -0
- package/dist/Task/TaskApi.js +9 -0
- package/dist/Task/TaskApi.js.map +1 -1
- package/dist/bringg-dashboard-sdk-cjs2.js +736 -533
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +75 -10
- package/dist/bringg-dashboard-sdk.min.js +3 -3
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/dist/stats.json +3566 -2964
- 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'
|
|
@@ -19645,6 +19652,7 @@ var SessionBasedService = /** @class */ (function () {
|
|
|
19645
19652
|
if (responseAsDefault.success === false) {
|
|
19646
19653
|
bringgException = exceptionProducer();
|
|
19647
19654
|
bringgException.details = responseAsDefault.message;
|
|
19655
|
+
bringgException.rc = responseAsDefault.rc;
|
|
19648
19656
|
throw bringgException;
|
|
19649
19657
|
}
|
|
19650
19658
|
return [2 /*return*/, extractor(response)];
|
|
@@ -20923,7 +20931,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
20923
20931
|
exports.THROTTLE_TIME = exports.ActionToFunction = exports.Actions = void 0;
|
|
20924
20932
|
var operators_1 = __webpack_require__(63);
|
|
20925
20933
|
var Subject_1 = __webpack_require__(196);
|
|
20926
|
-
var lodash_1 = __webpack_require__(
|
|
20934
|
+
var lodash_1 = __webpack_require__(11);
|
|
20927
20935
|
var Logger_1 = __webpack_require__(39);
|
|
20928
20936
|
var Actions;
|
|
20929
20937
|
(function (Actions) {
|
|
@@ -22025,33 +22033,34 @@ var FleetApi_1 = __webpack_require__(300);
|
|
|
22025
22033
|
var RuleApi_1 = __webpack_require__(302);
|
|
22026
22034
|
var PushTokenSubscriptionApi_1 = __webpack_require__(304);
|
|
22027
22035
|
var TaskApi_1 = __webpack_require__(306);
|
|
22028
|
-
var ApplicationMerchantConfigurationApi_1 = __webpack_require__(
|
|
22029
|
-
var ApplicationTeamConfigurationApi_1 = __webpack_require__(
|
|
22030
|
-
var GoogleMapsHelperApi_1 = __webpack_require__(
|
|
22031
|
-
var OnboardingApi_1 = __webpack_require__(
|
|
22032
|
-
var FleetRouterApi_1 = __webpack_require__(
|
|
22036
|
+
var ApplicationMerchantConfigurationApi_1 = __webpack_require__(407);
|
|
22037
|
+
var ApplicationTeamConfigurationApi_1 = __webpack_require__(409);
|
|
22038
|
+
var GoogleMapsHelperApi_1 = __webpack_require__(411);
|
|
22039
|
+
var OnboardingApi_1 = __webpack_require__(413);
|
|
22040
|
+
var FleetRouterApi_1 = __webpack_require__(415);
|
|
22041
|
+
var AlertConfigurationApi_1 = __webpack_require__(417);
|
|
22033
22042
|
var AuthService_1 = __webpack_require__(104);
|
|
22034
|
-
var ServiceApi_1 = __webpack_require__(
|
|
22035
|
-
var FleetTemplateApi_1 = __webpack_require__(
|
|
22036
|
-
var OpenFleetApi_1 = __webpack_require__(
|
|
22037
|
-
var GeocodingApi_1 = __webpack_require__(
|
|
22038
|
-
var ApplicationApi_1 = __webpack_require__(
|
|
22039
|
-
var CustomerAvailabilityHourApi_1 = __webpack_require__(
|
|
22040
|
-
var ShiftsApi_1 = __webpack_require__(
|
|
22041
|
-
var ExclusionWindowApi_1 = __webpack_require__(
|
|
22042
|
-
var Country_1 = __webpack_require__(
|
|
22043
|
-
var OauthApplicationApi_1 = __webpack_require__(
|
|
22044
|
-
var Inventory_1 = __webpack_require__(
|
|
22045
|
-
var PushNotificationRegistration_1 = __webpack_require__(
|
|
22046
|
-
var ReasonToCancelTasksApi_1 = __webpack_require__(
|
|
22047
|
-
var CustomFilterApi_1 = __webpack_require__(
|
|
22048
|
-
var FloatingInventoryApi_1 = __webpack_require__(
|
|
22049
|
-
var ServiceAreaApi_1 = __webpack_require__(
|
|
22050
|
-
var BillingApi_1 = __webpack_require__(
|
|
22051
|
-
var UserAnalyticsApi_1 = __webpack_require__(
|
|
22052
|
-
var AnalyticsReportsApi_1 = __webpack_require__(
|
|
22053
|
-
var ServicePlansApi_1 = __webpack_require__(
|
|
22054
|
-
var AlertsApi_1 = __webpack_require__(
|
|
22043
|
+
var ServiceApi_1 = __webpack_require__(421);
|
|
22044
|
+
var FleetTemplateApi_1 = __webpack_require__(423);
|
|
22045
|
+
var OpenFleetApi_1 = __webpack_require__(425);
|
|
22046
|
+
var GeocodingApi_1 = __webpack_require__(427);
|
|
22047
|
+
var ApplicationApi_1 = __webpack_require__(429);
|
|
22048
|
+
var CustomerAvailabilityHourApi_1 = __webpack_require__(431);
|
|
22049
|
+
var ShiftsApi_1 = __webpack_require__(433);
|
|
22050
|
+
var ExclusionWindowApi_1 = __webpack_require__(435);
|
|
22051
|
+
var Country_1 = __webpack_require__(437);
|
|
22052
|
+
var OauthApplicationApi_1 = __webpack_require__(438);
|
|
22053
|
+
var Inventory_1 = __webpack_require__(440);
|
|
22054
|
+
var PushNotificationRegistration_1 = __webpack_require__(442);
|
|
22055
|
+
var ReasonToCancelTasksApi_1 = __webpack_require__(444);
|
|
22056
|
+
var CustomFilterApi_1 = __webpack_require__(446);
|
|
22057
|
+
var FloatingInventoryApi_1 = __webpack_require__(448);
|
|
22058
|
+
var ServiceAreaApi_1 = __webpack_require__(451);
|
|
22059
|
+
var BillingApi_1 = __webpack_require__(453);
|
|
22060
|
+
var UserAnalyticsApi_1 = __webpack_require__(455);
|
|
22061
|
+
var AnalyticsReportsApi_1 = __webpack_require__(460);
|
|
22062
|
+
var ServicePlansApi_1 = __webpack_require__(462);
|
|
22063
|
+
var AlertsApi_1 = __webpack_require__(465);
|
|
22055
22064
|
var BringgDashboardSDK = /** @class */ (function () {
|
|
22056
22065
|
function BringgDashboardSDK(session) {
|
|
22057
22066
|
this.applicationMerchantConfiguration = null;
|
|
@@ -22115,6 +22124,7 @@ var BringgDashboardSDK = /** @class */ (function () {
|
|
|
22115
22124
|
bringg.fleets = new FleetApi_1.default(session);
|
|
22116
22125
|
bringg.rules = new RuleApi_1.default(session);
|
|
22117
22126
|
bringg.fleetRouterApi = new FleetRouterApi_1.default(session);
|
|
22127
|
+
bringg.alertConfiguration = new AlertConfigurationApi_1.default(session);
|
|
22118
22128
|
bringg.floatingInventory = new FloatingInventoryApi_1.default(session);
|
|
22119
22129
|
bringg.geocoding = new GeocodingApi_1.default(session);
|
|
22120
22130
|
bringg.googleMapsHelper = new GoogleMapsHelperApi_1.default(session);
|
|
@@ -30028,9 +30038,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
30028
30038
|
exports.AnonymousServiceRequest = exports.AuthorizedServiceRequest = exports.ResponseHandler = exports.RequestOptions = exports.logErrorResponse = void 0;
|
|
30029
30039
|
var axios_1 = __webpack_require__(146);
|
|
30030
30040
|
var Logger_1 = __webpack_require__(39);
|
|
30031
|
-
var lodash_1 = __webpack_require__(
|
|
30041
|
+
var lodash_1 = __webpack_require__(11);
|
|
30032
30042
|
var BringgException_1 = __webpack_require__(15);
|
|
30033
|
-
var version = '0.4.
|
|
30043
|
+
var version = '0.4.80';
|
|
30034
30044
|
function logErrorResponse(response) {
|
|
30035
30045
|
var data = response.data, status = response.status;
|
|
30036
30046
|
try {
|
|
@@ -31649,7 +31659,7 @@ __exportStar(__webpack_require__(358), exports);
|
|
|
31649
31659
|
__exportStar(__webpack_require__(359), exports);
|
|
31650
31660
|
__exportStar(__webpack_require__(360), exports);
|
|
31651
31661
|
__exportStar(__webpack_require__(361), exports);
|
|
31652
|
-
__exportStar(__webpack_require__(
|
|
31662
|
+
__exportStar(__webpack_require__(362), exports);
|
|
31653
31663
|
__exportStar(__webpack_require__(366), exports);
|
|
31654
31664
|
__exportStar(__webpack_require__(367), exports);
|
|
31655
31665
|
__exportStar(__webpack_require__(368), exports);
|
|
@@ -31689,6 +31699,7 @@ __exportStar(__webpack_require__(401), exports);
|
|
|
31689
31699
|
__exportStar(__webpack_require__(402), exports);
|
|
31690
31700
|
__exportStar(__webpack_require__(403), exports);
|
|
31691
31701
|
__exportStar(__webpack_require__(404), exports);
|
|
31702
|
+
__exportStar(__webpack_require__(405), exports);
|
|
31692
31703
|
//# sourceMappingURL=index.js.map
|
|
31693
31704
|
|
|
31694
31705
|
/***/ }),
|
|
@@ -31699,7 +31710,7 @@ __exportStar(__webpack_require__(404), exports);
|
|
|
31699
31710
|
|
|
31700
31711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31701
31712
|
exports.TaskHelpers = void 0;
|
|
31702
|
-
var lodash_1 = __webpack_require__(
|
|
31713
|
+
var lodash_1 = __webpack_require__(11);
|
|
31703
31714
|
var types_1 = __webpack_require__(101);
|
|
31704
31715
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
31705
31716
|
var TaskHelpers = /** @class */ (function () {
|
|
@@ -31818,7 +31829,7 @@ var Route_1 = __webpack_require__(20);
|
|
|
31818
31829
|
var BringgException_1 = __webpack_require__(15);
|
|
31819
31830
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
31820
31831
|
var sha1 = __webpack_require__(165);
|
|
31821
|
-
var lodash_1 = __webpack_require__(
|
|
31832
|
+
var lodash_1 = __webpack_require__(11);
|
|
31822
31833
|
var BringgDashboardSDK_1 = __webpack_require__(61);
|
|
31823
31834
|
exports.CREATE_TOKEN_ROUTE = new Route_1.Route('/tokens', 1 /* POST */);
|
|
31824
31835
|
exports.GET_USER_ROUTE = new Route_1.Route('/tokens', 0 /* GET */);
|
|
@@ -36582,12 +36593,12 @@ exports.getCsvFieldsExtractor = getCsvFieldsExtractor;
|
|
|
36582
36593
|
|
|
36583
36594
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36584
36595
|
exports.ResourceUploadType = exports.DeliveryBlockConsts = exports.TagConsts = exports.Responses = exports.ChatConversationConsts = exports.ChatMessageConsts = exports.CrewConsts = exports.DashboardConsts = exports.LanguageConsts = exports.NotificationTemplateConsts = exports.NotificationTypesConsts = exports.PlannedRoutesConsts = exports.ReasonToChangeInventory = exports.RunConsts = exports.TaskInventoryConsts = exports.VehicleTypeConsts = exports.BringgDashboardSDK = void 0;
|
|
36585
|
-
var lodash_1 = __webpack_require__(
|
|
36596
|
+
var lodash_1 = __webpack_require__(11);
|
|
36586
36597
|
var Logger_1 = __webpack_require__(39);
|
|
36587
36598
|
//export types
|
|
36588
36599
|
var BringgDashboardSDK_1 = __webpack_require__(61);
|
|
36589
36600
|
Object.defineProperty(exports, "BringgDashboardSDK", { enumerable: true, get: function () { return BringgDashboardSDK_1.BringgDashboardSDK; } });
|
|
36590
|
-
var VehicleTypeConsts = __webpack_require__(
|
|
36601
|
+
var VehicleTypeConsts = __webpack_require__(468);
|
|
36591
36602
|
exports.VehicleTypeConsts = VehicleTypeConsts;
|
|
36592
36603
|
var TaskInventoryConsts = __webpack_require__(136);
|
|
36593
36604
|
exports.TaskInventoryConsts = TaskInventoryConsts;
|
|
@@ -36595,7 +36606,7 @@ var RunConsts = __webpack_require__(133);
|
|
|
36595
36606
|
exports.RunConsts = RunConsts;
|
|
36596
36607
|
var ReasonToChangeInventory = __webpack_require__(135);
|
|
36597
36608
|
exports.ReasonToChangeInventory = ReasonToChangeInventory;
|
|
36598
|
-
var PlannedRoutesConsts = __webpack_require__(
|
|
36609
|
+
var PlannedRoutesConsts = __webpack_require__(469);
|
|
36599
36610
|
exports.PlannedRoutesConsts = PlannedRoutesConsts;
|
|
36600
36611
|
var NotificationTypesConsts = __webpack_require__(140);
|
|
36601
36612
|
exports.NotificationTypesConsts = NotificationTypesConsts;
|
|
@@ -36605,19 +36616,19 @@ var LanguageConsts = __webpack_require__(139);
|
|
|
36605
36616
|
exports.LanguageConsts = LanguageConsts;
|
|
36606
36617
|
var DashboardConsts = __webpack_require__(134);
|
|
36607
36618
|
exports.DashboardConsts = DashboardConsts;
|
|
36608
|
-
var CrewConsts = __webpack_require__(
|
|
36619
|
+
var CrewConsts = __webpack_require__(470);
|
|
36609
36620
|
exports.CrewConsts = CrewConsts;
|
|
36610
36621
|
var ChatMessageConsts = __webpack_require__(138);
|
|
36611
36622
|
exports.ChatMessageConsts = ChatMessageConsts;
|
|
36612
36623
|
var ChatConversationConsts = __webpack_require__(137);
|
|
36613
36624
|
exports.ChatConversationConsts = ChatConversationConsts;
|
|
36614
|
-
var Responses = __webpack_require__(
|
|
36625
|
+
var Responses = __webpack_require__(471);
|
|
36615
36626
|
exports.Responses = Responses;
|
|
36616
|
-
var TagConsts = __webpack_require__(
|
|
36627
|
+
var TagConsts = __webpack_require__(472);
|
|
36617
36628
|
exports.TagConsts = TagConsts;
|
|
36618
|
-
var DeliveryBlockConsts = __webpack_require__(
|
|
36629
|
+
var DeliveryBlockConsts = __webpack_require__(473);
|
|
36619
36630
|
exports.DeliveryBlockConsts = DeliveryBlockConsts;
|
|
36620
|
-
var ResourceUploadType_1 = __webpack_require__(
|
|
36631
|
+
var ResourceUploadType_1 = __webpack_require__(474);
|
|
36621
36632
|
exports.ResourceUploadType = ResourceUploadType_1.default;
|
|
36622
36633
|
module.exports = {};
|
|
36623
36634
|
lodash_1.extend(module.exports, BringgDashboardSDK_1.BringgDashboardSDK);
|
|
@@ -37857,7 +37868,7 @@ module.exports = function isAxiosError(payload) {
|
|
|
37857
37868
|
"use strict";
|
|
37858
37869
|
|
|
37859
37870
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37860
|
-
var lodash_1 = __webpack_require__(
|
|
37871
|
+
var lodash_1 = __webpack_require__(11);
|
|
37861
37872
|
var User = /** @class */ (function () {
|
|
37862
37873
|
function User(data) {
|
|
37863
37874
|
if (data) {
|
|
@@ -41984,7 +41995,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
41984
41995
|
};
|
|
41985
41996
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41986
41997
|
var MerchantEntity_1 = __webpack_require__(194);
|
|
41987
|
-
var lodash_1 = __webpack_require__(
|
|
41998
|
+
var lodash_1 = __webpack_require__(11);
|
|
41988
41999
|
var cached_promise_1 = __webpack_require__(70);
|
|
41989
42000
|
var MerchantApi = /** @class */ (function () {
|
|
41990
42001
|
function MerchantApi(session) {
|
|
@@ -42111,8 +42122,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
42111
42122
|
}
|
|
42112
42123
|
};
|
|
42113
42124
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42114
|
-
var StoreEntity_1 = __webpack_require__(
|
|
42115
|
-
var lodash_1 = __webpack_require__(
|
|
42125
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
42126
|
+
var lodash_1 = __webpack_require__(11);
|
|
42116
42127
|
var Merchant_consts_1 = __webpack_require__(208);
|
|
42117
42128
|
var BaseRoute = '/merchant';
|
|
42118
42129
|
var ROUTES = {
|
|
@@ -42396,13 +42407,14 @@ var CrudService = /** @class */ (function (_super) {
|
|
|
42396
42407
|
}
|
|
42397
42408
|
});
|
|
42398
42409
|
}); };
|
|
42399
|
-
_this.patch = function (payload) { return __awaiter(_this, void 0, void 0, function () {
|
|
42410
|
+
_this.patch = function (id, payload) { return __awaiter(_this, void 0, void 0, function () {
|
|
42400
42411
|
return __generator(this, function (_a) {
|
|
42401
42412
|
switch (_a.label) {
|
|
42402
42413
|
case 0: return [4 /*yield*/, this.routeGenerator
|
|
42403
|
-
.patch(this.Routes.PATCH)
|
|
42414
|
+
.patch(id ? this.Routes.PATCH_WITH_ID : this.Routes.PATCH)
|
|
42415
|
+
.withRouteParams({ id: id })
|
|
42404
42416
|
.withPayload(payload)
|
|
42405
|
-
.setException("Failed to
|
|
42417
|
+
.setException("Failed to patch " + this.entityName)
|
|
42406
42418
|
.invoke()];
|
|
42407
42419
|
case 1: return [2 /*return*/, _a.sent()];
|
|
42408
42420
|
}
|
|
@@ -42418,7 +42430,8 @@ var CrudService = /** @class */ (function (_super) {
|
|
|
42418
42430
|
CREATE: basePath,
|
|
42419
42431
|
UPDATE: basePath + "/{:id}",
|
|
42420
42432
|
DELETE: basePath + "/{:id}",
|
|
42421
|
-
PATCH: basePath
|
|
42433
|
+
PATCH: basePath,
|
|
42434
|
+
PATCH_WITH_ID: basePath + "/{:id}"
|
|
42422
42435
|
};
|
|
42423
42436
|
return _this;
|
|
42424
42437
|
}
|
|
@@ -43004,7 +43017,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
43004
43017
|
};
|
|
43005
43018
|
})();
|
|
43006
43019
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43007
|
-
var StoreEntity_1 = __webpack_require__(
|
|
43020
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
43008
43021
|
var Rollouts_consts_1 = __webpack_require__(211);
|
|
43009
43022
|
var RolloutsEntity = /** @class */ (function (_super) {
|
|
43010
43023
|
__extends(RolloutsEntity, _super);
|
|
@@ -43690,7 +43703,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
43690
43703
|
}
|
|
43691
43704
|
};
|
|
43692
43705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43693
|
-
var StoreEntity_1 = __webpack_require__(
|
|
43706
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
43694
43707
|
var Entity_1 = __webpack_require__(5);
|
|
43695
43708
|
var CustomerEntity = /** @class */ (function (_super) {
|
|
43696
43709
|
__extends(CustomerEntity, _super);
|
|
@@ -43860,7 +43873,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
43860
43873
|
};
|
|
43861
43874
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43862
43875
|
exports.WidgetGetResponseExtractor = exports.DashboardGetResponseExtractor = exports.Routes = void 0;
|
|
43863
|
-
var lodash_1 = __webpack_require__(
|
|
43876
|
+
var lodash_1 = __webpack_require__(11);
|
|
43864
43877
|
var SessionBasedService_1 = __webpack_require__(26);
|
|
43865
43878
|
var BringgException_1 = __webpack_require__(15);
|
|
43866
43879
|
var Route_1 = __webpack_require__(20);
|
|
@@ -44355,9 +44368,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
44355
44368
|
};
|
|
44356
44369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44357
44370
|
var ChatConversation_consts_1 = __webpack_require__(137);
|
|
44358
|
-
var StoreEntity_1 = __webpack_require__(
|
|
44371
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
44359
44372
|
var Entity_1 = __webpack_require__(5);
|
|
44360
|
-
var lodash_1 = __webpack_require__(
|
|
44373
|
+
var lodash_1 = __webpack_require__(11);
|
|
44361
44374
|
var Routes = {
|
|
44362
44375
|
UpdateLastRead: '/chat_conversations/{:id}/update_last_read'
|
|
44363
44376
|
};
|
|
@@ -44566,8 +44579,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
44566
44579
|
var ChatMessage_consts_1 = __webpack_require__(138);
|
|
44567
44580
|
var operators_1 = __webpack_require__(63);
|
|
44568
44581
|
var rxjs_1 = __webpack_require__(71);
|
|
44569
|
-
var lodash_1 = __webpack_require__(
|
|
44570
|
-
var StoreEntity_1 = __webpack_require__(
|
|
44582
|
+
var lodash_1 = __webpack_require__(11);
|
|
44583
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
44571
44584
|
var Entity_1 = __webpack_require__(5);
|
|
44572
44585
|
var ChatMessage = /** @class */ (function (_super) {
|
|
44573
44586
|
__extends(ChatMessage, _super);
|
|
@@ -44832,7 +44845,7 @@ var BaseStore_1 = __webpack_require__(48);
|
|
|
44832
44845
|
var CrewService_1 = __webpack_require__(228);
|
|
44833
44846
|
var rxjs_1 = __webpack_require__(71);
|
|
44834
44847
|
var operators_1 = __webpack_require__(63);
|
|
44835
|
-
var lodash_1 = __webpack_require__(
|
|
44848
|
+
var lodash_1 = __webpack_require__(11);
|
|
44836
44849
|
var CrewStore = /** @class */ (function (_super) {
|
|
44837
44850
|
__extends(CrewStore, _super);
|
|
44838
44851
|
function CrewStore(session) {
|
|
@@ -45186,7 +45199,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
45186
45199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45187
45200
|
exports.extractor = void 0;
|
|
45188
45201
|
var Entity_1 = __webpack_require__(5);
|
|
45189
|
-
var StoreEntity_1 = __webpack_require__(
|
|
45202
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
45190
45203
|
var extractor = function (response) { return response.planned_routes; };
|
|
45191
45204
|
exports.extractor = extractor;
|
|
45192
45205
|
var Routes = {
|
|
@@ -45681,7 +45694,7 @@ var UsersStore_1 = __webpack_require__(238);
|
|
|
45681
45694
|
var BringgException_1 = __webpack_require__(15);
|
|
45682
45695
|
var MethodsArgsDecorators_1 = __webpack_require__(242);
|
|
45683
45696
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
45684
|
-
var lodash_1 = __webpack_require__(
|
|
45697
|
+
var lodash_1 = __webpack_require__(11);
|
|
45685
45698
|
var User_consts_1 = __webpack_require__(98);
|
|
45686
45699
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
45687
45700
|
var ALLOWED_KEYS = {
|
|
@@ -46030,7 +46043,7 @@ var UsersService_1 = __webpack_require__(239);
|
|
|
46030
46043
|
var User_consts_1 = __webpack_require__(98);
|
|
46031
46044
|
var operators_1 = __webpack_require__(63);
|
|
46032
46045
|
var rxjs_1 = __webpack_require__(71);
|
|
46033
|
-
var lodash_1 = __webpack_require__(
|
|
46046
|
+
var lodash_1 = __webpack_require__(11);
|
|
46034
46047
|
var THROTTLE_TIME = 500;
|
|
46035
46048
|
var UsersStore = /** @class */ (function (_super) {
|
|
46036
46049
|
__extends(UsersStore, _super);
|
|
@@ -46480,7 +46493,7 @@ var Route_1 = __webpack_require__(20);
|
|
|
46480
46493
|
var User_consts_1 = __webpack_require__(98);
|
|
46481
46494
|
var PubSubEvents_1 = __webpack_require__(68);
|
|
46482
46495
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
46483
|
-
var lodash_1 = __webpack_require__(
|
|
46496
|
+
var lodash_1 = __webpack_require__(11);
|
|
46484
46497
|
var ROUTES = {
|
|
46485
46498
|
GET: new Route_1.Route('/users/{:userId}', 0 /* GET */),
|
|
46486
46499
|
GET_ALL: new Route_1.Route('/users/', 0 /* GET */),
|
|
@@ -46837,7 +46850,7 @@ exports.PubSubService = PubSubService;
|
|
|
46837
46850
|
|
|
46838
46851
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46839
46852
|
exports.UserHelpers = void 0;
|
|
46840
|
-
var lodash_1 = __webpack_require__(
|
|
46853
|
+
var lodash_1 = __webpack_require__(11);
|
|
46841
46854
|
var UserHelpers = /** @class */ (function () {
|
|
46842
46855
|
function UserHelpers() {
|
|
46843
46856
|
}
|
|
@@ -46874,7 +46887,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
46874
46887
|
exports.sanitize = exports.getArgSanitizeFromKeys = exports.requiredKeys = exports.allowedKeys = exports.getRequiredValidationFunctionFromKeys = exports.getValidationFunctionFromKeys = exports.createArgProcessingDecorator = exports.processArguments = exports.ArgModifier = exports.ArgValidator = exports.processorsMetadataKey = void 0;
|
|
46875
46888
|
var BringgException_1 = __webpack_require__(15);
|
|
46876
46889
|
var ExceptionReason_1 = __webpack_require__(43);
|
|
46877
|
-
var lodash_1 = __webpack_require__(
|
|
46890
|
+
var lodash_1 = __webpack_require__(11);
|
|
46878
46891
|
exports.processorsMetadataKey = Symbol('validations');
|
|
46879
46892
|
var ArgValidator = /** @class */ (function () {
|
|
46880
46893
|
function ArgValidator(argProcessor) {
|
|
@@ -47435,7 +47448,7 @@ exports.default = CustomerConfigurationService;
|
|
|
47435
47448
|
"use strict";
|
|
47436
47449
|
|
|
47437
47450
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47438
|
-
var lodash_1 = __webpack_require__(
|
|
47451
|
+
var lodash_1 = __webpack_require__(11);
|
|
47439
47452
|
var CrossAppTransport = /** @class */ (function () {
|
|
47440
47453
|
function CrossAppTransport() {
|
|
47441
47454
|
var _this = this;
|
|
@@ -47962,9 +47975,9 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
47962
47975
|
})();
|
|
47963
47976
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47964
47977
|
var Entity_1 = __webpack_require__(5);
|
|
47965
|
-
var StoreEntity_1 = __webpack_require__(
|
|
47978
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
47966
47979
|
var AutoDispatchTeamState_consts_1 = __webpack_require__(257);
|
|
47967
|
-
var lodash_1 = __webpack_require__(
|
|
47980
|
+
var lodash_1 = __webpack_require__(11);
|
|
47968
47981
|
var VrpAutoDispatchAnalyticEntity = /** @class */ (function (_super) {
|
|
47969
47982
|
__extends(VrpAutoDispatchAnalyticEntity, _super);
|
|
47970
47983
|
function VrpAutoDispatchAnalyticEntity(session) {
|
|
@@ -48574,7 +48587,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
48574
48587
|
}
|
|
48575
48588
|
};
|
|
48576
48589
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48577
|
-
var StoreEntity_1 = __webpack_require__(
|
|
48590
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
48578
48591
|
var Entity_1 = __webpack_require__(5);
|
|
48579
48592
|
var UserType_consts_1 = __webpack_require__(270);
|
|
48580
48593
|
var UserTypeRoute = [Entity_1.BaseRoutes.Get, Entity_1.BaseRoutes.GetAll, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Update];
|
|
@@ -49084,7 +49097,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49084
49097
|
};
|
|
49085
49098
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49086
49099
|
var Entity_1 = __webpack_require__(5);
|
|
49087
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49100
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49088
49101
|
var defaultExtractor = function (response) { return response.team; };
|
|
49089
49102
|
var Routes = {
|
|
49090
49103
|
GET_TEAMS_BY_USER: '/users/{:userId}/teams',
|
|
@@ -49209,7 +49222,7 @@ var BringgException_1 = __webpack_require__(15);
|
|
|
49209
49222
|
var Route_1 = __webpack_require__(20);
|
|
49210
49223
|
var SessionBasedService_1 = __webpack_require__(26);
|
|
49211
49224
|
var RouteGenerator_1 = __webpack_require__(93);
|
|
49212
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49225
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49213
49226
|
var ResourceUploadApi = /** @class */ (function (_super) {
|
|
49214
49227
|
__extends(ResourceUploadApi, _super);
|
|
49215
49228
|
function ResourceUploadApi(session) {
|
|
@@ -49295,7 +49308,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
49295
49308
|
})();
|
|
49296
49309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49297
49310
|
var Entity_1 = __webpack_require__(5);
|
|
49298
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49311
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49299
49312
|
var TeamConfigurationEntity = /** @class */ (function (_super) {
|
|
49300
49313
|
__extends(TeamConfigurationEntity, _super);
|
|
49301
49314
|
function TeamConfigurationEntity(session) {
|
|
@@ -49435,7 +49448,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49435
49448
|
}
|
|
49436
49449
|
};
|
|
49437
49450
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49438
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49451
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49439
49452
|
var Entity_1 = __webpack_require__(5);
|
|
49440
49453
|
var ScanEntity = /** @class */ (function (_super) {
|
|
49441
49454
|
__extends(ScanEntity, _super);
|
|
@@ -49578,7 +49591,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49578
49591
|
}
|
|
49579
49592
|
};
|
|
49580
49593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49581
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49594
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49582
49595
|
var SignatureEntity = /** @class */ (function (_super) {
|
|
49583
49596
|
__extends(SignatureEntity, _super);
|
|
49584
49597
|
function SignatureEntity(session) {
|
|
@@ -49718,7 +49731,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49718
49731
|
}
|
|
49719
49732
|
};
|
|
49720
49733
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49721
|
-
var StoreEntity_1 = __webpack_require__(
|
|
49734
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
49722
49735
|
var PhotoEntity = /** @class */ (function (_super) {
|
|
49723
49736
|
__extends(PhotoEntity, _super);
|
|
49724
49737
|
function PhotoEntity(session) {
|
|
@@ -49785,7 +49798,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49785
49798
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49786
49799
|
exports.MerchantConfigurationApi = void 0;
|
|
49787
49800
|
var MerchantConfigurationEntity_1 = __webpack_require__(287);
|
|
49788
|
-
var lodash_1 = __webpack_require__(
|
|
49801
|
+
var lodash_1 = __webpack_require__(11);
|
|
49789
49802
|
var MerchantConfiguration_consts_1 = __webpack_require__(288);
|
|
49790
49803
|
var MerchantConfigurationApi = /** @class */ (function () {
|
|
49791
49804
|
function MerchantConfigurationApi(session) {
|
|
@@ -50725,7 +50738,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
50725
50738
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50726
50739
|
exports.singleExtractor = exports.listExtractor = void 0;
|
|
50727
50740
|
var Entity_1 = __webpack_require__(5);
|
|
50728
|
-
var StoreEntity_1 = __webpack_require__(
|
|
50741
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
50729
50742
|
var listExtractor = function (response) { return response.vehicle_types; };
|
|
50730
50743
|
exports.listExtractor = listExtractor;
|
|
50731
50744
|
var singleExtractor = function (response) { return response.vehicle_type; };
|
|
@@ -50839,7 +50852,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
50839
50852
|
};
|
|
50840
50853
|
})();
|
|
50841
50854
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50842
|
-
var StoreEntity_1 = __webpack_require__(
|
|
50855
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
50843
50856
|
var Entity_1 = __webpack_require__(5);
|
|
50844
50857
|
var extactor = function (response) { return response.reasons_to_reassign_tasks; };
|
|
50845
50858
|
var ReasonToReassignTasksEntity = /** @class */ (function (_super) {
|
|
@@ -51124,10 +51137,10 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51124
51137
|
};
|
|
51125
51138
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51126
51139
|
exports.Routes = void 0;
|
|
51127
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51140
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51128
51141
|
var Entity_1 = __webpack_require__(5);
|
|
51129
51142
|
var Vehicle_consts_1 = __webpack_require__(142);
|
|
51130
|
-
var lodash_1 = __webpack_require__(
|
|
51143
|
+
var lodash_1 = __webpack_require__(11);
|
|
51131
51144
|
exports.Routes = {
|
|
51132
51145
|
GET_ASSIGNMENT_HISTORY: '/vehicles/get_assignment_history/',
|
|
51133
51146
|
GET_BY_TEAM: '/teams/{:teamId}/vehicles',
|
|
@@ -51306,7 +51319,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51306
51319
|
}
|
|
51307
51320
|
};
|
|
51308
51321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51309
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51322
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51310
51323
|
var WebApplicationConfigurationEntityName = 'web_application_configurations';
|
|
51311
51324
|
var WebApplicationConfigurationEntity = /** @class */ (function (_super) {
|
|
51312
51325
|
__extends(WebApplicationConfigurationEntity, _super);
|
|
@@ -51543,7 +51556,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51543
51556
|
};
|
|
51544
51557
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51545
51558
|
exports.quoteExtractor = exports.fleetsExtractor = exports.Routes = void 0;
|
|
51546
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51559
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51547
51560
|
var Entity_1 = __webpack_require__(5);
|
|
51548
51561
|
exports.Routes = {
|
|
51549
51562
|
GET_RELATED: '/fleets/related',
|
|
@@ -51765,7 +51778,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
51765
51778
|
};
|
|
51766
51779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51767
51780
|
exports.Routes = void 0;
|
|
51768
|
-
var StoreEntity_1 = __webpack_require__(
|
|
51781
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
51769
51782
|
var Entity_1 = __webpack_require__(5);
|
|
51770
51783
|
exports.Routes = {
|
|
51771
51784
|
GET_RULES: '/rule-service/rules',
|
|
@@ -51918,7 +51931,7 @@ exports.default = PushTokenSubscriptionEntity;
|
|
|
51918
51931
|
|
|
51919
51932
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51920
51933
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
51921
|
-
var TaskEntity_1 = __webpack_require__(
|
|
51934
|
+
var TaskEntity_1 = __webpack_require__(406);
|
|
51922
51935
|
var TaskHelpers_1 = __webpack_require__(102);
|
|
51923
51936
|
var Tasks = /** @class */ (function () {
|
|
51924
51937
|
function Tasks(session) {
|
|
@@ -51935,6 +51948,15 @@ var Tasks = /** @class */ (function () {
|
|
|
51935
51948
|
this.onDelete = function (callback) {
|
|
51936
51949
|
return _this.taskEntity.registerOnDelete(callback);
|
|
51937
51950
|
};
|
|
51951
|
+
this.onWayPointUpdate = function (callback) {
|
|
51952
|
+
_this.taskEntity.registerOnWayPointUpdate(callback);
|
|
51953
|
+
};
|
|
51954
|
+
this.onWayPointAdd = function (callback) {
|
|
51955
|
+
_this.taskEntity.registerOnWayPointAdded(callback);
|
|
51956
|
+
};
|
|
51957
|
+
this.onWayPointDelete = function (callback) {
|
|
51958
|
+
_this.taskEntity.registerOnWayPointDeleted(callback);
|
|
51959
|
+
};
|
|
51938
51960
|
this.taskEntity = new TaskEntity_1.default(session);
|
|
51939
51961
|
}
|
|
51940
51962
|
Tasks.prototype.getOpenTasks = function (options) {
|
|
@@ -52200,6 +52222,22 @@ exports.ALERT_TYPES_VALUES = Object.values(ALERT_TYPES).filter(function (t) { re
|
|
|
52200
52222
|
|
|
52201
52223
|
"use strict";
|
|
52202
52224
|
|
|
52225
|
+
exports.__esModule = true;
|
|
52226
|
+
exports.AlertSeverity = void 0;
|
|
52227
|
+
var AlertSeverity;
|
|
52228
|
+
(function (AlertSeverity) {
|
|
52229
|
+
AlertSeverity[AlertSeverity["Low"] = 1] = "Low";
|
|
52230
|
+
AlertSeverity[AlertSeverity["Medium"] = 2] = "Medium";
|
|
52231
|
+
AlertSeverity[AlertSeverity["High"] = 3] = "High";
|
|
52232
|
+
})(AlertSeverity = exports.AlertSeverity || (exports.AlertSeverity = {}));
|
|
52233
|
+
//# sourceMappingURL=alerts_configuration.js.map
|
|
52234
|
+
|
|
52235
|
+
/***/ }),
|
|
52236
|
+
/* 311 */
|
|
52237
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
52238
|
+
|
|
52239
|
+
"use strict";
|
|
52240
|
+
|
|
52203
52241
|
exports.__esModule = true;
|
|
52204
52242
|
exports.ApplicationUuid = void 0;
|
|
52205
52243
|
var ApplicationUuid;
|
|
@@ -52292,7 +52330,7 @@ var ApplicationUuid;
|
|
|
52292
52330
|
//# sourceMappingURL=application.js.map
|
|
52293
52331
|
|
|
52294
52332
|
/***/ }),
|
|
52295
|
-
/*
|
|
52333
|
+
/* 312 */
|
|
52296
52334
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52297
52335
|
|
|
52298
52336
|
"use strict";
|
|
@@ -52307,7 +52345,7 @@ var LOGIN_ERRORS;
|
|
|
52307
52345
|
//# sourceMappingURL=auth.js.map
|
|
52308
52346
|
|
|
52309
52347
|
/***/ }),
|
|
52310
|
-
/*
|
|
52348
|
+
/* 313 */
|
|
52311
52349
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52312
52350
|
|
|
52313
52351
|
"use strict";
|
|
@@ -52323,7 +52361,7 @@ var ChatConversationType;
|
|
|
52323
52361
|
//# sourceMappingURL=chat_conversation.js.map
|
|
52324
52362
|
|
|
52325
52363
|
/***/ }),
|
|
52326
|
-
/*
|
|
52364
|
+
/* 314 */
|
|
52327
52365
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52328
52366
|
|
|
52329
52367
|
"use strict";
|
|
@@ -52344,7 +52382,7 @@ var ChatMessageOrigin;
|
|
|
52344
52382
|
//# sourceMappingURL=chat_message.js.map
|
|
52345
52383
|
|
|
52346
52384
|
/***/ }),
|
|
52347
|
-
/*
|
|
52385
|
+
/* 315 */
|
|
52348
52386
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52349
52387
|
|
|
52350
52388
|
"use strict";
|
|
@@ -52369,7 +52407,7 @@ var Connection;
|
|
|
52369
52407
|
//# sourceMappingURL=common.js.map
|
|
52370
52408
|
|
|
52371
52409
|
/***/ }),
|
|
52372
|
-
/*
|
|
52410
|
+
/* 316 */
|
|
52373
52411
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52374
52412
|
|
|
52375
52413
|
"use strict";
|
|
@@ -52378,7 +52416,7 @@ exports.__esModule = true;
|
|
|
52378
52416
|
//# sourceMappingURL=company.js.map
|
|
52379
52417
|
|
|
52380
52418
|
/***/ }),
|
|
52381
|
-
/*
|
|
52419
|
+
/* 317 */
|
|
52382
52420
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52383
52421
|
|
|
52384
52422
|
"use strict";
|
|
@@ -52387,7 +52425,7 @@ exports.__esModule = true;
|
|
|
52387
52425
|
//# sourceMappingURL=crew.js.map
|
|
52388
52426
|
|
|
52389
52427
|
/***/ }),
|
|
52390
|
-
/*
|
|
52428
|
+
/* 318 */
|
|
52391
52429
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52392
52430
|
|
|
52393
52431
|
"use strict";
|
|
@@ -52403,7 +52441,7 @@ var CustomFilterOperator;
|
|
|
52403
52441
|
//# sourceMappingURL=custom_filter.js.map
|
|
52404
52442
|
|
|
52405
52443
|
/***/ }),
|
|
52406
|
-
/*
|
|
52444
|
+
/* 319 */
|
|
52407
52445
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52408
52446
|
|
|
52409
52447
|
"use strict";
|
|
@@ -52412,7 +52450,7 @@ exports.__esModule = true;
|
|
|
52412
52450
|
//# sourceMappingURL=customer.js.map
|
|
52413
52451
|
|
|
52414
52452
|
/***/ }),
|
|
52415
|
-
/*
|
|
52453
|
+
/* 320 */
|
|
52416
52454
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52417
52455
|
|
|
52418
52456
|
"use strict";
|
|
@@ -52421,7 +52459,7 @@ exports.__esModule = true;
|
|
|
52421
52459
|
//# sourceMappingURL=customer_configuration.js.map
|
|
52422
52460
|
|
|
52423
52461
|
/***/ }),
|
|
52424
|
-
/*
|
|
52462
|
+
/* 321 */
|
|
52425
52463
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52426
52464
|
|
|
52427
52465
|
"use strict";
|
|
@@ -52444,7 +52482,7 @@ var TaskPhase;
|
|
|
52444
52482
|
//# sourceMappingURL=customer_experience.js.map
|
|
52445
52483
|
|
|
52446
52484
|
/***/ }),
|
|
52447
|
-
/*
|
|
52485
|
+
/* 322 */
|
|
52448
52486
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52449
52487
|
|
|
52450
52488
|
"use strict";
|
|
@@ -52459,7 +52497,7 @@ var BreakType;
|
|
|
52459
52497
|
//# sourceMappingURL=delivery_block.js.map
|
|
52460
52498
|
|
|
52461
52499
|
/***/ }),
|
|
52462
|
-
/*
|
|
52500
|
+
/* 323 */
|
|
52463
52501
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52464
52502
|
|
|
52465
52503
|
"use strict";
|
|
@@ -52468,7 +52506,7 @@ exports.__esModule = true;
|
|
|
52468
52506
|
//# sourceMappingURL=delivery_block_schedule.js.map
|
|
52469
52507
|
|
|
52470
52508
|
/***/ }),
|
|
52471
|
-
/*
|
|
52509
|
+
/* 324 */
|
|
52472
52510
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52473
52511
|
|
|
52474
52512
|
"use strict";
|
|
@@ -52542,7 +52580,7 @@ var DeliveryProviderDeliverFromCapability;
|
|
|
52542
52580
|
//# sourceMappingURL=delivery_provider.js.map
|
|
52543
52581
|
|
|
52544
52582
|
/***/ }),
|
|
52545
|
-
/*
|
|
52583
|
+
/* 325 */
|
|
52546
52584
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52547
52585
|
|
|
52548
52586
|
"use strict";
|
|
@@ -52563,7 +52601,7 @@ var DisputeReason;
|
|
|
52563
52601
|
//# sourceMappingURL=dispute.js.map
|
|
52564
52602
|
|
|
52565
52603
|
/***/ }),
|
|
52566
|
-
/*
|
|
52604
|
+
/* 326 */
|
|
52567
52605
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52568
52606
|
|
|
52569
52607
|
"use strict";
|
|
@@ -52572,7 +52610,7 @@ exports.__esModule = true;
|
|
|
52572
52610
|
//# sourceMappingURL=emulated_delivery_provider_types.js.map
|
|
52573
52611
|
|
|
52574
52612
|
/***/ }),
|
|
52575
|
-
/*
|
|
52613
|
+
/* 327 */
|
|
52576
52614
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52577
52615
|
|
|
52578
52616
|
"use strict";
|
|
@@ -52698,7 +52736,7 @@ var EventType;
|
|
|
52698
52736
|
//# sourceMappingURL=event.js.map
|
|
52699
52737
|
|
|
52700
52738
|
/***/ }),
|
|
52701
|
-
/*
|
|
52739
|
+
/* 328 */
|
|
52702
52740
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52703
52741
|
|
|
52704
52742
|
"use strict";
|
|
@@ -52725,7 +52763,7 @@ var AggregatorType;
|
|
|
52725
52763
|
//# sourceMappingURL=external_data_team.js.map
|
|
52726
52764
|
|
|
52727
52765
|
/***/ }),
|
|
52728
|
-
/*
|
|
52766
|
+
/* 329 */
|
|
52729
52767
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52730
52768
|
|
|
52731
52769
|
"use strict";
|
|
@@ -52799,7 +52837,7 @@ exports.FleetTypeToCapabilities = (_a = {},
|
|
|
52799
52837
|
//# sourceMappingURL=fleet.js.map
|
|
52800
52838
|
|
|
52801
52839
|
/***/ }),
|
|
52802
|
-
/*
|
|
52840
|
+
/* 330 */
|
|
52803
52841
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52804
52842
|
|
|
52805
52843
|
"use strict";
|
|
@@ -52815,7 +52853,7 @@ var PreferredMethod;
|
|
|
52815
52853
|
//# sourceMappingURL=fleet_router_rules.js.map
|
|
52816
52854
|
|
|
52817
52855
|
/***/ }),
|
|
52818
|
-
/*
|
|
52856
|
+
/* 331 */
|
|
52819
52857
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52820
52858
|
|
|
52821
52859
|
"use strict";
|
|
@@ -52824,7 +52862,7 @@ exports.__esModule = true;
|
|
|
52824
52862
|
//# sourceMappingURL=fleet_template.js.map
|
|
52825
52863
|
|
|
52826
52864
|
/***/ }),
|
|
52827
|
-
/*
|
|
52865
|
+
/* 332 */
|
|
52828
52866
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52829
52867
|
|
|
52830
52868
|
"use strict";
|
|
@@ -52841,7 +52879,7 @@ var OWNERSHIP_ORIGIN;
|
|
|
52841
52879
|
//# sourceMappingURL=floating_inventory.js.map
|
|
52842
52880
|
|
|
52843
52881
|
/***/ }),
|
|
52844
|
-
/*
|
|
52882
|
+
/* 333 */
|
|
52845
52883
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52846
52884
|
|
|
52847
52885
|
"use strict";
|
|
@@ -52850,7 +52888,7 @@ exports.__esModule = true;
|
|
|
52850
52888
|
//# sourceMappingURL=franchisee.js.map
|
|
52851
52889
|
|
|
52852
52890
|
/***/ }),
|
|
52853
|
-
/*
|
|
52891
|
+
/* 334 */
|
|
52854
52892
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52855
52893
|
|
|
52856
52894
|
"use strict";
|
|
@@ -52859,7 +52897,7 @@ exports.__esModule = true;
|
|
|
52859
52897
|
//# sourceMappingURL=geocoding.js.map
|
|
52860
52898
|
|
|
52861
52899
|
/***/ }),
|
|
52862
|
-
/*
|
|
52900
|
+
/* 335 */
|
|
52863
52901
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52864
52902
|
|
|
52865
52903
|
"use strict";
|
|
@@ -52868,7 +52906,7 @@ exports.__esModule = true;
|
|
|
52868
52906
|
//# sourceMappingURL=handling_units.js.map
|
|
52869
52907
|
|
|
52870
52908
|
/***/ }),
|
|
52871
|
-
/*
|
|
52909
|
+
/* 336 */
|
|
52872
52910
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52873
52911
|
|
|
52874
52912
|
"use strict";
|
|
@@ -52886,7 +52924,7 @@ var IntegrationName;
|
|
|
52886
52924
|
//# sourceMappingURL=integration.js.map
|
|
52887
52925
|
|
|
52888
52926
|
/***/ }),
|
|
52889
|
-
/*
|
|
52927
|
+
/* 337 */
|
|
52890
52928
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52891
52929
|
|
|
52892
52930
|
"use strict";
|
|
@@ -52902,7 +52940,7 @@ exports.KEYSET_PAGINATION_VER = 2;
|
|
|
52902
52940
|
//# sourceMappingURL=keyset_pagination.js.map
|
|
52903
52941
|
|
|
52904
52942
|
/***/ }),
|
|
52905
|
-
/*
|
|
52943
|
+
/* 338 */
|
|
52906
52944
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52907
52945
|
|
|
52908
52946
|
"use strict";
|
|
@@ -52911,7 +52949,7 @@ exports.__esModule = true;
|
|
|
52911
52949
|
//# sourceMappingURL=language.js.map
|
|
52912
52950
|
|
|
52913
52951
|
/***/ }),
|
|
52914
|
-
/*
|
|
52952
|
+
/* 339 */
|
|
52915
52953
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52916
52954
|
|
|
52917
52955
|
"use strict";
|
|
@@ -52920,7 +52958,7 @@ exports.__esModule = true;
|
|
|
52920
52958
|
//# sourceMappingURL=location.js.map
|
|
52921
52959
|
|
|
52922
52960
|
/***/ }),
|
|
52923
|
-
/*
|
|
52961
|
+
/* 340 */
|
|
52924
52962
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52925
52963
|
|
|
52926
52964
|
"use strict";
|
|
@@ -52950,7 +52988,7 @@ var Origin;
|
|
|
52950
52988
|
//# sourceMappingURL=menu.js.map
|
|
52951
52989
|
|
|
52952
52990
|
/***/ }),
|
|
52953
|
-
/*
|
|
52991
|
+
/* 341 */
|
|
52954
52992
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52955
52993
|
|
|
52956
52994
|
"use strict";
|
|
@@ -52988,7 +53026,7 @@ var EnvironmentTypes;
|
|
|
52988
53026
|
//# sourceMappingURL=merchant.js.map
|
|
52989
53027
|
|
|
52990
53028
|
/***/ }),
|
|
52991
|
-
/*
|
|
53029
|
+
/* 342 */
|
|
52992
53030
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52993
53031
|
|
|
52994
53032
|
"use strict";
|
|
@@ -53051,7 +53089,7 @@ var GrabMode;
|
|
|
53051
53089
|
//# sourceMappingURL=merchant_configuration.js.map
|
|
53052
53090
|
|
|
53053
53091
|
/***/ }),
|
|
53054
|
-
/*
|
|
53092
|
+
/* 343 */
|
|
53055
53093
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53056
53094
|
|
|
53057
53095
|
"use strict";
|
|
@@ -53073,7 +53111,7 @@ var SubscriptionNotificationType;
|
|
|
53073
53111
|
//# sourceMappingURL=notification_subscription.js.map
|
|
53074
53112
|
|
|
53075
53113
|
/***/ }),
|
|
53076
|
-
/*
|
|
53114
|
+
/* 344 */
|
|
53077
53115
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53078
53116
|
|
|
53079
53117
|
"use strict";
|
|
@@ -53082,7 +53120,7 @@ exports.__esModule = true;
|
|
|
53082
53120
|
//# sourceMappingURL=notification_template.js.map
|
|
53083
53121
|
|
|
53084
53122
|
/***/ }),
|
|
53085
|
-
/*
|
|
53123
|
+
/* 345 */
|
|
53086
53124
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53087
53125
|
|
|
53088
53126
|
"use strict";
|
|
@@ -53098,7 +53136,7 @@ var NotificationTypes;
|
|
|
53098
53136
|
//# sourceMappingURL=notification_type.js.map
|
|
53099
53137
|
|
|
53100
53138
|
/***/ }),
|
|
53101
|
-
/*
|
|
53139
|
+
/* 346 */
|
|
53102
53140
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53103
53141
|
|
|
53104
53142
|
"use strict";
|
|
@@ -53107,7 +53145,7 @@ exports.__esModule = true;
|
|
|
53107
53145
|
//# sourceMappingURL=open_fleet.js.map
|
|
53108
53146
|
|
|
53109
53147
|
/***/ }),
|
|
53110
|
-
/*
|
|
53148
|
+
/* 347 */
|
|
53111
53149
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53112
53150
|
|
|
53113
53151
|
"use strict";
|
|
@@ -53127,7 +53165,7 @@ var OptInMethod;
|
|
|
53127
53165
|
//# sourceMappingURL=opt_in_out_history.js.map
|
|
53128
53166
|
|
|
53129
53167
|
/***/ }),
|
|
53130
|
-
/*
|
|
53168
|
+
/* 348 */
|
|
53131
53169
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53132
53170
|
|
|
53133
53171
|
"use strict";
|
|
@@ -53149,7 +53187,7 @@ var RouteItemType;
|
|
|
53149
53187
|
//# sourceMappingURL=optimization_type.js.map
|
|
53150
53188
|
|
|
53151
53189
|
/***/ }),
|
|
53152
|
-
/*
|
|
53190
|
+
/* 349 */
|
|
53153
53191
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53154
53192
|
|
|
53155
53193
|
"use strict";
|
|
@@ -53158,7 +53196,7 @@ exports.__esModule = true;
|
|
|
53158
53196
|
//# sourceMappingURL=package.js.map
|
|
53159
53197
|
|
|
53160
53198
|
/***/ }),
|
|
53161
|
-
/*
|
|
53199
|
+
/* 350 */
|
|
53162
53200
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53163
53201
|
|
|
53164
53202
|
"use strict";
|
|
@@ -53167,7 +53205,7 @@ exports.__esModule = true;
|
|
|
53167
53205
|
//# sourceMappingURL=parking_spot.js.map
|
|
53168
53206
|
|
|
53169
53207
|
/***/ }),
|
|
53170
|
-
/*
|
|
53208
|
+
/* 351 */
|
|
53171
53209
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53172
53210
|
|
|
53173
53211
|
"use strict";
|
|
@@ -53176,7 +53214,7 @@ exports.__esModule = true;
|
|
|
53176
53214
|
//# sourceMappingURL=planned_delivery_window.js.map
|
|
53177
53215
|
|
|
53178
53216
|
/***/ }),
|
|
53179
|
-
/*
|
|
53217
|
+
/* 352 */
|
|
53180
53218
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53181
53219
|
|
|
53182
53220
|
"use strict";
|
|
@@ -53185,7 +53223,7 @@ exports.__esModule = true;
|
|
|
53185
53223
|
//# sourceMappingURL=planned_route.js.map
|
|
53186
53224
|
|
|
53187
53225
|
/***/ }),
|
|
53188
|
-
/*
|
|
53226
|
+
/* 353 */
|
|
53189
53227
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53190
53228
|
|
|
53191
53229
|
"use strict";
|
|
@@ -53194,7 +53232,7 @@ exports.__esModule = true;
|
|
|
53194
53232
|
//# sourceMappingURL=predicate.js.map
|
|
53195
53233
|
|
|
53196
53234
|
/***/ }),
|
|
53197
|
-
/*
|
|
53235
|
+
/* 354 */
|
|
53198
53236
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53199
53237
|
|
|
53200
53238
|
"use strict";
|
|
@@ -53248,7 +53286,7 @@ var PrivilegeTypes;
|
|
|
53248
53286
|
//# sourceMappingURL=privilege.js.map
|
|
53249
53287
|
|
|
53250
53288
|
/***/ }),
|
|
53251
|
-
/*
|
|
53289
|
+
/* 355 */
|
|
53252
53290
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53253
53291
|
|
|
53254
53292
|
"use strict";
|
|
@@ -53268,7 +53306,7 @@ var PushNotificationEnvironment;
|
|
|
53268
53306
|
//# sourceMappingURL=push_notification_registration.js.map
|
|
53269
53307
|
|
|
53270
53308
|
/***/ }),
|
|
53271
|
-
/*
|
|
53309
|
+
/* 356 */
|
|
53272
53310
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53273
53311
|
|
|
53274
53312
|
"use strict";
|
|
@@ -53282,7 +53320,7 @@ var ApplicationType;
|
|
|
53282
53320
|
//# sourceMappingURL=push_token_subscription.js.map
|
|
53283
53321
|
|
|
53284
53322
|
/***/ }),
|
|
53285
|
-
/*
|
|
53323
|
+
/* 357 */
|
|
53286
53324
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53287
53325
|
|
|
53288
53326
|
"use strict";
|
|
@@ -53291,7 +53329,7 @@ exports.__esModule = true;
|
|
|
53291
53329
|
//# sourceMappingURL=quote.js.map
|
|
53292
53330
|
|
|
53293
53331
|
/***/ }),
|
|
53294
|
-
/*
|
|
53332
|
+
/* 358 */
|
|
53295
53333
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53296
53334
|
|
|
53297
53335
|
"use strict";
|
|
@@ -53300,7 +53338,7 @@ exports.__esModule = true;
|
|
|
53300
53338
|
//# sourceMappingURL=rating.js.map
|
|
53301
53339
|
|
|
53302
53340
|
/***/ }),
|
|
53303
|
-
/*
|
|
53341
|
+
/* 359 */
|
|
53304
53342
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53305
53343
|
|
|
53306
53344
|
"use strict";
|
|
@@ -53309,7 +53347,7 @@ exports.__esModule = true;
|
|
|
53309
53347
|
//# sourceMappingURL=reason_to_cancel_task.js.map
|
|
53310
53348
|
|
|
53311
53349
|
/***/ }),
|
|
53312
|
-
/*
|
|
53350
|
+
/* 360 */
|
|
53313
53351
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53314
53352
|
|
|
53315
53353
|
"use strict";
|
|
@@ -53318,7 +53356,7 @@ exports.__esModule = true;
|
|
|
53318
53356
|
//# sourceMappingURL=reason_to_change_inventory.js.map
|
|
53319
53357
|
|
|
53320
53358
|
/***/ }),
|
|
53321
|
-
/*
|
|
53359
|
+
/* 361 */
|
|
53322
53360
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53323
53361
|
|
|
53324
53362
|
"use strict";
|
|
@@ -53327,7 +53365,7 @@ exports.__esModule = true;
|
|
|
53327
53365
|
//# sourceMappingURL=reason_to_reassign_task.js.map
|
|
53328
53366
|
|
|
53329
53367
|
/***/ }),
|
|
53330
|
-
/*
|
|
53368
|
+
/* 362 */
|
|
53331
53369
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53332
53370
|
|
|
53333
53371
|
"use strict";
|
|
@@ -53343,13 +53381,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
53343
53381
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
53344
53382
|
};
|
|
53345
53383
|
exports.__esModule = true;
|
|
53346
|
-
__exportStar(__webpack_require__(362), exports);
|
|
53347
53384
|
__exportStar(__webpack_require__(363), exports);
|
|
53348
53385
|
__exportStar(__webpack_require__(364), exports);
|
|
53386
|
+
__exportStar(__webpack_require__(365), exports);
|
|
53349
53387
|
//# sourceMappingURL=index.js.map
|
|
53350
53388
|
|
|
53351
53389
|
/***/ }),
|
|
53352
|
-
/*
|
|
53390
|
+
/* 363 */
|
|
53353
53391
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53354
53392
|
|
|
53355
53393
|
"use strict";
|
|
@@ -53364,7 +53402,7 @@ var Order;
|
|
|
53364
53402
|
//# sourceMappingURL=report.js.map
|
|
53365
53403
|
|
|
53366
53404
|
/***/ }),
|
|
53367
|
-
/*
|
|
53405
|
+
/* 364 */
|
|
53368
53406
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53369
53407
|
|
|
53370
53408
|
"use strict";
|
|
@@ -53387,7 +53425,7 @@ var ReportExportingStatus;
|
|
|
53387
53425
|
//# sourceMappingURL=report_export.js.map
|
|
53388
53426
|
|
|
53389
53427
|
/***/ }),
|
|
53390
|
-
/*
|
|
53428
|
+
/* 365 */
|
|
53391
53429
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53392
53430
|
|
|
53393
53431
|
"use strict";
|
|
@@ -53423,7 +53461,7 @@ var CronDayOfWeek;
|
|
|
53423
53461
|
//# sourceMappingURL=reports_scheduled_jobs.js.map
|
|
53424
53462
|
|
|
53425
53463
|
/***/ }),
|
|
53426
|
-
/*
|
|
53464
|
+
/* 366 */
|
|
53427
53465
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53428
53466
|
|
|
53429
53467
|
"use strict";
|
|
@@ -53432,7 +53470,7 @@ exports.__esModule = true;
|
|
|
53432
53470
|
//# sourceMappingURL=report_preference.js.map
|
|
53433
53471
|
|
|
53434
53472
|
/***/ }),
|
|
53435
|
-
/*
|
|
53473
|
+
/* 367 */
|
|
53436
53474
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53437
53475
|
|
|
53438
53476
|
"use strict";
|
|
@@ -53501,7 +53539,7 @@ var FILTER_TYPES;
|
|
|
53501
53539
|
//# sourceMappingURL=reports.js.map
|
|
53502
53540
|
|
|
53503
53541
|
/***/ }),
|
|
53504
|
-
/*
|
|
53542
|
+
/* 368 */
|
|
53505
53543
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53506
53544
|
|
|
53507
53545
|
"use strict";
|
|
@@ -53520,7 +53558,7 @@ var RequestOrigin;
|
|
|
53520
53558
|
//# sourceMappingURL=request_origin.js.map
|
|
53521
53559
|
|
|
53522
53560
|
/***/ }),
|
|
53523
|
-
/*
|
|
53561
|
+
/* 369 */
|
|
53524
53562
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53525
53563
|
|
|
53526
53564
|
"use strict";
|
|
@@ -53557,7 +53595,7 @@ var RuleRequestType;
|
|
|
53557
53595
|
//# sourceMappingURL=rule_types.js.map
|
|
53558
53596
|
|
|
53559
53597
|
/***/ }),
|
|
53560
|
-
/*
|
|
53598
|
+
/* 370 */
|
|
53561
53599
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53562
53600
|
|
|
53563
53601
|
"use strict";
|
|
@@ -53611,7 +53649,7 @@ var OFFLINE_ONLINE_EVENT_TYPES;
|
|
|
53611
53649
|
//# sourceMappingURL=run.js.map
|
|
53612
53650
|
|
|
53613
53651
|
/***/ }),
|
|
53614
|
-
/*
|
|
53652
|
+
/* 371 */
|
|
53615
53653
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53616
53654
|
|
|
53617
53655
|
"use strict";
|
|
@@ -53627,7 +53665,7 @@ var ScanType;
|
|
|
53627
53665
|
//# sourceMappingURL=scan.js.map
|
|
53628
53666
|
|
|
53629
53667
|
/***/ }),
|
|
53630
|
-
/*
|
|
53668
|
+
/* 372 */
|
|
53631
53669
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53632
53670
|
|
|
53633
53671
|
"use strict";
|
|
@@ -53636,7 +53674,7 @@ exports.__esModule = true;
|
|
|
53636
53674
|
//# sourceMappingURL=serializer.js.map
|
|
53637
53675
|
|
|
53638
53676
|
/***/ }),
|
|
53639
|
-
/*
|
|
53677
|
+
/* 373 */
|
|
53640
53678
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53641
53679
|
|
|
53642
53680
|
"use strict";
|
|
@@ -53645,7 +53683,7 @@ exports.__esModule = true;
|
|
|
53645
53683
|
//# sourceMappingURL=service.js.map
|
|
53646
53684
|
|
|
53647
53685
|
/***/ }),
|
|
53648
|
-
/*
|
|
53686
|
+
/* 374 */
|
|
53649
53687
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53650
53688
|
|
|
53651
53689
|
"use strict";
|
|
@@ -53654,7 +53692,7 @@ exports.__esModule = true;
|
|
|
53654
53692
|
//# sourceMappingURL=service_area.js.map
|
|
53655
53693
|
|
|
53656
53694
|
/***/ }),
|
|
53657
|
-
/*
|
|
53695
|
+
/* 375 */
|
|
53658
53696
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53659
53697
|
|
|
53660
53698
|
"use strict";
|
|
@@ -53663,7 +53701,7 @@ exports.__esModule = true;
|
|
|
53663
53701
|
//# sourceMappingURL=service_event.js.map
|
|
53664
53702
|
|
|
53665
53703
|
/***/ }),
|
|
53666
|
-
/*
|
|
53704
|
+
/* 376 */
|
|
53667
53705
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53668
53706
|
|
|
53669
53707
|
"use strict";
|
|
@@ -53672,7 +53710,7 @@ exports.__esModule = true;
|
|
|
53672
53710
|
//# sourceMappingURL=service_plan.js.map
|
|
53673
53711
|
|
|
53674
53712
|
/***/ }),
|
|
53675
|
-
/*
|
|
53713
|
+
/* 377 */
|
|
53676
53714
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53677
53715
|
|
|
53678
53716
|
"use strict";
|
|
@@ -53688,7 +53726,7 @@ var ServiceWindowType;
|
|
|
53688
53726
|
//# sourceMappingURL=service_window.js.map
|
|
53689
53727
|
|
|
53690
53728
|
/***/ }),
|
|
53691
|
-
/*
|
|
53729
|
+
/* 378 */
|
|
53692
53730
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53693
53731
|
|
|
53694
53732
|
"use strict";
|
|
@@ -53727,7 +53765,7 @@ var SharingMethod;
|
|
|
53727
53765
|
//# sourceMappingURL=shared_location.js.map
|
|
53728
53766
|
|
|
53729
53767
|
/***/ }),
|
|
53730
|
-
/*
|
|
53768
|
+
/* 379 */
|
|
53731
53769
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53732
53770
|
|
|
53733
53771
|
"use strict";
|
|
@@ -53750,7 +53788,7 @@ var ShiftRule;
|
|
|
53750
53788
|
//# sourceMappingURL=shift.js.map
|
|
53751
53789
|
|
|
53752
53790
|
/***/ }),
|
|
53753
|
-
/*
|
|
53791
|
+
/* 380 */
|
|
53754
53792
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53755
53793
|
|
|
53756
53794
|
"use strict";
|
|
@@ -53759,7 +53797,7 @@ exports.__esModule = true;
|
|
|
53759
53797
|
//# sourceMappingURL=skill.js.map
|
|
53760
53798
|
|
|
53761
53799
|
/***/ }),
|
|
53762
|
-
/*
|
|
53800
|
+
/* 381 */
|
|
53763
53801
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53764
53802
|
|
|
53765
53803
|
"use strict";
|
|
@@ -53768,7 +53806,7 @@ exports.__esModule = true;
|
|
|
53768
53806
|
//# sourceMappingURL=sms_data.js.map
|
|
53769
53807
|
|
|
53770
53808
|
/***/ }),
|
|
53771
|
-
/*
|
|
53809
|
+
/* 382 */
|
|
53772
53810
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53773
53811
|
|
|
53774
53812
|
"use strict";
|
|
@@ -53785,7 +53823,7 @@ var NumberType;
|
|
|
53785
53823
|
//# sourceMappingURL=sms_number.js.map
|
|
53786
53824
|
|
|
53787
53825
|
/***/ }),
|
|
53788
|
-
/*
|
|
53826
|
+
/* 383 */
|
|
53789
53827
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53790
53828
|
|
|
53791
53829
|
"use strict";
|
|
@@ -53794,7 +53832,7 @@ exports.__esModule = true;
|
|
|
53794
53832
|
//# sourceMappingURL=sms_setting.js.map
|
|
53795
53833
|
|
|
53796
53834
|
/***/ }),
|
|
53797
|
-
/*
|
|
53835
|
+
/* 384 */
|
|
53798
53836
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53799
53837
|
|
|
53800
53838
|
"use strict";
|
|
@@ -53803,7 +53841,7 @@ exports.__esModule = true;
|
|
|
53803
53841
|
//# sourceMappingURL=tag.js.map
|
|
53804
53842
|
|
|
53805
53843
|
/***/ }),
|
|
53806
|
-
/*
|
|
53844
|
+
/* 385 */
|
|
53807
53845
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53808
53846
|
|
|
53809
53847
|
"use strict";
|
|
@@ -53812,7 +53850,7 @@ exports.__esModule = true;
|
|
|
53812
53850
|
//# sourceMappingURL=tag_customer_configuration.js.map
|
|
53813
53851
|
|
|
53814
53852
|
/***/ }),
|
|
53815
|
-
/*
|
|
53853
|
+
/* 386 */
|
|
53816
53854
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53817
53855
|
|
|
53818
53856
|
"use strict";
|
|
@@ -53821,7 +53859,7 @@ exports.__esModule = true;
|
|
|
53821
53859
|
//# sourceMappingURL=tag_merchant_configuration.js.map
|
|
53822
53860
|
|
|
53823
53861
|
/***/ }),
|
|
53824
|
-
/*
|
|
53862
|
+
/* 387 */
|
|
53825
53863
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53826
53864
|
|
|
53827
53865
|
"use strict";
|
|
@@ -53830,7 +53868,7 @@ exports.__esModule = true;
|
|
|
53830
53868
|
//# sourceMappingURL=tag_rules_configuration.js.map
|
|
53831
53869
|
|
|
53832
53870
|
/***/ }),
|
|
53833
|
-
/*
|
|
53871
|
+
/* 388 */
|
|
53834
53872
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53835
53873
|
|
|
53836
53874
|
"use strict";
|
|
@@ -54039,7 +54077,7 @@ var Association;
|
|
|
54039
54077
|
//# sourceMappingURL=task.js.map
|
|
54040
54078
|
|
|
54041
54079
|
/***/ }),
|
|
54042
|
-
/*
|
|
54080
|
+
/* 389 */
|
|
54043
54081
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54044
54082
|
|
|
54045
54083
|
"use strict";
|
|
@@ -54060,7 +54098,7 @@ var AutoScheduleType;
|
|
|
54060
54098
|
//# sourceMappingURL=task_configuration.js.map
|
|
54061
54099
|
|
|
54062
54100
|
/***/ }),
|
|
54063
|
-
/*
|
|
54101
|
+
/* 390 */
|
|
54064
54102
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54065
54103
|
|
|
54066
54104
|
"use strict";
|
|
@@ -54069,7 +54107,7 @@ exports.__esModule = true;
|
|
|
54069
54107
|
//# sourceMappingURL=task_payment_history.js.map
|
|
54070
54108
|
|
|
54071
54109
|
/***/ }),
|
|
54072
|
-
/*
|
|
54110
|
+
/* 391 */
|
|
54073
54111
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54074
54112
|
|
|
54075
54113
|
"use strict";
|
|
@@ -54083,7 +54121,7 @@ var TaskServiceType;
|
|
|
54083
54121
|
//# sourceMappingURL=task_service.js.map
|
|
54084
54122
|
|
|
54085
54123
|
/***/ }),
|
|
54086
|
-
/*
|
|
54124
|
+
/* 392 */
|
|
54087
54125
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54088
54126
|
|
|
54089
54127
|
"use strict";
|
|
@@ -54092,7 +54130,7 @@ exports.__esModule = true;
|
|
|
54092
54130
|
//# sourceMappingURL=team_configuration.js.map
|
|
54093
54131
|
|
|
54094
54132
|
/***/ }),
|
|
54095
|
-
/*
|
|
54133
|
+
/* 393 */
|
|
54096
54134
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54097
54135
|
|
|
54098
54136
|
"use strict";
|
|
@@ -54101,7 +54139,7 @@ exports.__esModule = true;
|
|
|
54101
54139
|
//# sourceMappingURL=team_service_zip_codes.js.map
|
|
54102
54140
|
|
|
54103
54141
|
/***/ }),
|
|
54104
|
-
/*
|
|
54142
|
+
/* 394 */
|
|
54105
54143
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54106
54144
|
|
|
54107
54145
|
"use strict";
|
|
@@ -54110,7 +54148,7 @@ exports.__esModule = true;
|
|
|
54110
54148
|
//# sourceMappingURL=teams.js.map
|
|
54111
54149
|
|
|
54112
54150
|
/***/ }),
|
|
54113
|
-
/*
|
|
54151
|
+
/* 395 */
|
|
54114
54152
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54115
54153
|
|
|
54116
54154
|
"use strict";
|
|
@@ -54119,7 +54157,7 @@ exports.__esModule = true;
|
|
|
54119
54157
|
//# sourceMappingURL=user_configuration.js.map
|
|
54120
54158
|
|
|
54121
54159
|
/***/ }),
|
|
54122
|
-
/*
|
|
54160
|
+
/* 396 */
|
|
54123
54161
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54124
54162
|
|
|
54125
54163
|
"use strict";
|
|
@@ -54128,7 +54166,7 @@ exports.__esModule = true;
|
|
|
54128
54166
|
//# sourceMappingURL=user_realtime_data.js.map
|
|
54129
54167
|
|
|
54130
54168
|
/***/ }),
|
|
54131
|
-
/*
|
|
54169
|
+
/* 397 */
|
|
54132
54170
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54133
54171
|
|
|
54134
54172
|
"use strict";
|
|
@@ -54137,7 +54175,7 @@ exports.__esModule = true;
|
|
|
54137
54175
|
//# sourceMappingURL=user_types.js.map
|
|
54138
54176
|
|
|
54139
54177
|
/***/ }),
|
|
54140
|
-
/*
|
|
54178
|
+
/* 398 */
|
|
54141
54179
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54142
54180
|
|
|
54143
54181
|
"use strict";
|
|
@@ -54174,7 +54212,7 @@ var UserStatus;
|
|
|
54174
54212
|
//# sourceMappingURL=users.js.map
|
|
54175
54213
|
|
|
54176
54214
|
/***/ }),
|
|
54177
|
-
/*
|
|
54215
|
+
/* 399 */
|
|
54178
54216
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54179
54217
|
|
|
54180
54218
|
"use strict";
|
|
@@ -54183,7 +54221,7 @@ exports.__esModule = true;
|
|
|
54183
54221
|
//# sourceMappingURL=vehicle.js.map
|
|
54184
54222
|
|
|
54185
54223
|
/***/ }),
|
|
54186
|
-
/*
|
|
54224
|
+
/* 400 */
|
|
54187
54225
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54188
54226
|
|
|
54189
54227
|
"use strict";
|
|
@@ -54192,7 +54230,7 @@ exports.__esModule = true;
|
|
|
54192
54230
|
//# sourceMappingURL=vehicle_type.js.map
|
|
54193
54231
|
|
|
54194
54232
|
/***/ }),
|
|
54195
|
-
/*
|
|
54233
|
+
/* 401 */
|
|
54196
54234
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54197
54235
|
|
|
54198
54236
|
"use strict";
|
|
@@ -54201,7 +54239,7 @@ exports.__esModule = true;
|
|
|
54201
54239
|
//# sourceMappingURL=web_application_configuration.js.map
|
|
54202
54240
|
|
|
54203
54241
|
/***/ }),
|
|
54204
|
-
/*
|
|
54242
|
+
/* 402 */
|
|
54205
54243
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54206
54244
|
|
|
54207
54245
|
"use strict";
|
|
@@ -54210,7 +54248,7 @@ exports.__esModule = true;
|
|
|
54210
54248
|
//# sourceMappingURL=webhooks.js.map
|
|
54211
54249
|
|
|
54212
54250
|
/***/ }),
|
|
54213
|
-
/*
|
|
54251
|
+
/* 403 */
|
|
54214
54252
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54215
54253
|
|
|
54216
54254
|
"use strict";
|
|
@@ -54226,7 +54264,7 @@ var Plan;
|
|
|
54226
54264
|
//# sourceMappingURL=webhooks_configuration.js.map
|
|
54227
54265
|
|
|
54228
54266
|
/***/ }),
|
|
54229
|
-
/*
|
|
54267
|
+
/* 404 */
|
|
54230
54268
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54231
54269
|
|
|
54232
54270
|
"use strict";
|
|
@@ -54235,7 +54273,7 @@ exports.__esModule = true;
|
|
|
54235
54273
|
//# sourceMappingURL=widget.js.map
|
|
54236
54274
|
|
|
54237
54275
|
/***/ }),
|
|
54238
|
-
/*
|
|
54276
|
+
/* 405 */
|
|
54239
54277
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54240
54278
|
|
|
54241
54279
|
"use strict";
|
|
@@ -54244,7 +54282,7 @@ exports.__esModule = true;
|
|
|
54244
54282
|
//# sourceMappingURL=windows.js.map
|
|
54245
54283
|
|
|
54246
54284
|
/***/ }),
|
|
54247
|
-
/*
|
|
54285
|
+
/* 406 */
|
|
54248
54286
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54249
54287
|
|
|
54250
54288
|
"use strict";
|
|
@@ -54312,13 +54350,13 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
54312
54350
|
}
|
|
54313
54351
|
};
|
|
54314
54352
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54315
|
-
var StoreEntity_1 = __webpack_require__(
|
|
54353
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
54316
54354
|
var types_1 = __webpack_require__(101);
|
|
54317
54355
|
var Entity_1 = __webpack_require__(5);
|
|
54318
54356
|
var Tasks_consts_1 = __webpack_require__(100);
|
|
54319
54357
|
var rxjs_1 = __webpack_require__(71);
|
|
54320
54358
|
var operators_1 = __webpack_require__(63);
|
|
54321
|
-
var lodash_1 = __webpack_require__(
|
|
54359
|
+
var lodash_1 = __webpack_require__(11);
|
|
54322
54360
|
var TaskHelpers_1 = __webpack_require__(102);
|
|
54323
54361
|
var keyset_pagination_consts_1 = __webpack_require__(99);
|
|
54324
54362
|
var THROTTLE_TIME = 500;
|
|
@@ -54333,6 +54371,15 @@ var TaskEntity = /** @class */ (function (_super) {
|
|
|
54333
54371
|
_this.groupUpdateEvents = [];
|
|
54334
54372
|
_this.groupedValues = new Map();
|
|
54335
54373
|
/* RealTime Handle Events */
|
|
54374
|
+
_this.registerOnWayPointUpdate = function (fn) {
|
|
54375
|
+
_this.realTime.on(Tasks_consts_1.TaskRealTimeEvents.WAYPOINT_UPDATED, fn);
|
|
54376
|
+
};
|
|
54377
|
+
_this.registerOnWayPointAdded = function (fn) {
|
|
54378
|
+
_this.realTime.on(Tasks_consts_1.TaskRealTimeEvents.WAYPOINT_ADDED, fn);
|
|
54379
|
+
};
|
|
54380
|
+
_this.registerOnWayPointDeleted = function (fn) {
|
|
54381
|
+
_this.realTime.on(Tasks_consts_1.TaskRealTimeEvents.WAYPOINT_DELETED, fn);
|
|
54382
|
+
};
|
|
54336
54383
|
_this.onUpdateTask = function (task) {
|
|
54337
54384
|
_this.updateTask(task);
|
|
54338
54385
|
};
|
|
@@ -54841,9 +54888,9 @@ var TaskEntity = /** @class */ (function (_super) {
|
|
|
54841
54888
|
/*********/
|
|
54842
54889
|
TaskEntity.prototype.attachSubscriptions = function () {
|
|
54843
54890
|
this.realTime.on(Tasks_consts_1.TaskRealTimeEvents.TASK_UPDATE, this.onUpdateTask);
|
|
54844
|
-
this.
|
|
54845
|
-
this.
|
|
54846
|
-
this.
|
|
54891
|
+
this.registerOnWayPointAdded(this.onWayPointAdded);
|
|
54892
|
+
this.registerOnWayPointUpdate(this.onWayPointUpdate);
|
|
54893
|
+
this.registerOnWayPointDeleted(this.onWayPointDeleted);
|
|
54847
54894
|
this.realTime.on(Tasks_consts_1.TaskRealTimeEvents.NEW_SCAN, this.onNewScanAdded);
|
|
54848
54895
|
this.realTime.on(Tasks_consts_1.TaskRealTimeEvents.NEW_NOTE, this.onNewNoteAdded);
|
|
54849
54896
|
this.realTime.on(Tasks_consts_1.TaskRealTimeEvents.TASK_DELETED, this.onTaskDelete);
|
|
@@ -54855,7 +54902,7 @@ exports.default = TaskEntity;
|
|
|
54855
54902
|
//# sourceMappingURL=TaskEntity.js.map
|
|
54856
54903
|
|
|
54857
54904
|
/***/ }),
|
|
54858
|
-
/*
|
|
54905
|
+
/* 407 */
|
|
54859
54906
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54860
54907
|
|
|
54861
54908
|
"use strict";
|
|
@@ -54897,7 +54944,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
54897
54944
|
}
|
|
54898
54945
|
};
|
|
54899
54946
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54900
|
-
var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(
|
|
54947
|
+
var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(408);
|
|
54901
54948
|
var ApplicationMerchantConfigurationApi = /** @class */ (function () {
|
|
54902
54949
|
function ApplicationMerchantConfigurationApi(session, merchantConfigurationApi) {
|
|
54903
54950
|
this.entity = new ApplicationMerchantConfigurationEntity_1.default(session);
|
|
@@ -55016,7 +55063,7 @@ exports.default = ApplicationMerchantConfigurationApi;
|
|
|
55016
55063
|
//# sourceMappingURL=ApplicationMerchantConfigurationApi.js.map
|
|
55017
55064
|
|
|
55018
55065
|
/***/ }),
|
|
55019
|
-
/*
|
|
55066
|
+
/* 408 */
|
|
55020
55067
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55021
55068
|
|
|
55022
55069
|
"use strict";
|
|
@@ -55246,7 +55293,7 @@ exports.default = ApplicationMerchantConfigurationEntity;
|
|
|
55246
55293
|
//# sourceMappingURL=ApplicationMerchantConfigurationEntity.js.map
|
|
55247
55294
|
|
|
55248
55295
|
/***/ }),
|
|
55249
|
-
/*
|
|
55296
|
+
/* 409 */
|
|
55250
55297
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55251
55298
|
|
|
55252
55299
|
"use strict";
|
|
@@ -55288,7 +55335,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55288
55335
|
}
|
|
55289
55336
|
};
|
|
55290
55337
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55291
|
-
var ApplicationTeamConfigurationEntity_1 = __webpack_require__(
|
|
55338
|
+
var ApplicationTeamConfigurationEntity_1 = __webpack_require__(410);
|
|
55292
55339
|
var ApplicationTeamConfigurationApi = /** @class */ (function () {
|
|
55293
55340
|
function ApplicationTeamConfigurationApi(session) {
|
|
55294
55341
|
this.entity = new ApplicationTeamConfigurationEntity_1.default(session);
|
|
@@ -55329,7 +55376,7 @@ exports.default = ApplicationTeamConfigurationApi;
|
|
|
55329
55376
|
//# sourceMappingURL=ApplicationTeamConfigurationApi.js.map
|
|
55330
55377
|
|
|
55331
55378
|
/***/ }),
|
|
55332
|
-
/*
|
|
55379
|
+
/* 410 */
|
|
55333
55380
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55334
55381
|
|
|
55335
55382
|
"use strict";
|
|
@@ -55442,13 +55489,13 @@ exports.default = ApplicationTeamConfigurationEntity;
|
|
|
55442
55489
|
//# sourceMappingURL=ApplicationTeamConfigurationEntity.js.map
|
|
55443
55490
|
|
|
55444
55491
|
/***/ }),
|
|
55445
|
-
/*
|
|
55492
|
+
/* 411 */
|
|
55446
55493
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55447
55494
|
|
|
55448
55495
|
"use strict";
|
|
55449
55496
|
|
|
55450
55497
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55451
|
-
var GoogleMapsHelper_1 = __webpack_require__(
|
|
55498
|
+
var GoogleMapsHelper_1 = __webpack_require__(412);
|
|
55452
55499
|
var GoogleMapsHelperApi = /** @class */ (function () {
|
|
55453
55500
|
function GoogleMapsHelperApi(session) {
|
|
55454
55501
|
this.googleMapsHelperEntity = new GoogleMapsHelper_1.default(session);
|
|
@@ -55462,7 +55509,7 @@ exports.default = GoogleMapsHelperApi;
|
|
|
55462
55509
|
//# sourceMappingURL=GoogleMapsHelperApi.js.map
|
|
55463
55510
|
|
|
55464
55511
|
/***/ }),
|
|
55465
|
-
/*
|
|
55512
|
+
/* 412 */
|
|
55466
55513
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55467
55514
|
|
|
55468
55515
|
"use strict";
|
|
@@ -55543,7 +55590,7 @@ exports.default = GoogleMapsHelper;
|
|
|
55543
55590
|
//# sourceMappingURL=GoogleMapsHelper.js.map
|
|
55544
55591
|
|
|
55545
55592
|
/***/ }),
|
|
55546
|
-
/*
|
|
55593
|
+
/* 413 */
|
|
55547
55594
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55548
55595
|
|
|
55549
55596
|
"use strict";
|
|
@@ -55585,7 +55632,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55585
55632
|
}
|
|
55586
55633
|
};
|
|
55587
55634
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55588
|
-
var OnboardingEntity_1 = __webpack_require__(
|
|
55635
|
+
var OnboardingEntity_1 = __webpack_require__(414);
|
|
55589
55636
|
var OnboardingApi = /** @class */ (function () {
|
|
55590
55637
|
function OnboardingApi(session) {
|
|
55591
55638
|
this.onboardingEntity = new OnboardingEntity_1.default(session);
|
|
@@ -55610,7 +55657,7 @@ exports.default = OnboardingApi;
|
|
|
55610
55657
|
//# sourceMappingURL=OnboardingApi.js.map
|
|
55611
55658
|
|
|
55612
55659
|
/***/ }),
|
|
55613
|
-
/*
|
|
55660
|
+
/* 414 */
|
|
55614
55661
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55615
55662
|
|
|
55616
55663
|
"use strict";
|
|
@@ -55643,13 +55690,13 @@ exports.default = OnboardingEntity;
|
|
|
55643
55690
|
//# sourceMappingURL=OnboardingEntity.js.map
|
|
55644
55691
|
|
|
55645
55692
|
/***/ }),
|
|
55646
|
-
/*
|
|
55693
|
+
/* 415 */
|
|
55647
55694
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55648
55695
|
|
|
55649
55696
|
"use strict";
|
|
55650
55697
|
|
|
55651
55698
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55652
|
-
var FleetRouterEntity_1 = __webpack_require__(
|
|
55699
|
+
var FleetRouterEntity_1 = __webpack_require__(416);
|
|
55653
55700
|
var FleetRouterApi = /** @class */ (function () {
|
|
55654
55701
|
function FleetRouterApi(session) {
|
|
55655
55702
|
this.fleetRouterEntity = new FleetRouterEntity_1.default(session);
|
|
@@ -55667,7 +55714,7 @@ var FleetRouterApi = /** @class */ (function () {
|
|
|
55667
55714
|
return this.fleetRouterEntity.service.delete(id);
|
|
55668
55715
|
};
|
|
55669
55716
|
FleetRouterApi.prototype.patch = function (params) {
|
|
55670
|
-
return this.fleetRouterEntity.service.patch(params);
|
|
55717
|
+
return this.fleetRouterEntity.service.patch(undefined, params);
|
|
55671
55718
|
};
|
|
55672
55719
|
return FleetRouterApi;
|
|
55673
55720
|
}());
|
|
@@ -55675,7 +55722,7 @@ exports.default = FleetRouterApi;
|
|
|
55675
55722
|
//# sourceMappingURL=FleetRouterApi.js.map
|
|
55676
55723
|
|
|
55677
55724
|
/***/ }),
|
|
55678
|
-
/*
|
|
55725
|
+
/* 416 */
|
|
55679
55726
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55680
55727
|
|
|
55681
55728
|
"use strict";
|
|
@@ -55696,7 +55743,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
55696
55743
|
};
|
|
55697
55744
|
})();
|
|
55698
55745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55699
|
-
var StoreEntity_1 = __webpack_require__(
|
|
55746
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
55700
55747
|
var Entity_1 = __webpack_require__(5);
|
|
55701
55748
|
var FleetRouterEntity = /** @class */ (function (_super) {
|
|
55702
55749
|
__extends(FleetRouterEntity, _super);
|
|
@@ -55714,7 +55761,163 @@ exports.default = FleetRouterEntity;
|
|
|
55714
55761
|
//# sourceMappingURL=FleetRouterEntity.js.map
|
|
55715
55762
|
|
|
55716
55763
|
/***/ }),
|
|
55717
|
-
/*
|
|
55764
|
+
/* 417 */
|
|
55765
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55766
|
+
|
|
55767
|
+
"use strict";
|
|
55768
|
+
|
|
55769
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55770
|
+
var AlertConfigurationEntity_1 = __webpack_require__(418);
|
|
55771
|
+
var ConfigurationEntity_1 = __webpack_require__(419);
|
|
55772
|
+
var SetEntity_1 = __webpack_require__(420);
|
|
55773
|
+
var AlertConfigurationApi = /** @class */ (function () {
|
|
55774
|
+
function AlertConfigurationApi(session) {
|
|
55775
|
+
this.alertConfigurationEntity = new AlertConfigurationEntity_1.default(session);
|
|
55776
|
+
this.configurationEntity = new ConfigurationEntity_1.default(session);
|
|
55777
|
+
this.alertSetEntity = new SetEntity_1.default(session);
|
|
55778
|
+
}
|
|
55779
|
+
AlertConfigurationApi.prototype.getAll = function () {
|
|
55780
|
+
return this.alertConfigurationEntity.service.getAll();
|
|
55781
|
+
};
|
|
55782
|
+
AlertConfigurationApi.prototype.createSet = function (request) {
|
|
55783
|
+
return this.alertSetEntity.service.create(request);
|
|
55784
|
+
};
|
|
55785
|
+
AlertConfigurationApi.prototype.deleteSet = function (setId) {
|
|
55786
|
+
return this.alertSetEntity.service.delete(setId);
|
|
55787
|
+
};
|
|
55788
|
+
AlertConfigurationApi.prototype.updateSet = function (setId, request) {
|
|
55789
|
+
return this.alertSetEntity.service.patch(setId, request);
|
|
55790
|
+
};
|
|
55791
|
+
AlertConfigurationApi.prototype.createAlertConfiguration = function (request) {
|
|
55792
|
+
return this.configurationEntity.service.create(request);
|
|
55793
|
+
};
|
|
55794
|
+
AlertConfigurationApi.prototype.deleteAlertConfiguration = function (configurationId) {
|
|
55795
|
+
return this.configurationEntity.service.delete(configurationId);
|
|
55796
|
+
};
|
|
55797
|
+
AlertConfigurationApi.prototype.updateAlertConfiguration = function (configurationId, request) {
|
|
55798
|
+
return this.configurationEntity.service.patch(configurationId, request);
|
|
55799
|
+
};
|
|
55800
|
+
return AlertConfigurationApi;
|
|
55801
|
+
}());
|
|
55802
|
+
exports.default = AlertConfigurationApi;
|
|
55803
|
+
//# sourceMappingURL=AlertConfigurationApi.js.map
|
|
55804
|
+
|
|
55805
|
+
/***/ }),
|
|
55806
|
+
/* 418 */
|
|
55807
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55808
|
+
|
|
55809
|
+
"use strict";
|
|
55810
|
+
|
|
55811
|
+
var __extends = (this && this.__extends) || (function () {
|
|
55812
|
+
var extendStatics = function (d, b) {
|
|
55813
|
+
extendStatics = Object.setPrototypeOf ||
|
|
55814
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
55815
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
55816
|
+
return extendStatics(d, b);
|
|
55817
|
+
};
|
|
55818
|
+
return function (d, b) {
|
|
55819
|
+
if (typeof b !== "function" && b !== null)
|
|
55820
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
55821
|
+
extendStatics(d, b);
|
|
55822
|
+
function __() { this.constructor = d; }
|
|
55823
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
55824
|
+
};
|
|
55825
|
+
})();
|
|
55826
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55827
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
55828
|
+
var Entity_1 = __webpack_require__(5);
|
|
55829
|
+
var AlertConfigurationEntity = /** @class */ (function (_super) {
|
|
55830
|
+
__extends(AlertConfigurationEntity, _super);
|
|
55831
|
+
function AlertConfigurationEntity(session) {
|
|
55832
|
+
return _super.call(this, {
|
|
55833
|
+
session: session,
|
|
55834
|
+
entityName: 'alerts_configuration',
|
|
55835
|
+
routes: [Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Delete, Entity_1.BaseRoutes.Update, Entity_1.BaseRoutes.GetAll, Entity_1.BaseRoutes.Patch]
|
|
55836
|
+
}) || this;
|
|
55837
|
+
}
|
|
55838
|
+
return AlertConfigurationEntity;
|
|
55839
|
+
}(StoreEntity_1.default));
|
|
55840
|
+
exports.default = AlertConfigurationEntity;
|
|
55841
|
+
//# sourceMappingURL=AlertConfigurationEntity.js.map
|
|
55842
|
+
|
|
55843
|
+
/***/ }),
|
|
55844
|
+
/* 419 */
|
|
55845
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55846
|
+
|
|
55847
|
+
"use strict";
|
|
55848
|
+
|
|
55849
|
+
var __extends = (this && this.__extends) || (function () {
|
|
55850
|
+
var extendStatics = function (d, b) {
|
|
55851
|
+
extendStatics = Object.setPrototypeOf ||
|
|
55852
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
55853
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
55854
|
+
return extendStatics(d, b);
|
|
55855
|
+
};
|
|
55856
|
+
return function (d, b) {
|
|
55857
|
+
if (typeof b !== "function" && b !== null)
|
|
55858
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
55859
|
+
extendStatics(d, b);
|
|
55860
|
+
function __() { this.constructor = d; }
|
|
55861
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
55862
|
+
};
|
|
55863
|
+
})();
|
|
55864
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55865
|
+
var Entity_1 = __webpack_require__(5);
|
|
55866
|
+
var ConfigurationEntity = /** @class */ (function (_super) {
|
|
55867
|
+
__extends(ConfigurationEntity, _super);
|
|
55868
|
+
function ConfigurationEntity(session) {
|
|
55869
|
+
return _super.call(this, {
|
|
55870
|
+
session: session,
|
|
55871
|
+
entityName: 'configurations',
|
|
55872
|
+
routePrefix: 'alerts_configuration',
|
|
55873
|
+
routes: [Entity_1.BaseRoutes.Patch, Entity_1.BaseRoutes.Delete, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Update]
|
|
55874
|
+
}) || this;
|
|
55875
|
+
}
|
|
55876
|
+
return ConfigurationEntity;
|
|
55877
|
+
}(Entity_1.default));
|
|
55878
|
+
exports.default = ConfigurationEntity;
|
|
55879
|
+
//# sourceMappingURL=ConfigurationEntity.js.map
|
|
55880
|
+
|
|
55881
|
+
/***/ }),
|
|
55882
|
+
/* 420 */
|
|
55883
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
55884
|
+
|
|
55885
|
+
"use strict";
|
|
55886
|
+
|
|
55887
|
+
var __extends = (this && this.__extends) || (function () {
|
|
55888
|
+
var extendStatics = function (d, b) {
|
|
55889
|
+
extendStatics = Object.setPrototypeOf ||
|
|
55890
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
55891
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
55892
|
+
return extendStatics(d, b);
|
|
55893
|
+
};
|
|
55894
|
+
return function (d, b) {
|
|
55895
|
+
if (typeof b !== "function" && b !== null)
|
|
55896
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
55897
|
+
extendStatics(d, b);
|
|
55898
|
+
function __() { this.constructor = d; }
|
|
55899
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
55900
|
+
};
|
|
55901
|
+
})();
|
|
55902
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55903
|
+
var Entity_1 = __webpack_require__(5);
|
|
55904
|
+
var SetEntity = /** @class */ (function (_super) {
|
|
55905
|
+
__extends(SetEntity, _super);
|
|
55906
|
+
function SetEntity(session) {
|
|
55907
|
+
return _super.call(this, {
|
|
55908
|
+
session: session,
|
|
55909
|
+
entityName: 'sets',
|
|
55910
|
+
routePrefix: 'alerts_configuration',
|
|
55911
|
+
routes: [Entity_1.BaseRoutes.Patch, Entity_1.BaseRoutes.Delete, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Update]
|
|
55912
|
+
}) || this;
|
|
55913
|
+
}
|
|
55914
|
+
return SetEntity;
|
|
55915
|
+
}(Entity_1.default));
|
|
55916
|
+
exports.default = SetEntity;
|
|
55917
|
+
//# sourceMappingURL=SetEntity.js.map
|
|
55918
|
+
|
|
55919
|
+
/***/ }),
|
|
55920
|
+
/* 421 */
|
|
55718
55921
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55719
55922
|
|
|
55720
55923
|
"use strict";
|
|
@@ -55756,7 +55959,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55756
55959
|
}
|
|
55757
55960
|
};
|
|
55758
55961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55759
|
-
var ServiceEntity_1 = __webpack_require__(
|
|
55962
|
+
var ServiceEntity_1 = __webpack_require__(422);
|
|
55760
55963
|
var ServiceApi = /** @class */ (function () {
|
|
55761
55964
|
function ServiceApi(session) {
|
|
55762
55965
|
this.entity = new ServiceEntity_1.default(session);
|
|
@@ -55777,7 +55980,7 @@ exports.default = ServiceApi;
|
|
|
55777
55980
|
//# sourceMappingURL=ServiceApi.js.map
|
|
55778
55981
|
|
|
55779
55982
|
/***/ }),
|
|
55780
|
-
/*
|
|
55983
|
+
/* 422 */
|
|
55781
55984
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55782
55985
|
|
|
55783
55986
|
"use strict";
|
|
@@ -55860,7 +56063,7 @@ exports.default = ServiceEntity;
|
|
|
55860
56063
|
//# sourceMappingURL=ServiceEntity.js.map
|
|
55861
56064
|
|
|
55862
56065
|
/***/ }),
|
|
55863
|
-
/*
|
|
56066
|
+
/* 423 */
|
|
55864
56067
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55865
56068
|
|
|
55866
56069
|
"use strict";
|
|
@@ -55902,7 +56105,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
55902
56105
|
}
|
|
55903
56106
|
};
|
|
55904
56107
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55905
|
-
var FleetTemplateEntity_1 = __webpack_require__(
|
|
56108
|
+
var FleetTemplateEntity_1 = __webpack_require__(424);
|
|
55906
56109
|
var FleetTemplateApi = /** @class */ (function () {
|
|
55907
56110
|
function FleetTemplateApi(session) {
|
|
55908
56111
|
this.entity = new FleetTemplateEntity_1.default(session);
|
|
@@ -55930,7 +56133,7 @@ exports.default = FleetTemplateApi;
|
|
|
55930
56133
|
//# sourceMappingURL=FleetTemplateApi.js.map
|
|
55931
56134
|
|
|
55932
56135
|
/***/ }),
|
|
55933
|
-
/*
|
|
56136
|
+
/* 424 */
|
|
55934
56137
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55935
56138
|
|
|
55936
56139
|
"use strict";
|
|
@@ -56031,7 +56234,7 @@ exports.fleetTemplatesExtractor = fleetTemplatesExtractor;
|
|
|
56031
56234
|
//# sourceMappingURL=FleetTemplateEntity.js.map
|
|
56032
56235
|
|
|
56033
56236
|
/***/ }),
|
|
56034
|
-
/*
|
|
56237
|
+
/* 425 */
|
|
56035
56238
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56036
56239
|
|
|
56037
56240
|
"use strict";
|
|
@@ -56073,7 +56276,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56073
56276
|
}
|
|
56074
56277
|
};
|
|
56075
56278
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56076
|
-
var OpenFleetEntity_1 = __webpack_require__(
|
|
56279
|
+
var OpenFleetEntity_1 = __webpack_require__(426);
|
|
56077
56280
|
var OpenFleetApi = /** @class */ (function () {
|
|
56078
56281
|
function OpenFleetApi(session) {
|
|
56079
56282
|
this.entity = new OpenFleetEntity_1.default(session);
|
|
@@ -56140,7 +56343,7 @@ exports.default = OpenFleetApi;
|
|
|
56140
56343
|
//# sourceMappingURL=OpenFleetApi.js.map
|
|
56141
56344
|
|
|
56142
56345
|
/***/ }),
|
|
56143
|
-
/*
|
|
56346
|
+
/* 426 */
|
|
56144
56347
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56145
56348
|
|
|
56146
56349
|
"use strict";
|
|
@@ -56288,13 +56491,13 @@ exports.default = OpenFleetEntity;
|
|
|
56288
56491
|
//# sourceMappingURL=OpenFleetEntity.js.map
|
|
56289
56492
|
|
|
56290
56493
|
/***/ }),
|
|
56291
|
-
/*
|
|
56494
|
+
/* 427 */
|
|
56292
56495
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56293
56496
|
|
|
56294
56497
|
"use strict";
|
|
56295
56498
|
|
|
56296
56499
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56297
|
-
var Geocoding_1 = __webpack_require__(
|
|
56500
|
+
var Geocoding_1 = __webpack_require__(428);
|
|
56298
56501
|
var GeocodingApi = /** @class */ (function () {
|
|
56299
56502
|
function GeocodingApi(session) {
|
|
56300
56503
|
this.geocodingEntity = new Geocoding_1.default(session);
|
|
@@ -56311,7 +56514,7 @@ exports.default = GeocodingApi;
|
|
|
56311
56514
|
//# sourceMappingURL=GeocodingApi.js.map
|
|
56312
56515
|
|
|
56313
56516
|
/***/ }),
|
|
56314
|
-
/*
|
|
56517
|
+
/* 428 */
|
|
56315
56518
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56316
56519
|
|
|
56317
56520
|
"use strict";
|
|
@@ -56412,7 +56615,7 @@ exports.default = GeocodingEntity;
|
|
|
56412
56615
|
//# sourceMappingURL=Geocoding.js.map
|
|
56413
56616
|
|
|
56414
56617
|
/***/ }),
|
|
56415
|
-
/*
|
|
56618
|
+
/* 429 */
|
|
56416
56619
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56417
56620
|
|
|
56418
56621
|
"use strict";
|
|
@@ -56454,7 +56657,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56454
56657
|
}
|
|
56455
56658
|
};
|
|
56456
56659
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56457
|
-
var ApplicationEntity_1 = __webpack_require__(
|
|
56660
|
+
var ApplicationEntity_1 = __webpack_require__(430);
|
|
56458
56661
|
var ApplicationApi = /** @class */ (function () {
|
|
56459
56662
|
function ApplicationApi(session) {
|
|
56460
56663
|
this.entity = new ApplicationEntity_1.default(session);
|
|
@@ -56475,7 +56678,7 @@ exports.default = ApplicationApi;
|
|
|
56475
56678
|
//# sourceMappingURL=ApplicationApi.js.map
|
|
56476
56679
|
|
|
56477
56680
|
/***/ }),
|
|
56478
|
-
/*
|
|
56681
|
+
/* 430 */
|
|
56479
56682
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56480
56683
|
|
|
56481
56684
|
"use strict";
|
|
@@ -56543,9 +56746,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56543
56746
|
}
|
|
56544
56747
|
};
|
|
56545
56748
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56546
|
-
var StoreEntity_1 = __webpack_require__(
|
|
56547
|
-
var uuid_1 = __webpack_require__(
|
|
56548
|
-
var _ = __webpack_require__(
|
|
56749
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
56750
|
+
var uuid_1 = __webpack_require__(475);
|
|
56751
|
+
var _ = __webpack_require__(11);
|
|
56549
56752
|
var entityName = 'application_action';
|
|
56550
56753
|
var ApplicationEntity = /** @class */ (function (_super) {
|
|
56551
56754
|
__extends(ApplicationEntity, _super);
|
|
@@ -56638,7 +56841,7 @@ exports.default = ApplicationEntity;
|
|
|
56638
56841
|
//# sourceMappingURL=ApplicationEntity.js.map
|
|
56639
56842
|
|
|
56640
56843
|
/***/ }),
|
|
56641
|
-
/*
|
|
56844
|
+
/* 431 */
|
|
56642
56845
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56643
56846
|
|
|
56644
56847
|
"use strict";
|
|
@@ -56680,7 +56883,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56680
56883
|
}
|
|
56681
56884
|
};
|
|
56682
56885
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56683
|
-
var CustomerAvailabilityHourEntity_1 = __webpack_require__(
|
|
56886
|
+
var CustomerAvailabilityHourEntity_1 = __webpack_require__(432);
|
|
56684
56887
|
var CustomerAvailabilityHourApi = /** @class */ (function () {
|
|
56685
56888
|
function CustomerAvailabilityHourApi(session) {
|
|
56686
56889
|
this.customerAvailabilityHourEntity = new CustomerAvailabilityHourEntity_1.default(session);
|
|
@@ -56698,7 +56901,7 @@ exports.default = CustomerAvailabilityHourApi;
|
|
|
56698
56901
|
//# sourceMappingURL=CustomerAvailabilityHourApi.js.map
|
|
56699
56902
|
|
|
56700
56903
|
/***/ }),
|
|
56701
|
-
/*
|
|
56904
|
+
/* 432 */
|
|
56702
56905
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56703
56906
|
|
|
56704
56907
|
"use strict";
|
|
@@ -56756,7 +56959,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56756
56959
|
};
|
|
56757
56960
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56758
56961
|
exports.Routes = void 0;
|
|
56759
|
-
var StoreEntity_1 = __webpack_require__(
|
|
56962
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
56760
56963
|
exports.Routes = {
|
|
56761
56964
|
GET_AVAILABILITY_HOURS: '/customer_availability_hours'
|
|
56762
56965
|
};
|
|
@@ -56809,13 +57012,13 @@ exports.default = CustomerAvailabilityHourEntity;
|
|
|
56809
57012
|
//# sourceMappingURL=CustomerAvailabilityHourEntity.js.map
|
|
56810
57013
|
|
|
56811
57014
|
/***/ }),
|
|
56812
|
-
/*
|
|
57015
|
+
/* 433 */
|
|
56813
57016
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56814
57017
|
|
|
56815
57018
|
"use strict";
|
|
56816
57019
|
|
|
56817
57020
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56818
|
-
var Shifts_1 = __webpack_require__(
|
|
57021
|
+
var Shifts_1 = __webpack_require__(434);
|
|
56819
57022
|
var ShiftsApi = /** @class */ (function () {
|
|
56820
57023
|
function ShiftsApi(session) {
|
|
56821
57024
|
this.shiftsEntity = new Shifts_1.default(session);
|
|
@@ -56838,7 +57041,7 @@ exports.default = ShiftsApi;
|
|
|
56838
57041
|
//# sourceMappingURL=ShiftsApi.js.map
|
|
56839
57042
|
|
|
56840
57043
|
/***/ }),
|
|
56841
|
-
/*
|
|
57044
|
+
/* 434 */
|
|
56842
57045
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56843
57046
|
|
|
56844
57047
|
"use strict";
|
|
@@ -56953,7 +57156,7 @@ exports.default = ShiftsEntity;
|
|
|
56953
57156
|
//# sourceMappingURL=Shifts.js.map
|
|
56954
57157
|
|
|
56955
57158
|
/***/ }),
|
|
56956
|
-
/*
|
|
57159
|
+
/* 435 */
|
|
56957
57160
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56958
57161
|
|
|
56959
57162
|
"use strict";
|
|
@@ -56995,7 +57198,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
56995
57198
|
}
|
|
56996
57199
|
};
|
|
56997
57200
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56998
|
-
var ExclusionWindowEntity_1 = __webpack_require__(
|
|
57201
|
+
var ExclusionWindowEntity_1 = __webpack_require__(436);
|
|
56999
57202
|
var ExclusionWindowApi = /** @class */ (function () {
|
|
57000
57203
|
function ExclusionWindowApi(session) {
|
|
57001
57204
|
this.exclusionWindowEntity = new ExclusionWindowEntity_1.default(session);
|
|
@@ -57041,7 +57244,7 @@ exports.default = ExclusionWindowApi;
|
|
|
57041
57244
|
//# sourceMappingURL=ExclusionWindowApi.js.map
|
|
57042
57245
|
|
|
57043
57246
|
/***/ }),
|
|
57044
|
-
/*
|
|
57247
|
+
/* 436 */
|
|
57045
57248
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57046
57249
|
|
|
57047
57250
|
"use strict";
|
|
@@ -57131,7 +57334,7 @@ exports.default = ExclusionWindowEntity;
|
|
|
57131
57334
|
//# sourceMappingURL=ExclusionWindowEntity.js.map
|
|
57132
57335
|
|
|
57133
57336
|
/***/ }),
|
|
57134
|
-
/*
|
|
57337
|
+
/* 437 */
|
|
57135
57338
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57136
57339
|
|
|
57137
57340
|
"use strict";
|
|
@@ -57167,7 +57370,7 @@ exports.default = Country;
|
|
|
57167
57370
|
//# sourceMappingURL=Country.js.map
|
|
57168
57371
|
|
|
57169
57372
|
/***/ }),
|
|
57170
|
-
/*
|
|
57373
|
+
/* 438 */
|
|
57171
57374
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57172
57375
|
|
|
57173
57376
|
"use strict";
|
|
@@ -57209,7 +57412,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57209
57412
|
}
|
|
57210
57413
|
};
|
|
57211
57414
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57212
|
-
var OauthApplicationEntity_1 = __webpack_require__(
|
|
57415
|
+
var OauthApplicationEntity_1 = __webpack_require__(439);
|
|
57213
57416
|
var OauthApplicationApi = /** @class */ (function () {
|
|
57214
57417
|
function OauthApplicationApi(session) {
|
|
57215
57418
|
this.entity = new OauthApplicationEntity_1.default(session);
|
|
@@ -57269,7 +57472,7 @@ exports.default = OauthApplicationApi;
|
|
|
57269
57472
|
//# sourceMappingURL=OauthApplicationApi.js.map
|
|
57270
57473
|
|
|
57271
57474
|
/***/ }),
|
|
57272
|
-
/*
|
|
57475
|
+
/* 439 */
|
|
57273
57476
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57274
57477
|
|
|
57275
57478
|
"use strict";
|
|
@@ -57386,13 +57589,13 @@ exports.default = OauthApplicationEntity;
|
|
|
57386
57589
|
//# sourceMappingURL=OauthApplicationEntity.js.map
|
|
57387
57590
|
|
|
57388
57591
|
/***/ }),
|
|
57389
|
-
/*
|
|
57592
|
+
/* 440 */
|
|
57390
57593
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57391
57594
|
|
|
57392
57595
|
"use strict";
|
|
57393
57596
|
|
|
57394
57597
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57395
|
-
var InventoryEntity_1 = __webpack_require__(
|
|
57598
|
+
var InventoryEntity_1 = __webpack_require__(441);
|
|
57396
57599
|
var Inventory = /** @class */ (function () {
|
|
57397
57600
|
function Inventory(session) {
|
|
57398
57601
|
this.inventory = new InventoryEntity_1.default(session);
|
|
@@ -57415,7 +57618,7 @@ exports.default = Inventory;
|
|
|
57415
57618
|
//# sourceMappingURL=Inventory.js.map
|
|
57416
57619
|
|
|
57417
57620
|
/***/ }),
|
|
57418
|
-
/*
|
|
57621
|
+
/* 441 */
|
|
57419
57622
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57420
57623
|
|
|
57421
57624
|
"use strict";
|
|
@@ -57452,7 +57655,7 @@ exports.default = InventoryEntity;
|
|
|
57452
57655
|
//# sourceMappingURL=InventoryEntity.js.map
|
|
57453
57656
|
|
|
57454
57657
|
/***/ }),
|
|
57455
|
-
/*
|
|
57658
|
+
/* 442 */
|
|
57456
57659
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57457
57660
|
|
|
57458
57661
|
"use strict";
|
|
@@ -57494,7 +57697,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57494
57697
|
}
|
|
57495
57698
|
};
|
|
57496
57699
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57497
|
-
var PushNotificationRegistrationEntity_1 = __webpack_require__(
|
|
57700
|
+
var PushNotificationRegistrationEntity_1 = __webpack_require__(443);
|
|
57498
57701
|
var PushNotificationRegistration = /** @class */ (function () {
|
|
57499
57702
|
function PushNotificationRegistration(session) {
|
|
57500
57703
|
this.pushNotificationRegistrationEntity = new PushNotificationRegistrationEntity_1.default(session);
|
|
@@ -57519,7 +57722,7 @@ exports.default = PushNotificationRegistration;
|
|
|
57519
57722
|
//# sourceMappingURL=PushNotificationRegistration.js.map
|
|
57520
57723
|
|
|
57521
57724
|
/***/ }),
|
|
57522
|
-
/*
|
|
57725
|
+
/* 443 */
|
|
57523
57726
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57524
57727
|
|
|
57525
57728
|
"use strict";
|
|
@@ -57552,7 +57755,7 @@ exports.default = PushNotificationRegistrationEntity;
|
|
|
57552
57755
|
//# sourceMappingURL=PushNotificationRegistrationEntity.js.map
|
|
57553
57756
|
|
|
57554
57757
|
/***/ }),
|
|
57555
|
-
/*
|
|
57758
|
+
/* 444 */
|
|
57556
57759
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57557
57760
|
|
|
57558
57761
|
"use strict";
|
|
@@ -57594,7 +57797,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57594
57797
|
}
|
|
57595
57798
|
};
|
|
57596
57799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57597
|
-
var ReasonToCancelTasksEntity_1 = __webpack_require__(
|
|
57800
|
+
var ReasonToCancelTasksEntity_1 = __webpack_require__(445);
|
|
57598
57801
|
var ReasonToCancelTasks = /** @class */ (function () {
|
|
57599
57802
|
function ReasonToCancelTasks(session) {
|
|
57600
57803
|
this.reasonToCancelTasksEntity = new ReasonToCancelTasksEntity_1.default(session);
|
|
@@ -57615,7 +57818,7 @@ exports.default = ReasonToCancelTasks;
|
|
|
57615
57818
|
//# sourceMappingURL=ReasonToCancelTasksApi.js.map
|
|
57616
57819
|
|
|
57617
57820
|
/***/ }),
|
|
57618
|
-
/*
|
|
57821
|
+
/* 445 */
|
|
57619
57822
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57620
57823
|
|
|
57621
57824
|
"use strict";
|
|
@@ -57636,7 +57839,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
57636
57839
|
};
|
|
57637
57840
|
})();
|
|
57638
57841
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57639
|
-
var StoreEntity_1 = __webpack_require__(
|
|
57842
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
57640
57843
|
var Entity_1 = __webpack_require__(5);
|
|
57641
57844
|
var extractor = function (response) { return response.reasons_to_cancel_task; };
|
|
57642
57845
|
var BASE_ROUTE = 'reason_to_cancel_tasks';
|
|
@@ -57663,7 +57866,7 @@ exports.default = ReasonToCancelTasksEntity;
|
|
|
57663
57866
|
//# sourceMappingURL=ReasonToCancelTasksEntity.js.map
|
|
57664
57867
|
|
|
57665
57868
|
/***/ }),
|
|
57666
|
-
/*
|
|
57869
|
+
/* 446 */
|
|
57667
57870
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57668
57871
|
|
|
57669
57872
|
"use strict";
|
|
@@ -57705,7 +57908,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
57705
57908
|
}
|
|
57706
57909
|
};
|
|
57707
57910
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57708
|
-
var CustomFilterEntity_1 = __webpack_require__(
|
|
57911
|
+
var CustomFilterEntity_1 = __webpack_require__(447);
|
|
57709
57912
|
var CustomFilterApi = /** @class */ (function () {
|
|
57710
57913
|
function CustomFilterApi(session) {
|
|
57711
57914
|
this.customFilterEntity = new CustomFilterEntity_1.default(session);
|
|
@@ -57744,7 +57947,7 @@ exports.default = CustomFilterApi;
|
|
|
57744
57947
|
//# sourceMappingURL=CustomFilterApi.js.map
|
|
57745
57948
|
|
|
57746
57949
|
/***/ }),
|
|
57747
|
-
/*
|
|
57950
|
+
/* 447 */
|
|
57748
57951
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57749
57952
|
|
|
57750
57953
|
"use strict";
|
|
@@ -57782,13 +57985,13 @@ exports.default = CustomFilterEntity;
|
|
|
57782
57985
|
//# sourceMappingURL=CustomFilterEntity.js.map
|
|
57783
57986
|
|
|
57784
57987
|
/***/ }),
|
|
57785
|
-
/*
|
|
57988
|
+
/* 448 */
|
|
57786
57989
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57787
57990
|
|
|
57788
57991
|
"use strict";
|
|
57789
57992
|
|
|
57790
57993
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57791
|
-
var FloatingInventoryEntity_1 = __webpack_require__(
|
|
57994
|
+
var FloatingInventoryEntity_1 = __webpack_require__(449);
|
|
57792
57995
|
var FloatingInventory = /** @class */ (function () {
|
|
57793
57996
|
function FloatingInventory(session) {
|
|
57794
57997
|
this.floatingInventory = new FloatingInventoryEntity_1.default(session);
|
|
@@ -57802,7 +58005,7 @@ exports.default = FloatingInventory;
|
|
|
57802
58005
|
//# sourceMappingURL=FloatingInventoryApi.js.map
|
|
57803
58006
|
|
|
57804
58007
|
/***/ }),
|
|
57805
|
-
/*
|
|
58008
|
+
/* 449 */
|
|
57806
58009
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57807
58010
|
|
|
57808
58011
|
"use strict";
|
|
@@ -57824,7 +58027,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
57824
58027
|
})();
|
|
57825
58028
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57826
58029
|
var Entity_1 = __webpack_require__(5);
|
|
57827
|
-
var FloatingInventory_consts_1 = __webpack_require__(
|
|
58030
|
+
var FloatingInventory_consts_1 = __webpack_require__(450);
|
|
57828
58031
|
var BASE_ROUTE = 'floating_inventories';
|
|
57829
58032
|
var USERS_WITH_AVAILABLE_FLOATING_INVENTORY = "/" + BASE_ROUTE + "/users_with_available_floating_inventory";
|
|
57830
58033
|
var FloatingInventoryEntity = /** @class */ (function (_super) {
|
|
@@ -57849,7 +58052,7 @@ exports.default = FloatingInventoryEntity;
|
|
|
57849
58052
|
//# sourceMappingURL=FloatingInventoryEntity.js.map
|
|
57850
58053
|
|
|
57851
58054
|
/***/ }),
|
|
57852
|
-
/*
|
|
58055
|
+
/* 450 */
|
|
57853
58056
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57854
58057
|
|
|
57855
58058
|
"use strict";
|
|
@@ -57861,13 +58064,13 @@ exports.userIdsExtractor = userIdsExtractor;
|
|
|
57861
58064
|
//# sourceMappingURL=FloatingInventory.consts.js.map
|
|
57862
58065
|
|
|
57863
58066
|
/***/ }),
|
|
57864
|
-
/*
|
|
58067
|
+
/* 451 */
|
|
57865
58068
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57866
58069
|
|
|
57867
58070
|
"use strict";
|
|
57868
58071
|
|
|
57869
58072
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57870
|
-
var ServiceAreaEntity_1 = __webpack_require__(
|
|
58073
|
+
var ServiceAreaEntity_1 = __webpack_require__(452);
|
|
57871
58074
|
var ServiceAreaApi = /** @class */ (function () {
|
|
57872
58075
|
function ServiceAreaApi(session) {
|
|
57873
58076
|
this.serviceAreaEntity = new ServiceAreaEntity_1.default(session);
|
|
@@ -57896,7 +58099,7 @@ exports.default = ServiceAreaApi;
|
|
|
57896
58099
|
//# sourceMappingURL=ServiceAreaApi.js.map
|
|
57897
58100
|
|
|
57898
58101
|
/***/ }),
|
|
57899
|
-
/*
|
|
58102
|
+
/* 452 */
|
|
57900
58103
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57901
58104
|
|
|
57902
58105
|
"use strict";
|
|
@@ -57946,13 +58149,13 @@ exports.default = ServiceAreaEntity;
|
|
|
57946
58149
|
//# sourceMappingURL=ServiceAreaEntity.js.map
|
|
57947
58150
|
|
|
57948
58151
|
/***/ }),
|
|
57949
|
-
/*
|
|
58152
|
+
/* 453 */
|
|
57950
58153
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57951
58154
|
|
|
57952
58155
|
"use strict";
|
|
57953
58156
|
|
|
57954
58157
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57955
|
-
var BillingEntity_1 = __webpack_require__(
|
|
58158
|
+
var BillingEntity_1 = __webpack_require__(454);
|
|
57956
58159
|
var BillingApi = /** @class */ (function () {
|
|
57957
58160
|
function BillingApi(session) {
|
|
57958
58161
|
this.billingEntity = new BillingEntity_1.default(session);
|
|
@@ -58005,7 +58208,7 @@ exports.default = BillingApi;
|
|
|
58005
58208
|
//# sourceMappingURL=BillingApi.js.map
|
|
58006
58209
|
|
|
58007
58210
|
/***/ }),
|
|
58008
|
-
/*
|
|
58211
|
+
/* 454 */
|
|
58009
58212
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58010
58213
|
|
|
58011
58214
|
"use strict";
|
|
@@ -58243,7 +58446,7 @@ exports.default = BillingEntity;
|
|
|
58243
58446
|
//# sourceMappingURL=BillingEntity.js.map
|
|
58244
58447
|
|
|
58245
58448
|
/***/ }),
|
|
58246
|
-
/*
|
|
58449
|
+
/* 455 */
|
|
58247
58450
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58248
58451
|
|
|
58249
58452
|
"use strict";
|
|
@@ -58285,8 +58488,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58285
58488
|
}
|
|
58286
58489
|
};
|
|
58287
58490
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58288
|
-
var user_analytics_1 = __webpack_require__(
|
|
58289
|
-
var types_1 = __webpack_require__(
|
|
58491
|
+
var user_analytics_1 = __webpack_require__(456);
|
|
58492
|
+
var types_1 = __webpack_require__(459);
|
|
58290
58493
|
var UserAnalyticsApi = /** @class */ (function () {
|
|
58291
58494
|
function UserAnalyticsApi(session) {
|
|
58292
58495
|
this.session = session;
|
|
@@ -58342,13 +58545,13 @@ exports.default = UserAnalyticsApi;
|
|
|
58342
58545
|
//# sourceMappingURL=UserAnalyticsApi.js.map
|
|
58343
58546
|
|
|
58344
58547
|
/***/ }),
|
|
58345
|
-
/*
|
|
58548
|
+
/* 456 */
|
|
58346
58549
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58347
58550
|
|
|
58348
58551
|
"use strict";
|
|
58349
58552
|
|
|
58350
58553
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58351
|
-
const pendo_1 = __webpack_require__(
|
|
58554
|
+
const pendo_1 = __webpack_require__(457);
|
|
58352
58555
|
class AnalyticsApi {
|
|
58353
58556
|
constructor() {
|
|
58354
58557
|
this.provider = new pendo_1.PendoProvider();
|
|
@@ -58368,14 +58571,14 @@ exports.default = AnalyticsApi;
|
|
|
58368
58571
|
//# sourceMappingURL=index.js.map
|
|
58369
58572
|
|
|
58370
58573
|
/***/ }),
|
|
58371
|
-
/*
|
|
58574
|
+
/* 457 */
|
|
58372
58575
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58373
58576
|
|
|
58374
58577
|
"use strict";
|
|
58375
58578
|
|
|
58376
58579
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58377
58580
|
exports.PendoProvider = void 0;
|
|
58378
|
-
const pendoSnippet_1 = __webpack_require__(
|
|
58581
|
+
const pendoSnippet_1 = __webpack_require__(458);
|
|
58379
58582
|
class PendoProvider {
|
|
58380
58583
|
async addSnippet({ apiKey }) {
|
|
58381
58584
|
(0, pendoSnippet_1.addSnippet)(apiKey);
|
|
@@ -58397,7 +58600,7 @@ exports.PendoProvider = PendoProvider;
|
|
|
58397
58600
|
//# sourceMappingURL=pendo.js.map
|
|
58398
58601
|
|
|
58399
58602
|
/***/ }),
|
|
58400
|
-
/*
|
|
58603
|
+
/* 458 */
|
|
58401
58604
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58402
58605
|
|
|
58403
58606
|
"use strict";
|
|
@@ -58426,7 +58629,7 @@ exports.addSnippet = addSnippet;
|
|
|
58426
58629
|
//# sourceMappingURL=pendoSnippet.js.map
|
|
58427
58630
|
|
|
58428
58631
|
/***/ }),
|
|
58429
|
-
/*
|
|
58632
|
+
/* 459 */
|
|
58430
58633
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58431
58634
|
|
|
58432
58635
|
"use strict";
|
|
@@ -58442,13 +58645,13 @@ var Role;
|
|
|
58442
58645
|
//# sourceMappingURL=types.js.map
|
|
58443
58646
|
|
|
58444
58647
|
/***/ }),
|
|
58445
|
-
/*
|
|
58648
|
+
/* 460 */
|
|
58446
58649
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58447
58650
|
|
|
58448
58651
|
"use strict";
|
|
58449
58652
|
|
|
58450
58653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58451
|
-
var AnalyticsReportsEntity_1 = __webpack_require__(
|
|
58654
|
+
var AnalyticsReportsEntity_1 = __webpack_require__(461);
|
|
58452
58655
|
var AnalyticsReportsApi = /** @class */ (function () {
|
|
58453
58656
|
function AnalyticsReportsApi(session) {
|
|
58454
58657
|
this.analyticsReportsEntity = new AnalyticsReportsEntity_1.default(session);
|
|
@@ -58495,7 +58698,7 @@ exports.default = AnalyticsReportsApi;
|
|
|
58495
58698
|
//# sourceMappingURL=AnalyticsReportsApi.js.map
|
|
58496
58699
|
|
|
58497
58700
|
/***/ }),
|
|
58498
|
-
/*
|
|
58701
|
+
/* 461 */
|
|
58499
58702
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58500
58703
|
|
|
58501
58704
|
"use strict";
|
|
@@ -58557,7 +58760,7 @@ var Version;
|
|
|
58557
58760
|
(function (Version) {
|
|
58558
58761
|
Version["v1"] = "v1";
|
|
58559
58762
|
})(Version || (Version = {}));
|
|
58560
|
-
var BaseRoute = '/
|
|
58763
|
+
var BaseRoute = '/analytics-service';
|
|
58561
58764
|
var createRoute = function (route, version) {
|
|
58562
58765
|
if (version === void 0) { version = Version.v1; }
|
|
58563
58766
|
return BaseRoute + "/" + version + route;
|
|
@@ -58581,7 +58784,7 @@ var AnalyticsReportsEntity = /** @class */ (function (_super) {
|
|
|
58581
58784
|
function AnalyticsReportsEntity(session) {
|
|
58582
58785
|
return _super.call(this, {
|
|
58583
58786
|
session: session,
|
|
58584
|
-
entityName: '
|
|
58787
|
+
entityName: 'analytics-service'
|
|
58585
58788
|
}) || this;
|
|
58586
58789
|
}
|
|
58587
58790
|
AnalyticsReportsEntity.prototype.getReport = function (reportId) {
|
|
@@ -58722,13 +58925,13 @@ exports.default = AnalyticsReportsEntity;
|
|
|
58722
58925
|
//# sourceMappingURL=AnalyticsReportsEntity.js.map
|
|
58723
58926
|
|
|
58724
58927
|
/***/ }),
|
|
58725
|
-
/*
|
|
58928
|
+
/* 462 */
|
|
58726
58929
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58727
58930
|
|
|
58728
58931
|
"use strict";
|
|
58729
58932
|
|
|
58730
58933
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58731
|
-
var ServicePlansEntity_1 = __webpack_require__(
|
|
58934
|
+
var ServicePlansEntity_1 = __webpack_require__(463);
|
|
58732
58935
|
var ServicePlansApi = /** @class */ (function () {
|
|
58733
58936
|
function ServicePlansApi(session) {
|
|
58734
58937
|
this.servicePlansEntity = new ServicePlansEntity_1.default(session);
|
|
@@ -58745,7 +58948,7 @@ exports.default = ServicePlansApi;
|
|
|
58745
58948
|
//# sourceMappingURL=ServicePlansApi.js.map
|
|
58746
58949
|
|
|
58747
58950
|
/***/ }),
|
|
58748
|
-
/*
|
|
58951
|
+
/* 463 */
|
|
58749
58952
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58750
58953
|
|
|
58751
58954
|
"use strict";
|
|
@@ -58803,8 +59006,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58803
59006
|
};
|
|
58804
59007
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58805
59008
|
var Entity_1 = __webpack_require__(5);
|
|
58806
|
-
var StoreEntity_1 = __webpack_require__(
|
|
58807
|
-
var ServicePlans_consts_1 = __webpack_require__(
|
|
59009
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
59010
|
+
var ServicePlans_consts_1 = __webpack_require__(464);
|
|
58808
59011
|
var ServicePlanSEntity = /** @class */ (function (_super) {
|
|
58809
59012
|
__extends(ServicePlanSEntity, _super);
|
|
58810
59013
|
function ServicePlanSEntity(session) {
|
|
@@ -58834,7 +59037,7 @@ exports.default = ServicePlanSEntity;
|
|
|
58834
59037
|
//# sourceMappingURL=ServicePlansEntity.js.map
|
|
58835
59038
|
|
|
58836
59039
|
/***/ }),
|
|
58837
|
-
/*
|
|
59040
|
+
/* 464 */
|
|
58838
59041
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58839
59042
|
|
|
58840
59043
|
"use strict";
|
|
@@ -58848,13 +59051,13 @@ exports.planningResponseExtractor = planningResponseExtractor;
|
|
|
58848
59051
|
//# sourceMappingURL=ServicePlans.consts.js.map
|
|
58849
59052
|
|
|
58850
59053
|
/***/ }),
|
|
58851
|
-
/*
|
|
59054
|
+
/* 465 */
|
|
58852
59055
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58853
59056
|
|
|
58854
59057
|
"use strict";
|
|
58855
59058
|
|
|
58856
59059
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58857
|
-
var AlertsEntity_1 = __webpack_require__(
|
|
59060
|
+
var AlertsEntity_1 = __webpack_require__(466);
|
|
58858
59061
|
var AlertsApi = /** @class */ (function () {
|
|
58859
59062
|
function AlertsApi(session) {
|
|
58860
59063
|
this.alertsEntity = new AlertsEntity_1.default(session);
|
|
@@ -58883,7 +59086,7 @@ exports.default = AlertsApi;
|
|
|
58883
59086
|
//# sourceMappingURL=AlertsApi.js.map
|
|
58884
59087
|
|
|
58885
59088
|
/***/ }),
|
|
58886
|
-
/*
|
|
59089
|
+
/* 466 */
|
|
58887
59090
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58888
59091
|
|
|
58889
59092
|
"use strict";
|
|
@@ -58940,8 +59143,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
58940
59143
|
}
|
|
58941
59144
|
};
|
|
58942
59145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58943
|
-
var StoreEntity_1 = __webpack_require__(
|
|
58944
|
-
var Alerts_consts_1 = __webpack_require__(
|
|
59146
|
+
var StoreEntity_1 = __webpack_require__(10);
|
|
59147
|
+
var Alerts_consts_1 = __webpack_require__(467);
|
|
58945
59148
|
// Some adjustments to StoreEntity logic is required if proxying through store is required
|
|
58946
59149
|
var AlertsEntity = /** @class */ (function (_super) {
|
|
58947
59150
|
__extends(AlertsEntity, _super);
|
|
@@ -59016,7 +59219,7 @@ exports.default = AlertsEntity;
|
|
|
59016
59219
|
//# sourceMappingURL=AlertsEntity.js.map
|
|
59017
59220
|
|
|
59018
59221
|
/***/ }),
|
|
59019
|
-
/*
|
|
59222
|
+
/* 467 */
|
|
59020
59223
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59021
59224
|
|
|
59022
59225
|
"use strict";
|
|
@@ -59042,7 +59245,7 @@ exports.Routes = {
|
|
|
59042
59245
|
//# sourceMappingURL=Alerts.consts.js.map
|
|
59043
59246
|
|
|
59044
59247
|
/***/ }),
|
|
59045
|
-
/*
|
|
59248
|
+
/* 468 */
|
|
59046
59249
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59047
59250
|
|
|
59048
59251
|
"use strict";
|
|
@@ -59051,7 +59254,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59051
59254
|
//# sourceMappingURL=VehicleType.consts.js.map
|
|
59052
59255
|
|
|
59053
59256
|
/***/ }),
|
|
59054
|
-
/*
|
|
59257
|
+
/* 469 */
|
|
59055
59258
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59056
59259
|
|
|
59057
59260
|
"use strict";
|
|
@@ -59060,7 +59263,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59060
59263
|
//# sourceMappingURL=PlannedRoutes.consts.js.map
|
|
59061
59264
|
|
|
59062
59265
|
/***/ }),
|
|
59063
|
-
/*
|
|
59266
|
+
/* 470 */
|
|
59064
59267
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59065
59268
|
|
|
59066
59269
|
"use strict";
|
|
@@ -59069,7 +59272,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59069
59272
|
//# sourceMappingURL=Crew.consts.js.map
|
|
59070
59273
|
|
|
59071
59274
|
/***/ }),
|
|
59072
|
-
/*
|
|
59275
|
+
/* 471 */
|
|
59073
59276
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59074
59277
|
|
|
59075
59278
|
"use strict";
|
|
@@ -59078,7 +59281,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59078
59281
|
//# sourceMappingURL=Responses.js.map
|
|
59079
59282
|
|
|
59080
59283
|
/***/ }),
|
|
59081
|
-
/*
|
|
59284
|
+
/* 472 */
|
|
59082
59285
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59083
59286
|
|
|
59084
59287
|
"use strict";
|
|
@@ -59090,7 +59293,7 @@ exports.defaultExtractor = defaultExtractor;
|
|
|
59090
59293
|
//# sourceMappingURL=Tag.consts.js.map
|
|
59091
59294
|
|
|
59092
59295
|
/***/ }),
|
|
59093
|
-
/*
|
|
59296
|
+
/* 473 */
|
|
59094
59297
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59095
59298
|
|
|
59096
59299
|
"use strict";
|
|
@@ -59099,7 +59302,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59099
59302
|
//# sourceMappingURL=DeliveryBlocks.consts.js.map
|
|
59100
59303
|
|
|
59101
59304
|
/***/ }),
|
|
59102
|
-
/*
|
|
59305
|
+
/* 474 */
|
|
59103
59306
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59104
59307
|
|
|
59105
59308
|
"use strict";
|
|
@@ -59113,7 +59316,7 @@ exports.default = ResourceUploadType;
|
|
|
59113
59316
|
//# sourceMappingURL=ResourceUploadType.js.map
|
|
59114
59317
|
|
|
59115
59318
|
/***/ }),
|
|
59116
|
-
/*
|
|
59319
|
+
/* 475 */
|
|
59117
59320
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
59118
59321
|
|
|
59119
59322
|
"use strict";
|