@bringg/dashboard-sdk 9.83.1 → 9.86.0

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.
Files changed (30) hide show
  1. package/dist/BringgDashboardSDK.d.ts +2 -0
  2. package/dist/BringgDashboardSDK.js +2 -0
  3. package/dist/BringgDashboardSDK.js.map +1 -1
  4. package/dist/CapacityPlanningInsights/CapacityInsights.consts.d.ts +1 -0
  5. package/dist/CapacityPlanningInsights/CapacityInsights.consts.js +2 -1
  6. package/dist/CapacityPlanningInsights/CapacityInsights.consts.js.map +1 -1
  7. package/dist/CapacityPlanningInsights/CapacityInsightsApi.d.ts +2 -1
  8. package/dist/CapacityPlanningInsights/CapacityInsightsApi.js +7 -0
  9. package/dist/CapacityPlanningInsights/CapacityInsightsApi.js.map +1 -1
  10. package/dist/CapacityPlanningInsights/Entity/CapacityInsightsEntity.d.ts +2 -1
  11. package/dist/CapacityPlanningInsights/Entity/CapacityInsightsEntity.js +13 -0
  12. package/dist/CapacityPlanningInsights/Entity/CapacityInsightsEntity.js.map +1 -1
  13. package/dist/ForceScheduling/ForceScheduling.consts.d.ts +8 -0
  14. package/dist/ForceScheduling/ForceScheduling.consts.js +8 -0
  15. package/dist/ForceScheduling/ForceScheduling.consts.js.map +1 -0
  16. package/dist/ForceScheduling/ForceSchedulingApi.d.ts +12 -0
  17. package/dist/ForceScheduling/ForceSchedulingApi.js +61 -0
  18. package/dist/ForceScheduling/ForceSchedulingApi.js.map +1 -0
  19. package/dist/ForceScheduling/Service/ForceScheduling.service.d.ts +8 -0
  20. package/dist/ForceScheduling/Service/ForceScheduling.service.js +63 -0
  21. package/dist/ForceScheduling/Service/ForceScheduling.service.js.map +1 -0
  22. package/dist/RouteOptimization/RouteOptimizationApi.d.ts +8 -0
  23. package/dist/RouteOptimization/RouteOptimizationApi.js +15 -0
  24. package/dist/RouteOptimization/RouteOptimizationApi.js.map +1 -1
  25. package/dist/bringg-dashboard-sdk-cjs2.js +252 -10
  26. package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
  27. package/dist/bringg-dashboard-sdk.js +68 -13
  28. package/dist/bringg-dashboard-sdk.min.js +1 -1
  29. package/dist/bringg-dashboard-sdk.min.js.map +1 -1
  30. package/package.json +2 -2
@@ -2835,6 +2835,7 @@ var FleetRouterApi_1 = __importDefault(__webpack_require__(13696));
2835
2835
  var FleetTemplateApi_1 = __importDefault(__webpack_require__(73102));
2836
2836
  var FloatingInventoryApi_1 = __importDefault(__webpack_require__(36242));
2837
2837
  var floating_inventories_api_1 = __webpack_require__(66122);
2838
+ var ForceSchedulingApi_1 = __importDefault(__webpack_require__(87632));
2838
2839
  var GeocodingApi_1 = __importDefault(__webpack_require__(87206));
2839
2840
  var GoogleMapsHelperApi_1 = __importDefault(__webpack_require__(37828));
2840
2841
  var Inventory_1 = __importDefault(__webpack_require__(74033));
