@bringg/dashboard-sdk 8.15.0 → 8.16.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.
- package/dist/OptimizationResult/optimization-result-api.d.ts +2 -2
- package/dist/OptimizationResult/optimization-result-service.d.ts +2 -2
- package/dist/OptimizationResult/optimization-result-service.js +2 -2
- package/dist/OptimizationResult/optimization-result-service.js.map +1 -1
- package/dist/ResourceUpload/ResourceUploadApi.d.ts +3 -1
- package/dist/ResourceUpload/ResourceUploadApi.js +11 -2
- package/dist/ResourceUpload/ResourceUploadApi.js.map +1 -1
- package/dist/Services/ServiceRequest.js +1 -1
- package/dist/bringg-dashboard-sdk-cjs2.js +407 -386
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +180 -180
- package/dist/bringg-dashboard-sdk.min.js +1 -1
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/package.json +2 -2
|
@@ -14152,7 +14152,7 @@ var OptimizationResultService = /** @class */ (function () {
|
|
|
14152
14152
|
switch (_a.label) {
|
|
14153
14153
|
case 0: return [4 /*yield*/, this.service.routeGenerator
|
|
14154
14154
|
.get(exports.Routes.GET)
|
|
14155
|
-
.setException('
|
|
14155
|
+
.setException('failed to load optimization result')
|
|
14156
14156
|
.withQueryString({ team_id: teamId, request_uuid: requestUuid })
|
|
14157
14157
|
.invoke()];
|
|
14158
14158
|
case 1: return [2 /*return*/, _a.sent()];
|
|
@@ -14166,7 +14166,7 @@ var OptimizationResultService = /** @class */ (function () {
|
|
|
14166
14166
|
switch (_a.label) {
|
|
14167
14167
|
case 0: return [4 /*yield*/, this.service.routeGenerator
|
|
14168
14168
|
.get(exports.Routes.GET_ALL)
|
|
14169
|
-
.setException('
|
|
14169
|
+
.setException('failed to load optimization results')
|
|
14170
14170
|
.withQueryString({
|
|
14171
14171
|
team_id: teamId,
|
|
14172
14172
|
start_time: startTime,
|
|
@@ -16346,7 +16346,8 @@ var ResourceUploadApi = /** @class */ (function (_super) {
|
|
|
16346
16346
|
function ResourceUploadApi(session) {
|
|
16347
16347
|
var _this = _super.call(this, session.config.getApiEndpoint(), session) || this;
|
|
16348
16348
|
_this.prepare_resource = new Route_1.Route('/resources/prepare', 1 /* HttpMethod.POST */);
|
|
16349
|
-
_this.
|
|
16349
|
+
_this.post_process_resource = new Route_1.Route('/resources/{:id}/process', 1 /* HttpMethod.POST */);
|
|
16350
|
+
_this.get_process_resource = new Route_1.Route('/resources/{:id}/process', 0 /* HttpMethod.GET */);
|
|
16350
16351
|
_this.realTime = new StoreEntity_1.RealTimeHandler(session.persistentConnection);
|
|
16351
16352
|
_this.processedCallbacks = [];
|
|
16352
16353
|
return _this;
|
|
@@ -16362,13 +16363,21 @@ var ResourceUploadApi = /** @class */ (function (_super) {
|
|
|
16362
16363
|
ResourceUploadApi.prototype.process = function (resourceId, doneEvent) {
|
|
16363
16364
|
this.realTime.on(doneEvent, this.onProcessed.bind(this));
|
|
16364
16365
|
return this.handleAuthorizedRequest({
|
|
16365
|
-
route: this.
|
|
16366
|
+
route: this.post_process_resource,
|
|
16366
16367
|
extractor: RouteGenerator_1.defaultExtractor,
|
|
16367
16368
|
exceptionProducer: BringgException_1.BringgException.serviceException('Failed to call resource process'),
|
|
16368
16369
|
payload: null,
|
|
16369
16370
|
routeParams: { id: resourceId }
|
|
16370
16371
|
});
|
|
16371
16372
|
};
|
|
16373
|
+
ResourceUploadApi.prototype.progress = function (resourceId) {
|
|
16374
|
+
return this.handleAuthorizedRequest({
|
|
16375
|
+
route: this.get_process_resource,
|
|
16376
|
+
extractor: RouteGenerator_1.defaultExtractor,
|
|
16377
|
+
exceptionProducer: BringgException_1.BringgException.serviceException('Failed to get resource process'),
|
|
16378
|
+
routeParams: { id: resourceId }
|
|
16379
|
+
});
|
|
16380
|
+
};
|
|
16372
16381
|
ResourceUploadApi.prototype.registerOnProcessed = function (resourceId, callback) {
|
|
16373
16382
|
var _this = this;
|
|
16374
16383
|
this.processedCallbacks.push({ callback: callback, resourceId: resourceId });
|
|
@@ -20196,7 +20205,7 @@ var lodash_1 = __webpack_require__(96486);
|
|
|
20196
20205
|
var BringgException_1 = __webpack_require__(43605);
|
|
20197
20206
|
var Logger_1 = __webpack_require__(55860);
|
|
20198
20207
|
var abort_1 = __webpack_require__(34179);
|
|
20199
|
-
var version = '8.
|
|
20208
|
+
var version = '8.16.0';
|
|
20200
20209
|
function logErrorResponse(response) {
|
|
20201
20210
|
var data = response.data, status = response.status;
|
|
20202
20211
|
try {
|
|
@@ -30904,7 +30913,7 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
30904
30913
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
30905
30914
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
30906
30915
|
};
|
|
30907
|
-
exports
|
|
30916
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
30908
30917
|
__exportStar(__webpack_require__(82285), exports);
|
|
30909
30918
|
__exportStar(__webpack_require__(2267), exports);
|
|
30910
30919
|
__exportStar(__webpack_require__(13401), exports);
|
|
@@ -31056,7 +31065,7 @@ __exportStar(__webpack_require__(30167), exports);
|
|
|
31056
31065
|
|
|
31057
31066
|
"use strict";
|
|
31058
31067
|
|
|
31059
|
-
exports
|
|
31068
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31060
31069
|
exports.ActionKey = exports.ActionType = void 0;
|
|
31061
31070
|
var ActionType;
|
|
31062
31071
|
(function (ActionType) {
|
|
@@ -31086,7 +31095,9 @@ var ActionType;
|
|
|
31086
31095
|
ActionType[ActionType["EMAIL_SHARED_LOCATION"] = 23] = "EMAIL_SHARED_LOCATION";
|
|
31087
31096
|
ActionType[ActionType["TASK_WEBHOOK"] = 24] = "TASK_WEBHOOK";
|
|
31088
31097
|
ActionType[ActionType["TASKS_WEBHOOK"] = 25] = "TASKS_WEBHOOK";
|
|
31089
|
-
|
|
31098
|
+
ActionType[ActionType["DUPLICATE_TASK"] = 26] = "DUPLICATE_TASK";
|
|
31099
|
+
ActionType[ActionType["USER_WEBHOOK"] = 27] = "USER_WEBHOOK";
|
|
31100
|
+
})(ActionType || (exports.ActionType = ActionType = {}));
|
|
31090
31101
|
var ActionKey;
|
|
31091
31102
|
(function (ActionKey) {
|
|
31092
31103
|
ActionKey["UPDATE"] = "updateEntity";
|
|
@@ -31100,7 +31111,8 @@ var ActionKey;
|
|
|
31100
31111
|
ActionKey["EMAIL_SHARED_LOCATION"] = "emailSharedLocation";
|
|
31101
31112
|
ActionKey["TASK_WEBHOOK"] = "taskWebhook";
|
|
31102
31113
|
ActionKey["TASKS_WEBHOOK"] = "tasksWebhook";
|
|
31103
|
-
|
|
31114
|
+
ActionKey["USER_WEBHOOK"] = "userWebhook";
|
|
31115
|
+
})(ActionKey || (exports.ActionKey = ActionKey = {}));
|
|
31104
31116
|
//# sourceMappingURL=action.js.map
|
|
31105
31117
|
|
|
31106
31118
|
/***/ }),
|
|
@@ -31110,13 +31122,13 @@ var ActionKey;
|
|
|
31110
31122
|
|
|
31111
31123
|
"use strict";
|
|
31112
31124
|
|
|
31113
|
-
exports
|
|
31125
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31114
31126
|
exports.OwnerType = void 0;
|
|
31115
31127
|
var OwnerType;
|
|
31116
31128
|
(function (OwnerType) {
|
|
31117
31129
|
OwnerType[OwnerType["Driver"] = 0] = "Driver";
|
|
31118
31130
|
OwnerType[OwnerType["Store"] = 1] = "Store";
|
|
31119
|
-
})(OwnerType
|
|
31131
|
+
})(OwnerType || (exports.OwnerType = OwnerType = {}));
|
|
31120
31132
|
//# sourceMappingURL=action_data.js.map
|
|
31121
31133
|
|
|
31122
31134
|
/***/ }),
|
|
@@ -31126,7 +31138,7 @@ var OwnerType;
|
|
|
31126
31138
|
|
|
31127
31139
|
"use strict";
|
|
31128
31140
|
|
|
31129
|
-
exports
|
|
31141
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31130
31142
|
//# sourceMappingURL=actual_break.js.map
|
|
31131
31143
|
|
|
31132
31144
|
/***/ }),
|
|
@@ -31136,18 +31148,18 @@ exports.__esModule = true;
|
|
|
31136
31148
|
|
|
31137
31149
|
"use strict";
|
|
31138
31150
|
|
|
31139
|
-
exports
|
|
31151
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31140
31152
|
exports.AcceleratorSliderContentType = exports.AcceleratorStatus = void 0;
|
|
31141
31153
|
var AcceleratorStatus;
|
|
31142
31154
|
(function (AcceleratorStatus) {
|
|
31143
31155
|
AcceleratorStatus[AcceleratorStatus["Pending"] = 0] = "Pending";
|
|
31144
31156
|
AcceleratorStatus[AcceleratorStatus["Active"] = 1] = "Active";
|
|
31145
|
-
})(AcceleratorStatus
|
|
31157
|
+
})(AcceleratorStatus || (exports.AcceleratorStatus = AcceleratorStatus = {}));
|
|
31146
31158
|
var AcceleratorSliderContentType;
|
|
31147
31159
|
(function (AcceleratorSliderContentType) {
|
|
31148
31160
|
AcceleratorSliderContentType["Image"] = "image";
|
|
31149
31161
|
AcceleratorSliderContentType["Video"] = "video";
|
|
31150
|
-
})(AcceleratorSliderContentType
|
|
31162
|
+
})(AcceleratorSliderContentType || (exports.AcceleratorSliderContentType = AcceleratorSliderContentType = {}));
|
|
31151
31163
|
//# sourceMappingURL=accelerator.js.map
|
|
31152
31164
|
|
|
31153
31165
|
/***/ }),
|
|
@@ -31171,7 +31183,7 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
31171
31183
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
31172
31184
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
31173
31185
|
};
|
|
31174
|
-
exports
|
|
31186
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31175
31187
|
__exportStar(__webpack_require__(8016), exports);
|
|
31176
31188
|
__exportStar(__webpack_require__(24807), exports);
|
|
31177
31189
|
//# sourceMappingURL=index.js.map
|
|
@@ -31183,7 +31195,7 @@ __exportStar(__webpack_require__(24807), exports);
|
|
|
31183
31195
|
|
|
31184
31196
|
"use strict";
|
|
31185
31197
|
|
|
31186
|
-
exports
|
|
31198
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31187
31199
|
//# sourceMappingURL=tier.js.map
|
|
31188
31200
|
|
|
31189
31201
|
/***/ }),
|
|
@@ -31193,7 +31205,7 @@ exports.__esModule = true;
|
|
|
31193
31205
|
|
|
31194
31206
|
"use strict";
|
|
31195
31207
|
|
|
31196
|
-
exports
|
|
31208
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31197
31209
|
//# sourceMappingURL=admin_users.js.map
|
|
31198
31210
|
|
|
31199
31211
|
/***/ }),
|
|
@@ -31203,7 +31215,7 @@ exports.__esModule = true;
|
|
|
31203
31215
|
|
|
31204
31216
|
"use strict";
|
|
31205
31217
|
|
|
31206
|
-
exports
|
|
31218
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31207
31219
|
exports.AlertDisplayCategory = exports.ALERT_TYPES_VALUES = exports.ALERT_TYPES = void 0;
|
|
31208
31220
|
var ALERT_TYPES;
|
|
31209
31221
|
(function (ALERT_TYPES) {
|
|
@@ -31269,14 +31281,14 @@ var ALERT_TYPES;
|
|
|
31269
31281
|
ALERT_TYPES[ALERT_TYPES["TMP_DAY_AND_ROSS_NUMBER_OF_PALLETS_CHANGED"] = 111] = "TMP_DAY_AND_ROSS_NUMBER_OF_PALLETS_CHANGED";
|
|
31270
31282
|
ALERT_TYPES[ALERT_TYPES["TMP_DAY_AND_ROSS_RUN_BREACHED_BY_WEIGHT"] = 112] = "TMP_DAY_AND_ROSS_RUN_BREACHED_BY_WEIGHT";
|
|
31271
31283
|
ALERT_TYPES[ALERT_TYPES["TMP_DAY_AND_ROSS_RUN_BREACHED_BY_PALLETS"] = 113] = "TMP_DAY_AND_ROSS_RUN_BREACHED_BY_PALLETS";
|
|
31272
|
-
})(ALERT_TYPES
|
|
31284
|
+
})(ALERT_TYPES || (exports.ALERT_TYPES = ALERT_TYPES = {}));
|
|
31273
31285
|
exports.ALERT_TYPES_VALUES = Object.values(ALERT_TYPES).filter(function (t) { return typeof t === 'number'; });
|
|
31274
31286
|
var AlertDisplayCategory;
|
|
31275
31287
|
(function (AlertDisplayCategory) {
|
|
31276
31288
|
AlertDisplayCategory["TASK"] = "task";
|
|
31277
31289
|
AlertDisplayCategory["DRIVER"] = "driver";
|
|
31278
31290
|
AlertDisplayCategory["OPTIMIZATION"] = "optimization";
|
|
31279
|
-
})(AlertDisplayCategory
|
|
31291
|
+
})(AlertDisplayCategory || (exports.AlertDisplayCategory = AlertDisplayCategory = {}));
|
|
31280
31292
|
//# sourceMappingURL=alert.js.map
|
|
31281
31293
|
|
|
31282
31294
|
/***/ }),
|
|
@@ -31286,7 +31298,7 @@ var AlertDisplayCategory;
|
|
|
31286
31298
|
|
|
31287
31299
|
"use strict";
|
|
31288
31300
|
|
|
31289
|
-
exports
|
|
31301
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31290
31302
|
//# sourceMappingURL=common.js.map
|
|
31291
31303
|
|
|
31292
31304
|
/***/ }),
|
|
@@ -31296,13 +31308,13 @@ exports.__esModule = true;
|
|
|
31296
31308
|
|
|
31297
31309
|
"use strict";
|
|
31298
31310
|
|
|
31299
|
-
exports
|
|
31311
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31300
31312
|
exports.SharedEntityAccessLevel = void 0;
|
|
31301
31313
|
var SharedEntityAccessLevel;
|
|
31302
31314
|
(function (SharedEntityAccessLevel) {
|
|
31303
31315
|
SharedEntityAccessLevel[SharedEntityAccessLevel["Viewer"] = 0] = "Viewer";
|
|
31304
31316
|
SharedEntityAccessLevel[SharedEntityAccessLevel["Editor"] = 1] = "Editor";
|
|
31305
|
-
})(SharedEntityAccessLevel
|
|
31317
|
+
})(SharedEntityAccessLevel || (exports.SharedEntityAccessLevel = SharedEntityAccessLevel = {}));
|
|
31306
31318
|
//# sourceMappingURL=entity_sharing.js.map
|
|
31307
31319
|
|
|
31308
31320
|
/***/ }),
|
|
@@ -31312,23 +31324,23 @@ var SharedEntityAccessLevel;
|
|
|
31312
31324
|
|
|
31313
31325
|
"use strict";
|
|
31314
31326
|
|
|
31315
|
-
exports
|
|
31327
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31316
31328
|
exports.CubeClientIdsV2 = exports.CubeDataSourceV2 = exports.CubeDataSource = void 0;
|
|
31317
31329
|
var CubeDataSource;
|
|
31318
31330
|
(function (CubeDataSource) {
|
|
31319
31331
|
CubeDataSource["Trino"] = "trino";
|
|
31320
31332
|
CubeDataSource["Druid"] = "druid";
|
|
31321
|
-
})(CubeDataSource
|
|
31333
|
+
})(CubeDataSource || (exports.CubeDataSource = CubeDataSource = {}));
|
|
31322
31334
|
var CubeDataSourceV2;
|
|
31323
31335
|
(function (CubeDataSourceV2) {
|
|
31324
31336
|
CubeDataSourceV2["Presto"] = "prestodb";
|
|
31325
31337
|
CubeDataSourceV2["Druid"] = "druid";
|
|
31326
|
-
})(CubeDataSourceV2
|
|
31338
|
+
})(CubeDataSourceV2 || (exports.CubeDataSourceV2 = CubeDataSourceV2 = {}));
|
|
31327
31339
|
var CubeClientIdsV2;
|
|
31328
31340
|
(function (CubeClientIdsV2) {
|
|
31329
31341
|
CubeClientIdsV2["OwnFleet"] = "own-fleet";
|
|
31330
31342
|
CubeClientIdsV2["DeliveryHub"] = "delivery-hub";
|
|
31331
|
-
})(CubeClientIdsV2
|
|
31343
|
+
})(CubeClientIdsV2 || (exports.CubeClientIdsV2 = CubeClientIdsV2 = {}));
|
|
31332
31344
|
//# sourceMappingURL=cubejs.js.map
|
|
31333
31345
|
|
|
31334
31346
|
/***/ }),
|
|
@@ -31338,14 +31350,14 @@ var CubeClientIdsV2;
|
|
|
31338
31350
|
|
|
31339
31351
|
"use strict";
|
|
31340
31352
|
|
|
31341
|
-
exports
|
|
31353
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31342
31354
|
exports.EtosConfigurationLevel = void 0;
|
|
31343
31355
|
var EtosConfigurationLevel;
|
|
31344
31356
|
(function (EtosConfigurationLevel) {
|
|
31345
31357
|
EtosConfigurationLevel["TeamAndMerchant"] = "team & merchant";
|
|
31346
31358
|
EtosConfigurationLevel["Team"] = "team";
|
|
31347
31359
|
EtosConfigurationLevel["Merchant"] = "merchant";
|
|
31348
|
-
})(EtosConfigurationLevel
|
|
31360
|
+
})(EtosConfigurationLevel || (exports.EtosConfigurationLevel = EtosConfigurationLevel = {}));
|
|
31349
31361
|
//# sourceMappingURL=dashboards.js.map
|
|
31350
31362
|
|
|
31351
31363
|
/***/ }),
|
|
@@ -31355,7 +31367,7 @@ var EtosConfigurationLevel;
|
|
|
31355
31367
|
|
|
31356
31368
|
"use strict";
|
|
31357
31369
|
|
|
31358
|
-
exports
|
|
31370
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31359
31371
|
//# sourceMappingURL=dashboards_shares.js.map
|
|
31360
31372
|
|
|
31361
31373
|
/***/ }),
|
|
@@ -31365,14 +31377,14 @@ exports.__esModule = true;
|
|
|
31365
31377
|
|
|
31366
31378
|
"use strict";
|
|
31367
31379
|
|
|
31368
|
-
exports
|
|
31380
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31369
31381
|
exports.FiltersExposureOperationType = void 0;
|
|
31370
31382
|
var FiltersExposureOperationType;
|
|
31371
31383
|
(function (FiltersExposureOperationType) {
|
|
31372
31384
|
FiltersExposureOperationType["Hybrid"] = "Hybrid";
|
|
31373
31385
|
FiltersExposureOperationType["ThirdPL"] = "3PL";
|
|
31374
31386
|
FiltersExposureOperationType["OwnFleet"] = "OwnFleet";
|
|
31375
|
-
})(FiltersExposureOperationType
|
|
31387
|
+
})(FiltersExposureOperationType || (exports.FiltersExposureOperationType = FiltersExposureOperationType = {}));
|
|
31376
31388
|
//# sourceMappingURL=filters.js.map
|
|
31377
31389
|
|
|
31378
31390
|
/***/ }),
|
|
@@ -31382,20 +31394,20 @@ var FiltersExposureOperationType;
|
|
|
31382
31394
|
|
|
31383
31395
|
"use strict";
|
|
31384
31396
|
|
|
31385
|
-
exports
|
|
31397
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31386
31398
|
exports.WidgetType = exports.UnitDimensionType = exports.UnitType = exports.GroupBy = exports.TimeGranularity = exports.TrendDirection = void 0;
|
|
31387
31399
|
var TrendDirection;
|
|
31388
31400
|
(function (TrendDirection) {
|
|
31389
31401
|
TrendDirection[TrendDirection["Asc"] = 0] = "Asc";
|
|
31390
31402
|
TrendDirection[TrendDirection["Desc"] = 1] = "Desc";
|
|
31391
|
-
})(TrendDirection
|
|
31403
|
+
})(TrendDirection || (exports.TrendDirection = TrendDirection = {}));
|
|
31392
31404
|
var TimeGranularity;
|
|
31393
31405
|
(function (TimeGranularity) {
|
|
31394
31406
|
TimeGranularity[TimeGranularity["None"] = 0] = "None";
|
|
31395
31407
|
TimeGranularity[TimeGranularity["WoW"] = 1] = "WoW";
|
|
31396
31408
|
TimeGranularity[TimeGranularity["MoM"] = 2] = "MoM";
|
|
31397
31409
|
TimeGranularity[TimeGranularity["YoY"] = 3] = "YoY";
|
|
31398
|
-
})(TimeGranularity
|
|
31410
|
+
})(TimeGranularity || (exports.TimeGranularity = TimeGranularity = {}));
|
|
31399
31411
|
var GroupBy;
|
|
31400
31412
|
(function (GroupBy) {
|
|
31401
31413
|
GroupBy[GroupBy["Merchant"] = 0] = "Merchant";
|
|
@@ -31409,7 +31421,7 @@ var GroupBy;
|
|
|
31409
31421
|
GroupBy[GroupBy["HourOfDay"] = 8] = "HourOfDay";
|
|
31410
31422
|
GroupBy[GroupBy["Tags"] = 9] = "Tags";
|
|
31411
31423
|
GroupBy[GroupBy["ServicePlans"] = 10] = "ServicePlans";
|
|
31412
|
-
})(GroupBy
|
|
31424
|
+
})(GroupBy || (exports.GroupBy = GroupBy = {}));
|
|
31413
31425
|
var UnitType;
|
|
31414
31426
|
(function (UnitType) {
|
|
31415
31427
|
UnitType[UnitType["Percent"] = 0] = "Percent";
|
|
@@ -31417,13 +31429,13 @@ var UnitType;
|
|
|
31417
31429
|
UnitType[UnitType["Money"] = 2] = "Money";
|
|
31418
31430
|
UnitType[UnitType["Number"] = 3] = "Number";
|
|
31419
31431
|
UnitType[UnitType["Time"] = 4] = "Time";
|
|
31420
|
-
})(UnitType
|
|
31432
|
+
})(UnitType || (exports.UnitType = UnitType = {}));
|
|
31421
31433
|
var UnitDimensionType;
|
|
31422
31434
|
(function (UnitDimensionType) {
|
|
31423
31435
|
UnitDimensionType[UnitDimensionType["Weekday"] = 0] = "Weekday";
|
|
31424
31436
|
UnitDimensionType[UnitDimensionType["Hour"] = 1] = "Hour";
|
|
31425
31437
|
UnitDimensionType[UnitDimensionType["ETA"] = 2] = "ETA";
|
|
31426
|
-
})(UnitDimensionType
|
|
31438
|
+
})(UnitDimensionType || (exports.UnitDimensionType = UnitDimensionType = {}));
|
|
31427
31439
|
var WidgetType;
|
|
31428
31440
|
(function (WidgetType) {
|
|
31429
31441
|
WidgetType[WidgetType["Number"] = 0] = "Number";
|
|
@@ -31434,7 +31446,7 @@ var WidgetType;
|
|
|
31434
31446
|
WidgetType[WidgetType["ReversedBarChart"] = 5] = "ReversedBarChart";
|
|
31435
31447
|
WidgetType[WidgetType["ReversedFullWidthBarChart"] = 6] = "ReversedFullWidthBarChart";
|
|
31436
31448
|
WidgetType[WidgetType["BasicLineChart"] = 7] = "BasicLineChart";
|
|
31437
|
-
})(WidgetType
|
|
31449
|
+
})(WidgetType || (exports.WidgetType = WidgetType = {}));
|
|
31438
31450
|
//# sourceMappingURL=widgets.js.map
|
|
31439
31451
|
|
|
31440
31452
|
/***/ }),
|
|
@@ -31444,7 +31456,7 @@ var WidgetType;
|
|
|
31444
31456
|
|
|
31445
31457
|
"use strict";
|
|
31446
31458
|
|
|
31447
|
-
exports
|
|
31459
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31448
31460
|
//# sourceMappingURL=widgets_catalog_items.js.map
|
|
31449
31461
|
|
|
31450
31462
|
/***/ }),
|
|
@@ -31468,7 +31480,7 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
31468
31480
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
31469
31481
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
31470
31482
|
};
|
|
31471
|
-
exports
|
|
31483
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31472
31484
|
__exportStar(__webpack_require__(52783), exports);
|
|
31473
31485
|
__exportStar(__webpack_require__(29085), exports);
|
|
31474
31486
|
__exportStar(__webpack_require__(95112), exports);
|
|
@@ -31494,7 +31506,7 @@ __exportStar(__webpack_require__(32657), exports);
|
|
|
31494
31506
|
|
|
31495
31507
|
"use strict";
|
|
31496
31508
|
|
|
31497
|
-
exports
|
|
31509
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31498
31510
|
//# sourceMappingURL=legacy_reports.js.map
|
|
31499
31511
|
|
|
31500
31512
|
/***/ }),
|
|
@@ -31504,13 +31516,13 @@ exports.__esModule = true;
|
|
|
31504
31516
|
|
|
31505
31517
|
"use strict";
|
|
31506
31518
|
|
|
31507
|
-
exports
|
|
31519
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31508
31520
|
exports.Order = void 0;
|
|
31509
31521
|
var Order;
|
|
31510
31522
|
(function (Order) {
|
|
31511
31523
|
Order["asc"] = "asc";
|
|
31512
31524
|
Order["desc"] = "desc";
|
|
31513
|
-
})(Order
|
|
31525
|
+
})(Order || (exports.Order = Order = {}));
|
|
31514
31526
|
//# sourceMappingURL=report.js.map
|
|
31515
31527
|
|
|
31516
31528
|
/***/ }),
|
|
@@ -31520,7 +31532,7 @@ var Order;
|
|
|
31520
31532
|
|
|
31521
31533
|
"use strict";
|
|
31522
31534
|
|
|
31523
|
-
exports
|
|
31535
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31524
31536
|
exports.ReportExportingStatus = exports.ReportExecuteOrigin = void 0;
|
|
31525
31537
|
var ReportExecuteOrigin;
|
|
31526
31538
|
(function (ReportExecuteOrigin) {
|
|
@@ -31528,14 +31540,14 @@ var ReportExecuteOrigin;
|
|
|
31528
31540
|
ReportExecuteOrigin[ReportExecuteOrigin["ExportNow"] = 1] = "ExportNow";
|
|
31529
31541
|
ReportExecuteOrigin[ReportExecuteOrigin["Download"] = 2] = "Download";
|
|
31530
31542
|
ReportExecuteOrigin[ReportExecuteOrigin["DownloadDraft"] = 3] = "DownloadDraft";
|
|
31531
|
-
})(ReportExecuteOrigin
|
|
31543
|
+
})(ReportExecuteOrigin || (exports.ReportExecuteOrigin = ReportExecuteOrigin = {}));
|
|
31532
31544
|
var ReportExportingStatus;
|
|
31533
31545
|
(function (ReportExportingStatus) {
|
|
31534
31546
|
ReportExportingStatus["InProgress"] = "InProgress";
|
|
31535
31547
|
ReportExportingStatus["Completed"] = "Completed";
|
|
31536
31548
|
ReportExportingStatus["Error"] = "Error";
|
|
31537
31549
|
ReportExportingStatus["Canceled"] = "Canceled";
|
|
31538
|
-
})(ReportExportingStatus
|
|
31550
|
+
})(ReportExportingStatus || (exports.ReportExportingStatus = ReportExportingStatus = {}));
|
|
31539
31551
|
//# sourceMappingURL=report_export.js.map
|
|
31540
31552
|
|
|
31541
31553
|
/***/ }),
|
|
@@ -31545,7 +31557,7 @@ var ReportExportingStatus;
|
|
|
31545
31557
|
|
|
31546
31558
|
"use strict";
|
|
31547
31559
|
|
|
31548
|
-
exports
|
|
31560
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31549
31561
|
//# sourceMappingURL=report_share.js.map
|
|
31550
31562
|
|
|
31551
31563
|
/***/ }),
|
|
@@ -31555,7 +31567,7 @@ exports.__esModule = true;
|
|
|
31555
31567
|
|
|
31556
31568
|
"use strict";
|
|
31557
31569
|
|
|
31558
|
-
exports
|
|
31570
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31559
31571
|
exports.DeliveryHubReportCoreObjects = exports.OwnFleetReportCoreObjects = void 0;
|
|
31560
31572
|
var OwnFleetReportCoreObjects;
|
|
31561
31573
|
(function (OwnFleetReportCoreObjects) {
|
|
@@ -31564,11 +31576,11 @@ var OwnFleetReportCoreObjects;
|
|
|
31564
31576
|
OwnFleetReportCoreObjects["Users"] = "Users";
|
|
31565
31577
|
OwnFleetReportCoreObjects["Vehicles"] = "Vehicles";
|
|
31566
31578
|
OwnFleetReportCoreObjects["Carriers"] = "Carriers";
|
|
31567
|
-
})(OwnFleetReportCoreObjects
|
|
31579
|
+
})(OwnFleetReportCoreObjects || (exports.OwnFleetReportCoreObjects = OwnFleetReportCoreObjects = {}));
|
|
31568
31580
|
var DeliveryHubReportCoreObjects;
|
|
31569
31581
|
(function (DeliveryHubReportCoreObjects) {
|
|
31570
31582
|
DeliveryHubReportCoreObjects["Shipments"] = "Shipments";
|
|
31571
|
-
})(DeliveryHubReportCoreObjects
|
|
31583
|
+
})(DeliveryHubReportCoreObjects || (exports.DeliveryHubReportCoreObjects = DeliveryHubReportCoreObjects = {}));
|
|
31572
31584
|
//# sourceMappingURL=report_templates.js.map
|
|
31573
31585
|
|
|
31574
31586
|
/***/ }),
|
|
@@ -31578,24 +31590,24 @@ var DeliveryHubReportCoreObjects;
|
|
|
31578
31590
|
|
|
31579
31591
|
"use strict";
|
|
31580
31592
|
|
|
31581
|
-
exports
|
|
31593
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31582
31594
|
exports.CronDayOfWeek = exports.ReportExportFormat = exports.ReportDeliveryType = exports.RecurrencePeriod = void 0;
|
|
31583
31595
|
var RecurrencePeriod;
|
|
31584
31596
|
(function (RecurrencePeriod) {
|
|
31585
31597
|
RecurrencePeriod["Monthly"] = "Monthly";
|
|
31586
31598
|
RecurrencePeriod["Weekly"] = "Weekly";
|
|
31587
31599
|
RecurrencePeriod["Daily"] = "Daily";
|
|
31588
|
-
})(RecurrencePeriod
|
|
31600
|
+
})(RecurrencePeriod || (exports.RecurrencePeriod = RecurrencePeriod = {}));
|
|
31589
31601
|
var ReportDeliveryType;
|
|
31590
31602
|
(function (ReportDeliveryType) {
|
|
31591
31603
|
ReportDeliveryType[ReportDeliveryType["Email"] = 0] = "Email";
|
|
31592
31604
|
ReportDeliveryType[ReportDeliveryType["ApiOrUrl"] = 1] = "ApiOrUrl";
|
|
31593
|
-
})(ReportDeliveryType
|
|
31605
|
+
})(ReportDeliveryType || (exports.ReportDeliveryType = ReportDeliveryType = {}));
|
|
31594
31606
|
var ReportExportFormat;
|
|
31595
31607
|
(function (ReportExportFormat) {
|
|
31596
31608
|
ReportExportFormat[ReportExportFormat["CSV"] = 0] = "CSV";
|
|
31597
31609
|
ReportExportFormat[ReportExportFormat["JSON"] = 1] = "JSON";
|
|
31598
|
-
})(ReportExportFormat
|
|
31610
|
+
})(ReportExportFormat || (exports.ReportExportFormat = ReportExportFormat = {}));
|
|
31599
31611
|
var CronDayOfWeek;
|
|
31600
31612
|
(function (CronDayOfWeek) {
|
|
31601
31613
|
CronDayOfWeek[CronDayOfWeek["Sunday"] = 0] = "Sunday";
|
|
@@ -31605,7 +31617,7 @@ var CronDayOfWeek;
|
|
|
31605
31617
|
CronDayOfWeek[CronDayOfWeek["Thursday"] = 4] = "Thursday";
|
|
31606
31618
|
CronDayOfWeek[CronDayOfWeek["Friday"] = 5] = "Friday";
|
|
31607
31619
|
CronDayOfWeek[CronDayOfWeek["Saturday"] = 6] = "Saturday";
|
|
31608
|
-
})(CronDayOfWeek
|
|
31620
|
+
})(CronDayOfWeek || (exports.CronDayOfWeek = CronDayOfWeek = {}));
|
|
31609
31621
|
//# sourceMappingURL=reports_scheduled_jobs.js.map
|
|
31610
31622
|
|
|
31611
31623
|
/***/ }),
|
|
@@ -31615,7 +31627,7 @@ var CronDayOfWeek;
|
|
|
31615
31627
|
|
|
31616
31628
|
"use strict";
|
|
31617
31629
|
|
|
31618
|
-
exports
|
|
31630
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31619
31631
|
//# sourceMappingURL=reports_stats.js.map
|
|
31620
31632
|
|
|
31621
31633
|
/***/ }),
|
|
@@ -31625,7 +31637,7 @@ exports.__esModule = true;
|
|
|
31625
31637
|
|
|
31626
31638
|
"use strict";
|
|
31627
31639
|
|
|
31628
|
-
exports
|
|
31640
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31629
31641
|
//# sourceMappingURL=users_permissions.js.map
|
|
31630
31642
|
|
|
31631
31643
|
/***/ }),
|
|
@@ -31635,7 +31647,7 @@ exports.__esModule = true;
|
|
|
31635
31647
|
|
|
31636
31648
|
"use strict";
|
|
31637
31649
|
|
|
31638
|
-
exports
|
|
31650
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31639
31651
|
exports.ApplicationUuid = void 0;
|
|
31640
31652
|
var ApplicationUuid;
|
|
31641
31653
|
(function (ApplicationUuid) {
|
|
@@ -31726,7 +31738,7 @@ var ApplicationUuid;
|
|
|
31726
31738
|
ApplicationUuid["TaskService"] = "5ca4a73e-5298-4b8a-a36f-d1cc76e20f49";
|
|
31727
31739
|
ApplicationUuid["ExclusionWindowTasksLimitApp"] = "376233f1-8be5-4366-9218-6d66e7a8d2de";
|
|
31728
31740
|
ApplicationUuid["Availability"] = "2c6bf985-414b-4411-888a-c0840e660411";
|
|
31729
|
-
})(ApplicationUuid
|
|
31741
|
+
})(ApplicationUuid || (exports.ApplicationUuid = ApplicationUuid = {}));
|
|
31730
31742
|
//# sourceMappingURL=application.js.map
|
|
31731
31743
|
|
|
31732
31744
|
/***/ }),
|
|
@@ -31736,13 +31748,13 @@ var ApplicationUuid;
|
|
|
31736
31748
|
|
|
31737
31749
|
"use strict";
|
|
31738
31750
|
|
|
31739
|
-
exports
|
|
31751
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31740
31752
|
exports.AsyncOperationStatusType = void 0;
|
|
31741
31753
|
var AsyncOperationStatusType;
|
|
31742
31754
|
(function (AsyncOperationStatusType) {
|
|
31743
31755
|
AsyncOperationStatusType["SUCCESS"] = "success";
|
|
31744
31756
|
AsyncOperationStatusType["FAILURE"] = "failure";
|
|
31745
|
-
})(AsyncOperationStatusType
|
|
31757
|
+
})(AsyncOperationStatusType || (exports.AsyncOperationStatusType = AsyncOperationStatusType = {}));
|
|
31746
31758
|
//# sourceMappingURL=async_operation_status.js.map
|
|
31747
31759
|
|
|
31748
31760
|
/***/ }),
|
|
@@ -31752,13 +31764,13 @@ var AsyncOperationStatusType;
|
|
|
31752
31764
|
|
|
31753
31765
|
"use strict";
|
|
31754
31766
|
|
|
31755
|
-
exports
|
|
31767
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31756
31768
|
exports.LOGIN_ERRORS = void 0;
|
|
31757
31769
|
var LOGIN_ERRORS;
|
|
31758
31770
|
(function (LOGIN_ERRORS) {
|
|
31759
31771
|
LOGIN_ERRORS["MERCHANTS_DATA_REASON"] = "HTTP_FAILED_DEPENDENCY";
|
|
31760
31772
|
LOGIN_ERRORS["RECAPTCHA_REASON"] = "HTTP_LOCKED";
|
|
31761
|
-
})(LOGIN_ERRORS
|
|
31773
|
+
})(LOGIN_ERRORS || (exports.LOGIN_ERRORS = LOGIN_ERRORS = {}));
|
|
31762
31774
|
//# sourceMappingURL=auth.js.map
|
|
31763
31775
|
|
|
31764
31776
|
/***/ }),
|
|
@@ -31768,7 +31780,7 @@ var LOGIN_ERRORS;
|
|
|
31768
31780
|
|
|
31769
31781
|
"use strict";
|
|
31770
31782
|
|
|
31771
|
-
exports
|
|
31783
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31772
31784
|
//# sourceMappingURL=chat_merchant_apps_types.js.map
|
|
31773
31785
|
|
|
31774
31786
|
/***/ }),
|
|
@@ -31792,7 +31804,7 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
31792
31804
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
31793
31805
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
31794
31806
|
};
|
|
31795
|
-
exports
|
|
31807
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31796
31808
|
__exportStar(__webpack_require__(43720), exports);
|
|
31797
31809
|
//# sourceMappingURL=index.js.map
|
|
31798
31810
|
|
|
@@ -31803,14 +31815,14 @@ __exportStar(__webpack_require__(43720), exports);
|
|
|
31803
31815
|
|
|
31804
31816
|
"use strict";
|
|
31805
31817
|
|
|
31806
|
-
exports
|
|
31818
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31807
31819
|
exports.ChatConversationType = void 0;
|
|
31808
31820
|
var ChatConversationType;
|
|
31809
31821
|
(function (ChatConversationType) {
|
|
31810
31822
|
ChatConversationType[ChatConversationType["driver_and_team_dispatchers"] = 0] = "driver_and_team_dispatchers";
|
|
31811
31823
|
ChatConversationType[ChatConversationType["task"] = 1] = "task";
|
|
31812
31824
|
ChatConversationType[ChatConversationType["group"] = 2] = "group";
|
|
31813
|
-
})(ChatConversationType
|
|
31825
|
+
})(ChatConversationType || (exports.ChatConversationType = ChatConversationType = {}));
|
|
31814
31826
|
//# sourceMappingURL=chat_conversation.js.map
|
|
31815
31827
|
|
|
31816
31828
|
/***/ }),
|
|
@@ -31820,19 +31832,19 @@ var ChatConversationType;
|
|
|
31820
31832
|
|
|
31821
31833
|
"use strict";
|
|
31822
31834
|
|
|
31823
|
-
exports
|
|
31835
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31824
31836
|
exports.ChatMessageOrigin = exports.ChatMessageType = void 0;
|
|
31825
31837
|
var ChatMessageType;
|
|
31826
31838
|
(function (ChatMessageType) {
|
|
31827
31839
|
ChatMessageType["TEXT"] = "text";
|
|
31828
31840
|
ChatMessageType["IMAGE"] = "image";
|
|
31829
|
-
})(ChatMessageType
|
|
31841
|
+
})(ChatMessageType || (exports.ChatMessageType = ChatMessageType = {}));
|
|
31830
31842
|
var ChatMessageOrigin;
|
|
31831
31843
|
(function (ChatMessageOrigin) {
|
|
31832
31844
|
ChatMessageOrigin[ChatMessageOrigin["MOBILE"] = 0] = "MOBILE";
|
|
31833
31845
|
ChatMessageOrigin[ChatMessageOrigin["WEB"] = 1] = "WEB";
|
|
31834
31846
|
ChatMessageOrigin[ChatMessageOrigin["SLACK"] = 2] = "SLACK";
|
|
31835
|
-
})(ChatMessageOrigin
|
|
31847
|
+
})(ChatMessageOrigin || (exports.ChatMessageOrigin = ChatMessageOrigin = {}));
|
|
31836
31848
|
//# sourceMappingURL=chat_message.js.map
|
|
31837
31849
|
|
|
31838
31850
|
/***/ }),
|
|
@@ -31842,7 +31854,7 @@ var ChatMessageOrigin;
|
|
|
31842
31854
|
|
|
31843
31855
|
"use strict";
|
|
31844
31856
|
|
|
31845
|
-
exports
|
|
31857
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31846
31858
|
exports.Connection = exports.DayOfWeek = void 0;
|
|
31847
31859
|
var DayOfWeek;
|
|
31848
31860
|
(function (DayOfWeek) {
|
|
@@ -31853,12 +31865,12 @@ var DayOfWeek;
|
|
|
31853
31865
|
DayOfWeek[DayOfWeek["Friday"] = 4] = "Friday";
|
|
31854
31866
|
DayOfWeek[DayOfWeek["Saturday"] = 5] = "Saturday";
|
|
31855
31867
|
DayOfWeek[DayOfWeek["Sunday"] = 6] = "Sunday";
|
|
31856
|
-
})(DayOfWeek
|
|
31868
|
+
})(DayOfWeek || (exports.DayOfWeek = DayOfWeek = {}));
|
|
31857
31869
|
var Connection;
|
|
31858
31870
|
(function (Connection) {
|
|
31859
31871
|
Connection["Online"] = "online";
|
|
31860
31872
|
Connection["Offline"] = "offline";
|
|
31861
|
-
})(Connection
|
|
31873
|
+
})(Connection || (exports.Connection = Connection = {}));
|
|
31862
31874
|
//# sourceMappingURL=common.js.map
|
|
31863
31875
|
|
|
31864
31876
|
/***/ }),
|
|
@@ -31868,7 +31880,7 @@ var Connection;
|
|
|
31868
31880
|
|
|
31869
31881
|
"use strict";
|
|
31870
31882
|
|
|
31871
|
-
exports
|
|
31883
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31872
31884
|
//# sourceMappingURL=company.js.map
|
|
31873
31885
|
|
|
31874
31886
|
/***/ }),
|
|
@@ -31878,7 +31890,7 @@ exports.__esModule = true;
|
|
|
31878
31890
|
|
|
31879
31891
|
"use strict";
|
|
31880
31892
|
|
|
31881
|
-
exports
|
|
31893
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31882
31894
|
//# sourceMappingURL=config_loader.js.map
|
|
31883
31895
|
|
|
31884
31896
|
/***/ }),
|
|
@@ -31888,7 +31900,7 @@ exports.__esModule = true;
|
|
|
31888
31900
|
|
|
31889
31901
|
"use strict";
|
|
31890
31902
|
|
|
31891
|
-
exports
|
|
31903
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31892
31904
|
//# sourceMappingURL=country.js.map
|
|
31893
31905
|
|
|
31894
31906
|
/***/ }),
|
|
@@ -31898,7 +31910,7 @@ exports.__esModule = true;
|
|
|
31898
31910
|
|
|
31899
31911
|
"use strict";
|
|
31900
31912
|
|
|
31901
|
-
exports
|
|
31913
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31902
31914
|
//# sourceMappingURL=crew.js.map
|
|
31903
31915
|
|
|
31904
31916
|
/***/ }),
|
|
@@ -31909,7 +31921,7 @@ exports.__esModule = true;
|
|
|
31909
31921
|
"use strict";
|
|
31910
31922
|
|
|
31911
31923
|
var _a;
|
|
31912
|
-
exports
|
|
31924
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31913
31925
|
exports.Currencies = exports.Currency = void 0;
|
|
31914
31926
|
var Currency;
|
|
31915
31927
|
(function (Currency) {
|
|
@@ -31949,7 +31961,7 @@ var Currency;
|
|
|
31949
31961
|
Currency["UYU"] = "UYU";
|
|
31950
31962
|
Currency["PAB"] = "PAB";
|
|
31951
31963
|
Currency["CRC"] = "CRC";
|
|
31952
|
-
})(Currency
|
|
31964
|
+
})(Currency || (exports.Currency = Currency = {}));
|
|
31953
31965
|
exports.Currencies = (_a = {},
|
|
31954
31966
|
_a[Currency.AUD] = {
|
|
31955
31967
|
title: 'Australian Dollar',
|
|
@@ -32141,7 +32153,7 @@ exports.Currencies = (_a = {},
|
|
|
32141
32153
|
|
|
32142
32154
|
"use strict";
|
|
32143
32155
|
|
|
32144
|
-
exports
|
|
32156
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32145
32157
|
exports.pathValidationRegExp = exports.CustomAttributesMandatoryRpcActions = exports.CustomAttributeConsumerEntity = exports.CustomAttributesRpcActions = exports.CustomAttributeResolverType = exports.CustomAttributeDataType = exports.CustomAttributeEntityType = void 0;
|
|
32146
32158
|
var CustomAttributeEntityType;
|
|
32147
32159
|
(function (CustomAttributeEntityType) {
|
|
@@ -32150,18 +32162,18 @@ var CustomAttributeEntityType;
|
|
|
32150
32162
|
CustomAttributeEntityType[CustomAttributeEntityType["Customer"] = 2] = "Customer";
|
|
32151
32163
|
CustomAttributeEntityType[CustomAttributeEntityType["Team"] = 3] = "Team";
|
|
32152
32164
|
CustomAttributeEntityType[CustomAttributeEntityType["User"] = 4] = "User";
|
|
32153
|
-
})(CustomAttributeEntityType
|
|
32165
|
+
})(CustomAttributeEntityType || (exports.CustomAttributeEntityType = CustomAttributeEntityType = {}));
|
|
32154
32166
|
var CustomAttributeDataType;
|
|
32155
32167
|
(function (CustomAttributeDataType) {
|
|
32156
32168
|
CustomAttributeDataType[CustomAttributeDataType["Number"] = 0] = "Number";
|
|
32157
32169
|
CustomAttributeDataType[CustomAttributeDataType["String"] = 1] = "String";
|
|
32158
32170
|
CustomAttributeDataType[CustomAttributeDataType["Boolean"] = 2] = "Boolean";
|
|
32159
32171
|
CustomAttributeDataType[CustomAttributeDataType["Enum"] = 3] = "Enum";
|
|
32160
|
-
})(CustomAttributeDataType
|
|
32172
|
+
})(CustomAttributeDataType || (exports.CustomAttributeDataType = CustomAttributeDataType = {}));
|
|
32161
32173
|
var CustomAttributeResolverType;
|
|
32162
32174
|
(function (CustomAttributeResolverType) {
|
|
32163
32175
|
CustomAttributeResolverType["JSONata"] = "JSONata";
|
|
32164
|
-
})(CustomAttributeResolverType
|
|
32176
|
+
})(CustomAttributeResolverType || (exports.CustomAttributeResolverType = CustomAttributeResolverType = {}));
|
|
32165
32177
|
var CustomAttributesRpcActions;
|
|
32166
32178
|
(function (CustomAttributesRpcActions) {
|
|
32167
32179
|
CustomAttributesRpcActions["GetAll"] = "get_all";
|
|
@@ -32169,18 +32181,18 @@ var CustomAttributesRpcActions;
|
|
|
32169
32181
|
CustomAttributesRpcActions["GetAllInternal"] = "get_all_internal";
|
|
32170
32182
|
CustomAttributesRpcActions["UpsertSuggestion"] = "upsert_suggestion";
|
|
32171
32183
|
CustomAttributesRpcActions["CheckUsage"] = "custom_attributes:check_record_usage";
|
|
32172
|
-
})(CustomAttributesRpcActions
|
|
32184
|
+
})(CustomAttributesRpcActions || (exports.CustomAttributesRpcActions = CustomAttributesRpcActions = {}));
|
|
32173
32185
|
var CustomAttributeConsumerEntity;
|
|
32174
32186
|
(function (CustomAttributeConsumerEntity) {
|
|
32175
32187
|
CustomAttributeConsumerEntity["AnalyticsReport"] = "analytics_report";
|
|
32176
32188
|
CustomAttributeConsumerEntity["Rule"] = "rule";
|
|
32177
32189
|
CustomAttributeConsumerEntity["WorkflowRule"] = "workflow_rule";
|
|
32178
32190
|
CustomAttributeConsumerEntity["WorkflowTrigger"] = "workflow_trigger";
|
|
32179
|
-
})(CustomAttributeConsumerEntity
|
|
32191
|
+
})(CustomAttributeConsumerEntity || (exports.CustomAttributeConsumerEntity = CustomAttributeConsumerEntity = {}));
|
|
32180
32192
|
var CustomAttributesMandatoryRpcActions;
|
|
32181
32193
|
(function (CustomAttributesMandatoryRpcActions) {
|
|
32182
32194
|
CustomAttributesMandatoryRpcActions["CheckUsage"] = "custom-attributes:check-record-usage";
|
|
32183
|
-
})(CustomAttributesMandatoryRpcActions
|
|
32195
|
+
})(CustomAttributesMandatoryRpcActions || (exports.CustomAttributesMandatoryRpcActions = CustomAttributesMandatoryRpcActions = {}));
|
|
32184
32196
|
exports.pathValidationRegExp = /^[a-zA-Z_$\d]+(\[\d+\])*?$/;
|
|
32185
32197
|
//# sourceMappingURL=custom_attribute.js.map
|
|
32186
32198
|
|
|
@@ -32191,14 +32203,14 @@ exports.pathValidationRegExp = /^[a-zA-Z_$\d]+(\[\d+\])*?$/;
|
|
|
32191
32203
|
|
|
32192
32204
|
"use strict";
|
|
32193
32205
|
|
|
32194
|
-
exports
|
|
32206
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32195
32207
|
exports.CustomFilterOperator = void 0;
|
|
32196
32208
|
var CustomFilterOperator;
|
|
32197
32209
|
(function (CustomFilterOperator) {
|
|
32198
32210
|
CustomFilterOperator[CustomFilterOperator["Equal"] = 0] = "Equal";
|
|
32199
32211
|
CustomFilterOperator[CustomFilterOperator["GreaterThan"] = 1] = "GreaterThan";
|
|
32200
32212
|
CustomFilterOperator[CustomFilterOperator["LessThan"] = 2] = "LessThan";
|
|
32201
|
-
})(CustomFilterOperator
|
|
32213
|
+
})(CustomFilterOperator || (exports.CustomFilterOperator = CustomFilterOperator = {}));
|
|
32202
32214
|
//# sourceMappingURL=custom_filter.js.map
|
|
32203
32215
|
|
|
32204
32216
|
/***/ }),
|
|
@@ -32208,7 +32220,7 @@ var CustomFilterOperator;
|
|
|
32208
32220
|
|
|
32209
32221
|
"use strict";
|
|
32210
32222
|
|
|
32211
|
-
exports
|
|
32223
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32212
32224
|
exports.CustomerKind = void 0;
|
|
32213
32225
|
var CustomerKind;
|
|
32214
32226
|
(function (CustomerKind) {
|
|
@@ -32217,7 +32229,7 @@ var CustomerKind;
|
|
|
32217
32229
|
CustomerKind[CustomerKind["STORE"] = 2] = "STORE";
|
|
32218
32230
|
CustomerKind[CustomerKind["LOCKER"] = 3] = "LOCKER";
|
|
32219
32231
|
CustomerKind[CustomerKind["DISTRIBUTION_HUB"] = 4] = "DISTRIBUTION_HUB";
|
|
32220
|
-
})(CustomerKind
|
|
32232
|
+
})(CustomerKind || (exports.CustomerKind = CustomerKind = {}));
|
|
32221
32233
|
//# sourceMappingURL=customer.js.map
|
|
32222
32234
|
|
|
32223
32235
|
/***/ }),
|
|
@@ -32227,7 +32239,7 @@ var CustomerKind;
|
|
|
32227
32239
|
|
|
32228
32240
|
"use strict";
|
|
32229
32241
|
|
|
32230
|
-
exports
|
|
32242
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32231
32243
|
//# sourceMappingURL=customer_configuration.js.map
|
|
32232
32244
|
|
|
32233
32245
|
/***/ }),
|
|
@@ -32237,13 +32249,13 @@ exports.__esModule = true;
|
|
|
32237
32249
|
|
|
32238
32250
|
"use strict";
|
|
32239
32251
|
|
|
32240
|
-
exports
|
|
32252
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32241
32253
|
exports.CustomerExperienceCancelEventTypes = exports.TaskPhase = exports.ApiVersion = void 0;
|
|
32242
32254
|
var ApiVersion;
|
|
32243
32255
|
(function (ApiVersion) {
|
|
32244
32256
|
ApiVersion[ApiVersion["V1"] = 1] = "V1";
|
|
32245
32257
|
ApiVersion[ApiVersion["V2"] = 2] = "V2";
|
|
32246
|
-
})(ApiVersion
|
|
32258
|
+
})(ApiVersion || (exports.ApiVersion = ApiVersion = {}));
|
|
32247
32259
|
var TaskPhase;
|
|
32248
32260
|
(function (TaskPhase) {
|
|
32249
32261
|
TaskPhase["CREATED"] = "created";
|
|
@@ -32251,12 +32263,12 @@ var TaskPhase;
|
|
|
32251
32263
|
TaskPhase["SCHEDULED"] = "scheduled";
|
|
32252
32264
|
TaskPhase["DONE"] = "done";
|
|
32253
32265
|
TaskPhase["RATING"] = "rating";
|
|
32254
|
-
})(TaskPhase
|
|
32266
|
+
})(TaskPhase || (exports.TaskPhase = TaskPhase = {}));
|
|
32255
32267
|
var CustomerExperienceCancelEventTypes;
|
|
32256
32268
|
(function (CustomerExperienceCancelEventTypes) {
|
|
32257
32269
|
CustomerExperienceCancelEventTypes[CustomerExperienceCancelEventTypes["DriverAssigned"] = 0] = "DriverAssigned";
|
|
32258
32270
|
CustomerExperienceCancelEventTypes[CustomerExperienceCancelEventTypes["TaskStarted"] = 1] = "TaskStarted";
|
|
32259
|
-
})(CustomerExperienceCancelEventTypes
|
|
32271
|
+
})(CustomerExperienceCancelEventTypes || (exports.CustomerExperienceCancelEventTypes = CustomerExperienceCancelEventTypes = {}));
|
|
32260
32272
|
//# sourceMappingURL=customer_experience.js.map
|
|
32261
32273
|
|
|
32262
32274
|
/***/ }),
|
|
@@ -32266,7 +32278,7 @@ var CustomerExperienceCancelEventTypes;
|
|
|
32266
32278
|
|
|
32267
32279
|
"use strict";
|
|
32268
32280
|
|
|
32269
|
-
exports
|
|
32281
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32270
32282
|
exports.OrderPageTabs = void 0;
|
|
32271
32283
|
var OrderPageTabs;
|
|
32272
32284
|
(function (OrderPageTabs) {
|
|
@@ -32275,7 +32287,7 @@ var OrderPageTabs;
|
|
|
32275
32287
|
OrderPageTabs[OrderPageTabs["attachments"] = 2] = "attachments";
|
|
32276
32288
|
OrderPageTabs[OrderPageTabs["inventories"] = 3] = "inventories";
|
|
32277
32289
|
OrderPageTabs[OrderPageTabs["tracking"] = 4] = "tracking";
|
|
32278
|
-
})(OrderPageTabs
|
|
32290
|
+
})(OrderPageTabs || (exports.OrderPageTabs = OrderPageTabs = {}));
|
|
32279
32291
|
//# sourceMappingURL=dashboard_ui_configuration.js.map
|
|
32280
32292
|
|
|
32281
32293
|
/***/ }),
|
|
@@ -32285,14 +32297,14 @@ var OrderPageTabs;
|
|
|
32285
32297
|
|
|
32286
32298
|
"use strict";
|
|
32287
32299
|
|
|
32288
|
-
exports
|
|
32300
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32289
32301
|
exports.DeliveryBlockResourceLocationType = exports.BreakType = void 0;
|
|
32290
32302
|
var BreakType;
|
|
32291
32303
|
(function (BreakType) {
|
|
32292
32304
|
BreakType[BreakType["Fixed"] = 0] = "Fixed";
|
|
32293
32305
|
BreakType[BreakType["Flex"] = 1] = "Flex";
|
|
32294
32306
|
BreakType[BreakType["Relative"] = 2] = "Relative";
|
|
32295
|
-
})(BreakType
|
|
32307
|
+
})(BreakType || (exports.BreakType = BreakType = {}));
|
|
32296
32308
|
var DeliveryBlockResourceLocationType;
|
|
32297
32309
|
(function (DeliveryBlockResourceLocationType) {
|
|
32298
32310
|
DeliveryBlockResourceLocationType[DeliveryBlockResourceLocationType["DRIVER_ADDRESS"] = 1] = "DRIVER_ADDRESS";
|
|
@@ -32300,7 +32312,7 @@ var DeliveryBlockResourceLocationType;
|
|
|
32300
32312
|
DeliveryBlockResourceLocationType[DeliveryBlockResourceLocationType["PARKING_SPOT"] = 3] = "PARKING_SPOT";
|
|
32301
32313
|
DeliveryBlockResourceLocationType[DeliveryBlockResourceLocationType["VEHICLE_DEFAULT_PARKING"] = 4] = "VEHICLE_DEFAULT_PARKING";
|
|
32302
32314
|
DeliveryBlockResourceLocationType[DeliveryBlockResourceLocationType["LAST_DRIVER_LOCATION"] = 5] = "LAST_DRIVER_LOCATION";
|
|
32303
|
-
})(DeliveryBlockResourceLocationType
|
|
32315
|
+
})(DeliveryBlockResourceLocationType || (exports.DeliveryBlockResourceLocationType = DeliveryBlockResourceLocationType = {}));
|
|
32304
32316
|
//# sourceMappingURL=delivery_block.js.map
|
|
32305
32317
|
|
|
32306
32318
|
/***/ }),
|
|
@@ -32310,7 +32322,7 @@ var DeliveryBlockResourceLocationType;
|
|
|
32310
32322
|
|
|
32311
32323
|
"use strict";
|
|
32312
32324
|
|
|
32313
|
-
exports
|
|
32325
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32314
32326
|
//# sourceMappingURL=delivery_block_schedule.js.map
|
|
32315
32327
|
|
|
32316
32328
|
/***/ }),
|
|
@@ -32320,7 +32332,7 @@ exports.__esModule = true;
|
|
|
32320
32332
|
|
|
32321
32333
|
"use strict";
|
|
32322
32334
|
|
|
32323
|
-
exports
|
|
32335
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32324
32336
|
exports.DeliveryProviderFleetLegacyType = exports.DeliveryProviderContractType = exports.DeliveryProviderStatus = exports.DeliveryProviderEcoFriendlyType = exports.DeliveryProviderDeliverFromCapability = exports.DeliveryProviderSecurityCapability = exports.DeliveryProviderServiceCapability = exports.DeliveryProviderServiceLevelCapability = exports.DeliveryProviderCommitmentTimeCapability = exports.DeliveryProviderSkillCapability = exports.DeliveryProviderVehicleCapability = exports.DeliveryProviderIndustryCapability = void 0;
|
|
32325
32337
|
var DeliveryProviderIndustryCapability;
|
|
32326
32338
|
(function (DeliveryProviderIndustryCapability) {
|
|
@@ -32330,7 +32342,7 @@ var DeliveryProviderIndustryCapability;
|
|
|
32330
32342
|
DeliveryProviderIndustryCapability["healthcare"] = "healthcare";
|
|
32331
32343
|
DeliveryProviderIndustryCapability["automotive"] = "automotive";
|
|
32332
32344
|
DeliveryProviderIndustryCapability["meal_kit"] = "meal_kit";
|
|
32333
|
-
})(DeliveryProviderIndustryCapability
|
|
32345
|
+
})(DeliveryProviderIndustryCapability || (exports.DeliveryProviderIndustryCapability = DeliveryProviderIndustryCapability = {}));
|
|
32334
32346
|
var DeliveryProviderVehicleCapability;
|
|
32335
32347
|
(function (DeliveryProviderVehicleCapability) {
|
|
32336
32348
|
DeliveryProviderVehicleCapability["on_foot"] = "on_foot";
|
|
@@ -32342,7 +32354,7 @@ var DeliveryProviderVehicleCapability;
|
|
|
32342
32354
|
DeliveryProviderVehicleCapability["trucks"] = "trucks";
|
|
32343
32355
|
DeliveryProviderVehicleCapability["robots"] = "robots";
|
|
32344
32356
|
DeliveryProviderVehicleCapability["drones"] = "drones";
|
|
32345
|
-
})(DeliveryProviderVehicleCapability
|
|
32357
|
+
})(DeliveryProviderVehicleCapability || (exports.DeliveryProviderVehicleCapability = DeliveryProviderVehicleCapability = {}));
|
|
32346
32358
|
var DeliveryProviderSkillCapability;
|
|
32347
32359
|
(function (DeliveryProviderSkillCapability) {
|
|
32348
32360
|
DeliveryProviderSkillCapability["proof_of_delivery"] = "proof_of_delivery";
|
|
@@ -32351,19 +32363,19 @@ var DeliveryProviderSkillCapability;
|
|
|
32351
32363
|
DeliveryProviderSkillCapability["update_order"] = "update_order";
|
|
32352
32364
|
DeliveryProviderSkillCapability["driver_live_tracking"] = "driver_live_tracking";
|
|
32353
32365
|
DeliveryProviderSkillCapability["cancel_order"] = "cancel_order";
|
|
32354
|
-
})(DeliveryProviderSkillCapability
|
|
32366
|
+
})(DeliveryProviderSkillCapability || (exports.DeliveryProviderSkillCapability = DeliveryProviderSkillCapability = {}));
|
|
32355
32367
|
var DeliveryProviderCommitmentTimeCapability;
|
|
32356
32368
|
(function (DeliveryProviderCommitmentTimeCapability) {
|
|
32357
32369
|
DeliveryProviderCommitmentTimeCapability["min30"] = "min30";
|
|
32358
32370
|
DeliveryProviderCommitmentTimeCapability["min60"] = "min60";
|
|
32359
32371
|
DeliveryProviderCommitmentTimeCapability["min120"] = "min120";
|
|
32360
|
-
})(DeliveryProviderCommitmentTimeCapability
|
|
32372
|
+
})(DeliveryProviderCommitmentTimeCapability || (exports.DeliveryProviderCommitmentTimeCapability = DeliveryProviderCommitmentTimeCapability = {}));
|
|
32361
32373
|
var DeliveryProviderServiceLevelCapability;
|
|
32362
32374
|
(function (DeliveryProviderServiceLevelCapability) {
|
|
32363
32375
|
DeliveryProviderServiceLevelCapability["on_demand"] = "on_demand";
|
|
32364
32376
|
DeliveryProviderServiceLevelCapability["same_day"] = "same_day";
|
|
32365
32377
|
DeliveryProviderServiceLevelCapability["scheduled"] = "scheduled";
|
|
32366
|
-
})(DeliveryProviderServiceLevelCapability
|
|
32378
|
+
})(DeliveryProviderServiceLevelCapability || (exports.DeliveryProviderServiceLevelCapability = DeliveryProviderServiceLevelCapability = {}));
|
|
32367
32379
|
var DeliveryProviderServiceCapability;
|
|
32368
32380
|
(function (DeliveryProviderServiceCapability) {
|
|
32369
32381
|
DeliveryProviderServiceCapability["installation"] = "installation";
|
|
@@ -32375,43 +32387,43 @@ var DeliveryProviderServiceCapability;
|
|
|
32375
32387
|
DeliveryProviderServiceCapability["fragile"] = "fragile";
|
|
32376
32388
|
DeliveryProviderServiceCapability["alcohol"] = "alcohol";
|
|
32377
32389
|
DeliveryProviderServiceCapability["medical"] = "medical";
|
|
32378
|
-
})(DeliveryProviderServiceCapability
|
|
32390
|
+
})(DeliveryProviderServiceCapability || (exports.DeliveryProviderServiceCapability = DeliveryProviderServiceCapability = {}));
|
|
32379
32391
|
var DeliveryProviderSecurityCapability;
|
|
32380
32392
|
(function (DeliveryProviderSecurityCapability) {
|
|
32381
32393
|
DeliveryProviderSecurityCapability["iso"] = "iso";
|
|
32382
32394
|
DeliveryProviderSecurityCapability["soc2"] = "soc2";
|
|
32383
|
-
})(DeliveryProviderSecurityCapability
|
|
32395
|
+
})(DeliveryProviderSecurityCapability || (exports.DeliveryProviderSecurityCapability = DeliveryProviderSecurityCapability = {}));
|
|
32384
32396
|
var DeliveryProviderDeliverFromCapability;
|
|
32385
32397
|
(function (DeliveryProviderDeliverFromCapability) {
|
|
32386
32398
|
DeliveryProviderDeliverFromCapability["store"] = "store";
|
|
32387
32399
|
DeliveryProviderDeliverFromCapability["warehouse"] = "warehouse";
|
|
32388
|
-
})(DeliveryProviderDeliverFromCapability
|
|
32400
|
+
})(DeliveryProviderDeliverFromCapability || (exports.DeliveryProviderDeliverFromCapability = DeliveryProviderDeliverFromCapability = {}));
|
|
32389
32401
|
var DeliveryProviderEcoFriendlyType;
|
|
32390
32402
|
(function (DeliveryProviderEcoFriendlyType) {
|
|
32391
32403
|
DeliveryProviderEcoFriendlyType[DeliveryProviderEcoFriendlyType["Yes"] = 0] = "Yes";
|
|
32392
32404
|
DeliveryProviderEcoFriendlyType[DeliveryProviderEcoFriendlyType["No"] = 1] = "No";
|
|
32393
32405
|
DeliveryProviderEcoFriendlyType[DeliveryProviderEcoFriendlyType["Partial"] = 2] = "Partial";
|
|
32394
|
-
})(DeliveryProviderEcoFriendlyType
|
|
32406
|
+
})(DeliveryProviderEcoFriendlyType || (exports.DeliveryProviderEcoFriendlyType = DeliveryProviderEcoFriendlyType = {}));
|
|
32395
32407
|
var DeliveryProviderStatus;
|
|
32396
32408
|
(function (DeliveryProviderStatus) {
|
|
32397
32409
|
DeliveryProviderStatus[DeliveryProviderStatus["Pending"] = 0] = "Pending";
|
|
32398
32410
|
DeliveryProviderStatus[DeliveryProviderStatus["InProgress"] = 1] = "InProgress";
|
|
32399
32411
|
DeliveryProviderStatus[DeliveryProviderStatus["Active"] = 2] = "Active";
|
|
32400
32412
|
DeliveryProviderStatus[DeliveryProviderStatus["Inactive"] = 3] = "Inactive";
|
|
32401
|
-
})(DeliveryProviderStatus
|
|
32413
|
+
})(DeliveryProviderStatus || (exports.DeliveryProviderStatus = DeliveryProviderStatus = {}));
|
|
32402
32414
|
var DeliveryProviderContractType;
|
|
32403
32415
|
(function (DeliveryProviderContractType) {
|
|
32404
32416
|
DeliveryProviderContractType[DeliveryProviderContractType["HubAggregator"] = 0] = "HubAggregator";
|
|
32405
32417
|
DeliveryProviderContractType[DeliveryProviderContractType["HubDirect"] = 1] = "HubDirect";
|
|
32406
32418
|
DeliveryProviderContractType[DeliveryProviderContractType["NonHub"] = 2] = "NonHub";
|
|
32407
|
-
})(DeliveryProviderContractType
|
|
32419
|
+
})(DeliveryProviderContractType || (exports.DeliveryProviderContractType = DeliveryProviderContractType = {}));
|
|
32408
32420
|
var DeliveryProviderFleetLegacyType;
|
|
32409
32421
|
(function (DeliveryProviderFleetLegacyType) {
|
|
32410
32422
|
DeliveryProviderFleetLegacyType[DeliveryProviderFleetLegacyType["BringgIntegration"] = 0] = "BringgIntegration";
|
|
32411
32423
|
DeliveryProviderFleetLegacyType[DeliveryProviderFleetLegacyType["SelfIntegration"] = 1] = "SelfIntegration";
|
|
32412
32424
|
DeliveryProviderFleetLegacyType[DeliveryProviderFleetLegacyType["Bringg2Bringg"] = 2] = "Bringg2Bringg";
|
|
32413
32425
|
DeliveryProviderFleetLegacyType[DeliveryProviderFleetLegacyType["Aggregator"] = 3] = "Aggregator";
|
|
32414
|
-
})(DeliveryProviderFleetLegacyType
|
|
32426
|
+
})(DeliveryProviderFleetLegacyType || (exports.DeliveryProviderFleetLegacyType = DeliveryProviderFleetLegacyType = {}));
|
|
32415
32427
|
//# sourceMappingURL=delivery_provider.js.map
|
|
32416
32428
|
|
|
32417
32429
|
/***/ }),
|
|
@@ -32421,7 +32433,7 @@ var DeliveryProviderFleetLegacyType;
|
|
|
32421
32433
|
|
|
32422
32434
|
"use strict";
|
|
32423
32435
|
|
|
32424
|
-
exports
|
|
32436
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32425
32437
|
//# sourceMappingURL=delivery_provider_aggregator_item.js.map
|
|
32426
32438
|
|
|
32427
32439
|
/***/ }),
|
|
@@ -32431,7 +32443,7 @@ exports.__esModule = true;
|
|
|
32431
32443
|
|
|
32432
32444
|
"use strict";
|
|
32433
32445
|
|
|
32434
|
-
exports
|
|
32446
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32435
32447
|
//# sourceMappingURL=delivery_provider_category_item.js.map
|
|
32436
32448
|
|
|
32437
32449
|
/***/ }),
|
|
@@ -32441,7 +32453,7 @@ exports.__esModule = true;
|
|
|
32441
32453
|
|
|
32442
32454
|
"use strict";
|
|
32443
32455
|
|
|
32444
|
-
exports
|
|
32456
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32445
32457
|
//# sourceMappingURL=delivery_provider_display_destination_item.js.map
|
|
32446
32458
|
|
|
32447
32459
|
/***/ }),
|
|
@@ -32451,7 +32463,7 @@ exports.__esModule = true;
|
|
|
32451
32463
|
|
|
32452
32464
|
"use strict";
|
|
32453
32465
|
|
|
32454
|
-
exports
|
|
32466
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32455
32467
|
exports.DeliveryProviderLookupType = void 0;
|
|
32456
32468
|
var DeliveryProviderLookupType;
|
|
32457
32469
|
(function (DeliveryProviderLookupType) {
|
|
@@ -32461,7 +32473,7 @@ var DeliveryProviderLookupType;
|
|
|
32461
32473
|
DeliveryProviderLookupType[DeliveryProviderLookupType["DeliveryTypes"] = 3] = "DeliveryTypes";
|
|
32462
32474
|
DeliveryProviderLookupType[DeliveryProviderLookupType["AgeRestrictions"] = 4] = "AgeRestrictions";
|
|
32463
32475
|
DeliveryProviderLookupType[DeliveryProviderLookupType["WhiteGloves"] = 5] = "WhiteGloves";
|
|
32464
|
-
})(DeliveryProviderLookupType
|
|
32476
|
+
})(DeliveryProviderLookupType || (exports.DeliveryProviderLookupType = DeliveryProviderLookupType = {}));
|
|
32465
32477
|
//# sourceMappingURL=delivery_provider_lookup_item.js.map
|
|
32466
32478
|
|
|
32467
32479
|
/***/ }),
|
|
@@ -32471,7 +32483,7 @@ var DeliveryProviderLookupType;
|
|
|
32471
32483
|
|
|
32472
32484
|
"use strict";
|
|
32473
32485
|
|
|
32474
|
-
exports
|
|
32486
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32475
32487
|
//# sourceMappingURL=delivery_provider_offering.js.map
|
|
32476
32488
|
|
|
32477
32489
|
/***/ }),
|
|
@@ -32481,7 +32493,7 @@ exports.__esModule = true;
|
|
|
32481
32493
|
|
|
32482
32494
|
"use strict";
|
|
32483
32495
|
|
|
32484
|
-
exports
|
|
32496
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32485
32497
|
//# sourceMappingURL=deprecated_alert_types.js.map
|
|
32486
32498
|
|
|
32487
32499
|
/***/ }),
|
|
@@ -32491,7 +32503,7 @@ exports.__esModule = true;
|
|
|
32491
32503
|
|
|
32492
32504
|
"use strict";
|
|
32493
32505
|
|
|
32494
|
-
exports
|
|
32506
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32495
32507
|
exports.DisputeReason = void 0;
|
|
32496
32508
|
var DisputeReason;
|
|
32497
32509
|
(function (DisputeReason) {
|
|
@@ -32503,7 +32515,7 @@ var DisputeReason;
|
|
|
32503
32515
|
DisputeReason[DisputeReason["DRIVER_NEVER_ARRIVED_TO_PICKUP"] = 5] = "DRIVER_NEVER_ARRIVED_TO_PICKUP";
|
|
32504
32516
|
DisputeReason[DisputeReason["DRIVER_NEVER_ARRIVED_TO_DROPOFF"] = 6] = "DRIVER_NEVER_ARRIVED_TO_DROPOFF";
|
|
32505
32517
|
DisputeReason[DisputeReason["OTHER"] = 100] = "OTHER";
|
|
32506
|
-
})(DisputeReason
|
|
32518
|
+
})(DisputeReason || (exports.DisputeReason = DisputeReason = {}));
|
|
32507
32519
|
//# sourceMappingURL=dispute.js.map
|
|
32508
32520
|
|
|
32509
32521
|
/***/ }),
|
|
@@ -32513,7 +32525,7 @@ var DisputeReason;
|
|
|
32513
32525
|
|
|
32514
32526
|
"use strict";
|
|
32515
32527
|
|
|
32516
|
-
exports
|
|
32528
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32517
32529
|
//# sourceMappingURL=driver_unavailability.js.map
|
|
32518
32530
|
|
|
32519
32531
|
/***/ }),
|
|
@@ -32523,7 +32535,7 @@ exports.__esModule = true;
|
|
|
32523
32535
|
|
|
32524
32536
|
"use strict";
|
|
32525
32537
|
|
|
32526
|
-
exports
|
|
32538
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32527
32539
|
exports.EmulatedDeliveryEvents = void 0;
|
|
32528
32540
|
var EmulatedDeliveryEvents;
|
|
32529
32541
|
(function (EmulatedDeliveryEvents) {
|
|
@@ -32534,7 +32546,7 @@ var EmulatedDeliveryEvents;
|
|
|
32534
32546
|
EmulatedDeliveryEvents["CheckOutPickUp"] = "CheckOutPickUp";
|
|
32535
32547
|
EmulatedDeliveryEvents["CheckInDropOff"] = "CheckInDropOff";
|
|
32536
32548
|
EmulatedDeliveryEvents["CheckOutDropOff"] = "CheckOutDropOff";
|
|
32537
|
-
})(EmulatedDeliveryEvents
|
|
32549
|
+
})(EmulatedDeliveryEvents || (exports.EmulatedDeliveryEvents = EmulatedDeliveryEvents = {}));
|
|
32538
32550
|
//# sourceMappingURL=emulated_delivery_provider_types.js.map
|
|
32539
32551
|
|
|
32540
32552
|
/***/ }),
|
|
@@ -32544,12 +32556,12 @@ var EmulatedDeliveryEvents;
|
|
|
32544
32556
|
|
|
32545
32557
|
"use strict";
|
|
32546
32558
|
|
|
32547
|
-
exports
|
|
32559
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32548
32560
|
exports.ErrorCode = void 0;
|
|
32549
32561
|
var ErrorCode;
|
|
32550
32562
|
(function (ErrorCode) {
|
|
32551
32563
|
ErrorCode["TierCanUpgradeToIsFalse"] = "TIER_CAN_UPGRADE_TO_IS_FALSE";
|
|
32552
|
-
})(ErrorCode
|
|
32564
|
+
})(ErrorCode || (exports.ErrorCode = ErrorCode = {}));
|
|
32553
32565
|
//# sourceMappingURL=error_code.js.map
|
|
32554
32566
|
|
|
32555
32567
|
/***/ }),
|
|
@@ -32559,7 +32571,7 @@ var ErrorCode;
|
|
|
32559
32571
|
|
|
32560
32572
|
"use strict";
|
|
32561
32573
|
|
|
32562
|
-
exports
|
|
32574
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32563
32575
|
exports.AvailabilityCalculationOrigin = exports.EventType = exports.AssociationsChangedType = void 0;
|
|
32564
32576
|
var AssociationsChangedType;
|
|
32565
32577
|
(function (AssociationsChangedType) {
|
|
@@ -32569,7 +32581,7 @@ var AssociationsChangedType;
|
|
|
32569
32581
|
AssociationsChangedType["task_note"] = "task_note";
|
|
32570
32582
|
AssociationsChangedType["task_photo"] = "task_photo";
|
|
32571
32583
|
AssociationsChangedType["signature"] = "signature";
|
|
32572
|
-
})(AssociationsChangedType
|
|
32584
|
+
})(AssociationsChangedType || (exports.AssociationsChangedType = AssociationsChangedType = {}));
|
|
32573
32585
|
var EventType;
|
|
32574
32586
|
(function (EventType) {
|
|
32575
32587
|
EventType["ApplicationActionRun"] = "application:action:run";
|
|
@@ -32712,12 +32724,14 @@ var EventType;
|
|
|
32712
32724
|
EventType["RecurringTemplateTimesReassigned"] = "recurring_template:times_reassigned";
|
|
32713
32725
|
EventType["CustomWorkflowWebhookTaskEvent"] = "custom_workflow:webhook:task";
|
|
32714
32726
|
EventType["CustomWorkflowWebhookTasksEvent"] = "custom_workflow:webhook:tasks";
|
|
32715
|
-
|
|
32727
|
+
EventType["FeetStatusUpdate"] = "fleet:status:update";
|
|
32728
|
+
EventType["CustomWorkflowWebhookUserEvent"] = "custom_workflow:webhook:user";
|
|
32729
|
+
})(EventType || (exports.EventType = EventType = {}));
|
|
32716
32730
|
var AvailabilityCalculationOrigin;
|
|
32717
32731
|
(function (AvailabilityCalculationOrigin) {
|
|
32718
32732
|
AvailabilityCalculationOrigin["QUOTE_ORDERS"] = "QUOTE_ORDERS";
|
|
32719
32733
|
AvailabilityCalculationOrigin["AUTOMATION_PLATFORM"] = "AUTOMATION_PLATFORM";
|
|
32720
|
-
})(AvailabilityCalculationOrigin
|
|
32734
|
+
})(AvailabilityCalculationOrigin || (exports.AvailabilityCalculationOrigin = AvailabilityCalculationOrigin = {}));
|
|
32721
32735
|
//# sourceMappingURL=event.js.map
|
|
32722
32736
|
|
|
32723
32737
|
/***/ }),
|
|
@@ -32727,14 +32741,14 @@ var AvailabilityCalculationOrigin;
|
|
|
32727
32741
|
|
|
32728
32742
|
"use strict";
|
|
32729
32743
|
|
|
32730
|
-
exports
|
|
32744
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32731
32745
|
exports.AggregatorType = exports.IntegrationType = void 0;
|
|
32732
32746
|
var IntegrationType;
|
|
32733
32747
|
(function (IntegrationType) {
|
|
32734
32748
|
IntegrationType[IntegrationType["Fleet"] = 1] = "Fleet";
|
|
32735
32749
|
IntegrationType[IntegrationType["Aggregator"] = 2] = "Aggregator";
|
|
32736
32750
|
IntegrationType[IntegrationType["POS"] = 3] = "POS";
|
|
32737
|
-
})(IntegrationType
|
|
32751
|
+
})(IntegrationType || (exports.IntegrationType = IntegrationType = {}));
|
|
32738
32752
|
var AggregatorType;
|
|
32739
32753
|
(function (AggregatorType) {
|
|
32740
32754
|
AggregatorType[AggregatorType["Uber"] = 1] = "Uber";
|
|
@@ -32745,7 +32759,7 @@ var AggregatorType;
|
|
|
32745
32759
|
AggregatorType[AggregatorType["Toast"] = 8] = "Toast";
|
|
32746
32760
|
AggregatorType[AggregatorType["GoogleFood"] = 9] = "GoogleFood";
|
|
32747
32761
|
AggregatorType[AggregatorType["Popeyes"] = 10] = "Popeyes";
|
|
32748
|
-
})(AggregatorType
|
|
32762
|
+
})(AggregatorType || (exports.AggregatorType = AggregatorType = {}));
|
|
32749
32763
|
//# sourceMappingURL=external_data_team.js.map
|
|
32750
32764
|
|
|
32751
32765
|
/***/ }),
|
|
@@ -32755,7 +32769,7 @@ var AggregatorType;
|
|
|
32755
32769
|
|
|
32756
32770
|
"use strict";
|
|
32757
32771
|
|
|
32758
|
-
exports
|
|
32772
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32759
32773
|
exports.FILTER_CONDITIONS = void 0;
|
|
32760
32774
|
var FILTER_CONDITIONS;
|
|
32761
32775
|
(function (FILTER_CONDITIONS) {
|
|
@@ -32770,7 +32784,7 @@ var FILTER_CONDITIONS;
|
|
|
32770
32784
|
FILTER_CONDITIONS["GREATER_THAN_OR_EQUALS"] = "GREATER_THAN_OR_EQUALS";
|
|
32771
32785
|
FILTER_CONDITIONS["LESS_THAN"] = "LESS_THAN";
|
|
32772
32786
|
FILTER_CONDITIONS["LESS_THAN_OR_EQUALS"] = "LESS_THAN_OR_EQUALS";
|
|
32773
|
-
})(FILTER_CONDITIONS
|
|
32787
|
+
})(FILTER_CONDITIONS || (exports.FILTER_CONDITIONS = FILTER_CONDITIONS = {}));
|
|
32774
32788
|
//# sourceMappingURL=filter_conditions.js.map
|
|
32775
32789
|
|
|
32776
32790
|
/***/ }),
|
|
@@ -32781,13 +32795,13 @@ var FILTER_CONDITIONS;
|
|
|
32781
32795
|
"use strict";
|
|
32782
32796
|
|
|
32783
32797
|
var _a;
|
|
32784
|
-
exports
|
|
32798
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32785
32799
|
exports.FleetTypeToCapabilities = exports.FleetType = exports.FleetStatus = exports.FleetEnvType = void 0;
|
|
32786
32800
|
var FleetEnvType;
|
|
32787
32801
|
(function (FleetEnvType) {
|
|
32788
32802
|
FleetEnvType[FleetEnvType["Production"] = 0] = "Production";
|
|
32789
32803
|
FleetEnvType[FleetEnvType["Staging"] = 1] = "Staging";
|
|
32790
|
-
})(FleetEnvType
|
|
32804
|
+
})(FleetEnvType || (exports.FleetEnvType = FleetEnvType = {}));
|
|
32791
32805
|
var FleetStatus;
|
|
32792
32806
|
(function (FleetStatus) {
|
|
32793
32807
|
FleetStatus[FleetStatus["Active"] = 0] = "Active";
|
|
@@ -32795,7 +32809,7 @@ var FleetStatus;
|
|
|
32795
32809
|
FleetStatus[FleetStatus["Pending"] = 2] = "Pending";
|
|
32796
32810
|
FleetStatus[FleetStatus["Draft"] = 3] = "Draft";
|
|
32797
32811
|
FleetStatus[FleetStatus["Failed"] = 4] = "Failed";
|
|
32798
|
-
})(FleetStatus
|
|
32812
|
+
})(FleetStatus || (exports.FleetStatus = FleetStatus = {}));
|
|
32799
32813
|
var FleetType;
|
|
32800
32814
|
(function (FleetType) {
|
|
32801
32815
|
FleetType[FleetType["Uber"] = 1] = "Uber";
|
|
@@ -32831,7 +32845,7 @@ var FleetType;
|
|
|
32831
32845
|
FleetType[FleetType["DriveYello"] = 32] = "DriveYello";
|
|
32832
32846
|
FleetType[FleetType["Internal"] = 33] = "Internal";
|
|
32833
32847
|
FleetType[FleetType["EmulatedDeliveryProvider"] = 999] = "EmulatedDeliveryProvider";
|
|
32834
|
-
})(FleetType
|
|
32848
|
+
})(FleetType || (exports.FleetType = FleetType = {}));
|
|
32835
32849
|
exports.FleetTypeToCapabilities = (_a = {},
|
|
32836
32850
|
_a[FleetType.Uber] = { create_delivery: true, get_quote: true, multiple_time_windows: true, is_green: false },
|
|
32837
32851
|
_a[FleetType.Deliv] = { create_delivery: false, get_quote: false, is_green: false },
|
|
@@ -32880,14 +32894,14 @@ exports.FleetTypeToCapabilities = (_a = {},
|
|
|
32880
32894
|
|
|
32881
32895
|
"use strict";
|
|
32882
32896
|
|
|
32883
|
-
exports
|
|
32897
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32884
32898
|
exports.PreferredMethod = void 0;
|
|
32885
32899
|
var PreferredMethod;
|
|
32886
32900
|
(function (PreferredMethod) {
|
|
32887
32901
|
PreferredMethod["Priority"] = "priority";
|
|
32888
32902
|
PreferredMethod["Fastest"] = "fastest";
|
|
32889
32903
|
PreferredMethod["Cheapest"] = "cheapest";
|
|
32890
|
-
})(PreferredMethod
|
|
32904
|
+
})(PreferredMethod || (exports.PreferredMethod = PreferredMethod = {}));
|
|
32891
32905
|
//# sourceMappingURL=fleet_router_rules.js.map
|
|
32892
32906
|
|
|
32893
32907
|
/***/ }),
|
|
@@ -32897,7 +32911,7 @@ var PreferredMethod;
|
|
|
32897
32911
|
|
|
32898
32912
|
"use strict";
|
|
32899
32913
|
|
|
32900
|
-
exports
|
|
32914
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32901
32915
|
//# sourceMappingURL=fleet_template.js.map
|
|
32902
32916
|
|
|
32903
32917
|
/***/ }),
|
|
@@ -32907,7 +32921,7 @@ exports.__esModule = true;
|
|
|
32907
32921
|
|
|
32908
32922
|
"use strict";
|
|
32909
32923
|
|
|
32910
|
-
exports
|
|
32924
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32911
32925
|
exports.FloatingInventoryHistoryEventTypes = exports.FloatingInventoryStatus = exports.FloatingInventoryOwnerType = exports.FloatingInventoryCustody = exports.OWNERSHIP_ORIGIN = void 0;
|
|
32912
32926
|
var OWNERSHIP_ORIGIN;
|
|
32913
32927
|
(function (OWNERSHIP_ORIGIN) {
|
|
@@ -32915,7 +32929,7 @@ var OWNERSHIP_ORIGIN;
|
|
|
32915
32929
|
OWNERSHIP_ORIGIN[OWNERSHIP_ORIGIN["WEB_API"] = 2] = "WEB_API";
|
|
32916
32930
|
OWNERSHIP_ORIGIN[OWNERSHIP_ORIGIN["SERVICES_API"] = 3] = "SERVICES_API";
|
|
32917
32931
|
OWNERSHIP_ORIGIN[OWNERSHIP_ORIGIN["FLOATING_INVENTORY_APP"] = 4] = "FLOATING_INVENTORY_APP";
|
|
32918
|
-
})(OWNERSHIP_ORIGIN
|
|
32932
|
+
})(OWNERSHIP_ORIGIN || (exports.OWNERSHIP_ORIGIN = OWNERSHIP_ORIGIN = {}));
|
|
32919
32933
|
var FloatingInventoryCustody;
|
|
32920
32934
|
(function (FloatingInventoryCustody) {
|
|
32921
32935
|
FloatingInventoryCustody[FloatingInventoryCustody["UNKNOWN"] = 0] = "UNKNOWN";
|
|
@@ -32924,19 +32938,19 @@ var FloatingInventoryCustody;
|
|
|
32924
32938
|
FloatingInventoryCustody[FloatingInventoryCustody["CUSTOMER"] = 3] = "CUSTOMER";
|
|
32925
32939
|
FloatingInventoryCustody[FloatingInventoryCustody["MISSING"] = 4] = "MISSING";
|
|
32926
32940
|
FloatingInventoryCustody[FloatingInventoryCustody["VEHICLE"] = 5] = "VEHICLE";
|
|
32927
|
-
})(FloatingInventoryCustody
|
|
32941
|
+
})(FloatingInventoryCustody || (exports.FloatingInventoryCustody = FloatingInventoryCustody = {}));
|
|
32928
32942
|
var FloatingInventoryOwnerType;
|
|
32929
32943
|
(function (FloatingInventoryOwnerType) {
|
|
32930
32944
|
FloatingInventoryOwnerType["DRIVER"] = "driver";
|
|
32931
32945
|
FloatingInventoryOwnerType["TEAM"] = "team";
|
|
32932
32946
|
FloatingInventoryOwnerType["NONE"] = "none";
|
|
32933
|
-
})(FloatingInventoryOwnerType
|
|
32947
|
+
})(FloatingInventoryOwnerType || (exports.FloatingInventoryOwnerType = FloatingInventoryOwnerType = {}));
|
|
32934
32948
|
var FloatingInventoryStatus;
|
|
32935
32949
|
(function (FloatingInventoryStatus) {
|
|
32936
32950
|
FloatingInventoryStatus["AVAILABLE"] = "available";
|
|
32937
32951
|
FloatingInventoryStatus["USED"] = "used";
|
|
32938
32952
|
FloatingInventoryStatus["MISSING"] = "missing";
|
|
32939
|
-
})(FloatingInventoryStatus
|
|
32953
|
+
})(FloatingInventoryStatus || (exports.FloatingInventoryStatus = FloatingInventoryStatus = {}));
|
|
32940
32954
|
var FloatingInventoryHistoryEventTypes;
|
|
32941
32955
|
(function (FloatingInventoryHistoryEventTypes) {
|
|
32942
32956
|
FloatingInventoryHistoryEventTypes["CREATED"] = "created";
|
|
@@ -32945,7 +32959,7 @@ var FloatingInventoryHistoryEventTypes;
|
|
|
32945
32959
|
FloatingInventoryHistoryEventTypes["REPORTED_MISSING"] = "reported_missing";
|
|
32946
32960
|
FloatingInventoryHistoryEventTypes["ITEM_FOUND"] = "item_found";
|
|
32947
32961
|
FloatingInventoryHistoryEventTypes["MASS_CUSTODY_CHANGE"] = "mass_custody_change";
|
|
32948
|
-
})(FloatingInventoryHistoryEventTypes
|
|
32962
|
+
})(FloatingInventoryHistoryEventTypes || (exports.FloatingInventoryHistoryEventTypes = FloatingInventoryHistoryEventTypes = {}));
|
|
32949
32963
|
//# sourceMappingURL=floating_inventory.js.map
|
|
32950
32964
|
|
|
32951
32965
|
/***/ }),
|
|
@@ -32955,7 +32969,7 @@ var FloatingInventoryHistoryEventTypes;
|
|
|
32955
32969
|
|
|
32956
32970
|
"use strict";
|
|
32957
32971
|
|
|
32958
|
-
exports
|
|
32972
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32959
32973
|
//# sourceMappingURL=franchisee.js.map
|
|
32960
32974
|
|
|
32961
32975
|
/***/ }),
|
|
@@ -32965,7 +32979,7 @@ exports.__esModule = true;
|
|
|
32965
32979
|
|
|
32966
32980
|
"use strict";
|
|
32967
32981
|
|
|
32968
|
-
exports
|
|
32982
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32969
32983
|
//# sourceMappingURL=geocoding.js.map
|
|
32970
32984
|
|
|
32971
32985
|
/***/ }),
|
|
@@ -32975,7 +32989,7 @@ exports.__esModule = true;
|
|
|
32975
32989
|
|
|
32976
32990
|
"use strict";
|
|
32977
32991
|
|
|
32978
|
-
exports
|
|
32992
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32979
32993
|
//# sourceMappingURL=handling_units.js.map
|
|
32980
32994
|
|
|
32981
32995
|
/***/ }),
|
|
@@ -32985,7 +32999,7 @@ exports.__esModule = true;
|
|
|
32985
32999
|
|
|
32986
33000
|
"use strict";
|
|
32987
33001
|
|
|
32988
|
-
exports
|
|
33002
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32989
33003
|
exports.IntegrationName = void 0;
|
|
32990
33004
|
var IntegrationName;
|
|
32991
33005
|
(function (IntegrationName) {
|
|
@@ -32994,7 +33008,7 @@ var IntegrationName;
|
|
|
32994
33008
|
IntegrationName[IntegrationName["Arcos"] = 3] = "Arcos";
|
|
32995
33009
|
IntegrationName[IntegrationName["LeroyMerlin"] = 4] = "LeroyMerlin";
|
|
32996
33010
|
IntegrationName[IntegrationName["Salesforce"] = 5] = "Salesforce";
|
|
32997
|
-
})(IntegrationName
|
|
33011
|
+
})(IntegrationName || (exports.IntegrationName = IntegrationName = {}));
|
|
32998
33012
|
//# sourceMappingURL=integration.js.map
|
|
32999
33013
|
|
|
33000
33014
|
/***/ }),
|
|
@@ -33004,14 +33018,14 @@ var IntegrationName;
|
|
|
33004
33018
|
|
|
33005
33019
|
"use strict";
|
|
33006
33020
|
|
|
33007
|
-
exports
|
|
33021
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33008
33022
|
exports.KEYSET_PAGINATION_VER = exports.KeysetPaginationPageAction = void 0;
|
|
33009
33023
|
var KeysetPaginationPageAction;
|
|
33010
33024
|
(function (KeysetPaginationPageAction) {
|
|
33011
33025
|
KeysetPaginationPageAction["NEXT"] = "next";
|
|
33012
33026
|
KeysetPaginationPageAction["NEXT_ONLY"] = "next_only";
|
|
33013
33027
|
KeysetPaginationPageAction["PREVIOUS"] = "previous";
|
|
33014
|
-
})(KeysetPaginationPageAction
|
|
33028
|
+
})(KeysetPaginationPageAction || (exports.KeysetPaginationPageAction = KeysetPaginationPageAction = {}));
|
|
33015
33029
|
exports.KEYSET_PAGINATION_VER = 2;
|
|
33016
33030
|
//# sourceMappingURL=keyset_pagination.js.map
|
|
33017
33031
|
|
|
@@ -33022,7 +33036,7 @@ exports.KEYSET_PAGINATION_VER = 2;
|
|
|
33022
33036
|
|
|
33023
33037
|
"use strict";
|
|
33024
33038
|
|
|
33025
|
-
exports
|
|
33039
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33026
33040
|
//# sourceMappingURL=language.js.map
|
|
33027
33041
|
|
|
33028
33042
|
/***/ }),
|
|
@@ -33032,7 +33046,7 @@ exports.__esModule = true;
|
|
|
33032
33046
|
|
|
33033
33047
|
"use strict";
|
|
33034
33048
|
|
|
33035
|
-
exports
|
|
33049
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33036
33050
|
//# sourceMappingURL=location.js.map
|
|
33037
33051
|
|
|
33038
33052
|
/***/ }),
|
|
@@ -33042,7 +33056,7 @@ exports.__esModule = true;
|
|
|
33042
33056
|
|
|
33043
33057
|
"use strict";
|
|
33044
33058
|
|
|
33045
|
-
exports
|
|
33059
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33046
33060
|
//# sourceMappingURL=mapbox.js.map
|
|
33047
33061
|
|
|
33048
33062
|
/***/ }),
|
|
@@ -33052,7 +33066,7 @@ exports.__esModule = true;
|
|
|
33052
33066
|
|
|
33053
33067
|
"use strict";
|
|
33054
33068
|
|
|
33055
|
-
exports
|
|
33069
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33056
33070
|
exports.Origin = exports.EntitySubType = exports.EntityType = void 0;
|
|
33057
33071
|
var EntityType;
|
|
33058
33072
|
(function (EntityType) {
|
|
@@ -33063,17 +33077,17 @@ var EntityType;
|
|
|
33063
33077
|
EntityType["CHOICE"] = "choice";
|
|
33064
33078
|
EntityType["OPTION"] = "option";
|
|
33065
33079
|
EntityType["PICKER"] = "picker";
|
|
33066
|
-
})(EntityType
|
|
33080
|
+
})(EntityType || (exports.EntityType = EntityType = {}));
|
|
33067
33081
|
var EntitySubType;
|
|
33068
33082
|
(function (EntitySubType) {
|
|
33069
33083
|
EntitySubType["SIZE"] = "size";
|
|
33070
33084
|
EntitySubType["PICKER_OPTION"] = "picker_option";
|
|
33071
|
-
})(EntitySubType
|
|
33085
|
+
})(EntitySubType || (exports.EntitySubType = EntitySubType = {}));
|
|
33072
33086
|
var Origin;
|
|
33073
33087
|
(function (Origin) {
|
|
33074
33088
|
Origin["MANUAL"] = "manual";
|
|
33075
33089
|
Origin["SYSTEM"] = "system";
|
|
33076
|
-
})(Origin
|
|
33090
|
+
})(Origin || (exports.Origin = Origin = {}));
|
|
33077
33091
|
//# sourceMappingURL=menu.js.map
|
|
33078
33092
|
|
|
33079
33093
|
/***/ }),
|
|
@@ -33083,14 +33097,14 @@ var Origin;
|
|
|
33083
33097
|
|
|
33084
33098
|
"use strict";
|
|
33085
33099
|
|
|
33086
|
-
exports
|
|
33100
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33087
33101
|
exports.EnvironmentTypes = exports.SubscriptionTypes = exports.PrinterTypes = void 0;
|
|
33088
33102
|
var PrinterTypes;
|
|
33089
33103
|
(function (PrinterTypes) {
|
|
33090
33104
|
PrinterTypes["DEFAULT"] = "";
|
|
33091
33105
|
PrinterTypes["THREE_INCH"] = "3inch";
|
|
33092
33106
|
PrinterTypes["TWO_INCH"] = "2inch";
|
|
33093
|
-
})(PrinterTypes
|
|
33107
|
+
})(PrinterTypes || (exports.PrinterTypes = PrinterTypes = {}));
|
|
33094
33108
|
var SubscriptionTypes;
|
|
33095
33109
|
(function (SubscriptionTypes) {
|
|
33096
33110
|
SubscriptionTypes[SubscriptionTypes["TEST"] = -1] = "TEST";
|
|
@@ -33107,7 +33121,7 @@ var SubscriptionTypes;
|
|
|
33107
33121
|
SubscriptionTypes[SubscriptionTypes["BLOCKED_UNPAID"] = 14] = "BLOCKED_UNPAID";
|
|
33108
33122
|
SubscriptionTypes[SubscriptionTypes["STRIPE"] = 17] = "STRIPE";
|
|
33109
33123
|
SubscriptionTypes[SubscriptionTypes["ONE_TO_MANY"] = 19] = "ONE_TO_MANY";
|
|
33110
|
-
})(SubscriptionTypes
|
|
33124
|
+
})(SubscriptionTypes || (exports.SubscriptionTypes = SubscriptionTypes = {}));
|
|
33111
33125
|
var EnvironmentTypes;
|
|
33112
33126
|
(function (EnvironmentTypes) {
|
|
33113
33127
|
EnvironmentTypes[EnvironmentTypes["Production"] = 0] = "Production";
|
|
@@ -33115,7 +33129,7 @@ var EnvironmentTypes;
|
|
|
33115
33129
|
EnvironmentTypes[EnvironmentTypes["Internal"] = 2] = "Internal";
|
|
33116
33130
|
EnvironmentTypes[EnvironmentTypes["Carrier"] = 3] = "Carrier";
|
|
33117
33131
|
EnvironmentTypes[EnvironmentTypes["Template"] = 4] = "Template";
|
|
33118
|
-
})(EnvironmentTypes
|
|
33132
|
+
})(EnvironmentTypes || (exports.EnvironmentTypes = EnvironmentTypes = {}));
|
|
33119
33133
|
//# sourceMappingURL=merchant.js.map
|
|
33120
33134
|
|
|
33121
33135
|
/***/ }),
|
|
@@ -33125,7 +33139,7 @@ var EnvironmentTypes;
|
|
|
33125
33139
|
|
|
33126
33140
|
"use strict";
|
|
33127
33141
|
|
|
33128
|
-
exports
|
|
33142
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33129
33143
|
exports.DynamicCapacityValuesOptions = exports.EndOfWeekDay = exports.GrabMode = exports.SmsProvider = exports.SharingMode = exports.ChainOfCustodyType = exports.TipType = exports.FormDisplayMode = exports.HourFormat = exports.FuturePeriod = void 0;
|
|
33130
33144
|
var FuturePeriod;
|
|
33131
33145
|
(function (FuturePeriod) {
|
|
@@ -33136,31 +33150,31 @@ var FuturePeriod;
|
|
|
33136
33150
|
FuturePeriod[FuturePeriod["forever_and_ever"] = 4] = "forever_and_ever";
|
|
33137
33151
|
FuturePeriod[FuturePeriod["custom"] = 5] = "custom";
|
|
33138
33152
|
FuturePeriod[FuturePeriod["all_open_tasks"] = 6] = "all_open_tasks";
|
|
33139
|
-
})(FuturePeriod
|
|
33153
|
+
})(FuturePeriod || (exports.FuturePeriod = FuturePeriod = {}));
|
|
33140
33154
|
var HourFormat;
|
|
33141
33155
|
(function (HourFormat) {
|
|
33142
33156
|
HourFormat[HourFormat["Default"] = 0] = "Default";
|
|
33143
33157
|
HourFormat[HourFormat["TwelveHours"] = 1] = "TwelveHours";
|
|
33144
33158
|
HourFormat[HourFormat["TwentyFourHours"] = 2] = "TwentyFourHours";
|
|
33145
|
-
})(HourFormat
|
|
33159
|
+
})(HourFormat || (exports.HourFormat = HourFormat = {}));
|
|
33146
33160
|
var FormDisplayMode;
|
|
33147
33161
|
(function (FormDisplayMode) {
|
|
33148
33162
|
FormDisplayMode[FormDisplayMode["MANUAL"] = 0] = "MANUAL";
|
|
33149
33163
|
FormDisplayMode[FormDisplayMode["AFTER_CHECK_IN"] = 1] = "AFTER_CHECK_IN";
|
|
33150
33164
|
FormDisplayMode[FormDisplayMode["BEFORE_CHECKOUT"] = 2] = "BEFORE_CHECKOUT";
|
|
33151
|
-
})(FormDisplayMode
|
|
33165
|
+
})(FormDisplayMode || (exports.FormDisplayMode = FormDisplayMode = {}));
|
|
33152
33166
|
var TipType;
|
|
33153
33167
|
(function (TipType) {
|
|
33154
33168
|
TipType[TipType["PERCENT"] = 0] = "PERCENT";
|
|
33155
33169
|
TipType[TipType["MONEY"] = 1] = "MONEY";
|
|
33156
|
-
})(TipType
|
|
33170
|
+
})(TipType || (exports.TipType = TipType = {}));
|
|
33157
33171
|
var ChainOfCustodyType;
|
|
33158
33172
|
(function (ChainOfCustodyType) {
|
|
33159
33173
|
ChainOfCustodyType[ChainOfCustodyType["WEAK"] = 0] = "WEAK";
|
|
33160
33174
|
ChainOfCustodyType[ChainOfCustodyType["STRONG"] = 1] = "STRONG";
|
|
33161
33175
|
ChainOfCustodyType[ChainOfCustodyType["NONE"] = 2] = "NONE";
|
|
33162
33176
|
ChainOfCustodyType[ChainOfCustodyType["UNLOAD"] = 3] = "UNLOAD";
|
|
33163
|
-
})(ChainOfCustodyType
|
|
33177
|
+
})(ChainOfCustodyType || (exports.ChainOfCustodyType = ChainOfCustodyType = {}));
|
|
33164
33178
|
var SharingMode;
|
|
33165
33179
|
(function (SharingMode) {
|
|
33166
33180
|
SharingMode[SharingMode["ALL"] = 0] = "ALL";
|
|
@@ -33168,18 +33182,18 @@ var SharingMode;
|
|
|
33168
33182
|
SharingMode[SharingMode["PHONE_ONLY"] = 2] = "PHONE_ONLY";
|
|
33169
33183
|
SharingMode[SharingMode["NO_SHARING"] = 3] = "NO_SHARING";
|
|
33170
33184
|
SharingMode[SharingMode["WEBHOOKS_ONLY"] = 4] = "WEBHOOKS_ONLY";
|
|
33171
|
-
})(SharingMode
|
|
33185
|
+
})(SharingMode || (exports.SharingMode = SharingMode = {}));
|
|
33172
33186
|
var SmsProvider;
|
|
33173
33187
|
(function (SmsProvider) {
|
|
33174
33188
|
SmsProvider[SmsProvider["Twilio"] = 0] = "Twilio";
|
|
33175
33189
|
SmsProvider[SmsProvider["Nexmo"] = 1] = "Nexmo";
|
|
33176
|
-
})(SmsProvider
|
|
33190
|
+
})(SmsProvider || (exports.SmsProvider = SmsProvider = {}));
|
|
33177
33191
|
var GrabMode;
|
|
33178
33192
|
(function (GrabMode) {
|
|
33179
33193
|
GrabMode[GrabMode["OFF"] = 0] = "OFF";
|
|
33180
33194
|
GrabMode[GrabMode["AUTOMATIC"] = 1] = "AUTOMATIC";
|
|
33181
33195
|
GrabMode[GrabMode["ON_DEMAND"] = 2] = "ON_DEMAND";
|
|
33182
|
-
})(GrabMode
|
|
33196
|
+
})(GrabMode || (exports.GrabMode = GrabMode = {}));
|
|
33183
33197
|
var EndOfWeekDay;
|
|
33184
33198
|
(function (EndOfWeekDay) {
|
|
33185
33199
|
EndOfWeekDay[EndOfWeekDay["Friday"] = 0] = "Friday";
|
|
@@ -33189,14 +33203,14 @@ var EndOfWeekDay;
|
|
|
33189
33203
|
EndOfWeekDay[EndOfWeekDay["Tuesday"] = 4] = "Tuesday";
|
|
33190
33204
|
EndOfWeekDay[EndOfWeekDay["Wednesday"] = 5] = "Wednesday";
|
|
33191
33205
|
EndOfWeekDay[EndOfWeekDay["Thursday"] = 6] = "Thursday";
|
|
33192
|
-
})(EndOfWeekDay
|
|
33206
|
+
})(EndOfWeekDay || (exports.EndOfWeekDay = EndOfWeekDay = {}));
|
|
33193
33207
|
var DynamicCapacityValuesOptions;
|
|
33194
33208
|
(function (DynamicCapacityValuesOptions) {
|
|
33195
33209
|
DynamicCapacityValuesOptions[DynamicCapacityValuesOptions["OFF"] = 0] = "OFF";
|
|
33196
33210
|
DynamicCapacityValuesOptions[DynamicCapacityValuesOptions["ALL"] = 1] = "ALL";
|
|
33197
33211
|
DynamicCapacityValuesOptions[DynamicCapacityValuesOptions["CURRENT_LOAD"] = 2] = "CURRENT_LOAD";
|
|
33198
33212
|
DynamicCapacityValuesOptions[DynamicCapacityValuesOptions["EXPECTED_PICKUP"] = 3] = "EXPECTED_PICKUP";
|
|
33199
|
-
})(DynamicCapacityValuesOptions
|
|
33213
|
+
})(DynamicCapacityValuesOptions || (exports.DynamicCapacityValuesOptions = DynamicCapacityValuesOptions = {}));
|
|
33200
33214
|
//# sourceMappingURL=merchant_configuration.js.map
|
|
33201
33215
|
|
|
33202
33216
|
/***/ }),
|
|
@@ -33206,7 +33220,7 @@ var DynamicCapacityValuesOptions;
|
|
|
33206
33220
|
|
|
33207
33221
|
"use strict";
|
|
33208
33222
|
|
|
33209
|
-
exports
|
|
33223
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33210
33224
|
//# sourceMappingURL=merchant_prototypes.js.map
|
|
33211
33225
|
|
|
33212
33226
|
/***/ }),
|
|
@@ -33216,13 +33230,13 @@ exports.__esModule = true;
|
|
|
33216
33230
|
|
|
33217
33231
|
"use strict";
|
|
33218
33232
|
|
|
33219
|
-
exports
|
|
33233
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33220
33234
|
exports.MerchantSecretsActions = exports.MerchantSecretType = void 0;
|
|
33221
33235
|
var MerchantSecretType;
|
|
33222
33236
|
(function (MerchantSecretType) {
|
|
33223
33237
|
MerchantSecretType[MerchantSecretType["STRING"] = 0] = "STRING";
|
|
33224
33238
|
MerchantSecretType[MerchantSecretType["JSON"] = 1] = "JSON";
|
|
33225
|
-
})(MerchantSecretType
|
|
33239
|
+
})(MerchantSecretType || (exports.MerchantSecretType = MerchantSecretType = {}));
|
|
33226
33240
|
var MerchantSecretsActions;
|
|
33227
33241
|
(function (MerchantSecretsActions) {
|
|
33228
33242
|
MerchantSecretsActions["CREATE"] = "merchant_secrets:create";
|
|
@@ -33230,7 +33244,7 @@ var MerchantSecretsActions;
|
|
|
33230
33244
|
MerchantSecretsActions["FIND"] = "merchant_secrets:find";
|
|
33231
33245
|
MerchantSecretsActions["BULK_FIND"] = "merchant_secrets:bulkFind";
|
|
33232
33246
|
MerchantSecretsActions["DELETE"] = "merchant_secrets:delete";
|
|
33233
|
-
})(MerchantSecretsActions
|
|
33247
|
+
})(MerchantSecretsActions || (exports.MerchantSecretsActions = MerchantSecretsActions = {}));
|
|
33234
33248
|
//# sourceMappingURL=merchant_secrets_service.js.map
|
|
33235
33249
|
|
|
33236
33250
|
/***/ }),
|
|
@@ -33240,12 +33254,12 @@ var MerchantSecretsActions;
|
|
|
33240
33254
|
|
|
33241
33255
|
"use strict";
|
|
33242
33256
|
|
|
33243
|
-
exports
|
|
33257
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33244
33258
|
exports.SubscriptionNotificationType = exports.SubscriptionType = void 0;
|
|
33245
33259
|
var SubscriptionType;
|
|
33246
33260
|
(function (SubscriptionType) {
|
|
33247
33261
|
SubscriptionType[SubscriptionType["Email"] = 0] = "Email";
|
|
33248
|
-
})(SubscriptionType
|
|
33262
|
+
})(SubscriptionType || (exports.SubscriptionType = SubscriptionType = {}));
|
|
33249
33263
|
var SubscriptionNotificationType;
|
|
33250
33264
|
(function (SubscriptionNotificationType) {
|
|
33251
33265
|
SubscriptionNotificationType[SubscriptionNotificationType["InvalidInventory"] = 0] = "InvalidInventory";
|
|
@@ -33253,7 +33267,7 @@ var SubscriptionNotificationType;
|
|
|
33253
33267
|
SubscriptionNotificationType[SubscriptionNotificationType["WebhookFailures"] = 2] = "WebhookFailures";
|
|
33254
33268
|
SubscriptionNotificationType[SubscriptionNotificationType["MenuIssue"] = 3] = "MenuIssue";
|
|
33255
33269
|
SubscriptionNotificationType[SubscriptionNotificationType["IntegrationPollingError"] = 4] = "IntegrationPollingError";
|
|
33256
|
-
})(SubscriptionNotificationType
|
|
33270
|
+
})(SubscriptionNotificationType || (exports.SubscriptionNotificationType = SubscriptionNotificationType = {}));
|
|
33257
33271
|
//# sourceMappingURL=notification_subscription.js.map
|
|
33258
33272
|
|
|
33259
33273
|
/***/ }),
|
|
@@ -33263,7 +33277,7 @@ var SubscriptionNotificationType;
|
|
|
33263
33277
|
|
|
33264
33278
|
"use strict";
|
|
33265
33279
|
|
|
33266
|
-
exports
|
|
33280
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33267
33281
|
//# sourceMappingURL=notification_template.js.map
|
|
33268
33282
|
|
|
33269
33283
|
/***/ }),
|
|
@@ -33273,14 +33287,14 @@ exports.__esModule = true;
|
|
|
33273
33287
|
|
|
33274
33288
|
"use strict";
|
|
33275
33289
|
|
|
33276
|
-
exports
|
|
33290
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33277
33291
|
exports.NotificationTypes = void 0;
|
|
33278
33292
|
var NotificationTypes;
|
|
33279
33293
|
(function (NotificationTypes) {
|
|
33280
33294
|
NotificationTypes["RatingScreenTitle"] = "rating_screen_title";
|
|
33281
33295
|
NotificationTypes["PostRatingPositiveTitle"] = "post_rating_positive_title";
|
|
33282
33296
|
NotificationTypes["PostRatingNegativeTitle"] = "post_rating_negative_title";
|
|
33283
|
-
})(NotificationTypes
|
|
33297
|
+
})(NotificationTypes || (exports.NotificationTypes = NotificationTypes = {}));
|
|
33284
33298
|
//# sourceMappingURL=notification_type.js.map
|
|
33285
33299
|
|
|
33286
33300
|
/***/ }),
|
|
@@ -33290,7 +33304,7 @@ var NotificationTypes;
|
|
|
33290
33304
|
|
|
33291
33305
|
"use strict";
|
|
33292
33306
|
|
|
33293
|
-
exports
|
|
33307
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33294
33308
|
//# sourceMappingURL=open_fleet.js.map
|
|
33295
33309
|
|
|
33296
33310
|
/***/ }),
|
|
@@ -33300,18 +33314,18 @@ exports.__esModule = true;
|
|
|
33300
33314
|
|
|
33301
33315
|
"use strict";
|
|
33302
33316
|
|
|
33303
|
-
exports
|
|
33317
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33304
33318
|
exports.OptInMethod = exports.OptInType = void 0;
|
|
33305
33319
|
var OptInType;
|
|
33306
33320
|
(function (OptInType) {
|
|
33307
33321
|
OptInType[OptInType["OPT_IN"] = 1] = "OPT_IN";
|
|
33308
33322
|
OptInType[OptInType["OPT_OUT"] = 2] = "OPT_OUT";
|
|
33309
|
-
})(OptInType
|
|
33323
|
+
})(OptInType || (exports.OptInType = OptInType = {}));
|
|
33310
33324
|
var OptInMethod;
|
|
33311
33325
|
(function (OptInMethod) {
|
|
33312
33326
|
OptInMethod[OptInMethod["SMS"] = 1] = "SMS";
|
|
33313
33327
|
OptInMethod[OptInMethod["API"] = 2] = "API";
|
|
33314
|
-
})(OptInMethod
|
|
33328
|
+
})(OptInMethod || (exports.OptInMethod = OptInMethod = {}));
|
|
33315
33329
|
//# sourceMappingURL=opt_in_out_history.js.map
|
|
33316
33330
|
|
|
33317
33331
|
/***/ }),
|
|
@@ -33321,7 +33335,7 @@ var OptInMethod;
|
|
|
33321
33335
|
|
|
33322
33336
|
"use strict";
|
|
33323
33337
|
|
|
33324
|
-
exports
|
|
33338
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33325
33339
|
//# sourceMappingURL=optimization_configuration.js.map
|
|
33326
33340
|
|
|
33327
33341
|
/***/ }),
|
|
@@ -33331,7 +33345,7 @@ exports.__esModule = true;
|
|
|
33331
33345
|
|
|
33332
33346
|
"use strict";
|
|
33333
33347
|
|
|
33334
|
-
exports
|
|
33348
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33335
33349
|
exports.OptimizationEntityType = void 0;
|
|
33336
33350
|
var OptimizationEntityType;
|
|
33337
33351
|
(function (OptimizationEntityType) {
|
|
@@ -33340,7 +33354,7 @@ var OptimizationEntityType;
|
|
|
33340
33354
|
OptimizationEntityType["RouteInfo"] = "route_info";
|
|
33341
33355
|
OptimizationEntityType["Directions"] = "directions";
|
|
33342
33356
|
OptimizationEntityType["UnassignedTask"] = "unassigned_task";
|
|
33343
|
-
})(OptimizationEntityType
|
|
33357
|
+
})(OptimizationEntityType || (exports.OptimizationEntityType = OptimizationEntityType = {}));
|
|
33344
33358
|
//# sourceMappingURL=optimization_result.js.map
|
|
33345
33359
|
|
|
33346
33360
|
/***/ }),
|
|
@@ -33350,13 +33364,13 @@ var OptimizationEntityType;
|
|
|
33350
33364
|
|
|
33351
33365
|
"use strict";
|
|
33352
33366
|
|
|
33353
|
-
exports
|
|
33367
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33354
33368
|
exports.OriginOptions = void 0;
|
|
33355
33369
|
var OriginOptions;
|
|
33356
33370
|
(function (OriginOptions) {
|
|
33357
33371
|
OriginOptions[OriginOptions["Manual"] = 0] = "Manual";
|
|
33358
33372
|
OriginOptions[OriginOptions["Automation"] = 1] = "Automation";
|
|
33359
|
-
})(OriginOptions
|
|
33373
|
+
})(OriginOptions || (exports.OriginOptions = OriginOptions = {}));
|
|
33360
33374
|
//# sourceMappingURL=optimization_simulator.js.map
|
|
33361
33375
|
|
|
33362
33376
|
/***/ }),
|
|
@@ -33366,7 +33380,7 @@ var OriginOptions;
|
|
|
33366
33380
|
|
|
33367
33381
|
"use strict";
|
|
33368
33382
|
|
|
33369
|
-
exports
|
|
33383
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33370
33384
|
exports.OptimizeFor = exports.RouteItemType = exports.OptimizationOrigin = exports.OptimizationResponseType = exports.OPTIMIZATION_TYPE = void 0;
|
|
33371
33385
|
var OPTIMIZATION_TYPE;
|
|
33372
33386
|
(function (OPTIMIZATION_TYPE) {
|
|
@@ -33376,7 +33390,7 @@ var OPTIMIZATION_TYPE;
|
|
|
33376
33390
|
OPTIMIZATION_TYPE[OPTIMIZATION_TYPE["ROUTE_BASED"] = 4] = "ROUTE_BASED";
|
|
33377
33391
|
OPTIMIZATION_TYPE[OPTIMIZATION_TYPE["CREW_BASED"] = 5] = "CREW_BASED";
|
|
33378
33392
|
OPTIMIZATION_TYPE[OPTIMIZATION_TYPE["COMBINED"] = 6] = "COMBINED";
|
|
33379
|
-
})(OPTIMIZATION_TYPE
|
|
33393
|
+
})(OPTIMIZATION_TYPE || (exports.OPTIMIZATION_TYPE = OPTIMIZATION_TYPE = {}));
|
|
33380
33394
|
var OptimizationResponseType;
|
|
33381
33395
|
(function (OptimizationResponseType) {
|
|
33382
33396
|
OptimizationResponseType["RouteInfo"] = "route_info";
|
|
@@ -33385,7 +33399,7 @@ var OptimizationResponseType;
|
|
|
33385
33399
|
OptimizationResponseType["PreassignedBreak"] = "preassigned_break";
|
|
33386
33400
|
OptimizationResponseType["Directions"] = "directions";
|
|
33387
33401
|
OptimizationResponseType["UnassignedTask"] = "unassigned_task";
|
|
33388
|
-
})(OptimizationResponseType
|
|
33402
|
+
})(OptimizationResponseType || (exports.OptimizationResponseType = OptimizationResponseType = {}));
|
|
33389
33403
|
var OptimizationOrigin;
|
|
33390
33404
|
(function (OptimizationOrigin) {
|
|
33391
33405
|
OptimizationOrigin["ROUTE_OPTIMIZATION"] = "route_optimization";
|
|
@@ -33396,16 +33410,16 @@ var OptimizationOrigin;
|
|
|
33396
33410
|
OptimizationOrigin["VRP_AUTO_DISPATCH"] = "vrp_auto_dispatch";
|
|
33397
33411
|
OptimizationOrigin["VRP_AUTO_DISPATCH_QUOTES"] = "vrp_auto_dispatch_quotes";
|
|
33398
33412
|
OptimizationOrigin["QUOTES_CACHE_REFRESH"] = "quotes_cache_refresh";
|
|
33399
|
-
})(OptimizationOrigin
|
|
33413
|
+
})(OptimizationOrigin || (exports.OptimizationOrigin = OptimizationOrigin = {}));
|
|
33400
33414
|
var RouteItemType;
|
|
33401
33415
|
(function (RouteItemType) {
|
|
33402
33416
|
RouteItemType["Break"] = "break";
|
|
33403
|
-
})(RouteItemType
|
|
33417
|
+
})(RouteItemType || (exports.RouteItemType = RouteItemType = {}));
|
|
33404
33418
|
var OptimizeFor;
|
|
33405
33419
|
(function (OptimizeFor) {
|
|
33406
33420
|
OptimizeFor["CUSTOM"] = "custom";
|
|
33407
33421
|
OptimizeFor["NEXT_SHIFT"] = "next_shift";
|
|
33408
|
-
})(OptimizeFor
|
|
33422
|
+
})(OptimizeFor || (exports.OptimizeFor = OptimizeFor = {}));
|
|
33409
33423
|
//# sourceMappingURL=optimization_type.js.map
|
|
33410
33424
|
|
|
33411
33425
|
/***/ }),
|
|
@@ -33415,7 +33429,7 @@ var OptimizeFor;
|
|
|
33415
33429
|
|
|
33416
33430
|
"use strict";
|
|
33417
33431
|
|
|
33418
|
-
exports
|
|
33432
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33419
33433
|
//# sourceMappingURL=package.js.map
|
|
33420
33434
|
|
|
33421
33435
|
/***/ }),
|
|
@@ -33425,13 +33439,13 @@ exports.__esModule = true;
|
|
|
33425
33439
|
|
|
33426
33440
|
"use strict";
|
|
33427
33441
|
|
|
33428
|
-
exports
|
|
33442
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33429
33443
|
exports.ParkingSpotType = void 0;
|
|
33430
33444
|
var ParkingSpotType;
|
|
33431
33445
|
(function (ParkingSpotType) {
|
|
33432
33446
|
ParkingSpotType[ParkingSpotType["Customer"] = 1] = "Customer";
|
|
33433
33447
|
ParkingSpotType[ParkingSpotType["Driver"] = 2] = "Driver";
|
|
33434
|
-
})(ParkingSpotType
|
|
33448
|
+
})(ParkingSpotType || (exports.ParkingSpotType = ParkingSpotType = {}));
|
|
33435
33449
|
//# sourceMappingURL=parking_spot.js.map
|
|
33436
33450
|
|
|
33437
33451
|
/***/ }),
|
|
@@ -33441,7 +33455,7 @@ var ParkingSpotType;
|
|
|
33441
33455
|
|
|
33442
33456
|
"use strict";
|
|
33443
33457
|
|
|
33444
|
-
exports
|
|
33458
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33445
33459
|
//# sourceMappingURL=planned_delivery_window.js.map
|
|
33446
33460
|
|
|
33447
33461
|
/***/ }),
|
|
@@ -33451,7 +33465,7 @@ exports.__esModule = true;
|
|
|
33451
33465
|
|
|
33452
33466
|
"use strict";
|
|
33453
33467
|
|
|
33454
|
-
exports
|
|
33468
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33455
33469
|
//# sourceMappingURL=planned_route.js.map
|
|
33456
33470
|
|
|
33457
33471
|
/***/ }),
|
|
@@ -33461,7 +33475,7 @@ exports.__esModule = true;
|
|
|
33461
33475
|
|
|
33462
33476
|
"use strict";
|
|
33463
33477
|
|
|
33464
|
-
exports
|
|
33478
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33465
33479
|
//# sourceMappingURL=predicate.js.map
|
|
33466
33480
|
|
|
33467
33481
|
/***/ }),
|
|
@@ -33472,7 +33486,7 @@ exports.__esModule = true;
|
|
|
33472
33486
|
"use strict";
|
|
33473
33487
|
|
|
33474
33488
|
var _a;
|
|
33475
|
-
exports
|
|
33489
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33476
33490
|
exports.PRIVILEGES_DEFAULTS = exports.PrivilegeTypes = void 0;
|
|
33477
33491
|
var PrivilegeTypes;
|
|
33478
33492
|
(function (PrivilegeTypes) {
|
|
@@ -33540,7 +33554,7 @@ var PrivilegeTypes;
|
|
|
33540
33554
|
PrivilegeTypes["FLOATING_INVENTORY_TAKE_OWNERSHIP_FROM_DRIVER"] = "floating_inventory_take_ownership_from_driver";
|
|
33541
33555
|
PrivilegeTypes["FLOATING_INVENTORY_TRANSFER_OWNERSHIP_TO_TEAM"] = "floating_inventory_transfer_ownership_to_team";
|
|
33542
33556
|
PrivilegeTypes["IS_CHAT_ADMIN"] = "is_chat_admin";
|
|
33543
|
-
})(PrivilegeTypes
|
|
33557
|
+
})(PrivilegeTypes || (exports.PrivilegeTypes = PrivilegeTypes = {}));
|
|
33544
33558
|
exports.PRIVILEGES_DEFAULTS = (_a = {},
|
|
33545
33559
|
_a[PrivilegeTypes.CANCEL_TASK] = true,
|
|
33546
33560
|
_a[PrivilegeTypes.LOCK_UNLOCK_TASK] = true,
|
|
@@ -33563,18 +33577,18 @@ exports.PRIVILEGES_DEFAULTS = (_a = {},
|
|
|
33563
33577
|
|
|
33564
33578
|
"use strict";
|
|
33565
33579
|
|
|
33566
|
-
exports
|
|
33580
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33567
33581
|
exports.PushNotificationEnvironment = exports.DevicePlatform = void 0;
|
|
33568
33582
|
var DevicePlatform;
|
|
33569
33583
|
(function (DevicePlatform) {
|
|
33570
33584
|
DevicePlatform[DevicePlatform["Android"] = 1] = "Android";
|
|
33571
33585
|
DevicePlatform[DevicePlatform["IOS"] = 2] = "IOS";
|
|
33572
|
-
})(DevicePlatform
|
|
33586
|
+
})(DevicePlatform || (exports.DevicePlatform = DevicePlatform = {}));
|
|
33573
33587
|
var PushNotificationEnvironment;
|
|
33574
33588
|
(function (PushNotificationEnvironment) {
|
|
33575
33589
|
PushNotificationEnvironment[PushNotificationEnvironment["Release"] = 1] = "Release";
|
|
33576
33590
|
PushNotificationEnvironment[PushNotificationEnvironment["Development"] = 2] = "Development";
|
|
33577
|
-
})(PushNotificationEnvironment
|
|
33591
|
+
})(PushNotificationEnvironment || (exports.PushNotificationEnvironment = PushNotificationEnvironment = {}));
|
|
33578
33592
|
//# sourceMappingURL=push_notification_registration.js.map
|
|
33579
33593
|
|
|
33580
33594
|
/***/ }),
|
|
@@ -33584,12 +33598,12 @@ var PushNotificationEnvironment;
|
|
|
33584
33598
|
|
|
33585
33599
|
"use strict";
|
|
33586
33600
|
|
|
33587
|
-
exports
|
|
33601
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33588
33602
|
exports.ApplicationType = void 0;
|
|
33589
33603
|
var ApplicationType;
|
|
33590
33604
|
(function (ApplicationType) {
|
|
33591
33605
|
ApplicationType[ApplicationType["STORE_APP"] = 0] = "STORE_APP";
|
|
33592
|
-
})(ApplicationType
|
|
33606
|
+
})(ApplicationType || (exports.ApplicationType = ApplicationType = {}));
|
|
33593
33607
|
//# sourceMappingURL=push_token_subscription.js.map
|
|
33594
33608
|
|
|
33595
33609
|
/***/ }),
|
|
@@ -33599,7 +33613,7 @@ var ApplicationType;
|
|
|
33599
33613
|
|
|
33600
33614
|
"use strict";
|
|
33601
33615
|
|
|
33602
|
-
exports
|
|
33616
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33603
33617
|
exports.VehicleTypeId = void 0;
|
|
33604
33618
|
var VehicleTypeId;
|
|
33605
33619
|
(function (VehicleTypeId) {
|
|
@@ -33607,7 +33621,7 @@ var VehicleTypeId;
|
|
|
33607
33621
|
VehicleTypeId[VehicleTypeId["Bicycle"] = 2] = "Bicycle";
|
|
33608
33622
|
VehicleTypeId[VehicleTypeId["Car"] = 3] = "Car";
|
|
33609
33623
|
VehicleTypeId[VehicleTypeId["Truck"] = 4] = "Truck";
|
|
33610
|
-
})(VehicleTypeId
|
|
33624
|
+
})(VehicleTypeId || (exports.VehicleTypeId = VehicleTypeId = {}));
|
|
33611
33625
|
//# sourceMappingURL=quote.js.map
|
|
33612
33626
|
|
|
33613
33627
|
/***/ }),
|
|
@@ -33617,25 +33631,25 @@ var VehicleTypeId;
|
|
|
33617
33631
|
|
|
33618
33632
|
"use strict";
|
|
33619
33633
|
|
|
33620
|
-
exports
|
|
33634
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33621
33635
|
exports.RateCardRateBase = exports.RateCardTermType = exports.RateCardEntityType = void 0;
|
|
33622
33636
|
var RateCardEntityType;
|
|
33623
33637
|
(function (RateCardEntityType) {
|
|
33624
33638
|
RateCardEntityType["Fleet"] = "fleet";
|
|
33625
33639
|
RateCardEntityType["DeliveryProvider"] = "delivery_provider";
|
|
33626
|
-
})(RateCardEntityType
|
|
33640
|
+
})(RateCardEntityType || (exports.RateCardEntityType = RateCardEntityType = {}));
|
|
33627
33641
|
var RateCardTermType;
|
|
33628
33642
|
(function (RateCardTermType) {
|
|
33629
33643
|
RateCardTermType["Base"] = "base";
|
|
33630
33644
|
RateCardTermType["Surcharge"] = "surcharge";
|
|
33631
|
-
})(RateCardTermType
|
|
33645
|
+
})(RateCardTermType || (exports.RateCardTermType = RateCardTermType = {}));
|
|
33632
33646
|
var RateCardRateBase;
|
|
33633
33647
|
(function (RateCardRateBase) {
|
|
33634
33648
|
RateCardRateBase["Flat"] = "flat";
|
|
33635
33649
|
RateCardRateBase["Units"] = "units";
|
|
33636
33650
|
RateCardRateBase["Miles"] = "miles";
|
|
33637
33651
|
RateCardRateBase["Weight"] = "weight";
|
|
33638
|
-
})(RateCardRateBase
|
|
33652
|
+
})(RateCardRateBase || (exports.RateCardRateBase = RateCardRateBase = {}));
|
|
33639
33653
|
//# sourceMappingURL=rate_card.js.map
|
|
33640
33654
|
|
|
33641
33655
|
/***/ }),
|
|
@@ -33645,7 +33659,7 @@ var RateCardRateBase;
|
|
|
33645
33659
|
|
|
33646
33660
|
"use strict";
|
|
33647
33661
|
|
|
33648
|
-
exports
|
|
33662
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33649
33663
|
//# sourceMappingURL=rating.js.map
|
|
33650
33664
|
|
|
33651
33665
|
/***/ }),
|
|
@@ -33655,7 +33669,7 @@ exports.__esModule = true;
|
|
|
33655
33669
|
|
|
33656
33670
|
"use strict";
|
|
33657
33671
|
|
|
33658
|
-
exports
|
|
33672
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33659
33673
|
exports.RealtimeEvent = void 0;
|
|
33660
33674
|
var RealtimeEvent;
|
|
33661
33675
|
(function (RealtimeEvent) {
|
|
@@ -33720,8 +33734,9 @@ var RealtimeEvent;
|
|
|
33720
33734
|
RealtimeEvent["WayPointUpdated"] = "way_point:updated";
|
|
33721
33735
|
RealtimeEvent["WayPointViewed"] = "way_point:viewed";
|
|
33722
33736
|
RealtimeEvent["ZipCodesImportDone"] = "zip_codes_import:done";
|
|
33737
|
+
RealtimeEvent["ServiceAreasImportDone"] = "service_areas_import:done";
|
|
33723
33738
|
RealtimeEvent["AsyncOperationStatus"] = "async_operation_status";
|
|
33724
|
-
})(RealtimeEvent
|
|
33739
|
+
})(RealtimeEvent || (exports.RealtimeEvent = RealtimeEvent = {}));
|
|
33725
33740
|
//# sourceMappingURL=realtime_event.js.map
|
|
33726
33741
|
|
|
33727
33742
|
/***/ }),
|
|
@@ -33731,7 +33746,7 @@ var RealtimeEvent;
|
|
|
33731
33746
|
|
|
33732
33747
|
"use strict";
|
|
33733
33748
|
|
|
33734
|
-
exports
|
|
33749
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33735
33750
|
exports.ReasonToCancelTaskType = exports.ReasonOrderType = void 0;
|
|
33736
33751
|
var ReasonOrderType;
|
|
33737
33752
|
(function (ReasonOrderType) {
|
|
@@ -33740,7 +33755,7 @@ var ReasonOrderType;
|
|
|
33740
33755
|
ReasonOrderType[ReasonOrderType["DROPOFF"] = 2] = "DROPOFF";
|
|
33741
33756
|
ReasonOrderType[ReasonOrderType["PICKUP_AND_DROPOFF"] = 3] = "PICKUP_AND_DROPOFF";
|
|
33742
33757
|
ReasonOrderType[ReasonOrderType["CURBSIDE"] = 6] = "CURBSIDE";
|
|
33743
|
-
})(ReasonOrderType
|
|
33758
|
+
})(ReasonOrderType || (exports.ReasonOrderType = ReasonOrderType = {}));
|
|
33744
33759
|
var ReasonToCancelTaskType;
|
|
33745
33760
|
(function (ReasonToCancelTaskType) {
|
|
33746
33761
|
ReasonToCancelTaskType["CUSTOMER_WAS_NOT_AT_DESTINATION"] = "customer_was_not_at_destination";
|
|
@@ -33752,7 +33767,7 @@ var ReasonToCancelTaskType;
|
|
|
33752
33767
|
ReasonToCancelTaskType["RESERVATION_EXPIRED"] = "reservation_expired";
|
|
33753
33768
|
ReasonToCancelTaskType["CUSTOM"] = "custom";
|
|
33754
33769
|
ReasonToCancelTaskType["PRIMARY_ORDER_CANCELLED"] = "primary_order_cancelled";
|
|
33755
|
-
})(ReasonToCancelTaskType
|
|
33770
|
+
})(ReasonToCancelTaskType || (exports.ReasonToCancelTaskType = ReasonToCancelTaskType = {}));
|
|
33756
33771
|
//# sourceMappingURL=reason_to_cancel_task.js.map
|
|
33757
33772
|
|
|
33758
33773
|
/***/ }),
|
|
@@ -33762,7 +33777,7 @@ var ReasonToCancelTaskType;
|
|
|
33762
33777
|
|
|
33763
33778
|
"use strict";
|
|
33764
33779
|
|
|
33765
|
-
exports
|
|
33780
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33766
33781
|
//# sourceMappingURL=reason_to_change_inventory.js.map
|
|
33767
33782
|
|
|
33768
33783
|
/***/ }),
|
|
@@ -33772,7 +33787,7 @@ exports.__esModule = true;
|
|
|
33772
33787
|
|
|
33773
33788
|
"use strict";
|
|
33774
33789
|
|
|
33775
|
-
exports
|
|
33790
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33776
33791
|
//# sourceMappingURL=reason_to_reassign_task.js.map
|
|
33777
33792
|
|
|
33778
33793
|
/***/ }),
|
|
@@ -33782,7 +33797,7 @@ exports.__esModule = true;
|
|
|
33782
33797
|
|
|
33783
33798
|
"use strict";
|
|
33784
33799
|
|
|
33785
|
-
exports
|
|
33800
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33786
33801
|
//# sourceMappingURL=report_preference.js.map
|
|
33787
33802
|
|
|
33788
33803
|
/***/ }),
|
|
@@ -33792,7 +33807,7 @@ exports.__esModule = true;
|
|
|
33792
33807
|
|
|
33793
33808
|
"use strict";
|
|
33794
33809
|
|
|
33795
|
-
exports
|
|
33810
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33796
33811
|
exports.FILTER_TYPES = exports.UserRole = exports.WIDGET_GROUPING_TYPES = exports.NAV_MENU_HIERARCHY_TYPES = exports.LAYOUT_SOURCE = exports.NAV_MENU_TYPES = exports.TARGET_OPERATORS = exports.COMPONENT_TYPES = void 0;
|
|
33797
33812
|
var COMPONENT_TYPES;
|
|
33798
33813
|
(function (COMPONENT_TYPES) {
|
|
@@ -33805,28 +33820,28 @@ var COMPONENT_TYPES;
|
|
|
33805
33820
|
COMPONENT_TYPES[COMPONENT_TYPES["UNSTACKED_SEGMENT_BAR"] = 6] = "UNSTACKED_SEGMENT_BAR";
|
|
33806
33821
|
COMPONENT_TYPES[COMPONENT_TYPES["NON_TIME_BASED_STACKED_SEGMENT_BAR"] = 7] = "NON_TIME_BASED_STACKED_SEGMENT_BAR";
|
|
33807
33822
|
COMPONENT_TYPES[COMPONENT_TYPES["MULTIPLE_QUERIES"] = 8] = "MULTIPLE_QUERIES";
|
|
33808
|
-
})(COMPONENT_TYPES
|
|
33823
|
+
})(COMPONENT_TYPES || (exports.COMPONENT_TYPES = COMPONENT_TYPES = {}));
|
|
33809
33824
|
var TARGET_OPERATORS;
|
|
33810
33825
|
(function (TARGET_OPERATORS) {
|
|
33811
33826
|
TARGET_OPERATORS[TARGET_OPERATORS["BIGGER"] = 0] = "BIGGER";
|
|
33812
33827
|
TARGET_OPERATORS[TARGET_OPERATORS["SMALLER"] = 1] = "SMALLER";
|
|
33813
|
-
})(TARGET_OPERATORS
|
|
33828
|
+
})(TARGET_OPERATORS || (exports.TARGET_OPERATORS = TARGET_OPERATORS = {}));
|
|
33814
33829
|
var NAV_MENU_TYPES;
|
|
33815
33830
|
(function (NAV_MENU_TYPES) {
|
|
33816
33831
|
NAV_MENU_TYPES[NAV_MENU_TYPES["MERCHANTS_TEAMS"] = 0] = "MERCHANTS_TEAMS";
|
|
33817
33832
|
NAV_MENU_TYPES[NAV_MENU_TYPES["TEAMS"] = 1] = "TEAMS";
|
|
33818
|
-
})(NAV_MENU_TYPES
|
|
33833
|
+
})(NAV_MENU_TYPES || (exports.NAV_MENU_TYPES = NAV_MENU_TYPES = {}));
|
|
33819
33834
|
var LAYOUT_SOURCE;
|
|
33820
33835
|
(function (LAYOUT_SOURCE) {
|
|
33821
33836
|
LAYOUT_SOURCE[LAYOUT_SOURCE["INSIGHT_APP"] = 0] = "INSIGHT_APP";
|
|
33822
33837
|
LAYOUT_SOURCE[LAYOUT_SOURCE["BI_DASHBOARD"] = 1] = "BI_DASHBOARD";
|
|
33823
|
-
})(LAYOUT_SOURCE
|
|
33838
|
+
})(LAYOUT_SOURCE || (exports.LAYOUT_SOURCE = LAYOUT_SOURCE = {}));
|
|
33824
33839
|
var NAV_MENU_HIERARCHY_TYPES;
|
|
33825
33840
|
(function (NAV_MENU_HIERARCHY_TYPES) {
|
|
33826
33841
|
NAV_MENU_HIERARCHY_TYPES[NAV_MENU_HIERARCHY_TYPES["GLOBAL"] = 0] = "GLOBAL";
|
|
33827
33842
|
NAV_MENU_HIERARCHY_TYPES[NAV_MENU_HIERARCHY_TYPES["MERCHANT"] = 1] = "MERCHANT";
|
|
33828
33843
|
NAV_MENU_HIERARCHY_TYPES[NAV_MENU_HIERARCHY_TYPES["TEAM"] = 2] = "TEAM";
|
|
33829
|
-
})(NAV_MENU_HIERARCHY_TYPES
|
|
33844
|
+
})(NAV_MENU_HIERARCHY_TYPES || (exports.NAV_MENU_HIERARCHY_TYPES = NAV_MENU_HIERARCHY_TYPES = {}));
|
|
33830
33845
|
var WIDGET_GROUPING_TYPES;
|
|
33831
33846
|
(function (WIDGET_GROUPING_TYPES) {
|
|
33832
33847
|
WIDGET_GROUPING_TYPES["GROUP_BY_ORIGIN"] = "GROUP_BY_ORIGIN";
|
|
@@ -33841,19 +33856,19 @@ var WIDGET_GROUPING_TYPES;
|
|
|
33841
33856
|
WIDGET_GROUPING_TYPES["GROUP_BY_FLEET_WITH_INTERNAL_FLEETS"] = "GROUP_BY_FLEET_WITH_INTERNAL_FLEETS";
|
|
33842
33857
|
WIDGET_GROUPING_TYPES["GROUP_BY_RATING"] = "GROUP_BY_RATING";
|
|
33843
33858
|
WIDGET_GROUPING_TYPES["GROUP_BY_DRIVER"] = "GROUP_BY_DRIVER";
|
|
33844
|
-
})(WIDGET_GROUPING_TYPES
|
|
33859
|
+
})(WIDGET_GROUPING_TYPES || (exports.WIDGET_GROUPING_TYPES = WIDGET_GROUPING_TYPES = {}));
|
|
33845
33860
|
var UserRole;
|
|
33846
33861
|
(function (UserRole) {
|
|
33847
33862
|
UserRole[UserRole["Partner"] = 0] = "Partner";
|
|
33848
33863
|
UserRole[UserRole["Admin"] = 1] = "Admin";
|
|
33849
33864
|
UserRole[UserRole["Dispatcher"] = 2] = "Dispatcher";
|
|
33850
|
-
})(UserRole
|
|
33865
|
+
})(UserRole || (exports.UserRole = UserRole = {}));
|
|
33851
33866
|
var FILTER_TYPES;
|
|
33852
33867
|
(function (FILTER_TYPES) {
|
|
33853
33868
|
FILTER_TYPES["TIME_RANGE"] = "TIME_RANGE";
|
|
33854
33869
|
FILTER_TYPES["COMPARE_RANGE"] = "COMPARE_RANGE";
|
|
33855
33870
|
FILTER_TYPES["FLEETS"] = "FLEETS";
|
|
33856
|
-
})(FILTER_TYPES
|
|
33871
|
+
})(FILTER_TYPES || (exports.FILTER_TYPES = FILTER_TYPES = {}));
|
|
33857
33872
|
//# sourceMappingURL=reports.js.map
|
|
33858
33873
|
|
|
33859
33874
|
/***/ }),
|
|
@@ -33863,7 +33878,7 @@ var FILTER_TYPES;
|
|
|
33863
33878
|
|
|
33864
33879
|
"use strict";
|
|
33865
33880
|
|
|
33866
|
-
exports
|
|
33881
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33867
33882
|
exports.RequestOrigin = void 0;
|
|
33868
33883
|
var RequestOrigin;
|
|
33869
33884
|
(function (RequestOrigin) {
|
|
@@ -33875,7 +33890,7 @@ var RequestOrigin;
|
|
|
33875
33890
|
RequestOrigin[RequestOrigin["OpenFleetApi"] = 6] = "OpenFleetApi";
|
|
33876
33891
|
RequestOrigin[RequestOrigin["FloatingInventoryApp"] = 7] = "FloatingInventoryApp";
|
|
33877
33892
|
RequestOrigin[RequestOrigin["AutomationPlatform"] = 8] = "AutomationPlatform";
|
|
33878
|
-
})(RequestOrigin
|
|
33893
|
+
})(RequestOrigin || (exports.RequestOrigin = RequestOrigin = {}));
|
|
33879
33894
|
//# sourceMappingURL=request_origin.js.map
|
|
33880
33895
|
|
|
33881
33896
|
/***/ }),
|
|
@@ -33885,7 +33900,7 @@ var RequestOrigin;
|
|
|
33885
33900
|
|
|
33886
33901
|
"use strict";
|
|
33887
33902
|
|
|
33888
|
-
exports
|
|
33903
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33889
33904
|
//# sourceMappingURL=route-settings.js.map
|
|
33890
33905
|
|
|
33891
33906
|
/***/ }),
|
|
@@ -33895,7 +33910,7 @@ exports.__esModule = true;
|
|
|
33895
33910
|
|
|
33896
33911
|
"use strict";
|
|
33897
33912
|
|
|
33898
|
-
exports
|
|
33913
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33899
33914
|
//# sourceMappingURL=route_kpi.js.map
|
|
33900
33915
|
|
|
33901
33916
|
/***/ }),
|
|
@@ -33905,7 +33920,7 @@ exports.__esModule = true;
|
|
|
33905
33920
|
|
|
33906
33921
|
"use strict";
|
|
33907
33922
|
|
|
33908
|
-
exports
|
|
33923
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33909
33924
|
//# sourceMappingURL=route_optimization.js.map
|
|
33910
33925
|
|
|
33911
33926
|
/***/ }),
|
|
@@ -33915,7 +33930,7 @@ exports.__esModule = true;
|
|
|
33915
33930
|
|
|
33916
33931
|
"use strict";
|
|
33917
33932
|
|
|
33918
|
-
exports
|
|
33933
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33919
33934
|
//# sourceMappingURL=index.js.map
|
|
33920
33935
|
|
|
33921
33936
|
/***/ }),
|
|
@@ -33925,7 +33940,7 @@ exports.__esModule = true;
|
|
|
33925
33940
|
|
|
33926
33941
|
"use strict";
|
|
33927
33942
|
|
|
33928
|
-
exports
|
|
33943
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33929
33944
|
//# sourceMappingURL=rpc.js.map
|
|
33930
33945
|
|
|
33931
33946
|
/***/ }),
|
|
@@ -33935,7 +33950,7 @@ exports.__esModule = true;
|
|
|
33935
33950
|
|
|
33936
33951
|
"use strict";
|
|
33937
33952
|
|
|
33938
|
-
exports
|
|
33953
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33939
33954
|
exports.OFFLINE_ONLINE_EVENT_TYPES = exports.RUN_HISTORY_TYPES = exports.HOME_EVENT_TYPES = exports.RunStartAndEndMethods = void 0;
|
|
33940
33955
|
var RunStartAndEndMethods;
|
|
33941
33956
|
(function (RunStartAndEndMethods) {
|
|
@@ -33959,7 +33974,7 @@ var RunStartAndEndMethods;
|
|
|
33959
33974
|
RunStartAndEndMethods[RunStartAndEndMethods["BULK_CLOSE_FROM_DISPATCH"] = 17] = "BULK_CLOSE_FROM_DISPATCH";
|
|
33960
33975
|
RunStartAndEndMethods[RunStartAndEndMethods["FROM_AUTO_END_RUN_WITH_NO_TASKS"] = 18] = "FROM_AUTO_END_RUN_WITH_NO_TASKS";
|
|
33961
33976
|
RunStartAndEndMethods[RunStartAndEndMethods["FROM_AUTO_END_RUN_WITH_NO_TASKS_AFTER_CANCEL"] = 19] = "FROM_AUTO_END_RUN_WITH_NO_TASKS_AFTER_CANCEL";
|
|
33962
|
-
})(RunStartAndEndMethods
|
|
33977
|
+
})(RunStartAndEndMethods || (exports.RunStartAndEndMethods = RunStartAndEndMethods = {}));
|
|
33963
33978
|
var HOME_EVENT_TYPES;
|
|
33964
33979
|
(function (HOME_EVENT_TYPES) {
|
|
33965
33980
|
HOME_EVENT_TYPES[HOME_EVENT_TYPES["AUTOMATIC_FROM_APP_GEOFENCE"] = 1] = "AUTOMATIC_FROM_APP_GEOFENCE";
|
|
@@ -33971,7 +33986,7 @@ var HOME_EVENT_TYPES;
|
|
|
33971
33986
|
HOME_EVENT_TYPES[HOME_EVENT_TYPES["AUTOMATIC_FROM_APP_BEACON"] = 7] = "AUTOMATIC_FROM_APP_BEACON";
|
|
33972
33987
|
HOME_EVENT_TYPES[HOME_EVENT_TYPES["AUTOMATIC_FROM_ROLE_CHANGE"] = 8] = "AUTOMATIC_FROM_ROLE_CHANGE";
|
|
33973
33988
|
HOME_EVENT_TYPES[HOME_EVENT_TYPES["FROM_END_SHIFT"] = 9] = "FROM_END_SHIFT";
|
|
33974
|
-
})(HOME_EVENT_TYPES
|
|
33989
|
+
})(HOME_EVENT_TYPES || (exports.HOME_EVENT_TYPES = HOME_EVENT_TYPES = {}));
|
|
33975
33990
|
var RUN_HISTORY_TYPES;
|
|
33976
33991
|
(function (RUN_HISTORY_TYPES) {
|
|
33977
33992
|
RUN_HISTORY_TYPES[RUN_HISTORY_TYPES["ALERT"] = 0] = "ALERT";
|
|
@@ -33979,12 +33994,12 @@ var RUN_HISTORY_TYPES;
|
|
|
33979
33994
|
RUN_HISTORY_TYPES[RUN_HISTORY_TYPES["OFFLINE_ONLINE_EVENT"] = 2] = "OFFLINE_ONLINE_EVENT";
|
|
33980
33995
|
RUN_HISTORY_TYPES[RUN_HISTORY_TYPES["SHIFT"] = 3] = "SHIFT";
|
|
33981
33996
|
RUN_HISTORY_TYPES[RUN_HISTORY_TYPES["TASK_HISTORY"] = 4] = "TASK_HISTORY";
|
|
33982
|
-
})(RUN_HISTORY_TYPES
|
|
33997
|
+
})(RUN_HISTORY_TYPES || (exports.RUN_HISTORY_TYPES = RUN_HISTORY_TYPES = {}));
|
|
33983
33998
|
var OFFLINE_ONLINE_EVENT_TYPES;
|
|
33984
33999
|
(function (OFFLINE_ONLINE_EVENT_TYPES) {
|
|
33985
34000
|
OFFLINE_ONLINE_EVENT_TYPES[OFFLINE_ONLINE_EVENT_TYPES["OFFLINE"] = 0] = "OFFLINE";
|
|
33986
34001
|
OFFLINE_ONLINE_EVENT_TYPES[OFFLINE_ONLINE_EVENT_TYPES["ONLINE"] = 1] = "ONLINE";
|
|
33987
|
-
})(OFFLINE_ONLINE_EVENT_TYPES
|
|
34002
|
+
})(OFFLINE_ONLINE_EVENT_TYPES || (exports.OFFLINE_ONLINE_EVENT_TYPES = OFFLINE_ONLINE_EVENT_TYPES = {}));
|
|
33988
34003
|
//# sourceMappingURL=run.js.map
|
|
33989
34004
|
|
|
33990
34005
|
/***/ }),
|
|
@@ -33994,14 +34009,14 @@ var OFFLINE_ONLINE_EVENT_TYPES;
|
|
|
33994
34009
|
|
|
33995
34010
|
"use strict";
|
|
33996
34011
|
|
|
33997
|
-
exports
|
|
34012
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33998
34013
|
exports.ScanType = void 0;
|
|
33999
34014
|
var ScanType;
|
|
34000
34015
|
(function (ScanType) {
|
|
34001
34016
|
ScanType["BarCode"] = "BarcodeScan";
|
|
34002
34017
|
ScanType["Ocr"] = "Ocr";
|
|
34003
34018
|
ScanType["Serial"] = "SerialScan";
|
|
34004
|
-
})(ScanType
|
|
34019
|
+
})(ScanType || (exports.ScanType = ScanType = {}));
|
|
34005
34020
|
//# sourceMappingURL=scan.js.map
|
|
34006
34021
|
|
|
34007
34022
|
/***/ }),
|
|
@@ -34011,7 +34026,7 @@ var ScanType;
|
|
|
34011
34026
|
|
|
34012
34027
|
"use strict";
|
|
34013
34028
|
|
|
34014
|
-
exports
|
|
34029
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34015
34030
|
//# sourceMappingURL=serializer.js.map
|
|
34016
34031
|
|
|
34017
34032
|
/***/ }),
|
|
@@ -34021,7 +34036,7 @@ exports.__esModule = true;
|
|
|
34021
34036
|
|
|
34022
34037
|
"use strict";
|
|
34023
34038
|
|
|
34024
|
-
exports
|
|
34039
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34025
34040
|
//# sourceMappingURL=service.js.map
|
|
34026
34041
|
|
|
34027
34042
|
/***/ }),
|
|
@@ -34031,7 +34046,7 @@ exports.__esModule = true;
|
|
|
34031
34046
|
|
|
34032
34047
|
"use strict";
|
|
34033
34048
|
|
|
34034
|
-
exports
|
|
34049
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34035
34050
|
//# sourceMappingURL=service_area.js.map
|
|
34036
34051
|
|
|
34037
34052
|
/***/ }),
|
|
@@ -34041,7 +34056,7 @@ exports.__esModule = true;
|
|
|
34041
34056
|
|
|
34042
34057
|
"use strict";
|
|
34043
34058
|
|
|
34044
|
-
exports
|
|
34059
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34045
34060
|
//# sourceMappingURL=service_event.js.map
|
|
34046
34061
|
|
|
34047
34062
|
/***/ }),
|
|
@@ -34051,7 +34066,7 @@ exports.__esModule = true;
|
|
|
34051
34066
|
|
|
34052
34067
|
"use strict";
|
|
34053
34068
|
|
|
34054
|
-
exports
|
|
34069
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34055
34070
|
//# sourceMappingURL=service_plan.js.map
|
|
34056
34071
|
|
|
34057
34072
|
/***/ }),
|
|
@@ -34061,14 +34076,14 @@ exports.__esModule = true;
|
|
|
34061
34076
|
|
|
34062
34077
|
"use strict";
|
|
34063
34078
|
|
|
34064
|
-
exports
|
|
34079
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34065
34080
|
exports.ServiceWindowType = void 0;
|
|
34066
34081
|
var ServiceWindowType;
|
|
34067
34082
|
(function (ServiceWindowType) {
|
|
34068
34083
|
ServiceWindowType[ServiceWindowType["Delivery"] = 0] = "Delivery";
|
|
34069
34084
|
ServiceWindowType[ServiceWindowType["Pickup"] = 1] = "Pickup";
|
|
34070
34085
|
ServiceWindowType[ServiceWindowType["EatIn"] = 2] = "EatIn";
|
|
34071
|
-
})(ServiceWindowType
|
|
34086
|
+
})(ServiceWindowType || (exports.ServiceWindowType = ServiceWindowType = {}));
|
|
34072
34087
|
//# sourceMappingURL=service_window.js.map
|
|
34073
34088
|
|
|
34074
34089
|
/***/ }),
|
|
@@ -34078,7 +34093,7 @@ var ServiceWindowType;
|
|
|
34078
34093
|
|
|
34079
34094
|
"use strict";
|
|
34080
34095
|
|
|
34081
|
-
exports
|
|
34096
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34082
34097
|
exports.SharedLocationDisplayType = exports.SharingMethod = exports.SHARING_TYPES_WITH_DYNAMIC_DISPLAY_TYPE = exports.SharingType = void 0;
|
|
34083
34098
|
var SharingType;
|
|
34084
34099
|
(function (SharingType) {
|
|
@@ -34099,7 +34114,7 @@ var SharingType;
|
|
|
34099
34114
|
SharingType[SharingType["OptInConfirmation"] = 14] = "OptInConfirmation";
|
|
34100
34115
|
SharingType[SharingType["CustomWorkflow"] = 15] = "CustomWorkflow";
|
|
34101
34116
|
SharingType[SharingType["NotificationByTemplateId"] = 16] = "NotificationByTemplateId";
|
|
34102
|
-
})(SharingType
|
|
34117
|
+
})(SharingType || (exports.SharingType = SharingType = {}));
|
|
34103
34118
|
exports.SHARING_TYPES_WITH_DYNAMIC_DISPLAY_TYPE = [
|
|
34104
34119
|
SharingType.CustomWorkflow,
|
|
34105
34120
|
SharingType.NotificationByTemplateId
|
|
@@ -34114,7 +34129,7 @@ var SharingMethod;
|
|
|
34114
34129
|
SharingMethod[SharingMethod["Api"] = 5] = "Api";
|
|
34115
34130
|
SharingMethod[SharingMethod["Push"] = 6] = "Push";
|
|
34116
34131
|
SharingMethod[SharingMethod["Webhook"] = 7] = "Webhook";
|
|
34117
|
-
})(SharingMethod
|
|
34132
|
+
})(SharingMethod || (exports.SharingMethod = SharingMethod = {}));
|
|
34118
34133
|
var SharedLocationDisplayType;
|
|
34119
34134
|
(function (SharedLocationDisplayType) {
|
|
34120
34135
|
SharedLocationDisplayType[SharedLocationDisplayType["Schedule"] = 1] = "Schedule";
|
|
@@ -34122,7 +34137,7 @@ var SharedLocationDisplayType;
|
|
|
34122
34137
|
SharedLocationDisplayType[SharedLocationDisplayType["ScheduleReady"] = 3] = "ScheduleReady";
|
|
34123
34138
|
SharedLocationDisplayType[SharedLocationDisplayType["Tracking"] = 4] = "Tracking";
|
|
34124
34139
|
SharedLocationDisplayType[SharedLocationDisplayType["None"] = 5] = "None";
|
|
34125
|
-
})(SharedLocationDisplayType
|
|
34140
|
+
})(SharedLocationDisplayType || (exports.SharedLocationDisplayType = SharedLocationDisplayType = {}));
|
|
34126
34141
|
//# sourceMappingURL=shared_location.js.map
|
|
34127
34142
|
|
|
34128
34143
|
/***/ }),
|
|
@@ -34132,7 +34147,7 @@ var SharedLocationDisplayType;
|
|
|
34132
34147
|
|
|
34133
34148
|
"use strict";
|
|
34134
34149
|
|
|
34135
|
-
exports
|
|
34150
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34136
34151
|
exports.ShiftRule = exports.ShiftNoteType = void 0;
|
|
34137
34152
|
var ShiftNoteType;
|
|
34138
34153
|
(function (ShiftNoteType) {
|
|
@@ -34140,13 +34155,13 @@ var ShiftNoteType;
|
|
|
34140
34155
|
ShiftNoteType["ShiftNote"] = "ShiftNote";
|
|
34141
34156
|
ShiftNoteType["ShiftPhoto"] = "ShiftPhoto";
|
|
34142
34157
|
ShiftNoteType["ShiftSignature"] = "ShiftSignature";
|
|
34143
|
-
})(ShiftNoteType
|
|
34158
|
+
})(ShiftNoteType || (exports.ShiftNoteType = ShiftNoteType = {}));
|
|
34144
34159
|
var ShiftRule;
|
|
34145
34160
|
(function (ShiftRule) {
|
|
34146
34161
|
ShiftRule[ShiftRule["unknown"] = -1] = "unknown";
|
|
34147
34162
|
ShiftRule[ShiftRule["start_shift"] = 0] = "start_shift";
|
|
34148
34163
|
ShiftRule[ShiftRule["end_shift"] = 1] = "end_shift";
|
|
34149
|
-
})(ShiftRule
|
|
34164
|
+
})(ShiftRule || (exports.ShiftRule = ShiftRule = {}));
|
|
34150
34165
|
//# sourceMappingURL=shift.js.map
|
|
34151
34166
|
|
|
34152
34167
|
/***/ }),
|
|
@@ -34156,7 +34171,7 @@ var ShiftRule;
|
|
|
34156
34171
|
|
|
34157
34172
|
"use strict";
|
|
34158
34173
|
|
|
34159
|
-
exports
|
|
34174
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34160
34175
|
//# sourceMappingURL=skill.js.map
|
|
34161
34176
|
|
|
34162
34177
|
/***/ }),
|
|
@@ -34166,7 +34181,7 @@ exports.__esModule = true;
|
|
|
34166
34181
|
|
|
34167
34182
|
"use strict";
|
|
34168
34183
|
|
|
34169
|
-
exports
|
|
34184
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34170
34185
|
//# sourceMappingURL=sms_data.js.map
|
|
34171
34186
|
|
|
34172
34187
|
/***/ }),
|
|
@@ -34176,7 +34191,7 @@ exports.__esModule = true;
|
|
|
34176
34191
|
|
|
34177
34192
|
"use strict";
|
|
34178
34193
|
|
|
34179
|
-
exports
|
|
34194
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34180
34195
|
exports.NumberType = void 0;
|
|
34181
34196
|
var NumberType;
|
|
34182
34197
|
(function (NumberType) {
|
|
@@ -34184,7 +34199,7 @@ var NumberType;
|
|
|
34184
34199
|
NumberType[NumberType["AlphanumericSender"] = 1] = "AlphanumericSender";
|
|
34185
34200
|
NumberType[NumberType["FreeSms"] = 2] = "FreeSms";
|
|
34186
34201
|
NumberType[NumberType["TollFree"] = 3] = "TollFree";
|
|
34187
|
-
})(NumberType
|
|
34202
|
+
})(NumberType || (exports.NumberType = NumberType = {}));
|
|
34188
34203
|
//# sourceMappingURL=sms_number.js.map
|
|
34189
34204
|
|
|
34190
34205
|
/***/ }),
|
|
@@ -34194,7 +34209,7 @@ var NumberType;
|
|
|
34194
34209
|
|
|
34195
34210
|
"use strict";
|
|
34196
34211
|
|
|
34197
|
-
exports
|
|
34212
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34198
34213
|
//# sourceMappingURL=sms_provider_account.js.map
|
|
34199
34214
|
|
|
34200
34215
|
/***/ }),
|
|
@@ -34204,7 +34219,7 @@ exports.__esModule = true;
|
|
|
34204
34219
|
|
|
34205
34220
|
"use strict";
|
|
34206
34221
|
|
|
34207
|
-
exports
|
|
34222
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34208
34223
|
//# sourceMappingURL=sms_setting.js.map
|
|
34209
34224
|
|
|
34210
34225
|
/***/ }),
|
|
@@ -34214,7 +34229,7 @@ exports.__esModule = true;
|
|
|
34214
34229
|
|
|
34215
34230
|
"use strict";
|
|
34216
34231
|
|
|
34217
|
-
exports
|
|
34232
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34218
34233
|
//# sourceMappingURL=support-ticket.js.map
|
|
34219
34234
|
|
|
34220
34235
|
/***/ }),
|
|
@@ -34224,7 +34239,7 @@ exports.__esModule = true;
|
|
|
34224
34239
|
|
|
34225
34240
|
"use strict";
|
|
34226
34241
|
|
|
34227
|
-
exports
|
|
34242
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34228
34243
|
//# sourceMappingURL=tag.js.map
|
|
34229
34244
|
|
|
34230
34245
|
/***/ }),
|
|
@@ -34234,7 +34249,7 @@ exports.__esModule = true;
|
|
|
34234
34249
|
|
|
34235
34250
|
"use strict";
|
|
34236
34251
|
|
|
34237
|
-
exports
|
|
34252
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34238
34253
|
//# sourceMappingURL=tag_customer_configuration.js.map
|
|
34239
34254
|
|
|
34240
34255
|
/***/ }),
|
|
@@ -34244,7 +34259,7 @@ exports.__esModule = true;
|
|
|
34244
34259
|
|
|
34245
34260
|
"use strict";
|
|
34246
34261
|
|
|
34247
|
-
exports
|
|
34262
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34248
34263
|
//# sourceMappingURL=tag_merchant_configuration.js.map
|
|
34249
34264
|
|
|
34250
34265
|
/***/ }),
|
|
@@ -34254,7 +34269,7 @@ exports.__esModule = true;
|
|
|
34254
34269
|
|
|
34255
34270
|
"use strict";
|
|
34256
34271
|
|
|
34257
|
-
exports
|
|
34272
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34258
34273
|
//# sourceMappingURL=tag_rules_configuration.js.map
|
|
34259
34274
|
|
|
34260
34275
|
/***/ }),
|
|
@@ -34264,8 +34279,8 @@ exports.__esModule = true;
|
|
|
34264
34279
|
|
|
34265
34280
|
"use strict";
|
|
34266
34281
|
|
|
34267
|
-
exports
|
|
34268
|
-
exports.CustomerFlowType = exports.Association = exports.InventoryServiceType = exports.DeliveryMethod = exports.RogueReasons = exports.PreparationStatus = exports.PaymentMethods = exports.PickupDropoffOption = exports.StatusChangedType = exports.TaskAutomaticallyCancelled = exports.TaskSubType = exports.TaskTypeId = exports.ScanningRole = exports.InventoryChangeType = exports.TaskStatus = exports.AddressType = exports.TaskHistoryOrigin = exports.TaskHistoryEvent = exports.NoteType = void 0;
|
|
34282
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34283
|
+
exports.CustomerFlowType = exports.Association = exports.InventoryServiceType = exports.DeliveryMethod = exports.RogueReasons = exports.PreparationStatus = exports.PaymentMethods = exports.PickupDropoffOption = exports.StatusChangedType = exports.TaskAutomaticallyCancelled = exports.TaskSubType = exports.TaskTypeId = exports.ScanningRole = exports.InventoryChangeType = exports.TaskStatus = exports.OwnerInventoryType = exports.AddressType = exports.TaskHistoryOrigin = exports.TaskHistoryEvent = exports.NoteType = void 0;
|
|
34269
34284
|
var NoteType;
|
|
34270
34285
|
(function (NoteType) {
|
|
34271
34286
|
NoteType["FormattedTaskNote"] = "FormattedTaskNote";
|
|
@@ -34276,7 +34291,7 @@ var NoteType;
|
|
|
34276
34291
|
NoteType["HtmlTaskNote"] = "HtmlTaskNote";
|
|
34277
34292
|
NoteType["Signature"] = "Signature";
|
|
34278
34293
|
NoteType["Document"] = "Document";
|
|
34279
|
-
})(NoteType
|
|
34294
|
+
})(NoteType || (exports.NoteType = NoteType = {}));
|
|
34280
34295
|
var TaskHistoryEvent;
|
|
34281
34296
|
(function (TaskHistoryEvent) {
|
|
34282
34297
|
TaskHistoryEvent[TaskHistoryEvent["status_changed"] = 0] = "status_changed";
|
|
@@ -34329,7 +34344,7 @@ var TaskHistoryEvent;
|
|
|
34329
34344
|
TaskHistoryEvent[TaskHistoryEvent["task_schedule_ready_time_window_updated"] = 47] = "task_schedule_ready_time_window_updated";
|
|
34330
34345
|
TaskHistoryEvent[TaskHistoryEvent["task_ready_to_execute_changed"] = 48] = "task_ready_to_execute_changed";
|
|
34331
34346
|
TaskHistoryEvent[TaskHistoryEvent["way_point_sla_changed"] = 49] = "way_point_sla_changed";
|
|
34332
|
-
})(TaskHistoryEvent
|
|
34347
|
+
})(TaskHistoryEvent || (exports.TaskHistoryEvent = TaskHistoryEvent = {}));
|
|
34333
34348
|
var TaskHistoryOrigin;
|
|
34334
34349
|
(function (TaskHistoryOrigin) {
|
|
34335
34350
|
TaskHistoryOrigin[TaskHistoryOrigin["UNKNOWN"] = 0] = "UNKNOWN";
|
|
@@ -34341,7 +34356,7 @@ var TaskHistoryOrigin;
|
|
|
34341
34356
|
TaskHistoryOrigin[TaskHistoryOrigin["AUTO_REJECT"] = 6] = "AUTO_REJECT";
|
|
34342
34357
|
TaskHistoryOrigin[TaskHistoryOrigin["USER_ACCEPTED"] = 7] = "USER_ACCEPTED";
|
|
34343
34358
|
TaskHistoryOrigin[TaskHistoryOrigin["FLEET"] = 8] = "FLEET";
|
|
34344
|
-
})(TaskHistoryOrigin
|
|
34359
|
+
})(TaskHistoryOrigin || (exports.TaskHistoryOrigin = TaskHistoryOrigin = {}));
|
|
34345
34360
|
var AddressType;
|
|
34346
34361
|
(function (AddressType) {
|
|
34347
34362
|
AddressType[AddressType["Commercial"] = 1] = "Commercial";
|
|
@@ -34350,7 +34365,12 @@ var AddressType;
|
|
|
34350
34365
|
AddressType[AddressType["Government"] = 4] = "Government";
|
|
34351
34366
|
AddressType[AddressType["Medical"] = 5] = "Medical";
|
|
34352
34367
|
AddressType[AddressType["Industrial"] = 6] = "Industrial";
|
|
34353
|
-
})(AddressType
|
|
34368
|
+
})(AddressType || (exports.AddressType = AddressType = {}));
|
|
34369
|
+
var OwnerInventoryType;
|
|
34370
|
+
(function (OwnerInventoryType) {
|
|
34371
|
+
OwnerInventoryType["Customer"] = "CustomerInventory";
|
|
34372
|
+
OwnerInventoryType["User"] = "UserInventory";
|
|
34373
|
+
})(OwnerInventoryType || (exports.OwnerInventoryType = OwnerInventoryType = {}));
|
|
34354
34374
|
var TaskStatus;
|
|
34355
34375
|
(function (TaskStatus) {
|
|
34356
34376
|
TaskStatus[TaskStatus["Created"] = 0] = "Created";
|
|
@@ -34364,19 +34384,19 @@ var TaskStatus;
|
|
|
34364
34384
|
TaskStatus[TaskStatus["Rejected"] = 8] = "Rejected";
|
|
34365
34385
|
TaskStatus[TaskStatus["Unacknowledged"] = 9] = "Unacknowledged";
|
|
34366
34386
|
TaskStatus[TaskStatus["Pending"] = 10] = "Pending";
|
|
34367
|
-
})(TaskStatus
|
|
34387
|
+
})(TaskStatus || (exports.TaskStatus = TaskStatus = {}));
|
|
34368
34388
|
var InventoryChangeType;
|
|
34369
34389
|
(function (InventoryChangeType) {
|
|
34370
34390
|
InventoryChangeType[InventoryChangeType["Quantity"] = 0] = "Quantity";
|
|
34371
34391
|
InventoryChangeType[InventoryChangeType["OriginalQuantity"] = 1] = "OriginalQuantity";
|
|
34372
34392
|
InventoryChangeType[InventoryChangeType["RejectedQuantity"] = 2] = "RejectedQuantity";
|
|
34373
|
-
})(InventoryChangeType
|
|
34393
|
+
})(InventoryChangeType || (exports.InventoryChangeType = InventoryChangeType = {}));
|
|
34374
34394
|
var ScanningRole;
|
|
34375
34395
|
(function (ScanningRole) {
|
|
34376
34396
|
ScanningRole[ScanningRole["DRIVER"] = 0] = "DRIVER";
|
|
34377
34397
|
ScanningRole[ScanningRole["DISPATCHER_STAGING"] = 1] = "DISPATCHER_STAGING";
|
|
34378
34398
|
ScanningRole[ScanningRole["DISPATCHER_COC"] = 2] = "DISPATCHER_COC";
|
|
34379
|
-
})(ScanningRole
|
|
34399
|
+
})(ScanningRole || (exports.ScanningRole = ScanningRole = {}));
|
|
34380
34400
|
var TaskTypeId;
|
|
34381
34401
|
(function (TaskTypeId) {
|
|
34382
34402
|
TaskTypeId[TaskTypeId["PICKUP"] = 2] = "PICKUP";
|
|
@@ -34386,11 +34406,11 @@ var TaskTypeId;
|
|
|
34386
34406
|
TaskTypeId[TaskTypeId["CLICK_AND_COLLECT"] = 6] = "CLICK_AND_COLLECT";
|
|
34387
34407
|
TaskTypeId[TaskTypeId["SERVICE"] = 7] = "SERVICE";
|
|
34388
34408
|
TaskTypeId[TaskTypeId["ROAMING"] = 8] = "ROAMING";
|
|
34389
|
-
})(TaskTypeId
|
|
34409
|
+
})(TaskTypeId || (exports.TaskTypeId = TaskTypeId = {}));
|
|
34390
34410
|
var TaskSubType;
|
|
34391
34411
|
(function (TaskSubType) {
|
|
34392
34412
|
TaskSubType[TaskSubType["BACK_TO_WAREHOUSE"] = 1] = "BACK_TO_WAREHOUSE";
|
|
34393
|
-
})(TaskSubType
|
|
34413
|
+
})(TaskSubType || (exports.TaskSubType = TaskSubType = {}));
|
|
34394
34414
|
var TaskAutomaticallyCancelled;
|
|
34395
34415
|
(function (TaskAutomaticallyCancelled) {
|
|
34396
34416
|
TaskAutomaticallyCancelled[TaskAutomaticallyCancelled["MANUAL"] = 0] = "MANUAL";
|
|
@@ -34404,7 +34424,7 @@ var TaskAutomaticallyCancelled;
|
|
|
34404
34424
|
TaskAutomaticallyCancelled[TaskAutomaticallyCancelled["FROM_STORE_APP"] = 8] = "FROM_STORE_APP";
|
|
34405
34425
|
TaskAutomaticallyCancelled[TaskAutomaticallyCancelled["FROM_CUSTOMER_APP"] = 9] = "FROM_CUSTOMER_APP";
|
|
34406
34426
|
TaskAutomaticallyCancelled[TaskAutomaticallyCancelled["FROM_AUTOMATION_PLATFORM"] = 10] = "FROM_AUTOMATION_PLATFORM";
|
|
34407
|
-
})(TaskAutomaticallyCancelled
|
|
34427
|
+
})(TaskAutomaticallyCancelled || (exports.TaskAutomaticallyCancelled = TaskAutomaticallyCancelled = {}));
|
|
34408
34428
|
var StatusChangedType;
|
|
34409
34429
|
(function (StatusChangedType) {
|
|
34410
34430
|
StatusChangedType[StatusChangedType["Manual"] = 0] = "Manual";
|
|
@@ -34419,13 +34439,13 @@ var StatusChangedType;
|
|
|
34419
34439
|
StatusChangedType[StatusChangedType["AutomaticByServer"] = 10] = "AutomaticByServer";
|
|
34420
34440
|
StatusChangedType[StatusChangedType["FromApi"] = 11] = "FromApi";
|
|
34421
34441
|
StatusChangedType[StatusChangedType["AutomaticFromFleet"] = 12] = "AutomaticFromFleet";
|
|
34422
|
-
})(StatusChangedType
|
|
34442
|
+
})(StatusChangedType || (exports.StatusChangedType = StatusChangedType = {}));
|
|
34423
34443
|
var PickupDropoffOption;
|
|
34424
34444
|
(function (PickupDropoffOption) {
|
|
34425
34445
|
PickupDropoffOption[PickupDropoffOption["PICKUP"] = 0] = "PICKUP";
|
|
34426
34446
|
PickupDropoffOption[PickupDropoffOption["DROPOFF"] = 1] = "DROPOFF";
|
|
34427
34447
|
PickupDropoffOption[PickupDropoffOption["BOTH"] = 2] = "BOTH";
|
|
34428
|
-
})(PickupDropoffOption
|
|
34448
|
+
})(PickupDropoffOption || (exports.PickupDropoffOption = PickupDropoffOption = {}));
|
|
34429
34449
|
var PaymentMethods;
|
|
34430
34450
|
(function (PaymentMethods) {
|
|
34431
34451
|
PaymentMethods[PaymentMethods["UNKNOWN"] = 0] = "UNKNOWN";
|
|
@@ -34433,7 +34453,7 @@ var PaymentMethods;
|
|
|
34433
34453
|
PaymentMethods[PaymentMethods["CREDIT"] = 2] = "CREDIT";
|
|
34434
34454
|
PaymentMethods[PaymentMethods["CHEQUE"] = 3] = "CHEQUE";
|
|
34435
34455
|
PaymentMethods[PaymentMethods["CREDIT_CARD_TERMINAL"] = 4] = "CREDIT_CARD_TERMINAL";
|
|
34436
|
-
})(PaymentMethods
|
|
34456
|
+
})(PaymentMethods || (exports.PaymentMethods = PaymentMethods = {}));
|
|
34437
34457
|
var PreparationStatus;
|
|
34438
34458
|
(function (PreparationStatus) {
|
|
34439
34459
|
PreparationStatus[PreparationStatus["ACKNOWLEDGED"] = 0] = "ACKNOWLEDGED";
|
|
@@ -34443,12 +34463,12 @@ var PreparationStatus;
|
|
|
34443
34463
|
PreparationStatus[PreparationStatus["PICKED_UP"] = 4] = "PICKED_UP";
|
|
34444
34464
|
PreparationStatus[PreparationStatus["SEND_TO_PREPARATION_FAILED"] = 5] = "SEND_TO_PREPARATION_FAILED";
|
|
34445
34465
|
PreparationStatus[PreparationStatus["UNACKNOWLEDGED"] = 6] = "UNACKNOWLEDGED";
|
|
34446
|
-
})(PreparationStatus
|
|
34466
|
+
})(PreparationStatus || (exports.PreparationStatus = PreparationStatus = {}));
|
|
34447
34467
|
var RogueReasons;
|
|
34448
34468
|
(function (RogueReasons) {
|
|
34449
34469
|
RogueReasons[RogueReasons["TIME_WINDOW"] = 0] = "TIME_WINDOW";
|
|
34450
34470
|
RogueReasons[RogueReasons["CAPACITY"] = 1] = "CAPACITY";
|
|
34451
|
-
})(RogueReasons
|
|
34471
|
+
})(RogueReasons || (exports.RogueReasons = RogueReasons = {}));
|
|
34452
34472
|
var DeliveryMethod;
|
|
34453
34473
|
(function (DeliveryMethod) {
|
|
34454
34474
|
DeliveryMethod["Contactless"] = "contactless";
|
|
@@ -34456,7 +34476,7 @@ var DeliveryMethod;
|
|
|
34456
34476
|
DeliveryMethod["AtRoom"] = "at_room";
|
|
34457
34477
|
DeliveryMethod["ThirdPartyPoint"] = "third_party_point";
|
|
34458
34478
|
DeliveryMethod["HomeDelivery"] = "home_delivery";
|
|
34459
|
-
})(DeliveryMethod
|
|
34479
|
+
})(DeliveryMethod || (exports.DeliveryMethod = DeliveryMethod = {}));
|
|
34460
34480
|
var InventoryServiceType;
|
|
34461
34481
|
(function (InventoryServiceType) {
|
|
34462
34482
|
InventoryServiceType["Installation"] = "installation";
|
|
@@ -34464,7 +34484,7 @@ var InventoryServiceType;
|
|
|
34464
34484
|
InventoryServiceType["Fragile"] = "fragile";
|
|
34465
34485
|
InventoryServiceType["Heavy_weight"] = "heavy_weight";
|
|
34466
34486
|
InventoryServiceType["Flammable"] = "flammable";
|
|
34467
|
-
})(InventoryServiceType
|
|
34487
|
+
})(InventoryServiceType || (exports.InventoryServiceType = InventoryServiceType = {}));
|
|
34468
34488
|
var Association;
|
|
34469
34489
|
(function (Association) {
|
|
34470
34490
|
Association["WayPoint"] = "way_point";
|
|
@@ -34473,12 +34493,12 @@ var Association;
|
|
|
34473
34493
|
Association["TaskNote"] = "task_note";
|
|
34474
34494
|
Association["TaskPhoto"] = "task_photo";
|
|
34475
34495
|
Association["Signature"] = "signature";
|
|
34476
|
-
})(Association
|
|
34496
|
+
})(Association || (exports.Association = Association = {}));
|
|
34477
34497
|
var CustomerFlowType;
|
|
34478
34498
|
(function (CustomerFlowType) {
|
|
34479
34499
|
CustomerFlowType[CustomerFlowType["ClickCollect"] = 0] = "ClickCollect";
|
|
34480
34500
|
CustomerFlowType[CustomerFlowType["Curbside"] = 1] = "Curbside";
|
|
34481
|
-
})(CustomerFlowType
|
|
34501
|
+
})(CustomerFlowType || (exports.CustomerFlowType = CustomerFlowType = {}));
|
|
34482
34502
|
//# sourceMappingURL=task.js.map
|
|
34483
34503
|
|
|
34484
34504
|
/***/ }),
|
|
@@ -34502,7 +34522,7 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
34502
34522
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
34503
34523
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
34504
34524
|
};
|
|
34505
|
-
exports
|
|
34525
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34506
34526
|
__exportStar(__webpack_require__(44882), exports);
|
|
34507
34527
|
__exportStar(__webpack_require__(87573), exports);
|
|
34508
34528
|
//# sourceMappingURL=index.js.map
|
|
@@ -34514,7 +34534,7 @@ __exportStar(__webpack_require__(87573), exports);
|
|
|
34514
34534
|
|
|
34515
34535
|
"use strict";
|
|
34516
34536
|
|
|
34517
|
-
exports
|
|
34537
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34518
34538
|
//# sourceMappingURL=task_reject_reason.js.map
|
|
34519
34539
|
|
|
34520
34540
|
/***/ }),
|
|
@@ -34524,7 +34544,7 @@ exports.__esModule = true;
|
|
|
34524
34544
|
|
|
34525
34545
|
"use strict";
|
|
34526
34546
|
|
|
34527
|
-
exports
|
|
34547
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34528
34548
|
//# sourceMappingURL=task_reject_reasons_api_types.js.map
|
|
34529
34549
|
|
|
34530
34550
|
/***/ }),
|
|
@@ -34534,7 +34554,7 @@ exports.__esModule = true;
|
|
|
34534
34554
|
|
|
34535
34555
|
"use strict";
|
|
34536
34556
|
|
|
34537
|
-
exports
|
|
34557
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34538
34558
|
//# sourceMappingURL=task_aggregations.js.map
|
|
34539
34559
|
|
|
34540
34560
|
/***/ }),
|
|
@@ -34544,19 +34564,19 @@ exports.__esModule = true;
|
|
|
34544
34564
|
|
|
34545
34565
|
"use strict";
|
|
34546
34566
|
|
|
34547
|
-
exports
|
|
34567
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34548
34568
|
exports.AutoScheduleType = exports.ReadyToLeaveBy = void 0;
|
|
34549
34569
|
var ReadyToLeaveBy;
|
|
34550
34570
|
(function (ReadyToLeaveBy) {
|
|
34551
34571
|
ReadyToLeaveBy[ReadyToLeaveBy["AfterCreated"] = 0] = "AfterCreated";
|
|
34552
34572
|
ReadyToLeaveBy[ReadyToLeaveBy["AfterPrepared"] = 1] = "AfterPrepared";
|
|
34553
34573
|
ReadyToLeaveBy[ReadyToLeaveBy["BeforeScheduled"] = 2] = "BeforeScheduled";
|
|
34554
|
-
})(ReadyToLeaveBy
|
|
34574
|
+
})(ReadyToLeaveBy || (exports.ReadyToLeaveBy = ReadyToLeaveBy = {}));
|
|
34555
34575
|
var AutoScheduleType;
|
|
34556
34576
|
(function (AutoScheduleType) {
|
|
34557
34577
|
AutoScheduleType[AutoScheduleType["NextWindow"] = 1] = "NextWindow";
|
|
34558
34578
|
AutoScheduleType[AutoScheduleType["Quote"] = 2] = "Quote";
|
|
34559
|
-
})(AutoScheduleType
|
|
34579
|
+
})(AutoScheduleType || (exports.AutoScheduleType = AutoScheduleType = {}));
|
|
34560
34580
|
//# sourceMappingURL=task_configuration.js.map
|
|
34561
34581
|
|
|
34562
34582
|
/***/ }),
|
|
@@ -34566,7 +34586,7 @@ var AutoScheduleType;
|
|
|
34566
34586
|
|
|
34567
34587
|
"use strict";
|
|
34568
34588
|
|
|
34569
|
-
exports
|
|
34589
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34570
34590
|
//# sourceMappingURL=task_payment_history.js.map
|
|
34571
34591
|
|
|
34572
34592
|
/***/ }),
|
|
@@ -34576,7 +34596,7 @@ exports.__esModule = true;
|
|
|
34576
34596
|
|
|
34577
34597
|
"use strict";
|
|
34578
34598
|
|
|
34579
|
-
exports
|
|
34599
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34580
34600
|
//# sourceMappingURL=task_rates.js.map
|
|
34581
34601
|
|
|
34582
34602
|
/***/ }),
|
|
@@ -34586,7 +34606,7 @@ exports.__esModule = true;
|
|
|
34586
34606
|
|
|
34587
34607
|
"use strict";
|
|
34588
34608
|
|
|
34589
|
-
exports
|
|
34609
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34590
34610
|
//# sourceMappingURL=task_reassign_reasons.js.map
|
|
34591
34611
|
|
|
34592
34612
|
/***/ }),
|
|
@@ -34596,14 +34616,14 @@ exports.__esModule = true;
|
|
|
34596
34616
|
|
|
34597
34617
|
"use strict";
|
|
34598
34618
|
|
|
34599
|
-
exports
|
|
34619
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34600
34620
|
exports.TaskRejectType = void 0;
|
|
34601
34621
|
var TaskRejectType;
|
|
34602
34622
|
(function (TaskRejectType) {
|
|
34603
34623
|
TaskRejectType[TaskRejectType["reject"] = 0] = "reject";
|
|
34604
34624
|
TaskRejectType[TaskRejectType["dismiss"] = 1] = "dismiss";
|
|
34605
34625
|
TaskRejectType[TaskRejectType["now_now"] = 2] = "now_now";
|
|
34606
|
-
})(TaskRejectType
|
|
34626
|
+
})(TaskRejectType || (exports.TaskRejectType = TaskRejectType = {}));
|
|
34607
34627
|
//# sourceMappingURL=task_reject.js.map
|
|
34608
34628
|
|
|
34609
34629
|
/***/ }),
|
|
@@ -34613,12 +34633,12 @@ var TaskRejectType;
|
|
|
34613
34633
|
|
|
34614
34634
|
"use strict";
|
|
34615
34635
|
|
|
34616
|
-
exports
|
|
34636
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34617
34637
|
exports.TaskServiceType = void 0;
|
|
34618
34638
|
var TaskServiceType;
|
|
34619
34639
|
(function (TaskServiceType) {
|
|
34620
34640
|
TaskServiceType["VALIDATE"] = "validate";
|
|
34621
|
-
})(TaskServiceType
|
|
34641
|
+
})(TaskServiceType || (exports.TaskServiceType = TaskServiceType = {}));
|
|
34622
34642
|
//# sourceMappingURL=task_service.js.map
|
|
34623
34643
|
|
|
34624
34644
|
/***/ }),
|
|
@@ -34628,7 +34648,7 @@ var TaskServiceType;
|
|
|
34628
34648
|
|
|
34629
34649
|
"use strict";
|
|
34630
34650
|
|
|
34631
|
-
exports
|
|
34651
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34632
34652
|
//# sourceMappingURL=team_configuration.js.map
|
|
34633
34653
|
|
|
34634
34654
|
/***/ }),
|
|
@@ -34638,7 +34658,7 @@ exports.__esModule = true;
|
|
|
34638
34658
|
|
|
34639
34659
|
"use strict";
|
|
34640
34660
|
|
|
34641
|
-
exports
|
|
34661
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34642
34662
|
//# sourceMappingURL=team_service_zip_codes.js.map
|
|
34643
34663
|
|
|
34644
34664
|
/***/ }),
|
|
@@ -34648,7 +34668,7 @@ exports.__esModule = true;
|
|
|
34648
34668
|
|
|
34649
34669
|
"use strict";
|
|
34650
34670
|
|
|
34651
|
-
exports
|
|
34671
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34652
34672
|
//# sourceMappingURL=teams.js.map
|
|
34653
34673
|
|
|
34654
34674
|
/***/ }),
|
|
@@ -34658,7 +34678,7 @@ exports.__esModule = true;
|
|
|
34658
34678
|
|
|
34659
34679
|
"use strict";
|
|
34660
34680
|
|
|
34661
|
-
exports
|
|
34681
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34662
34682
|
//# sourceMappingURL=template_languages.js.map
|
|
34663
34683
|
|
|
34664
34684
|
/***/ }),
|
|
@@ -34668,7 +34688,7 @@ exports.__esModule = true;
|
|
|
34668
34688
|
|
|
34669
34689
|
"use strict";
|
|
34670
34690
|
|
|
34671
|
-
exports
|
|
34691
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34672
34692
|
//# sourceMappingURL=template_merchants.js.map
|
|
34673
34693
|
|
|
34674
34694
|
/***/ }),
|
|
@@ -34678,24 +34698,25 @@ exports.__esModule = true;
|
|
|
34678
34698
|
|
|
34679
34699
|
"use strict";
|
|
34680
34700
|
|
|
34681
|
-
exports
|
|
34701
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34682
34702
|
exports.TemplateRpcActions = exports.TemplateContentType = exports.TemplateTypeEnum = void 0;
|
|
34683
34703
|
var TemplateTypeEnum;
|
|
34684
34704
|
(function (TemplateTypeEnum) {
|
|
34685
34705
|
TemplateTypeEnum["package_label"] = "package_label";
|
|
34686
34706
|
TemplateTypeEnum["workflow_email"] = "workflow_email";
|
|
34687
|
-
|
|
34707
|
+
TemplateTypeEnum["customer_notification_email"] = "customer_notification_email";
|
|
34708
|
+
})(TemplateTypeEnum || (exports.TemplateTypeEnum = TemplateTypeEnum = {}));
|
|
34688
34709
|
var TemplateContentType;
|
|
34689
34710
|
(function (TemplateContentType) {
|
|
34690
34711
|
TemplateContentType["label/zpl"] = "zpl";
|
|
34691
34712
|
TemplateContentType["text/x-handlebars-template"] = "text/x-handlebars-template";
|
|
34692
34713
|
TemplateContentType["text/html"] = "text/html";
|
|
34693
|
-
})(TemplateContentType
|
|
34714
|
+
})(TemplateContentType || (exports.TemplateContentType = TemplateContentType = {}));
|
|
34694
34715
|
var TemplateRpcActions;
|
|
34695
34716
|
(function (TemplateRpcActions) {
|
|
34696
34717
|
TemplateRpcActions["GENERATE_LABEL"] = "generate:package_label";
|
|
34697
34718
|
TemplateRpcActions["GET_TEMPLATE_DISPLAY_TYPE"] = "get:template_display_type";
|
|
34698
|
-
})(TemplateRpcActions
|
|
34719
|
+
})(TemplateRpcActions || (exports.TemplateRpcActions = TemplateRpcActions = {}));
|
|
34699
34720
|
//# sourceMappingURL=templates.js.map
|
|
34700
34721
|
|
|
34701
34722
|
/***/ }),
|
|
@@ -34705,14 +34726,14 @@ var TemplateRpcActions;
|
|
|
34705
34726
|
|
|
34706
34727
|
"use strict";
|
|
34707
34728
|
|
|
34708
|
-
exports
|
|
34729
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34709
34730
|
exports.TenderNotifyStatus = void 0;
|
|
34710
34731
|
var TenderNotifyStatus;
|
|
34711
34732
|
(function (TenderNotifyStatus) {
|
|
34712
34733
|
TenderNotifyStatus["Tender"] = "tender";
|
|
34713
34734
|
TenderNotifyStatus["Contact"] = "contact";
|
|
34714
34735
|
TenderNotifyStatus["Appointed"] = "appointed";
|
|
34715
|
-
})(TenderNotifyStatus
|
|
34736
|
+
})(TenderNotifyStatus || (exports.TenderNotifyStatus = TenderNotifyStatus = {}));
|
|
34716
34737
|
//# sourceMappingURL=tender_notify.js.map
|
|
34717
34738
|
|
|
34718
34739
|
/***/ }),
|
|
@@ -34722,7 +34743,7 @@ var TenderNotifyStatus;
|
|
|
34722
34743
|
|
|
34723
34744
|
"use strict";
|
|
34724
34745
|
|
|
34725
|
-
exports
|
|
34746
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34726
34747
|
//# sourceMappingURL=twilio_number.js.map
|
|
34727
34748
|
|
|
34728
34749
|
/***/ }),
|
|
@@ -34732,7 +34753,7 @@ exports.__esModule = true;
|
|
|
34732
34753
|
|
|
34733
34754
|
"use strict";
|
|
34734
34755
|
|
|
34735
|
-
exports
|
|
34756
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34736
34757
|
//# sourceMappingURL=upload.js.map
|
|
34737
34758
|
|
|
34738
34759
|
/***/ }),
|
|
@@ -34742,7 +34763,7 @@ exports.__esModule = true;
|
|
|
34742
34763
|
|
|
34743
34764
|
"use strict";
|
|
34744
34765
|
|
|
34745
|
-
exports
|
|
34766
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34746
34767
|
exports.ClusterModeType = void 0;
|
|
34747
34768
|
var ClusterModeType;
|
|
34748
34769
|
(function (ClusterModeType) {
|
|
@@ -34750,7 +34771,7 @@ var ClusterModeType;
|
|
|
34750
34771
|
ClusterModeType[ClusterModeType["InventoryPickup"] = 2] = "InventoryPickup";
|
|
34751
34772
|
ClusterModeType[ClusterModeType["InventoryDropoff"] = 3] = "InventoryDropoff";
|
|
34752
34773
|
ClusterModeType[ClusterModeType["InventoryPickupDropoff"] = 4] = "InventoryPickupDropoff";
|
|
34753
|
-
})(ClusterModeType
|
|
34774
|
+
})(ClusterModeType || (exports.ClusterModeType = ClusterModeType = {}));
|
|
34754
34775
|
//# sourceMappingURL=user_configuration.js.map
|
|
34755
34776
|
|
|
34756
34777
|
/***/ }),
|
|
@@ -34760,7 +34781,7 @@ var ClusterModeType;
|
|
|
34760
34781
|
|
|
34761
34782
|
"use strict";
|
|
34762
34783
|
|
|
34763
|
-
exports
|
|
34784
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34764
34785
|
//# sourceMappingURL=user_realtime_data.js.map
|
|
34765
34786
|
|
|
34766
34787
|
/***/ }),
|
|
@@ -34770,7 +34791,7 @@ exports.__esModule = true;
|
|
|
34770
34791
|
|
|
34771
34792
|
"use strict";
|
|
34772
34793
|
|
|
34773
|
-
exports
|
|
34794
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34774
34795
|
//# sourceMappingURL=user_types.js.map
|
|
34775
34796
|
|
|
34776
34797
|
/***/ }),
|
|
@@ -34780,7 +34801,7 @@ exports.__esModule = true;
|
|
|
34780
34801
|
|
|
34781
34802
|
"use strict";
|
|
34782
34803
|
|
|
34783
|
-
exports
|
|
34804
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34784
34805
|
exports.UserStatus = exports.MobileTypes = exports.ActivityTypes = void 0;
|
|
34785
34806
|
var ActivityTypes;
|
|
34786
34807
|
(function (ActivityTypes) {
|
|
@@ -34791,14 +34812,14 @@ var ActivityTypes;
|
|
|
34791
34812
|
ActivityTypes[ActivityTypes["BICYCLE"] = 4] = "BICYCLE";
|
|
34792
34813
|
ActivityTypes[ActivityTypes["DRIVING"] = 5] = "DRIVING";
|
|
34793
34814
|
ActivityTypes[ActivityTypes["PUBLIC_TRANSPORT"] = 6] = "PUBLIC_TRANSPORT";
|
|
34794
|
-
})(ActivityTypes
|
|
34815
|
+
})(ActivityTypes || (exports.ActivityTypes = ActivityTypes = {}));
|
|
34795
34816
|
var MobileTypes;
|
|
34796
34817
|
(function (MobileTypes) {
|
|
34797
34818
|
MobileTypes[MobileTypes["UNKNOWN"] = 0] = "UNKNOWN";
|
|
34798
34819
|
MobileTypes[MobileTypes["ANDROID"] = 1] = "ANDROID";
|
|
34799
34820
|
MobileTypes[MobileTypes["IOS"] = 2] = "IOS";
|
|
34800
34821
|
MobileTypes[MobileTypes["WINDOWS"] = 3] = "WINDOWS";
|
|
34801
|
-
})(MobileTypes
|
|
34822
|
+
})(MobileTypes || (exports.MobileTypes = MobileTypes = {}));
|
|
34802
34823
|
var UserStatus;
|
|
34803
34824
|
(function (UserStatus) {
|
|
34804
34825
|
UserStatus["FREE"] = "Free";
|
|
@@ -34808,7 +34829,7 @@ var UserStatus;
|
|
|
34808
34829
|
UserStatus["LATE"] = "Late";
|
|
34809
34830
|
UserStatus["ACCEPTED"] = "Accepted";
|
|
34810
34831
|
UserStatus["ON_BREAK"] = "On-Break";
|
|
34811
|
-
})(UserStatus
|
|
34832
|
+
})(UserStatus || (exports.UserStatus = UserStatus = {}));
|
|
34812
34833
|
//# sourceMappingURL=users.js.map
|
|
34813
34834
|
|
|
34814
34835
|
/***/ }),
|
|
@@ -34818,7 +34839,7 @@ var UserStatus;
|
|
|
34818
34839
|
|
|
34819
34840
|
"use strict";
|
|
34820
34841
|
|
|
34821
|
-
exports
|
|
34842
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34822
34843
|
//# sourceMappingURL=vehicle.js.map
|
|
34823
34844
|
|
|
34824
34845
|
/***/ }),
|
|
@@ -34828,7 +34849,7 @@ exports.__esModule = true;
|
|
|
34828
34849
|
|
|
34829
34850
|
"use strict";
|
|
34830
34851
|
|
|
34831
|
-
exports
|
|
34852
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34832
34853
|
//# sourceMappingURL=vehicle_category.js.map
|
|
34833
34854
|
|
|
34834
34855
|
/***/ }),
|
|
@@ -34838,14 +34859,14 @@ exports.__esModule = true;
|
|
|
34838
34859
|
|
|
34839
34860
|
"use strict";
|
|
34840
34861
|
|
|
34841
|
-
exports
|
|
34862
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34842
34863
|
exports.InternalVehicleCategory = void 0;
|
|
34843
34864
|
var InternalVehicleCategory;
|
|
34844
34865
|
(function (InternalVehicleCategory) {
|
|
34845
34866
|
InternalVehicleCategory[InternalVehicleCategory["Bicycle"] = 0] = "Bicycle";
|
|
34846
34867
|
InternalVehicleCategory[InternalVehicleCategory["Car"] = 1] = "Car";
|
|
34847
34868
|
InternalVehicleCategory[InternalVehicleCategory["Truck"] = 2] = "Truck";
|
|
34848
|
-
})(InternalVehicleCategory
|
|
34869
|
+
})(InternalVehicleCategory || (exports.InternalVehicleCategory = InternalVehicleCategory = {}));
|
|
34849
34870
|
//# sourceMappingURL=vehicle_type.js.map
|
|
34850
34871
|
|
|
34851
34872
|
/***/ }),
|
|
@@ -34855,7 +34876,7 @@ var InternalVehicleCategory;
|
|
|
34855
34876
|
|
|
34856
34877
|
"use strict";
|
|
34857
34878
|
|
|
34858
|
-
exports
|
|
34879
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34859
34880
|
//# sourceMappingURL=web_application_configuration.js.map
|
|
34860
34881
|
|
|
34861
34882
|
/***/ }),
|
|
@@ -34865,35 +34886,35 @@ exports.__esModule = true;
|
|
|
34865
34886
|
|
|
34866
34887
|
"use strict";
|
|
34867
34888
|
|
|
34868
|
-
exports
|
|
34889
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34869
34890
|
exports.OAuth2RequestType = exports.JWTTokenEncoding = exports.JWTAlgorithm = exports.AuthorizationType = exports.AuthenticationMethod = void 0;
|
|
34870
34891
|
var AuthenticationMethod;
|
|
34871
34892
|
(function (AuthenticationMethod) {
|
|
34872
34893
|
AuthenticationMethod[AuthenticationMethod["WEBHOOKS"] = 0] = "WEBHOOKS";
|
|
34873
34894
|
AuthenticationMethod[AuthenticationMethod["API"] = 1] = "API";
|
|
34874
|
-
})(AuthenticationMethod
|
|
34895
|
+
})(AuthenticationMethod || (exports.AuthenticationMethod = AuthenticationMethod = {}));
|
|
34875
34896
|
var AuthorizationType;
|
|
34876
34897
|
(function (AuthorizationType) {
|
|
34877
34898
|
AuthorizationType[AuthorizationType["JWT_TOKEN"] = 0] = "JWT_TOKEN";
|
|
34878
34899
|
AuthorizationType[AuthorizationType["OAUTH2"] = 1] = "OAUTH2";
|
|
34879
34900
|
AuthorizationType[AuthorizationType["STATIC_HEADER"] = 2] = "STATIC_HEADER";
|
|
34880
|
-
})(AuthorizationType
|
|
34901
|
+
})(AuthorizationType || (exports.AuthorizationType = AuthorizationType = {}));
|
|
34881
34902
|
var JWTAlgorithm;
|
|
34882
34903
|
(function (JWTAlgorithm) {
|
|
34883
34904
|
JWTAlgorithm["HS256"] = "HS256";
|
|
34884
34905
|
JWTAlgorithm["HS512"] = "HS512";
|
|
34885
|
-
})(JWTAlgorithm
|
|
34906
|
+
})(JWTAlgorithm || (exports.JWTAlgorithm = JWTAlgorithm = {}));
|
|
34886
34907
|
var JWTTokenEncoding;
|
|
34887
34908
|
(function (JWTTokenEncoding) {
|
|
34888
34909
|
JWTTokenEncoding[JWTTokenEncoding["BASE64"] = 0] = "BASE64";
|
|
34889
34910
|
JWTTokenEncoding[JWTTokenEncoding["NONE"] = 1] = "NONE";
|
|
34890
|
-
})(JWTTokenEncoding
|
|
34911
|
+
})(JWTTokenEncoding || (exports.JWTTokenEncoding = JWTTokenEncoding = {}));
|
|
34891
34912
|
var OAuth2RequestType;
|
|
34892
34913
|
(function (OAuth2RequestType) {
|
|
34893
34914
|
OAuth2RequestType[OAuth2RequestType["FORM"] = 0] = "FORM";
|
|
34894
34915
|
OAuth2RequestType[OAuth2RequestType["JSON"] = 1] = "JSON";
|
|
34895
34916
|
OAuth2RequestType[OAuth2RequestType["QUERY_STRING"] = 2] = "QUERY_STRING";
|
|
34896
|
-
})(OAuth2RequestType
|
|
34917
|
+
})(OAuth2RequestType || (exports.OAuth2RequestType = OAuth2RequestType = {}));
|
|
34897
34918
|
//# sourceMappingURL=webhook_authentication_configuration.js.map
|
|
34898
34919
|
|
|
34899
34920
|
/***/ }),
|
|
@@ -34903,7 +34924,7 @@ var OAuth2RequestType;
|
|
|
34903
34924
|
|
|
34904
34925
|
"use strict";
|
|
34905
34926
|
|
|
34906
|
-
exports
|
|
34927
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34907
34928
|
//# sourceMappingURL=webhooks.js.map
|
|
34908
34929
|
|
|
34909
34930
|
/***/ }),
|
|
@@ -34913,14 +34934,14 @@ exports.__esModule = true;
|
|
|
34913
34934
|
|
|
34914
34935
|
"use strict";
|
|
34915
34936
|
|
|
34916
|
-
exports
|
|
34937
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34917
34938
|
exports.Plan = void 0;
|
|
34918
34939
|
var Plan;
|
|
34919
34940
|
(function (Plan) {
|
|
34920
34941
|
Plan[Plan["Simple"] = 0] = "Simple";
|
|
34921
34942
|
Plan[Plan["Advanced"] = 1] = "Advanced";
|
|
34922
34943
|
Plan[Plan["Full"] = 2] = "Full";
|
|
34923
|
-
})(Plan
|
|
34944
|
+
})(Plan || (exports.Plan = Plan = {}));
|
|
34924
34945
|
//# sourceMappingURL=webhooks_configuration.js.map
|
|
34925
34946
|
|
|
34926
34947
|
/***/ }),
|
|
@@ -34930,7 +34951,7 @@ var Plan;
|
|
|
34930
34951
|
|
|
34931
34952
|
"use strict";
|
|
34932
34953
|
|
|
34933
|
-
exports
|
|
34954
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34934
34955
|
//# sourceMappingURL=widget.js.map
|
|
34935
34956
|
|
|
34936
34957
|
/***/ }),
|
|
@@ -34940,14 +34961,14 @@ exports.__esModule = true;
|
|
|
34940
34961
|
|
|
34941
34962
|
"use strict";
|
|
34942
34963
|
|
|
34943
|
-
exports
|
|
34964
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34944
34965
|
exports.ExclusionType = void 0;
|
|
34945
34966
|
var ExclusionType;
|
|
34946
34967
|
(function (ExclusionType) {
|
|
34947
34968
|
ExclusionType[ExclusionType["ALL"] = 0] = "ALL";
|
|
34948
34969
|
ExclusionType[ExclusionType["RECURREING_ORDERS"] = 1] = "RECURREING_ORDERS";
|
|
34949
34970
|
ExclusionType[ExclusionType["NON_RECURREING_ORDERS"] = 2] = "NON_RECURREING_ORDERS";
|
|
34950
|
-
})(ExclusionType
|
|
34971
|
+
})(ExclusionType || (exports.ExclusionType = ExclusionType = {}));
|
|
34951
34972
|
//# sourceMappingURL=windows.js.map
|
|
34952
34973
|
|
|
34953
34974
|
/***/ }),
|
|
@@ -34957,7 +34978,7 @@ var ExclusionType;
|
|
|
34957
34978
|
|
|
34958
34979
|
"use strict";
|
|
34959
34980
|
|
|
34960
|
-
exports
|
|
34981
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34961
34982
|
var action_1 = __webpack_require__(82285);
|
|
34962
34983
|
//# sourceMappingURL=alert-action-types.js.map
|
|
34963
34984
|
|
|
@@ -34968,20 +34989,20 @@ var action_1 = __webpack_require__(82285);
|
|
|
34968
34989
|
|
|
34969
34990
|
"use strict";
|
|
34970
34991
|
|
|
34971
|
-
exports
|
|
34992
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34972
34993
|
exports.ManualTriggerParamDataType = exports.Views = exports.StringOperator = exports.NumericOperator = exports.TriggerParamsValueType = exports.TimeTriggerUnitOfTime = exports.AlertSeverity = void 0;
|
|
34973
34994
|
var AlertSeverity;
|
|
34974
34995
|
(function (AlertSeverity) {
|
|
34975
34996
|
AlertSeverity[AlertSeverity["Low"] = 1] = "Low";
|
|
34976
34997
|
AlertSeverity[AlertSeverity["Medium"] = 2] = "Medium";
|
|
34977
34998
|
AlertSeverity[AlertSeverity["High"] = 3] = "High";
|
|
34978
|
-
})(AlertSeverity
|
|
34999
|
+
})(AlertSeverity || (exports.AlertSeverity = AlertSeverity = {}));
|
|
34979
35000
|
var TimeTriggerUnitOfTime;
|
|
34980
35001
|
(function (TimeTriggerUnitOfTime) {
|
|
34981
35002
|
TimeTriggerUnitOfTime["MINUTES"] = "minutes";
|
|
34982
35003
|
TimeTriggerUnitOfTime["HOURS"] = "hours";
|
|
34983
35004
|
TimeTriggerUnitOfTime["DAYS"] = "days";
|
|
34984
|
-
})(TimeTriggerUnitOfTime
|
|
35005
|
+
})(TimeTriggerUnitOfTime || (exports.TimeTriggerUnitOfTime = TimeTriggerUnitOfTime = {}));
|
|
34985
35006
|
var TriggerParamsValueType;
|
|
34986
35007
|
(function (TriggerParamsValueType) {
|
|
34987
35008
|
TriggerParamsValueType["ChangedTo"] = "ChangedTo";
|
|
@@ -34989,7 +35010,7 @@ var TriggerParamsValueType;
|
|
|
34989
35010
|
TriggerParamsValueType["Changed"] = "Changed";
|
|
34990
35011
|
TriggerParamsValueType["Added"] = "Added";
|
|
34991
35012
|
TriggerParamsValueType["Removed"] = "Removed";
|
|
34992
|
-
})(TriggerParamsValueType
|
|
35013
|
+
})(TriggerParamsValueType || (exports.TriggerParamsValueType = TriggerParamsValueType = {}));
|
|
34993
35014
|
var NumericOperator;
|
|
34994
35015
|
(function (NumericOperator) {
|
|
34995
35016
|
NumericOperator["LESS_THAN"] = "LESS_THAN";
|
|
@@ -34998,18 +35019,18 @@ var NumericOperator;
|
|
|
34998
35019
|
NumericOperator["GREATER_THAN_OR_EQUALS"] = "GREATER_THAN_OR_EQUALS";
|
|
34999
35020
|
NumericOperator["EQUALS"] = "EQUALS";
|
|
35000
35021
|
NumericOperator["NOT_EQUALS"] = "NOT_EQUALS";
|
|
35001
|
-
})(NumericOperator
|
|
35022
|
+
})(NumericOperator || (exports.NumericOperator = NumericOperator = {}));
|
|
35002
35023
|
var StringOperator;
|
|
35003
35024
|
(function (StringOperator) {
|
|
35004
35025
|
StringOperator["EQUALS"] = "EQUALS";
|
|
35005
35026
|
StringOperator["NOT_EQUALS"] = "NOT_EQUALS";
|
|
35006
35027
|
StringOperator["INCLUDE"] = "INCLUDE";
|
|
35007
35028
|
StringOperator["EXCLUDE"] = "EXCLUDE";
|
|
35008
|
-
})(StringOperator
|
|
35029
|
+
})(StringOperator || (exports.StringOperator = StringOperator = {}));
|
|
35009
35030
|
var Views;
|
|
35010
35031
|
(function (Views) {
|
|
35011
35032
|
Views["Fleet"] = "FLEET";
|
|
35012
|
-
})(Views
|
|
35033
|
+
})(Views || (exports.Views = Views = {}));
|
|
35013
35034
|
var ManualTriggerParamDataType;
|
|
35014
35035
|
(function (ManualTriggerParamDataType) {
|
|
35015
35036
|
ManualTriggerParamDataType["BOOLEAN"] = "boolean";
|
|
@@ -35017,7 +35038,7 @@ var ManualTriggerParamDataType;
|
|
|
35017
35038
|
ManualTriggerParamDataType["NUMBER"] = "number";
|
|
35018
35039
|
ManualTriggerParamDataType["DATE"] = "date";
|
|
35019
35040
|
ManualTriggerParamDataType["TIME"] = "time";
|
|
35020
|
-
})(ManualTriggerParamDataType
|
|
35041
|
+
})(ManualTriggerParamDataType || (exports.ManualTriggerParamDataType = ManualTriggerParamDataType = {}));
|
|
35021
35042
|
//# sourceMappingURL=alerts_configuration.js.map
|
|
35022
35043
|
|
|
35023
35044
|
/***/ }),
|
|
@@ -35027,7 +35048,7 @@ var ManualTriggerParamDataType;
|
|
|
35027
35048
|
|
|
35028
35049
|
"use strict";
|
|
35029
35050
|
|
|
35030
|
-
exports
|
|
35051
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35031
35052
|
var action_1 = __webpack_require__(82285);
|
|
35032
35053
|
//# sourceMappingURL=calculate_availability_state_types.js.map
|
|
35033
35054
|
|
|
@@ -35038,7 +35059,7 @@ var action_1 = __webpack_require__(82285);
|
|
|
35038
35059
|
|
|
35039
35060
|
"use strict";
|
|
35040
35061
|
|
|
35041
|
-
exports
|
|
35062
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35042
35063
|
var action_1 = __webpack_require__(82285);
|
|
35043
35064
|
//# sourceMappingURL=cancel_task_types.js.map
|
|
35044
35065
|
|
|
@@ -35049,7 +35070,7 @@ var action_1 = __webpack_require__(82285);
|
|
|
35049
35070
|
|
|
35050
35071
|
"use strict";
|
|
35051
35072
|
|
|
35052
|
-
exports
|
|
35073
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35053
35074
|
var action_1 = __webpack_require__(82285);
|
|
35054
35075
|
//# sourceMappingURL=email_shared_location.js.map
|
|
35055
35076
|
|
|
@@ -35060,7 +35081,7 @@ var action_1 = __webpack_require__(82285);
|
|
|
35060
35081
|
|
|
35061
35082
|
"use strict";
|
|
35062
35083
|
|
|
35063
|
-
exports
|
|
35084
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35064
35085
|
var action_1 = __webpack_require__(82285);
|
|
35065
35086
|
//# sourceMappingURL=generic-action-types.js.map
|
|
35066
35087
|
|
|
@@ -35085,7 +35106,7 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
35085
35106
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
35086
35107
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
35087
35108
|
};
|
|
35088
|
-
exports
|
|
35109
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35089
35110
|
__exportStar(__webpack_require__(47085), exports);
|
|
35090
35111
|
__exportStar(__webpack_require__(97390), exports);
|
|
35091
35112
|
__exportStar(__webpack_require__(99848), exports);
|
|
@@ -35108,7 +35129,7 @@ __exportStar(__webpack_require__(50222), exports);
|
|
|
35108
35129
|
|
|
35109
35130
|
"use strict";
|
|
35110
35131
|
|
|
35111
|
-
exports
|
|
35132
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35112
35133
|
var action_1 = __webpack_require__(82285);
|
|
35113
35134
|
//# sourceMappingURL=narrow_actionable_wp_types.js.map
|
|
35114
35135
|
|
|
@@ -35119,7 +35140,7 @@ var action_1 = __webpack_require__(82285);
|
|
|
35119
35140
|
|
|
35120
35141
|
"use strict";
|
|
35121
35142
|
|
|
35122
|
-
exports
|
|
35143
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35123
35144
|
var action_1 = __webpack_require__(82285);
|
|
35124
35145
|
//# sourceMappingURL=optimization_types.js.map
|
|
35125
35146
|
|
|
@@ -35130,7 +35151,7 @@ var action_1 = __webpack_require__(82285);
|
|
|
35130
35151
|
|
|
35131
35152
|
"use strict";
|
|
35132
35153
|
|
|
35133
|
-
exports
|
|
35154
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35134
35155
|
exports.DisplayFact = exports.RuleRequestType = exports.FactType = exports.Entity = exports.RuleCategory = exports.ArrayType = exports.RuleCompareOperator = exports.AttributeDatatype = void 0;
|
|
35135
35156
|
var AttributeDatatype;
|
|
35136
35157
|
(function (AttributeDatatype) {
|
|
@@ -35143,7 +35164,7 @@ var AttributeDatatype;
|
|
|
35143
35164
|
AttributeDatatype["NumberArray"] = "number-array";
|
|
35144
35165
|
AttributeDatatype["BooleanArray"] = "boolean-array";
|
|
35145
35166
|
AttributeDatatype["DatetimeArray"] = "datetime-array";
|
|
35146
|
-
})(AttributeDatatype
|
|
35167
|
+
})(AttributeDatatype || (exports.AttributeDatatype = AttributeDatatype = {}));
|
|
35147
35168
|
var RuleCompareOperator;
|
|
35148
35169
|
(function (RuleCompareOperator) {
|
|
35149
35170
|
RuleCompareOperator["EQUALS"] = "EQUALS";
|
|
@@ -35186,25 +35207,25 @@ var RuleCompareOperator;
|
|
|
35186
35207
|
RuleCompareOperator["ARRAY_ELEMENT_ENDS_WITH"] = "ARRAY_ELEMENT_ENDS_WITH";
|
|
35187
35208
|
RuleCompareOperator["NOT_ENDS_WITH"] = "NOT_ENDS_WITH";
|
|
35188
35209
|
RuleCompareOperator["ARRAY_ELEMENT_NOT_ENDS_WITH"] = "ARRAY_ELEMENT_NOT_ENDS_WITH";
|
|
35189
|
-
})(RuleCompareOperator
|
|
35210
|
+
})(RuleCompareOperator || (exports.RuleCompareOperator = RuleCompareOperator = {}));
|
|
35190
35211
|
var ArrayType;
|
|
35191
35212
|
(function (ArrayType) {
|
|
35192
35213
|
ArrayType["ANY"] = "any";
|
|
35193
35214
|
ArrayType["ALL"] = "all";
|
|
35194
|
-
})(ArrayType
|
|
35215
|
+
})(ArrayType || (exports.ArrayType = ArrayType = {}));
|
|
35195
35216
|
var RuleCategory;
|
|
35196
35217
|
(function (RuleCategory) {
|
|
35197
35218
|
RuleCategory[RuleCategory["FleetRouter"] = 0] = "FleetRouter";
|
|
35198
35219
|
RuleCategory[RuleCategory["Alert"] = 1] = "Alert";
|
|
35199
35220
|
RuleCategory[RuleCategory["Rate"] = 2] = "Rate";
|
|
35200
35221
|
RuleCategory[RuleCategory["Workflow"] = 3] = "Workflow";
|
|
35201
|
-
})(RuleCategory
|
|
35222
|
+
})(RuleCategory || (exports.RuleCategory = RuleCategory = {}));
|
|
35202
35223
|
var Entity;
|
|
35203
35224
|
(function (Entity) {
|
|
35204
35225
|
Entity["Fleet"] = "fleet";
|
|
35205
35226
|
Entity["DeliveryProvider"] = "delivery_provider";
|
|
35206
35227
|
Entity["Action"] = "action";
|
|
35207
|
-
})(Entity
|
|
35228
|
+
})(Entity || (exports.Entity = Entity = {}));
|
|
35208
35229
|
var FactType;
|
|
35209
35230
|
(function (FactType) {
|
|
35210
35231
|
FactType["Task"] = "task";
|
|
@@ -35214,18 +35235,18 @@ var FactType;
|
|
|
35214
35235
|
FactType["Rate"] = "rate";
|
|
35215
35236
|
FactType["User"] = "user";
|
|
35216
35237
|
FactType["DeliveryBlock"] = "delivery_block";
|
|
35217
|
-
})(FactType
|
|
35238
|
+
})(FactType || (exports.FactType = FactType = {}));
|
|
35218
35239
|
var RuleRequestType;
|
|
35219
35240
|
(function (RuleRequestType) {
|
|
35220
35241
|
RuleRequestType["Evaluate"] = "rule:evaluate";
|
|
35221
|
-
})(RuleRequestType
|
|
35242
|
+
})(RuleRequestType || (exports.RuleRequestType = RuleRequestType = {}));
|
|
35222
35243
|
var DisplayFact;
|
|
35223
35244
|
(function (DisplayFact) {
|
|
35224
35245
|
DisplayFact["Task"] = "task";
|
|
35225
35246
|
DisplayFact["QueryTask"] = "query_task";
|
|
35226
35247
|
DisplayFact["User"] = "user";
|
|
35227
35248
|
DisplayFact["DeliveryBlock"] = "delivery_block";
|
|
35228
|
-
})(DisplayFact
|
|
35249
|
+
})(DisplayFact || (exports.DisplayFact = DisplayFact = {}));
|
|
35229
35250
|
//# sourceMappingURL=rule_types.js.map
|
|
35230
35251
|
|
|
35231
35252
|
/***/ }),
|
|
@@ -35235,7 +35256,7 @@ var DisplayFact;
|
|
|
35235
35256
|
|
|
35236
35257
|
"use strict";
|
|
35237
35258
|
|
|
35238
|
-
exports
|
|
35259
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35239
35260
|
var action_1 = __webpack_require__(82285);
|
|
35240
35261
|
//# sourceMappingURL=share_location_types.js.map
|
|
35241
35262
|
|
|
@@ -35246,19 +35267,19 @@ var action_1 = __webpack_require__(82285);
|
|
|
35246
35267
|
|
|
35247
35268
|
"use strict";
|
|
35248
35269
|
|
|
35249
|
-
exports
|
|
35270
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35250
35271
|
exports.MathOperator = exports.ChangeType = void 0;
|
|
35251
35272
|
var action_1 = __webpack_require__(82285);
|
|
35252
35273
|
var ChangeType;
|
|
35253
35274
|
(function (ChangeType) {
|
|
35254
35275
|
ChangeType["SPECIFIC_VALUE"] = "specific";
|
|
35255
35276
|
ChangeType["RELATIVE_VALUE"] = "relative";
|
|
35256
|
-
})(ChangeType
|
|
35277
|
+
})(ChangeType || (exports.ChangeType = ChangeType = {}));
|
|
35257
35278
|
var MathOperator;
|
|
35258
35279
|
(function (MathOperator) {
|
|
35259
35280
|
MathOperator["ADDITION"] = "addition";
|
|
35260
35281
|
MathOperator["SUBTRACTION"] = "subtraction";
|
|
35261
|
-
})(MathOperator
|
|
35282
|
+
})(MathOperator || (exports.MathOperator = MathOperator = {}));
|
|
35262
35283
|
//# sourceMappingURL=update_entity_types.js.map
|
|
35263
35284
|
|
|
35264
35285
|
/***/ }),
|
|
@@ -35268,7 +35289,7 @@ var MathOperator;
|
|
|
35268
35289
|
|
|
35269
35290
|
"use strict";
|
|
35270
35291
|
|
|
35271
|
-
exports
|
|
35292
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35272
35293
|
var action_1 = __webpack_require__(82285);
|
|
35273
35294
|
//# sourceMappingURL=webhook_types.js.map
|
|
35274
35295
|
|
|
@@ -35279,7 +35300,7 @@ var action_1 = __webpack_require__(82285);
|
|
|
35279
35300
|
|
|
35280
35301
|
"use strict";
|
|
35281
35302
|
|
|
35282
|
-
exports
|
|
35303
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35283
35304
|
//# sourceMappingURL=workflow-template-strings.js.map
|
|
35284
35305
|
|
|
35285
35306
|
/***/ }),
|