@bringg/dashboard-sdk 9.85.0 → 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 (27) 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/bringg-dashboard-sdk-cjs2.js +237 -10
  23. package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
  24. package/dist/bringg-dashboard-sdk.js +67 -12
  25. package/dist/bringg-dashboard-sdk.min.js +1 -1
  26. package/dist/bringg-dashboard-sdk.min.js.map +1 -1
  27. 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
 
@@ -24173,7 +24349,7 @@ var lodash_1 = __webpack_require__(96486);
24173
24349
  var BringgException_1 = __webpack_require__(43605);
24174
24350
  var Logger_1 = __importDefault(__webpack_require__(55860));
24175
24351
  var abort_1 = __webpack_require__(34179);
24176
- var version = '9.85.0';
24352
+ var version = '9.86.0';
24177
24353
  function logErrorResponse(response) {
24178
24354
  var data = response.data, status = response.status;
24179
24355
  try {
@@ -39414,6 +39590,22 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
39414
39590
 
39415
39591
  /***/ }),
39416
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
+
39417
39609
  /***/ 76797:
39418
39610
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
39419
39611
 
@@ -39436,6 +39628,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
39436
39628
  Object.defineProperty(exports, "__esModule", ({ value: true }));
39437
39629
  __exportStar(__webpack_require__(67823), exports);
39438
39630
  __exportStar(__webpack_require__(56381), exports);
39631
+ __exportStar(__webpack_require__(77857), exports);
39439
39632
  //# sourceMappingURL=index.js.map
39440
39633
 
39441
39634
  /***/ }),
@@ -40442,8 +40635,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
40442
40635
  "use strict";
40443
40636
 
40444
40637
  Object.defineProperty(exports, "__esModule", ({ value: true }));
40445
- exports.TaskTimePredictionApplicationFieldName = exports.ApplicationUuid = exports.DELIVERY_WINDOW_CAPACITY_ACTIVATED = void 0;
40446
- exports.DELIVERY_WINDOW_CAPACITY_ACTIVATED = 'deliveryWindowCapacityActivated';
40638
+ exports.TaskTimePredictionApplicationFieldName = exports.ApplicationUuid = void 0;
40447
40639
  var ApplicationUuid;
40448
40640
  (function (ApplicationUuid) {
40449
40641
  ApplicationUuid["AutoAssign"] = "7083ab3d-c7de-40fd-83bb-f2c10bd0fa88";
@@ -40471,6 +40663,7 @@ var ApplicationUuid;
40471
40663
  ApplicationUuid["DetectDriverOffRoute"] = "dd2ad97a-ffee-11e5-86aa-5e5517507c66";
40472
40664
  ApplicationUuid["DHL"] = "ec424a40-a9b9-11e6-80f5-76304dec7eb7";
40473
40665
  ApplicationUuid["DispatcherNotifier"] = "f574941d-fd43-4c4e-bd85-9b4107e569f3";
40666
+ ApplicationUuid["DocumentsApp"] = "33ef15a7-7d1b-4eec-b45f-a631ede1bb4f";
40474
40667
  ApplicationUuid["DriverActivityVerifier"] = "f68bae82-dac7-411c-a772-792226bc8ea4";
40475
40668
  ApplicationUuid["DriverPayments"] = "88260a80-c003-4d66-bf81-5f15443286ed";
40476
40669
  ApplicationUuid["ETA"] = "9369f5d4-57d8-4806-b2c9-fcc6f4e51531";
@@ -40706,6 +40899,34 @@ var CapacityPlanningInsightFeedbackReason;
40706
40899
 
40707
40900
  /***/ }),
40708
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
+
40709
40930
  /***/ 6533:
40710
40931
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
40711
40932
 
@@ -40729,6 +40950,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
40729
40950
  __exportStar(__webpack_require__(57465), exports);
40730
40951
  __exportStar(__webpack_require__(48711), exports);
40731
40952
  __exportStar(__webpack_require__(3201), exports);
40953
+ __exportStar(__webpack_require__(93182), exports);
40732
40954
  __exportStar(__webpack_require__(10870), exports);
40733
40955
  //# sourceMappingURL=index.js.map
40734
40956
 
@@ -41992,6 +42214,7 @@ var EventType;
41992
42214
  EventType["ApplicationTeamConfigurationUpdated"] = "application_team_configuration:updated";
41993
42215
  EventType["ApplicationTeamConfigurationRemoved"] = "application_team_configuration:removed";
41994
42216
  EventType["VehicleUpdated"] = "vehicle:update";
42217
+ EventType["DocumentsReady"] = "documents_ready";
41995
42218
  })(EventType || (exports.EventType = EventType = {}));
41996
42219
  var AvailabilityCalculationOrigin;