@@ -3234,6 +3235,7 @@ function init(session) {
3234
3235
  floatingInventories: new floating_inventories_api_1.FloatingInventoriesApi(session),
3235
3236
  deliveryWindows: new delivery_windows_api_1.default(session),
3236
3237
  taskManagedAttributes: new TaskManagedAttributes_1.TaskManagedAttributesApi(session),
3238
+ forceScheduling: new ForceSchedulingApi_1.default(session),
3237
3239
  chat: new Chat_1.default(session),
3238
3240
  optimizationKpi: new OptimizationKpiApi_1.default(session),
3239
3241
  tasksExplorer: new tasks_explorer_api_1.default(session),
@@ -3514,7 +3516,8 @@ exports.Routes = {
3514
3516
  UPDATE_INSIGHT_DONE: "".concat(SERVICE_PREFIX, "/{:insightId}/done"),
3515
3517
  SUBMIT_INSIGHT_FEEDBACK: "".concat(SERVICE_PREFIX, "/{:insightId}/feedback"),
3516
3518
  QUERY_INSIGHT_FEEDBACKS: "".concat(SERVICE_PREFIX, "/feedback/query"),
3517
- DELETE_INSIGHT_FEEDBACK: "".concat(SERVICE_PREFIX, "/{:insightId}/feedback")
3519
+ DELETE_INSIGHT_FEEDBACK: "".concat(SERVICE_PREFIX, "/{:insightId}/feedback"),
3520
+ APPLY_RECOMMENDATION: "".concat(SERVICE_PREFIX, "/{:insightId}/recommendations/{:recommendationId}/apply")
3518
3521
  };
3519
3522
  //# sourceMappingURL=CapacityInsights.consts.js.map
3520
3523
 
@@ -3708,6 +3711,13 @@ var CapacityInsightsApi = /** @class */ (function () {
3708
3711
  });
3709
3712
  });
3710
3713
  };
3714
+ CapacityInsightsApi.prototype.applyRecommendation = function (insightId, recommendationId) {
3715
+ return __awaiter(this, void 0, void 0, function () {
3716
+ return __generator(this, function (_a) {
3717
+ return [2 /*return*/, this.capacityInsightsEntity.applyRecommendation(insightId, recommendationId)];
3718
+ });
3719
+ });
3720
+ };
3711
3721
  return CapacityInsightsApi;
3712
3722
  }());
3713
3723
  exports["default"] = CapacityInsightsApi;
@@ -3870,6 +3880,19 @@ var CapacityInsightsEntity = /** @class */ (function (_super) {
3870
3880
  });
3871
3881
  });
3872
3882
  };
3883
+ CapacityInsightsEntity.prototype.applyRecommendation = function (insightId, recommendationId) {
3884
+ return __awaiter(this, void 0, void 0, function () {
3885
+ return __generator(this, function (_a) {
3886
+ return [2 /*return*/, this.service.routeGenerator
3887
+ .post(CapacityInsights_consts_1.Routes.APPLY_RECOMMENDATION)
3888
+ .withRouteParams({
3889
+ insightId: insightId,
3890
+ recommendationId: recommendationId
3891
+ })
3892
+ .invoke()];
3893
+ });
3894
+ });
3895
+ };
3873
3896
  return CapacityInsightsEntity;
3874
3897
  }(Entity_1.default));
3875
3898
  exports["default"] = CapacityInsightsEntity;
@@ -11769,6 +11792,159 @@ exports.userIdsExtractor = userIdsExtractor;
11769
11792
 
11770
11793
  /***/ }),
11771
11794
 
