@bringg/dashboard-sdk 8.0.8-pre.1 → 8.0.8-pre.3
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/Services/ServiceRequest.js +1 -1
- package/dist/bringg-dashboard-sdk-cjs2.js +823 -727
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +65 -13
- package/dist/bringg-dashboard-sdk.min.js +5 -5
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/package.json +2 -2
|
@@ -2709,7 +2709,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexport
|
|
|
2709
2709
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2710
2710
|
|
|
2711
2711
|
"use strict";
|
|
2712
|
-
eval("\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.AnonymousServiceRequest = exports.AuthorizedServiceRequest = exports.ResponseHandler = exports.RequestOptions = exports.logErrorResponse = void 0;\nvar axios_1 = __webpack_require__(/*! axios */ \"./node_modules/axios/index.js\");\nvar lodash_1 = __webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\");\nvar BringgException_1 = __webpack_require__(/*! ../Core/BringgException */ \"./dist/Core/BringgException.js\");\nvar Logger_1 = __webpack_require__(/*! ../Core/Logger */ \"./dist/Core/Logger.js\");\nvar abort_1 = __webpack_require__(/*! ../utils/abort */ \"./dist/utils/abort.js\");\nvar version = '8.0.8-pre.1';\nfunction logErrorResponse(response) {\n var data = response.data, status = response.status;\n try {\n Logger_1.default.error(response.config.method.toUpperCase(), response.config.url, status);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.info(response.config.method.toUpperCase(), response.config.url, status, data);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.debug(response);\n }\n catch (e) {\n //\n }\n}\nexports.logErrorResponse = logErrorResponse;\nvar DEFAULT_TIMEOUT = 120000;\nvar RequestOptions = /** @class */ (function () {\n function RequestOptions(clientId, timeout, \n // eslint-disable-next-line @typescript-eslint/ban-types\n queryString, authenticationToken, \n // eslint-disable-next-line @typescript-eslint/ban-types\n headers, responseType, signal) {\n // NiceToHave: move headers to HttpHeaders class\n this.headers = __assign(__assign({ 'Content-Type': 'application/json' }, headers), { 'sdk-version': version, Client: clientId });\n this.timeout = timeout;\n this.validateStatus = lodash_1.stubTrue;\n if (queryString) {\n this.params = queryString;\n }\n if (authenticationToken) {\n this.headers['Authorization'] = \"Token token=\".concat(authenticationToken);\n }\n if (responseType) {\n this.responseType = responseType;\n }\n if (signal) {\n this.signal = signal;\n }\n }\n RequestOptions.new = function (_a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.clientId, clientId = _c === void 0 ? 'Bringg Dashboard' : _c, _d = _b.timeout, timeout = _d === void 0 ? DEFAULT_TIMEOUT : _d, queryString = _b.queryString, authenticationToken = _b.authenticationToken, headers = _b.headers, responseType = _b.responseType, signal = _b.signal;\n return new RequestOptions(clientId, timeout || DEFAULT_TIMEOUT, queryString, authenticationToken, headers, responseType, signal);\n };\n return RequestOptions;\n}());\nexports.RequestOptions = RequestOptions;\nvar ResponseHandler = /** @class */ (function () {\n function ResponseHandler(response, signal) {\n this.axiosPromise = response;\n this.signal = signal;\n }\n ResponseHandler.prototype.handle = function (consumer) {\n return __awaiter(this, void 0, void 0, function () {\n var axiosResponse, e_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if ((0, lodash_1.isUndefined)(consumer)) {\n throw new Error('consumer must be defined');\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.axiosPromise];\n case 2:\n axiosResponse = _a.sent();\n return [2 /*return*/, consumer(axiosResponse)];\n case 3:\n e_1 = _a.sent();\n if (axios_1.default.isCancel(e_1)) {\n (0, abort_1.throwAbortError)(this.signal, 'Request Aborted');\n }\n if (e_1 instanceof BringgException_1.BringgException) {\n throw e_1;\n }\n return [2 /*return*/, consumer(e_1)];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n return ResponseHandler;\n}());\nexports.ResponseHandler = ResponseHandler;\nfunction get(axiosInstance, host, uri, queryString, signal) {\n return new ResponseHandler(axiosInstance.get(\"\".concat(host).concat(uri), { params: queryString, signal: signal }), signal);\n}\nfunction post(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.post(\"\".concat(host).concat(uri), payload, { params: queryString, signal: signal }), signal);\n}\nfunction put(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.put(\"\".concat(host).concat(uri), payload, { params: queryString, signal: signal }), signal);\n}\nfunction patch(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.patch(\"\".concat(host).concat(uri), payload, { params: queryString, signal: signal }), signal);\n}\nfunction remove(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.delete(\"\".concat(host).concat(uri), { params: queryString, data: payload, signal: signal }), signal);\n}\nfunction routify(axiosInstance, endpoint, route, \n// eslint-disable-next-line @typescript-eslint/ban-types\nrouteParams, queryString, payload, signal) {\n switch (route.httpMethod) {\n case 0 /* HttpMethod.GET */:\n return get(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, signal);\n case 1 /* HttpMethod.POST */:\n return post(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n case 2 /* HttpMethod.PUT */:\n return put(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n case 3 /* HttpMethod.PATCH */:\n return patch(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n case 4 /* HttpMethod.DELETE */:\n return remove(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n }\n}\nfunction wrapWithInterceptors(axios) {\n axios.interceptors.request.use(function (req) {\n var method = req.method, url = req.url, params = req.params, headers = req.headers, data = req.data;\n try {\n Logger_1.default.debug('REQUEST:', method.toUpperCase(), url);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.trace('REQUEST-query-string:', params);\n Logger_1.default.trace('REQUEST-headers:', headers);\n Logger_1.default.trace('REQUEST-data:', data);\n }\n catch (e) {\n //\n }\n return req;\n });\n axios.interceptors.response.use(function (res) {\n var statusText = res.statusText, status = res.status, headers = res.headers, data = res.data;\n try {\n Logger_1.default.debug('RESPONSE:', res.config.url, status, statusText);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.trace('RESPONSE-headers:', headers);\n Logger_1.default.trace('RESPONSE-data:', data);\n }\n catch (e) {\n //\n }\n return res;\n });\n return axios;\n}\nfunction axiosInstance(clientId, authenticationToken, \n// eslint-disable-next-line @typescript-eslint/ban-types\nheaders, responseType, timeout, signal) {\n return wrapWithInterceptors(axios_1.default.create(RequestOptions.new({ clientId: clientId, authenticationToken: authenticationToken, headers: headers, responseType: responseType, timeout: timeout, signal: signal })));\n}\n// eslint-disable-next-line @typescript-eslint/ban-types\nfunction anonymousAxiosInstance(clientId, headers, signal) {\n return wrapWithInterceptors(axios_1.default.create(RequestOptions.new({ clientId: clientId, headers: headers, signal: signal })));\n}\nvar AuthorizedServiceRequest = /** @class */ (function () {\n function AuthorizedServiceRequest(clientId, authToken) {\n this.authToken = authToken;\n this.clientId = clientId;\n }\n AuthorizedServiceRequest.prototype.invoke = function (endpoint, route, \n // eslint-disable-next-line @typescript-eslint/ban-types\n routeParams, \n // eslint-disable-next-line @typescript-eslint/ban-types\n queryString, payload, \n // eslint-disable-next-line @typescript-eslint/ban-types\n headers, responseType, timeout, signal) {\n if (signal === null || signal === void 0 ? void 0 : signal.aborted) {\n (0, abort_1.throwAbortError)(signal, 'Request aborted (before even started the request)');\n }\n return routify(axiosInstance(this.clientId, this.authToken, headers, responseType, timeout), endpoint, route, routeParams, queryString, payload, signal);\n };\n return AuthorizedServiceRequest;\n}());\nexports.AuthorizedServiceRequest = AuthorizedServiceRequest;\nvar AnonymousServiceRequest = /** @class */ (function () {\n function AnonymousServiceRequest(clientId, headers) {\n this.clientId = clientId;\n this.headers = headers;\n }\n AnonymousServiceRequest.prototype.invoke = function (endpoint, route, \n // eslint-disable-next-line @typescript-eslint/ban-types\n routeParams, \n // eslint-disable-next-line @typescript-eslint/ban-types\n queryString, payload, signal) {\n if (signal === null || signal === void 0 ? void 0 : signal.aborted) {\n (0, abort_1.throwAbortError)(signal, 'Request aborted (before even started the request)');\n }\n return routify(anonymousAxiosInstance(this.clientId, this.headers, signal), endpoint, route, routeParams, queryString, payload);\n };\n return AnonymousServiceRequest;\n}());\nexports.AnonymousServiceRequest = AnonymousServiceRequest;\n//# sourceMappingURL=ServiceRequest.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./dist/Services/ServiceRequest.js?");
|
|
2712
|
+
eval("\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.AnonymousServiceRequest = exports.AuthorizedServiceRequest = exports.ResponseHandler = exports.RequestOptions = exports.logErrorResponse = void 0;\nvar axios_1 = __webpack_require__(/*! axios */ \"./node_modules/axios/index.js\");\nvar lodash_1 = __webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\");\nvar BringgException_1 = __webpack_require__(/*! ../Core/BringgException */ \"./dist/Core/BringgException.js\");\nvar Logger_1 = __webpack_require__(/*! ../Core/Logger */ \"./dist/Core/Logger.js\");\nvar abort_1 = __webpack_require__(/*! ../utils/abort */ \"./dist/utils/abort.js\");\nvar version = '8.0.8-pre.3';\nfunction logErrorResponse(response) {\n var data = response.data, status = response.status;\n try {\n Logger_1.default.error(response.config.method.toUpperCase(), response.config.url, status);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.info(response.config.method.toUpperCase(), response.config.url, status, data);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.debug(response);\n }\n catch (e) {\n //\n }\n}\nexports.logErrorResponse = logErrorResponse;\nvar DEFAULT_TIMEOUT = 120000;\nvar RequestOptions = /** @class */ (function () {\n function RequestOptions(clientId, timeout, \n // eslint-disable-next-line @typescript-eslint/ban-types\n queryString, authenticationToken, \n // eslint-disable-next-line @typescript-eslint/ban-types\n headers, responseType, signal) {\n // NiceToHave: move headers to HttpHeaders class\n this.headers = __assign(__assign({ 'Content-Type': 'application/json' }, headers), { 'sdk-version': version, Client: clientId });\n this.timeout = timeout;\n this.validateStatus = lodash_1.stubTrue;\n if (queryString) {\n this.params = queryString;\n }\n if (authenticationToken) {\n this.headers['Authorization'] = \"Token token=\".concat(authenticationToken);\n }\n if (responseType) {\n this.responseType = responseType;\n }\n if (signal) {\n this.signal = signal;\n }\n }\n RequestOptions.new = function (_a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.clientId, clientId = _c === void 0 ? 'Bringg Dashboard' : _c, _d = _b.timeout, timeout = _d === void 0 ? DEFAULT_TIMEOUT : _d, queryString = _b.queryString, authenticationToken = _b.authenticationToken, headers = _b.headers, responseType = _b.responseType, signal = _b.signal;\n return new RequestOptions(clientId, timeout || DEFAULT_TIMEOUT, queryString, authenticationToken, headers, responseType, signal);\n };\n return RequestOptions;\n}());\nexports.RequestOptions = RequestOptions;\nvar ResponseHandler = /** @class */ (function () {\n function ResponseHandler(response, signal) {\n this.axiosPromise = response;\n this.signal = signal;\n }\n ResponseHandler.prototype.handle = function (consumer) {\n return __awaiter(this, void 0, void 0, function () {\n var axiosResponse, e_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if ((0, lodash_1.isUndefined)(consumer)) {\n throw new Error('consumer must be defined');\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.axiosPromise];\n case 2:\n axiosResponse = _a.sent();\n return [2 /*return*/, consumer(axiosResponse)];\n case 3:\n e_1 = _a.sent();\n if (axios_1.default.isCancel(e_1)) {\n (0, abort_1.throwAbortError)(this.signal, 'Request Aborted');\n }\n if (e_1 instanceof BringgException_1.BringgException) {\n throw e_1;\n }\n return [2 /*return*/, consumer(e_1)];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n return ResponseHandler;\n}());\nexports.ResponseHandler = ResponseHandler;\nfunction get(axiosInstance, host, uri, queryString, signal) {\n return new ResponseHandler(axiosInstance.get(\"\".concat(host).concat(uri), { params: queryString, signal: signal }), signal);\n}\nfunction post(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.post(\"\".concat(host).concat(uri), payload, { params: queryString, signal: signal }), signal);\n}\nfunction put(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.put(\"\".concat(host).concat(uri), payload, { params: queryString, signal: signal }), signal);\n}\nfunction patch(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.patch(\"\".concat(host).concat(uri), payload, { params: queryString, signal: signal }), signal);\n}\nfunction remove(axiosInstance, host, uri, queryString, payload, signal) {\n return new ResponseHandler(axiosInstance.delete(\"\".concat(host).concat(uri), { params: queryString, data: payload, signal: signal }), signal);\n}\nfunction routify(axiosInstance, endpoint, route, \n// eslint-disable-next-line @typescript-eslint/ban-types\nrouteParams, queryString, payload, signal) {\n switch (route.httpMethod) {\n case 0 /* HttpMethod.GET */:\n return get(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, signal);\n case 1 /* HttpMethod.POST */:\n return post(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n case 2 /* HttpMethod.PUT */:\n return put(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n case 3 /* HttpMethod.PATCH */:\n return patch(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n case 4 /* HttpMethod.DELETE */:\n return remove(axiosInstance, endpoint.encode(), route.applyParams(routeParams), queryString, payload, signal);\n }\n}\nfunction wrapWithInterceptors(axios) {\n axios.interceptors.request.use(function (req) {\n var method = req.method, url = req.url, params = req.params, headers = req.headers, data = req.data;\n try {\n Logger_1.default.debug('REQUEST:', method.toUpperCase(), url);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.trace('REQUEST-query-string:', params);\n Logger_1.default.trace('REQUEST-headers:', headers);\n Logger_1.default.trace('REQUEST-data:', data);\n }\n catch (e) {\n //\n }\n return req;\n });\n axios.interceptors.response.use(function (res) {\n var statusText = res.statusText, status = res.status, headers = res.headers, data = res.data;\n try {\n Logger_1.default.debug('RESPONSE:', res.config.url, status, statusText);\n }\n catch (e) {\n //\n }\n try {\n Logger_1.default.trace('RESPONSE-headers:', headers);\n Logger_1.default.trace('RESPONSE-data:', data);\n }\n catch (e) {\n //\n }\n return res;\n });\n return axios;\n}\nfunction axiosInstance(clientId, authenticationToken, \n// eslint-disable-next-line @typescript-eslint/ban-types\nheaders, responseType, timeout, signal) {\n return wrapWithInterceptors(axios_1.default.create(RequestOptions.new({ clientId: clientId, authenticationToken: authenticationToken, headers: headers, responseType: responseType, timeout: timeout, signal: signal })));\n}\n// eslint-disable-next-line @typescript-eslint/ban-types\nfunction anonymousAxiosInstance(clientId, headers, signal) {\n return wrapWithInterceptors(axios_1.default.create(RequestOptions.new({ clientId: clientId, headers: headers, signal: signal })));\n}\nvar AuthorizedServiceRequest = /** @class */ (function () {\n function AuthorizedServiceRequest(clientId, authToken) {\n this.authToken = authToken;\n this.clientId = clientId;\n }\n AuthorizedServiceRequest.prototype.invoke = function (endpoint, route, \n // eslint-disable-next-line @typescript-eslint/ban-types\n routeParams, \n // eslint-disable-next-line @typescript-eslint/ban-types\n queryString, payload, \n // eslint-disable-next-line @typescript-eslint/ban-types\n headers, responseType, timeout, signal) {\n if (signal === null || signal === void 0 ? void 0 : signal.aborted) {\n (0, abort_1.throwAbortError)(signal, 'Request aborted (before even started the request)');\n }\n return routify(axiosInstance(this.clientId, this.authToken, headers, responseType, timeout), endpoint, route, routeParams, queryString, payload, signal);\n };\n return AuthorizedServiceRequest;\n}());\nexports.AuthorizedServiceRequest = AuthorizedServiceRequest;\nvar AnonymousServiceRequest = /** @class */ (function () {\n function AnonymousServiceRequest(clientId, headers) {\n this.clientId = clientId;\n this.headers = headers;\n }\n AnonymousServiceRequest.prototype.invoke = function (endpoint, route, \n // eslint-disable-next-line @typescript-eslint/ban-types\n routeParams, \n // eslint-disable-next-line @typescript-eslint/ban-types\n queryString, payload, signal) {\n if (signal === null || signal === void 0 ? void 0 : signal.aborted) {\n (0, abort_1.throwAbortError)(signal, 'Request aborted (before even started the request)');\n }\n return routify(anonymousAxiosInstance(this.clientId, this.headers, signal), endpoint, route, routeParams, queryString, payload);\n };\n return AnonymousServiceRequest;\n}());\nexports.AnonymousServiceRequest = AnonymousServiceRequest;\n//# sourceMappingURL=ServiceRequest.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./dist/Services/ServiceRequest.js?");
|
|
2713
2713
|
|
|
2714
2714
|
/***/ }),
|
|
2715
2715
|
|
|
@@ -4230,7 +4230,7 @@ eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4230
4230
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4231
4231
|
|
|
4232
4232
|
"use strict";
|
|
4233
|
-
eval("\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nexports.__esModule = true;\n__exportStar(__webpack_require__(/*! ./types/action */ \"./node_modules/@bringg/types/types/action.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/action_data */ \"./node_modules/@bringg/types/types/action_data.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/actual_break */ \"./node_modules/@bringg/types/types/actual_break.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/addons_management */ \"./node_modules/@bringg/types/types/addons_management/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/admin_users */ \"./node_modules/@bringg/types/types/admin_users.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/alert */ \"./node_modules/@bringg/types/types/alert.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/analytics */ \"./node_modules/@bringg/types/types/analytics/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/application */ \"./node_modules/@bringg/types/types/application.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/auth */ \"./node_modules/@bringg/types/types/auth.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/chat_conversation */ \"./node_modules/@bringg/types/types/chat_conversation.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/chat_message */ \"./node_modules/@bringg/types/types/chat_message.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/common */ \"./node_modules/@bringg/types/types/common.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/company */ \"./node_modules/@bringg/types/types/company.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/config_loader */ \"./node_modules/@bringg/types/types/config_loader.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/country */ \"./node_modules/@bringg/types/types/country.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/crew */ \"./node_modules/@bringg/types/types/crew.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/currency */ \"./node_modules/@bringg/types/types/currency.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/custom_attribute */ \"./node_modules/@bringg/types/types/custom_attribute.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/custom_filter */ \"./node_modules/@bringg/types/types/custom_filter.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/customer */ \"./node_modules/@bringg/types/types/customer.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/customer_configuration */ \"./node_modules/@bringg/types/types/customer_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/customer_experience */ \"./node_modules/@bringg/types/types/customer_experience.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/dashboard_ui_configuration */ \"./node_modules/@bringg/types/types/dashboard_ui_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_block */ \"./node_modules/@bringg/types/types/delivery_block.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_block_schedule */ \"./node_modules/@bringg/types/types/delivery_block_schedule.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider */ \"./node_modules/@bringg/types/types/delivery_provider.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_aggregator_item */ \"./node_modules/@bringg/types/types/delivery_provider_aggregator_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_category_item */ \"./node_modules/@bringg/types/types/delivery_provider_category_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_display_destination_item */ \"./node_modules/@bringg/types/types/delivery_provider_display_destination_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_lookup_item */ \"./node_modules/@bringg/types/types/delivery_provider_lookup_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_offering */ \"./node_modules/@bringg/types/types/delivery_provider_offering.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/deprecated_alert_types */ \"./node_modules/@bringg/types/types/deprecated_alert_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/dispute */ \"./node_modules/@bringg/types/types/dispute.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/driver_unavailability */ \"./node_modules/@bringg/types/types/driver_unavailability.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/emulated_delivery_provider_types */ \"./node_modules/@bringg/types/types/emulated_delivery_provider_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/event */ \"./node_modules/@bringg/types/types/event.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/external_data_team */ \"./node_modules/@bringg/types/types/external_data_team.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/filter_conditions */ \"./node_modules/@bringg/types/types/filter_conditions.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/fleet */ \"./node_modules/@bringg/types/types/fleet.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/fleet_router_rules */ \"./node_modules/@bringg/types/types/fleet_router_rules.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/fleet_template */ \"./node_modules/@bringg/types/types/fleet_template.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/floating_inventory */ \"./node_modules/@bringg/types/types/floating_inventory.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/franchisee */ \"./node_modules/@bringg/types/types/franchisee.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/geocoding */ \"./node_modules/@bringg/types/types/geocoding.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/handling_units */ \"./node_modules/@bringg/types/types/handling_units.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/integration */ \"./node_modules/@bringg/types/types/integration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/keyset_pagination */ \"./node_modules/@bringg/types/types/keyset_pagination.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/language */ \"./node_modules/@bringg/types/types/language.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/location */ \"./node_modules/@bringg/types/types/location.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/mapbox */ \"./node_modules/@bringg/types/types/mapbox.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/menu */ \"./node_modules/@bringg/types/types/menu.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/merchant */ \"./node_modules/@bringg/types/types/merchant.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/merchant_configuration */ \"./node_modules/@bringg/types/types/merchant_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/merchant_secrets_service */ \"./node_modules/@bringg/types/types/merchant_secrets_service.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/notification_subscription */ \"./node_modules/@bringg/types/types/notification_subscription.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/notification_template */ \"./node_modules/@bringg/types/types/notification_template.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/notification_type */ \"./node_modules/@bringg/types/types/notification_type.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/open_fleet */ \"./node_modules/@bringg/types/types/open_fleet.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/opt_in_out_history */ \"./node_modules/@bringg/types/types/opt_in_out_history.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/optimization_configuration */ \"./node_modules/@bringg/types/types/optimization_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/optimization_type */ \"./node_modules/@bringg/types/types/optimization_type.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/package */ \"./node_modules/@bringg/types/types/package.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/parking_spot */ \"./node_modules/@bringg/types/types/parking_spot.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/planned_delivery_window */ \"./node_modules/@bringg/types/types/planned_delivery_window.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/planned_route */ \"./node_modules/@bringg/types/types/planned_route.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/predicate */ \"./node_modules/@bringg/types/types/predicate.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/privilege */ \"./node_modules/@bringg/types/types/privilege.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/push_notification_registration */ \"./node_modules/@bringg/types/types/push_notification_registration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/push_token_subscription */ \"./node_modules/@bringg/types/types/push_token_subscription.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/quote */ \"./node_modules/@bringg/types/types/quote.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/rate_card */ \"./node_modules/@bringg/types/types/rate_card.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/rating */ \"./node_modules/@bringg/types/types/rating.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/realtime_event */ \"./node_modules/@bringg/types/types/realtime_event.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reason_to_cancel_task */ \"./node_modules/@bringg/types/types/reason_to_cancel_task.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reason_to_change_inventory */ \"./node_modules/@bringg/types/types/reason_to_change_inventory.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reason_to_reassign_task */ \"./node_modules/@bringg/types/types/reason_to_reassign_task.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/report_preference */ \"./node_modules/@bringg/types/types/report_preference.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reports */ \"./node_modules/@bringg/types/types/reports.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/request_origin */ \"./node_modules/@bringg/types/types/request_origin.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/route_optimization */ \"./node_modules/@bringg/types/types/route_optimization.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/route-settings */ \"./node_modules/@bringg/types/types/route-settings.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/routesMonitoring */ \"./node_modules/@bringg/types/types/routesMonitoring/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/run */ \"./node_modules/@bringg/types/types/run.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/scan */ \"./node_modules/@bringg/types/types/scan.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/serializer */ \"./node_modules/@bringg/types/types/serializer.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service */ \"./node_modules/@bringg/types/types/service.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_area */ \"./node_modules/@bringg/types/types/service_area.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_event */ \"./node_modules/@bringg/types/types/service_event.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_plan */ \"./node_modules/@bringg/types/types/service_plan.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_window */ \"./node_modules/@bringg/types/types/service_window.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/shared_location */ \"./node_modules/@bringg/types/types/shared_location.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/shift */ \"./node_modules/@bringg/types/types/shift.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/skill */ \"./node_modules/@bringg/types/types/skill.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_data */ \"./node_modules/@bringg/types/types/sms_data.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_number */ \"./node_modules/@bringg/types/types/sms_number.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_provider_account */ \"./node_modules/@bringg/types/types/sms_provider_account.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_setting */ \"./node_modules/@bringg/types/types/sms_setting.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag */ \"./node_modules/@bringg/types/types/tag.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag_customer_configuration */ \"./node_modules/@bringg/types/types/tag_customer_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag_merchant_configuration */ \"./node_modules/@bringg/types/types/tag_merchant_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag_rules_configuration */ \"./node_modules/@bringg/types/types/tag_rules_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task */ \"./node_modules/@bringg/types/types/task.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_aggregations */ \"./node_modules/@bringg/types/types/task_aggregations.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_configuration */ \"./node_modules/@bringg/types/types/task_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_payment_history */ \"./node_modules/@bringg/types/types/task_payment_history.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_rates */ \"./node_modules/@bringg/types/types/task_rates.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_reassign_reasons */ \"./node_modules/@bringg/types/types/task_reassign_reasons.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_reject */ \"./node_modules/@bringg/types/types/task_reject.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_service */ \"./node_modules/@bringg/types/types/task_service.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/taskRejectReason */ \"./node_modules/@bringg/types/types/taskRejectReason/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/team_configuration */ \"./node_modules/@bringg/types/types/team_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/team_service_zip_codes */ \"./node_modules/@bringg/types/types/team_service_zip_codes.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/teams */ \"./node_modules/@bringg/types/types/teams.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/template_languages */ \"./node_modules/@bringg/types/types/template_languages.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/template_merchants */ \"./node_modules/@bringg/types/types/template_merchants.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/templates */ \"./node_modules/@bringg/types/types/templates.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tender_notify */ \"./node_modules/@bringg/types/types/tender_notify.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/twilio_number */ \"./node_modules/@bringg/types/types/twilio_number.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/upload */ \"./node_modules/@bringg/types/types/upload.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/user_configuration */ \"./node_modules/@bringg/types/types/user_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/user_realtime_data */ \"./node_modules/@bringg/types/types/user_realtime_data.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/user_types */ \"./node_modules/@bringg/types/types/user_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/users */ \"./node_modules/@bringg/types/types/users.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/vehicle */ \"./node_modules/@bringg/types/types/vehicle.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/vehicle_category */ \"./node_modules/@bringg/types/types/vehicle_category.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/vehicle_type */ \"./node_modules/@bringg/types/types/vehicle_type.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/web_application_configuration */ \"./node_modules/@bringg/types/types/web_application_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/webhook_authentication_configuration */ \"./node_modules/@bringg/types/types/webhook_authentication_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/webhooks */ \"./node_modules/@bringg/types/types/webhooks.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/webhooks_configuration */ \"./node_modules/@bringg/types/types/webhooks_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/widget */ \"./node_modules/@bringg/types/types/widget.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/windows */ \"./node_modules/@bringg/types/types/windows.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/workflow */ \"./node_modules/@bringg/types/types/workflow/index.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/index.js?");
|
|
4233
|
+
eval("\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nexports.__esModule = true;\n__exportStar(__webpack_require__(/*! ./types/action */ \"./node_modules/@bringg/types/types/action.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/action_data */ \"./node_modules/@bringg/types/types/action_data.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/actual_break */ \"./node_modules/@bringg/types/types/actual_break.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/addons_management */ \"./node_modules/@bringg/types/types/addons_management/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/admin_users */ \"./node_modules/@bringg/types/types/admin_users.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/alert */ \"./node_modules/@bringg/types/types/alert.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/analytics */ \"./node_modules/@bringg/types/types/analytics/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/application */ \"./node_modules/@bringg/types/types/application.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/async_operation_status */ \"./node_modules/@bringg/types/types/async_operation_status.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/auth */ \"./node_modules/@bringg/types/types/auth.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/chat_conversation */ \"./node_modules/@bringg/types/types/chat_conversation.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/chat_message */ \"./node_modules/@bringg/types/types/chat_message.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/common */ \"./node_modules/@bringg/types/types/common.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/company */ \"./node_modules/@bringg/types/types/company.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/config_loader */ \"./node_modules/@bringg/types/types/config_loader.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/country */ \"./node_modules/@bringg/types/types/country.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/crew */ \"./node_modules/@bringg/types/types/crew.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/currency */ \"./node_modules/@bringg/types/types/currency.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/custom_attribute */ \"./node_modules/@bringg/types/types/custom_attribute.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/custom_filter */ \"./node_modules/@bringg/types/types/custom_filter.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/customer */ \"./node_modules/@bringg/types/types/customer.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/customer_configuration */ \"./node_modules/@bringg/types/types/customer_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/customer_experience */ \"./node_modules/@bringg/types/types/customer_experience.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/dashboard_ui_configuration */ \"./node_modules/@bringg/types/types/dashboard_ui_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_block */ \"./node_modules/@bringg/types/types/delivery_block.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_block_schedule */ \"./node_modules/@bringg/types/types/delivery_block_schedule.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider */ \"./node_modules/@bringg/types/types/delivery_provider.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_aggregator_item */ \"./node_modules/@bringg/types/types/delivery_provider_aggregator_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_category_item */ \"./node_modules/@bringg/types/types/delivery_provider_category_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_display_destination_item */ \"./node_modules/@bringg/types/types/delivery_provider_display_destination_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_lookup_item */ \"./node_modules/@bringg/types/types/delivery_provider_lookup_item.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/delivery_provider_offering */ \"./node_modules/@bringg/types/types/delivery_provider_offering.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/deprecated_alert_types */ \"./node_modules/@bringg/types/types/deprecated_alert_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/dispute */ \"./node_modules/@bringg/types/types/dispute.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/driver_unavailability */ \"./node_modules/@bringg/types/types/driver_unavailability.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/emulated_delivery_provider_types */ \"./node_modules/@bringg/types/types/emulated_delivery_provider_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/event */ \"./node_modules/@bringg/types/types/event.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/external_data_team */ \"./node_modules/@bringg/types/types/external_data_team.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/filter_conditions */ \"./node_modules/@bringg/types/types/filter_conditions.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/fleet */ \"./node_modules/@bringg/types/types/fleet.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/fleet_router_rules */ \"./node_modules/@bringg/types/types/fleet_router_rules.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/fleet_template */ \"./node_modules/@bringg/types/types/fleet_template.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/floating_inventory */ \"./node_modules/@bringg/types/types/floating_inventory.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/franchisee */ \"./node_modules/@bringg/types/types/franchisee.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/geocoding */ \"./node_modules/@bringg/types/types/geocoding.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/handling_units */ \"./node_modules/@bringg/types/types/handling_units.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/integration */ \"./node_modules/@bringg/types/types/integration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/keyset_pagination */ \"./node_modules/@bringg/types/types/keyset_pagination.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/language */ \"./node_modules/@bringg/types/types/language.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/location */ \"./node_modules/@bringg/types/types/location.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/mapbox */ \"./node_modules/@bringg/types/types/mapbox.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/menu */ \"./node_modules/@bringg/types/types/menu.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/merchant */ \"./node_modules/@bringg/types/types/merchant.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/merchant_configuration */ \"./node_modules/@bringg/types/types/merchant_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/merchant_secrets_service */ \"./node_modules/@bringg/types/types/merchant_secrets_service.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/notification_subscription */ \"./node_modules/@bringg/types/types/notification_subscription.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/notification_template */ \"./node_modules/@bringg/types/types/notification_template.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/notification_type */ \"./node_modules/@bringg/types/types/notification_type.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/open_fleet */ \"./node_modules/@bringg/types/types/open_fleet.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/opt_in_out_history */ \"./node_modules/@bringg/types/types/opt_in_out_history.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/optimization_configuration */ \"./node_modules/@bringg/types/types/optimization_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/optimization_type */ \"./node_modules/@bringg/types/types/optimization_type.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/package */ \"./node_modules/@bringg/types/types/package.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/parking_spot */ \"./node_modules/@bringg/types/types/parking_spot.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/planned_delivery_window */ \"./node_modules/@bringg/types/types/planned_delivery_window.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/planned_route */ \"./node_modules/@bringg/types/types/planned_route.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/predicate */ \"./node_modules/@bringg/types/types/predicate.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/privilege */ \"./node_modules/@bringg/types/types/privilege.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/push_notification_registration */ \"./node_modules/@bringg/types/types/push_notification_registration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/push_token_subscription */ \"./node_modules/@bringg/types/types/push_token_subscription.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/quote */ \"./node_modules/@bringg/types/types/quote.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/rate_card */ \"./node_modules/@bringg/types/types/rate_card.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/rating */ \"./node_modules/@bringg/types/types/rating.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/realtime_event */ \"./node_modules/@bringg/types/types/realtime_event.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reason_to_cancel_task */ \"./node_modules/@bringg/types/types/reason_to_cancel_task.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reason_to_change_inventory */ \"./node_modules/@bringg/types/types/reason_to_change_inventory.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reason_to_reassign_task */ \"./node_modules/@bringg/types/types/reason_to_reassign_task.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/report_preference */ \"./node_modules/@bringg/types/types/report_preference.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/reports */ \"./node_modules/@bringg/types/types/reports.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/request_origin */ \"./node_modules/@bringg/types/types/request_origin.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/route_optimization */ \"./node_modules/@bringg/types/types/route_optimization.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/route-settings */ \"./node_modules/@bringg/types/types/route-settings.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/routesMonitoring */ \"./node_modules/@bringg/types/types/routesMonitoring/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/rpc */ \"./node_modules/@bringg/types/types/rpc.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/run */ \"./node_modules/@bringg/types/types/run.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/scan */ \"./node_modules/@bringg/types/types/scan.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/serializer */ \"./node_modules/@bringg/types/types/serializer.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service */ \"./node_modules/@bringg/types/types/service.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_area */ \"./node_modules/@bringg/types/types/service_area.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_event */ \"./node_modules/@bringg/types/types/service_event.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_plan */ \"./node_modules/@bringg/types/types/service_plan.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/service_window */ \"./node_modules/@bringg/types/types/service_window.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/shared_location */ \"./node_modules/@bringg/types/types/shared_location.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/shift */ \"./node_modules/@bringg/types/types/shift.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/skill */ \"./node_modules/@bringg/types/types/skill.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_data */ \"./node_modules/@bringg/types/types/sms_data.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_number */ \"./node_modules/@bringg/types/types/sms_number.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_provider_account */ \"./node_modules/@bringg/types/types/sms_provider_account.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/sms_setting */ \"./node_modules/@bringg/types/types/sms_setting.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag */ \"./node_modules/@bringg/types/types/tag.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag_customer_configuration */ \"./node_modules/@bringg/types/types/tag_customer_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag_merchant_configuration */ \"./node_modules/@bringg/types/types/tag_merchant_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tag_rules_configuration */ \"./node_modules/@bringg/types/types/tag_rules_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task */ \"./node_modules/@bringg/types/types/task.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_aggregations */ \"./node_modules/@bringg/types/types/task_aggregations.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_configuration */ \"./node_modules/@bringg/types/types/task_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_payment_history */ \"./node_modules/@bringg/types/types/task_payment_history.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_rates */ \"./node_modules/@bringg/types/types/task_rates.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_reassign_reasons */ \"./node_modules/@bringg/types/types/task_reassign_reasons.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_reject */ \"./node_modules/@bringg/types/types/task_reject.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/task_service */ \"./node_modules/@bringg/types/types/task_service.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/taskRejectReason */ \"./node_modules/@bringg/types/types/taskRejectReason/index.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/team_configuration */ \"./node_modules/@bringg/types/types/team_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/team_service_zip_codes */ \"./node_modules/@bringg/types/types/team_service_zip_codes.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/teams */ \"./node_modules/@bringg/types/types/teams.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/template_languages */ \"./node_modules/@bringg/types/types/template_languages.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/template_merchants */ \"./node_modules/@bringg/types/types/template_merchants.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/templates */ \"./node_modules/@bringg/types/types/templates.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/tender_notify */ \"./node_modules/@bringg/types/types/tender_notify.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/twilio_number */ \"./node_modules/@bringg/types/types/twilio_number.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/upload */ \"./node_modules/@bringg/types/types/upload.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/user_configuration */ \"./node_modules/@bringg/types/types/user_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/user_realtime_data */ \"./node_modules/@bringg/types/types/user_realtime_data.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/user_types */ \"./node_modules/@bringg/types/types/user_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/users */ \"./node_modules/@bringg/types/types/users.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/vehicle */ \"./node_modules/@bringg/types/types/vehicle.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/vehicle_category */ \"./node_modules/@bringg/types/types/vehicle_category.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/vehicle_type */ \"./node_modules/@bringg/types/types/vehicle_type.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/web_application_configuration */ \"./node_modules/@bringg/types/types/web_application_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/webhook_authentication_configuration */ \"./node_modules/@bringg/types/types/webhook_authentication_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/webhooks */ \"./node_modules/@bringg/types/types/webhooks.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/webhooks_configuration */ \"./node_modules/@bringg/types/types/webhooks_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/widget */ \"./node_modules/@bringg/types/types/widget.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/windows */ \"./node_modules/@bringg/types/types/windows.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types/workflow */ \"./node_modules/@bringg/types/types/workflow/index.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/index.js?");
|
|
4234
4234
|
|
|
4235
4235
|
/***/ }),
|
|
4236
4236
|
|
|
@@ -4243,7 +4243,7 @@ eval("\nvar __createBinding = (this && this.__createBinding) || (Object.create ?
|
|
|
4243
4243
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4244
4244
|
|
|
4245
4245
|
"use strict";
|
|
4246
|
-
eval("\nexports.__esModule = true;\nexports.ActionKey = exports.ActionType = void 0;\nvar ActionType;\n(function (ActionType) {\n ActionType[ActionType[\"ALERT\"] = 0] = \"ALERT\";\n ActionType[ActionType[\"INTERNAL_SMS\"] = 1] = \"INTERNAL_SMS\";\n ActionType[ActionType[\"INTERNAL_EMAIL\"] = 2] = \"INTERNAL_EMAIL\";\n ActionType[ActionType[\"WEBHOOK\"] = 3] = \"WEBHOOK\";\n ActionType[ActionType[\"ENTITY_UPDATE\"] = 4] = \"ENTITY_UPDATE\";\n ActionType[ActionType[\"RELEASE\"] = 5] = \"RELEASE\";\n ActionType[ActionType[\"MARK_NOT_READY\"] = 6] = \"MARK_NOT_READY\";\n ActionType[ActionType[\"FINISH_TASK\"] = 7] = \"FINISH_TASK\";\n ActionType[ActionType[\"SHARE_WITH_CUSTOMER\"] = 8] = \"SHARE_WITH_CUSTOMER\";\n ActionType[ActionType[\"AUTO_UNASSIGN\"] = 9] = \"AUTO_UNASSIGN\";\n ActionType[ActionType[\"RESCHEDULE_TASKS\"] = 10] = \"RESCHEDULE_TASKS\";\n ActionType[ActionType[\"SHARED_LOCATION\"] = 11] = \"SHARED_LOCATION\";\n ActionType[ActionType[\"CONVERT_LINKED_TO_MM\"] = 12] = \"CONVERT_LINKED_TO_MM\";\n ActionType[ActionType[\"CONVERT_MM_TO_LINKED\"] = 13] = \"CONVERT_MM_TO_LINKED\";\n ActionType[ActionType[\"OPTIMIZATION\"] = 14] = \"OPTIMIZATION\";\n ActionType[ActionType[\"CANCEL_TASK\"] = 15] = \"CANCEL_TASK\";\n ActionType[ActionType[\"TOTAL_WEIGHT_NULLIFY\"] = 16] = \"TOTAL_WEIGHT_NULLIFY\";\n ActionType[ActionType[\"TOTAL_HANDLING_UNITS_NULLIFY_ALL\"] = 17] = \"TOTAL_HANDLING_UNITS_NULLIFY_ALL\";\n ActionType[ActionType[\"LEAN_COPY\"] = 18] = \"LEAN_COPY\";\n ActionType[ActionType[\"CALCULATE_AVAILABILITY_STATE\"] = 19] = \"CALCULATE_AVAILABILITY_STATE\";\n ActionType[ActionType[\"CALCULATE_AVAILABILITY_STATE_GENERIC\"] = 20] = \"CALCULATE_AVAILABILITY_STATE_GENERIC\";\n ActionType[ActionType[\"ASSIGN_TEAM_BY_PDW\"] = 21] = \"ASSIGN_TEAM_BY_PDW\";\n ActionType[ActionType[\"NARROW_ACTIONABLE_WP_TIME_WINDOW\"] = 22] = \"NARROW_ACTIONABLE_WP_TIME_WINDOW\";\n ActionType[ActionType[\"EMAIL_SHARED_LOCATION\"] = 23] = \"EMAIL_SHARED_LOCATION\";\n})(ActionType = exports.ActionType || (exports.ActionType = {}));\nvar ActionKey;\n(function (ActionKey) {\n ActionKey[\"UPDATE\"] = \"updateEntity\";\n ActionKey[\"GENERIC_ACTION\"] = \"genericAction\";\n ActionKey[\"ALERT\"] = \"alert\";\n ActionKey[\"SHARED_LOCATION\"] = \"sharedLocation\";\n ActionKey[\"OPTIMIZATION\"] = \"optimization\";\n ActionKey[\"CANCEL_TASK\"] = \"cancelTask\";\n ActionKey[\"LEAN_COPY\"] = \"leanCopy\";\n ActionKey[\"CALCULATE_AVAILABILITY_STATE\"] = \"calculateAvailabilityState\";\n ActionKey[\"NARROW_ACTIONABLE_WP_TIME_WINDOW\"] = \"narrowActionableWpTimeWindow\";\n ActionKey[\"EMAIL_SHARED_LOCATION\"] = \"emailSharedLocation\";\n})(ActionKey = exports.ActionKey || (exports.ActionKey = {}));\n//# sourceMappingURL=action.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/action.js?");
|
|
4246
|
+
eval("\nexports.__esModule = true;\nexports.ActionKey = exports.ActionType = void 0;\nvar ActionType;\n(function (ActionType) {\n ActionType[ActionType[\"ALERT\"] = 0] = \"ALERT\";\n ActionType[ActionType[\"INTERNAL_SMS\"] = 1] = \"INTERNAL_SMS\";\n ActionType[ActionType[\"INTERNAL_EMAIL\"] = 2] = \"INTERNAL_EMAIL\";\n ActionType[ActionType[\"WEBHOOK\"] = 3] = \"WEBHOOK\";\n ActionType[ActionType[\"ENTITY_UPDATE\"] = 4] = \"ENTITY_UPDATE\";\n ActionType[ActionType[\"RELEASE\"] = 5] = \"RELEASE\";\n ActionType[ActionType[\"MARK_NOT_READY\"] = 6] = \"MARK_NOT_READY\";\n ActionType[ActionType[\"FINISH_TASK\"] = 7] = \"FINISH_TASK\";\n ActionType[ActionType[\"SHARE_WITH_CUSTOMER\"] = 8] = \"SHARE_WITH_CUSTOMER\";\n ActionType[ActionType[\"AUTO_UNASSIGN\"] = 9] = \"AUTO_UNASSIGN\";\n ActionType[ActionType[\"RESCHEDULE_TASKS\"] = 10] = \"RESCHEDULE_TASKS\";\n ActionType[ActionType[\"SHARED_LOCATION\"] = 11] = \"SHARED_LOCATION\";\n ActionType[ActionType[\"CONVERT_LINKED_TO_MM\"] = 12] = \"CONVERT_LINKED_TO_MM\";\n ActionType[ActionType[\"CONVERT_MM_TO_LINKED\"] = 13] = \"CONVERT_MM_TO_LINKED\";\n ActionType[ActionType[\"OPTIMIZATION\"] = 14] = \"OPTIMIZATION\";\n ActionType[ActionType[\"CANCEL_TASK\"] = 15] = \"CANCEL_TASK\";\n ActionType[ActionType[\"TOTAL_WEIGHT_NULLIFY\"] = 16] = \"TOTAL_WEIGHT_NULLIFY\";\n ActionType[ActionType[\"TOTAL_HANDLING_UNITS_NULLIFY_ALL\"] = 17] = \"TOTAL_HANDLING_UNITS_NULLIFY_ALL\";\n ActionType[ActionType[\"LEAN_COPY\"] = 18] = \"LEAN_COPY\";\n ActionType[ActionType[\"CALCULATE_AVAILABILITY_STATE\"] = 19] = \"CALCULATE_AVAILABILITY_STATE\";\n ActionType[ActionType[\"CALCULATE_AVAILABILITY_STATE_GENERIC\"] = 20] = \"CALCULATE_AVAILABILITY_STATE_GENERIC\";\n ActionType[ActionType[\"ASSIGN_TEAM_BY_PDW\"] = 21] = \"ASSIGN_TEAM_BY_PDW\";\n ActionType[ActionType[\"NARROW_ACTIONABLE_WP_TIME_WINDOW\"] = 22] = \"NARROW_ACTIONABLE_WP_TIME_WINDOW\";\n ActionType[ActionType[\"EMAIL_SHARED_LOCATION\"] = 23] = \"EMAIL_SHARED_LOCATION\";\n ActionType[ActionType[\"TASK_WEBHOOK\"] = 24] = \"TASK_WEBHOOK\";\n ActionType[ActionType[\"TASKS_WEBHOOK\"] = 25] = \"TASKS_WEBHOOK\";\n})(ActionType = exports.ActionType || (exports.ActionType = {}));\nvar ActionKey;\n(function (ActionKey) {\n ActionKey[\"UPDATE\"] = \"updateEntity\";\n ActionKey[\"GENERIC_ACTION\"] = \"genericAction\";\n ActionKey[\"ALERT\"] = \"alert\";\n ActionKey[\"SHARED_LOCATION\"] = \"sharedLocation\";\n ActionKey[\"OPTIMIZATION\"] = \"optimization\";\n ActionKey[\"CANCEL_TASK\"] = \"cancelTask\";\n ActionKey[\"LEAN_COPY\"] = \"leanCopy\";\n ActionKey[\"CALCULATE_AVAILABILITY_STATE\"] = \"calculateAvailabilityState\";\n ActionKey[\"NARROW_ACTIONABLE_WP_TIME_WINDOW\"] = \"narrowActionableWpTimeWindow\";\n ActionKey[\"EMAIL_SHARED_LOCATION\"] = \"emailSharedLocation\";\n ActionKey[\"TASK_WEBHOOK\"] = \"taskWebhook\";\n ActionKey[\"TASKS_WEBHOOK\"] = \"tasksWebhook\";\n})(ActionKey = exports.ActionKey || (exports.ActionKey = {}));\n//# sourceMappingURL=action.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/action.js?");
|
|
4247
4247
|
|
|
4248
4248
|
/***/ }),
|
|
4249
4249
|
|
|
@@ -4373,7 +4373,7 @@ eval("\nexports.__esModule = true;\nexports.SharedEntityAccessLevel = void 0;\nv
|
|
|
4373
4373
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4374
4374
|
|
|
4375
4375
|
"use strict";
|
|
4376
|
-
eval("\nexports.__esModule = true;\nexports.CubeDataSource = void 0;\nvar CubeDataSource;\n(function (CubeDataSource) {\n CubeDataSource[\"Trino\"] = \"trino\";\n CubeDataSource[\"Druid\"] = \"druid\";\n})(CubeDataSource = exports.CubeDataSource || (exports.CubeDataSource = {}));\n//# sourceMappingURL=cubejs.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/analytics/cubejs.js?");
|
|
4376
|
+
eval("\nexports.__esModule = true;\nexports.CubeClientIdsV2 = exports.CubeDataSourceV2 = exports.CubeDataSource = void 0;\nvar CubeDataSource;\n(function (CubeDataSource) {\n CubeDataSource[\"Trino\"] = \"trino\";\n CubeDataSource[\"Druid\"] = \"druid\";\n})(CubeDataSource = exports.CubeDataSource || (exports.CubeDataSource = {}));\nvar CubeDataSourceV2;\n(function (CubeDataSourceV2) {\n CubeDataSourceV2[\"Presto\"] = \"prestodb\";\n CubeDataSourceV2[\"Druid\"] = \"druid\";\n})(CubeDataSourceV2 = exports.CubeDataSourceV2 || (exports.CubeDataSourceV2 = {}));\nvar CubeClientIdsV2;\n(function (CubeClientIdsV2) {\n CubeClientIdsV2[\"OwnFleet\"] = \"own-fleet\";\n CubeClientIdsV2[\"DeliveryHub\"] = \"delivery-hub\";\n})(CubeClientIdsV2 = exports.CubeClientIdsV2 || (exports.CubeClientIdsV2 = {}));\n//# sourceMappingURL=cubejs.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/analytics/cubejs.js?");
|
|
4377
4377
|
|
|
4378
4378
|
/***/ }),
|
|
4379
4379
|
|
|
@@ -4403,6 +4403,19 @@ eval("\nexports.__esModule = true;\n//# sourceMappingURL=dashboards_shares.js.ma
|
|
|
4403
4403
|
|
|
4404
4404
|
/***/ }),
|
|
4405
4405
|
|
|
4406
|
+
/***/ "./node_modules/@bringg/types/types/analytics/dashboards/filters.js":
|
|
4407
|
+
/*!**************************************************************************!*\
|
|
4408
|
+
!*** ./node_modules/@bringg/types/types/analytics/dashboards/filters.js ***!
|
|
4409
|
+
\**************************************************************************/
|
|
4410
|
+
/*! no static exports found */
|
|
4411
|
+
/*! all exports used */
|
|
4412
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
4413
|
+
|
|
4414
|
+
"use strict";
|
|
4415
|
+
eval("\nexports.__esModule = true;\nexports.FiltersExposureOperationType = void 0;\nvar FiltersExposureOperationType;\n(function (FiltersExposureOperationType) {\n FiltersExposureOperationType[\"Hybrid\"] = \"Hybrid\";\n FiltersExposureOperationType[\"ThirdPL\"] = \"3PL\";\n FiltersExposureOperationType[\"OwnFleet\"] = \"OwnFleet\";\n})(FiltersExposureOperationType = exports.FiltersExposureOperationType || (exports.FiltersExposureOperationType = {}));\n//# sourceMappingURL=filters.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/analytics/dashboards/filters.js?");
|
|
4416
|
+
|
|
4417
|
+
/***/ }),
|
|
4418
|
+
|
|
4406
4419
|
/***/ "./node_modules/@bringg/types/types/analytics/dashboards/widgets.js":
|
|
4407
4420
|
/*!**************************************************************************!*\
|
|
4408
4421
|
!*** ./node_modules/@bringg/types/types/analytics/dashboards/widgets.js ***!
|
|
@@ -4438,7 +4451,7 @@ eval("\nexports.__esModule = true;\n//# sourceMappingURL=widgets_catalog_items.j
|
|
|
4438
4451
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4439
4452
|
|
|
4440
4453
|
"use strict";
|
|
4441
|
-
eval("\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nexports.__esModule = true;\n__exportStar(__webpack_require__(/*! ./common/common */ \"./node_modules/@bringg/types/types/analytics/common/common.js\"), exports);\n__exportStar(__webpack_require__(/*! ./common/entity_sharing */ \"./node_modules/@bringg/types/types/analytics/common/entity_sharing.js\"), exports);\n__exportStar(__webpack_require__(/*! ./cubejs */ \"./node_modules/@bringg/types/types/analytics/cubejs.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/dashboards */ \"./node_modules/@bringg/types/types/analytics/dashboards/dashboards.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/dashboards_shares */ \"./node_modules/@bringg/types/types/analytics/dashboards/dashboards_shares.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/widgets */ \"./node_modules/@bringg/types/types/analytics/dashboards/widgets.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/widgets_catalog_items */ \"./node_modules/@bringg/types/types/analytics/dashboards/widgets_catalog_items.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/legacy_reports */ \"./node_modules/@bringg/types/types/analytics/reports/legacy_reports.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/report */ \"./node_modules/@bringg/types/types/analytics/reports/report.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/report_export */ \"./node_modules/@bringg/types/types/analytics/reports/report_export.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/report_share */ \"./node_modules/@bringg/types/types/analytics/reports/report_share.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/reports_scheduled_jobs */ \"./node_modules/@bringg/types/types/analytics/reports/reports_scheduled_jobs.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/reports_stats */ \"./node_modules/@bringg/types/types/analytics/reports/reports_stats.js\"), exports);\n__exportStar(__webpack_require__(/*! ./users/users_permissions */ \"./node_modules/@bringg/types/types/analytics/users/users_permissions.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/analytics/index.js?");
|
|
4454
|
+
eval("\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nexports.__esModule = true;\n__exportStar(__webpack_require__(/*! ./common/common */ \"./node_modules/@bringg/types/types/analytics/common/common.js\"), exports);\n__exportStar(__webpack_require__(/*! ./common/entity_sharing */ \"./node_modules/@bringg/types/types/analytics/common/entity_sharing.js\"), exports);\n__exportStar(__webpack_require__(/*! ./cubejs */ \"./node_modules/@bringg/types/types/analytics/cubejs.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/dashboards */ \"./node_modules/@bringg/types/types/analytics/dashboards/dashboards.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/dashboards_shares */ \"./node_modules/@bringg/types/types/analytics/dashboards/dashboards_shares.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/filters */ \"./node_modules/@bringg/types/types/analytics/dashboards/filters.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/widgets */ \"./node_modules/@bringg/types/types/analytics/dashboards/widgets.js\"), exports);\n__exportStar(__webpack_require__(/*! ./dashboards/widgets_catalog_items */ \"./node_modules/@bringg/types/types/analytics/dashboards/widgets_catalog_items.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/legacy_reports */ \"./node_modules/@bringg/types/types/analytics/reports/legacy_reports.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/report */ \"./node_modules/@bringg/types/types/analytics/reports/report.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/report_export */ \"./node_modules/@bringg/types/types/analytics/reports/report_export.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/report_share */ \"./node_modules/@bringg/types/types/analytics/reports/report_share.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/reports_scheduled_jobs */ \"./node_modules/@bringg/types/types/analytics/reports/reports_scheduled_jobs.js\"), exports);\n__exportStar(__webpack_require__(/*! ./reports/reports_stats */ \"./node_modules/@bringg/types/types/analytics/reports/reports_stats.js\"), exports);\n__exportStar(__webpack_require__(/*! ./users/users_permissions */ \"./node_modules/@bringg/types/types/analytics/users/users_permissions.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/analytics/index.js?");
|
|
4442
4455
|
|
|
4443
4456
|
/***/ }),
|
|
4444
4457
|
|
|
@@ -4542,7 +4555,20 @@ eval("\nexports.__esModule = true;\n//# sourceMappingURL=users_permissions.js.ma
|
|
|
4542
4555
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4543
4556
|
|
|
4544
4557
|
"use strict";
|
|
4545
|
-
eval("\nexports.__esModule = true;\nexports.ApplicationUuid = void 0;\nvar ApplicationUuid;\n(function (ApplicationUuid) {\n ApplicationUuid[\"AutoAssign\"] = \"7083ab3d-c7de-40fd-83bb-f2c10bd0fa88\";\n ApplicationUuid[\"AAA\"] = \"3ecfa3f6-1a21-11e8-accf-0ed5f89f718b\";\n ApplicationUuid[\"CustomAttributeApplication\"] = \"eb377388-08b9-48e2-9752-5066b4446d50\";\n ApplicationUuid[\"ActOnTriggerApp\"] = \"8ebe8358-62d3-11ea-bc55-0242ac130003\";\n ApplicationUuid[\"AutoBreaks\"] = \"9310325e-d7d5-11ea-87d0-0242ac130003\";\n ApplicationUuid[\"AvailableDrivers\"] = \"17fea9d6-9f5e-4234-91b4-34d6677ba5be\";\n ApplicationUuid[\"Bitly\"] = \"f4b3ade5-4997-418e-8f99-1813dd1e56df\";\n ApplicationUuid[\"BackToWarehouse\"] = \"d21a5684-8997-11e8-9a94-a6cf71072f73\";\n ApplicationUuid[\"Boulanger\"] = \"34dc733d-7d17-4e44-8884-bb1ec1197da6\";\n ApplicationUuid[\"Clover\"] = \"7661994f-da60-4f5d-bda9-4c132fb19484\";\n ApplicationUuid[\"CocaCola\"] = \"eaf03283-dce4-4567-b6bf-f3eb3573357e\";\n ApplicationUuid[\"CancellationTasks\"] = \"94c67d35-e289-44de-a19d-8ee0b02b00e0\";\n ApplicationUuid[\"Chat\"] = \"6ee9296a-38bd-4d8e-81c6-b16001a20ee3\";\n ApplicationUuid[\"CocaColaBrazilApp\"] = \"f9bd58a4-a514-11ea-bb37-0242ac130002\";\n ApplicationUuid[\"CocaColaChile\"] = \"075c7b23-a847-4510-bc86-79fd0d5be557\";\n ApplicationUuid[\"CocaColaIl\"] = \"1e8e105b-61e2-4f54-bc70-5c6117348b87\";\n ApplicationUuid[\"ComingHomeApp\"] = \"c7d80d71-fe64-43b1-9d66-c8a76db31ea5\";\n ApplicationUuid[\"Conduit\"] = \"1294eec3-550d-4d71-8831-d9051750742a\";\n ApplicationUuid[\"CoopApp\"] = \"6b88b9d4-d79a-4d62-8ded-fa0e5c7d67be\";\n ApplicationUuid[\"CustomerExperienceApp\"] = \"caf4e836-e507-4f68-bb9c-c4511bb69750\";\n ApplicationUuid[\"CustomerExperienceWebApp\"] = \"a4338daf-babe-4fc4-a2d4-9050da8c1782\";\n ApplicationUuid[\"DataTrac\"] = \"d07f52b1-bf43-400f-88ab-40426de4b17c\";\n ApplicationUuid[\"DetectDriverOffRoute\"] = \"dd2ad97a-ffee-11e5-86aa-5e5517507c66\";\n ApplicationUuid[\"DHL\"] = \"ec424a40-a9b9-11e6-80f5-76304dec7eb7\";\n ApplicationUuid[\"DispatcherNotifier\"] = \"f574941d-fd43-4c4e-bd85-9b4107e569f3\";\n ApplicationUuid[\"DriverActivityVerifier\"] = \"f68bae82-dac7-411c-a772-792226bc8ea4\";\n ApplicationUuid[\"DriverPayments\"] = \"88260a80-c003-4d66-bf81-5f15443286ed\";\n ApplicationUuid[\"ETA\"] = \"9369f5d4-57d8-4806-b2c9-fcc6f4e51531\";\n ApplicationUuid[\"ExternalFleetApp\"] = \"271c52e5-0a1a-40cb-9f24-730ec91e4afc\";\n ApplicationUuid[\"FailedDeliveryManager\"] = \"de7f883b-bab4-4e25-a830-83bd1c5cb270\";\n ApplicationUuid[\"FedexFreight\"] = \"064844ab-e6f4-4b0e-8e26-383a408cab2a\";\n ApplicationUuid[\"FedexIl\"] = \"1b4e301f-86d1-4711-9947-08e3d8e73c6a\";\n ApplicationUuid[\"FleetRouterApp\"] = \"0ee6e692-3948-4346-b57c-671d3c8b7237\";\n ApplicationUuid[\"FloatingInventoryApp\"] = \"d7409473-fc0b-4d1e-a085-04634f5acd4f\";\n ApplicationUuid[\"GeocodingFiltering\"] = \"afc79118-6409-43f5-94aa-268dd3d98539\";\n ApplicationUuid[\"HoursStats\"] = \"88b80320-7587-447c-88bf-04e12737aebc\";\n ApplicationUuid[\"Integration\"] = \"2a4c90a3-b433-40f5-88bc-d4e9020197dc\";\n ApplicationUuid[\"JusteatWebhooks\"] = \"1aea54b2-d706-4c29-8b2b-47fe5660fd05\";\n ApplicationUuid[\"KFC\"] = \"9250b181-92c1-4a3d-8934-8fdb6c791567\";\n ApplicationUuid[\"LeroyMerlinIntegrationApp\"] = \"45c6821b-a645-424c-9bb6-9564f1f1d19f\";\n ApplicationUuid[\"LastLocationEstimator\"] = \"325328e0-9347-11e5-abc1-69640172f3ad\";\n ApplicationUuid[\"ManagerAuthorizationRules\"] = \"2a634eb8-145a-4269-978c-515878beda80\";\n ApplicationUuid[\"MiddleMile\"] = \"13b785c1-5814-49b5-956a-b6f068161f41\";\n ApplicationUuid[\"Nextel\"] = \"a91c3e27-ed17-4d0b-9c46-5981cd2cd09c\";\n ApplicationUuid[\"OAuth\"] = \"811570c1-3e34-4b55-884a-6500dd50d310\";\n ApplicationUuid[\"Panera\"] = \"7e0b2c26-cfa2-4106-b4d6-c9aa3adc5478\";\n ApplicationUuid[\"ParcelShop\"] = \"cd854cf7-0342-45e1-8212-dee71f599951\";\n ApplicationUuid[\"Pickup\"] = \"3b62707b-22ad-4601-bef9-804927d6ca9f\";\n ApplicationUuid[\"PlannedEtaApp\"] = \"e5a10347-ed56-44f4-8613-fe17f94a077f\";\n ApplicationUuid[\"Preparation\"] = \"515a459e-bba3-4a52-889e-54b5b967cbf9\";\n ApplicationUuid[\"QuotesApp\"] = \"c43a6eaa-dd2a-4d88-a339-861686546f08\";\n ApplicationUuid[\"RapidSosApp\"] = \"76d2338f-6da3-412b-815b-b0e90d862b86\";\n ApplicationUuid[\"RDS\"] = \"5ba318c1-aa07-448b-a25d-3a42e1e70ef0\";\n ApplicationUuid[\"RealtimeEtaApp\"] = \"2fd6d6c6-f4b4-4b85-854c-4ee193512899\";\n ApplicationUuid[\"RouteOptimizer2\"] = \"9dd3a937-b51e-41ed-afb4-6c3d97cdd620\";\n ApplicationUuid[\"ShareLocation\"] = \"f8b6d7e6-bbeb-4468-be51-fb012d001fe3\";\n ApplicationUuid[\"SuperAdmin\"] = \"2b8d33ba-41dc-4db5-bf42-791cd340154e\";\n ApplicationUuid[\"ShareLocationOnUpdate\"] = \"b9c4b248-c517-11e9-aa8c-2a2ae2dbcce4\";\n ApplicationUuid[\"Shell\"] = \"7167224f-1689-44eb-a615-ca2935e71b83\";\n ApplicationUuid[\"Shopify\"] = \"2c376813-6647-498f-b53f-a53352ba02d7\";\n ApplicationUuid[\"SingleDriverOptimizerApp\"] = \"2d6c4394-c504-4349-9395-cd01fded10f1\";\n ApplicationUuid[\"SingleSignOn\"] = \"ec763a46-8ad7-48d8-aab7-dcefcb794ff9\";\n ApplicationUuid[\"SmsDriverNotifier\"] = \"cbd475f3-a88b-45cb-aaf5-4d9bbe2c2f0b\";\n ApplicationUuid[\"StoreAppApp\"] = \"b4152c59-70a3-415e-b414-ce419550782e\";\n ApplicationUuid[\"TowNow\"] = \"cd52a2c2-193d-4f92-bf01-3412194e18b2\";\n ApplicationUuid[\"TasksETL\"] = \"3043914f-9be6-43c6-b1d8-e249410c79bc\";\n ApplicationUuid[\"TaskScanner\"] = \"255ef1ae-0012-448a-ad55-7dbfec3f1223\";\n ApplicationUuid[\"TaskSchedulingApp\"] = \"779d22c8-e18a-4723-9fd9-b5475178c244\";\n ApplicationUuid[\"TaskSkillsApp\"] = \"b6dbfed4-d416-48eb-9552-610b15ff5748\";\n ApplicationUuid[\"TaskTimesPredictions\"] = \"6c573459-dad9-4486-bdaa-b7ff32bd3019\";\n ApplicationUuid[\"TaskValidation\"] = \"56ca6350-b2bf-11e9-a2a3-2a2ae2dbcce4\";\n ApplicationUuid[\"TimeBasedTrigger\"] = \"fa7399cd-745a-47b5-ba3d-34c3fa4c03ad\";\n ApplicationUuid[\"UserRoleSkills\"] = \"f917dda7-806e-4d2c-bb07-47039375e4ec\";\n ApplicationUuid[\"UpsIntegration\"] = \"b8cc8bb2-78be-11ea-bc55-0242ac130003\";\n ApplicationUuid[\"VrpAutoDispatch\"] = \"da0db19e-5836-4750-959e-4689fb78a82c\";\n ApplicationUuid[\"Wizard\"] = \"d1c9bbe8-ec15-11e4-adf3-1681e6b88ec1\";\n ApplicationUuid[\"Walmart\"] = \"f9b14523-4a9a-4baf-b97e-2b9d9f3e913a\";\n ApplicationUuid[\"Webhooks\"] = \"5920d1a0-4c82-11e4-916c-0800200c9a66\";\n ApplicationUuid[\"WebhookTimeZone\"] = \"d3b976db-a8cf-4930-9489-b13d21075180\";\n ApplicationUuid[\"WebhookApp\"] = \"52228df2-2759-432d-8865-2593d2ba6c12\";\n ApplicationUuid[\"EventBasedActions\"] = \"56cc30b4-1600-42ca-ba58-94220961f110\";\n ApplicationUuid[\"InventoryTriggeredActions\"] = \"bef201bc-f003-4ee5-9780-a03cb6951d3d\";\n ApplicationUuid[\"RuleEngine\"] = \"e6d7c261-9d8d-4042-bd1e-5355cc5a348a\";\n ApplicationUuid[\"Recurrences\"] = \"707e4ead-ac57-489d-8dd3-fcb5b14aae5d\";\n ApplicationUuid[\"TaskService\"] = \"5ca4a73e-5298-4b8a-a36f-d1cc76e20f49\";\n ApplicationUuid[\"ExclusionWindowTasksLimitApp\"] = \"376233f1-8be5-4366-9218-6d66e7a8d2de\";\n})(ApplicationUuid = exports.ApplicationUuid || (exports.ApplicationUuid = {}));\n//# sourceMappingURL=application.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/application.js?");
|
|
4558
|
+
eval("\nexports.__esModule = true;\nexports.ApplicationUuid = void 0;\nvar ApplicationUuid;\n(function (ApplicationUuid) {\n ApplicationUuid[\"AutoAssign\"] = \"7083ab3d-c7de-40fd-83bb-f2c10bd0fa88\";\n ApplicationUuid[\"AAA\"] = \"3ecfa3f6-1a21-11e8-accf-0ed5f89f718b\";\n ApplicationUuid[\"CustomAttributeApplication\"] = \"eb377388-08b9-48e2-9752-5066b4446d50\";\n ApplicationUuid[\"ActOnTriggerApp\"] = \"8ebe8358-62d3-11ea-bc55-0242ac130003\";\n ApplicationUuid[\"AutoBreaks\"] = \"9310325e-d7d5-11ea-87d0-0242ac130003\";\n ApplicationUuid[\"AvailableDrivers\"] = \"17fea9d6-9f5e-4234-91b4-34d6677ba5be\";\n ApplicationUuid[\"Bitly\"] = \"f4b3ade5-4997-418e-8f99-1813dd1e56df\";\n ApplicationUuid[\"BackToWarehouse\"] = \"d21a5684-8997-11e8-9a94-a6cf71072f73\";\n ApplicationUuid[\"Boulanger\"] = \"34dc733d-7d17-4e44-8884-bb1ec1197da6\";\n ApplicationUuid[\"Clover\"] = \"7661994f-da60-4f5d-bda9-4c132fb19484\";\n ApplicationUuid[\"CocaCola\"] = \"eaf03283-dce4-4567-b6bf-f3eb3573357e\";\n ApplicationUuid[\"CancellationTasks\"] = \"94c67d35-e289-44de-a19d-8ee0b02b00e0\";\n ApplicationUuid[\"Chat\"] = \"6ee9296a-38bd-4d8e-81c6-b16001a20ee3\";\n ApplicationUuid[\"CocaColaBrazilApp\"] = \"f9bd58a4-a514-11ea-bb37-0242ac130002\";\n ApplicationUuid[\"CocaColaChile\"] = \"075c7b23-a847-4510-bc86-79fd0d5be557\";\n ApplicationUuid[\"CocaColaIl\"] = \"1e8e105b-61e2-4f54-bc70-5c6117348b87\";\n ApplicationUuid[\"ComingHomeApp\"] = \"c7d80d71-fe64-43b1-9d66-c8a76db31ea5\";\n ApplicationUuid[\"Conduit\"] = \"1294eec3-550d-4d71-8831-d9051750742a\";\n ApplicationUuid[\"CoopApp\"] = \"6b88b9d4-d79a-4d62-8ded-fa0e5c7d67be\";\n ApplicationUuid[\"CustomerExperienceApp\"] = \"caf4e836-e507-4f68-bb9c-c4511bb69750\";\n ApplicationUuid[\"CustomerExperienceWebApp\"] = \"a4338daf-babe-4fc4-a2d4-9050da8c1782\";\n ApplicationUuid[\"DataTrac\"] = \"d07f52b1-bf43-400f-88ab-40426de4b17c\";\n ApplicationUuid[\"DetectDriverOffRoute\"] = \"dd2ad97a-ffee-11e5-86aa-5e5517507c66\";\n ApplicationUuid[\"DHL\"] = \"ec424a40-a9b9-11e6-80f5-76304dec7eb7\";\n ApplicationUuid[\"DispatcherNotifier\"] = \"f574941d-fd43-4c4e-bd85-9b4107e569f3\";\n ApplicationUuid[\"DriverActivityVerifier\"] = \"f68bae82-dac7-411c-a772-792226bc8ea4\";\n ApplicationUuid[\"DriverPayments\"] = \"88260a80-c003-4d66-bf81-5f15443286ed\";\n ApplicationUuid[\"ETA\"] = \"9369f5d4-57d8-4806-b2c9-fcc6f4e51531\";\n ApplicationUuid[\"ExternalFleetApp\"] = \"271c52e5-0a1a-40cb-9f24-730ec91e4afc\";\n ApplicationUuid[\"FailedDeliveryManager\"] = \"de7f883b-bab4-4e25-a830-83bd1c5cb270\";\n ApplicationUuid[\"FedexFreight\"] = \"064844ab-e6f4-4b0e-8e26-383a408cab2a\";\n ApplicationUuid[\"FedexIl\"] = \"1b4e301f-86d1-4711-9947-08e3d8e73c6a\";\n ApplicationUuid[\"FleetRouterApp\"] = \"0ee6e692-3948-4346-b57c-671d3c8b7237\";\n ApplicationUuid[\"FloatingInventoryApp\"] = \"d7409473-fc0b-4d1e-a085-04634f5acd4f\";\n ApplicationUuid[\"GeocodingFiltering\"] = \"afc79118-6409-43f5-94aa-268dd3d98539\";\n ApplicationUuid[\"HoursStats\"] = \"88b80320-7587-447c-88bf-04e12737aebc\";\n ApplicationUuid[\"Integration\"] = \"2a4c90a3-b433-40f5-88bc-d4e9020197dc\";\n ApplicationUuid[\"JusteatWebhooks\"] = \"1aea54b2-d706-4c29-8b2b-47fe5660fd05\";\n ApplicationUuid[\"KFC\"] = \"9250b181-92c1-4a3d-8934-8fdb6c791567\";\n ApplicationUuid[\"LeroyMerlinIntegrationApp\"] = \"45c6821b-a645-424c-9bb6-9564f1f1d19f\";\n ApplicationUuid[\"LastLocationEstimator\"] = \"325328e0-9347-11e5-abc1-69640172f3ad\";\n ApplicationUuid[\"ManagerAuthorizationRules\"] = \"2a634eb8-145a-4269-978c-515878beda80\";\n ApplicationUuid[\"MiddleMile\"] = \"13b785c1-5814-49b5-956a-b6f068161f41\";\n ApplicationUuid[\"Nextel\"] = \"a91c3e27-ed17-4d0b-9c46-5981cd2cd09c\";\n ApplicationUuid[\"OAuth\"] = \"811570c1-3e34-4b55-884a-6500dd50d310\";\n ApplicationUuid[\"Panera\"] = \"7e0b2c26-cfa2-4106-b4d6-c9aa3adc5478\";\n ApplicationUuid[\"ParcelShop\"] = \"cd854cf7-0342-45e1-8212-dee71f599951\";\n ApplicationUuid[\"Pickup\"] = \"3b62707b-22ad-4601-bef9-804927d6ca9f\";\n ApplicationUuid[\"PlannedEtaApp\"] = \"e5a10347-ed56-44f4-8613-fe17f94a077f\";\n ApplicationUuid[\"Preparation\"] = \"515a459e-bba3-4a52-889e-54b5b967cbf9\";\n ApplicationUuid[\"QuotesApp\"] = \"c43a6eaa-dd2a-4d88-a339-861686546f08\";\n ApplicationUuid[\"RapidSosApp\"] = \"76d2338f-6da3-412b-815b-b0e90d862b86\";\n ApplicationUuid[\"RDS\"] = \"5ba318c1-aa07-448b-a25d-3a42e1e70ef0\";\n ApplicationUuid[\"RealtimeEtaApp\"] = \"2fd6d6c6-f4b4-4b85-854c-4ee193512899\";\n ApplicationUuid[\"RouteOptimizer2\"] = \"9dd3a937-b51e-41ed-afb4-6c3d97cdd620\";\n ApplicationUuid[\"ShareLocation\"] = \"f8b6d7e6-bbeb-4468-be51-fb012d001fe3\";\n ApplicationUuid[\"SuperAdmin\"] = \"2b8d33ba-41dc-4db5-bf42-791cd340154e\";\n ApplicationUuid[\"ShareLocationOnUpdate\"] = \"b9c4b248-c517-11e9-aa8c-2a2ae2dbcce4\";\n ApplicationUuid[\"Shell\"] = \"7167224f-1689-44eb-a615-ca2935e71b83\";\n ApplicationUuid[\"Shopify\"] = \"2c376813-6647-498f-b53f-a53352ba02d7\";\n ApplicationUuid[\"SingleDriverOptimizerApp\"] = \"2d6c4394-c504-4349-9395-cd01fded10f1\";\n ApplicationUuid[\"SingleSignOn\"] = \"ec763a46-8ad7-48d8-aab7-dcefcb794ff9\";\n ApplicationUuid[\"SmsDriverNotifier\"] = \"cbd475f3-a88b-45cb-aaf5-4d9bbe2c2f0b\";\n ApplicationUuid[\"StoreAppApp\"] = \"b4152c59-70a3-415e-b414-ce419550782e\";\n ApplicationUuid[\"TowNow\"] = \"cd52a2c2-193d-4f92-bf01-3412194e18b2\";\n ApplicationUuid[\"TasksETL\"] = \"3043914f-9be6-43c6-b1d8-e249410c79bc\";\n ApplicationUuid[\"TaskScanner\"] = \"255ef1ae-0012-448a-ad55-7dbfec3f1223\";\n ApplicationUuid[\"TaskSchedulingApp\"] = \"779d22c8-e18a-4723-9fd9-b5475178c244\";\n ApplicationUuid[\"TaskSkillsApp\"] = \"b6dbfed4-d416-48eb-9552-610b15ff5748\";\n ApplicationUuid[\"TaskTimesPredictions\"] = \"6c573459-dad9-4486-bdaa-b7ff32bd3019\";\n ApplicationUuid[\"TaskValidation\"] = \"56ca6350-b2bf-11e9-a2a3-2a2ae2dbcce4\";\n ApplicationUuid[\"TimeBasedTrigger\"] = \"fa7399cd-745a-47b5-ba3d-34c3fa4c03ad\";\n ApplicationUuid[\"UserRoleSkills\"] = \"f917dda7-806e-4d2c-bb07-47039375e4ec\";\n ApplicationUuid[\"UpsIntegration\"] = \"b8cc8bb2-78be-11ea-bc55-0242ac130003\";\n ApplicationUuid[\"VrpAutoDispatch\"] = \"da0db19e-5836-4750-959e-4689fb78a82c\";\n ApplicationUuid[\"Wizard\"] = \"d1c9bbe8-ec15-11e4-adf3-1681e6b88ec1\";\n ApplicationUuid[\"Walmart\"] = \"f9b14523-4a9a-4baf-b97e-2b9d9f3e913a\";\n ApplicationUuid[\"Webhooks\"] = \"5920d1a0-4c82-11e4-916c-0800200c9a66\";\n ApplicationUuid[\"WebhookTimeZone\"] = \"d3b976db-a8cf-4930-9489-b13d21075180\";\n ApplicationUuid[\"WebhookApp\"] = \"52228df2-2759-432d-8865-2593d2ba6c12\";\n ApplicationUuid[\"EventBasedActions\"] = \"56cc30b4-1600-42ca-ba58-94220961f110\";\n ApplicationUuid[\"InventoryTriggeredActions\"] = \"bef201bc-f003-4ee5-9780-a03cb6951d3d\";\n ApplicationUuid[\"RuleEngine\"] = \"e6d7c261-9d8d-4042-bd1e-5355cc5a348a\";\n ApplicationUuid[\"Recurrences\"] = \"707e4ead-ac57-489d-8dd3-fcb5b14aae5d\";\n ApplicationUuid[\"TaskService\"] = \"5ca4a73e-5298-4b8a-a36f-d1cc76e20f49\";\n ApplicationUuid[\"ExclusionWindowTasksLimitApp\"] = \"376233f1-8be5-4366-9218-6d66e7a8d2de\";\n ApplicationUuid[\"Availability\"] = \"2c6bf985-414b-4411-888a-c0840e660411\";\n})(ApplicationUuid = exports.ApplicationUuid || (exports.ApplicationUuid = {}));\n//# sourceMappingURL=application.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/application.js?");
|
|
4559
|
+
|
|
4560
|
+
/***/ }),
|
|
4561
|
+
|
|
4562
|
+
/***/ "./node_modules/@bringg/types/types/async_operation_status.js":
|
|
4563
|
+
/*!********************************************************************!*\
|
|
4564
|
+
!*** ./node_modules/@bringg/types/types/async_operation_status.js ***!
|
|
4565
|
+
\********************************************************************/
|
|
4566
|
+
/*! no static exports found */
|
|
4567
|
+
/*! all exports used */
|
|
4568
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
4569
|
+
|
|
4570
|
+
"use strict";
|
|
4571
|
+
eval("\nexports.__esModule = true;\nexports.AsyncOperationStatusType = void 0;\nvar AsyncOperationStatusType;\n(function (AsyncOperationStatusType) {\n AsyncOperationStatusType[\"SUCCESS\"] = \"success\";\n AsyncOperationStatusType[\"FAILURE\"] = \"failure\";\n})(AsyncOperationStatusType = exports.AsyncOperationStatusType || (exports.AsyncOperationStatusType = {}));\n//# sourceMappingURL=async_operation_status.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/async_operation_status.js?");
|
|
4546
4572
|
|
|
4547
4573
|
/***/ }),
|
|
4548
4574
|
|
|
@@ -4672,7 +4698,7 @@ eval("\nvar _a;\nexports.__esModule = true;\nexports.Currencies = exports.Curren
|
|
|
4672
4698
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4673
4699
|
|
|
4674
4700
|
"use strict";
|
|
4675
|
-
eval("\nexports.__esModule = true;\nexports.pathValidationRegExp = exports.CustomAttributeConsumerEntity = exports.CustomAttributesRpcActions = exports.CustomAttributeResolverType = exports.CustomAttributeDataType = exports.CustomAttributeEntityType = void 0;\nvar CustomAttributeEntityType;\n(function (CustomAttributeEntityType) {\n CustomAttributeEntityType[CustomAttributeEntityType[\"Task\"] = 0] = \"Task\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"Waypoint\"] = 1] = \"Waypoint\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"Customer\"] = 2] = \"Customer\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"Team\"] = 3] = \"Team\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"User\"] = 4] = \"User\";\n})(CustomAttributeEntityType = exports.CustomAttributeEntityType || (exports.CustomAttributeEntityType = {}));\nvar CustomAttributeDataType;\n(function (CustomAttributeDataType) {\n CustomAttributeDataType[CustomAttributeDataType[\"Number\"] = 0] = \"Number\";\n CustomAttributeDataType[CustomAttributeDataType[\"String\"] = 1] = \"String\";\n CustomAttributeDataType[CustomAttributeDataType[\"Boolean\"] = 2] = \"Boolean\";\n CustomAttributeDataType[CustomAttributeDataType[\"Enum\"] = 3] = \"Enum\";\n})(CustomAttributeDataType = exports.CustomAttributeDataType || (exports.CustomAttributeDataType = {}));\nvar CustomAttributeResolverType;\n(function (CustomAttributeResolverType) {\n CustomAttributeResolverType[\"JSONata\"] = \"JSONata\";\n})(CustomAttributeResolverType = exports.CustomAttributeResolverType || (exports.CustomAttributeResolverType = {}));\nvar CustomAttributesRpcActions;\n(function (CustomAttributesRpcActions) {\n CustomAttributesRpcActions[\"GetAll\"] = \"get_all\";\n CustomAttributesRpcActions[\"GetAllByIds\"] = \"get_all_by_ids\";\n CustomAttributesRpcActions[\"GetAllInternal\"] = \"get_all_internal\";\n CustomAttributesRpcActions[\"UpsertSuggestion\"] = \"upsert_suggestion\";\n CustomAttributesRpcActions[\"CheckUsage\"] = \"custom_attributes:check_record_usage\";\n})(CustomAttributesRpcActions = exports.CustomAttributesRpcActions || (exports.CustomAttributesRpcActions = {}));\nvar CustomAttributeConsumerEntity;\n(function (CustomAttributeConsumerEntity) {\n CustomAttributeConsumerEntity[\"AnalyticsReport\"] = \"analytics_report\";\n CustomAttributeConsumerEntity[\"Rule\"] = \"rule\";\n})(CustomAttributeConsumerEntity = exports.CustomAttributeConsumerEntity || (exports.CustomAttributeConsumerEntity = {}));\nexports.pathValidationRegExp = /^[a-zA-Z_$\\d]+(\\[\\d+\\])*?$/;\n//# sourceMappingURL=custom_attribute.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/custom_attribute.js?");
|
|
4701
|
+
eval("\nexports.__esModule = true;\nexports.pathValidationRegExp = exports.CustomAttributesMandatoryRpcActions = exports.CustomAttributeConsumerEntity = exports.CustomAttributesRpcActions = exports.CustomAttributeResolverType = exports.CustomAttributeDataType = exports.CustomAttributeEntityType = void 0;\nvar CustomAttributeEntityType;\n(function (CustomAttributeEntityType) {\n CustomAttributeEntityType[CustomAttributeEntityType[\"Task\"] = 0] = \"Task\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"Waypoint\"] = 1] = \"Waypoint\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"Customer\"] = 2] = \"Customer\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"Team\"] = 3] = \"Team\";\n CustomAttributeEntityType[CustomAttributeEntityType[\"User\"] = 4] = \"User\";\n})(CustomAttributeEntityType = exports.CustomAttributeEntityType || (exports.CustomAttributeEntityType = {}));\nvar CustomAttributeDataType;\n(function (CustomAttributeDataType) {\n CustomAttributeDataType[CustomAttributeDataType[\"Number\"] = 0] = \"Number\";\n CustomAttributeDataType[CustomAttributeDataType[\"String\"] = 1] = \"String\";\n CustomAttributeDataType[CustomAttributeDataType[\"Boolean\"] = 2] = \"Boolean\";\n CustomAttributeDataType[CustomAttributeDataType[\"Enum\"] = 3] = \"Enum\";\n})(CustomAttributeDataType = exports.CustomAttributeDataType || (exports.CustomAttributeDataType = {}));\nvar CustomAttributeResolverType;\n(function (CustomAttributeResolverType) {\n CustomAttributeResolverType[\"JSONata\"] = \"JSONata\";\n})(CustomAttributeResolverType = exports.CustomAttributeResolverType || (exports.CustomAttributeResolverType = {}));\nvar CustomAttributesRpcActions;\n(function (CustomAttributesRpcActions) {\n CustomAttributesRpcActions[\"GetAll\"] = \"get_all\";\n CustomAttributesRpcActions[\"GetAllByIds\"] = \"get_all_by_ids\";\n CustomAttributesRpcActions[\"GetAllInternal\"] = \"get_all_internal\";\n CustomAttributesRpcActions[\"UpsertSuggestion\"] = \"upsert_suggestion\";\n CustomAttributesRpcActions[\"CheckUsage\"] = \"custom_attributes:check_record_usage\";\n})(CustomAttributesRpcActions = exports.CustomAttributesRpcActions || (exports.CustomAttributesRpcActions = {}));\nvar CustomAttributeConsumerEntity;\n(function (CustomAttributeConsumerEntity) {\n CustomAttributeConsumerEntity[\"AnalyticsReport\"] = \"analytics_report\";\n CustomAttributeConsumerEntity[\"Rule\"] = \"rule\";\n CustomAttributeConsumerEntity[\"WorkflowRule\"] = \"workflow_rule\";\n CustomAttributeConsumerEntity[\"WorkflowTrigger\"] = \"workflow_trigger\";\n})(CustomAttributeConsumerEntity = exports.CustomAttributeConsumerEntity || (exports.CustomAttributeConsumerEntity = {}));\nvar CustomAttributesMandatoryRpcActions;\n(function (CustomAttributesMandatoryRpcActions) {\n CustomAttributesMandatoryRpcActions[\"CheckUsage\"] = \"custom-attributes:check-record-usage\";\n})(CustomAttributesMandatoryRpcActions = exports.CustomAttributesMandatoryRpcActions || (exports.CustomAttributesMandatoryRpcActions = {}));\nexports.pathValidationRegExp = /^[a-zA-Z_$\\d]+(\\[\\d+\\])*?$/;\n//# sourceMappingURL=custom_attribute.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/custom_attribute.js?");
|
|
4676
4702
|
|
|
4677
4703
|
/***/ }),
|
|
4678
4704
|
|
|
@@ -4906,7 +4932,7 @@ eval("\nexports.__esModule = true;\nexports.EmulatedDeliveryEvents = void 0;\nva
|
|
|
4906
4932
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4907
4933
|
|
|
4908
4934
|
"use strict";
|
|
4909
|
-
eval("\nexports.__esModule = true;\nexports.AvailabilityCalculationOrigin = exports.EventType = exports.AssociationsChangedType = void 0;\nvar AssociationsChangedType;\n(function (AssociationsChangedType) {\n AssociationsChangedType[\"way_point\"] = \"way_point\";\n AssociationsChangedType[\"task_inventory\"] = \"task_inventory\";\n AssociationsChangedType[\"form\"] = \"form\";\n AssociationsChangedType[\"task_note\"] = \"task_note\";\n AssociationsChangedType[\"task_photo\"] = \"task_photo\";\n AssociationsChangedType[\"signature\"] = \"signature\";\n})(AssociationsChangedType = exports.AssociationsChangedType || (exports.AssociationsChangedType = {}));\nvar EventType;\n(function (EventType) {\n EventType[\"ApplicationActionRun\"] = \"application:action:run\";\n EventType[\"UserPreLeftHome\"] = \"user:pre_left_home\";\n EventType[\"UserPreGotHome\"] = \"user:pre_got_home\";\n EventType[\"UserTypeChanged\"] = \"user_type_changed\";\n EventType[\"TaskCashoutCreated\"] = \"task:cashout:created\";\n EventType[\"EmployeeUpdateLocation\"] = \"employee:update_location\";\n EventType[\"EmployeeUpdate\"] = \"employee:update\";\n EventType[\"TaskNew\"] = \"task:new\";\n EventType[\"TaskAcknowledged\"] = \"task:acknowledged\";\n EventType[\"TaskPaymentHistoryCreated\"] = \"task_payment_history:created\";\n EventType[\"UserRated\"] = \"user:rated\";\n EventType[\"CustomerTipped\"] = \"customer:tipped\";\n EventType[\"CustomerCreated\"] = \"customer:created\";\n EventType[\"CustomerOptedIn\"] = \"customer:opted_in\";\n EventType[\"CustomerOptedOut\"] = \"customer:opted_out\";\n EventType[\"CustomerAvailabilityHoursCreated\"] = \"customer:availability_hours:created\";\n EventType[\"EmployeeTurnsOffline\"] = \"employee_turns_offline\";\n EventType[\"EmployeeTurnsOnline\"] = \"employee_turns_online\";\n EventType[\"ShiftStarted\"] = \"shift:started\";\n EventType[\"ShiftEnded\"] = \"shift:ended\";\n EventType[\"TaskWayPointAdded\"] = \"task:way_point:added\";\n EventType[\"TaskChangePreparation\"] = \"task:change_preparation\";\n EventType[\"TaskPreparationChanged\"] = \"task:preparation_changed\";\n EventType[\"TaskStatusChanged\"] = \"task:status_changed\";\n EventType[\"TaskDeleted\"] = \"task:deleted\";\n EventType[\"TaskUpdate\"] = \"task:update\";\n EventType[\"TaskPackagesChanged\"] = \"task:packages_changed\";\n EventType[\"TeamUserAdded\"] = \"team:user_added\";\n EventType[\"UserNew\"] = \"user:new\";\n EventType[\"TeamUserRemoved\"] = \"team:user_removed\";\n EventType[\"TeamTaskAdded\"] = \"team:task_added\";\n EventType[\"TeamTaskRemoved\"] = \"team:task_removed\";\n EventType[\"TaskCreated\"] = \"task:created\";\n EventType[\"TaskCreatedFinal\"] = \"task:created:final\";\n EventType[\"TaskCreatedFinalProcessingDone\"] = \"task:created:final:processing:done\";\n EventType[\"TaskRemoved\"] = \"task:removed\";\n EventType[\"TaskRejected\"] = \"task:rejected\";\n EventType[\"UserGotHome\"] = \"user:got_home\";\n EventType[\"UserLeftHome\"] = \"user:left_home\";\n EventType[\"TaskLate\"] = \"task:late\";\n EventType[\"AppAdded\"] = \"app:added\";\n EventType[\"AppRemoved\"] = \"app:removed\";\n EventType[\"RequestPush\"] = \"request_push\";\n EventType[\"UsersReadyToExecute\"] = \"users:ready_to_execute\";\n EventType[\"UserReadyToExecute\"] = \"user:ready_to_execute\";\n EventType[\"RequestOptimizeRoute\"] = \"request_optimize_route\";\n EventType[\"RequestOptimizeDriverRoute\"] = \"request_optimize_driver_route\";\n EventType[\"RequestRescheduleCancelledTask\"] = \"request_reschedule_cancelled_task\";\n EventType[\"SharedLocationCreated\"] = \"shared_location:created\";\n EventType[\"MerchantCreated\"] = \"merchant_created\";\n EventType[\"UserActivityChange\"] = \"user_activity_change\";\n EventType[\"FormCreated\"] = \"form_created\";\n EventType[\"NoteCreated\"] = \"note_created\";\n EventType[\"FloatingInventoryUpdated\"] = \"floating_inventory:updated\";\n EventType[\"WayPointUpdated\"] = \"way_point:updated\";\n EventType[\"WayPointStarted\"] = \"way_point:started\";\n EventType[\"WayPointArrived\"] = \"way_point:checkin\";\n EventType[\"WayPointLeft\"] = \"way_point:checkout\";\n EventType[\"MassWayPointLeft\"] = \"mass:way_point:checkout\";\n EventType[\"WayPointOnTheWayProcessingDone\"] = \"way_point:on_the_way:processing:done\";\n EventType[\"TaskWayPointsDoneProcessingDone\"] = \"task:way_points:done:processing:done\";\n EventType[\"TaskProcessingDone\"] = \"task:processing:done\";\n EventType[\"WayPointRecalculateDistance\"] = \"way_point:recalculate_distance\";\n EventType[\"RecalculateDistance\"] = \"recalculate_distance\";\n EventType[\"TaskReadyToExecute\"] = \"task:ready_to_execute\";\n EventType[\"TeamUpdate\"] = \"team:update\";\n EventType[\"MerchantConfigurationUpdated\"] = \"merchant:configuration_updated\";\n EventType[\"RouteOptimized\"] = \"route:optimized\";\n EventType[\"RouteOptimizationProgress\"] = \"route:optimization:progress\";\n EventType[\"RouteOptimizationCanceled\"] = \"route:optimization:canceled\";\n EventType[\"RouteOptimizationPolling\"] = \"route:optimization:polling\";\n EventType[\"RouteOptimizationDone\"] = \"route:optimization:done\";\n EventType[\"RouteOptimizationApplied\"] = \"route:optimization:applied\";\n EventType[\"PlanningDone\"] = \"planning:done\";\n EventType[\"InventoryScheduledArrivalCreated\"] = \"inventory:scheduled_arrival:created\";\n EventType[\"Scanned\"] = \"scanned\";\n EventType[\"InventoryScanned\"] = \"inventory_scanned\";\n EventType[\"AlertCreated\"] = \"alert_created\";\n EventType[\"RunStarted\"] = \"run:started\";\n EventType[\"RunEnded\"] = \"run:ended\";\n EventType[\"RunDeleted\"] = \"run:deleted\";\n EventType[\"RunTaskAdded\"] = \"run:task:added\";\n EventType[\"RunTaskRemoved\"] = \"run:task:removed\";\n EventType[\"RunUpdated\"] = \"run:updated\";\n EventType[\"RunCreated\"] = \"run:created\";\n EventType[\"RunSendUpdateWebhook\"] = \"run:send_update_webhook\";\n EventType[\"RunCalculateAggregations\"] = \"run:calculate_aggregations\";\n EventType[\"InvoiceCreated\"] = \"invoice:created\";\n EventType[\"RunDebriefed\"] = \"run:debriefed\";\n EventType[\"TasksMassRemove\"] = \"tasks:mass_remove\";\n EventType[\"ManifestDone\"] = \"manifest:done\";\n EventType[\"LocationHistoryReceived\"] = \"location_history_received\";\n EventType[\"QuoteReceived\"] = \"quote_received\";\n EventType[\"DeliveryBlockAssigned\"] = \"delivery_block:assigned\";\n EventType[\"DeliveryBlockUnassigned\"] = \"delivery_block:unassigned\";\n EventType[\"DeliveryBlockCreated\"] = \"delivery_block:created\";\n EventType[\"DeliveryBlockUpdated\"] = \"delivery_block:updated\";\n EventType[\"DeliveryBlockDeleted\"] = \"delivery_block:deleted\";\n EventType[\"DriverShiftScheduleUpdated\"] = \"driver_shift_schedule:updated\";\n EventType[\"SchedulerEvent\"] = \"scheduler_event\";\n EventType[\"MobileAnalyticsEvent\"] = \"mobile_analytics_event\";\n EventType[\"MenuUpdated\"] = \"menu:updated\";\n EventType[\"TaskInventoryUpdate\"] = \"task_inventory:update\";\n EventType[\"MobileActionEvent\"] = \"mobile_action_event\";\n EventType[\"WayPointAnswersCreated\"] = \"way_point:answers:created\";\n EventType[\"WayPointScheduledArrivalUpdated\"] = \"way_point:scheduled_arrival:updated\";\n EventType[\"MaskedPhoneCallFinished\"] = \"masked_phone:call_finished\";\n EventType[\"RapidSosRequested\"] = \"rapid_sos_requested\";\n EventType[\"RatingSubmitted\"] = \"rating:submitted\";\n EventType[\"UserActualBreakUpdated\"] = \"user:actual_break:updated\";\n EventType[\"TimeBasedEvent\"] = \"time_based_event\";\n EventType[\"OpenFleetIntegrationEvent\"] = \"open_fleet:integration_event\";\n EventType[\"WorkflowTimeBasedEvent\"] = \"workflow:time_based_event\";\n EventType[\"WorkflowManual\"] = \"workflow:manual\";\n EventType[\"VrpAutoDispatchFailed\"] = \"vrp_auto_dispatch_failed\";\n EventType[\"PackageCreated\"] = \"package:created\";\n EventType[\"PackageUpdated\"] = \"package:updated\";\n EventType[\"PackageDeleted\"] = \"package:deleted\";\n EventType[\"FleetDeliveryActionCreateFailed\"] = \"fleet_delivery_action:create:failed\";\n EventType[\"FleetAssigned\"] = \"fleet:assigned\";\n EventType[\"NoFleetFound\"] = \"fleet_router:no_fleet_found\";\n EventType[\"SmsSendFailed\"] = \"sms:send:failed\";\n EventType[\"TaskAcceptedByExternalFleet\"] = \"task:accepted_by_external_fleet\";\n EventType[\"GroupTaskCalculateAggregations\"] = \"group_task:calculate_aggregations\";\n EventType[\"DriverUnavailabilityChange\"] = \"user:unavailability_change\";\n EventType[\"TaskReassignReasonCreated\"] = \"task_reassign_reason:created\";\n EventType[\"WayPointCalculateServiceAreas\"] = \"way_point:calculate_service_areas\";\n EventType[\"DeliveryWindowCreated\"] = \"delivery_window:created\";\n EventType[\"DeliveryWindowUpdated\"] = \"delivery_window:updated\";\n EventType[\"DeliveryWindowDeleted\"] = \"delivery_window:deleted\";\n EventType[\"PlannedDeliveryWindowUpdated\"] = \"planned_delivery_window:updated\";\n EventType[\"ExclusionWindowCreated\"] = \"exclusion_window:created\";\n EventType[\"ExclusionWindowUpdated\"] = \"exclusion_window:updated\";\n EventType[\"UnassignedAvailabilityTasks\"] = \"unassigned_availability_tasks\";\n EventType[\"DeliveryProviderOfferingCreated\"] = \"delivery_provider_offering:created\";\n EventType[\"DeliveryProviderOfferingUpdated\"] = \"delivery_provider_offering:updated\";\n EventType[\"RecurringTemplateTimesReassigned\"] = \"recurring_template:times_reassigned\";\n})(EventType = exports.EventType || (exports.EventType = {}));\nvar AvailabilityCalculationOrigin;\n(function (AvailabilityCalculationOrigin) {\n AvailabilityCalculationOrigin[\"QUOTE_ORDERS\"] = \"QUOTE_ORDERS\";\n AvailabilityCalculationOrigin[\"AUTOMATION_PLATFORM\"] = \"AUTOMATION_PLATFORM\";\n})(AvailabilityCalculationOrigin = exports.AvailabilityCalculationOrigin || (exports.AvailabilityCalculationOrigin = {}));\n//# sourceMappingURL=event.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/event.js?");
|
|
4935
|
+
eval("\nexports.__esModule = true;\nexports.AvailabilityCalculationOrigin = exports.EventType = exports.AssociationsChangedType = void 0;\nvar AssociationsChangedType;\n(function (AssociationsChangedType) {\n AssociationsChangedType[\"way_point\"] = \"way_point\";\n AssociationsChangedType[\"task_inventory\"] = \"task_inventory\";\n AssociationsChangedType[\"form\"] = \"form\";\n AssociationsChangedType[\"task_note\"] = \"task_note\";\n AssociationsChangedType[\"task_photo\"] = \"task_photo\";\n AssociationsChangedType[\"signature\"] = \"signature\";\n})(AssociationsChangedType = exports.AssociationsChangedType || (exports.AssociationsChangedType = {}));\nvar EventType;\n(function (EventType) {\n EventType[\"ApplicationActionRun\"] = \"application:action:run\";\n EventType[\"UserPreLeftHome\"] = \"user:pre_left_home\";\n EventType[\"UserPreGotHome\"] = \"user:pre_got_home\";\n EventType[\"UserTypeChanged\"] = \"user_type_changed\";\n EventType[\"TaskCashoutCreated\"] = \"task:cashout:created\";\n EventType[\"EmployeeUpdateLocation\"] = \"employee:update_location\";\n EventType[\"EmployeeUpdate\"] = \"employee:update\";\n EventType[\"TaskNew\"] = \"task:new\";\n EventType[\"TaskAcknowledged\"] = \"task:acknowledged\";\n EventType[\"TaskPaymentHistoryCreated\"] = \"task_payment_history:created\";\n EventType[\"UserRated\"] = \"user:rated\";\n EventType[\"CustomerTipped\"] = \"customer:tipped\";\n EventType[\"CustomerCreated\"] = \"customer:created\";\n EventType[\"CustomerOptedIn\"] = \"customer:opted_in\";\n EventType[\"CustomerOptedOut\"] = \"customer:opted_out\";\n EventType[\"CustomerAvailabilityHoursCreated\"] = \"customer:availability_hours:created\";\n EventType[\"EmployeeTurnsOffline\"] = \"employee_turns_offline\";\n EventType[\"EmployeeTurnsOnline\"] = \"employee_turns_online\";\n EventType[\"ShiftStarted\"] = \"shift:started\";\n EventType[\"ShiftEnded\"] = \"shift:ended\";\n EventType[\"TaskWayPointAdded\"] = \"task:way_point:added\";\n EventType[\"TaskChangePreparation\"] = \"task:change_preparation\";\n EventType[\"TaskPreparationChanged\"] = \"task:preparation_changed\";\n EventType[\"TaskStatusChanged\"] = \"task:status_changed\";\n EventType[\"TaskDeleted\"] = \"task:deleted\";\n EventType[\"TaskUpdate\"] = \"task:update\";\n EventType[\"TaskPackagesChanged\"] = \"task:packages_changed\";\n EventType[\"TeamUserAdded\"] = \"team:user_added\";\n EventType[\"UserNew\"] = \"user:new\";\n EventType[\"TeamUserRemoved\"] = \"team:user_removed\";\n EventType[\"TeamTaskAdded\"] = \"team:task_added\";\n EventType[\"TeamTaskRemoved\"] = \"team:task_removed\";\n EventType[\"TaskCreated\"] = \"task:created\";\n EventType[\"TaskCreatedFinal\"] = \"task:created:final\";\n EventType[\"TaskCreatedFinalProcessingDone\"] = \"task:created:final:processing:done\";\n EventType[\"TaskRemoved\"] = \"task:removed\";\n EventType[\"TaskRejected\"] = \"task:rejected\";\n EventType[\"UserGotHome\"] = \"user:got_home\";\n EventType[\"UserLeftHome\"] = \"user:left_home\";\n EventType[\"TaskLate\"] = \"task:late\";\n EventType[\"AppAdded\"] = \"app:added\";\n EventType[\"AppRemoved\"] = \"app:removed\";\n EventType[\"RequestPush\"] = \"request_push\";\n EventType[\"UsersReadyToExecute\"] = \"users:ready_to_execute\";\n EventType[\"UserReadyToExecute\"] = \"user:ready_to_execute\";\n EventType[\"RequestOptimizeRoute\"] = \"request_optimize_route\";\n EventType[\"RequestOptimizeDriverRoute\"] = \"request_optimize_driver_route\";\n EventType[\"RequestRescheduleCancelledTask\"] = \"request_reschedule_cancelled_task\";\n EventType[\"SharedLocationCreated\"] = \"shared_location:created\";\n EventType[\"MerchantCreated\"] = \"merchant_created\";\n EventType[\"UserActivityChange\"] = \"user_activity_change\";\n EventType[\"FormCreated\"] = \"form_created\";\n EventType[\"NoteCreated\"] = \"note_created\";\n EventType[\"FloatingInventoryUpdated\"] = \"floating_inventory:updated\";\n EventType[\"WayPointUpdated\"] = \"way_point:updated\";\n EventType[\"WayPointStarted\"] = \"way_point:started\";\n EventType[\"WayPointArrived\"] = \"way_point:checkin\";\n EventType[\"WayPointLeft\"] = \"way_point:checkout\";\n EventType[\"MassWayPointLeft\"] = \"mass:way_point:checkout\";\n EventType[\"WayPointOnTheWayProcessingDone\"] = \"way_point:on_the_way:processing:done\";\n EventType[\"TaskWayPointsDoneProcessingDone\"] = \"task:way_points:done:processing:done\";\n EventType[\"TaskProcessingDone\"] = \"task:processing:done\";\n EventType[\"WayPointRecalculateDistance\"] = \"way_point:recalculate_distance\";\n EventType[\"RecalculateDistance\"] = \"recalculate_distance\";\n EventType[\"TaskReadyToExecute\"] = \"task:ready_to_execute\";\n EventType[\"TeamUpdate\"] = \"team:update\";\n EventType[\"MerchantConfigurationUpdated\"] = \"merchant:configuration_updated\";\n EventType[\"RouteOptimized\"] = \"route:optimized\";\n EventType[\"RouteOptimizationProgress\"] = \"route:optimization:progress\";\n EventType[\"RouteOptimizationCanceled\"] = \"route:optimization:canceled\";\n EventType[\"RouteOptimizationPolling\"] = \"route:optimization:polling\";\n EventType[\"RouteOptimizationDone\"] = \"route:optimization:done\";\n EventType[\"RouteOptimizationApplied\"] = \"route:optimization:applied\";\n EventType[\"PlanningDone\"] = \"planning:done\";\n EventType[\"InventoryScheduledArrivalCreated\"] = \"inventory:scheduled_arrival:created\";\n EventType[\"Scanned\"] = \"scanned\";\n EventType[\"InventoryScanned\"] = \"inventory_scanned\";\n EventType[\"AlertCreated\"] = \"alert_created\";\n EventType[\"RunStarted\"] = \"run:started\";\n EventType[\"RunEnded\"] = \"run:ended\";\n EventType[\"RunDeleted\"] = \"run:deleted\";\n EventType[\"RunTaskAdded\"] = \"run:task:added\";\n EventType[\"RunTaskRemoved\"] = \"run:task:removed\";\n EventType[\"RunUpdated\"] = \"run:updated\";\n EventType[\"RunCreated\"] = \"run:created\";\n EventType[\"RunSendUpdateWebhook\"] = \"run:send_update_webhook\";\n EventType[\"RunCalculateAggregations\"] = \"run:calculate_aggregations\";\n EventType[\"InvoiceCreated\"] = \"invoice:created\";\n EventType[\"RunDebriefed\"] = \"run:debriefed\";\n EventType[\"TasksMassRemove\"] = \"tasks:mass_remove\";\n EventType[\"ManifestDone\"] = \"manifest:done\";\n EventType[\"LocationHistoryReceived\"] = \"location_history_received\";\n EventType[\"QuoteReceived\"] = \"quote_received\";\n EventType[\"DeliveryBlockAssigned\"] = \"delivery_block:assigned\";\n EventType[\"DeliveryBlockUnassigned\"] = \"delivery_block:unassigned\";\n EventType[\"DeliveryBlockCreated\"] = \"delivery_block:created\";\n EventType[\"DeliveryBlockUpdated\"] = \"delivery_block:updated\";\n EventType[\"DeliveryBlockDeleted\"] = \"delivery_block:deleted\";\n EventType[\"DriverShiftScheduleUpdated\"] = \"driver_shift_schedule:updated\";\n EventType[\"SchedulerEvent\"] = \"scheduler_event\";\n EventType[\"MobileAnalyticsEvent\"] = \"mobile_analytics_event\";\n EventType[\"MenuUpdated\"] = \"menu:updated\";\n EventType[\"TaskInventoryUpdate\"] = \"task_inventory:update\";\n EventType[\"MobileActionEvent\"] = \"mobile_action_event\";\n EventType[\"WayPointAnswersCreated\"] = \"way_point:answers:created\";\n EventType[\"WayPointScheduledArrivalUpdated\"] = \"way_point:scheduled_arrival:updated\";\n EventType[\"MaskedPhoneCallFinished\"] = \"masked_phone:call_finished\";\n EventType[\"RapidSosRequested\"] = \"rapid_sos_requested\";\n EventType[\"RatingSubmitted\"] = \"rating:submitted\";\n EventType[\"UserActualBreakUpdated\"] = \"user:actual_break:updated\";\n EventType[\"TimeBasedEvent\"] = \"time_based_event\";\n EventType[\"OpenFleetIntegrationEvent\"] = \"open_fleet:integration_event\";\n EventType[\"WorkflowTimeBasedEvent\"] = \"workflow:time_based_event\";\n EventType[\"WorkflowManual\"] = \"workflow:manual\";\n EventType[\"VrpAutoDispatchFailed\"] = \"vrp_auto_dispatch_failed\";\n EventType[\"PackageCreated\"] = \"package:created\";\n EventType[\"PackageUpdated\"] = \"package:updated\";\n EventType[\"PackageDeleted\"] = \"package:deleted\";\n EventType[\"FleetDeliveryActionCreateFailed\"] = \"fleet_delivery_action:create:failed\";\n EventType[\"FleetAssigned\"] = \"fleet:assigned\";\n EventType[\"NoFleetFound\"] = \"fleet_router:no_fleet_found\";\n EventType[\"SmsSendFailed\"] = \"sms:send:failed\";\n EventType[\"TaskAcceptedByExternalFleet\"] = \"task:accepted_by_external_fleet\";\n EventType[\"GroupTaskCalculateAggregations\"] = \"group_task:calculate_aggregations\";\n EventType[\"DriverUnavailabilityChange\"] = \"user:unavailability_change\";\n EventType[\"TaskReassignReasonCreated\"] = \"task_reassign_reason:created\";\n EventType[\"WayPointCalculateServiceAreas\"] = \"way_point:calculate_service_areas\";\n EventType[\"DeliveryWindowCreated\"] = \"delivery_window:created\";\n EventType[\"DeliveryWindowUpdated\"] = \"delivery_window:updated\";\n EventType[\"DeliveryWindowDeleted\"] = \"delivery_window:deleted\";\n EventType[\"PlannedDeliveryWindowUpdated\"] = \"planned_delivery_window:updated\";\n EventType[\"ExclusionWindowCreated\"] = \"exclusion_window:created\";\n EventType[\"ExclusionWindowUpdated\"] = \"exclusion_window:updated\";\n EventType[\"UnassignedAvailabilityTasks\"] = \"unassigned_availability_tasks\";\n EventType[\"DeliveryProviderOfferingCreated\"] = \"delivery_provider_offering:created\";\n EventType[\"DeliveryProviderOfferingUpdated\"] = \"delivery_provider_offering:updated\";\n EventType[\"RecurringTemplateTimesReassigned\"] = \"recurring_template:times_reassigned\";\n EventType[\"CustomWorkflowWebhookTaskEvent\"] = \"custom_workflow:webhook:task\";\n EventType[\"CustomWorkflowWebhookTasksEvent\"] = \"custom_workflow:webhook:tasks\";\n})(EventType = exports.EventType || (exports.EventType = {}));\nvar AvailabilityCalculationOrigin;\n(function (AvailabilityCalculationOrigin) {\n AvailabilityCalculationOrigin[\"QUOTE_ORDERS\"] = \"QUOTE_ORDERS\";\n AvailabilityCalculationOrigin[\"AUTOMATION_PLATFORM\"] = \"AUTOMATION_PLATFORM\";\n})(AvailabilityCalculationOrigin = exports.AvailabilityCalculationOrigin || (exports.AvailabilityCalculationOrigin = {}));\n//# sourceMappingURL=event.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/event.js?");
|
|
4910
4936
|
|
|
4911
4937
|
/***/ }),
|
|
4912
4938
|
|
|
@@ -5231,7 +5257,7 @@ eval("\nexports.__esModule = true;\n//# sourceMappingURL=optimization_configurat
|
|
|
5231
5257
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5232
5258
|
|
|
5233
5259
|
"use strict";
|
|
5234
|
-
eval("\nexports.__esModule = true;\nexports.RouteItemType = exports.OptimizationResponseType = exports.OPTIMIZATION_TYPE = void 0;\nvar OPTIMIZATION_TYPE;\n(function (OPTIMIZATION_TYPE) {\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"ANONYMOUS\"] = 1] = \"ANONYMOUS\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"NAMED_VRP\"] = 2] = \"NAMED_VRP\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"NAMED_PDP\"] = 3] = \"NAMED_PDP\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"ROUTE_BASED\"] = 4] = \"ROUTE_BASED\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"CREW_BASED\"] = 5] = \"CREW_BASED\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"COMBINED\"] = 6] = \"COMBINED\";\n})(OPTIMIZATION_TYPE = exports.OPTIMIZATION_TYPE || (exports.OPTIMIZATION_TYPE = {}));\nvar OptimizationResponseType;\n(function (OptimizationResponseType) {\n OptimizationResponseType[\"RouteInfo\"] = \"route_info\";\n OptimizationResponseType[\"Task\"] = \"task\";\n OptimizationResponseType[\"ActualBreak\"] = \"actual_break\";\n OptimizationResponseType[\"PreassignedBreak\"] = \"preassigned_break\";\n OptimizationResponseType[\"Directions\"] = \"directions\";\n OptimizationResponseType[\"UnassignedTask\"] = \"unassigned_task\";\n})(OptimizationResponseType = exports.OptimizationResponseType || (exports.OptimizationResponseType = {}));\nvar RouteItemType;\n(function (RouteItemType) {\n RouteItemType[\"Break\"] = \"break\";\n})(RouteItemType = exports.RouteItemType || (exports.RouteItemType = {}));\n//# sourceMappingURL=optimization_type.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/optimization_type.js?");
|
|
5260
|
+
eval("\nexports.__esModule = true;\nexports.RouteItemType = exports.OptimizationOrigin = exports.OptimizationResponseType = exports.OPTIMIZATION_TYPE = void 0;\nvar OPTIMIZATION_TYPE;\n(function (OPTIMIZATION_TYPE) {\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"ANONYMOUS\"] = 1] = \"ANONYMOUS\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"NAMED_VRP\"] = 2] = \"NAMED_VRP\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"NAMED_PDP\"] = 3] = \"NAMED_PDP\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"ROUTE_BASED\"] = 4] = \"ROUTE_BASED\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"CREW_BASED\"] = 5] = \"CREW_BASED\";\n OPTIMIZATION_TYPE[OPTIMIZATION_TYPE[\"COMBINED\"] = 6] = \"COMBINED\";\n})(OPTIMIZATION_TYPE = exports.OPTIMIZATION_TYPE || (exports.OPTIMIZATION_TYPE = {}));\nvar OptimizationResponseType;\n(function (OptimizationResponseType) {\n OptimizationResponseType[\"RouteInfo\"] = \"route_info\";\n OptimizationResponseType[\"Task\"] = \"task\";\n OptimizationResponseType[\"ActualBreak\"] = \"actual_break\";\n OptimizationResponseType[\"PreassignedBreak\"] = \"preassigned_break\";\n OptimizationResponseType[\"Directions\"] = \"directions\";\n OptimizationResponseType[\"UnassignedTask\"] = \"unassigned_task\";\n})(OptimizationResponseType = exports.OptimizationResponseType || (exports.OptimizationResponseType = {}));\nvar OptimizationOrigin;\n(function (OptimizationOrigin) {\n OptimizationOrigin[\"ROUTE_OPTIMIZATION\"] = \"route_optimization\";\n OptimizationOrigin[\"ROUTE_OPTIMIZATION_QUOTES\"] = \"route_optimization_quotes\";\n OptimizationOrigin[\"SCHEDULED_ROUTE_OPTIMIZATION\"] = \"scheduled_route_optimization\";\n OptimizationOrigin[\"SINGLE_DRIVER_OPTIMIZATION\"] = \"single_driver_optimization\";\n OptimizationOrigin[\"VRP_AUTO_DISPATCH\"] = \"vrp_auto_dispatch\";\n OptimizationOrigin[\"VRP_AUTO_DISPATCH_QUOTES\"] = \"vrp_auto_dispatch_quotes\";\n})(OptimizationOrigin = exports.OptimizationOrigin || (exports.OptimizationOrigin = {}));\nvar RouteItemType;\n(function (RouteItemType) {\n RouteItemType[\"Break\"] = \"break\";\n})(RouteItemType = exports.RouteItemType || (exports.RouteItemType = {}));\n//# sourceMappingURL=optimization_type.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/optimization_type.js?");
|
|
5235
5261
|
|
|
5236
5262
|
/***/ }),
|
|
5237
5263
|
|
|
@@ -5387,7 +5413,7 @@ eval("\nexports.__esModule = true;\n//# sourceMappingURL=rating.js.map\n\n//# so
|
|
|
5387
5413
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5388
5414
|
|
|
5389
5415
|
"use strict";
|
|
5390
|
-
eval("\nexports.__esModule = true;\nexports.RealtimeEvent = void 0;\nvar RealtimeEvent;\n(function (RealtimeEvent) {\n RealtimeEvent[\"ActualBreakUpdated\"] = \"actual_break:updated\";\n RealtimeEvent[\"AlertMassRemoved\"] = \"alert:mass_removed\";\n RealtimeEvent[\"AlertNew\"] = \"alert:new\";\n RealtimeEvent[\"AlertRemoved\"] = \"alert:removed\";\n RealtimeEvent[\"AlertUpdateOwner\"] = \"alert:update_owner\";\n RealtimeEvent[\"AnnouncementNew\"] = \"announcement:new\";\n RealtimeEvent[\"ApplicationActionDone\"] = \"application:action:done\";\n RealtimeEvent[\"ApplicationActionProcessDone\"] = \"application:action:process_done\";\n RealtimeEvent[\"ConversationMessageNew\"] = \"conversation:message:new\";\n RealtimeEvent[\"ConversationNew\"] = \"conversation:new\";\n RealtimeEvent[\"ConversationRemoved\"] = \"conversation:removed\";\n RealtimeEvent[\"ConversationUpdate\"] = \"conversation:update\";\n RealtimeEvent[\"DispatcherAlertNew\"] = \"dispatcher_alert:new\";\n RealtimeEvent[\"EmployeeActivityChange\"] = \"employee:activity_change\";\n RealtimeEvent[\"EmployeeUpdate\"] = \"employee:update\";\n RealtimeEvent[\"EmployeeLocationUpdate\"] = \"employee:location_update\";\n RealtimeEvent[\"EtaRecalculateDone\"] = \"eta_recalculate:done\";\n RealtimeEvent[\"FloatingInventoryAdded\"] = \"floating_inventory:added\";\n RealtimeEvent[\"FloatingInventoryRemoved\"] = \"floating_inventory:removed\";\n RealtimeEvent[\"MerchantConfigurationUpdated\"] = \"merchant:configuration_updated\";\n RealtimeEvent[\"UserConfigurationUpdated\"] = \"user:configuration_updated\";\n RealtimeEvent[\"MerchantUpdated\"] = \"merchant:updated\";\n RealtimeEvent[\"NoteCreated\"] = \"note:created\";\n RealtimeEvent[\"OptimizationDone\"] = \"optimization:done\";\n RealtimeEvent[\"OptimizationProgress\"] = \"optimization:progress\";\n RealtimeEvent[\"ReportExportProgress\"] = \"report_export_progress\";\n RealtimeEvent[\"RouteOptimizationFinished\"] = \"route_optimization:finished\";\n RealtimeEvent[\"RunCreated\"] = \"run:created\";\n RealtimeEvent[\"RunDeleted\"] = \"run:deleted\";\n RealtimeEvent[\"RunUpdated\"] = \"run:updated\";\n RealtimeEvent[\"ScanCreated\"] = \"scan:created\";\n RealtimeEvent[\"ShiftEnded\"] = \"shift:ended\";\n RealtimeEvent[\"SubscriptionUpdated\"] = \"subscription_updated\";\n RealtimeEvent[\"TaskBroadcasted\"] = \"task:broadcasted\";\n RealtimeEvent[\"TaskCancelled\"] = \"task:cancelled\";\n RealtimeEvent[\"TaskDeleted\"] = \"task:deleted\";\n RealtimeEvent[\"TaskDone\"] = \"task:done\";\n RealtimeEvent[\"TaskNew\"] = \"task:new\";\n RealtimeEvent[\"TaskRemoved\"] = \"task:removed\";\n RealtimeEvent[\"TaskUpdate\"] = \"task:update\";\n RealtimeEvent[\"TasksMassRemove\"] = \"tasks:mass_remove\";\n RealtimeEvent[\"TasksReadyToExecute\"] = \"tasks:ready_to_execute\";\n RealtimeEvent[\"TaskManagedAttributeUpdate\"] = \"task_managed_attribute:update\";\n RealtimeEvent[\"TaskManagedAttributeDelete\"] = \"task_managed_attribute:delete\";\n RealtimeEvent[\"TeamTaskAdded\"] = \"team:task_added\";\n RealtimeEvent[\"AskForLog\"] = \"ask_for_log\";\n RealtimeEvent[\"UserDeleted\"] = \"user:deleted\";\n RealtimeEvent[\"UserNew\"] = \"user:new\";\n RealtimeEvent[\"RequestRefresh\"] = \"request_refresh\";\n RealtimeEvent[\"VehicleAssigned\"] = \"vehicle:assigned\";\n RealtimeEvent[\"VehicleRemoved\"] = \"vehicle:removed\";\n RealtimeEvent[\"VehicleUpdate\"] = \"vehicle:update\";\n RealtimeEvent[\"VehicleDelete\"] = \"vehicle:delete\";\n RealtimeEvent[\"VrpAutoDispatchDone\"] = \"vrp_auto_dispatch:done\";\n RealtimeEvent[\"WayPointCheckin\"] = \"way_point:checkin\";\n RealtimeEvent[\"WayPointDeleted\"] = \"way_point:deleted\";\n RealtimeEvent[\"WayPointDone\"] = \"way_point:done\";\n RealtimeEvent[\"WayPointNew\"] = \"way_point:new\";\n RealtimeEvent[\"WayPointUpdated\"] = \"way_point:updated\";\n RealtimeEvent[\"WayPointViewed\"] = \"way_point:viewed\";\n RealtimeEvent[\"ZipCodesImportDone\"] = \"zip_codes_import:done\";\n})(RealtimeEvent = exports.RealtimeEvent || (exports.RealtimeEvent = {}));\n//# sourceMappingURL=realtime_event.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/realtime_event.js?");
|
|
5416
|
+
eval("\nexports.__esModule = true;\nexports.RealtimeEvent = void 0;\nvar RealtimeEvent;\n(function (RealtimeEvent) {\n RealtimeEvent[\"ActualBreakUpdated\"] = \"actual_break:updated\";\n RealtimeEvent[\"AlertMassRemoved\"] = \"alert:mass_removed\";\n RealtimeEvent[\"AlertNew\"] = \"alert:new\";\n RealtimeEvent[\"AlertRemoved\"] = \"alert:removed\";\n RealtimeEvent[\"AlertUpdateOwner\"] = \"alert:update_owner\";\n RealtimeEvent[\"AnnouncementNew\"] = \"announcement:new\";\n RealtimeEvent[\"ApplicationActionDone\"] = \"application:action:done\";\n RealtimeEvent[\"ApplicationActionProcessDone\"] = \"application:action:process_done\";\n RealtimeEvent[\"ConversationMessageNew\"] = \"conversation:message:new\";\n RealtimeEvent[\"ConversationNew\"] = \"conversation:new\";\n RealtimeEvent[\"ConversationRemoved\"] = \"conversation:removed\";\n RealtimeEvent[\"ConversationUpdate\"] = \"conversation:update\";\n RealtimeEvent[\"DispatcherAlertNew\"] = \"dispatcher_alert:new\";\n RealtimeEvent[\"EmployeeActivityChange\"] = \"employee:activity_change\";\n RealtimeEvent[\"EmployeeUpdate\"] = \"employee:update\";\n RealtimeEvent[\"EmployeeLocationUpdate\"] = \"employee:location_update\";\n RealtimeEvent[\"EtaRecalculateDone\"] = \"eta_recalculate:done\";\n RealtimeEvent[\"FloatingInventoryAdded\"] = \"floating_inventory:added\";\n RealtimeEvent[\"FloatingInventoryRemoved\"] = \"floating_inventory:removed\";\n RealtimeEvent[\"MerchantConfigurationUpdated\"] = \"merchant:configuration_updated\";\n RealtimeEvent[\"UserConfigurationUpdated\"] = \"user:configuration_updated\";\n RealtimeEvent[\"MerchantUpdated\"] = \"merchant:updated\";\n RealtimeEvent[\"NoteCreated\"] = \"note:created\";\n RealtimeEvent[\"OptimizationDone\"] = \"optimization:done\";\n RealtimeEvent[\"OptimizationProgress\"] = \"optimization:progress\";\n RealtimeEvent[\"ReportExportProgress\"] = \"report_export_progress\";\n RealtimeEvent[\"RouteOptimizationFinished\"] = \"route_optimization:finished\";\n RealtimeEvent[\"RunCreated\"] = \"run:created\";\n RealtimeEvent[\"RunDeleted\"] = \"run:deleted\";\n RealtimeEvent[\"RunUpdated\"] = \"run:updated\";\n RealtimeEvent[\"ScanCreated\"] = \"scan:created\";\n RealtimeEvent[\"ShiftEnded\"] = \"shift:ended\";\n RealtimeEvent[\"SubscriptionUpdated\"] = \"subscription_updated\";\n RealtimeEvent[\"TaskBroadcasted\"] = \"task:broadcasted\";\n RealtimeEvent[\"TaskCancelled\"] = \"task:cancelled\";\n RealtimeEvent[\"TaskDeleted\"] = \"task:deleted\";\n RealtimeEvent[\"TaskDone\"] = \"task:done\";\n RealtimeEvent[\"TaskNew\"] = \"task:new\";\n RealtimeEvent[\"TaskRemoved\"] = \"task:removed\";\n RealtimeEvent[\"TaskUpdate\"] = \"task:update\";\n RealtimeEvent[\"TasksMassRemove\"] = \"tasks:mass_remove\";\n RealtimeEvent[\"TasksReadyToExecute\"] = \"tasks:ready_to_execute\";\n RealtimeEvent[\"TaskManagedAttributeUpdate\"] = \"task_managed_attribute:update\";\n RealtimeEvent[\"TaskManagedAttributeDelete\"] = \"task_managed_attribute:delete\";\n RealtimeEvent[\"TeamTaskAdded\"] = \"team:task_added\";\n RealtimeEvent[\"AskForLog\"] = \"ask_for_log\";\n RealtimeEvent[\"UserDeleted\"] = \"user:deleted\";\n RealtimeEvent[\"UserNew\"] = \"user:new\";\n RealtimeEvent[\"RequestRefresh\"] = \"request_refresh\";\n RealtimeEvent[\"VehicleAssigned\"] = \"vehicle:assigned\";\n RealtimeEvent[\"VehicleRemoved\"] = \"vehicle:removed\";\n RealtimeEvent[\"VehicleUpdate\"] = \"vehicle:update\";\n RealtimeEvent[\"VehicleDelete\"] = \"vehicle:delete\";\n RealtimeEvent[\"VrpAutoDispatchDone\"] = \"vrp_auto_dispatch:done\";\n RealtimeEvent[\"WayPointCheckin\"] = \"way_point:checkin\";\n RealtimeEvent[\"WayPointDeleted\"] = \"way_point:deleted\";\n RealtimeEvent[\"WayPointDone\"] = \"way_point:done\";\n RealtimeEvent[\"WayPointNew\"] = \"way_point:new\";\n RealtimeEvent[\"WayPointUpdated\"] = \"way_point:updated\";\n RealtimeEvent[\"WayPointViewed\"] = \"way_point:viewed\";\n RealtimeEvent[\"ZipCodesImportDone\"] = \"zip_codes_import:done\";\n RealtimeEvent[\"AsyncOperationStatus\"] = \"async_operation_status\";\n})(RealtimeEvent = exports.RealtimeEvent || (exports.RealtimeEvent = {}));\n//# sourceMappingURL=realtime_event.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/realtime_event.js?");
|
|
5391
5417
|
|
|
5392
5418
|
/***/ }),
|
|
5393
5419
|
|
|
@@ -5508,6 +5534,19 @@ eval("\nexports.__esModule = true;\n//# sourceMappingURL=index.js.map\n\n//# sou
|
|
|
5508
5534
|
|
|
5509
5535
|
/***/ }),
|
|
5510
5536
|
|
|
5537
|
+
/***/ "./node_modules/@bringg/types/types/rpc.js":
|
|
5538
|
+
/*!*************************************************!*\
|
|
5539
|
+
!*** ./node_modules/@bringg/types/types/rpc.js ***!
|
|
5540
|
+
\*************************************************/
|
|
5541
|
+
/*! no static exports found */
|
|
5542
|
+
/*! all exports used */
|
|
5543
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
5544
|
+
|
|
5545
|
+
"use strict";
|
|
5546
|
+
eval("\nexports.__esModule = true;\n//# sourceMappingURL=rpc.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/rpc.js?");
|
|
5547
|
+
|
|
5548
|
+
/***/ }),
|
|
5549
|
+
|
|
5511
5550
|
/***/ "./node_modules/@bringg/types/types/run.js":
|
|
5512
5551
|
/*!*************************************************!*\
|
|
5513
5552
|
!*** ./node_modules/@bringg/types/types/run.js ***!
|
|
@@ -5621,7 +5660,7 @@ eval("\nexports.__esModule = true;\nexports.ServiceWindowType = void 0;\nvar Ser
|
|
|
5621
5660
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5622
5661
|
|
|
5623
5662
|
"use strict";
|
|
5624
|
-
eval("\nexports.__esModule = true;\nexports.SharedLocationDisplayType = exports.SharingMethod = exports.SharingType = void 0;\nvar SharingType;\n(function (SharingType) {\n SharingType[SharingType[\"Created\"] = 0] = \"Created\";\n SharingType[SharingType[\"Start\"] = 1] = \"Start\";\n SharingType[SharingType[\"CheckedIn\"] = 2] = \"CheckedIn\";\n SharingType[SharingType[\"CheckedOut\"] = 3] = \"CheckedOut\";\n SharingType[SharingType[\"Route\"] = 4] = \"Route\";\n SharingType[SharingType[\"Late\"] = 5] = \"Late\";\n SharingType[SharingType[\"Reschedule\"] = 6] = \"Reschedule\";\n SharingType[SharingType[\"ReadyForPickup\"] = 7] = \"ReadyForPickup\";\n SharingType[SharingType[\"ScheduleReady\"] = 8] = \"ScheduleReady\";\n SharingType[SharingType[\"Acknowledged\"] = 9] = \"Acknowledged\";\n SharingType[SharingType[\"Schedule\"] = 10] = \"Schedule\";\n SharingType[SharingType[\"OptIn\"] = 11] = \"OptIn\";\n SharingType[SharingType[\"EtaDelay\"] = 12] = \"EtaDelay\";\n SharingType[SharingType[\"CustomerPickup\"] = 13] = \"CustomerPickup\";\n SharingType[SharingType[\"OptInConfirmation\"] = 14] = \"OptInConfirmation\";\n SharingType[SharingType[\"CustomWorkflow\"] = 15] = \"CustomWorkflow\";\n SharingType[SharingType[\"NotificationByTemplateId\"] = 16] = \"NotificationByTemplateId\";\n})(SharingType = exports.SharingType || (exports.SharingType = {}));\nvar SharingMethod;\n(function (SharingMethod) {\n SharingMethod[SharingMethod[\"Phone\"] = 0] = \"Phone\";\n SharingMethod[SharingMethod[\"Email\"] = 1] = \"Email\";\n SharingMethod[SharingMethod[\"Websocket\"] = 2] = \"Websocket\";\n SharingMethod[SharingMethod[\"None\"] = 3] = \"None\";\n SharingMethod[SharingMethod[\"Other\"] = 4] = \"Other\";\n SharingMethod[SharingMethod[\"Api\"] = 5] = \"Api\";\n SharingMethod[SharingMethod[\"Push\"] = 6] = \"Push\";\n SharingMethod[SharingMethod[\"Webhook\"] = 7] = \"Webhook\";\n})(SharingMethod = exports.SharingMethod || (exports.SharingMethod = {}));\nvar SharedLocationDisplayType;\n(function (SharedLocationDisplayType) {\n SharedLocationDisplayType[SharedLocationDisplayType[\"Schedule\"] = 1] = \"Schedule\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"Pickup\"] = 2] = \"Pickup\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"ScheduleReady\"] = 3] = \"ScheduleReady\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"Tracking\"] = 4] = \"Tracking\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"None\"] = 5] = \"None\";\n})(SharedLocationDisplayType = exports.SharedLocationDisplayType || (exports.SharedLocationDisplayType = {}));\n//# sourceMappingURL=shared_location.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/shared_location.js?");
|
|
5663
|
+
eval("\nexports.__esModule = true;\nexports.SharedLocationDisplayType = exports.SharingMethod = exports.SHARING_TYPES_WITH_DYNAMIC_DISPLAY_TYPE = exports.SharingType = void 0;\nvar SharingType;\n(function (SharingType) {\n SharingType[SharingType[\"Created\"] = 0] = \"Created\";\n SharingType[SharingType[\"Start\"] = 1] = \"Start\";\n SharingType[SharingType[\"CheckedIn\"] = 2] = \"CheckedIn\";\n SharingType[SharingType[\"CheckedOut\"] = 3] = \"CheckedOut\";\n SharingType[SharingType[\"Route\"] = 4] = \"Route\";\n SharingType[SharingType[\"Late\"] = 5] = \"Late\";\n SharingType[SharingType[\"Reschedule\"] = 6] = \"Reschedule\";\n SharingType[SharingType[\"ReadyForPickup\"] = 7] = \"ReadyForPickup\";\n SharingType[SharingType[\"ScheduleReady\"] = 8] = \"ScheduleReady\";\n SharingType[SharingType[\"Acknowledged\"] = 9] = \"Acknowledged\";\n SharingType[SharingType[\"Schedule\"] = 10] = \"Schedule\";\n SharingType[SharingType[\"OptIn\"] = 11] = \"OptIn\";\n SharingType[SharingType[\"EtaDelay\"] = 12] = \"EtaDelay\";\n SharingType[SharingType[\"CustomerPickup\"] = 13] = \"CustomerPickup\";\n SharingType[SharingType[\"OptInConfirmation\"] = 14] = \"OptInConfirmation\";\n SharingType[SharingType[\"CustomWorkflow\"] = 15] = \"CustomWorkflow\";\n SharingType[SharingType[\"NotificationByTemplateId\"] = 16] = \"NotificationByTemplateId\";\n})(SharingType = exports.SharingType || (exports.SharingType = {}));\nexports.SHARING_TYPES_WITH_DYNAMIC_DISPLAY_TYPE = [\n SharingType.CustomWorkflow,\n SharingType.NotificationByTemplateId\n];\nvar SharingMethod;\n(function (SharingMethod) {\n SharingMethod[SharingMethod[\"Phone\"] = 0] = \"Phone\";\n SharingMethod[SharingMethod[\"Email\"] = 1] = \"Email\";\n SharingMethod[SharingMethod[\"Websocket\"] = 2] = \"Websocket\";\n SharingMethod[SharingMethod[\"None\"] = 3] = \"None\";\n SharingMethod[SharingMethod[\"Other\"] = 4] = \"Other\";\n SharingMethod[SharingMethod[\"Api\"] = 5] = \"Api\";\n SharingMethod[SharingMethod[\"Push\"] = 6] = \"Push\";\n SharingMethod[SharingMethod[\"Webhook\"] = 7] = \"Webhook\";\n})(SharingMethod = exports.SharingMethod || (exports.SharingMethod = {}));\nvar SharedLocationDisplayType;\n(function (SharedLocationDisplayType) {\n SharedLocationDisplayType[SharedLocationDisplayType[\"Schedule\"] = 1] = \"Schedule\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"Pickup\"] = 2] = \"Pickup\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"ScheduleReady\"] = 3] = \"ScheduleReady\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"Tracking\"] = 4] = \"Tracking\";\n SharedLocationDisplayType[SharedLocationDisplayType[\"None\"] = 5] = \"None\";\n})(SharedLocationDisplayType = exports.SharedLocationDisplayType || (exports.SharedLocationDisplayType = {}));\n//# sourceMappingURL=shared_location.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/shared_location.js?");
|
|
5625
5664
|
|
|
5626
5665
|
/***/ }),
|
|
5627
5666
|
|
|
@@ -5972,7 +6011,7 @@ eval("\nexports.__esModule = true;\n//# sourceMappingURL=template_merchants.js.m
|
|
|
5972
6011
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5973
6012
|
|
|
5974
6013
|
"use strict";
|
|
5975
|
-
eval("\nexports.__esModule = true;\nexports.TemplateContentType = exports.TemplateTypeEnum = void 0;\nvar TemplateTypeEnum;\n(function (TemplateTypeEnum) {\n TemplateTypeEnum[\"package_label\"] = \"package_label\";\n TemplateTypeEnum[\"workflow_email\"] = \"workflow_email\";\n})(TemplateTypeEnum = exports.TemplateTypeEnum || (exports.TemplateTypeEnum = {}));\nvar TemplateContentType;\n(function (TemplateContentType) {\n TemplateContentType[\"label/zpl\"] = \"zpl\";\n TemplateContentType[\"text/x-handlebars-template\"] = \"text/x-handlebars-template\";\n TemplateContentType[\"text/html\"] = \"text/html\";\n})(TemplateContentType = exports.TemplateContentType || (exports.TemplateContentType = {}));\n//# sourceMappingURL=templates.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/templates.js?");
|
|
6014
|
+
eval("\nexports.__esModule = true;\nexports.TemplateRpcActions = exports.TemplateContentType = exports.TemplateTypeEnum = void 0;\nvar TemplateTypeEnum;\n(function (TemplateTypeEnum) {\n TemplateTypeEnum[\"package_label\"] = \"package_label\";\n TemplateTypeEnum[\"workflow_email\"] = \"workflow_email\";\n})(TemplateTypeEnum = exports.TemplateTypeEnum || (exports.TemplateTypeEnum = {}));\nvar TemplateContentType;\n(function (TemplateContentType) {\n TemplateContentType[\"label/zpl\"] = \"zpl\";\n TemplateContentType[\"text/x-handlebars-template\"] = \"text/x-handlebars-template\";\n TemplateContentType[\"text/html\"] = \"text/html\";\n})(TemplateContentType = exports.TemplateContentType || (exports.TemplateContentType = {}));\nvar TemplateRpcActions;\n(function (TemplateRpcActions) {\n TemplateRpcActions[\"GENERATE_LABEL\"] = \"generate:package_label\";\n TemplateRpcActions[\"GET_TEMPLATE_DISPLAY_TYPE\"] = \"get:template_display_type\";\n})(TemplateRpcActions = exports.TemplateRpcActions || (exports.TemplateRpcActions = {}));\n//# sourceMappingURL=templates.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/templates.js?");
|
|
5976
6015
|
|
|
5977
6016
|
/***/ }),
|
|
5978
6017
|
|
|
@@ -6271,7 +6310,7 @@ eval("\nexports.__esModule = true;\nvar action_1 = __webpack_require__(/*! ../ac
|
|
|
6271
6310
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6272
6311
|
|
|
6273
6312
|
"use strict";
|
|
6274
|
-
eval("\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nexports.__esModule = true;\n__exportStar(__webpack_require__(/*! ./alert-action-types */ \"./node_modules/@bringg/types/types/workflow/alert-action-types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./alerts_configuration */ \"./node_modules/@bringg/types/types/workflow/alerts_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./calculate_availability_state_types */ \"./node_modules/@bringg/types/types/workflow/calculate_availability_state_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./cancel_task_types */ \"./node_modules/@bringg/types/types/workflow/cancel_task_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./email_shared_location */ \"./node_modules/@bringg/types/types/workflow/email_shared_location.js\"), exports);\n__exportStar(__webpack_require__(/*! ./generic-action-types */ \"./node_modules/@bringg/types/types/workflow/generic-action-types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./lean_copy_types */ \"./node_modules/@bringg/types/types/workflow/lean_copy_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./narrow_actionable_wp_types */ \"./node_modules/@bringg/types/types/workflow/narrow_actionable_wp_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./optimization_types */ \"./node_modules/@bringg/types/types/workflow/optimization_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./rule_types */ \"./node_modules/@bringg/types/types/workflow/rule_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./share_location_types */ \"./node_modules/@bringg/types/types/workflow/share_location_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./update_entity_types */ \"./node_modules/@bringg/types/types/workflow/update_entity_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./workflow-template-strings */ \"./node_modules/@bringg/types/types/workflow/workflow-template-strings.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/workflow/index.js?");
|
|
6313
|
+
eval("\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nexports.__esModule = true;\n__exportStar(__webpack_require__(/*! ./alert-action-types */ \"./node_modules/@bringg/types/types/workflow/alert-action-types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./alerts_configuration */ \"./node_modules/@bringg/types/types/workflow/alerts_configuration.js\"), exports);\n__exportStar(__webpack_require__(/*! ./calculate_availability_state_types */ \"./node_modules/@bringg/types/types/workflow/calculate_availability_state_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./cancel_task_types */ \"./node_modules/@bringg/types/types/workflow/cancel_task_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./email_shared_location */ \"./node_modules/@bringg/types/types/workflow/email_shared_location.js\"), exports);\n__exportStar(__webpack_require__(/*! ./generic-action-types */ \"./node_modules/@bringg/types/types/workflow/generic-action-types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./lean_copy_types */ \"./node_modules/@bringg/types/types/workflow/lean_copy_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./narrow_actionable_wp_types */ \"./node_modules/@bringg/types/types/workflow/narrow_actionable_wp_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./optimization_types */ \"./node_modules/@bringg/types/types/workflow/optimization_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./rule_types */ \"./node_modules/@bringg/types/types/workflow/rule_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./share_location_types */ \"./node_modules/@bringg/types/types/workflow/share_location_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./update_entity_types */ \"./node_modules/@bringg/types/types/workflow/update_entity_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./webhook_types */ \"./node_modules/@bringg/types/types/workflow/webhook_types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./workflow-template-strings */ \"./node_modules/@bringg/types/types/workflow/workflow-template-strings.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/workflow/index.js?");
|
|
6275
6314
|
|
|
6276
6315
|
/***/ }),
|
|
6277
6316
|
|
|
@@ -6353,6 +6392,19 @@ eval("\nexports.__esModule = true;\nexports.MathOperator = exports.ChangeType =
|
|
|
6353
6392
|
|
|
6354
6393
|
/***/ }),
|
|
6355
6394
|
|
|
6395
|
+
/***/ "./node_modules/@bringg/types/types/workflow/webhook_types.js":
|
|
6396
|
+
/*!********************************************************************!*\
|
|
6397
|
+
!*** ./node_modules/@bringg/types/types/workflow/webhook_types.js ***!
|
|
6398
|
+
\********************************************************************/
|
|
6399
|
+
/*! no static exports found */
|
|
6400
|
+
/*! all exports used */
|
|
6401
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
6402
|
+
|
|
6403
|
+
"use strict";
|
|
6404
|
+
eval("\nexports.__esModule = true;\nvar action_1 = __webpack_require__(/*! ../action */ \"./node_modules/@bringg/types/types/action.js\");\n//# sourceMappingURL=webhook_types.js.map\n\n//# sourceURL=webpack://BringgDashboardSDK/./node_modules/@bringg/types/types/workflow/webhook_types.js?");
|
|
6405
|
+
|
|
6406
|
+
/***/ }),
|
|
6407
|
+
|
|
6356
6408
|
/***/ "./node_modules/@bringg/types/types/workflow/workflow-template-strings.js":
|
|
6357
6409
|
/*!********************************************************************************!*\
|
|
6358
6410
|
!*** ./node_modules/@bringg/types/types/workflow/workflow-template-strings.js ***!
|