@bringg/dashboard-sdk 0.4.49 → 0.4.53

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.
@@ -19617,7 +19617,9 @@ var SessionBasedService = /** @class */ (function () {
19617
19617
  .invoke(this.endpoint, route, routeParams, queryString, payload, headers)
19618
19618
  .handle(function (response) {
19619
19619
  var data = response.data, status = response.status;
19620
- if (status != Enums_1.HttpStatusCode.OK && status != Enums_1.HttpStatusCode.CREATED) {
19620
+ if (status != Enums_1.HttpStatusCode.OK &&
19621
+ status != Enums_1.HttpStatusCode.CREATED &&
19622
+ status != Enums_1.HttpStatusCode.NO_CONTENT) {
19621
19623
  _this.notifyHttpError(new BringgException_1.BringgException(ExceptionReason_1.ExceptionReason.fromHttpStatusCode(status), Enums_1.HttpStatusCode.getStatusText(status), null, {
19622
19624
  request: {
19623
19625
  route: route,
@@ -22018,32 +22020,33 @@ var SkillsApi_1 = __webpack_require__(293);
22018
22020
  var VehicleApi_1 = __webpack_require__(296);
22019
22021
  var WebApplicationConfigurationApi_1 = __webpack_require__(298);
22020
22022
  var FleetApi_1 = __webpack_require__(300);
22021
- var PushTokenSubscriptionApi_1 = __webpack_require__(302);
22022
- var TaskApi_1 = __webpack_require__(304);
22023
- var ApplicationMerchantConfigurationApi_1 = __webpack_require__(397);
22024
- var GoogleMapsHelperApi_1 = __webpack_require__(399);
22025
- var OnboardingApi_1 = __webpack_require__(401);
22026
- var FleetRouterApi_1 = __webpack_require__(403);
22023
+ var RuleApi_1 = __webpack_require__(302);
22024
+ var PushTokenSubscriptionApi_1 = __webpack_require__(304);
22025
+ var TaskApi_1 = __webpack_require__(306);
22026
+ var ApplicationMerchantConfigurationApi_1 = __webpack_require__(399);
22027
+ var GoogleMapsHelperApi_1 = __webpack_require__(401);
22028
+ var OnboardingApi_1 = __webpack_require__(403);
22029
+ var FleetRouterApi_1 = __webpack_require__(405);
22027
22030
  var AuthService_1 = __webpack_require__(104);
22028
- var ServiceApi_1 = __webpack_require__(405);
22029
- var FleetTemplateApi_1 = __webpack_require__(407);
22030
- var OpenFleetApi_1 = __webpack_require__(409);
22031
- var GeocodingApi_1 = __webpack_require__(411);
22032
- var ApplicationApi_1 = __webpack_require__(413);
22033
- var CustomerAvailabilityHourApi_1 = __webpack_require__(415);
22034
- var ShiftsApi_1 = __webpack_require__(417);
22035
- var ExclusionWindowApi_1 = __webpack_require__(419);
22036
- var Country_1 = __webpack_require__(421);
22037
- var OauthApplicationApi_1 = __webpack_require__(422);
22038
- var Inventory_1 = __webpack_require__(424);
22039
- var PushNotificationRegistration_1 = __webpack_require__(426);
22040
- var ReasonToCancelTasksApi_1 = __webpack_require__(428);
22041
- var CustomFilterApi_1 = __webpack_require__(430);
22042
- var FloatingInventoryApi_1 = __webpack_require__(432);
22043
- var ServiceAreaApi_1 = __webpack_require__(435);
22044
- var BillingApi_1 = __webpack_require__(437);
22045
- var analytics_api_1 = __webpack_require__(439);
22046
- var AnalyticsReportsApi_1 = __webpack_require__(441);
22031
+ var ServiceApi_1 = __webpack_require__(407);
22032
+ var FleetTemplateApi_1 = __webpack_require__(409);
22033
+ var OpenFleetApi_1 = __webpack_require__(411);
22034
+ var GeocodingApi_1 = __webpack_require__(413);
22035
+ var ApplicationApi_1 = __webpack_require__(415);
22036
+ var CustomerAvailabilityHourApi_1 = __webpack_require__(417);
22037
+ var ShiftsApi_1 = __webpack_require__(419);
22038
+ var ExclusionWindowApi_1 = __webpack_require__(421);
22039
+ var Country_1 = __webpack_require__(423);
22040
+ var OauthApplicationApi_1 = __webpack_require__(424);
22041
+ var Inventory_1 = __webpack_require__(426);
22042
+ var PushNotificationRegistration_1 = __webpack_require__(428);
22043
+ var ReasonToCancelTasksApi_1 = __webpack_require__(430);
22044
+ var CustomFilterApi_1 = __webpack_require__(432);
22045
+ var FloatingInventoryApi_1 = __webpack_require__(434);
22046
+ var ServiceAreaApi_1 = __webpack_require__(437);
22047
+ var BillingApi_1 = __webpack_require__(439);
22048
+ var analytics_api_1 = __webpack_require__(441);
22049
+ var AnalyticsReportsApi_1 = __webpack_require__(443);
22047
22050
  var BringgDashboardSDK = /** @class */ (function () {
22048
22051
  function BringgDashboardSDK(session) {
22049
22052
  this.applicationMerchantConfiguration = null;
@@ -22057,6 +22060,7 @@ var BringgDashboardSDK = /** @class */ (function () {
22057
22060
  this.dashboard = null;
22058
22061
  this.deliveryBlocks = null;
22059
22062
  this.fleets = null;
22063
+ this.rules = null;
22060
22064
  this.floatingInventory = null;
22061
22065
  this.inventoryActionsConfigurations = null;
22062
22066
  this.languages = null;
@@ -22103,6 +22107,7 @@ var BringgDashboardSDK = /** @class */ (function () {
22103
22107
  bringg.dashboard = new dashboard_1.default(session);
22104
22108
  bringg.deliveryBlocks = new DeliveryBlocksApi_1.DeliveryBlocksApi(session);
22105
22109
  bringg.fleets = new FleetApi_1.default(session);
22110
+ bringg.rules = new RuleApi_1.default(session);
22106
22111
  bringg.fleetRouterApi = new FleetRouterApi_1.default(session);
22107
22112
  bringg.floatingInventory = new FloatingInventoryApi_1.default(session);
22108
22113
  bringg.geocoding = new GeocodingApi_1.default(session);
@@ -30003,7 +30008,7 @@ var axios_1 = __webpack_require__(146);
30003
30008
  var Logger_1 = __webpack_require__(39);
30004
30009
  var lodash_1 = __webpack_require__(10);
30005
30010
  var BringgException_1 = __webpack_require__(15);
30006
- var version = '0.4.49';
30011
+ var version = '0.4.53';
30007
30012
  function logErrorResponse(response) {
30008
30013
  var data = response.data, status = response.status;
30009
30014
  try {
@@ -31562,8 +31567,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
31562
31567
  for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
31563
31568
  };
31564
31569
  exports.__esModule = true;
31565
- __exportStar(__webpack_require__(305), exports);
31566
- __exportStar(__webpack_require__(306), exports);
31567
31570
  __exportStar(__webpack_require__(307), exports);
31568
31571
  __exportStar(__webpack_require__(308), exports);
31569
31572
  __exportStar(__webpack_require__(309), exports);
@@ -31653,6 +31656,8 @@ __exportStar(__webpack_require__(392), exports);
31653
31656
  __exportStar(__webpack_require__(393), exports);
31654
31657
  __exportStar(__webpack_require__(394), exports);
31655
31658
  __exportStar(__webpack_require__(395), exports);
31659
+ __exportStar(__webpack_require__(396), exports);
31660
+ __exportStar(__webpack_require__(397), exports);
31656
31661
  //# sourceMappingURL=index.js.map
31657
31662
 
31658
31663
  /***/ }),
@@ -36545,7 +36550,7 @@ var Logger_1 = __webpack_require__(39);
36545
36550
  //export types
36546
36551
  var BringgDashboardSDK_1 = __webpack_require__(61);
36547
36552
  Object.defineProperty(exports, "BringgDashboardSDK", { enumerable: true, get: function () { return BringgDashboardSDK_1.BringgDashboardSDK; } });
36548
- var VehicleTypeConsts = __webpack_require__(443);
36553
+ var VehicleTypeConsts = __webpack_require__(445);
36549
36554
  exports.VehicleTypeConsts = VehicleTypeConsts;
36550
36555
  var TaskInventoryConsts = __webpack_require__(136);
36551
36556
  exports.TaskInventoryConsts = TaskInventoryConsts;
@@ -36553,7 +36558,7 @@ var RunConsts = __webpack_require__(133);
36553
36558
  exports.RunConsts = RunConsts;
36554
36559
  var ReasonToChangeInventory = __webpack_require__(135);
36555
36560
  exports.ReasonToChangeInventory = ReasonToChangeInventory;
36556
- var PlannedRoutesConsts = __webpack_require__(444);
36561
+ var PlannedRoutesConsts = __webpack_require__(446);
36557
36562
  exports.PlannedRoutesConsts = PlannedRoutesConsts;
36558
36563
  var NotificationTypesConsts = __webpack_require__(140);
36559
36564
  exports.NotificationTypesConsts = NotificationTypesConsts;
@@ -36563,19 +36568,19 @@ var LanguageConsts = __webpack_require__(139);
36563
36568
  exports.LanguageConsts = LanguageConsts;
36564
36569
  var DashboardConsts = __webpack_require__(134);
36565
36570
  exports.DashboardConsts = DashboardConsts;
36566
- var CrewConsts = __webpack_require__(445);
36571
+ var CrewConsts = __webpack_require__(447);
36567
36572
  exports.CrewConsts = CrewConsts;
36568
36573
  var ChatMessageConsts = __webpack_require__(138);
36569
36574
  exports.ChatMessageConsts = ChatMessageConsts;
36570
36575
  var ChatConversationConsts = __webpack_require__(137);
36571
36576
  exports.ChatConversationConsts = ChatConversationConsts;
36572
- var Responses = __webpack_require__(446);
36577
+ var Responses = __webpack_require__(448);
36573
36578
  exports.Responses = Responses;
36574
- var TagConsts = __webpack_require__(447);
36579
+ var TagConsts = __webpack_require__(449);
36575
36580
  exports.TagConsts = TagConsts;
36576
- var DeliveryBlockConsts = __webpack_require__(448);
36581
+ var DeliveryBlockConsts = __webpack_require__(450);
36577
36582
  exports.DeliveryBlockConsts = DeliveryBlockConsts;
36578
- var ResourceUploadType_1 = __webpack_require__(449);
36583
+ var ResourceUploadType_1 = __webpack_require__(451);
36579
36584
  exports.ResourceUploadType = ResourceUploadType_1.default;
36580
36585
  module.exports = {};
36581
36586
  lodash_1.extend(module.exports, BringgDashboardSDK_1.BringgDashboardSDK);
@@ -43112,11 +43117,11 @@ var Runs = /** @class */ (function () {
43112
43117
  });
43113
43118
  });
43114
43119
  };
43115
- Runs.prototype.assignDriver = function (id, userId) {
43120
+ Runs.prototype.assignDriver = function (id, userId, targetRun) {
43116
43121
  return __awaiter(this, void 0, void 0, function () {
43117
43122
  return __generator(this, function (_a) {
43118
43123
  switch (_a.label) {
43119
- case 0: return [4 /*yield*/, this.runsService.assignDriver(id, userId)];
43124
+ case 0: return [4 /*yield*/, this.runsService.assignDriver(id, userId, targetRun)];
43120
43125
  case 1: return [2 /*return*/, _a.sent()];
43121
43126
  }
43122
43127
  });
@@ -43348,12 +43353,12 @@ var RunsService = /** @class */ (function (_super) {
43348
43353
  });
43349
43354
  });
43350
43355
  };
43351
- RunsService.prototype.assignDriver = function (id, userId) {
43356
+ RunsService.prototype.assignDriver = function (id, userId, targetRun) {
43352
43357
  return __awaiter(this, void 0, void 0, function () {
43353
43358
  var response;
43354
43359
  return __generator(this, function (_a) {
43355
43360
  switch (_a.label) {
43356
- case 0: return [4 /*yield*/, this.handleAuthorizedRequest(exports.Routes.ASSIGN_DRIVER, runs_consts_1.defaultExtractor, BringgException_1.BringgException.serviceException('Failed to assign driver to run'), { user_id: userId }, { id: id })];
43361
+ case 0: return [4 /*yield*/, this.handleAuthorizedRequest(exports.Routes.ASSIGN_DRIVER, runs_consts_1.defaultExtractor, BringgException_1.BringgException.serviceException('Failed to assign driver to run'), { user_id: userId, target_run: targetRun }, { id: id })];
43357
43362
  case 1:
43358
43363
  response = _a.sent();
43359
43364
  return [2 /*return*/, response];
@@ -51585,7 +51590,200 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
51585
51590
  }
51586
51591
  };
51587
51592
  Object.defineProperty(exports, "__esModule", { value: true });
51588
- var PushTokenSubscriptionEntity_1 = __webpack_require__(303);
51593
+ var RuleEntity_1 = __webpack_require__(303);
51594
+ var Rules = /** @class */ (function () {
51595
+ function Rules(session) {
51596
+ this.rulesEntity = new RuleEntity_1.default(session);
51597
+ }
51598
+ Rules.prototype.getMetadata = function (query) {
51599
+ return __awaiter(this, void 0, void 0, function () {
51600
+ return __generator(this, function (_a) {
51601
+ switch (_a.label) {
51602
+ case 0: return [4 /*yield*/, this.rulesEntity.getMetadata(query)];
51603
+ case 1: return [2 /*return*/, _a.sent()];
51604
+ }
51605
+ });
51606
+ });
51607
+ };
51608
+ Rules.prototype.getRules = function (category_id, entity, entity_id) {
51609
+ return __awaiter(this, void 0, void 0, function () {
51610
+ return __generator(this, function (_a) {
51611
+ switch (_a.label) {
51612
+ case 0: return [4 /*yield*/, this.rulesEntity.getRules(category_id, entity, entity_id)];
51613
+ case 1: return [2 /*return*/, _a.sent()];
51614
+ }
51615
+ });
51616
+ });
51617
+ };
51618
+ Rules.prototype.saveRules = function (data) {
51619
+ return __awaiter(this, void 0, void 0, function () {
51620
+ return __generator(this, function (_a) {
51621
+ switch (_a.label) {
51622
+ case 0: return [4 /*yield*/, this.rulesEntity.saveRules(data)];
51623
+ case 1: return [2 /*return*/, _a.sent()];
51624
+ }
51625
+ });
51626
+ });
51627
+ };
51628
+ return Rules;
51629
+ }());
51630
+ exports.default = Rules;
51631
+ //# sourceMappingURL=RuleApi.js.map
51632
+
51633
+ /***/ }),
51634
+ /* 303 */
51635
+ /***/ (function(module, exports, __webpack_require__) {
51636
+
51637
+ "use strict";
51638
+
51639
+ var __extends = (this && this.__extends) || (function () {
51640
+ var extendStatics = function (d, b) {
51641
+ extendStatics = Object.setPrototypeOf ||
51642
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
51643
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
51644
+ return extendStatics(d, b);
51645
+ };
51646
+ return function (d, b) {
51647
+ if (typeof b !== "function" && b !== null)
51648
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
51649
+ extendStatics(d, b);
51650
+ function __() { this.constructor = d; }
51651
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
51652
+ };
51653
+ })();
51654
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
51655
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
51656
+ return new (P || (P = Promise))(function (resolve, reject) {
51657
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
51658
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
51659
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
51660
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
51661
+ });
51662
+ };
51663
+ var __generator = (this && this.__generator) || function (thisArg, body) {
51664
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
51665
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
51666
+ function verb(n) { return function (v) { return step([n, v]); }; }
51667
+ function step(op) {
51668
+ if (f) throw new TypeError("Generator is already executing.");
51669
+ while (_) try {
51670
+ 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;
51671
+ if (y = 0, t) op = [op[0] & 2, t.value];
51672
+ switch (op[0]) {
51673
+ case 0: case 1: t = op; break;
51674
+ case 4: _.label++; return { value: op[1], done: false };
51675
+ case 5: _.label++; y = op[1]; op = [0]; continue;
51676
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
51677
+ default:
51678
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
51679
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
51680
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
51681
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
51682
+ if (t[2]) _.ops.pop();
51683
+ _.trys.pop(); continue;
51684
+ }
51685
+ op = body.call(thisArg, _);
51686
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
51687
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51688
+ }
51689
+ };
51690
+ Object.defineProperty(exports, "__esModule", { value: true });
51691
+ exports.Routes = void 0;
51692
+ var StoreEntity_1 = __webpack_require__(11);
51693
+ var Entity_1 = __webpack_require__(5);
51694
+ exports.Routes = {
51695
+ GET_RULES: '/rule-service/rules',
51696
+ GET_METADATA: '/rule-service/metadata',
51697
+ POST_RULES: '/rule-service/rules'
51698
+ };
51699
+ var RuleEntity = /** @class */ (function (_super) {
51700
+ __extends(RuleEntity, _super);
51701
+ function RuleEntity(session) {
51702
+ return _super.call(this, {
51703
+ session: session,
51704
+ entityName: 'rules',
51705
+ routes: [Entity_1.BaseRoutes.GetAll, Entity_1.BaseRoutes.Create, Entity_1.BaseRoutes.Delete]
51706
+ }) || this;
51707
+ }
51708
+ RuleEntity.prototype.getMetadata = function (query) {
51709
+ return __awaiter(this, void 0, void 0, function () {
51710
+ return __generator(this, function (_a) {
51711
+ return [2 /*return*/, this.service.routeGenerator
51712
+ .get(exports.Routes.GET_METADATA)
51713
+ .withQueryString(query)
51714
+ .invoke()];
51715
+ });
51716
+ });
51717
+ };
51718
+ RuleEntity.prototype.getRules = function (category_id, entity, entity_id) {
51719
+ return __awaiter(this, void 0, void 0, function () {
51720
+ return __generator(this, function (_a) {
51721
+ return [2 /*return*/, this.service.routeGenerator
51722
+ .get(exports.Routes.GET_RULES)
51723
+ .withQueryString({ category_id: category_id, entity: entity, entity_id: entity_id })
51724
+ .invoke()];
51725
+ });
51726
+ });
51727
+ };
51728
+ RuleEntity.prototype.saveRules = function (data) {
51729
+ return __awaiter(this, void 0, void 0, function () {
51730
+ return __generator(this, function (_a) {
51731
+ return [2 /*return*/, this.service.routeGenerator
51732
+ .patch(exports.Routes.POST_RULES)
51733
+ .withPayload(data)
51734
+ .invoke()];
51735
+ });
51736
+ });
51737
+ };
51738
+ return RuleEntity;
51739
+ }(StoreEntity_1.default));
51740
+ exports.default = RuleEntity;
51741
+ //# sourceMappingURL=RuleEntity.js.map
51742
+
51743
+ /***/ }),
51744
+ /* 304 */
51745
+ /***/ (function(module, exports, __webpack_require__) {
51746
+
51747
+ "use strict";
51748
+
51749
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
51750
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
51751
+ return new (P || (P = Promise))(function (resolve, reject) {
51752
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
51753
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
51754
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
51755
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
51756
+ });
51757
+ };
51758
+ var __generator = (this && this.__generator) || function (thisArg, body) {
51759
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
51760
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
51761
+ function verb(n) { return function (v) { return step([n, v]); }; }
51762
+ function step(op) {
51763
+ if (f) throw new TypeError("Generator is already executing.");
51764
+ while (_) try {
51765
+ 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;
51766
+ if (y = 0, t) op = [op[0] & 2, t.value];
51767
+ switch (op[0]) {
51768
+ case 0: case 1: t = op; break;
51769
+ case 4: _.label++; return { value: op[1], done: false };
51770
+ case 5: _.label++; y = op[1]; op = [0]; continue;
51771
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
51772
+ default:
51773
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
51774
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
51775
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
51776
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
51777
+ if (t[2]) _.ops.pop();
51778
+ _.trys.pop(); continue;
51779
+ }
51780
+ op = body.call(thisArg, _);
51781
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
51782
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51783
+ }
51784
+ };
51785
+ Object.defineProperty(exports, "__esModule", { value: true });
51786
+ var PushTokenSubscriptionEntity_1 = __webpack_require__(305);
51589
51787
  var PushTokenSubscriptionApi = /** @class */ (function () {
51590
51788
  function PushTokenSubscriptionApi(session) {
51591
51789
  this.pushTokenSubscriptionEntity = new PushTokenSubscriptionEntity_1.default(session);
@@ -51610,7 +51808,7 @@ exports.default = PushTokenSubscriptionApi;
51610
51808
  //# sourceMappingURL=PushTokenSubscriptionApi.js.map
51611
51809
 
51612
51810
  /***/ }),
51613
- /* 303 */
51811
+ /* 305 */
51614
51812
  /***/ (function(module, exports, __webpack_require__) {
51615
51813
 
51616
51814
  "use strict";
@@ -51643,14 +51841,14 @@ exports.default = PushTokenSubscriptionEntity;
51643
51841
  //# sourceMappingURL=PushTokenSubscriptionEntity.js.map
51644
51842
 
51645
51843
  /***/ }),
51646
- /* 304 */
51844
+ /* 306 */
51647
51845
  /***/ (function(module, exports, __webpack_require__) {
51648
51846
 
51649
51847
  "use strict";
51650
51848
 
51651
51849
  Object.defineProperty(exports, "__esModule", { value: true });
51652
51850
  var Tasks_consts_1 = __webpack_require__(100);
51653
- var TaskEntity_1 = __webpack_require__(396);
51851
+ var TaskEntity_1 = __webpack_require__(398);
51654
51852
  var TaskHelpers_1 = __webpack_require__(102);
51655
51853
  var Tasks = /** @class */ (function () {
51656
51854
  function Tasks(session) {
@@ -51828,7 +52026,7 @@ exports.default = Tasks;
51828
52026
  //# sourceMappingURL=TaskApi.js.map
51829
52027
 
51830
52028
  /***/ }),
51831
- /* 305 */
52029
+ /* 307 */
51832
52030
  /***/ (function(module, exports, __webpack_require__) {
51833
52031
 
51834
52032
  "use strict";
@@ -51843,7 +52041,7 @@ var OwnerType;
51843
52041
  //# sourceMappingURL=action_data.js.map
51844
52042
 
51845
52043
  /***/ }),
51846
- /* 306 */
52044
+ /* 308 */
51847
52045
  /***/ (function(module, exports, __webpack_require__) {
51848
52046
 
51849
52047
  "use strict";
@@ -51852,7 +52050,7 @@ exports.__esModule = true;
51852
52050
  //# sourceMappingURL=actual_break.js.map
51853
52051
 
51854
52052
  /***/ }),
51855
- /* 307 */
52053
+ /* 309 */
51856
52054
  /***/ (function(module, exports, __webpack_require__) {
51857
52055
 
51858
52056
  "use strict";
@@ -51913,7 +52111,7 @@ exports.ALERT_TYPES_VALUES = Object.values(ALERT_TYPES).filter(function (t) { re
51913
52111
  //# sourceMappingURL=alert.js.map
51914
52112
 
51915
52113
  /***/ }),
51916
- /* 308 */
52114
+ /* 310 */
51917
52115
  /***/ (function(module, exports, __webpack_require__) {
51918
52116
 
51919
52117
  "use strict";
@@ -52012,7 +52210,7 @@ var ApplicationUuid;
52012
52210
  //# sourceMappingURL=application.js.map
52013
52211
 
52014
52212
  /***/ }),
52015
- /* 309 */
52213
+ /* 311 */
52016
52214
  /***/ (function(module, exports, __webpack_require__) {
52017
52215
 
52018
52216
  "use strict";
@@ -52027,7 +52225,7 @@ var LOGIN_ERRORS;
52027
52225
  //# sourceMappingURL=auth.js.map
52028
52226
 
52029
52227
  /***/ }),
52030
- /* 310 */
52228
+ /* 312 */
52031
52229
  /***/ (function(module, exports, __webpack_require__) {
52032
52230
 
52033
52231
  "use strict";
@@ -52043,7 +52241,7 @@ var ChatConversationType;
52043
52241
  //# sourceMappingURL=chat_conversation.js.map
52044
52242
 
52045
52243
  /***/ }),
52046
- /* 311 */
52244
+ /* 313 */
52047
52245
  /***/ (function(module, exports, __webpack_require__) {
52048
52246
 
52049
52247
  "use strict";
@@ -52064,13 +52262,13 @@ var ChatMessageOrigin;
52064
52262
  //# sourceMappingURL=chat_message.js.map
52065
52263
 
52066
52264
  /***/ }),
52067
- /* 312 */
52265
+ /* 314 */
52068
52266
  /***/ (function(module, exports, __webpack_require__) {
52069
52267
 
52070
52268
  "use strict";
52071
52269
 
52072
52270
  exports.__esModule = true;
52073
- exports.DayOfWeek = void 0;
52271
+ exports.Connection = exports.DayOfWeek = void 0;
52074
52272
  var DayOfWeek;
52075
52273
  (function (DayOfWeek) {
52076
52274
  DayOfWeek[DayOfWeek["Monday"] = 0] = "Monday";
@@ -52081,10 +52279,15 @@ var DayOfWeek;
52081
52279
  DayOfWeek[DayOfWeek["Saturday"] = 5] = "Saturday";
52082
52280
  DayOfWeek[DayOfWeek["Sunday"] = 6] = "Sunday";
52083
52281
  })(DayOfWeek = exports.DayOfWeek || (exports.DayOfWeek = {}));
52282
+ var Connection;
52283
+ (function (Connection) {
52284
+ Connection["Online"] = "online";
52285
+ Connection["Offline"] = "offline";
52286
+ })(Connection = exports.Connection || (exports.Connection = {}));
52084
52287
  //# sourceMappingURL=common.js.map
52085
52288
 
52086
52289
  /***/ }),
52087
- /* 313 */
52290
+ /* 315 */
52088
52291
  /***/ (function(module, exports, __webpack_require__) {
52089
52292
 
52090
52293
  "use strict";
@@ -52093,7 +52296,7 @@ exports.__esModule = true;
52093
52296
  //# sourceMappingURL=company.js.map
52094
52297
 
52095
52298
  /***/ }),
52096
- /* 314 */
52299
+ /* 316 */
52097
52300
  /***/ (function(module, exports, __webpack_require__) {
52098
52301
 
52099
52302
  "use strict";
@@ -52102,7 +52305,7 @@ exports.__esModule = true;
52102
52305
  //# sourceMappingURL=crew.js.map
52103
52306
 
52104
52307
  /***/ }),
52105
- /* 315 */
52308
+ /* 317 */
52106
52309
  /***/ (function(module, exports, __webpack_require__) {
52107
52310
 
52108
52311
  "use strict";
@@ -52111,7 +52314,7 @@ exports.__esModule = true;
52111
52314
  //# sourceMappingURL=customer.js.map
52112
52315
 
52113
52316
  /***/ }),
52114
- /* 316 */
52317
+ /* 318 */
52115
52318
  /***/ (function(module, exports, __webpack_require__) {
52116
52319
 
52117
52320
  "use strict";
@@ -52120,7 +52323,7 @@ exports.__esModule = true;
52120
52323
  //# sourceMappingURL=customer_configuration.js.map
52121
52324
 
52122
52325
  /***/ }),
52123
- /* 317 */
52326
+ /* 319 */
52124
52327
  /***/ (function(module, exports, __webpack_require__) {
52125
52328
 
52126
52329
  "use strict";
@@ -52143,7 +52346,7 @@ var TaskPhase;
52143
52346
  //# sourceMappingURL=customer_experience.js.map
52144
52347
 
52145
52348
  /***/ }),
52146
- /* 318 */
52349
+ /* 320 */
52147
52350
  /***/ (function(module, exports, __webpack_require__) {
52148
52351
 
52149
52352
  "use strict";
@@ -52158,7 +52361,7 @@ var BreakType;
52158
52361
  //# sourceMappingURL=delivery_block.js.map
52159
52362
 
52160
52363
  /***/ }),
52161
- /* 319 */
52364
+ /* 321 */
52162
52365
  /***/ (function(module, exports, __webpack_require__) {
52163
52366
 
52164
52367
  "use strict";
@@ -52167,13 +52370,22 @@ exports.__esModule = true;
52167
52370
  //# sourceMappingURL=delivery_block_schedule.js.map
52168
52371
 
52169
52372
  /***/ }),
52170
- /* 320 */
52373
+ /* 322 */
52171
52374
  /***/ (function(module, exports, __webpack_require__) {
52172
52375
 
52173
52376
  "use strict";
52174
52377
 
52175
52378
  exports.__esModule = true;
52176
- exports.EventType = void 0;
52379
+ exports.EventType = exports.AssociationsChangedType = void 0;
52380
+ var AssociationsChangedType;
52381
+ (function (AssociationsChangedType) {
52382
+ AssociationsChangedType["way_point"] = "way_point";
52383
+ AssociationsChangedType["task_inventory"] = "task_inventory";
52384
+ AssociationsChangedType["form"] = "form";
52385
+ AssociationsChangedType["task_note"] = "task_note";
52386
+ AssociationsChangedType["task_photo"] = "task_photo";
52387
+ AssociationsChangedType["signature"] = "signature";
52388
+ })(AssociationsChangedType = exports.AssociationsChangedType || (exports.AssociationsChangedType = {}));
52177
52389
  var EventType;
52178
52390
  (function (EventType) {
52179
52391
  EventType["ApplicationActionRun"] = "application:action:run";
@@ -52285,7 +52497,7 @@ var EventType;
52285
52497
  //# sourceMappingURL=event.js.map
52286
52498
 
52287
52499
  /***/ }),
52288
- /* 321 */
52500
+ /* 323 */
52289
52501
  /***/ (function(module, exports, __webpack_require__) {
52290
52502
 
52291
52503
  "use strict";
@@ -52312,7 +52524,7 @@ var AggregatorType;
52312
52524
  //# sourceMappingURL=external_data_team.js.map
52313
52525
 
52314
52526
  /***/ }),
52315
- /* 322 */
52527
+ /* 324 */
52316
52528
  /***/ (function(module, exports, __webpack_require__) {
52317
52529
 
52318
52530
  "use strict";
@@ -52375,7 +52587,7 @@ exports.FleetTypeToCapabilities = (_a = {},
52375
52587
  //# sourceMappingURL=fleet.js.map
52376
52588
 
52377
52589
  /***/ }),
52378
- /* 323 */
52590
+ /* 325 */
52379
52591
  /***/ (function(module, exports, __webpack_require__) {
52380
52592
 
52381
52593
  "use strict";
@@ -52384,7 +52596,7 @@ exports.__esModule = true;
52384
52596
  //# sourceMappingURL=franchisee.js.map
52385
52597
 
52386
52598
  /***/ }),
52387
- /* 324 */
52599
+ /* 326 */
52388
52600
  /***/ (function(module, exports, __webpack_require__) {
52389
52601
 
52390
52602
  "use strict";
@@ -52393,7 +52605,7 @@ exports.__esModule = true;
52393
52605
  //# sourceMappingURL=geocoding.js.map
52394
52606
 
52395
52607
  /***/ }),
52396
- /* 325 */
52608
+ /* 327 */
52397
52609
  /***/ (function(module, exports, __webpack_require__) {
52398
52610
 
52399
52611
  "use strict";
@@ -52411,7 +52623,7 @@ var IntegrationName;
52411
52623
  //# sourceMappingURL=integration.js.map
52412
52624
 
52413
52625
  /***/ }),
52414
- /* 326 */
52626
+ /* 328 */
52415
52627
  /***/ (function(module, exports, __webpack_require__) {
52416
52628
 
52417
52629
  "use strict";
@@ -52420,7 +52632,7 @@ exports.__esModule = true;
52420
52632
  //# sourceMappingURL=language.js.map
52421
52633
 
52422
52634
  /***/ }),
52423
- /* 327 */
52635
+ /* 329 */
52424
52636
  /***/ (function(module, exports, __webpack_require__) {
52425
52637
 
52426
52638
  "use strict";
@@ -52429,7 +52641,7 @@ exports.__esModule = true;
52429
52641
  //# sourceMappingURL=location.js.map
52430
52642
 
52431
52643
  /***/ }),
52432
- /* 328 */
52644
+ /* 330 */
52433
52645
  /***/ (function(module, exports, __webpack_require__) {
52434
52646
 
52435
52647
  "use strict";
@@ -52459,7 +52671,7 @@ var Origin;
52459
52671
  //# sourceMappingURL=menu.js.map
52460
52672
 
52461
52673
  /***/ }),
52462
- /* 329 */
52674
+ /* 331 */
52463
52675
  /***/ (function(module, exports, __webpack_require__) {
52464
52676
 
52465
52677
  "use strict";
@@ -52497,7 +52709,7 @@ var EnvironmentTypes;
52497
52709
  //# sourceMappingURL=merchant.js.map
52498
52710
 
52499
52711
  /***/ }),
52500
- /* 330 */
52712
+ /* 332 */
52501
52713
  /***/ (function(module, exports, __webpack_require__) {
52502
52714
 
52503
52715
  "use strict";
@@ -52560,7 +52772,7 @@ var GrabMode;
52560
52772
  //# sourceMappingURL=merchant_configuration.js.map
52561
52773
 
52562
52774
  /***/ }),
52563
- /* 331 */
52775
+ /* 333 */
52564
52776
  /***/ (function(module, exports, __webpack_require__) {
52565
52777
 
52566
52778
  "use strict";
@@ -52569,7 +52781,7 @@ exports.__esModule = true;
52569
52781
  //# sourceMappingURL=notification_template.js.map
52570
52782
 
52571
52783
  /***/ }),
52572
- /* 332 */
52784
+ /* 334 */
52573
52785
  /***/ (function(module, exports, __webpack_require__) {
52574
52786
 
52575
52787
  "use strict";
@@ -52585,7 +52797,7 @@ var NotificationTypes;
52585
52797
  //# sourceMappingURL=notification_type.js.map
52586
52798
 
52587
52799
  /***/ }),
52588
- /* 333 */
52800
+ /* 335 */
52589
52801
  /***/ (function(module, exports, __webpack_require__) {
52590
52802
 
52591
52803
  "use strict";
@@ -52607,7 +52819,7 @@ var SubscriptionNotificationType;
52607
52819
  //# sourceMappingURL=notification_subscription.js.map
52608
52820
 
52609
52821
  /***/ }),
52610
- /* 334 */
52822
+ /* 336 */
52611
52823
  /***/ (function(module, exports, __webpack_require__) {
52612
52824
 
52613
52825
  "use strict";
@@ -52627,7 +52839,7 @@ var OptInMethod;
52627
52839
  //# sourceMappingURL=opt_in_out_history.js.map
52628
52840
 
52629
52841
  /***/ }),
52630
- /* 335 */
52842
+ /* 337 */
52631
52843
  /***/ (function(module, exports, __webpack_require__) {
52632
52844
 
52633
52845
  "use strict";
@@ -52636,7 +52848,7 @@ exports.__esModule = true;
52636
52848
  //# sourceMappingURL=planned_route.js.map
52637
52849
 
52638
52850
  /***/ }),
52639
- /* 336 */
52851
+ /* 338 */
52640
52852
  /***/ (function(module, exports, __webpack_require__) {
52641
52853
 
52642
52854
  "use strict";
@@ -52689,7 +52901,7 @@ var PrivilegeTypes;
52689
52901
  //# sourceMappingURL=privilege.js.map
52690
52902
 
52691
52903
  /***/ }),
52692
- /* 337 */
52904
+ /* 339 */
52693
52905
  /***/ (function(module, exports, __webpack_require__) {
52694
52906
 
52695
52907
  "use strict";
@@ -52698,7 +52910,7 @@ exports.__esModule = true;
52698
52910
  //# sourceMappingURL=package.js.map
52699
52911
 
52700
52912
  /***/ }),
52701
- /* 338 */
52913
+ /* 340 */
52702
52914
  /***/ (function(module, exports, __webpack_require__) {
52703
52915
 
52704
52916
  "use strict";
@@ -52712,7 +52924,7 @@ var ApplicationType;
52712
52924
  //# sourceMappingURL=push_token_subscription.js.map
52713
52925
 
52714
52926
  /***/ }),
52715
- /* 339 */
52927
+ /* 341 */
52716
52928
  /***/ (function(module, exports, __webpack_require__) {
52717
52929
 
52718
52930
  "use strict";
@@ -52732,7 +52944,7 @@ var PushNotificationEnvironment;
52732
52944
  //# sourceMappingURL=push_notification_registration.js.map
52733
52945
 
52734
52946
  /***/ }),
52735
- /* 340 */
52947
+ /* 342 */
52736
52948
  /***/ (function(module, exports, __webpack_require__) {
52737
52949
 
52738
52950
  "use strict";
@@ -52741,7 +52953,7 @@ exports.__esModule = true;
52741
52953
  //# sourceMappingURL=quote.js.map
52742
52954
 
52743
52955
  /***/ }),
52744
- /* 341 */
52956
+ /* 343 */
52745
52957
  /***/ (function(module, exports, __webpack_require__) {
52746
52958
 
52747
52959
  "use strict";
@@ -52750,7 +52962,7 @@ exports.__esModule = true;
52750
52962
  //# sourceMappingURL=rating.js.map
52751
52963
 
52752
52964
  /***/ }),
52753
- /* 342 */
52965
+ /* 344 */
52754
52966
  /***/ (function(module, exports, __webpack_require__) {
52755
52967
 
52756
52968
  "use strict";
@@ -52759,7 +52971,7 @@ exports.__esModule = true;
52759
52971
  //# sourceMappingURL=reason_to_cancel_task.js.map
52760
52972
 
52761
52973
  /***/ }),
52762
- /* 343 */
52974
+ /* 345 */
52763
52975
  /***/ (function(module, exports, __webpack_require__) {
52764
52976
 
52765
52977
  "use strict";
@@ -52768,7 +52980,7 @@ exports.__esModule = true;
52768
52980
  //# sourceMappingURL=reason_to_change_inventory.js.map
52769
52981
 
52770
52982
  /***/ }),
52771
- /* 344 */
52983
+ /* 346 */
52772
52984
  /***/ (function(module, exports, __webpack_require__) {
52773
52985
 
52774
52986
  "use strict";
@@ -52777,7 +52989,7 @@ exports.__esModule = true;
52777
52989
  //# sourceMappingURL=reason_to_reassign_task.js.map
52778
52990
 
52779
52991
  /***/ }),
52780
- /* 345 */
52992
+ /* 347 */
52781
52993
  /***/ (function(module, exports, __webpack_require__) {
52782
52994
 
52783
52995
  "use strict";
@@ -52786,7 +52998,7 @@ exports.__esModule = true;
52786
52998
  //# sourceMappingURL=report_preference.js.map
52787
52999
 
52788
53000
  /***/ }),
52789
- /* 346 */
53001
+ /* 348 */
52790
53002
  /***/ (function(module, exports, __webpack_require__) {
52791
53003
 
52792
53004
  "use strict";
@@ -52855,7 +53067,7 @@ var FILTER_TYPES;
52855
53067
  //# sourceMappingURL=reports.js.map
52856
53068
 
52857
53069
  /***/ }),
52858
- /* 347 */
53070
+ /* 349 */
52859
53071
  /***/ (function(module, exports, __webpack_require__) {
52860
53072
 
52861
53073
  "use strict";
@@ -52909,7 +53121,7 @@ var OFFLINE_ONLINE_EVENT_TYPES;
52909
53121
  //# sourceMappingURL=run.js.map
52910
53122
 
52911
53123
  /***/ }),
52912
- /* 348 */
53124
+ /* 350 */
52913
53125
  /***/ (function(module, exports, __webpack_require__) {
52914
53126
 
52915
53127
  "use strict";
@@ -52925,7 +53137,7 @@ var ScanType;
52925
53137
  //# sourceMappingURL=scan.js.map
52926
53138
 
52927
53139
  /***/ }),
52928
- /* 349 */
53140
+ /* 351 */
52929
53141
  /***/ (function(module, exports, __webpack_require__) {
52930
53142
 
52931
53143
  "use strict";
@@ -52934,7 +53146,7 @@ exports.__esModule = true;
52934
53146
  //# sourceMappingURL=serializer.js.map
52935
53147
 
52936
53148
  /***/ }),
52937
- /* 350 */
53149
+ /* 352 */
52938
53150
  /***/ (function(module, exports, __webpack_require__) {
52939
53151
 
52940
53152
  "use strict";
@@ -52943,7 +53155,7 @@ exports.__esModule = true;
52943
53155
  //# sourceMappingURL=service_area.js.map
52944
53156
 
52945
53157
  /***/ }),
52946
- /* 351 */
53158
+ /* 353 */
52947
53159
  /***/ (function(module, exports, __webpack_require__) {
52948
53160
 
52949
53161
  "use strict";
@@ -52952,7 +53164,7 @@ exports.__esModule = true;
52952
53164
  //# sourceMappingURL=service_event.js.map
52953
53165
 
52954
53166
  /***/ }),
52955
- /* 352 */
53167
+ /* 354 */
52956
53168
  /***/ (function(module, exports, __webpack_require__) {
52957
53169
 
52958
53170
  "use strict";
@@ -52961,7 +53173,7 @@ exports.__esModule = true;
52961
53173
  //# sourceMappingURL=service_plan.js.map
52962
53174
 
52963
53175
  /***/ }),
52964
- /* 353 */
53176
+ /* 355 */
52965
53177
  /***/ (function(module, exports, __webpack_require__) {
52966
53178
 
52967
53179
  "use strict";
@@ -52977,7 +53189,7 @@ var ServiceWindowType;
52977
53189
  //# sourceMappingURL=service_window.js.map
52978
53190
 
52979
53191
  /***/ }),
52980
- /* 354 */
53192
+ /* 356 */
52981
53193
  /***/ (function(module, exports, __webpack_require__) {
52982
53194
 
52983
53195
  "use strict";
@@ -53016,7 +53228,7 @@ var SharingMethod;
53016
53228
  //# sourceMappingURL=shared_location.js.map
53017
53229
 
53018
53230
  /***/ }),
53019
- /* 355 */
53231
+ /* 357 */
53020
53232
  /***/ (function(module, exports, __webpack_require__) {
53021
53233
 
53022
53234
  "use strict";
@@ -53039,7 +53251,7 @@ var ShiftRule;
53039
53251
  //# sourceMappingURL=shift.js.map
53040
53252
 
53041
53253
  /***/ }),
53042
- /* 356 */
53254
+ /* 358 */
53043
53255
  /***/ (function(module, exports, __webpack_require__) {
53044
53256
 
53045
53257
  "use strict";
@@ -53048,7 +53260,7 @@ exports.__esModule = true;
53048
53260
  //# sourceMappingURL=skill.js.map
53049
53261
 
53050
53262
  /***/ }),
53051
- /* 357 */
53263
+ /* 359 */
53052
53264
  /***/ (function(module, exports, __webpack_require__) {
53053
53265
 
53054
53266
  "use strict";
@@ -53057,7 +53269,7 @@ exports.__esModule = true;
53057
53269
  //# sourceMappingURL=sms_data.js.map
53058
53270
 
53059
53271
  /***/ }),
53060
- /* 358 */
53272
+ /* 360 */
53061
53273
  /***/ (function(module, exports, __webpack_require__) {
53062
53274
 
53063
53275
  "use strict";
@@ -53074,7 +53286,7 @@ var NumberType;
53074
53286
  //# sourceMappingURL=sms_number.js.map
53075
53287
 
53076
53288
  /***/ }),
53077
- /* 359 */
53289
+ /* 361 */
53078
53290
  /***/ (function(module, exports, __webpack_require__) {
53079
53291
 
53080
53292
  "use strict";
@@ -53083,7 +53295,7 @@ exports.__esModule = true;
53083
53295
  //# sourceMappingURL=sms_setting.js.map
53084
53296
 
53085
53297
  /***/ }),
53086
- /* 360 */
53298
+ /* 362 */
53087
53299
  /***/ (function(module, exports, __webpack_require__) {
53088
53300
 
53089
53301
  "use strict";
@@ -53092,7 +53304,7 @@ exports.__esModule = true;
53092
53304
  //# sourceMappingURL=tag.js.map
53093
53305
 
53094
53306
  /***/ }),
53095
- /* 361 */
53307
+ /* 363 */
53096
53308
  /***/ (function(module, exports, __webpack_require__) {
53097
53309
 
53098
53310
  "use strict";
@@ -53101,7 +53313,7 @@ exports.__esModule = true;
53101
53313
  //# sourceMappingURL=tag_customer_configuration.js.map
53102
53314
 
53103
53315
  /***/ }),
53104
- /* 362 */
53316
+ /* 364 */
53105
53317
  /***/ (function(module, exports, __webpack_require__) {
53106
53318
 
53107
53319
  "use strict";
@@ -53110,7 +53322,7 @@ exports.__esModule = true;
53110
53322
  //# sourceMappingURL=tag_merchant_configuration.js.map
53111
53323
 
53112
53324
  /***/ }),
53113
- /* 363 */
53325
+ /* 365 */
53114
53326
  /***/ (function(module, exports, __webpack_require__) {
53115
53327
 
53116
53328
  "use strict";
@@ -53119,7 +53331,7 @@ exports.__esModule = true;
53119
53331
  //# sourceMappingURL=tag_rules_configuration.js.map
53120
53332
 
53121
53333
  /***/ }),
53122
- /* 364 */
53334
+ /* 366 */
53123
53335
  /***/ (function(module, exports, __webpack_require__) {
53124
53336
 
53125
53337
  "use strict";
@@ -53267,7 +53479,7 @@ var Association;
53267
53479
  //# sourceMappingURL=task.js.map
53268
53480
 
53269
53481
  /***/ }),
53270
- /* 365 */
53482
+ /* 367 */
53271
53483
  /***/ (function(module, exports, __webpack_require__) {
53272
53484
 
53273
53485
  "use strict";
@@ -53288,7 +53500,7 @@ var AutoScheduleType;
53288
53500
  //# sourceMappingURL=task_configuration.js.map
53289
53501
 
53290
53502
  /***/ }),
53291
- /* 366 */
53503
+ /* 368 */
53292
53504
  /***/ (function(module, exports, __webpack_require__) {
53293
53505
 
53294
53506
  "use strict";
@@ -53297,7 +53509,7 @@ exports.__esModule = true;
53297
53509
  //# sourceMappingURL=task_payment_history.js.map
53298
53510
 
53299
53511
  /***/ }),
53300
- /* 367 */
53512
+ /* 369 */
53301
53513
  /***/ (function(module, exports, __webpack_require__) {
53302
53514
 
53303
53515
  "use strict";
@@ -53311,7 +53523,7 @@ var TaskServiceType;
53311
53523
  //# sourceMappingURL=task_service.js.map
53312
53524
 
53313
53525
  /***/ }),
53314
- /* 368 */
53526
+ /* 370 */
53315
53527
  /***/ (function(module, exports, __webpack_require__) {
53316
53528
 
53317
53529
  "use strict";
@@ -53320,7 +53532,7 @@ exports.__esModule = true;
53320
53532
  //# sourceMappingURL=team_configuration.js.map
53321
53533
 
53322
53534
  /***/ }),
53323
- /* 369 */
53535
+ /* 371 */
53324
53536
  /***/ (function(module, exports, __webpack_require__) {
53325
53537
 
53326
53538
  "use strict";
@@ -53329,7 +53541,7 @@ exports.__esModule = true;
53329
53541
  //# sourceMappingURL=teams.js.map
53330
53542
 
53331
53543
  /***/ }),
53332
- /* 370 */
53544
+ /* 372 */
53333
53545
  /***/ (function(module, exports, __webpack_require__) {
53334
53546
 
53335
53547
  "use strict";
@@ -53338,7 +53550,7 @@ exports.__esModule = true;
53338
53550
  //# sourceMappingURL=team_service_zip_codes.js.map
53339
53551
 
53340
53552
  /***/ }),
53341
- /* 371 */
53553
+ /* 373 */
53342
53554
  /***/ (function(module, exports, __webpack_require__) {
53343
53555
 
53344
53556
  "use strict";
@@ -53347,7 +53559,7 @@ exports.__esModule = true;
53347
53559
  //# sourceMappingURL=user_configuration.js.map
53348
53560
 
53349
53561
  /***/ }),
53350
- /* 372 */
53562
+ /* 374 */
53351
53563
  /***/ (function(module, exports, __webpack_require__) {
53352
53564
 
53353
53565
  "use strict";
@@ -53356,7 +53568,7 @@ exports.__esModule = true;
53356
53568
  //# sourceMappingURL=user_types.js.map
53357
53569
 
53358
53570
  /***/ }),
53359
- /* 373 */
53571
+ /* 375 */
53360
53572
  /***/ (function(module, exports, __webpack_require__) {
53361
53573
 
53362
53574
  "use strict";
@@ -53377,7 +53589,7 @@ var DisputeReason;
53377
53589
  //# sourceMappingURL=dispute.js.map
53378
53590
 
53379
53591
  /***/ }),
53380
- /* 374 */
53592
+ /* 376 */
53381
53593
  /***/ (function(module, exports, __webpack_require__) {
53382
53594
 
53383
53595
  "use strict";
@@ -53414,7 +53626,7 @@ var UserStatus;
53414
53626
  //# sourceMappingURL=users.js.map
53415
53627
 
53416
53628
  /***/ }),
53417
- /* 375 */
53629
+ /* 377 */
53418
53630
  /***/ (function(module, exports, __webpack_require__) {
53419
53631
 
53420
53632
  "use strict";
@@ -53423,7 +53635,7 @@ exports.__esModule = true;
53423
53635
  //# sourceMappingURL=vehicle.js.map
53424
53636
 
53425
53637
  /***/ }),
53426
- /* 376 */
53638
+ /* 378 */
53427
53639
  /***/ (function(module, exports, __webpack_require__) {
53428
53640
 
53429
53641
  "use strict";
@@ -53432,7 +53644,7 @@ exports.__esModule = true;
53432
53644
  //# sourceMappingURL=vehicle_type.js.map
53433
53645
 
53434
53646
  /***/ }),
53435
- /* 377 */
53647
+ /* 379 */
53436
53648
  /***/ (function(module, exports, __webpack_require__) {
53437
53649
 
53438
53650
  "use strict";
@@ -53441,7 +53653,7 @@ exports.__esModule = true;
53441
53653
  //# sourceMappingURL=web_application_configuration.js.map
53442
53654
 
53443
53655
  /***/ }),
53444
- /* 378 */
53656
+ /* 380 */
53445
53657
  /***/ (function(module, exports, __webpack_require__) {
53446
53658
 
53447
53659
  "use strict";
@@ -53450,7 +53662,7 @@ exports.__esModule = true;
53450
53662
  //# sourceMappingURL=webhooks.js.map
53451
53663
 
53452
53664
  /***/ }),
53453
- /* 379 */
53665
+ /* 381 */
53454
53666
  /***/ (function(module, exports, __webpack_require__) {
53455
53667
 
53456
53668
  "use strict";
@@ -53466,7 +53678,7 @@ var Plan;
53466
53678
  //# sourceMappingURL=webhooks_configuration.js.map
53467
53679
 
53468
53680
  /***/ }),
53469
- /* 380 */
53681
+ /* 382 */
53470
53682
  /***/ (function(module, exports, __webpack_require__) {
53471
53683
 
53472
53684
  "use strict";
@@ -53475,7 +53687,7 @@ exports.__esModule = true;
53475
53687
  //# sourceMappingURL=fleet_template.js.map
53476
53688
 
53477
53689
  /***/ }),
53478
- /* 381 */
53690
+ /* 383 */
53479
53691
  /***/ (function(module, exports, __webpack_require__) {
53480
53692
 
53481
53693
  "use strict";
@@ -53484,7 +53696,7 @@ exports.__esModule = true;
53484
53696
  //# sourceMappingURL=widget.js.map
53485
53697
 
53486
53698
  /***/ }),
53487
- /* 382 */
53699
+ /* 384 */
53488
53700
  /***/ (function(module, exports, __webpack_require__) {
53489
53701
 
53490
53702
  "use strict";
@@ -53493,7 +53705,7 @@ exports.__esModule = true;
53493
53705
  //# sourceMappingURL=windows.js.map
53494
53706
 
53495
53707
  /***/ }),
53496
- /* 383 */
53708
+ /* 385 */
53497
53709
  /***/ (function(module, exports, __webpack_require__) {
53498
53710
 
53499
53711
  "use strict";
@@ -53502,7 +53714,7 @@ exports.__esModule = true;
53502
53714
  //# sourceMappingURL=open_fleet.js.map
53503
53715
 
53504
53716
  /***/ }),
53505
- /* 384 */
53717
+ /* 386 */
53506
53718
  /***/ (function(module, exports, __webpack_require__) {
53507
53719
 
53508
53720
  "use strict";
@@ -53511,7 +53723,7 @@ exports.__esModule = true;
53511
53723
  //# sourceMappingURL=service.js.map
53512
53724
 
53513
53725
  /***/ }),
53514
- /* 385 */
53726
+ /* 387 */
53515
53727
  /***/ (function(module, exports, __webpack_require__) {
53516
53728
 
53517
53729
  "use strict";
@@ -53520,7 +53732,7 @@ exports.__esModule = true;
53520
53732
  //# sourceMappingURL=planned_delivery_window.js.map
53521
53733
 
53522
53734
  /***/ }),
53523
- /* 386 */
53735
+ /* 388 */
53524
53736
  /***/ (function(module, exports, __webpack_require__) {
53525
53737
 
53526
53738
  "use strict";
@@ -53529,7 +53741,7 @@ exports.__esModule = true;
53529
53741
  //# sourceMappingURL=user_realtime_data.js.map
53530
53742
 
53531
53743
  /***/ }),
53532
- /* 387 */
53744
+ /* 389 */
53533
53745
  /***/ (function(module, exports, __webpack_require__) {
53534
53746
 
53535
53747
  "use strict";
@@ -53547,7 +53759,7 @@ var OPTIMIZATION_TYPE;
53547
53759
  //# sourceMappingURL=optimization_type.js.map
53548
53760
 
53549
53761
  /***/ }),
53550
- /* 388 */
53762
+ /* 390 */
53551
53763
  /***/ (function(module, exports, __webpack_require__) {
53552
53764
 
53553
53765
  "use strict";
@@ -53563,7 +53775,7 @@ var CustomFilterOperator;
53563
53775
  //# sourceMappingURL=custom_filter.js.map
53564
53776
 
53565
53777
  /***/ }),
53566
- /* 389 */
53778
+ /* 391 */
53567
53779
  /***/ (function(module, exports, __webpack_require__) {
53568
53780
 
53569
53781
  "use strict";
@@ -53582,7 +53794,7 @@ var RequestOrigin;
53582
53794
  //# sourceMappingURL=request_origin.js.map
53583
53795
 
53584
53796
  /***/ }),
53585
- /* 390 */
53797
+ /* 392 */
53586
53798
  /***/ (function(module, exports, __webpack_require__) {
53587
53799
 
53588
53800
  "use strict";
@@ -53599,7 +53811,7 @@ var OWNERSHIP_ORIGIN;
53599
53811
  //# sourceMappingURL=floating_inventory.js.map
53600
53812
 
53601
53813
  /***/ }),
53602
- /* 391 */
53814
+ /* 393 */
53603
53815
  /***/ (function(module, exports, __webpack_require__) {
53604
53816
 
53605
53817
  "use strict";
@@ -53615,7 +53827,7 @@ var PreferredMethod;
53615
53827
  //# sourceMappingURL=fleet_router_rules.js.map
53616
53828
 
53617
53829
  /***/ }),
53618
- /* 392 */
53830
+ /* 394 */
53619
53831
  /***/ (function(module, exports, __webpack_require__) {
53620
53832
 
53621
53833
  "use strict";
@@ -53624,7 +53836,7 @@ exports.__esModule = true;
53624
53836
  //# sourceMappingURL=predicate.js.map
53625
53837
 
53626
53838
  /***/ }),
53627
- /* 393 */
53839
+ /* 395 */
53628
53840
  /***/ (function(module, exports, __webpack_require__) {
53629
53841
 
53630
53842
  "use strict";
@@ -53633,7 +53845,7 @@ exports.__esModule = true;
53633
53845
  //# sourceMappingURL=parking_spot.js.map
53634
53846
 
53635
53847
  /***/ }),
53636
- /* 394 */
53848
+ /* 396 */
53637
53849
  /***/ (function(module, exports, __webpack_require__) {
53638
53850
 
53639
53851
  "use strict";
@@ -53665,7 +53877,7 @@ var RuleRequestType;
53665
53877
  //# sourceMappingURL=rule_types.js.map
53666
53878
 
53667
53879
  /***/ }),
53668
- /* 395 */
53880
+ /* 397 */
53669
53881
  /***/ (function(module, exports, __webpack_require__) {
53670
53882
 
53671
53883
  "use strict";
@@ -53674,7 +53886,7 @@ exports.__esModule = true;
53674
53886
  //# sourceMappingURL=report.js.map
53675
53887
 
53676
53888
  /***/ }),
53677
- /* 396 */
53889
+ /* 398 */
53678
53890
  /***/ (function(module, exports, __webpack_require__) {
53679
53891
 
53680
53892
  "use strict";
@@ -54277,7 +54489,7 @@ exports.default = TaskEntity;
54277
54489
  //# sourceMappingURL=TaskEntity.js.map
54278
54490
 
54279
54491
  /***/ }),
54280
- /* 397 */
54492
+ /* 399 */
54281
54493
  /***/ (function(module, exports, __webpack_require__) {
54282
54494
 
54283
54495
  "use strict";
@@ -54319,7 +54531,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
54319
54531
  }
54320
54532
  };
54321
54533
  Object.defineProperty(exports, "__esModule", { value: true });
54322
- var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(398);
54534
+ var ApplicationMerchantConfigurationEntity_1 = __webpack_require__(400);
54323
54535
  var ApplicationMerchantConfigurationApi = /** @class */ (function () {
54324
54536
  function ApplicationMerchantConfigurationApi(session, merchantConfigurationApi) {
54325
54537
  this.entity = new ApplicationMerchantConfigurationEntity_1.default(session);
@@ -54438,7 +54650,7 @@ exports.default = ApplicationMerchantConfigurationApi;
54438
54650
  //# sourceMappingURL=ApplicationMerchantConfigurationApi.js.map
54439
54651
 
54440
54652
  /***/ }),
54441
- /* 398 */
54653
+ /* 400 */
54442
54654
  /***/ (function(module, exports, __webpack_require__) {
54443
54655
 
54444
54656
  "use strict";
@@ -54668,13 +54880,13 @@ exports.default = ApplicationMerchantConfigurationEntity;
54668
54880
  //# sourceMappingURL=ApplicationMerchantConfigurationEntity.js.map
54669
54881
 
54670
54882
  /***/ }),
54671
- /* 399 */
54883
+ /* 401 */
54672
54884
  /***/ (function(module, exports, __webpack_require__) {
54673
54885
 
54674
54886
  "use strict";
54675
54887
 
54676
54888
  Object.defineProperty(exports, "__esModule", { value: true });
54677
- var GoogleMapsHelper_1 = __webpack_require__(400);
54889
+ var GoogleMapsHelper_1 = __webpack_require__(402);
54678
54890
  var GoogleMapsHelperApi = /** @class */ (function () {
54679
54891
  function GoogleMapsHelperApi(session) {
54680
54892
  this.googleMapsHelperEntity = new GoogleMapsHelper_1.default(session);
@@ -54688,7 +54900,7 @@ exports.default = GoogleMapsHelperApi;
54688
54900
  //# sourceMappingURL=GoogleMapsHelperApi.js.map
54689
54901
 
54690
54902
  /***/ }),
54691
- /* 400 */
54903
+ /* 402 */
54692
54904
  /***/ (function(module, exports, __webpack_require__) {
54693
54905
 
54694
54906
  "use strict";
@@ -54769,7 +54981,7 @@ exports.default = GoogleMapsHelper;
54769
54981
  //# sourceMappingURL=GoogleMapsHelper.js.map
54770
54982
 
54771
54983
  /***/ }),
54772
- /* 401 */
54984
+ /* 403 */
54773
54985
  /***/ (function(module, exports, __webpack_require__) {
54774
54986
 
54775
54987
  "use strict";
@@ -54811,7 +55023,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
54811
55023
  }
54812
55024
  };
54813
55025
  Object.defineProperty(exports, "__esModule", { value: true });
54814
- var OnboardingEntity_1 = __webpack_require__(402);
55026
+ var OnboardingEntity_1 = __webpack_require__(404);
54815
55027
  var OnboardingApi = /** @class */ (function () {
54816
55028
  function OnboardingApi(session) {
54817
55029
  this.onboardingEntity = new OnboardingEntity_1.default(session);
@@ -54836,7 +55048,7 @@ exports.default = OnboardingApi;
54836
55048
  //# sourceMappingURL=OnboardingApi.js.map
54837
55049
 
54838
55050
  /***/ }),
54839
- /* 402 */
55051
+ /* 404 */
54840
55052
  /***/ (function(module, exports, __webpack_require__) {
54841
55053
 
54842
55054
  "use strict";
@@ -54869,13 +55081,13 @@ exports.default = OnboardingEntity;
54869
55081
  //# sourceMappingURL=OnboardingEntity.js.map
54870
55082
 
54871
55083
  /***/ }),
54872
- /* 403 */
55084
+ /* 405 */
54873
55085
  /***/ (function(module, exports, __webpack_require__) {
54874
55086
 
54875
55087
  "use strict";
54876
55088
 
54877
55089
  Object.defineProperty(exports, "__esModule", { value: true });
54878
- var FleetRouterEntity_1 = __webpack_require__(404);
55090
+ var FleetRouterEntity_1 = __webpack_require__(406);
54879
55091
  var FleetRouterApi = /** @class */ (function () {
54880
55092
  function FleetRouterApi(session) {
54881
55093
  this.fleetRouterEntity = new FleetRouterEntity_1.default(session);
@@ -54901,7 +55113,7 @@ exports.default = FleetRouterApi;
54901
55113
  //# sourceMappingURL=FleetRouterApi.js.map
54902
55114
 
54903
55115
  /***/ }),
54904
- /* 404 */
55116
+ /* 406 */
54905
55117
  /***/ (function(module, exports, __webpack_require__) {
54906
55118
 
54907
55119
  "use strict";
@@ -54940,7 +55152,7 @@ exports.default = FleetRouterEntity;
54940
55152
  //# sourceMappingURL=FleetRouterEntity.js.map
54941
55153
 
54942
55154
  /***/ }),
54943
- /* 405 */
55155
+ /* 407 */
54944
55156
  /***/ (function(module, exports, __webpack_require__) {
54945
55157
 
54946
55158
  "use strict";
@@ -54982,7 +55194,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
54982
55194
  }
54983
55195
  };
54984
55196
  Object.defineProperty(exports, "__esModule", { value: true });
54985
- var ServiceEntity_1 = __webpack_require__(406);
55197
+ var ServiceEntity_1 = __webpack_require__(408);
54986
55198
  var ServiceApi = /** @class */ (function () {
54987
55199
  function ServiceApi(session) {
54988
55200
  this.entity = new ServiceEntity_1.default(session);
@@ -55003,7 +55215,7 @@ exports.default = ServiceApi;
55003
55215
  //# sourceMappingURL=ServiceApi.js.map
55004
55216
 
55005
55217
  /***/ }),
55006
- /* 406 */
55218
+ /* 408 */
55007
55219
  /***/ (function(module, exports, __webpack_require__) {
55008
55220
 
55009
55221
  "use strict";
@@ -55086,7 +55298,7 @@ exports.default = ServiceEntity;
55086
55298
  //# sourceMappingURL=ServiceEntity.js.map
55087
55299
 
55088
55300
  /***/ }),
55089
- /* 407 */
55301
+ /* 409 */
55090
55302
  /***/ (function(module, exports, __webpack_require__) {
55091
55303
 
55092
55304
  "use strict";
@@ -55128,7 +55340,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
55128
55340
  }
55129
55341
  };
55130
55342
  Object.defineProperty(exports, "__esModule", { value: true });
55131
- var FleetTemplateEntity_1 = __webpack_require__(408);
55343
+ var FleetTemplateEntity_1 = __webpack_require__(410);
55132
55344
  var FleetTemplateApi = /** @class */ (function () {
55133
55345
  function FleetTemplateApi(session) {
55134
55346
  this.entity = new FleetTemplateEntity_1.default(session);
@@ -55156,7 +55368,7 @@ exports.default = FleetTemplateApi;
55156
55368
  //# sourceMappingURL=FleetTemplateApi.js.map
55157
55369
 
55158
55370
  /***/ }),
55159
- /* 408 */
55371
+ /* 410 */
55160
55372
  /***/ (function(module, exports, __webpack_require__) {
55161
55373
 
55162
55374
  "use strict";
@@ -55257,7 +55469,7 @@ exports.fleetTemplatesExtractor = fleetTemplatesExtractor;
55257
55469
  //# sourceMappingURL=FleetTemplateEntity.js.map
55258
55470
 
55259
55471
  /***/ }),
55260
- /* 409 */
55472
+ /* 411 */
55261
55473
  /***/ (function(module, exports, __webpack_require__) {
55262
55474
 
55263
55475
  "use strict";
@@ -55299,7 +55511,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
55299
55511
  }
55300
55512
  };
55301
55513
  Object.defineProperty(exports, "__esModule", { value: true });
55302
- var OpenFleetEntity_1 = __webpack_require__(410);
55514
+ var OpenFleetEntity_1 = __webpack_require__(412);
55303
55515
  var OpenFleetApi = /** @class */ (function () {
55304
55516
  function OpenFleetApi(session) {
55305
55517
  this.entity = new OpenFleetEntity_1.default(session);
@@ -55366,7 +55578,7 @@ exports.default = OpenFleetApi;
55366
55578
  //# sourceMappingURL=OpenFleetApi.js.map
55367
55579
 
55368
55580
  /***/ }),
55369
- /* 410 */
55581
+ /* 412 */
55370
55582
  /***/ (function(module, exports, __webpack_require__) {
55371
55583
 
55372
55584
  "use strict";
@@ -55514,13 +55726,13 @@ exports.default = OpenFleetEntity;
55514
55726
  //# sourceMappingURL=OpenFleetEntity.js.map
55515
55727
 
55516
55728
  /***/ }),
55517
- /* 411 */
55729
+ /* 413 */
55518
55730
  /***/ (function(module, exports, __webpack_require__) {
55519
55731
 
55520
55732
  "use strict";
55521
55733
 
55522
55734
  Object.defineProperty(exports, "__esModule", { value: true });
55523
- var Geocoding_1 = __webpack_require__(412);
55735
+ var Geocoding_1 = __webpack_require__(414);
55524
55736
  var GeocodingApi = /** @class */ (function () {
55525
55737
  function GeocodingApi(session) {
55526
55738
  this.geocodingEntity = new Geocoding_1.default(session);
@@ -55537,7 +55749,7 @@ exports.default = GeocodingApi;
55537
55749
  //# sourceMappingURL=GeocodingApi.js.map
55538
55750
 
55539
55751
  /***/ }),
55540
- /* 412 */
55752
+ /* 414 */
55541
55753
  /***/ (function(module, exports, __webpack_require__) {
55542
55754
 
55543
55755
  "use strict";
@@ -55638,7 +55850,7 @@ exports.default = GeocodingEntity;
55638
55850
  //# sourceMappingURL=Geocoding.js.map
55639
55851
 
55640
55852
  /***/ }),
55641
- /* 413 */
55853
+ /* 415 */
55642
55854
  /***/ (function(module, exports, __webpack_require__) {
55643
55855
 
55644
55856
  "use strict";
@@ -55680,7 +55892,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
55680
55892
  }
55681
55893
  };
55682
55894
  Object.defineProperty(exports, "__esModule", { value: true });
55683
- var ApplicationEntity_1 = __webpack_require__(414);
55895
+ var ApplicationEntity_1 = __webpack_require__(416);
55684
55896
  var ApplicationApi = /** @class */ (function () {
55685
55897
  function ApplicationApi(session) {
55686
55898
  this.entity = new ApplicationEntity_1.default(session);
@@ -55701,7 +55913,7 @@ exports.default = ApplicationApi;
55701
55913
  //# sourceMappingURL=ApplicationApi.js.map
55702
55914
 
55703
55915
  /***/ }),
55704
- /* 414 */
55916
+ /* 416 */
55705
55917
  /***/ (function(module, exports, __webpack_require__) {
55706
55918
 
55707
55919
  "use strict";
@@ -55770,7 +55982,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
55770
55982
  };
55771
55983
  Object.defineProperty(exports, "__esModule", { value: true });
55772
55984
  var StoreEntity_1 = __webpack_require__(11);
55773
- var uuid_1 = __webpack_require__(450);
55985
+ var uuid_1 = __webpack_require__(452);
55774
55986
  var _ = __webpack_require__(10);
55775
55987
  var entityName = 'application_action';
55776
55988
  var ApplicationEntity = /** @class */ (function (_super) {
@@ -55864,7 +56076,7 @@ exports.default = ApplicationEntity;
55864
56076
  //# sourceMappingURL=ApplicationEntity.js.map
55865
56077
 
55866
56078
  /***/ }),
55867
- /* 415 */
56079
+ /* 417 */
55868
56080
  /***/ (function(module, exports, __webpack_require__) {
55869
56081
 
55870
56082
  "use strict";
@@ -55906,7 +56118,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
55906
56118
  }
55907
56119
  };
55908
56120
  Object.defineProperty(exports, "__esModule", { value: true });
55909
- var CustomerAvailabilityHourEntity_1 = __webpack_require__(416);
56121
+ var CustomerAvailabilityHourEntity_1 = __webpack_require__(418);
55910
56122
  var CustomerAvailabilityHourApi = /** @class */ (function () {
55911
56123
  function CustomerAvailabilityHourApi(session) {
55912
56124
  this.customerAvailabilityHourEntity = new CustomerAvailabilityHourEntity_1.default(session);
@@ -55924,7 +56136,7 @@ exports.default = CustomerAvailabilityHourApi;
55924
56136
  //# sourceMappingURL=CustomerAvailabilityHourApi.js.map
55925
56137
 
55926
56138
  /***/ }),
55927
- /* 416 */
56139
+ /* 418 */
55928
56140
  /***/ (function(module, exports, __webpack_require__) {
55929
56141
 
55930
56142
  "use strict";
@@ -56035,13 +56247,13 @@ exports.default = CustomerAvailabilityHourEntity;
56035
56247
  //# sourceMappingURL=CustomerAvailabilityHourEntity.js.map
56036
56248
 
56037
56249
  /***/ }),
56038
- /* 417 */
56250
+ /* 419 */
56039
56251
  /***/ (function(module, exports, __webpack_require__) {
56040
56252
 
56041
56253
  "use strict";
56042
56254
 
56043
56255
  Object.defineProperty(exports, "__esModule", { value: true });
56044
- var Shifts_1 = __webpack_require__(418);
56256
+ var Shifts_1 = __webpack_require__(420);
56045
56257
  var ShiftsApi = /** @class */ (function () {
56046
56258
  function ShiftsApi(session) {
56047
56259
  this.shiftsEntity = new Shifts_1.default(session);
@@ -56064,7 +56276,7 @@ exports.default = ShiftsApi;
56064
56276
  //# sourceMappingURL=ShiftsApi.js.map
56065
56277
 
56066
56278
  /***/ }),
56067
- /* 418 */
56279
+ /* 420 */
56068
56280
  /***/ (function(module, exports, __webpack_require__) {
56069
56281
 
56070
56282
  "use strict";
@@ -56179,7 +56391,7 @@ exports.default = ShiftsEntity;
56179
56391
  //# sourceMappingURL=Shifts.js.map
56180
56392
 
56181
56393
  /***/ }),
56182
- /* 419 */
56394
+ /* 421 */
56183
56395
  /***/ (function(module, exports, __webpack_require__) {
56184
56396
 
56185
56397
  "use strict";
@@ -56221,7 +56433,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
56221
56433
  }
56222
56434
  };
56223
56435
  Object.defineProperty(exports, "__esModule", { value: true });
56224
- var ExclusionWindowEntity_1 = __webpack_require__(420);
56436
+ var ExclusionWindowEntity_1 = __webpack_require__(422);
56225
56437
  var ExclusionWindowApi = /** @class */ (function () {
56226
56438
  function ExclusionWindowApi(session) {
56227
56439
  this.exclusionWindowEntity = new ExclusionWindowEntity_1.default(session);
@@ -56267,7 +56479,7 @@ exports.default = ExclusionWindowApi;
56267
56479
  //# sourceMappingURL=ExclusionWindowApi.js.map
56268
56480
 
56269
56481
  /***/ }),
56270
- /* 420 */
56482
+ /* 422 */
56271
56483
  /***/ (function(module, exports, __webpack_require__) {
56272
56484
 
56273
56485
  "use strict";
@@ -56357,7 +56569,7 @@ exports.default = ExclusionWindowEntity;
56357
56569
  //# sourceMappingURL=ExclusionWindowEntity.js.map
56358
56570
 
56359
56571
  /***/ }),
56360
- /* 421 */
56572
+ /* 423 */
56361
56573
  /***/ (function(module, exports, __webpack_require__) {
56362
56574
 
56363
56575
  "use strict";
@@ -56393,7 +56605,7 @@ exports.default = Country;
56393
56605
  //# sourceMappingURL=Country.js.map
56394
56606
 
56395
56607
  /***/ }),
56396
- /* 422 */
56608
+ /* 424 */
56397
56609
  /***/ (function(module, exports, __webpack_require__) {
56398
56610
 
56399
56611
  "use strict";
@@ -56435,7 +56647,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
56435
56647
  }
56436
56648
  };
56437
56649
  Object.defineProperty(exports, "__esModule", { value: true });
56438
- var OauthApplicationEntity_1 = __webpack_require__(423);
56650
+ var OauthApplicationEntity_1 = __webpack_require__(425);
56439
56651
  var OauthApplicationApi = /** @class */ (function () {
56440
56652
  function OauthApplicationApi(session) {
56441
56653
  this.entity = new OauthApplicationEntity_1.default(session);
@@ -56495,7 +56707,7 @@ exports.default = OauthApplicationApi;
56495
56707
  //# sourceMappingURL=OauthApplicationApi.js.map
56496
56708
 
56497
56709
  /***/ }),
56498
- /* 423 */
56710
+ /* 425 */
56499
56711
  /***/ (function(module, exports, __webpack_require__) {
56500
56712
 
56501
56713
  "use strict";
@@ -56612,13 +56824,13 @@ exports.default = OauthApplicationEntity;
56612
56824
  //# sourceMappingURL=OauthApplicationEntity.js.map
56613
56825
 
56614
56826
  /***/ }),
56615
- /* 424 */
56827
+ /* 426 */
56616
56828
  /***/ (function(module, exports, __webpack_require__) {
56617
56829
 
56618
56830
  "use strict";
56619
56831
 
56620
56832
  Object.defineProperty(exports, "__esModule", { value: true });
56621
- var InventoryEntity_1 = __webpack_require__(425);
56833
+ var InventoryEntity_1 = __webpack_require__(427);
56622
56834
  var Inventory = /** @class */ (function () {
56623
56835
  function Inventory(session) {
56624
56836
  this.inventory = new InventoryEntity_1.default(session);
@@ -56641,7 +56853,7 @@ exports.default = Inventory;
56641
56853
  //# sourceMappingURL=Inventory.js.map
56642
56854
 
56643
56855
  /***/ }),
56644
- /* 425 */
56856
+ /* 427 */
56645
56857
  /***/ (function(module, exports, __webpack_require__) {
56646
56858
 
56647
56859
  "use strict";
@@ -56678,7 +56890,7 @@ exports.default = InventoryEntity;
56678
56890
  //# sourceMappingURL=InventoryEntity.js.map
56679
56891
 
56680
56892
  /***/ }),
56681
- /* 426 */
56893
+ /* 428 */
56682
56894
  /***/ (function(module, exports, __webpack_require__) {
56683
56895
 
56684
56896
  "use strict";
@@ -56720,7 +56932,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
56720
56932
  }
56721
56933
  };
56722
56934
  Object.defineProperty(exports, "__esModule", { value: true });
56723
- var PushNotificationRegistrationEntity_1 = __webpack_require__(427);
56935
+ var PushNotificationRegistrationEntity_1 = __webpack_require__(429);
56724
56936
  var PushNotificationRegistration = /** @class */ (function () {
56725
56937
  function PushNotificationRegistration(session) {
56726
56938
  this.pushNotificationRegistrationEntity = new PushNotificationRegistrationEntity_1.default(session);
@@ -56745,7 +56957,7 @@ exports.default = PushNotificationRegistration;
56745
56957
  //# sourceMappingURL=PushNotificationRegistration.js.map
56746
56958
 
56747
56959
  /***/ }),
56748
- /* 427 */
56960
+ /* 429 */
56749
56961
  /***/ (function(module, exports, __webpack_require__) {
56750
56962
 
56751
56963
  "use strict";
@@ -56778,7 +56990,7 @@ exports.default = PushNotificationRegistrationEntity;
56778
56990
  //# sourceMappingURL=PushNotificationRegistrationEntity.js.map
56779
56991
 
56780
56992
  /***/ }),
56781
- /* 428 */
56993
+ /* 430 */
56782
56994
  /***/ (function(module, exports, __webpack_require__) {
56783
56995
 
56784
56996
  "use strict";
@@ -56820,7 +57032,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
56820
57032
  }
56821
57033
  };
56822
57034
  Object.defineProperty(exports, "__esModule", { value: true });
56823
- var ReasonToCancelTasksEntity_1 = __webpack_require__(429);
57035
+ var ReasonToCancelTasksEntity_1 = __webpack_require__(431);
56824
57036
  var ReasonToCancelTasks = /** @class */ (function () {
56825
57037
  function ReasonToCancelTasks(session) {
56826
57038
  this.reasonToCancelTasksEntity = new ReasonToCancelTasksEntity_1.default(session);
@@ -56841,7 +57053,7 @@ exports.default = ReasonToCancelTasks;
56841
57053
  //# sourceMappingURL=ReasonToCancelTasksApi.js.map
56842
57054
 
56843
57055
  /***/ }),
56844
- /* 429 */
57056
+ /* 431 */
56845
57057
  /***/ (function(module, exports, __webpack_require__) {
56846
57058
 
56847
57059
  "use strict";
@@ -56889,7 +57101,7 @@ exports.default = ReasonToCancelTasksEntity;
56889
57101
  //# sourceMappingURL=ReasonToCancelTasksEntity.js.map
56890
57102
 
56891
57103
  /***/ }),
56892
- /* 430 */
57104
+ /* 432 */
56893
57105
  /***/ (function(module, exports, __webpack_require__) {
56894
57106
 
56895
57107
  "use strict";
@@ -56931,7 +57143,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
56931
57143
  }
56932
57144
  };
56933
57145
  Object.defineProperty(exports, "__esModule", { value: true });
56934
- var CustomFilterEntity_1 = __webpack_require__(431);
57146
+ var CustomFilterEntity_1 = __webpack_require__(433);
56935
57147
  var CustomFilterApi = /** @class */ (function () {
56936
57148
  function CustomFilterApi(session) {
56937
57149
  this.customFilterEntity = new CustomFilterEntity_1.default(session);
@@ -56970,7 +57182,7 @@ exports.default = CustomFilterApi;
56970
57182
  //# sourceMappingURL=CustomFilterApi.js.map
56971
57183
 
56972
57184
  /***/ }),
56973
- /* 431 */
57185
+ /* 433 */
56974
57186
  /***/ (function(module, exports, __webpack_require__) {
56975
57187
 
56976
57188
  "use strict";
@@ -57008,13 +57220,13 @@ exports.default = CustomFilterEntity;
57008
57220
  //# sourceMappingURL=CustomFilterEntity.js.map
57009
57221
 
57010
57222
  /***/ }),
57011
- /* 432 */
57223
+ /* 434 */
57012
57224
  /***/ (function(module, exports, __webpack_require__) {
57013
57225
 
57014
57226
  "use strict";
57015
57227
 
57016
57228
  Object.defineProperty(exports, "__esModule", { value: true });
57017
- var FloatingInventoryEntity_1 = __webpack_require__(433);
57229
+ var FloatingInventoryEntity_1 = __webpack_require__(435);
57018
57230
  var FloatingInventory = /** @class */ (function () {
57019
57231
  function FloatingInventory(session) {
57020
57232
  this.floatingInventory = new FloatingInventoryEntity_1.default(session);
@@ -57028,7 +57240,7 @@ exports.default = FloatingInventory;
57028
57240
  //# sourceMappingURL=FloatingInventoryApi.js.map
57029
57241
 
57030
57242
  /***/ }),
57031
- /* 433 */
57243
+ /* 435 */
57032
57244
  /***/ (function(module, exports, __webpack_require__) {
57033
57245
 
57034
57246
  "use strict";
@@ -57050,7 +57262,7 @@ var __extends = (this && this.__extends) || (function () {
57050
57262
  })();
57051
57263
  Object.defineProperty(exports, "__esModule", { value: true });
57052
57264
  var Entity_1 = __webpack_require__(5);
57053
- var FloatingInventory_consts_1 = __webpack_require__(434);
57265
+ var FloatingInventory_consts_1 = __webpack_require__(436);
57054
57266
  var BASE_ROUTE = 'floating_inventories';
57055
57267
  var USERS_WITH_AVAILABLE_FLOATING_INVENTORY = "/" + BASE_ROUTE + "/users_with_available_floating_inventory";
57056
57268
  var FloatingInventoryEntity = /** @class */ (function (_super) {
@@ -57075,7 +57287,7 @@ exports.default = FloatingInventoryEntity;
57075
57287
  //# sourceMappingURL=FloatingInventoryEntity.js.map
57076
57288
 
57077
57289
  /***/ }),
57078
- /* 434 */
57290
+ /* 436 */
57079
57291
  /***/ (function(module, exports, __webpack_require__) {
57080
57292
 
57081
57293
  "use strict";
@@ -57087,13 +57299,13 @@ exports.userIdsExtractor = userIdsExtractor;
57087
57299
  //# sourceMappingURL=FloatingInventory.consts.js.map
57088
57300
 
57089
57301
  /***/ }),
57090
- /* 435 */
57302
+ /* 437 */
57091
57303
  /***/ (function(module, exports, __webpack_require__) {
57092
57304
 
57093
57305
  "use strict";
57094
57306
 
57095
57307
  Object.defineProperty(exports, "__esModule", { value: true });
57096
- var ServiceAreaEntity_1 = __webpack_require__(436);
57308
+ var ServiceAreaEntity_1 = __webpack_require__(438);
57097
57309
  var ServiceAreaApi = /** @class */ (function () {
57098
57310
  function ServiceAreaApi(session) {
57099
57311
  this.serviceAreaEntity = new ServiceAreaEntity_1.default(session);
@@ -57122,7 +57334,7 @@ exports.default = ServiceAreaApi;
57122
57334
  //# sourceMappingURL=ServiceAreaApi.js.map
57123
57335
 
57124
57336
  /***/ }),
57125
- /* 436 */
57337
+ /* 438 */
57126
57338
  /***/ (function(module, exports, __webpack_require__) {
57127
57339
 
57128
57340
  "use strict";
@@ -57172,13 +57384,13 @@ exports.default = ServiceAreaEntity;
57172
57384
  //# sourceMappingURL=ServiceAreaEntity.js.map
57173
57385
 
57174
57386
  /***/ }),
57175
- /* 437 */
57387
+ /* 439 */
57176
57388
  /***/ (function(module, exports, __webpack_require__) {
57177
57389
 
57178
57390
  "use strict";
57179
57391
 
57180
57392
  Object.defineProperty(exports, "__esModule", { value: true });
57181
- var BillingEntity_1 = __webpack_require__(438);
57393
+ var BillingEntity_1 = __webpack_require__(440);
57182
57394
  var BillingApi = /** @class */ (function () {
57183
57395
  function BillingApi(session) {
57184
57396
  this.billingEntity = new BillingEntity_1.default(session);
@@ -57231,7 +57443,7 @@ exports.default = BillingApi;
57231
57443
  //# sourceMappingURL=BillingApi.js.map
57232
57444
 
57233
57445
  /***/ }),
57234
- /* 438 */
57446
+ /* 440 */
57235
57447
  /***/ (function(module, exports, __webpack_require__) {
57236
57448
 
57237
57449
  "use strict";
@@ -57508,13 +57720,13 @@ exports.default = BillingEntity;
57508
57720
  //# sourceMappingURL=BillingEntity.js.map
57509
57721
 
57510
57722
  /***/ }),
57511
- /* 439 */
57723
+ /* 441 */
57512
57724
  /***/ (function(module, exports, __webpack_require__) {
57513
57725
 
57514
57726
  "use strict";
57515
57727
 
57516
57728
  Object.defineProperty(exports, "__esModule", { value: true });
57517
- const pendo_1 = __webpack_require__(440);
57729
+ const pendo_1 = __webpack_require__(442);
57518
57730
  class AnalyticsApi {
57519
57731
  constructor() {
57520
57732
  this.provider = new pendo_1.PendoProvider();
@@ -57534,7 +57746,7 @@ exports.default = AnalyticsApi;
57534
57746
  //# sourceMappingURL=index.js.map
57535
57747
 
57536
57748
  /***/ }),
57537
- /* 440 */
57749
+ /* 442 */
57538
57750
  /***/ (function(module, exports, __webpack_require__) {
57539
57751
 
57540
57752
  "use strict";
@@ -57576,13 +57788,13 @@ exports.PendoProvider = PendoProvider;
57576
57788
  //# sourceMappingURL=pendo.js.map
57577
57789
 
57578
57790
  /***/ }),
57579
- /* 441 */
57791
+ /* 443 */
57580
57792
  /***/ (function(module, exports, __webpack_require__) {
57581
57793
 
57582
57794
  "use strict";
57583
57795
 
57584
57796
  Object.defineProperty(exports, "__esModule", { value: true });
57585
- var AnalyticsRepotsEntity_1 = __webpack_require__(442);
57797
+ var AnalyticsRepotsEntity_1 = __webpack_require__(444);
57586
57798
  var AnalyticsReportsApi = /** @class */ (function () {
57587
57799
  function AnalyticsReportsApi(session) {
57588
57800
  this.analyticsReportsEntity = new AnalyticsRepotsEntity_1.default(session);
@@ -57599,7 +57811,7 @@ exports.default = AnalyticsReportsApi;
57599
57811
  //# sourceMappingURL=AnalyticsReportsApi.js.map
57600
57812
 
57601
57813
  /***/ }),
57602
- /* 442 */
57814
+ /* 444 */
57603
57815
  /***/ (function(module, exports, __webpack_require__) {
57604
57816
 
57605
57817
  "use strict";
@@ -57706,7 +57918,7 @@ exports.default = AnalyticsReportsEntity;
57706
57918
  //# sourceMappingURL=AnalyticsRepotsEntity.js.map
57707
57919
 
57708
57920
  /***/ }),
57709
- /* 443 */
57921
+ /* 445 */
57710
57922
  /***/ (function(module, exports, __webpack_require__) {
57711
57923
 
57712
57924
  "use strict";
@@ -57715,7 +57927,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
57715
57927
  //# sourceMappingURL=VehicleType.consts.js.map
57716
57928
 
57717
57929
  /***/ }),
57718
- /* 444 */
57930
+ /* 446 */
57719
57931
  /***/ (function(module, exports, __webpack_require__) {
57720
57932
 
57721
57933
  "use strict";
@@ -57724,7 +57936,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
57724
57936
  //# sourceMappingURL=PlannedRoutes.consts.js.map
57725
57937
 
57726
57938
  /***/ }),
57727
- /* 445 */
57939
+ /* 447 */
57728
57940
  /***/ (function(module, exports, __webpack_require__) {
57729
57941
 
57730
57942
  "use strict";
@@ -57733,7 +57945,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
57733
57945
  //# sourceMappingURL=Crew.consts.js.map
57734
57946
 
57735
57947
  /***/ }),
57736
- /* 446 */
57948
+ /* 448 */
57737
57949
  /***/ (function(module, exports, __webpack_require__) {
57738
57950
 
57739
57951
  "use strict";
@@ -57742,7 +57954,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
57742
57954
  //# sourceMappingURL=Responses.js.map
57743
57955
 
57744
57956
  /***/ }),
57745
- /* 447 */
57957
+ /* 449 */
57746
57958
  /***/ (function(module, exports, __webpack_require__) {
57747
57959
 
57748
57960
  "use strict";
@@ -57754,7 +57966,7 @@ exports.defaultExtractor = defaultExtractor;
57754
57966
  //# sourceMappingURL=Tag.consts.js.map
57755
57967
 
57756
57968
  /***/ }),
57757
- /* 448 */
57969
+ /* 450 */
57758
57970
  /***/ (function(module, exports, __webpack_require__) {
57759
57971
 
57760
57972
  "use strict";
@@ -57763,7 +57975,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
57763
57975
  //# sourceMappingURL=DeliveryBlocks.consts.js.map
57764
57976
 
57765
57977
  /***/ }),
57766
- /* 449 */
57978
+ /* 451 */
57767
57979
  /***/ (function(module, exports, __webpack_require__) {
57768
57980
 
57769
57981
  "use strict";
@@ -57777,7 +57989,7 @@ exports.default = ResourceUploadType;
57777
57989
  //# sourceMappingURL=ResourceUploadType.js.map
57778
57990
 
57779
57991
  /***/ }),
57780
- /* 450 */
57992
+ /* 452 */
57781
57993
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
57782
57994
 
57783
57995
  "use strict";