11795
+ /***/ 77891:
11796
+ /***/ ((__unused_webpack_module, exports) => {
11797
+
11798
+ "use strict";
11799
+
11800
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
11801
+ exports.Routes = exports.baseRoute = void 0;
11802
+ exports.baseRoute = '/task-service/force-scheduling';
11803
+ exports.Routes = {
11804
+ SET_DRIVER: "".concat(exports.baseRoute, "/set-driver")
11805
+ };
11806
+ //# sourceMappingURL=ForceScheduling.consts.js.map
11807
+
11808
+ /***/ }),
11809
+
11810
+ /***/ 87632:
11811
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
11812
+
11813
+ "use strict";
11814
+
11815
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
11816
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
11817
+ return new (P || (P = Promise))(function (resolve, reject) {
11818
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
11819
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
11820
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
11821
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
11822
+ });
11823
+ };
11824
+ var __generator = (this && this.__generator) || function (thisArg, body) {
11825
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
11826
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
11827
+ function verb(n) { return function (v) { return step([n, v]); }; }
11828
+ function step(op) {
11829
+ if (f) throw new TypeError("Generator is already executing.");
11830
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
11831
+ 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;
11832
+ if (y = 0, t) op = [op[0] & 2, t.value];
11833
+ switch (op[0]) {
11834
+ case 0: case 1: t = op; break;
11835
+ case 4: _.label++; return { value: op[1], done: false };
11836
+ case 5: _.label++; y = op[1]; op = [0]; continue;
11837
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
11838
+ default:
11839
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
11840
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
11841
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
11842
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
11843
+ if (t[2]) _.ops.pop();
11844
+ _.trys.pop(); continue;
11845
+ }
11846
+ op = body.call(thisArg, _);
11847
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
11848
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
11849
+ }
11850
+ };
11851
+ var __importDefault = (this && this.__importDefault) || function (mod) {
11852
+ return (mod && mod.__esModule) ? mod : { "default": mod };
11853
+ };
11854
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
11855
+ var ForceScheduling_service_1 = __importDefault(__webpack_require__(53002));
11856
+ var ForceSchedulingApi = /** @class */ (function () {
11857
+ function ForceSchedulingApi(session) {
11858
+ this.forceSchedulingService = new ForceScheduling_service_1.default(session);
11859
+ }
11860
+ /**
11861
+ * Sets or removes (driver_id: null) the forced driver for a single task. Linked orders are
11862
+ * handled server-side - task-service writes or deletes both legs.
11863
+ */
11864
+ ForceSchedulingApi.prototype.setDriver = function (request) {
11865
+ return __awaiter(this, void 0, void 0, function () {
11866
+ return __generator(this, function (_a) {
11867
+ return [2 /*return*/, this.forceSchedulingService.setDriver(request)];
11868
+ });
11869
+ });
11870
+ };
11871
+ return ForceSchedulingApi;
11872
+ }());
11873
+ exports["default"] = ForceSchedulingApi;
11874
+ //# sourceMappingURL=ForceSchedulingApi.js.map
11875
+
11876
+ /***/ }),
11877
+
11878
+ /***/ 53002:
11879
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
11880
+
11881
+ "use strict";
11882
+
11883
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
11884
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
11885
+ return new (P || (P = Promise))(function (resolve, reject) {
11886
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
11887
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
11888
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
11889
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
11890
+ });
11891
+ };
11892
+ var __generator = (this && this.__generator) || function (thisArg, body) {
11893
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
11894
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
11895
+ function verb(n) { return function (v) { return step([n, v]); }; }
11896
+ function step(op) {
11897
+ if (f) throw new TypeError("Generator is already executing.");
11898
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
11899
+ 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;
11900
+ if (y = 0, t) op = [op[0] & 2, t.value];
11901
+ switch (op[0]) {
11902
+ case 0: case 1: t = op; break;
11903
+ case 4: _.label++; return { value: op[1], done: false };
11904
+ case 5: _.label++; y = op[1]; op = [0]; continue;
11905
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
11906
+ default:
11907
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
11908
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
11909
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
11910
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
11911
+ if (t[2]) _.ops.pop();
11912
+ _.trys.pop(); continue;
11913
+ }
11914
+ op = body.call(thisArg, _);
11915
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
11916
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
11917
+ }
11918
+ };
11919
+ var __importDefault = (this && this.__importDefault) || function (mod) {
11920
+ return (mod && mod.__esModule) ? mod : { "default": mod };
11921
+ };
11922
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
11923
+ var CrudService_1 = __importDefault(__webpack_require__(14809));
11924
+ var ForceScheduling_consts_1 = __webpack_require__(77891);
11925
+ var ForceSchedulingService = /** @class */ (function () {
11926
+ function ForceSchedulingService(session) {
11927
+ this.service = new CrudService_1.default(session, 'force-scheduling', 'task-service');
11928
+ }
11929
+ ForceSchedulingService.prototype.setDriver = function (request, commonOptions) {
11930
+ return __awaiter(this, void 0, void 0, function () {
11931
+ return __generator(this, function (_a) {
11932
+ return [2 /*return*/, this.service.routeGenerator
11933
+ .post(ForceScheduling_consts_1.Routes.SET_DRIVER)
11934
+ .withPayload(request)
11935
+ .setException("failed to set forced driver for task ".concat(request.task_id))
11936
+ .withCommonOptions(commonOptions)
11937
+ .invoke()];
11938
+ });
11939
+ });
11940
+ };
11941
+ return ForceSchedulingService;
11942
+ }());
11943
+ exports["default"] = ForceSchedulingService;
11944
+ //# sourceMappingURL=ForceScheduling.service.js.map
11945
+
11946
+ /***/ }),
11947
+
11772
11948
  /***/ 84431:
