@evergis/api 5.0.30 → 5.0.31
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/api.esm.js +2 -1
- package/dist/api.esm.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
- package/dist/customDataContracts.d.ts +0 -15
package/dist/api.esm.js
CHANGED
|
@@ -3851,6 +3851,7 @@ function isTileLayerService(layer) {
|
|
|
3851
3851
|
}
|
|
3852
3852
|
|
|
3853
3853
|
const RESOURCE_TEMP_WORKSPACE = "temp";
|
|
3854
|
+
const generateFirstLatinLetter = customAlphabet("abcdefghijklmnopqrstuvwxyz", 1);
|
|
3854
3855
|
var ResourceSeparator;
|
|
3855
3856
|
(function (ResourceSeparator) {
|
|
3856
3857
|
ResourceSeparator["Server"] = ".";
|
|
@@ -3862,7 +3863,7 @@ class Names {
|
|
|
3862
3863
|
}
|
|
3863
3864
|
/** Generates unique identifier */
|
|
3864
3865
|
createId() {
|
|
3865
|
-
return generateId();
|
|
3866
|
+
return generateFirstLatinLetter() + generateId().slice(1);
|
|
3866
3867
|
}
|
|
3867
3868
|
/** Generates new resource name using for client\server interactions */
|
|
3868
3869
|
createResourceName(params = {}) {
|