@bringg/dashboard-sdk 8.19.0 → 8.19.1-pre.2
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/BringgDashboardSDK.d.ts +2 -0
- package/dist/BringgDashboardSDK.js +3 -1
- package/dist/BringgDashboardSDK.js.map +1 -1
- package/dist/Chat/Chat.d.ts +1 -1
- package/dist/Chat/Chat.js.map +1 -1
- package/dist/Chat/Service/Chat.service.d.ts +1 -1
- package/dist/OptimizationResult/optimization-result-api.d.ts +2 -2
- package/dist/OptimizationResult/optimization-result-api.js +2 -2
- package/dist/OptimizationResult/optimization-result-api.js.map +1 -1
- package/dist/OptimizationResult/optimization-result-service.d.ts +2 -2
- package/dist/OptimizationResult/optimization-result-service.js +10 -5
- package/dist/OptimizationResult/optimization-result-service.js.map +1 -1
- package/dist/Services/ServiceRequest.js +1 -1
- package/dist/TasksExplorer/Services/tasks-explorer-service.d.ts +8 -0
- package/dist/TasksExplorer/Services/tasks-explorer-service.js +61 -0
- package/dist/TasksExplorer/Services/tasks-explorer-service.js.map +1 -0
- package/dist/TasksExplorer/v2/tasks-explorer-api.d.ts +8 -0
- package/dist/TasksExplorer/v2/tasks-explorer-api.js +55 -0
- package/dist/TasksExplorer/v2/tasks-explorer-api.js.map +1 -0
- package/dist/bringg-dashboard-sdk-cjs2.js +332 -21
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +115 -16
- package/dist/bringg-dashboard-sdk.min.js +1 -1
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -2416,6 +2416,7 @@ var TaskConfiguration_1 = __webpack_require__(15127);
|
|
|
2416
2416
|
var TaskInventory_1 = __webpack_require__(92448);
|
|
2417
2417
|
var TaskManagedAttributes_1 = __webpack_require__(26931);
|
|
2418
2418
|
var task_reject_reasons_api_1 = __webpack_require__(62954);
|
|
2419
|
+
var tasks_explorer_api_1 = __webpack_require__(66845);
|
|
2419
2420
|
var TeamApi_1 = __webpack_require__(10879);
|
|
2420
2421
|
var TeamConfigurationApi_1 = __webpack_require__(37565);
|
|
2421
2422
|
var TeamServiceAreaApi_1 = __webpack_require__(2847);
|
|
@@ -2693,7 +2694,8 @@ function init(session) {
|
|
|
2693
2694
|
deliveryWindows: new delivery_windows_api_1.default(session),
|
|
2694
2695
|
taskManagedAttributes: new TaskManagedAttributes_1.TaskManagedAttributesApi(session),
|
|
2695
2696
|
chat: new Chat_1.default(session),
|
|
2696
|
-
optimizationKpi: new OptimizationKpiApi_1.default(session)
|
|
2697
|
+
optimizationKpi: new OptimizationKpiApi_1.default(session),
|
|
2698
|
+
tasksExplorer: new tasks_explorer_api_1.default(session)
|
|
2697
2699
|
};
|
|
2698
2700
|
bringg.application = new ApplicationApi_1.default(session);
|
|
2699
2701
|
bringg.chat = new ChatConversationApi_1.default(session);
|
|
@@ -14083,8 +14085,8 @@ var OptimizationResultApi = /** @class */ (function () {
|
|
|
14083
14085
|
OptimizationResultApi.prototype.load = function (teamId, requestUuid) {
|
|
14084
14086
|
return this.optimizationResultService.load(teamId, requestUuid);
|
|
14085
14087
|
};
|
|
14086
|
-
OptimizationResultApi.prototype.loadAll = function (
|
|
14087
|
-
return this.optimizationResultService.loadAll(
|
|
14088
|
+
OptimizationResultApi.prototype.loadAll = function (request) {
|
|
14089
|
+
return this.optimizationResultService.loadAll(request);
|
|
14088
14090
|
};
|
|
14089
14091
|
return OptimizationResultApi;
|
|
14090
14092
|
}());
|
|
@@ -14161,7 +14163,7 @@ var OptimizationResultService = /** @class */ (function () {
|
|
|
14161
14163
|
});
|
|
14162
14164
|
});
|
|
14163
14165
|
};
|
|
14164
|
-
OptimizationResultService.prototype.loadAll = function (
|
|
14166
|
+
OptimizationResultService.prototype.loadAll = function (request) {
|
|
14165
14167
|
return __awaiter(this, void 0, void 0, function () {
|
|
14166
14168
|
return __generator(this, function (_a) {
|
|
14167
14169
|
switch (_a.label) {
|
|
@@ -14169,10 +14171,15 @@ var OptimizationResultService = /** @class */ (function () {
|
|
|
14169
14171
|
.get(exports.Routes.GET_ALL)
|
|
14170
14172
|
.setException('failed to load optimization results')
|
|
14171
14173
|
.withQueryString({
|
|
14172
|
-
team_id:
|
|
14173
|
-
start_time:
|
|
14174
|
-
|
|
14175
|
-
page_size:
|
|
14174
|
+
team_id: request.team_id,
|
|
14175
|
+
start_time: request.start_time,
|
|
14176
|
+
end_time: request.end_time,
|
|
14177
|
+
page_size: request.page_size,
|
|
14178
|
+
page_number: request.page_number,
|
|
14179
|
+
origin: request.origin,
|
|
14180
|
+
user_ids: request.user_ids,
|
|
14181
|
+
sort_column: request.sort_column,
|
|
14182
|
+
sort_direction: request.sort_direction
|
|
14176
14183
|
})
|
|
14177
14184
|
.invoke()];
|
|
14178
14185
|
case 1: return [2 /*return*/, _a.sent()];
|
|
@@ -20206,7 +20213,7 @@ var lodash_1 = __webpack_require__(96486);
|
|
|
20206
20213
|
var BringgException_1 = __webpack_require__(43605);
|
|
20207
20214
|
var Logger_1 = __webpack_require__(55860);
|
|
20208
20215
|
var abort_1 = __webpack_require__(34179);
|
|
20209
|
-
var version = '8.19.
|
|
20216
|
+
var version = '8.19.1-pre.2';
|
|
20210
20217
|
function logErrorResponse(response) {
|
|
20211
20218
|
var data = response.data, status = response.status;
|
|
20212
20219
|
try {
|
|
@@ -24095,6 +24102,136 @@ exports["default"] = TaskRejectReasonsService;
|
|
|
24095
24102
|
|
|
24096
24103
|
/***/ }),
|
|
24097
24104
|
|
|
24105
|
+
/***/ 5880:
|
|
24106
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
24107
|
+
|
|
24108
|
+
"use strict";
|
|
24109
|
+
|
|
24110
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
24111
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
24112
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24113
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
24114
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
24115
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
24116
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24117
|
+
});
|
|
24118
|
+
};
|
|
24119
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
24120
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24121
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
24122
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
24123
|
+
function step(op) {
|
|
24124
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
24125
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
24126
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
24127
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
24128
|
+
switch (op[0]) {
|
|
24129
|
+
case 0: case 1: t = op; break;
|
|
24130
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
24131
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
24132
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
24133
|
+
default:
|
|
24134
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
24135
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
24136
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
24137
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
24138
|
+
if (t[2]) _.ops.pop();
|
|
24139
|
+
_.trys.pop(); continue;
|
|
24140
|
+
}
|
|
24141
|
+
op = body.call(thisArg, _);
|
|
24142
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
24143
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
24144
|
+
}
|
|
24145
|
+
};
|
|
24146
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
24147
|
+
var CrudService_1 = __webpack_require__(14809);
|
|
24148
|
+
var baseUrl = 'data-query-service';
|
|
24149
|
+
var entityName = 'tasks-explorer';
|
|
24150
|
+
var TasksExplorerService = /** @class */ (function () {
|
|
24151
|
+
function TasksExplorerService(session) {
|
|
24152
|
+
this.service = new CrudService_1.default(session, entityName);
|
|
24153
|
+
}
|
|
24154
|
+
TasksExplorerService.prototype.getAll = function (req, commonOptions) {
|
|
24155
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
24156
|
+
return __generator(this, function (_a) {
|
|
24157
|
+
return [2 /*return*/, this.service.routeGenerator
|
|
24158
|
+
.post("/".concat(baseUrl, "/").concat(entityName))
|
|
24159
|
+
.withPayload(req)
|
|
24160
|
+
.setException("failed to fetch tasks")
|
|
24161
|
+
.withCommonOptions(commonOptions)
|
|
24162
|
+
.invoke()];
|
|
24163
|
+
});
|
|
24164
|
+
});
|
|
24165
|
+
};
|
|
24166
|
+
return TasksExplorerService;
|
|
24167
|
+
}());
|
|
24168
|
+
exports["default"] = TasksExplorerService;
|
|
24169
|
+
//# sourceMappingURL=tasks-explorer-service.js.map
|
|
24170
|
+
|
|
24171
|
+
/***/ }),
|
|
24172
|
+
|
|
24173
|
+
/***/ 66845:
|
|
24174
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
24175
|
+
|
|
24176
|
+
"use strict";
|
|
24177
|
+
|
|
24178
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
24179
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
24180
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24181
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
24182
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
24183
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
24184
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24185
|
+
});
|
|
24186
|
+
};
|
|
24187
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
24188
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24189
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
24190
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
24191
|
+
function step(op) {
|
|
24192
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
24193
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
24194
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
24195
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
24196
|
+
switch (op[0]) {
|
|
24197
|
+
case 0: case 1: t = op; break;
|
|
24198
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
24199
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
24200
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
24201
|
+
default:
|
|
24202
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
24203
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
24204
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
24205
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
24206
|
+
if (t[2]) _.ops.pop();
|
|
24207
|
+
_.trys.pop(); continue;
|
|
24208
|
+
}
|
|
24209
|
+
op = body.call(thisArg, _);
|
|
24210
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
24211
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
24212
|
+
}
|
|
24213
|
+
};
|
|
24214
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
24215
|
+
var tasks_explorer_service_1 = __webpack_require__(5880);
|
|
24216
|
+
var TasksExplorerApi = /** @class */ (function () {
|
|
24217
|
+
function TasksExplorerApi(session) {
|
|
24218
|
+
this.tasksExplorerService = new tasks_explorer_service_1.default(session);
|
|
24219
|
+
}
|
|
24220
|
+
TasksExplorerApi.prototype.getAll = function (req, commonOptions) {
|
|
24221
|
+
if (commonOptions === void 0) { commonOptions = {}; }
|
|
24222
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
24223
|
+
return __generator(this, function (_a) {
|
|
24224
|
+
return [2 /*return*/, this.tasksExplorerService.getAll(req, commonOptions)];
|
|
24225
|
+
});
|
|
24226
|
+
});
|
|
24227
|
+
};
|
|
24228
|
+
return TasksExplorerApi;
|
|
24229
|
+
}());
|
|
24230
|
+
exports["default"] = TasksExplorerApi;
|
|
24231
|
+
//# sourceMappingURL=tasks-explorer-api.js.map
|
|
24232
|
+
|
|
24233
|
+
/***/ }),
|
|
24234
|
+
|
|
24098
24235
|
/***/ 29722:
|
|
24099
24236
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
24100
24237
|
|
|
@@ -29146,7 +29283,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
29146
29283
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
29147
29284
|
};
|
|
29148
29285
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
29149
|
-
exports.WorkflowsApi = exports.VehicleTypeConsts = exports.VehicleCategoryConsts = exports.VehicleGroup = exports.VehiclesApi = exports.AbortUtils = exports.UploadApi = exports.UploadConsts = exports.TaskRejectReasonsApi = exports.TaskInventoryConsts = exports.TasksApi = exports.TaskGroupValues = exports.TaskGroupTypes = exports.TagConsts = exports.ServiceAreaApi = exports.ServiceAreaFilterGroups = exports.RunsApi = exports.RunStatus = exports.RunConsts = exports.ResourceUploadType = exports.ReasonToChangeInventory = exports.PlannedRoutesConsts = exports.PlannedDeliveryWindowsApi = exports.RecurrenceType = exports.PlannedDeliveryWindowsFilterGroups = exports.OptimizationResultApi = exports.NotificationTypesConsts = exports.NotificationTemplateConsts = exports.LookupConsts = exports.LanguageConsts = exports.ExclusionWindowApiV2 = exports.ExclusionWindowsFilterGroups = exports.DeliveryWindowsApi = exports.DeliveryBlockConsts = exports.DashboardConsts = exports.CrewConsts = exports.Responses = exports.ChatMessageConsts = exports.ChatConversationConsts = exports.BringgDashboardSDK = void 0;
|
|
29286
|
+
exports.WorkflowsApi = exports.VehicleTypeConsts = exports.VehicleCategoryConsts = exports.VehicleGroup = exports.VehiclesApi = exports.AbortUtils = exports.UploadApi = exports.UploadConsts = exports.TasksExplorerApi = exports.TaskRejectReasonsApi = exports.TaskInventoryConsts = exports.TasksApi = exports.TaskGroupValues = exports.TaskGroupTypes = exports.TagConsts = exports.ServiceAreaApi = exports.ServiceAreaFilterGroups = exports.RunsApi = exports.RunStatus = exports.RunConsts = exports.ResourceUploadType = exports.ReasonToChangeInventory = exports.PlannedRoutesConsts = exports.PlannedDeliveryWindowsApi = exports.RecurrenceType = exports.PlannedDeliveryWindowsFilterGroups = exports.OptimizationResultApi = exports.NotificationTypesConsts = exports.NotificationTemplateConsts = exports.LookupConsts = exports.LanguageConsts = exports.ExclusionWindowApiV2 = exports.ExclusionWindowsFilterGroups = exports.DeliveryWindowsApi = exports.DeliveryBlockConsts = exports.DashboardConsts = exports.CrewConsts = exports.Responses = exports.ChatMessageConsts = exports.ChatConversationConsts = exports.BringgDashboardSDK = void 0;
|
|
29150
29287
|
__exportStar(__webpack_require__(37360), exports);
|
|
29151
29288
|
__exportStar(__webpack_require__(5655), exports);
|
|
29152
29289
|
var BringgDashboardSDK_1 = __webpack_require__(5655);
|
|
@@ -29198,6 +29335,8 @@ exports.TaskInventoryConsts = __webpack_require__(31289);
|
|
|
29198
29335
|
__exportStar(__webpack_require__(26931), exports);
|
|
29199
29336
|
var task_reject_reasons_api_1 = __webpack_require__(62954);
|
|
29200
29337
|
Object.defineProperty(exports, "TaskRejectReasonsApi", ({ enumerable: true, get: function () { return task_reject_reasons_api_1.default; } }));
|
|
29338
|
+
var tasks_explorer_api_1 = __webpack_require__(66845);
|
|
29339
|
+
Object.defineProperty(exports, "TasksExplorerApi", ({ enumerable: true, get: function () { return tasks_explorer_api_1.default; } }));
|
|
29201
29340
|
exports.UploadConsts = __webpack_require__(30875);
|
|
29202
29341
|
var upload_api_1 = __webpack_require__(61488);
|
|
29203
29342
|
Object.defineProperty(exports, "UploadApi", ({ enumerable: true, get: function () { return upload_api_1.default; } }));
|
|
@@ -30978,6 +31117,7 @@ __exportStar(__webpack_require__(52462), exports);
|
|
|
30978
31117
|
__exportStar(__webpack_require__(77673), exports);
|
|
30979
31118
|
__exportStar(__webpack_require__(32918), exports);
|
|
30980
31119
|
__exportStar(__webpack_require__(12073), exports);
|
|
31120
|
+
__exportStar(__webpack_require__(98719), exports);
|
|
30981
31121
|
__exportStar(__webpack_require__(17050), exports);
|
|
30982
31122
|
__exportStar(__webpack_require__(656), exports);
|
|
30983
31123
|
__exportStar(__webpack_require__(68270), exports);
|
|
@@ -31016,6 +31156,7 @@ __exportStar(__webpack_require__(48967), exports);
|
|
|
31016
31156
|
__exportStar(__webpack_require__(81381), exports);
|
|
31017
31157
|
__exportStar(__webpack_require__(14801), exports);
|
|
31018
31158
|
__exportStar(__webpack_require__(37022), exports);
|
|
31159
|
+
__exportStar(__webpack_require__(69786), exports);
|
|
31019
31160
|
__exportStar(__webpack_require__(52632), exports);
|
|
31020
31161
|
__exportStar(__webpack_require__(87907), exports);
|
|
31021
31162
|
__exportStar(__webpack_require__(97868), exports);
|
|
@@ -31070,6 +31211,7 @@ __exportStar(__webpack_require__(51851), exports);
|
|
|
31070
31211
|
__exportStar(__webpack_require__(81075), exports);
|
|
31071
31212
|
__exportStar(__webpack_require__(73918), exports);
|
|
31072
31213
|
__exportStar(__webpack_require__(74116), exports);
|
|
31214
|
+
__exportStar(__webpack_require__(61036), exports);
|
|
31073
31215
|
__exportStar(__webpack_require__(30200), exports);
|
|
31074
31216
|
__exportStar(__webpack_require__(76581), exports);
|
|
31075
31217
|
__exportStar(__webpack_require__(11035), exports);
|
|
@@ -31329,6 +31471,22 @@ var AlertDisplayCategory;
|
|
|
31329
31471
|
"use strict";
|
|
31330
31472
|
|
|
31331
31473
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31474
|
+
exports.API_KEY_HEADER_NAME = exports.AnalyticsParentAppToTargetSystemMap = exports.AnalyticsTargetSystem = exports.AnalyticsParentApp = void 0;
|
|
31475
|
+
var AnalyticsParentApp;
|
|
31476
|
+
(function (AnalyticsParentApp) {
|
|
31477
|
+
AnalyticsParentApp["OwnFleet"] = "own-fleet";
|
|
31478
|
+
AnalyticsParentApp["DeliveryHub"] = "delivery-hub";
|
|
31479
|
+
})(AnalyticsParentApp || (exports.AnalyticsParentApp = AnalyticsParentApp = {}));
|
|
31480
|
+
var AnalyticsTargetSystem;
|
|
31481
|
+
(function (AnalyticsTargetSystem) {
|
|
31482
|
+
AnalyticsTargetSystem[AnalyticsTargetSystem["OwnFleet"] = 0] = "OwnFleet";
|
|
31483
|
+
AnalyticsTargetSystem[AnalyticsTargetSystem["DeliveryHub"] = 1] = "DeliveryHub";
|
|
31484
|
+
})(AnalyticsTargetSystem || (exports.AnalyticsTargetSystem = AnalyticsTargetSystem = {}));
|
|
31485
|
+
exports.AnalyticsParentAppToTargetSystemMap = new Map([
|
|
31486
|
+
[AnalyticsParentApp.OwnFleet, AnalyticsTargetSystem.OwnFleet],
|
|
31487
|
+
[AnalyticsParentApp.DeliveryHub, AnalyticsTargetSystem.DeliveryHub]
|
|
31488
|
+
]);
|
|
31489
|
+
exports.API_KEY_HEADER_NAME = 'x-api-key';
|
|
31332
31490
|
//# sourceMappingURL=common.js.map
|
|
31333
31491
|
|
|
31334
31492
|
/***/ }),
|
|
@@ -31355,17 +31513,17 @@ var SharedEntityAccessLevel;
|
|
|
31355
31513
|
"use strict";
|
|
31356
31514
|
|
|
31357
31515
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
31358
|
-
exports.
|
|
31359
|
-
var CubeClientIds;
|
|
31360
|
-
(function (CubeClientIds) {
|
|
31361
|
-
CubeClientIds["OwnFleet"] = "own-fleet";
|
|
31362
|
-
CubeClientIds["DeliveryHub"] = "delivery-hub";
|
|
31363
|
-
})(CubeClientIds || (exports.CubeClientIds = CubeClientIds = {}));
|
|
31516
|
+
exports.CubeClientIds = exports.CubeDataSource = void 0;
|
|
31364
31517
|
var CubeDataSource;
|
|
31365
31518
|
(function (CubeDataSource) {
|
|
31366
31519
|
CubeDataSource["Presto"] = "prestodb";
|
|
31367
31520
|
CubeDataSource["Druid"] = "druid";
|
|
31368
31521
|
})(CubeDataSource || (exports.CubeDataSource = CubeDataSource = {}));
|
|
31522
|
+
var CubeClientIds;
|
|
31523
|
+
(function (CubeClientIds) {
|
|
31524
|
+
CubeClientIds["OwnFleet"] = "own-fleet";
|
|
31525
|
+
CubeClientIds["DeliveryHub"] = "delivery-hub";
|
|
31526
|
+
})(CubeClientIds || (exports.CubeClientIds = CubeClientIds = {}));
|
|
31369
31527
|
//# sourceMappingURL=cubejs.js.map
|
|
31370
31528
|
|
|
31371
31529
|
/***/ }),
|
|
@@ -31788,7 +31946,6 @@ var ApplicationUuid;
|
|
|
31788
31946
|
ApplicationUuid["StoreAppApp"] = "b4152c59-70a3-415e-b414-ce419550782e";
|
|
31789
31947
|
ApplicationUuid["TowNow"] = "cd52a2c2-193d-4f92-bf01-3412194e18b2";
|
|
31790
31948
|
ApplicationUuid["TasksETL"] = "3043914f-9be6-43c6-b1d8-e249410c79bc";
|
|
31791
|
-
ApplicationUuid["TaskScanner"] = "255ef1ae-0012-448a-ad55-7dbfec3f1223";
|
|
31792
31949
|
ApplicationUuid["TaskSchedulingApp"] = "779d22c8-e18a-4723-9fd9-b5475178c244";
|
|
31793
31950
|
ApplicationUuid["TaskSkillsApp"] = "b6dbfed4-d416-48eb-9552-610b15ff5748";
|
|
31794
31951
|
ApplicationUuid["TaskTimesPredictions"] = "6c573459-dad9-4486-bdaa-b7ff32bd3019";
|
|
@@ -31876,6 +32033,28 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
31876
32033
|
|
|
31877
32034
|
/***/ }),
|
|
31878
32035
|
|
|
32036
|
+
/***/ 60327:
|
|
32037
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
32038
|
+
|
|
32039
|
+
"use strict";
|
|
32040
|
+
|
|
32041
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32042
|
+
exports.ChatErrorCodes = void 0;
|
|
32043
|
+
var ChatErrorCodes;
|
|
32044
|
+
(function (ChatErrorCodes) {
|
|
32045
|
+
ChatErrorCodes[ChatErrorCodes["BRINGG_USERS_NOT_FOUND"] = 100] = "BRINGG_USERS_NOT_FOUND";
|
|
32046
|
+
ChatErrorCodes[ChatErrorCodes["FAILED_TO_CREATE_CHAT_USER"] = 101] = "FAILED_TO_CREATE_CHAT_USER";
|
|
32047
|
+
ChatErrorCodes[ChatErrorCodes["FAILED_TO_CREATE_SENDBIRD_USER"] = 102] = "FAILED_TO_CREATE_SENDBIRD_USER";
|
|
32048
|
+
ChatErrorCodes[ChatErrorCodes["BRINGG_USER_NOT_FOUND"] = 103] = "BRINGG_USER_NOT_FOUND";
|
|
32049
|
+
ChatErrorCodes[ChatErrorCodes["CHAT_MERCHANT_APP_NOT_FOUND"] = 104] = "CHAT_MERCHANT_APP_NOT_FOUND";
|
|
32050
|
+
ChatErrorCodes[ChatErrorCodes["CHAT_MERCHANT_APP_ALREADY_EXIST"] = 105] = "CHAT_MERCHANT_APP_ALREADY_EXIST";
|
|
32051
|
+
ChatErrorCodes[ChatErrorCodes["CHAT_MERCHANT_APP_IS_NOT_CREATED_YET"] = 106] = "CHAT_MERCHANT_APP_IS_NOT_CREATED_YET";
|
|
32052
|
+
ChatErrorCodes[ChatErrorCodes["MERCHANT_CONFIGURATION_NOT_FOUND"] = 107] = "MERCHANT_CONFIGURATION_NOT_FOUND";
|
|
32053
|
+
})(ChatErrorCodes || (exports.ChatErrorCodes = ChatErrorCodes = {}));
|
|
32054
|
+
//# sourceMappingURL=error_codes.js.map
|
|
32055
|
+
|
|
32056
|
+
/***/ }),
|
|
32057
|
+
|
|
31879
32058
|
/***/ 68734:
|
|
31880
32059
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
31881
32060
|
|
|
@@ -31899,6 +32078,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
31899
32078
|
__exportStar(__webpack_require__(52311), exports);
|
|
31900
32079
|
__exportStar(__webpack_require__(43720), exports);
|
|
31901
32080
|
__exportStar(__webpack_require__(89572), exports);
|
|
32081
|
+
__exportStar(__webpack_require__(60327), exports);
|
|
31902
32082
|
//# sourceMappingURL=index.js.map
|
|
31903
32083
|
|
|
31904
32084
|
/***/ }),
|
|
@@ -32591,6 +32771,16 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
32591
32771
|
|
|
32592
32772
|
/***/ }),
|
|
32593
32773
|
|
|
32774
|
+
/***/ 98719:
|
|
32775
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
32776
|
+
|
|
32777
|
+
"use strict";
|
|
32778
|
+
|
|
32779
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32780
|
+
//# sourceMappingURL=index.js.map
|
|
32781
|
+
|
|
32782
|
+
/***/ }),
|
|
32783
|
+
|
|
32594
32784
|
/***/ 17050:
|
|
32595
32785
|
/***/ ((__unused_webpack_module, exports) => {
|
|
32596
32786
|
|
|
@@ -33439,7 +33629,17 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
33439
33629
|
"use strict";
|
|
33440
33630
|
|
|
33441
33631
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33442
|
-
exports.OptimizationEntityType = void 0;
|
|
33632
|
+
exports.OptimizationEntityType = exports.OptimizationResultsSortColumn = void 0;
|
|
33633
|
+
var OptimizationResultsSortColumn;
|
|
33634
|
+
(function (OptimizationResultsSortColumn) {
|
|
33635
|
+
OptimizationResultsSortColumn[OptimizationResultsSortColumn["created_at"] = 0] = "created_at";
|
|
33636
|
+
OptimizationResultsSortColumn[OptimizationResultsSortColumn["stops_per_hour"] = 1] = "stops_per_hour";
|
|
33637
|
+
OptimizationResultsSortColumn[OptimizationResultsSortColumn["intersections"] = 2] = "intersections";
|
|
33638
|
+
OptimizationResultsSortColumn[OptimizationResultsSortColumn["total_route_duration"] = 3] = "total_route_duration";
|
|
33639
|
+
OptimizationResultsSortColumn[OptimizationResultsSortColumn["total_route_distance"] = 4] = "total_route_distance";
|
|
33640
|
+
OptimizationResultsSortColumn[OptimizationResultsSortColumn["total_routes"] = 5] = "total_routes";
|
|
33641
|
+
OptimizationResultsSortColumn[OptimizationResultsSortColumn["total_assigned_orders"] = 6] = "total_assigned_orders";
|
|
33642
|
+
})(OptimizationResultsSortColumn || (exports.OptimizationResultsSortColumn = OptimizationResultsSortColumn = {}));
|
|
33443
33643
|
var OptimizationEntityType;
|
|
33444
33644
|
(function (OptimizationEntityType) {
|
|
33445
33645
|
OptimizationEntityType["Task"] = "task";
|
|
@@ -33573,6 +33773,66 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
33573
33773
|
|
|
33574
33774
|
/***/ }),
|
|
33575
33775
|
|
|
33776
|
+
/***/ 69786:
|
|
33777
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
33778
|
+
|
|
33779
|
+
"use strict";
|
|
33780
|
+
|
|
33781
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
33782
|
+
if (k2 === undefined) k2 = k;
|
|
33783
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
33784
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
33785
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
33786
|
+
}
|
|
33787
|
+
Object.defineProperty(o, k2, desc);
|
|
33788
|
+
}) : (function(o, m, k, k2) {
|
|
33789
|
+
if (k2 === undefined) k2 = k;
|
|
33790
|
+
o[k2] = m[k];
|
|
33791
|
+
}));
|
|
33792
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
33793
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
33794
|
+
};
|
|
33795
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33796
|
+
__exportStar(__webpack_require__(9579), exports);
|
|
33797
|
+
__exportStar(__webpack_require__(71034), exports);
|
|
33798
|
+
//# sourceMappingURL=index.js.map
|
|
33799
|
+
|
|
33800
|
+
/***/ }),
|
|
33801
|
+
|
|
33802
|
+
/***/ 9579:
|
|
33803
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
33804
|
+
|
|
33805
|
+
"use strict";
|
|
33806
|
+
|
|
33807
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33808
|
+
exports.PresetViewScope = exports.PresetViewSupportedView = void 0;
|
|
33809
|
+
var PresetViewSupportedView;
|
|
33810
|
+
(function (PresetViewSupportedView) {
|
|
33811
|
+
PresetViewSupportedView[PresetViewSupportedView["Dispatch"] = 0] = "Dispatch";
|
|
33812
|
+
PresetViewSupportedView[PresetViewSupportedView["Planning"] = 1] = "Planning";
|
|
33813
|
+
PresetViewSupportedView[PresetViewSupportedView["OrderAlerts"] = 2] = "OrderAlerts";
|
|
33814
|
+
PresetViewSupportedView[PresetViewSupportedView["DriverAlerts"] = 3] = "DriverAlerts";
|
|
33815
|
+
PresetViewSupportedView[PresetViewSupportedView["OptimisationAlerts"] = 4] = "OptimisationAlerts";
|
|
33816
|
+
})(PresetViewSupportedView || (exports.PresetViewSupportedView = PresetViewSupportedView = {}));
|
|
33817
|
+
var PresetViewScope;
|
|
33818
|
+
(function (PresetViewScope) {
|
|
33819
|
+
PresetViewScope["Merchant"] = "merchant";
|
|
33820
|
+
PresetViewScope["User"] = "user";
|
|
33821
|
+
})(PresetViewScope || (exports.PresetViewScope = PresetViewScope = {}));
|
|
33822
|
+
//# sourceMappingURL=preset_view.js.map
|
|
33823
|
+
|
|
33824
|
+
/***/ }),
|
|
33825
|
+
|
|
33826
|
+
/***/ 71034:
|
|
33827
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
33828
|
+
|
|
33829
|
+
"use strict";
|
|
33830
|
+
|
|
33831
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33832
|
+
//# sourceMappingURL=user_preset_view.js.map
|
|
33833
|
+
|
|
33834
|
+
/***/ }),
|
|
33835
|
+
|
|
33576
33836
|
/***/ 52632:
|
|
33577
33837
|
/***/ ((__unused_webpack_module, exports) => {
|
|
33578
33838
|
|
|
@@ -33860,6 +34120,7 @@ var ReasonToCancelTaskType;
|
|
|
33860
34120
|
ReasonToCancelTaskType["RESERVATION_EXPIRED"] = "reservation_expired";
|
|
33861
34121
|
ReasonToCancelTaskType["CUSTOM"] = "custom";
|
|
33862
34122
|
ReasonToCancelTaskType["PRIMARY_ORDER_CANCELLED"] = "primary_order_cancelled";
|
|
34123
|
+
ReasonToCancelTaskType["RESCHEDULE"] = "reschedule";
|
|
33863
34124
|
})(ReasonToCancelTaskType || (exports.ReasonToCancelTaskType = ReasonToCancelTaskType = {}));
|
|
33864
34125
|
//# sourceMappingURL=reason_to_cancel_task.js.map
|
|
33865
34126
|
|
|
@@ -34241,7 +34502,7 @@ var SharedLocationDisplayType;
|
|
|
34241
34502
|
"use strict";
|
|
34242
34503
|
|
|
34243
34504
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34244
|
-
exports.ShiftRule = exports.ShiftNoteType = void 0;
|
|
34505
|
+
exports.ShiftEndedOrigin = exports.ShiftRule = exports.ShiftNoteType = void 0;
|
|
34245
34506
|
var ShiftNoteType;
|
|
34246
34507
|
(function (ShiftNoteType) {
|
|
34247
34508
|
ShiftNoteType["ShiftForm"] = "ShiftForm";
|
|
@@ -34255,6 +34516,13 @@ var ShiftRule;
|
|
|
34255
34516
|
ShiftRule[ShiftRule["start_shift"] = 0] = "start_shift";
|
|
34256
34517
|
ShiftRule[ShiftRule["end_shift"] = 1] = "end_shift";
|
|
34257
34518
|
})(ShiftRule || (exports.ShiftRule = ShiftRule = {}));
|
|
34519
|
+
var ShiftEndedOrigin;
|
|
34520
|
+
(function (ShiftEndedOrigin) {
|
|
34521
|
+
ShiftEndedOrigin[ShiftEndedOrigin["MANUAL_FROM_APP"] = 2] = "MANUAL_FROM_APP";
|
|
34522
|
+
ShiftEndedOrigin[ShiftEndedOrigin["FROM_DASHBOARD"] = 3] = "FROM_DASHBOARD";
|
|
34523
|
+
ShiftEndedOrigin[ShiftEndedOrigin["FROM_API"] = 4] = "FROM_API";
|
|
34524
|
+
ShiftEndedOrigin[ShiftEndedOrigin["AUTOMATIC_FROM_BRINGG"] = 5] = "AUTOMATIC_FROM_BRINGG";
|
|
34525
|
+
})(ShiftEndedOrigin || (exports.ShiftEndedOrigin = ShiftEndedOrigin = {}));
|
|
34258
34526
|
//# sourceMappingURL=shift.js.map
|
|
34259
34527
|
|
|
34260
34528
|
/***/ }),
|
|
@@ -34802,7 +35070,6 @@ exports.TemplateRpcActions = exports.TemplateContentType = exports.TemplateTypeE
|
|
|
34802
35070
|
var TemplateTypeEnum;
|
|
34803
35071
|
(function (TemplateTypeEnum) {
|
|
34804
35072
|
TemplateTypeEnum["package_label"] = "package_label";
|
|
34805
|
-
TemplateTypeEnum["workflow_email"] = "workflow_email";
|
|
34806
35073
|
TemplateTypeEnum["customer_notification_email"] = "customer_notification_email";
|
|
34807
35074
|
})(TemplateTypeEnum || (exports.TemplateTypeEnum = TemplateTypeEnum = {}));
|
|
34808
35075
|
var TemplateContentType;
|
|
@@ -34837,6 +35104,31 @@ var TenderNotifyStatus;
|
|
|
34837
35104
|
|
|
34838
35105
|
/***/ }),
|
|
34839
35106
|
|
|
35107
|
+
/***/ 61036:
|
|
35108
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
35109
|
+
|
|
35110
|
+
"use strict";
|
|
35111
|
+
|
|
35112
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35113
|
+
exports.TimeWindowChangeOrigin = void 0;
|
|
35114
|
+
var TimeWindowChangeOrigin;
|
|
35115
|
+
(function (TimeWindowChangeOrigin) {
|
|
35116
|
+
TimeWindowChangeOrigin["ORDER_CREATION_API"] = "order_creation_api";
|
|
35117
|
+
TimeWindowChangeOrigin["ORDER_CREATION_CSV"] = "order_creation_csv";
|
|
35118
|
+
TimeWindowChangeOrigin["ORDER_CREATION_WEB"] = "order_creation_web";
|
|
35119
|
+
TimeWindowChangeOrigin["CUSTOMER_EXPERIENCE_WEB_USER_RESCHEDULED"] = "customer_experience_web_user_rescheduled";
|
|
35120
|
+
TimeWindowChangeOrigin["CUSTOMER_EXPERIENCE_CUSTOMER_RESCHEDULED"] = "customer_experience_customer_rescheduled";
|
|
35121
|
+
TimeWindowChangeOrigin["QUOTES_FOR_FIRST_AVAILABILITY"] = "quotes_for_first_availability";
|
|
35122
|
+
TimeWindowChangeOrigin["PLANNED_DELIVERY_WINDOW_WITHOUT_QUOTES"] = "planned_delivery_window_without_quotes";
|
|
35123
|
+
TimeWindowChangeOrigin["NARROW_TIME_WINDOW"] = "narrow_time_window";
|
|
35124
|
+
TimeWindowChangeOrigin["ORDER_UPDATE_API"] = "order_update_api";
|
|
35125
|
+
TimeWindowChangeOrigin["ORDER_UPDATE_WEB"] = "order_update_web";
|
|
35126
|
+
TimeWindowChangeOrigin["AUTOMATION_PLATFORM"] = "automation_platform";
|
|
35127
|
+
})(TimeWindowChangeOrigin || (exports.TimeWindowChangeOrigin = TimeWindowChangeOrigin = {}));
|
|
35128
|
+
//# sourceMappingURL=time-window-change-origin.js.map
|
|
35129
|
+
|
|
35130
|
+
/***/ }),
|
|
35131
|
+
|
|
34840
35132
|
/***/ 30200:
|
|
34841
35133
|
/***/ ((__unused_webpack_module, exports) => {
|
|
34842
35134
|
|
|
@@ -35164,6 +35456,22 @@ var action_1 = __webpack_require__(82285);
|
|
|
35164
35456
|
|
|
35165
35457
|
/***/ }),
|
|
35166
35458
|
|
|
35459
|
+
/***/ 44866:
|
|
35460
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
35461
|
+
|
|
35462
|
+
"use strict";
|
|
35463
|
+
|
|
35464
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35465
|
+
exports.ConnectedEntitiesIdentifier = void 0;
|
|
35466
|
+
var ConnectedEntitiesIdentifier;
|
|
35467
|
+
(function (ConnectedEntitiesIdentifier) {
|
|
35468
|
+
ConnectedEntitiesIdentifier["driver"] = "driver";
|
|
35469
|
+
ConnectedEntitiesIdentifier["linkedTask"] = "linkedTask";
|
|
35470
|
+
})(ConnectedEntitiesIdentifier || (exports.ConnectedEntitiesIdentifier = ConnectedEntitiesIdentifier = {}));
|
|
35471
|
+
//# sourceMappingURL=connected-entities.js.map
|
|
35472
|
+
|
|
35473
|
+
/***/ }),
|
|
35474
|
+
|
|
35167
35475
|
/***/ 46849:
|
|
35168
35476
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
35169
35477
|
|
|
@@ -35210,6 +35518,7 @@ __exportStar(__webpack_require__(47085), exports);
|
|
|
35210
35518
|
__exportStar(__webpack_require__(97390), exports);
|
|
35211
35519
|
__exportStar(__webpack_require__(99848), exports);
|
|
35212
35520
|
__exportStar(__webpack_require__(73360), exports);
|
|
35521
|
+
__exportStar(__webpack_require__(44866), exports);
|
|
35213
35522
|
__exportStar(__webpack_require__(46849), exports);
|
|
35214
35523
|
__exportStar(__webpack_require__(72973), exports);
|
|
35215
35524
|
__exportStar(__webpack_require__(96365), exports);
|
|
@@ -35314,16 +35623,18 @@ var ArrayType;
|
|
|
35314
35623
|
})(ArrayType || (exports.ArrayType = ArrayType = {}));
|
|
35315
35624
|
var RuleCategory;
|
|
35316
35625
|
(function (RuleCategory) {
|
|
35317
|
-
RuleCategory[RuleCategory["
|
|
35626
|
+
RuleCategory[RuleCategory["FleetRouterDeliveryTerm"] = 0] = "FleetRouterDeliveryTerm";
|
|
35318
35627
|
RuleCategory[RuleCategory["Alert"] = 1] = "Alert";
|
|
35319
35628
|
RuleCategory[RuleCategory["Rate"] = 2] = "Rate";
|
|
35320
35629
|
RuleCategory[RuleCategory["Workflow"] = 3] = "Workflow";
|
|
35630
|
+
RuleCategory[RuleCategory["FleetRouterRulePolicy"] = 4] = "FleetRouterRulePolicy";
|
|
35321
35631
|
})(RuleCategory || (exports.RuleCategory = RuleCategory = {}));
|
|
35322
35632
|
var Entity;
|
|
35323
35633
|
(function (Entity) {
|
|
35324
35634
|
Entity["Fleet"] = "fleet";
|
|
35325
35635
|
Entity["DeliveryProvider"] = "delivery_provider";
|
|
35326
35636
|
Entity["Action"] = "action";
|
|
35637
|
+
Entity["FleetRouterRulePolicy"] = "fleet_router_rule_policy";
|
|
35327
35638
|
})(Entity || (exports.Entity = Entity = {}));
|
|
35328
35639
|
var FactType;
|
|
35329
35640
|
(function (FactType) {
|