11773
11949
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
11774
11950
 
@@ -20237,6 +20413,10 @@ var RouteOptimizationApi = /** @class */ (function () {
20237
20413
  this.assign_users_by_ids_in_background_process = new Route_1.Route('/own-fleet-optimization-service/route_optimization/assign_users_by_ids', 1 /* HttpMethod.POST */);
20238
20414
  this.update_user_modified_data = new Route_1.Route('/own-fleet-optimization-service/route_optimization/update_user_modified_data', 1 /* HttpMethod.POST */);
20239
20415
  this.assign_user_manual_optimization = new Route_1.Route('/route_optimizations/assign_user_manual_optimization', 1 /* HttpMethod.POST */);
20416
+ /**
20417
+ * Will replace `assign_user_manual_optimization` above once every merchant is on the async path.
20418
+ */
20419
+ this.assign_user_manual_optimization_in_background = new Route_1.Route('/own-fleet-optimization-service/route_optimization/assign_user_manual_optimization', 1 /* HttpMethod.POST */);
20240
20420
  this.service = new CrudService_1.default(session, '');
20241
20421
  }
20242
20422
  RouteOptimizationApi.prototype.cancelRequests = function (requestUuids) {
@@ -20291,6 +20471,17 @@ var RouteOptimizationApi = /** @class */ (function () {
20291
20471
  timeout: fiveMinutesInMs
20292
20472
  });
20293
20473
  };
20474
+ /**
20475
+ * Apply manual Route Planner changes asynchronously.
20476
+ */
20477
+ RouteOptimizationApi.prototype.assignUserManualOptimizationInBackground = function (updateData) {
20478
+ return this.service.handleAuthorizedRequest({
20479
+ route: this.assign_user_manual_optimization_in_background,
20480
+ extractor: RouteGenerator_1.defaultExtractor,
20481
+ exceptionProducer: BringgException_1.BringgException.serviceException('Failed to assign user manual optimization data in background'),
20482
+ payload: __assign({}, updateData)
20483
+ });
20484
+ };
20294
20485
  RouteOptimizationApi.prototype.calculatePlannedEta = function (data, _a) {
20295
20486
  if (_a === void 0) { _a = {}; }
20296
20487
  var _b = _a.timeout, timeout = _b === void 0 ? 10000 : _b, options = __rest(_a, ["timeout"]);
@@ -24158,7 +24349,7 @@ var lodash_1 = __webpack_require__(96486);
24158
24349
  var BringgException_1 = __webpack_require__(43605);
24159
24350
  var Logger_1 = __importDefault(__webpack_require__(55860));
24160
24351
  var abort_1 = __webpack_require__(34179);
24161
- var version = '9.83.1';
24352
+ var version = '9.86.0';
24162
24353
  function logErrorResponse(response) {
24163
24354
  var data = response.data, status = response.status;
24164
24355
  try {
@@ -39399,6 +39590,22 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
39399
39590
 
39400
39591
  /***/ }),
39401
39592
 
39593
+ /***/ 77857:
39594
+ /***/ ((__unused_webpack_module, exports) => {
39595
+
39596
+ "use strict";
39597
+
39598
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
39599
+ exports.AnalystEmailRecipientType = void 0;
39600
+ var AnalystEmailRecipientType;
39601
+ (function (AnalystEmailRecipientType) {
39602
+ AnalystEmailRecipientType["User"] = "user";
39603
+ AnalystEmailRecipientType["ExternalEmail"] = "external_email";
39604
+ })(AnalystEmailRecipientType || (exports.AnalystEmailRecipientType = AnalystEmailRecipientType = {}));
39605
+ //# sourceMappingURL=analyst_settings.js.map
39606
+
39607
+ /***/ }),
39608
+
39402
39609
  /***/ 76797:
39403
39610
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
39404
39611
 
@@ -39421,6 +39628,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
39421
39628
  Object.defineProperty(exports, "__esModule", ({ value: true }));
39422
39629
  __exportStar(__webpack_require__(67823), exports);
39423
39630
  __exportStar(__webpack_require__(56381), exports);
39631
+ __exportStar(__webpack_require__(77857), exports);
39424
39632
  //# sourceMappingURL=index.js.map
39425
39633
 
39426
39634
  /***/ }),
