@startinblox/core 2.0.6-beta.7 → 2.0.6-beta.9
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/{custom-getter-DFIdqwHu.js → custom-getter-4u-Xg-ue.js} +2 -2
- package/dist/{helpers-vZrb1UDN.js → helpers-DtCY-jxq.js} +33 -33
- package/dist/helpers.js +1 -1
- package/dist/index.js +23305 -15068
- package/dist/{store-pxHgUL4R.js → store-DsK-vxfo.js} +597 -262
- package/dist/store.js +1 -1
- package/package.json +2 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
2
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
3
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
|
-
import { q as mergeContexts, o as getRawContext, n as normalizeContext } from "./helpers-
|
|
5
|
-
import { S as StoreService } from "./store-
|
|
4
|
+
import { q as mergeContexts, o as getRawContext, n as normalizeContext } from "./helpers-DtCY-jxq.js";
|
|
5
|
+
import { S as StoreService } from "./store-DsK-vxfo.js";
|
|
6
6
|
const store = StoreService.getInstance();
|
|
7
7
|
class CustomGetter {
|
|
8
8
|
// search attributes to give to server
|
|
@@ -176,21 +176,21 @@ var hasRequiredRelativeToAbsoluteIri;
|
|
|
176
176
|
function requireRelativeToAbsoluteIri() {
|
|
177
177
|
if (hasRequiredRelativeToAbsoluteIri) return relativeToAbsoluteIri;
|
|
178
178
|
hasRequiredRelativeToAbsoluteIri = 1;
|
|
179
|
-
(function(exports) {
|
|
180
|
-
var __createBinding = relativeToAbsoluteIri && relativeToAbsoluteIri.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
179
|
+
(function(exports$1) {
|
|
180
|
+
var __createBinding = relativeToAbsoluteIri && relativeToAbsoluteIri.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
181
181
|
if (k2 === void 0) k2 = k;
|
|
182
182
|
Object.defineProperty(o, k2, { enumerable: true, get: function() {
|
|
183
183
|
return m[k];
|
|
184
184
|
} });
|
|
185
|
-
} : function(o, m, k, k2) {
|
|
185
|
+
}) : (function(o, m, k, k2) {
|
|
186
186
|
if (k2 === void 0) k2 = k;
|
|
187
187
|
o[k2] = m[k];
|
|
188
|
-
});
|
|
189
|
-
var __exportStar = relativeToAbsoluteIri && relativeToAbsoluteIri.__exportStar || function(m,
|
|
190
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(
|
|
188
|
+
}));
|
|
189
|
+
var __exportStar = relativeToAbsoluteIri && relativeToAbsoluteIri.__exportStar || function(m, exports$12) {
|
|
190
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$12, p)) __createBinding(exports$12, m, p);
|
|
191
191
|
};
|
|
192
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
193
|
-
__exportStar(requireResolve(), exports);
|
|
192
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
193
|
+
__exportStar(requireResolve(), exports$1);
|
|
194
194
|
})(relativeToAbsoluteIri);
|
|
195
195
|
return relativeToAbsoluteIri;
|
|
196
196
|
}
|
|
@@ -199,9 +199,9 @@ var hasRequiredErrorCoded;
|
|
|
199
199
|
function requireErrorCoded() {
|
|
200
200
|
if (hasRequiredErrorCoded) return ErrorCoded;
|
|
201
201
|
hasRequiredErrorCoded = 1;
|
|
202
|
-
(function(exports) {
|
|
203
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
204
|
-
exports.ERROR_CODES = exports.ErrorCoded = void 0;
|
|
202
|
+
(function(exports$1) {
|
|
203
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
204
|
+
exports$1.ERROR_CODES = exports$1.ErrorCoded = void 0;
|
|
205
205
|
class ErrorCoded2 extends Error {
|
|
206
206
|
/* istanbul ignore next */
|
|
207
207
|
constructor(message, code) {
|
|
@@ -209,7 +209,7 @@ function requireErrorCoded() {
|
|
|
209
209
|
this.code = code;
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
|
-
exports.ErrorCoded = ErrorCoded2;
|
|
212
|
+
exports$1.ErrorCoded = ErrorCoded2;
|
|
213
213
|
(function(ERROR_CODES) {
|
|
214
214
|
ERROR_CODES["COLLIDING_KEYWORDS"] = "colliding keywords";
|
|
215
215
|
ERROR_CODES["CONFLICTING_INDEXES"] = "conflicting indexes";
|
|
@@ -263,7 +263,7 @@ function requireErrorCoded() {
|
|
|
263
263
|
ERROR_CODES["INVALID_STREAMING_KEY_ORDER"] = "invalid streaming key order";
|
|
264
264
|
ERROR_CODES["INVALID_EMBEDDED_NODE"] = "invalid embedded node";
|
|
265
265
|
ERROR_CODES["INVALID_ANNOTATION"] = "invalid annotation";
|
|
266
|
-
})(exports.ERROR_CODES || (exports.ERROR_CODES = {}));
|
|
266
|
+
})(exports$1.ERROR_CODES || (exports$1.ERROR_CODES = {}));
|
|
267
267
|
})(ErrorCoded);
|
|
268
268
|
return ErrorCoded;
|
|
269
269
|
}
|
|
@@ -854,9 +854,9 @@ var hasRequiredJsonLdContextNormalized;
|
|
|
854
854
|
function requireJsonLdContextNormalized() {
|
|
855
855
|
if (hasRequiredJsonLdContextNormalized) return JsonLdContextNormalized;
|
|
856
856
|
hasRequiredJsonLdContextNormalized = 1;
|
|
857
|
-
(function(exports) {
|
|
858
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
859
|
-
exports.defaultExpandOptions = exports.JsonLdContextNormalized = void 0;
|
|
857
|
+
(function(exports$1) {
|
|
858
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
859
|
+
exports$1.defaultExpandOptions = exports$1.JsonLdContextNormalized = void 0;
|
|
860
860
|
const relative_to_absolute_iri_1 = requireRelativeToAbsoluteIri();
|
|
861
861
|
const ErrorCoded_1 = /* @__PURE__ */ requireErrorCoded();
|
|
862
862
|
const Util_1 = /* @__PURE__ */ requireUtil();
|
|
@@ -891,7 +891,7 @@ function requireJsonLdContextNormalized() {
|
|
|
891
891
|
* @return {string} The expanded term, the term as-is, or null if it was explicitly disabled in the context.
|
|
892
892
|
* @throws If the term is aliased to an invalid value (not a string, IRI or keyword).
|
|
893
893
|
*/
|
|
894
|
-
expandTerm(term, expandVocab, options = exports.defaultExpandOptions) {
|
|
894
|
+
expandTerm(term, expandVocab, options = exports$1.defaultExpandOptions) {
|
|
895
895
|
const contextValue = this.contextRaw[term];
|
|
896
896
|
if (contextValue === null || contextValue && contextValue["@id"] === null) {
|
|
897
897
|
return null;
|
|
@@ -989,8 +989,8 @@ function requireJsonLdContextNormalized() {
|
|
|
989
989
|
return iri;
|
|
990
990
|
}
|
|
991
991
|
}
|
|
992
|
-
exports.JsonLdContextNormalized = JsonLdContextNormalized2;
|
|
993
|
-
exports.defaultExpandOptions = {
|
|
992
|
+
exports$1.JsonLdContextNormalized = JsonLdContextNormalized2;
|
|
993
|
+
exports$1.defaultExpandOptions = {
|
|
994
994
|
allowPrefixForcing: true,
|
|
995
995
|
allowPrefixNonGenDelims: false,
|
|
996
996
|
allowVocabRelativeToBase: true
|
|
@@ -1681,8 +1681,8 @@ var hasRequiredJsonldContextParser;
|
|
|
1681
1681
|
function requireJsonldContextParser() {
|
|
1682
1682
|
if (hasRequiredJsonldContextParser) return jsonldContextParser;
|
|
1683
1683
|
hasRequiredJsonldContextParser = 1;
|
|
1684
|
-
(function(exports) {
|
|
1685
|
-
var __createBinding = jsonldContextParser && jsonldContextParser.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
1684
|
+
(function(exports$1) {
|
|
1685
|
+
var __createBinding = jsonldContextParser && jsonldContextParser.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
1686
1686
|
if (k2 === void 0) k2 = k;
|
|
1687
1687
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
1688
1688
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
@@ -1691,21 +1691,21 @@ function requireJsonldContextParser() {
|
|
|
1691
1691
|
} };
|
|
1692
1692
|
}
|
|
1693
1693
|
Object.defineProperty(o, k2, desc);
|
|
1694
|
-
} : function(o, m, k, k2) {
|
|
1694
|
+
}) : (function(o, m, k, k2) {
|
|
1695
1695
|
if (k2 === void 0) k2 = k;
|
|
1696
1696
|
o[k2] = m[k];
|
|
1697
|
-
});
|
|
1698
|
-
var __exportStar = jsonldContextParser && jsonldContextParser.__exportStar || function(m,
|
|
1699
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(
|
|
1697
|
+
}));
|
|
1698
|
+
var __exportStar = jsonldContextParser && jsonldContextParser.__exportStar || function(m, exports$12) {
|
|
1699
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$12, p)) __createBinding(exports$12, m, p);
|
|
1700
1700
|
};
|
|
1701
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1702
|
-
__exportStar(/* @__PURE__ */ requireContextParser(), exports);
|
|
1703
|
-
__exportStar(/* @__PURE__ */ requireErrorCoded(), exports);
|
|
1704
|
-
__exportStar(/* @__PURE__ */ requireFetchDocumentLoader(), exports);
|
|
1705
|
-
__exportStar(/* @__PURE__ */ requireIDocumentLoader(), exports);
|
|
1706
|
-
__exportStar(/* @__PURE__ */ requireJsonLdContext(), exports);
|
|
1707
|
-
__exportStar(/* @__PURE__ */ requireJsonLdContextNormalized(), exports);
|
|
1708
|
-
__exportStar(/* @__PURE__ */ requireUtil(), exports);
|
|
1701
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
1702
|
+
__exportStar(/* @__PURE__ */ requireContextParser(), exports$1);
|
|
1703
|
+
__exportStar(/* @__PURE__ */ requireErrorCoded(), exports$1);
|
|
1704
|
+
__exportStar(/* @__PURE__ */ requireFetchDocumentLoader(), exports$1);
|
|
1705
|
+
__exportStar(/* @__PURE__ */ requireIDocumentLoader(), exports$1);
|
|
1706
|
+
__exportStar(/* @__PURE__ */ requireJsonLdContext(), exports$1);
|
|
1707
|
+
__exportStar(/* @__PURE__ */ requireJsonLdContextNormalized(), exports$1);
|
|
1708
|
+
__exportStar(/* @__PURE__ */ requireUtil(), exports$1);
|
|
1709
1709
|
})(jsonldContextParser);
|
|
1710
1710
|
return jsonldContextParser;
|
|
1711
1711
|
}
|
package/dist/helpers.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A, a, C, h, A as A2, d, c, B, g, e, f, j, o, b, i, y, l, z, q, n, p, s, x, t, u } from "./helpers-
|
|
1
|
+
import { A, a, C, h, A as A2, d, c, B, g, e, f, j, o, b, i, y, l, z, q, n, p, s, x, t, u } from "./helpers-DtCY-jxq.js";
|
|
2
2
|
export {
|
|
3
3
|
A as AsyncIterableBuilder,
|
|
4
4
|
a as asyncQuerySelector,
|