bruce-models 2.5.0 → 2.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bruce-models.es5.js +19 -38
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +19 -37
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/api/abstract-api.js +14 -35
- package/dist/lib/api/abstract-api.js.map +1 -1
- package/dist/lib/bruce-models.js +2 -0
- package/dist/lib/bruce-models.js.map +1 -1
- package/dist/lib/environment.js +2 -2
- package/dist/lib/environment.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -0
- package/package.json +3 -3
package/dist/bruce-models.es5.js
CHANGED
|
@@ -3117,45 +3117,24 @@ class CacheControl {
|
|
|
3117
3117
|
// Need to see if our api is generally good at setting content-type headers.
|
|
3118
3118
|
// Make it less specific to CSV.
|
|
3119
3119
|
function parseResult(data) {
|
|
3120
|
+
var _a, _b;
|
|
3120
3121
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3121
|
-
if (data.status
|
|
3122
|
-
let type = data.headers.get("Content-Type");
|
|
3123
|
-
if (type) {
|
|
3124
|
-
type = type.trim().toLowerCase();
|
|
3125
|
-
}
|
|
3126
|
-
let encoding = "";
|
|
3127
|
-
const charset = type ? type.split(";").find((x) => x.startsWith("charset=")) : "";
|
|
3128
|
-
if (charset && charset.includes("=")) {
|
|
3129
|
-
encoding = charset.split("=")[1];
|
|
3130
|
-
encoding = encoding.toLowerCase();
|
|
3131
|
-
}
|
|
3132
|
-
// Our API has a very specific utf-16 encoding.
|
|
3133
|
-
if (encoding == "utf-16") {
|
|
3134
|
-
encoding = Api.EEncoding.UTF16;
|
|
3135
|
-
}
|
|
3136
|
-
if (!encoding || encoding == "utf-8") {
|
|
3137
|
-
const text = yield data.text();
|
|
3138
|
-
if (!text || !text.trim()) {
|
|
3139
|
-
return null;
|
|
3140
|
-
}
|
|
3141
|
-
if (type && type.includes("text/csv")) {
|
|
3142
|
-
return text;
|
|
3143
|
-
}
|
|
3144
|
-
return JSON.parse(text);
|
|
3145
|
-
}
|
|
3146
|
-
else {
|
|
3147
|
-
const buffer = yield data.arrayBuffer();
|
|
3148
|
-
const text = new TextDecoder(encoding).decode(buffer);
|
|
3149
|
-
if (type && type.includes("text/csv")) {
|
|
3150
|
-
return text;
|
|
3151
|
-
}
|
|
3152
|
-
return JSON.parse(text);
|
|
3153
|
-
}
|
|
3154
|
-
}
|
|
3155
|
-
else {
|
|
3122
|
+
if (data.status !== 200) {
|
|
3156
3123
|
const error = yield data.json();
|
|
3157
3124
|
throw (error);
|
|
3158
3125
|
}
|
|
3126
|
+
let type = (_a = data.headers.get("Content-Type")) === null || _a === void 0 ? void 0 : _a.trim().toLowerCase();
|
|
3127
|
+
let encoding = (_b = type === null || type === void 0 ? void 0 : type.split(";").find((x) => x.startsWith("charset="))) === null || _b === void 0 ? void 0 : _b.split("=")[1].toLowerCase();
|
|
3128
|
+
if (encoding === "utf-16") {
|
|
3129
|
+
encoding = Api.EEncoding.UTF16;
|
|
3130
|
+
}
|
|
3131
|
+
const text = yield (encoding && encoding !== "utf-8"
|
|
3132
|
+
? new TextDecoder(encoding).decode(yield data.arrayBuffer())
|
|
3133
|
+
: data.text());
|
|
3134
|
+
if (!(text === null || text === void 0 ? void 0 : text.trim())) {
|
|
3135
|
+
return null;
|
|
3136
|
+
}
|
|
3137
|
+
return (type === null || type === void 0 ? void 0 : type.includes("text/csv")) ? text : JSON.parse(text);
|
|
3159
3138
|
});
|
|
3160
3139
|
}
|
|
3161
3140
|
/**
|
|
@@ -4544,7 +4523,7 @@ var ENVIRONMENT;
|
|
|
4544
4523
|
// Unused if IS_SELF_MANAGED is false.
|
|
4545
4524
|
ENVIRONMENT.PARAMS = {
|
|
4546
4525
|
accountId: "",
|
|
4547
|
-
env: Api.EEnv.
|
|
4526
|
+
env: Api.EEnv.UAT,
|
|
4548
4527
|
sessionId: ""
|
|
4549
4528
|
};
|
|
4550
4529
|
function Api$$1() {
|
|
@@ -4557,7 +4536,7 @@ var ENVIRONMENT;
|
|
|
4557
4536
|
if (!_getters) {
|
|
4558
4537
|
_getters = new ApiGetters({
|
|
4559
4538
|
accountId: ENVIRONMENT.PARAMS.accountId,
|
|
4560
|
-
env: ENVIRONMENT.PARAMS.env,
|
|
4539
|
+
env: ENVIRONMENT.PARAMS.env ? ENVIRONMENT.PARAMS.env : Api.EEnv.UAT,
|
|
4561
4540
|
sessionId: ENVIRONMENT.PARAMS.sessionId
|
|
4562
4541
|
});
|
|
4563
4542
|
}
|
|
@@ -11608,5 +11587,7 @@ var Plugin;
|
|
|
11608
11587
|
Plugin.GetLoadUrl = GetLoadUrl;
|
|
11609
11588
|
})(Plugin || (Plugin = {}));
|
|
11610
11589
|
|
|
11611
|
-
|
|
11590
|
+
const VERSION$1 = "2.5.2";
|
|
11591
|
+
|
|
11592
|
+
export { VERSION$1 as VERSION, AnnDocument, CustomForm, CustomFormContent, AbstractApi, Api, BruceApi, CamApi, IdmApi, GlobalApi, GuardianApi, ApiGetters, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, LRUCache, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityLodCategory, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityType, Entity, EntityGlobe, EntityFilterGetter, BatchedDataGetter, EntityCoords, EntityTypeVisualSettings, EntityAttribute, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, Account, AccountInvite, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportCad, ImportCsv, ImportJson, ImportKml, ImportedFile, Markup, Uploader, Plugin, ENVIRONMENT };
|
|
11612
11593
|
//# sourceMappingURL=bruce-models.es5.js.map
|