@@ -40427,8 +40635,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
40427
40635
  "use strict";
40428
40636
 
40429
40637
  Object.defineProperty(exports, "__esModule", ({ value: true }));
40430
- exports.TaskTimePredictionApplicationFieldName = exports.ApplicationUuid = exports.DELIVERY_WINDOW_CAPACITY_ACTIVATED = void 0;
40431
- exports.DELIVERY_WINDOW_CAPACITY_ACTIVATED = 'deliveryWindowCapacityActivated';
40638
+ exports.TaskTimePredictionApplicationFieldName = exports.ApplicationUuid = void 0;
40432
40639
  var ApplicationUuid;
40433
40640
  (function (ApplicationUuid) {
40434
40641
  ApplicationUuid["AutoAssign"] = "7083ab3d-c7de-40fd-83bb-f2c10bd0fa88";
@@ -40456,6 +40663,7 @@ var ApplicationUuid;
40456
40663
  ApplicationUuid["DetectDriverOffRoute"] = "dd2ad97a-ffee-11e5-86aa-5e5517507c66";
40457
40664
  ApplicationUuid["DHL"] = "ec424a40-a9b9-11e6-80f5-76304dec7eb7";
40458
40665
  ApplicationUuid["DispatcherNotifier"] = "f574941d-fd43-4c4e-bd85-9b4107e569f3";
40666
+ ApplicationUuid["DocumentsApp"] = "33ef15a7-7d1b-4eec-b45f-a631ede1bb4f";
40459
40667
  ApplicationUuid["DriverActivityVerifier"] = "f68bae82-dac7-411c-a772-792226bc8ea4";
40460
40668
  ApplicationUuid["DriverPayments"] = "88260a80-c003-4d66-bf81-5f15443286ed";
40461
40669
  ApplicationUuid["ETA"] = "9369f5d4-57d8-4806-b2c9-fcc6f4e51531";
@@ -40691,6 +40899,34 @@ var CapacityPlanningInsightFeedbackReason;
40691
40899
 
40692
40900
  /***/ }),
40693
40901
 
