bruce-models 7.1.13 → 7.1.14
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/bruce-models.es5.js +62 -5
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +62 -5
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity-type-trigger.js +61 -4
- package/dist/lib/entity/entity-type-trigger.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -8439,7 +8439,7 @@ var EntityTypeTrigger;
|
|
|
8439
8439
|
}
|
|
8440
8440
|
const req = new Promise((res, rej) => __awaiter(this, void 0, void 0, function* () {
|
|
8441
8441
|
try {
|
|
8442
|
-
const data = yield api.GET(
|
|
8442
|
+
const data = yield requestWithFallback(getSingleEndpoints(entityTypeTriggerId), (url) => api.GET(url, Api.PrepReqParams(reqParams)));
|
|
8443
8443
|
res({
|
|
8444
8444
|
trigger: ParseResponse(data)
|
|
8445
8445
|
});
|
|
@@ -8470,7 +8470,7 @@ var EntityTypeTrigger;
|
|
|
8470
8470
|
if (!api) {
|
|
8471
8471
|
api = ENVIRONMENT.Api().GetBruceApi();
|
|
8472
8472
|
}
|
|
8473
|
-
yield api.DELETE(
|
|
8473
|
+
yield requestWithFallback(getSingleEndpoints(entityTypeTriggerId), (url) => api.DELETE(url, Api.PrepReqParams(reqParams)));
|
|
8474
8474
|
api.Cache.Remove(GetCacheKey(entityTypeTriggerId));
|
|
8475
8475
|
api.Cache.RemoveByStartsWith(GetListCacheKey());
|
|
8476
8476
|
});
|
|
@@ -8493,7 +8493,7 @@ var EntityTypeTrigger;
|
|
|
8493
8493
|
}
|
|
8494
8494
|
const req = new Promise((res, rej) => __awaiter(this, void 0, void 0, function* () {
|
|
8495
8495
|
try {
|
|
8496
|
-
const data = yield
|
|
8496
|
+
const data = yield requestWithFallback(getListEndpoints(entityTypeId), (url) => api.GET(url, Api.PrepReqParams(reqParams)));
|
|
8497
8497
|
res({
|
|
8498
8498
|
triggers: ParseListResponse(data)
|
|
8499
8499
|
});
|
|
@@ -8527,7 +8527,7 @@ var EntityTypeTrigger;
|
|
|
8527
8527
|
if (data.ID == null || data.ID === "") {
|
|
8528
8528
|
data.ID = ObjectUtils.UId();
|
|
8529
8529
|
}
|
|
8530
|
-
const res = yield
|
|
8530
|
+
const res = yield requestWithFallback(getSingleEndpoints(data.ID), (url) => api.POST(url, data, Api.PrepReqParams(reqParams)));
|
|
8531
8531
|
api.Cache.Remove(GetCacheKey(data.ID));
|
|
8532
8532
|
api.Cache.RemoveByStartsWith(GetListCacheKey());
|
|
8533
8533
|
return {
|
|
@@ -8598,6 +8598,63 @@ function parseObject$1(data) {
|
|
|
8598
8598
|
}
|
|
8599
8599
|
return data;
|
|
8600
8600
|
}
|
|
8601
|
+
function getSingleEndpoints(id) {
|
|
8602
|
+
return dedupe([
|
|
8603
|
+
`v1/entityTypeTrigger/${id}`,
|
|
8604
|
+
`v1/entityTypeTriggers/${id}`,
|
|
8605
|
+
`entityTypeTrigger/${id}`,
|
|
8606
|
+
`entityTypeTriggers/${id}`
|
|
8607
|
+
]);
|
|
8608
|
+
}
|
|
8609
|
+
function getListEndpoints(entityTypeId) {
|
|
8610
|
+
if (entityTypeId) {
|
|
8611
|
+
return dedupe([
|
|
8612
|
+
`v1/entityType/${entityTypeId}/entityTypeTriggers`,
|
|
8613
|
+
`v1/entityType/${entityTypeId}/triggers`,
|
|
8614
|
+
`entityType/${entityTypeId}/entityTypeTriggers`,
|
|
8615
|
+
`entityType/${entityTypeId}/triggers`
|
|
8616
|
+
]);
|
|
8617
|
+
}
|
|
8618
|
+
return dedupe([
|
|
8619
|
+
"v1/entityTypeTriggers",
|
|
8620
|
+
"entityTypeTriggers"
|
|
8621
|
+
]);
|
|
8622
|
+
}
|
|
8623
|
+
function dedupe(values) {
|
|
8624
|
+
return [...new Set(values)];
|
|
8625
|
+
}
|
|
8626
|
+
function requestWithFallback(urls, perform) {
|
|
8627
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8628
|
+
let lastErr;
|
|
8629
|
+
for (let i = 0; i < urls.length; i++) {
|
|
8630
|
+
const url = urls[i];
|
|
8631
|
+
try {
|
|
8632
|
+
return yield perform(url);
|
|
8633
|
+
}
|
|
8634
|
+
catch (e) {
|
|
8635
|
+
lastErr = e;
|
|
8636
|
+
const hasNext = i < urls.length - 1;
|
|
8637
|
+
if (!hasNext || !isUnknownEdgeError(e)) {
|
|
8638
|
+
throw e;
|
|
8639
|
+
}
|
|
8640
|
+
}
|
|
8641
|
+
}
|
|
8642
|
+
throw lastErr;
|
|
8643
|
+
});
|
|
8644
|
+
}
|
|
8645
|
+
function isUnknownEdgeError(error) {
|
|
8646
|
+
var _a, _b, _c, _d, _e;
|
|
8647
|
+
const status = (_b = (_a = error === null || error === void 0 ? void 0 : error.StatusCode) !== null && _a !== void 0 ? _a : error === null || error === void 0 ? void 0 : error.status) !== null && _b !== void 0 ? _b : error === null || error === void 0 ? void 0 : error.statusCode;
|
|
8648
|
+
if (status === 404) {
|
|
8649
|
+
return true;
|
|
8650
|
+
}
|
|
8651
|
+
const rawMessage = (_e = (_d = (_c = error === null || error === void 0 ? void 0 : error.Message) !== null && _c !== void 0 ? _c : error === null || error === void 0 ? void 0 : error.message) !== null && _d !== void 0 ? _d : error === null || error === void 0 ? void 0 : error.Result) !== null && _e !== void 0 ? _e : error;
|
|
8652
|
+
const message = typeof rawMessage === "string" ? rawMessage : JSON.stringify(rawMessage || {});
|
|
8653
|
+
return (message.toLowerCase().includes("specified edge is not found")
|
|
8654
|
+
|| message.toLowerCase().includes("doesn't support requested method")
|
|
8655
|
+
|| message.toLowerCase().includes("does not support requested method")
|
|
8656
|
+
|| message.toLowerCase().includes("not found"));
|
|
8657
|
+
}
|
|
8601
8658
|
|
|
8602
8659
|
var MathUtils;
|
|
8603
8660
|
(function (MathUtils) {
|
|
@@ -17429,7 +17486,7 @@ var ChangeSet;
|
|
|
17429
17486
|
})(ChangeSet || (ChangeSet = {}));
|
|
17430
17487
|
|
|
17431
17488
|
// This is updated with the package.json version on build.
|
|
17432
|
-
const VERSION = "7.1.
|
|
17489
|
+
const VERSION = "7.1.14";
|
|
17433
17490
|
|
|
17434
17491
|
export { VERSION, Assembly, AnnDocument, CustomForm, AbstractApi, Api, BruceApi, GlobalApi, GuardianApi, ApiGetters, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, LRUCache, GeoJson, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityLodCategory, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityTypeTrigger, EntityType, Entity, EntityCoords, EntityAttribute, EntityHistoricData, EntityTableView, Comment, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, ProjectViewBookmarkGroup, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, UserMfaMethod, Account, AccountInvite, AccountFeatures, AccountLimits, AccountTemplate, AccountType, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, DataLabGroup, ImportAssembly, ImportCad, ImportCsv, ImportJson, ImportGeoJson, ImportKml, ImportedFile, ExportBrz, ExportUsd, Markup, Uploader, Plugin, ENVIRONMENT, DataSource, Scenario, Tracking, NavigatorChatClient, NavigatorMcpWebSocketClient, ChangeSet };
|
|
17435
17492
|
//# sourceMappingURL=bruce-models.es5.js.map
|