41997
42220
  (function (AvailabilityCalculationOrigin) {
@@ -44258,6 +44481,7 @@ var NoteType;
44258
44481
  NoteType["Signature"] = "Signature";
44259
44482
  NoteType["Document"] = "Document";
44260
44483
  NoteType["DeliveryReceipt"] = "DeliveryReceipt";
44484
+ NoteType["DeliveryReport"] = "DeliveryReport";
44261
44485
  })(NoteType || (exports.NoteType = NoteType = {}));
44262
44486
  var CarrierSelectorType;
44263
44487
  (function (CarrierSelectorType) {
@@ -44691,6 +44915,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
44691
44915
  "use strict";
44692
44916
 
44693
44917
  Object.defineProperty(exports, "__esModule", ({ value: true }));
44918
+ exports.AVAILABILITY_ACTIVATED = void 0;
44919
+ exports.AVAILABILITY_ACTIVATED = 'availability_activated';
44694
44920
  //# sourceMappingURL=teams.js.map
44695
44921
 
44696
44922
  /***/ }),
@@ -44742,6 +44968,7 @@ var TemplateRpcActions;
44742
44968
  TemplateRpcActions["GENERATE_LABEL"] = "generate:package_label";
44743
44969
  TemplateRpcActions["GET_TEMPLATE_DISPLAY_TYPE"] = "get:template_display_type";
44744
44970
  TemplateRpcActions["RENDER_PRINT_ORDER"] = "render:print_order";
44971
+ TemplateRpcActions["RENDER_PRINT_ORDER_PDF"] = "render:print_order_pdf";
44745
44972
  })(TemplateRpcActions || (exports.TemplateRpcActions = TemplateRpcActions = {}));
44746
44973
  //# sourceMappingURL=templates.js.map
44747
44974
 
@@ -113650,7 +113877,7 @@ const util_js_1 = __webpack_require__(89622);
113650
113877
  const parseqs_js_1 = __webpack_require__(75754);
113651
113878
  const parseuri_js_1 = __webpack_require__(75222);
113652
113879
  const component_emitter_1 = __webpack_require__(95260);
113653
- const engine_io_parser_1 = __webpack_require__(77857);
113880
+ const engine_io_parser_1 = __webpack_require__(64076);
113654
113881
  const globals_node_js_1 = __webpack_require__(15010);
113655
113882
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
113656
113883
  const debug = (0, debug_1.default)("engine.io-client:socket"); // debug()
@@ -114418,7 +114645,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
114418
114645
  };
114419
114646
  Object.defineProperty(exports, "__esModule", ({ value: true }));
114420
114647
  exports.Transport = exports.TransportError = void 0;
114421
- const engine_io_parser_1 = __webpack_require__(77857);
114648
+ const engine_io_parser_1 = __webpack_require__(64076);
114422
114649
  const component_emitter_1 = __webpack_require__(95260);
114423
114650
  const util_js_1 = __webpack_require__(89622);
114424
114651
  const parseqs_js_1 = __webpack_require__(75754);
@@ -114961,7 +115188,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
114961
115188
  exports.Polling = void 0;
114962
115189
  const transport_js_1 = __webpack_require__(29870);
114963
115190
  const util_js_1 = __webpack_require__(89622);
114964
- const engine_io_parser_1 = __webpack_require__(77857);
115191
+ const engine_io_parser_1 = __webpack_require__(64076);
114965
115192
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
114966
115193
  const debug = (0, debug_1.default)("engine.io-client:polling"); // debug()
114967
115194
  class Polling extends transport_js_1.Transport {
@@ -115134,7 +115361,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
115134
115361
  exports.WS = exports.BaseWS = void 0;
115135
115362
  const transport_js_1 = __webpack_require__(29870);
115136
115363
  const util_js_1 = __webpack_require__(89622);
115137
- const engine_io_parser_1 = __webpack_require__(77857);
115364
+ const engine_io_parser_1 = __webpack_require__(64076);
115138
115365
  const globals_node_js_1 = __webpack_require__(15010);
115139
115366
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
115140
115367
  const debug = (0, debug_1.default)("engine.io-client:websocket"); // debug()
@@ -115278,7 +115505,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
115278
115505
  exports.WT = void 0;
115279
115506
  const transport_js_1 = __webpack_require__(29870);
115280
115507
  const globals_node_js_1 = __webpack_require__(15010);
115281
- const engine_io_parser_1 = __webpack_require__(77857);
115508
+ const engine_io_parser_1 = __webpack_require__(64076);
115282
115509
  const debug_1 = __importDefault(__webpack_require__(14802)); // debug()
115283
115510
  const debug = (0, debug_1.default)("engine.io-client:webtransport"); // debug()
115284
115511
  /**
@@ -115678,7 +115905,7 @@ function encodePacketToBinary(packet, callback) {
115678
115905
 
115679
115906
  /***/ }),
115680
115907
 
115681
- /***/ 77857:
115908
+ /***/ 64076:
115682
115909
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
115683
115910
 
115684
115911
  "use strict";