40902
+ /***/ 93182:
40903
+ /***/ ((__unused_webpack_module, exports) => {
40904
+
40905
+ "use strict";
40906
+
40907
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
40908
+ exports.CapacityPlanningRecommendationStatus = exports.CapacityPlanningRecommendationApplyMode = exports.CapacityPlanningRecommendationType = void 0;
40909
+ var CapacityPlanningRecommendationType;
40910
+ (function (CapacityPlanningRecommendationType) {
40911
+ CapacityPlanningRecommendationType[CapacityPlanningRecommendationType["EXTEND_DELIVERY_BLOCK"] = 0] = "EXTEND_DELIVERY_BLOCK";
40912
+ })(CapacityPlanningRecommendationType || (exports.CapacityPlanningRecommendationType = CapacityPlanningRecommendationType = {}));
40913
+ var CapacityPlanningRecommendationApplyMode;
40914
+ (function (CapacityPlanningRecommendationApplyMode) {
40915
+ CapacityPlanningRecommendationApplyMode[CapacityPlanningRecommendationApplyMode["AUTO"] = 0] = "AUTO";
40916
+ CapacityPlanningRecommendationApplyMode[CapacityPlanningRecommendationApplyMode["MANUAL"] = 1] = "MANUAL";
40917
+ })(CapacityPlanningRecommendationApplyMode || (exports.CapacityPlanningRecommendationApplyMode = CapacityPlanningRecommendationApplyMode = {}));
40918
+ var CapacityPlanningRecommendationStatus;
40919
+ (function (CapacityPlanningRecommendationStatus) {
40920
+ CapacityPlanningRecommendationStatus[CapacityPlanningRecommendationStatus["PENDING"] = 0] = "PENDING";
40921
+ CapacityPlanningRecommendationStatus[CapacityPlanningRecommendationStatus["QUEUED"] = 1] = "QUEUED";
40922
+ CapacityPlanningRecommendationStatus[CapacityPlanningRecommendationStatus["APPLYING"] = 2] = "APPLYING";
40923
+ CapacityPlanningRecommendationStatus[CapacityPlanningRecommendationStatus["APPLIED"] = 3] = "APPLIED";
40924
+ CapacityPlanningRecommendationStatus[CapacityPlanningRecommendationStatus["FAILED"] = 4] = "FAILED";
40925
+ })(CapacityPlanningRecommendationStatus || (exports.CapacityPlanningRecommendationStatus = CapacityPlanningRecommendationStatus = {}));
40926
+ //# sourceMappingURL=capacity_planning_insight_recommendation.js.map
40927
+
40928
+ /***/ }),
40929
+
40694
40930
  /***/ 6533:
40695
40931
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
40696
40932
 
@@ -40714,6 +40950,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
40714
40950
  __exportStar(__webpack_require__(57465), exports);
40715
40951
  __exportStar(__webpack_require__(48711), exports);
40716
40952
  __exportStar(__webpack_require__(3201), exports);
40953
+ __exportStar(__webpack_require__(93182), exports);
40717
40954
  __exportStar(__webpack_require__(10870), exports);
40718
40955
  //# sourceMappingURL=index.js.map
40719
40956
 
@@ -41977,6 +42214,7 @@ var EventType;
41977
42214
  EventType["ApplicationTeamConfigurationUpdated"] = "application_team_configuration:updated";
41978
42215
  EventType["ApplicationTeamConfigurationRemoved"] = "application_team_configuration:removed";
41979
42216
  EventType["VehicleUpdated"] = "vehicle:update";
42217
+ EventType["DocumentsReady"] = "documents_ready";
41980
42218
  })(EventType || (exports.EventType = EventType = {}));
41981
42219
  var AvailabilityCalculationOrigin;
41982
42220
  (function (AvailabilityCalculationOrigin) {
@@ -44243,6 +44481,7 @@ var NoteType;
44243
44481
  NoteType["Signature"] = "Signature";
44244
44482
  NoteType["Document"] = "Document";
44245
44483
  NoteType["DeliveryReceipt"] = "DeliveryReceipt";
44484
+ NoteType["DeliveryReport"] = "DeliveryReport";
44246
44485
  })(NoteType || (exports.NoteType = NoteType = {}));
44247
44486
  var CarrierSelectorType;
44248
44487
  (function (CarrierSelectorType) {
@@ -44676,6 +44915,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
44676
44915
  "use strict";
44677
44916
 
44678
44917
  Object.defineProperty(exports, "__esModule", ({ value: true }));
44918
+ exports.AVAILABILITY_ACTIVATED = void 0;
44919
+ exports.AVAILABILITY_ACTIVATED = 'availability_activated';
44679
44920
  //# sourceMappingURL=teams.js.map
44680
44921
 
44681
44922
  /***/ }),
@@ -44727,6 +44968,7 @@ var TemplateRpcActions;
44727
44968
  TemplateRpcActions["GENERATE_LABEL"] = "generate:package_label";
44728
44969
  TemplateRpcActions["GET_TEMPLATE_DISPLAY_TYPE"] = "get:template_display_type";
44729
44970
  TemplateRpcActions["RENDER_PRINT_ORDER"] = "render:print_order";
44971
+ TemplateRpcActions["RENDER_PRINT_ORDER_PDF"] = "render:print_order_pdf";
44730
44972
  })(TemplateRpcActions || (exports.TemplateRpcActions = TemplateRpcActions = {}));
44731
44973
  //# sourceMappingURL=templates.js.map
44732
44974
 
@@ -113635,7 +113877,7 @@ const util_js_1 = __webpack_require__(89622);
113635
113877
  const parseqs_js_1 = __webpack_require__(75754);
113636
113878
  const parseuri_js_1 = __webpack_require__(75222);
113637
113879
  const component_emitter_1 = __webpack_require__(95260);
113638
- const engine_io_parser_1 = __webpack_require__(77857);
113880
+ const engine_io_parser_1 = __webpack_require__(64076);
113639
113881
  const globals_node_js_1 = __webpack_require__(15010);
113640
113882
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
113641
113883
  const debug = (0, debug_1.default)("engine.io-client:socket"); // debug()
@@ -114403,7 +114645,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
114403
114645
  };
114404
114646
  Object.defineProperty(exports, "__esModule", ({ value: true }));
114405
114647
  exports.Transport = exports.TransportError = void 0;
114406
- const engine_io_parser_1 = __webpack_require__(77857);
114648
+ const engine_io_parser_1 = __webpack_require__(64076);
114407
114649
  const component_emitter_1 = __webpack_require__(95260);
114408
114650
  const util_js_1 = __webpack_require__(89622);
114409
114651
  const parseqs_js_1 = __webpack_require__(75754);
@@ -114946,7 +115188,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
114946
115188
  exports.Polling = void 0;
114947
115189
  const transport_js_1 = __webpack_require__(29870);
114948
115190
  const util_js_1 = __webpack_require__(89622);
114949
- const engine_io_parser_1 = __webpack_require__(77857);
115191
+ const engine_io_parser_1 = __webpack_require__(64076);
114950
115192
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
114951
115193
  const debug = (0, debug_1.default)("engine.io-client:polling"); // debug()
114952
115194
  class Polling extends transport_js_1.Transport {
@@ -115119,7 +115361,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
115119
115361
  exports.WS = exports.BaseWS = void 0;
115120
115362
  const transport_js_1 = __webpack_require__(29870);
115121
115363
  const util_js_1 = __webpack_require__(89622);
115122
- const engine_io_parser_1 = __webpack_require__(77857);
115364
+ const engine_io_parser_1 = __webpack_require__(64076);
115123
115365
  const globals_node_js_1 = __webpack_require__(15010);
115124
115366
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
115125
115367
  const debug = (0, debug_1.default)("engine.io-client:websocket"); // debug()
@@ -115263,7 +115505,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
115263
115505
  exports.WT = void 0;
115264
115506
  const transport_js_1 = __webpack_require__(29870);
115265
115507
  const globals_node_js_1 = __webpack_require__(15010);
115266
- const engine_io_parser_1 = __webpack_require__(77857);
115508
+ const engine_io_parser_1 = __webpack_require__(64076);
115267
115509
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
115268
115510
  const debug = (0, debug_1.default)("engine.io-client:webtransport"); // debug()
115269
115511
  /**
@@ -115663,7 +115905,7 @@ function encodePacketToBinary(packet, callback) {
115663
115905
 
115664
115906
  /***/ }),
115665
115907
 
115666
- /***/ 77857:
115908
+ /***/ 64076:
115667
115909
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
115668
115910
 
115669
115911
  "use strict";