@pod-os/core 0.17.1-rc.eaea08b.0 → 0.18.0
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/{chunk-VGZLO2LW.js → chunk-3LTXZPFZ.js} +14 -14
- package/dist/{dist-UG2BEWCW.js → dist-4BQLT63G.js} +1 -1
- package/dist/index.js +201 -97
- package/lib/index.js +575 -471
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
serialize,
|
|
14
14
|
st,
|
|
15
15
|
termValue
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-3LTXZPFZ.js";
|
|
17
17
|
import {
|
|
18
18
|
__commonJS,
|
|
19
19
|
__export,
|
|
@@ -39,13 +39,13 @@ var require_lunr = __commonJS({
|
|
|
39
39
|
};
|
|
40
40
|
lunr2.version = "2.3.9";
|
|
41
41
|
lunr2.utils = {};
|
|
42
|
-
lunr2.utils.warn = /* @__PURE__ */ function(global3) {
|
|
42
|
+
lunr2.utils.warn = /* @__PURE__ */ (function(global3) {
|
|
43
43
|
return function(message4) {
|
|
44
44
|
if (global3.console && console.warn) {
|
|
45
45
|
console.warn(message4);
|
|
46
46
|
}
|
|
47
47
|
};
|
|
48
|
-
}(this);
|
|
48
|
+
})(this);
|
|
49
49
|
lunr2.utils.asString = function(obj) {
|
|
50
50
|
if (obj === void 0 || obj === null) {
|
|
51
51
|
return "";
|
|
@@ -400,7 +400,7 @@ var require_lunr = __commonJS({
|
|
|
400
400
|
lunr2.Vector.prototype.toJSON = function() {
|
|
401
401
|
return this.elements;
|
|
402
402
|
};
|
|
403
|
-
lunr2.stemmer = function() {
|
|
403
|
+
lunr2.stemmer = (function() {
|
|
404
404
|
var step2list = {
|
|
405
405
|
"ational": "ate",
|
|
406
406
|
"tional": "tion",
|
|
@@ -564,7 +564,7 @@ var require_lunr = __commonJS({
|
|
|
564
564
|
return function(token2) {
|
|
565
565
|
return token2.update(porterStemmer);
|
|
566
566
|
};
|
|
567
|
-
}();
|
|
567
|
+
})();
|
|
568
568
|
lunr2.Pipeline.registerFunction(lunr2.stemmer, "stemmer");
|
|
569
569
|
lunr2.generateStopWordFilter = function(stopWords) {
|
|
570
570
|
var words = stopWords.reduce(function(memo, stopWord) {
|
|
@@ -822,10 +822,10 @@ var require_lunr = __commonJS({
|
|
|
822
822
|
node3.edges[char] = node3;
|
|
823
823
|
node3.final = final2;
|
|
824
824
|
} else {
|
|
825
|
-
var
|
|
826
|
-
|
|
827
|
-
node3.edges[char] =
|
|
828
|
-
node3 =
|
|
825
|
+
var next4 = new lunr2.TokenSet();
|
|
826
|
+
next4.final = final2;
|
|
827
|
+
node3.edges[char] = next4;
|
|
828
|
+
node3 = next4;
|
|
829
829
|
}
|
|
830
830
|
}
|
|
831
831
|
return root;
|
|
@@ -878,18 +878,18 @@ var require_lunr = __commonJS({
|
|
|
878
878
|
for (var n2 = 0; n2 < nLen; n2++) {
|
|
879
879
|
var nEdge = nEdges[n2];
|
|
880
880
|
if (nEdge == qEdge || qEdge == "*") {
|
|
881
|
-
var node3 = frame.node.edges[nEdge], qNode = frame.qNode.edges[qEdge], final2 = node3.final && qNode.final,
|
|
881
|
+
var node3 = frame.node.edges[nEdge], qNode = frame.qNode.edges[qEdge], final2 = node3.final && qNode.final, next4 = void 0;
|
|
882
882
|
if (nEdge in frame.output.edges) {
|
|
883
|
-
|
|
884
|
-
|
|
883
|
+
next4 = frame.output.edges[nEdge];
|
|
884
|
+
next4.final = next4.final || final2;
|
|
885
885
|
} else {
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
frame.output.edges[nEdge] =
|
|
886
|
+
next4 = new lunr2.TokenSet();
|
|
887
|
+
next4.final = final2;
|
|
888
|
+
frame.output.edges[nEdge] = next4;
|
|
889
889
|
}
|
|
890
890
|
stack.push({
|
|
891
891
|
qNode,
|
|
892
|
-
output:
|
|
892
|
+
output: next4,
|
|
893
893
|
node: node3
|
|
894
894
|
});
|
|
895
895
|
}
|
|
@@ -1895,7 +1895,7 @@ function arrRemove(arr, item4) {
|
|
|
1895
1895
|
}
|
|
1896
1896
|
|
|
1897
1897
|
// ../node_modules/rxjs/dist/esm5/internal/Subscription.js
|
|
1898
|
-
var Subscription = function() {
|
|
1898
|
+
var Subscription = (function() {
|
|
1899
1899
|
function Subscription3(initialTeardown) {
|
|
1900
1900
|
this.initialTeardown = initialTeardown;
|
|
1901
1901
|
this.closed = false;
|
|
@@ -2008,13 +2008,13 @@ var Subscription = function() {
|
|
|
2008
2008
|
teardown2._removeParent(this);
|
|
2009
2009
|
}
|
|
2010
2010
|
};
|
|
2011
|
-
Subscription3.EMPTY = function() {
|
|
2011
|
+
Subscription3.EMPTY = (function() {
|
|
2012
2012
|
var empty = new Subscription3();
|
|
2013
2013
|
empty.closed = true;
|
|
2014
2014
|
return empty;
|
|
2015
|
-
}();
|
|
2015
|
+
})();
|
|
2016
2016
|
return Subscription3;
|
|
2017
|
-
}();
|
|
2017
|
+
})();
|
|
2018
2018
|
var EMPTY_SUBSCRIPTION = Subscription.EMPTY;
|
|
2019
2019
|
function isSubscription(value7) {
|
|
2020
2020
|
return value7 instanceof Subscription || value7 && "closed" in value7 && isFunction(value7.remove) && isFunction(value7.add) && isFunction(value7.unsubscribe);
|
|
@@ -2073,9 +2073,9 @@ function noop() {
|
|
|
2073
2073
|
}
|
|
2074
2074
|
|
|
2075
2075
|
// ../node_modules/rxjs/dist/esm5/internal/NotificationFactories.js
|
|
2076
|
-
var COMPLETE_NOTIFICATION = function() {
|
|
2076
|
+
var COMPLETE_NOTIFICATION = (function() {
|
|
2077
2077
|
return createNotification("C", void 0, void 0);
|
|
2078
|
-
}();
|
|
2078
|
+
})();
|
|
2079
2079
|
function errorNotification(error4) {
|
|
2080
2080
|
return createNotification("E", void 0, error4);
|
|
2081
2081
|
}
|
|
@@ -2118,7 +2118,7 @@ function captureError(err) {
|
|
|
2118
2118
|
}
|
|
2119
2119
|
|
|
2120
2120
|
// ../node_modules/rxjs/dist/esm5/internal/Subscriber.js
|
|
2121
|
-
var Subscriber = function(_super) {
|
|
2121
|
+
var Subscriber = (function(_super) {
|
|
2122
2122
|
__extends(Subscriber2, _super);
|
|
2123
2123
|
function Subscriber2(destination2) {
|
|
2124
2124
|
var _this = _super.call(this) || this;
|
|
@@ -2133,8 +2133,8 @@ var Subscriber = function(_super) {
|
|
|
2133
2133
|
}
|
|
2134
2134
|
return _this;
|
|
2135
2135
|
}
|
|
2136
|
-
Subscriber2.create = function(
|
|
2137
|
-
return new SafeSubscriber(
|
|
2136
|
+
Subscriber2.create = function(next4, error4, complete2) {
|
|
2137
|
+
return new SafeSubscriber(next4, error4, complete2);
|
|
2138
2138
|
};
|
|
2139
2139
|
Subscriber2.prototype.next = function(value7) {
|
|
2140
2140
|
if (this.isStopped) {
|
|
@@ -2184,12 +2184,12 @@ var Subscriber = function(_super) {
|
|
|
2184
2184
|
}
|
|
2185
2185
|
};
|
|
2186
2186
|
return Subscriber2;
|
|
2187
|
-
}(Subscription);
|
|
2187
|
+
})(Subscription);
|
|
2188
2188
|
var _bind = Function.prototype.bind;
|
|
2189
2189
|
function bind(fn2, thisArg) {
|
|
2190
2190
|
return _bind.call(fn2, thisArg);
|
|
2191
2191
|
}
|
|
2192
|
-
var ConsumerObserver = function() {
|
|
2192
|
+
var ConsumerObserver = (function() {
|
|
2193
2193
|
function ConsumerObserver2(partialObserver) {
|
|
2194
2194
|
this.partialObserver = partialObserver;
|
|
2195
2195
|
}
|
|
@@ -2226,8 +2226,8 @@ var ConsumerObserver = function() {
|
|
|
2226
2226
|
}
|
|
2227
2227
|
};
|
|
2228
2228
|
return ConsumerObserver2;
|
|
2229
|
-
}();
|
|
2230
|
-
var SafeSubscriber = function(_super) {
|
|
2229
|
+
})();
|
|
2230
|
+
var SafeSubscriber = (function(_super) {
|
|
2231
2231
|
__extends(SafeSubscriber2, _super);
|
|
2232
2232
|
function SafeSubscriber2(observerOrNext, error4, complete2) {
|
|
2233
2233
|
var _this = _super.call(this) || this;
|
|
@@ -2258,7 +2258,7 @@ var SafeSubscriber = function(_super) {
|
|
|
2258
2258
|
return _this;
|
|
2259
2259
|
}
|
|
2260
2260
|
return SafeSubscriber2;
|
|
2261
|
-
}(Subscriber);
|
|
2261
|
+
})(Subscriber);
|
|
2262
2262
|
function handleUnhandledError(error4) {
|
|
2263
2263
|
if (config.useDeprecatedSynchronousErrorHandling) {
|
|
2264
2264
|
captureError(error4);
|
|
@@ -2283,9 +2283,9 @@ var EMPTY_OBSERVER = {
|
|
|
2283
2283
|
};
|
|
2284
2284
|
|
|
2285
2285
|
// ../node_modules/rxjs/dist/esm5/internal/symbol/observable.js
|
|
2286
|
-
var observable = function() {
|
|
2286
|
+
var observable = (function() {
|
|
2287
2287
|
return typeof Symbol === "function" && Symbol.observable || "@@observable";
|
|
2288
|
-
}();
|
|
2288
|
+
})();
|
|
2289
2289
|
|
|
2290
2290
|
// ../node_modules/rxjs/dist/esm5/internal/util/identity.js
|
|
2291
2291
|
function identity(x) {
|
|
@@ -2301,14 +2301,14 @@ function pipeFromArray(fns) {
|
|
|
2301
2301
|
return fns[0];
|
|
2302
2302
|
}
|
|
2303
2303
|
return function piped(input2) {
|
|
2304
|
-
return fns.reduce(function(
|
|
2305
|
-
return fn2(
|
|
2304
|
+
return fns.reduce(function(prev2, fn2) {
|
|
2305
|
+
return fn2(prev2);
|
|
2306
2306
|
}, input2);
|
|
2307
2307
|
};
|
|
2308
2308
|
}
|
|
2309
2309
|
|
|
2310
2310
|
// ../node_modules/rxjs/dist/esm5/internal/Observable.js
|
|
2311
|
-
var Observable = function() {
|
|
2311
|
+
var Observable = (function() {
|
|
2312
2312
|
function Observable2(subscribe) {
|
|
2313
2313
|
if (subscribe) {
|
|
2314
2314
|
this._subscribe = subscribe;
|
|
@@ -2336,14 +2336,14 @@ var Observable = function() {
|
|
|
2336
2336
|
sink.error(err);
|
|
2337
2337
|
}
|
|
2338
2338
|
};
|
|
2339
|
-
Observable2.prototype.forEach = function(
|
|
2339
|
+
Observable2.prototype.forEach = function(next4, promiseCtor) {
|
|
2340
2340
|
var _this = this;
|
|
2341
2341
|
promiseCtor = getPromiseCtor(promiseCtor);
|
|
2342
2342
|
return new promiseCtor(function(resolve, reject) {
|
|
2343
2343
|
var subscriber3 = new SafeSubscriber({
|
|
2344
2344
|
next: function(value7) {
|
|
2345
2345
|
try {
|
|
2346
|
-
|
|
2346
|
+
next4(value7);
|
|
2347
2347
|
} catch (err) {
|
|
2348
2348
|
reject(err);
|
|
2349
2349
|
subscriber3.unsubscribe();
|
|
@@ -2387,7 +2387,7 @@ var Observable = function() {
|
|
|
2387
2387
|
return new Observable2(subscribe);
|
|
2388
2388
|
};
|
|
2389
2389
|
return Observable2;
|
|
2390
|
-
}();
|
|
2390
|
+
})();
|
|
2391
2391
|
function getPromiseCtor(promiseCtor) {
|
|
2392
2392
|
var _a;
|
|
2393
2393
|
return (_a = promiseCtor !== null && promiseCtor !== void 0 ? promiseCtor : config.Promise) !== null && _a !== void 0 ? _a : Promise;
|
|
@@ -2422,7 +2422,7 @@ function operate(init) {
|
|
|
2422
2422
|
function createOperatorSubscriber(destination2, onNext, onComplete, onError, onFinalize) {
|
|
2423
2423
|
return new OperatorSubscriber(destination2, onNext, onComplete, onError, onFinalize);
|
|
2424
2424
|
}
|
|
2425
|
-
var OperatorSubscriber = function(_super) {
|
|
2425
|
+
var OperatorSubscriber = (function(_super) {
|
|
2426
2426
|
__extends(OperatorSubscriber2, _super);
|
|
2427
2427
|
function OperatorSubscriber2(destination2, onNext, onComplete, onError, onFinalize, shouldUnsubscribe) {
|
|
2428
2428
|
var _this = _super.call(this, destination2) || this;
|
|
@@ -2464,7 +2464,7 @@ var OperatorSubscriber = function(_super) {
|
|
|
2464
2464
|
}
|
|
2465
2465
|
};
|
|
2466
2466
|
return OperatorSubscriber2;
|
|
2467
|
-
}(Subscriber);
|
|
2467
|
+
})(Subscriber);
|
|
2468
2468
|
|
|
2469
2469
|
// ../node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.js
|
|
2470
2470
|
var ObjectUnsubscribedError = createErrorClass(function(_super) {
|
|
@@ -2476,7 +2476,7 @@ var ObjectUnsubscribedError = createErrorClass(function(_super) {
|
|
|
2476
2476
|
});
|
|
2477
2477
|
|
|
2478
2478
|
// ../node_modules/rxjs/dist/esm5/internal/Subject.js
|
|
2479
|
-
var Subject = function(_super) {
|
|
2479
|
+
var Subject = (function(_super) {
|
|
2480
2480
|
__extends(Subject2, _super);
|
|
2481
2481
|
function Subject2() {
|
|
2482
2482
|
var _this = _super.call(this) || this;
|
|
@@ -2489,9 +2489,9 @@ var Subject = function(_super) {
|
|
|
2489
2489
|
return _this;
|
|
2490
2490
|
}
|
|
2491
2491
|
Subject2.prototype.lift = function(operator2) {
|
|
2492
|
-
var
|
|
2493
|
-
|
|
2494
|
-
return
|
|
2492
|
+
var subject8 = new AnonymousSubject(this, this);
|
|
2493
|
+
subject8.operator = operator2;
|
|
2494
|
+
return subject8;
|
|
2495
2495
|
};
|
|
2496
2496
|
Subject2.prototype._throwIfClosed = function() {
|
|
2497
2497
|
if (this.closed) {
|
|
@@ -2602,8 +2602,8 @@ var Subject = function(_super) {
|
|
|
2602
2602
|
return new AnonymousSubject(destination2, source8);
|
|
2603
2603
|
};
|
|
2604
2604
|
return Subject2;
|
|
2605
|
-
}(Observable);
|
|
2606
|
-
var AnonymousSubject = function(_super) {
|
|
2605
|
+
})(Observable);
|
|
2606
|
+
var AnonymousSubject = (function(_super) {
|
|
2607
2607
|
__extends(AnonymousSubject2, _super);
|
|
2608
2608
|
function AnonymousSubject2(destination2, source8) {
|
|
2609
2609
|
var _this = _super.call(this) || this;
|
|
@@ -2628,10 +2628,10 @@ var AnonymousSubject = function(_super) {
|
|
|
2628
2628
|
return (_b = (_a = this.source) === null || _a === void 0 ? void 0 : _a.subscribe(subscriber3)) !== null && _b !== void 0 ? _b : EMPTY_SUBSCRIPTION;
|
|
2629
2629
|
};
|
|
2630
2630
|
return AnonymousSubject2;
|
|
2631
|
-
}(Subject);
|
|
2631
|
+
})(Subject);
|
|
2632
2632
|
|
|
2633
2633
|
// ../node_modules/rxjs/dist/esm5/internal/BehaviorSubject.js
|
|
2634
|
-
var BehaviorSubject = function(_super) {
|
|
2634
|
+
var BehaviorSubject = (function(_super) {
|
|
2635
2635
|
__extends(BehaviorSubject3, _super);
|
|
2636
2636
|
function BehaviorSubject3(_value2) {
|
|
2637
2637
|
var _this = _super.call(this) || this;
|
|
@@ -2662,7 +2662,7 @@ var BehaviorSubject = function(_super) {
|
|
|
2662
2662
|
_super.prototype.next.call(this, this._value = value7);
|
|
2663
2663
|
};
|
|
2664
2664
|
return BehaviorSubject3;
|
|
2665
|
-
}(Subject);
|
|
2665
|
+
})(Subject);
|
|
2666
2666
|
|
|
2667
2667
|
// ../node_modules/rxjs/dist/esm5/internal/operators/tap.js
|
|
2668
2668
|
function tap(observerOrNext, error4, complete2) {
|
|
@@ -2752,25 +2752,25 @@ var FileFetcher = class {
|
|
|
2752
2752
|
|
|
2753
2753
|
// src/modules/contacts.ts
|
|
2754
2754
|
async function loadContactsModule(store) {
|
|
2755
|
-
const module2 = await import("./dist-
|
|
2755
|
+
const module2 = await import("./dist-4BQLT63G.js");
|
|
2756
2756
|
return store.loadModule(module2);
|
|
2757
2757
|
}
|
|
2758
2758
|
|
|
2759
2759
|
// src/thing/accumulateSubjects.ts
|
|
2760
|
-
var accumulateSubjects = (accumulator,
|
|
2761
|
-
const existing = accumulator[
|
|
2760
|
+
var accumulateSubjects = (accumulator, current3) => {
|
|
2761
|
+
const existing = accumulator[current3.predicate.uri];
|
|
2762
2762
|
return {
|
|
2763
2763
|
...accumulator,
|
|
2764
|
-
[
|
|
2764
|
+
[current3.predicate.uri]: existing ? [...existing, current3.subject.value] : [current3.subject.value]
|
|
2765
2765
|
};
|
|
2766
2766
|
};
|
|
2767
2767
|
|
|
2768
2768
|
// src/thing/accumulateValues.ts
|
|
2769
|
-
var accumulateValues = (accumulator,
|
|
2770
|
-
const existing = accumulator[
|
|
2769
|
+
var accumulateValues = (accumulator, current3) => {
|
|
2770
|
+
const existing = accumulator[current3.predicate.uri];
|
|
2771
2771
|
return {
|
|
2772
2772
|
...accumulator,
|
|
2773
|
-
[
|
|
2773
|
+
[current3.predicate.uri]: existing ? [...existing, current3.object.value] : [current3.object.value]
|
|
2774
2774
|
};
|
|
2775
2775
|
};
|
|
2776
2776
|
|
|
@@ -3390,6 +3390,7 @@ __export(index_es_exports, {
|
|
|
3390
3390
|
acl: () => acl,
|
|
3391
3391
|
arg: () => arg,
|
|
3392
3392
|
as: () => as,
|
|
3393
|
+
bookmark: () => bookmark,
|
|
3393
3394
|
cal: () => cal,
|
|
3394
3395
|
contact: () => contact3,
|
|
3395
3396
|
dc: () => dc,
|
|
@@ -3484,7 +3485,7 @@ var argImport = /* @__PURE__ */ Object.freeze({
|
|
|
3484
3485
|
support
|
|
3485
3486
|
});
|
|
3486
3487
|
|
|
3487
|
-
// ../node_modules/rdf-namespaces/dist/as-
|
|
3488
|
+
// ../node_modules/rdf-namespaces/dist/as-48207dab.js
|
|
3488
3489
|
var actor = "https://www.w3.org/ns/activitystreams#actor";
|
|
3489
3490
|
var attributedTo = "https://www.w3.org/ns/activitystreams#attributedTo";
|
|
3490
3491
|
var attachment = "https://www.w3.org/ns/activitystreams#attachment";
|
|
@@ -3494,20 +3495,26 @@ var bcc = "https://www.w3.org/ns/activitystreams#bcc";
|
|
|
3494
3495
|
var bto = "https://www.w3.org/ns/activitystreams#bto";
|
|
3495
3496
|
var cc = "https://www.w3.org/ns/activitystreams#cc";
|
|
3496
3497
|
var context2 = "https://www.w3.org/ns/activitystreams#context";
|
|
3498
|
+
var current = "https://www.w3.org/ns/activitystreams#current";
|
|
3499
|
+
var first = "https://www.w3.org/ns/activitystreams#first";
|
|
3497
3500
|
var generator = "https://www.w3.org/ns/activitystreams#generator";
|
|
3498
3501
|
var icon = "https://www.w3.org/ns/activitystreams#icon";
|
|
3499
3502
|
var image = "https://www.w3.org/ns/activitystreams#image";
|
|
3500
3503
|
var inReplyTo = "https://www.w3.org/ns/activitystreams#inReplyTo";
|
|
3501
3504
|
var items = "https://www.w3.org/ns/activitystreams#items";
|
|
3505
|
+
var last = "https://www.w3.org/ns/activitystreams#last";
|
|
3502
3506
|
var location = "https://www.w3.org/ns/activitystreams#location";
|
|
3507
|
+
var next = "https://www.w3.org/ns/activitystreams#next";
|
|
3503
3508
|
var object = "https://www.w3.org/ns/activitystreams#object";
|
|
3504
3509
|
var oneOf = "https://www.w3.org/ns/activitystreams#oneOf";
|
|
3505
3510
|
var anyOf = "https://www.w3.org/ns/activitystreams#anyOf";
|
|
3511
|
+
var prev = "https://www.w3.org/ns/activitystreams#prev";
|
|
3506
3512
|
var preview = "https://www.w3.org/ns/activitystreams#preview";
|
|
3507
3513
|
var provider = "https://www.w3.org/ns/activitystreams#provider";
|
|
3508
3514
|
var replies = "https://www.w3.org/ns/activitystreams#replies";
|
|
3509
3515
|
var result = "https://www.w3.org/ns/activitystreams#result";
|
|
3510
3516
|
var audience = "https://www.w3.org/ns/activitystreams#audience";
|
|
3517
|
+
var partOf = "https://www.w3.org/ns/activitystreams#partOf";
|
|
3511
3518
|
var tag = "https://www.w3.org/ns/activitystreams#tag";
|
|
3512
3519
|
var tags = "https://www.w3.org/ns/activitystreams#tags";
|
|
3513
3520
|
var target = "https://www.w3.org/ns/activitystreams#target";
|
|
@@ -3515,6 +3522,7 @@ var origin2 = "https://www.w3.org/ns/activitystreams#origin";
|
|
|
3515
3522
|
var instrument = "https://www.w3.org/ns/activitystreams#instrument";
|
|
3516
3523
|
var to = "https://www.w3.org/ns/activitystreams#to";
|
|
3517
3524
|
var url = "https://www.w3.org/ns/activitystreams#url";
|
|
3525
|
+
var subject = "https://www.w3.org/ns/activitystreams#subject";
|
|
3518
3526
|
var relationship = "https://www.w3.org/ns/activitystreams#relationship";
|
|
3519
3527
|
var describes = "https://www.w3.org/ns/activitystreams#describes";
|
|
3520
3528
|
var formerType = "https://www.w3.org/ns/activitystreams#formerType";
|
|
@@ -3612,20 +3620,26 @@ var asImport = /* @__PURE__ */ Object.freeze({
|
|
|
3612
3620
|
bto,
|
|
3613
3621
|
cc,
|
|
3614
3622
|
context: context2,
|
|
3623
|
+
current,
|
|
3624
|
+
first,
|
|
3615
3625
|
generator,
|
|
3616
3626
|
icon,
|
|
3617
3627
|
image,
|
|
3618
3628
|
inReplyTo,
|
|
3619
3629
|
items,
|
|
3630
|
+
last,
|
|
3620
3631
|
location,
|
|
3632
|
+
next,
|
|
3621
3633
|
object,
|
|
3622
3634
|
oneOf,
|
|
3623
3635
|
anyOf,
|
|
3636
|
+
prev,
|
|
3624
3637
|
preview,
|
|
3625
3638
|
provider,
|
|
3626
3639
|
replies,
|
|
3627
3640
|
result,
|
|
3628
3641
|
audience,
|
|
3642
|
+
partOf,
|
|
3629
3643
|
tag,
|
|
3630
3644
|
tags,
|
|
3631
3645
|
target,
|
|
@@ -3633,6 +3647,7 @@ var asImport = /* @__PURE__ */ Object.freeze({
|
|
|
3633
3647
|
instrument,
|
|
3634
3648
|
to,
|
|
3635
3649
|
url,
|
|
3650
|
+
subject,
|
|
3636
3651
|
relationship,
|
|
3637
3652
|
describes,
|
|
3638
3653
|
formerType,
|
|
@@ -3722,6 +3737,26 @@ var asImport = /* @__PURE__ */ Object.freeze({
|
|
|
3722
3737
|
Video
|
|
3723
3738
|
});
|
|
3724
3739
|
|
|
3740
|
+
// ../node_modules/rdf-namespaces/dist/bookmark-7c2b6a42.js
|
|
3741
|
+
var hasTopic = "http://www.w3.org/2002/01/bookmark#hasTopic";
|
|
3742
|
+
var leadsTo = "http://www.w3.org/2002/01/bookmark#leadsTo";
|
|
3743
|
+
var Topic = "http://www.w3.org/2002/01/bookmark#Topic";
|
|
3744
|
+
var Shortcut = "http://www.w3.org/2002/01/bookmark#Shortcut";
|
|
3745
|
+
var bookmarks = "http://www.w3.org/2002/01/bookmark#bookmarks";
|
|
3746
|
+
var recalls = "http://www.w3.org/2002/01/bookmark#recalls";
|
|
3747
|
+
var subTopicOf = "http://www.w3.org/2002/01/bookmark#subTopicOf";
|
|
3748
|
+
var Bookmark = "http://www.w3.org/2002/01/bookmark#Bookmark";
|
|
3749
|
+
var bookmarkImport = /* @__PURE__ */ Object.freeze({
|
|
3750
|
+
hasTopic,
|
|
3751
|
+
leadsTo,
|
|
3752
|
+
Topic,
|
|
3753
|
+
Shortcut,
|
|
3754
|
+
bookmarks,
|
|
3755
|
+
recalls,
|
|
3756
|
+
subTopicOf,
|
|
3757
|
+
Bookmark
|
|
3758
|
+
});
|
|
3759
|
+
|
|
3725
3760
|
// ../node_modules/rdf-namespaces/dist/cal-a0992050.js
|
|
3726
3761
|
var Vevent = "http://www.w3.org/2002/12/cal/ical#Vevent";
|
|
3727
3762
|
var Vtodo = "http://www.w3.org/2002/12/cal/ical#Vtodo";
|
|
@@ -3921,7 +3956,7 @@ var publisher = "http://purl.org/dc/elements/1.1/publisher";
|
|
|
3921
3956
|
var relation = "http://purl.org/dc/elements/1.1/relation";
|
|
3922
3957
|
var rights = "http://purl.org/dc/elements/1.1/rights";
|
|
3923
3958
|
var source = "http://purl.org/dc/elements/1.1/source";
|
|
3924
|
-
var
|
|
3959
|
+
var subject2 = "http://purl.org/dc/elements/1.1/subject";
|
|
3925
3960
|
var title = "http://purl.org/dc/elements/1.1/title";
|
|
3926
3961
|
var type = "http://purl.org/dc/elements/1.1/type";
|
|
3927
3962
|
var dcImport = /* @__PURE__ */ Object.freeze({
|
|
@@ -3937,12 +3972,13 @@ var dcImport = /* @__PURE__ */ Object.freeze({
|
|
|
3937
3972
|
relation,
|
|
3938
3973
|
rights,
|
|
3939
3974
|
source,
|
|
3940
|
-
subject,
|
|
3975
|
+
subject: subject2,
|
|
3941
3976
|
title,
|
|
3942
3977
|
type
|
|
3943
3978
|
});
|
|
3944
3979
|
|
|
3945
|
-
// ../node_modules/rdf-namespaces/dist/dct-
|
|
3980
|
+
// ../node_modules/rdf-namespaces/dist/dct-00f7660b.js
|
|
3981
|
+
var Agent = "http://purl.org/dc/terms/Agent";
|
|
3946
3982
|
var AgentClass = "http://purl.org/dc/terms/AgentClass";
|
|
3947
3983
|
var BibliographicResource = "http://purl.org/dc/terms/BibliographicResource";
|
|
3948
3984
|
var Box = "http://purl.org/dc/terms/Box";
|
|
@@ -4023,13 +4059,14 @@ var rights2 = "http://purl.org/dc/terms/rights";
|
|
|
4023
4059
|
var rightsHolder = "http://purl.org/dc/terms/rightsHolder";
|
|
4024
4060
|
var source2 = "http://purl.org/dc/terms/source";
|
|
4025
4061
|
var spatial = "http://purl.org/dc/terms/spatial";
|
|
4026
|
-
var
|
|
4062
|
+
var subject3 = "http://purl.org/dc/terms/subject";
|
|
4027
4063
|
var tableOfContents = "http://purl.org/dc/terms/tableOfContents";
|
|
4028
4064
|
var temporal = "http://purl.org/dc/terms/temporal";
|
|
4029
4065
|
var title2 = "http://purl.org/dc/terms/title";
|
|
4030
4066
|
var type2 = "http://purl.org/dc/terms/type";
|
|
4031
4067
|
var valid = "http://purl.org/dc/terms/valid";
|
|
4032
4068
|
var dctImport = /* @__PURE__ */ Object.freeze({
|
|
4069
|
+
Agent,
|
|
4033
4070
|
AgentClass,
|
|
4034
4071
|
BibliographicResource,
|
|
4035
4072
|
Box,
|
|
@@ -4110,7 +4147,7 @@ var dctImport = /* @__PURE__ */ Object.freeze({
|
|
|
4110
4147
|
rightsHolder,
|
|
4111
4148
|
source: source2,
|
|
4112
4149
|
spatial,
|
|
4113
|
-
subject:
|
|
4150
|
+
subject: subject3,
|
|
4114
4151
|
tableOfContents,
|
|
4115
4152
|
temporal,
|
|
4116
4153
|
title: title2,
|
|
@@ -4118,7 +4155,7 @@ var dctImport = /* @__PURE__ */ Object.freeze({
|
|
|
4118
4155
|
valid
|
|
4119
4156
|
});
|
|
4120
4157
|
|
|
4121
|
-
// ../node_modules/rdf-namespaces/dist/fhir-
|
|
4158
|
+
// ../node_modules/rdf-namespaces/dist/fhir-09bb1d53.js
|
|
4122
4159
|
var constituent = "http://hl7.org/fhir/constituent";
|
|
4123
4160
|
var _careTeam = "http://hl7.org/fhir/_careTeam";
|
|
4124
4161
|
var ClinicalUseDefinitionWarningComponent = "http://hl7.org/fhir/ClinicalUseDefinitionWarningComponent";
|
|
@@ -4475,6 +4512,7 @@ var _compositional = "http://hl7.org/fhir/_compositional";
|
|
|
4475
4512
|
var financial = "http://hl7.org/fhir/financial";
|
|
4476
4513
|
var _bodysite = "http://hl7.org/fhir/_bodysite";
|
|
4477
4514
|
var sourceScope = "http://hl7.org/fhir/sourceScope";
|
|
4515
|
+
var modifierExtensionClass = "http://hl7.org/fhir/modifierExtensionClass";
|
|
4478
4516
|
var parameter = "http://hl7.org/fhir/parameter";
|
|
4479
4517
|
var lineItem = "http://hl7.org/fhir/lineItem";
|
|
4480
4518
|
var _businessArrangement = "http://hl7.org/fhir/_businessArrangement";
|
|
@@ -4518,6 +4556,7 @@ var TestPlanTestCaseTestRunComponent = "http://hl7.org/fhir/TestPlanTestCaseTest
|
|
|
4518
4556
|
var _productOrService = "http://hl7.org/fhir/_productOrService";
|
|
4519
4557
|
var reviewOutcome = "http://hl7.org/fhir/reviewOutcome";
|
|
4520
4558
|
var maxDispense = "http://hl7.org/fhir/maxDispense";
|
|
4559
|
+
var modifierExtensionProperty = "http://hl7.org/fhir/modifierExtensionProperty";
|
|
4521
4560
|
var filterDefinition = "http://hl7.org/fhir/filterDefinition";
|
|
4522
4561
|
var sourceAttachment = "http://hl7.org/fhir/sourceAttachment";
|
|
4523
4562
|
var provisionActor = "http://hl7.org/fhir/provisionActor";
|
|
@@ -4754,7 +4793,7 @@ var RiskAssessmentPredictionComponent = "http://hl7.org/fhir/RiskAssessmentPredi
|
|
|
4754
4793
|
var _enteredDate = "http://hl7.org/fhir/_enteredDate";
|
|
4755
4794
|
var _legalStatusOfSupply = "http://hl7.org/fhir/_legalStatusOfSupply";
|
|
4756
4795
|
var valueAlternatives = "http://hl7.org/fhir/valueAlternatives";
|
|
4757
|
-
var
|
|
4796
|
+
var subject4 = "http://hl7.org/fhir/subject";
|
|
4758
4797
|
var _publicationDate = "http://hl7.org/fhir/_publicationDate";
|
|
4759
4798
|
var occurrenceChanged = "http://hl7.org/fhir/occurrenceChanged";
|
|
4760
4799
|
var _referralRequest = "http://hl7.org/fhir/_referralRequest";
|
|
@@ -6207,7 +6246,7 @@ var signature = "http://hl7.org/fhir/signature";
|
|
|
6207
6246
|
var reviewer = "http://hl7.org/fhir/reviewer";
|
|
6208
6247
|
var _usePeriod = "http://hl7.org/fhir/_usePeriod";
|
|
6209
6248
|
var BodyStructureIncludedStructureComponent = "http://hl7.org/fhir/BodyStructureIncludedStructureComponent";
|
|
6210
|
-
var
|
|
6249
|
+
var next2 = "http://hl7.org/fhir/next";
|
|
6211
6250
|
var _changeType = "http://hl7.org/fhir/_changeType";
|
|
6212
6251
|
var _ImmunizationEvaluation = "http://hl7.org/fhir/_ImmunizationEvaluation";
|
|
6213
6252
|
var requestingOrganization = "http://hl7.org/fhir/requestingOrganization";
|
|
@@ -6255,7 +6294,7 @@ var MeasureTermComponent = "http://hl7.org/fhir/MeasureTermComponent";
|
|
|
6255
6294
|
var _containedItemQuantity = "http://hl7.org/fhir/_containedItemQuantity";
|
|
6256
6295
|
var _daysSupply = "http://hl7.org/fhir/_daysSupply";
|
|
6257
6296
|
var reportingVendor = "http://hl7.org/fhir/reportingVendor";
|
|
6258
|
-
var
|
|
6297
|
+
var current2 = "http://hl7.org/fhir/current";
|
|
6259
6298
|
var uid3 = "http://hl7.org/fhir/uid";
|
|
6260
6299
|
var order = "http://hl7.org/fhir/order";
|
|
6261
6300
|
var priorPrescription = "http://hl7.org/fhir/priorPrescription";
|
|
@@ -7426,7 +7465,7 @@ var _focal = "http://hl7.org/fhir/_focal";
|
|
|
7426
7465
|
var indication = "http://hl7.org/fhir/indication";
|
|
7427
7466
|
var _AllergyIntolerance = "http://hl7.org/fhir/_AllergyIntolerance";
|
|
7428
7467
|
var _publishedIn = "http://hl7.org/fhir/_publishedIn";
|
|
7429
|
-
var
|
|
7468
|
+
var partOf2 = "http://hl7.org/fhir/partOf";
|
|
7430
7469
|
var _initialSelected = "http://hl7.org/fhir/_initialSelected";
|
|
7431
7470
|
var _key = "http://hl7.org/fhir/_key";
|
|
7432
7471
|
var backCurve = "http://hl7.org/fhir/backCurve";
|
|
@@ -8708,6 +8747,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
8708
8747
|
financial,
|
|
8709
8748
|
_bodysite,
|
|
8710
8749
|
sourceScope,
|
|
8750
|
+
modifierExtensionClass,
|
|
8711
8751
|
parameter,
|
|
8712
8752
|
lineItem,
|
|
8713
8753
|
_businessArrangement,
|
|
@@ -8751,6 +8791,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
8751
8791
|
_productOrService,
|
|
8752
8792
|
reviewOutcome,
|
|
8753
8793
|
maxDispense,
|
|
8794
|
+
modifierExtensionProperty,
|
|
8754
8795
|
filterDefinition,
|
|
8755
8796
|
sourceAttachment,
|
|
8756
8797
|
provisionActor,
|
|
@@ -8987,7 +9028,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
8987
9028
|
_enteredDate,
|
|
8988
9029
|
_legalStatusOfSupply,
|
|
8989
9030
|
valueAlternatives,
|
|
8990
|
-
subject:
|
|
9031
|
+
subject: subject4,
|
|
8991
9032
|
_publicationDate,
|
|
8992
9033
|
occurrenceChanged,
|
|
8993
9034
|
_referralRequest,
|
|
@@ -10440,7 +10481,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
10440
10481
|
reviewer,
|
|
10441
10482
|
_usePeriod,
|
|
10442
10483
|
BodyStructureIncludedStructureComponent,
|
|
10443
|
-
next,
|
|
10484
|
+
next: next2,
|
|
10444
10485
|
_changeType,
|
|
10445
10486
|
_ImmunizationEvaluation,
|
|
10446
10487
|
requestingOrganization,
|
|
@@ -10488,7 +10529,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
10488
10529
|
_containedItemQuantity,
|
|
10489
10530
|
_daysSupply,
|
|
10490
10531
|
reportingVendor,
|
|
10491
|
-
current,
|
|
10532
|
+
current: current2,
|
|
10492
10533
|
uid: uid3,
|
|
10493
10534
|
order,
|
|
10494
10535
|
priorPrescription,
|
|
@@ -11659,7 +11700,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
11659
11700
|
indication,
|
|
11660
11701
|
_AllergyIntolerance,
|
|
11661
11702
|
_publishedIn,
|
|
11662
|
-
partOf,
|
|
11703
|
+
partOf: partOf2,
|
|
11663
11704
|
_initialSelected,
|
|
11664
11705
|
_key,
|
|
11665
11706
|
backCurve,
|
|
@@ -12587,7 +12628,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
12587
12628
|
});
|
|
12588
12629
|
|
|
12589
12630
|
// ../node_modules/rdf-namespaces/dist/foaf-85ab4e00.js
|
|
12590
|
-
var
|
|
12631
|
+
var Agent2 = "http://xmlns.com/foaf/0.1/Agent";
|
|
12591
12632
|
var Document2 = "http://xmlns.com/foaf/0.1/Document";
|
|
12592
12633
|
var Group3 = "http://xmlns.com/foaf/0.1/Group";
|
|
12593
12634
|
var Image2 = "http://xmlns.com/foaf/0.1/Image";
|
|
@@ -12663,7 +12704,7 @@ var workInfoHomepage = "http://xmlns.com/foaf/0.1/workInfoHomepage";
|
|
|
12663
12704
|
var workplaceHomepage = "http://xmlns.com/foaf/0.1/workplaceHomepage";
|
|
12664
12705
|
var yahooChatID = "http://xmlns.com/foaf/0.1/yahooChatID";
|
|
12665
12706
|
var foafImport = /* @__PURE__ */ Object.freeze({
|
|
12666
|
-
Agent,
|
|
12707
|
+
Agent: Agent2,
|
|
12667
12708
|
Document: Document2,
|
|
12668
12709
|
Group: Group3,
|
|
12669
12710
|
Image: Image2,
|
|
@@ -12786,15 +12827,15 @@ var entrypoint = "http://www.w3.org/ns/hydra/core#entrypoint";
|
|
|
12786
12827
|
var expects = "http://www.w3.org/ns/hydra/core#expects";
|
|
12787
12828
|
var expectsHeader = "http://www.w3.org/ns/hydra/core#expectsHeader";
|
|
12788
12829
|
var extension2 = "http://www.w3.org/ns/hydra/core#extension";
|
|
12789
|
-
var
|
|
12830
|
+
var first2 = "http://www.w3.org/ns/hydra/core#first";
|
|
12790
12831
|
var freetextQuery = "http://www.w3.org/ns/hydra/core#freetextQuery";
|
|
12791
12832
|
var headerName = "http://www.w3.org/ns/hydra/core#headerName";
|
|
12792
|
-
var
|
|
12833
|
+
var last2 = "http://www.w3.org/ns/hydra/core#last";
|
|
12793
12834
|
var limit2 = "http://www.w3.org/ns/hydra/core#limit";
|
|
12794
12835
|
var mapping2 = "http://www.w3.org/ns/hydra/core#mapping";
|
|
12795
12836
|
var member3 = "http://www.w3.org/ns/hydra/core#member";
|
|
12796
12837
|
var method4 = "http://www.w3.org/ns/hydra/core#method";
|
|
12797
|
-
var
|
|
12838
|
+
var next3 = "http://www.w3.org/ns/hydra/core#next";
|
|
12798
12839
|
var offset2 = "http://www.w3.org/ns/hydra/core#offset";
|
|
12799
12840
|
var operation2 = "http://www.w3.org/ns/hydra/core#operation";
|
|
12800
12841
|
var pageIndex = "http://www.w3.org/ns/hydra/core#pageIndex";
|
|
@@ -12848,15 +12889,15 @@ var hydraImport = /* @__PURE__ */ Object.freeze({
|
|
|
12848
12889
|
expects,
|
|
12849
12890
|
expectsHeader,
|
|
12850
12891
|
extension: extension2,
|
|
12851
|
-
first,
|
|
12892
|
+
first: first2,
|
|
12852
12893
|
freetextQuery,
|
|
12853
12894
|
headerName,
|
|
12854
|
-
last,
|
|
12895
|
+
last: last2,
|
|
12855
12896
|
limit: limit2,
|
|
12856
12897
|
mapping: mapping2,
|
|
12857
12898
|
member: member3,
|
|
12858
12899
|
method: method4,
|
|
12859
|
-
next:
|
|
12900
|
+
next: next3,
|
|
12860
12901
|
offset: offset2,
|
|
12861
12902
|
operation: operation2,
|
|
12862
12903
|
pageIndex,
|
|
@@ -13060,7 +13101,7 @@ var meetingImport = /* @__PURE__ */ Object.freeze({
|
|
|
13060
13101
|
videoCallPage
|
|
13061
13102
|
});
|
|
13062
13103
|
|
|
13063
|
-
// ../node_modules/rdf-namespaces/dist/owl-
|
|
13104
|
+
// ../node_modules/rdf-namespaces/dist/owl-cfadfdf5.js
|
|
13064
13105
|
var AllDifferent = "http://www.w3.org/2002/07/owl#AllDifferent";
|
|
13065
13106
|
var AllDisjointClasses = "http://www.w3.org/2002/07/owl#AllDisjointClasses";
|
|
13066
13107
|
var AllDisjointProperties = "http://www.w3.org/2002/07/owl#AllDisjointProperties";
|
|
@@ -13092,11 +13133,13 @@ var annotatedProperty = "http://www.w3.org/2002/07/owl#annotatedProperty";
|
|
|
13092
13133
|
var annotatedSource = "http://www.w3.org/2002/07/owl#annotatedSource";
|
|
13093
13134
|
var annotatedTarget = "http://www.w3.org/2002/07/owl#annotatedTarget";
|
|
13094
13135
|
var assertionProperty = "http://www.w3.org/2002/07/owl#assertionProperty";
|
|
13136
|
+
var backwardCompatibleWith = "http://www.w3.org/2002/07/owl#backwardCompatibleWith";
|
|
13095
13137
|
var bottomDataProperty = "http://www.w3.org/2002/07/owl#bottomDataProperty";
|
|
13096
13138
|
var bottomObjectProperty = "http://www.w3.org/2002/07/owl#bottomObjectProperty";
|
|
13097
13139
|
var cardinality = "http://www.w3.org/2002/07/owl#cardinality";
|
|
13098
13140
|
var complementOf = "http://www.w3.org/2002/07/owl#complementOf";
|
|
13099
13141
|
var datatypeComplementOf = "http://www.w3.org/2002/07/owl#datatypeComplementOf";
|
|
13142
|
+
var deprecated = "http://www.w3.org/2002/07/owl#deprecated";
|
|
13100
13143
|
var differentFrom = "http://www.w3.org/2002/07/owl#differentFrom";
|
|
13101
13144
|
var disjointUnionOf = "http://www.w3.org/2002/07/owl#disjointUnionOf";
|
|
13102
13145
|
var disjointWith = "http://www.w3.org/2002/07/owl#disjointWith";
|
|
@@ -13106,6 +13149,7 @@ var equivalentProperty = "http://www.w3.org/2002/07/owl#equivalentProperty";
|
|
|
13106
13149
|
var hasKey = "http://www.w3.org/2002/07/owl#hasKey";
|
|
13107
13150
|
var hasSelf = "http://www.w3.org/2002/07/owl#hasSelf";
|
|
13108
13151
|
var hasValue = "http://www.w3.org/2002/07/owl#hasValue";
|
|
13152
|
+
var incompatibleWith = "http://www.w3.org/2002/07/owl#incompatibleWith";
|
|
13109
13153
|
var intersectionOf = "http://www.w3.org/2002/07/owl#intersectionOf";
|
|
13110
13154
|
var inverseOf = "http://www.w3.org/2002/07/owl#inverseOf";
|
|
13111
13155
|
var maxCardinality = "http://www.w3.org/2002/07/owl#maxCardinality";
|
|
@@ -13119,6 +13163,7 @@ var onDatatype = "http://www.w3.org/2002/07/owl#onDatatype";
|
|
|
13119
13163
|
var oneOf2 = "http://www.w3.org/2002/07/owl#oneOf";
|
|
13120
13164
|
var onProperties = "http://www.w3.org/2002/07/owl#onProperties";
|
|
13121
13165
|
var onProperty = "http://www.w3.org/2002/07/owl#onProperty";
|
|
13166
|
+
var priorVersion = "http://www.w3.org/2002/07/owl#priorVersion";
|
|
13122
13167
|
var propertyChainAxiom = "http://www.w3.org/2002/07/owl#propertyChainAxiom";
|
|
13123
13168
|
var propertyDisjointWith = "http://www.w3.org/2002/07/owl#propertyDisjointWith";
|
|
13124
13169
|
var qualifiedCardinality = "http://www.w3.org/2002/07/owl#qualifiedCardinality";
|
|
@@ -13130,6 +13175,7 @@ var targetValue = "http://www.w3.org/2002/07/owl#targetValue";
|
|
|
13130
13175
|
var topDataProperty = "http://www.w3.org/2002/07/owl#topDataProperty";
|
|
13131
13176
|
var topObjectProperty = "http://www.w3.org/2002/07/owl#topObjectProperty";
|
|
13132
13177
|
var unionOf = "http://www.w3.org/2002/07/owl#unionOf";
|
|
13178
|
+
var versionInfo = "http://www.w3.org/2002/07/owl#versionInfo";
|
|
13133
13179
|
var withRestrictions = "http://www.w3.org/2002/07/owl#withRestrictions";
|
|
13134
13180
|
var owlImport = /* @__PURE__ */ Object.freeze({
|
|
13135
13181
|
AllDifferent,
|
|
@@ -13163,11 +13209,13 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13163
13209
|
annotatedSource,
|
|
13164
13210
|
annotatedTarget,
|
|
13165
13211
|
assertionProperty,
|
|
13212
|
+
backwardCompatibleWith,
|
|
13166
13213
|
bottomDataProperty,
|
|
13167
13214
|
bottomObjectProperty,
|
|
13168
13215
|
cardinality,
|
|
13169
13216
|
complementOf,
|
|
13170
13217
|
datatypeComplementOf,
|
|
13218
|
+
deprecated,
|
|
13171
13219
|
differentFrom,
|
|
13172
13220
|
disjointUnionOf,
|
|
13173
13221
|
disjointWith,
|
|
@@ -13177,6 +13225,7 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13177
13225
|
hasKey,
|
|
13178
13226
|
hasSelf,
|
|
13179
13227
|
hasValue,
|
|
13228
|
+
incompatibleWith,
|
|
13180
13229
|
intersectionOf,
|
|
13181
13230
|
inverseOf,
|
|
13182
13231
|
maxCardinality,
|
|
@@ -13190,6 +13239,7 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13190
13239
|
oneOf: oneOf2,
|
|
13191
13240
|
onProperties,
|
|
13192
13241
|
onProperty,
|
|
13242
|
+
priorVersion,
|
|
13193
13243
|
propertyChainAxiom,
|
|
13194
13244
|
propertyDisjointWith,
|
|
13195
13245
|
qualifiedCardinality,
|
|
@@ -13201,6 +13251,7 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13201
13251
|
topDataProperty,
|
|
13202
13252
|
topObjectProperty,
|
|
13203
13253
|
unionOf,
|
|
13254
|
+
versionInfo,
|
|
13204
13255
|
withRestrictions
|
|
13205
13256
|
});
|
|
13206
13257
|
|
|
@@ -13271,7 +13322,7 @@ var PlainLiteral = "http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral";
|
|
|
13271
13322
|
var type4 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type";
|
|
13272
13323
|
var Property2 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property";
|
|
13273
13324
|
var Statement = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement";
|
|
13274
|
-
var
|
|
13325
|
+
var subject5 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#subject";
|
|
13275
13326
|
var predicate = "http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate";
|
|
13276
13327
|
var object3 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#object";
|
|
13277
13328
|
var Bag = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag";
|
|
@@ -13279,7 +13330,7 @@ var Seq = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq";
|
|
|
13279
13330
|
var Alt = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt";
|
|
13280
13331
|
var value2 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#value";
|
|
13281
13332
|
var List3 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#List";
|
|
13282
|
-
var
|
|
13333
|
+
var first3 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#first";
|
|
13283
13334
|
var rest2 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#rest";
|
|
13284
13335
|
var XMLLiteral = "http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral";
|
|
13285
13336
|
var JSON__workaround = "http://www.w3.org/1999/02/22-rdf-syntax-ns#JSON";
|
|
@@ -13293,7 +13344,7 @@ var rdfImport = /* @__PURE__ */ Object.freeze({
|
|
|
13293
13344
|
type: type4,
|
|
13294
13345
|
Property: Property2,
|
|
13295
13346
|
Statement,
|
|
13296
|
-
subject:
|
|
13347
|
+
subject: subject5,
|
|
13297
13348
|
predicate,
|
|
13298
13349
|
object: object3,
|
|
13299
13350
|
Bag,
|
|
@@ -13301,7 +13352,7 @@ var rdfImport = /* @__PURE__ */ Object.freeze({
|
|
|
13301
13352
|
Alt,
|
|
13302
13353
|
value: value2,
|
|
13303
13354
|
List: List3,
|
|
13304
|
-
first:
|
|
13355
|
+
first: first3,
|
|
13305
13356
|
rest: rest2,
|
|
13306
13357
|
XMLLiteral,
|
|
13307
13358
|
JSON__workaround,
|
|
@@ -23390,7 +23441,7 @@ var Rule2 = "http://www.w3.org/ns/shacl#Rule";
|
|
|
23390
23441
|
var rule2 = "http://www.w3.org/ns/shacl#rule";
|
|
23391
23442
|
var condition2 = "http://www.w3.org/ns/shacl#condition";
|
|
23392
23443
|
var TripleRule = "http://www.w3.org/ns/shacl#TripleRule";
|
|
23393
|
-
var
|
|
23444
|
+
var subject6 = "http://www.w3.org/ns/shacl#subject";
|
|
23394
23445
|
var predicate2 = "http://www.w3.org/ns/shacl#predicate";
|
|
23395
23446
|
var object6 = "http://www.w3.org/ns/shacl#object";
|
|
23396
23447
|
var SPARQLRule = "http://www.w3.org/ns/shacl#SPARQLRule";
|
|
@@ -23532,7 +23583,7 @@ var shaclImport = /* @__PURE__ */ Object.freeze({
|
|
|
23532
23583
|
rule: rule2,
|
|
23533
23584
|
condition: condition2,
|
|
23534
23585
|
TripleRule,
|
|
23535
|
-
subject:
|
|
23586
|
+
subject: subject6,
|
|
23536
23587
|
predicate: predicate2,
|
|
23537
23588
|
object: object6,
|
|
23538
23589
|
SPARQLRule,
|
|
@@ -23684,7 +23735,7 @@ var shexImport = /* @__PURE__ */ Object.freeze({
|
|
|
23684
23735
|
xsFacet
|
|
23685
23736
|
});
|
|
23686
23737
|
|
|
23687
|
-
// ../node_modules/rdf-namespaces/dist/sioc-
|
|
23738
|
+
// ../node_modules/rdf-namespaces/dist/sioc-0842c71e.js
|
|
23688
23739
|
var Community = "http://rdfs.org/sioc/ns#Community";
|
|
23689
23740
|
var Container3 = "http://rdfs.org/sioc/ns#Container";
|
|
23690
23741
|
var Forum = "http://rdfs.org/sioc/ns#Forum";
|
|
@@ -23707,6 +23758,7 @@ var content4 = "http://rdfs.org/sioc/ns#content";
|
|
|
23707
23758
|
var creator_of = "http://rdfs.org/sioc/ns#creator_of";
|
|
23708
23759
|
var delivered_at = "http://rdfs.org/sioc/ns#delivered_at";
|
|
23709
23760
|
var discussion_of = "http://rdfs.org/sioc/ns#discussion_of";
|
|
23761
|
+
var earlier_version = "http://rdfs.org/sioc/ns#earlier_version";
|
|
23710
23762
|
var email3 = "http://rdfs.org/sioc/ns#email";
|
|
23711
23763
|
var email_sha1 = "http://rdfs.org/sioc/ns#email_sha1";
|
|
23712
23764
|
var embeds_knowledge = "http://rdfs.org/sioc/ns#embeds_knowledge";
|
|
@@ -23736,6 +23788,7 @@ var ip_address = "http://rdfs.org/sioc/ns#ip_address";
|
|
|
23736
23788
|
var last_activity_date = "http://rdfs.org/sioc/ns#last_activity_date";
|
|
23737
23789
|
var last_item_date = "http://rdfs.org/sioc/ns#last_item_date";
|
|
23738
23790
|
var last_reply_date = "http://rdfs.org/sioc/ns#last_reply_date";
|
|
23791
|
+
var later_version = "http://rdfs.org/sioc/ns#later_version";
|
|
23739
23792
|
var latest_version = "http://rdfs.org/sioc/ns#latest_version";
|
|
23740
23793
|
var likes = "http://rdfs.org/sioc/ns#likes";
|
|
23741
23794
|
var link2 = "http://rdfs.org/sioc/ns#link";
|
|
@@ -23763,10 +23816,24 @@ var reply_of = "http://rdfs.org/sioc/ns#reply_of";
|
|
|
23763
23816
|
var respond_to = "http://rdfs.org/sioc/ns#respond_to";
|
|
23764
23817
|
var scope_of = "http://rdfs.org/sioc/ns#scope_of";
|
|
23765
23818
|
var shared_by = "http://rdfs.org/sioc/ns#shared_by";
|
|
23819
|
+
var sibling3 = "http://rdfs.org/sioc/ns#sibling";
|
|
23766
23820
|
var space_of = "http://rdfs.org/sioc/ns#space_of";
|
|
23767
23821
|
var subscriber_of = "http://rdfs.org/sioc/ns#subscriber_of";
|
|
23768
23822
|
var topic3 = "http://rdfs.org/sioc/ns#topic";
|
|
23769
23823
|
var usergroup_of = "http://rdfs.org/sioc/ns#usergroup_of";
|
|
23824
|
+
var title8 = "http://rdfs.org/sioc/ns#title";
|
|
23825
|
+
var content_encoded = "http://rdfs.org/sioc/ns#content_encoded";
|
|
23826
|
+
var created_at = "http://rdfs.org/sioc/ns#created_at";
|
|
23827
|
+
var description10 = "http://rdfs.org/sioc/ns#description";
|
|
23828
|
+
var first_name = "http://rdfs.org/sioc/ns#first_name";
|
|
23829
|
+
var group_of = "http://rdfs.org/sioc/ns#group_of";
|
|
23830
|
+
var has_group = "http://rdfs.org/sioc/ns#has_group";
|
|
23831
|
+
var has_part = "http://rdfs.org/sioc/ns#has_part";
|
|
23832
|
+
var last_name = "http://rdfs.org/sioc/ns#last_name";
|
|
23833
|
+
var modified_at = "http://rdfs.org/sioc/ns#modified_at";
|
|
23834
|
+
var part_of = "http://rdfs.org/sioc/ns#part_of";
|
|
23835
|
+
var reference2 = "http://rdfs.org/sioc/ns#reference";
|
|
23836
|
+
var subject7 = "http://rdfs.org/sioc/ns#subject";
|
|
23770
23837
|
var siocImport = /* @__PURE__ */ Object.freeze({
|
|
23771
23838
|
Community,
|
|
23772
23839
|
Container: Container3,
|
|
@@ -23790,6 +23857,7 @@ var siocImport = /* @__PURE__ */ Object.freeze({
|
|
|
23790
23857
|
creator_of,
|
|
23791
23858
|
delivered_at,
|
|
23792
23859
|
discussion_of,
|
|
23860
|
+
earlier_version,
|
|
23793
23861
|
email: email3,
|
|
23794
23862
|
email_sha1,
|
|
23795
23863
|
embeds_knowledge,
|
|
@@ -23819,6 +23887,7 @@ var siocImport = /* @__PURE__ */ Object.freeze({
|
|
|
23819
23887
|
last_activity_date,
|
|
23820
23888
|
last_item_date,
|
|
23821
23889
|
last_reply_date,
|
|
23890
|
+
later_version,
|
|
23822
23891
|
latest_version,
|
|
23823
23892
|
likes,
|
|
23824
23893
|
link: link2,
|
|
@@ -23846,13 +23915,27 @@ var siocImport = /* @__PURE__ */ Object.freeze({
|
|
|
23846
23915
|
respond_to,
|
|
23847
23916
|
scope_of,
|
|
23848
23917
|
shared_by,
|
|
23918
|
+
sibling: sibling3,
|
|
23849
23919
|
space_of,
|
|
23850
23920
|
subscriber_of,
|
|
23851
23921
|
topic: topic3,
|
|
23852
|
-
usergroup_of
|
|
23922
|
+
usergroup_of,
|
|
23923
|
+
title: title8,
|
|
23924
|
+
content_encoded,
|
|
23925
|
+
created_at,
|
|
23926
|
+
description: description10,
|
|
23927
|
+
first_name,
|
|
23928
|
+
group_of,
|
|
23929
|
+
has_group,
|
|
23930
|
+
has_part,
|
|
23931
|
+
last_name,
|
|
23932
|
+
modified_at,
|
|
23933
|
+
part_of,
|
|
23934
|
+
reference: reference2,
|
|
23935
|
+
subject: subject7
|
|
23853
23936
|
});
|
|
23854
23937
|
|
|
23855
|
-
// ../node_modules/rdf-namespaces/dist/skos-
|
|
23938
|
+
// ../node_modules/rdf-namespaces/dist/skos-2b5965bf.js
|
|
23856
23939
|
var Concept = "http://www.w3.org/2004/02/skos/core#Concept";
|
|
23857
23940
|
var ConceptScheme = "http://www.w3.org/2004/02/skos/core#ConceptScheme";
|
|
23858
23941
|
var Collection5 = "http://www.w3.org/2004/02/skos/core#Collection";
|
|
@@ -23860,7 +23943,17 @@ var OrderedCollection2 = "http://www.w3.org/2004/02/skos/core#OrderedCollection"
|
|
|
23860
23943
|
var inScheme = "http://www.w3.org/2004/02/skos/core#inScheme";
|
|
23861
23944
|
var hasTopConcept = "http://www.w3.org/2004/02/skos/core#hasTopConcept";
|
|
23862
23945
|
var topConceptOf = "http://www.w3.org/2004/02/skos/core#topConceptOf";
|
|
23946
|
+
var prefLabel = "http://www.w3.org/2004/02/skos/core#prefLabel";
|
|
23947
|
+
var altLabel = "http://www.w3.org/2004/02/skos/core#altLabel";
|
|
23948
|
+
var hiddenLabel = "http://www.w3.org/2004/02/skos/core#hiddenLabel";
|
|
23863
23949
|
var notation = "http://www.w3.org/2004/02/skos/core#notation";
|
|
23950
|
+
var note3 = "http://www.w3.org/2004/02/skos/core#note";
|
|
23951
|
+
var changeNote = "http://www.w3.org/2004/02/skos/core#changeNote";
|
|
23952
|
+
var definition2 = "http://www.w3.org/2004/02/skos/core#definition";
|
|
23953
|
+
var editorialNote = "http://www.w3.org/2004/02/skos/core#editorialNote";
|
|
23954
|
+
var example2 = "http://www.w3.org/2004/02/skos/core#example";
|
|
23955
|
+
var historyNote = "http://www.w3.org/2004/02/skos/core#historyNote";
|
|
23956
|
+
var scopeNote = "http://www.w3.org/2004/02/skos/core#scopeNote";
|
|
23864
23957
|
var semanticRelation = "http://www.w3.org/2004/02/skos/core#semanticRelation";
|
|
23865
23958
|
var broader = "http://www.w3.org/2004/02/skos/core#broader";
|
|
23866
23959
|
var narrower = "http://www.w3.org/2004/02/skos/core#narrower";
|
|
@@ -23883,7 +23976,17 @@ var skosImport = /* @__PURE__ */ Object.freeze({
|
|
|
23883
23976
|
inScheme,
|
|
23884
23977
|
hasTopConcept,
|
|
23885
23978
|
topConceptOf,
|
|
23979
|
+
prefLabel,
|
|
23980
|
+
altLabel,
|
|
23981
|
+
hiddenLabel,
|
|
23886
23982
|
notation,
|
|
23983
|
+
note: note3,
|
|
23984
|
+
changeNote,
|
|
23985
|
+
definition: definition2,
|
|
23986
|
+
editorialNote,
|
|
23987
|
+
example: example2,
|
|
23988
|
+
historyNote,
|
|
23989
|
+
scopeNote,
|
|
23887
23990
|
semanticRelation,
|
|
23888
23991
|
broader,
|
|
23889
23992
|
narrower,
|
|
@@ -24081,7 +24184,7 @@ var tabontImport = /* @__PURE__ */ Object.freeze({
|
|
|
24081
24184
|
// ../node_modules/rdf-namespaces/dist/vcard-16bbe2a9.js
|
|
24082
24185
|
var Acquaintance = "http://www.w3.org/2006/vcard/ns#Acquaintance";
|
|
24083
24186
|
var Address3 = "http://www.w3.org/2006/vcard/ns#Address";
|
|
24084
|
-
var
|
|
24187
|
+
var Agent3 = "http://www.w3.org/2006/vcard/ns#Agent";
|
|
24085
24188
|
var BBS = "http://www.w3.org/2006/vcard/ns#BBS";
|
|
24086
24189
|
var Car3 = "http://www.w3.org/2006/vcard/ns#Car";
|
|
24087
24190
|
var Cell = "http://www.w3.org/2006/vcard/ns#Cell";
|
|
@@ -24199,7 +24302,7 @@ var longitude5 = "http://www.w3.org/2006/vcard/ns#longitude";
|
|
|
24199
24302
|
var mailer = "http://www.w3.org/2006/vcard/ns#mailer";
|
|
24200
24303
|
var n = "http://www.w3.org/2006/vcard/ns#n";
|
|
24201
24304
|
var nickname = "http://www.w3.org/2006/vcard/ns#nickname";
|
|
24202
|
-
var
|
|
24305
|
+
var note4 = "http://www.w3.org/2006/vcard/ns#note";
|
|
24203
24306
|
var org = "http://www.w3.org/2006/vcard/ns#org";
|
|
24204
24307
|
var photo4 = "http://www.w3.org/2006/vcard/ns#photo";
|
|
24205
24308
|
var prodid2 = "http://www.w3.org/2006/vcard/ns#prodid";
|
|
@@ -24208,14 +24311,14 @@ var rev = "http://www.w3.org/2006/vcard/ns#rev";
|
|
|
24208
24311
|
var role2 = "http://www.w3.org/2006/vcard/ns#role";
|
|
24209
24312
|
var sound = "http://www.w3.org/2006/vcard/ns#sound";
|
|
24210
24313
|
var tel = "http://www.w3.org/2006/vcard/ns#tel";
|
|
24211
|
-
var
|
|
24314
|
+
var title9 = "http://www.w3.org/2006/vcard/ns#title";
|
|
24212
24315
|
var tz = "http://www.w3.org/2006/vcard/ns#tz";
|
|
24213
24316
|
var url6 = "http://www.w3.org/2006/vcard/ns#url";
|
|
24214
24317
|
var value6 = "http://www.w3.org/2006/vcard/ns#value";
|
|
24215
24318
|
var vcardImport = /* @__PURE__ */ Object.freeze({
|
|
24216
24319
|
Acquaintance,
|
|
24217
24320
|
Address: Address3,
|
|
24218
|
-
Agent:
|
|
24321
|
+
Agent: Agent3,
|
|
24219
24322
|
BBS,
|
|
24220
24323
|
Car: Car3,
|
|
24221
24324
|
Cell,
|
|
@@ -24333,7 +24436,7 @@ var vcardImport = /* @__PURE__ */ Object.freeze({
|
|
|
24333
24436
|
mailer,
|
|
24334
24437
|
n,
|
|
24335
24438
|
nickname,
|
|
24336
|
-
note:
|
|
24439
|
+
note: note4,
|
|
24337
24440
|
org,
|
|
24338
24441
|
photo: photo4,
|
|
24339
24442
|
prodid: prodid2,
|
|
@@ -24342,7 +24445,7 @@ var vcardImport = /* @__PURE__ */ Object.freeze({
|
|
|
24342
24445
|
role: role2,
|
|
24343
24446
|
sound,
|
|
24344
24447
|
tel,
|
|
24345
|
-
title:
|
|
24448
|
+
title: title9,
|
|
24346
24449
|
tz,
|
|
24347
24450
|
url: url6,
|
|
24348
24451
|
value: value6
|
|
@@ -24370,7 +24473,7 @@ var creates = "http://www.w3.org/2005/01/wf/flow#creates";
|
|
|
24370
24473
|
var dateDue = "http://www.w3.org/2005/01/wf/flow#dateDue";
|
|
24371
24474
|
var deliverable = "http://www.w3.org/2005/01/wf/flow#deliverable";
|
|
24372
24475
|
var dependent2 = "http://www.w3.org/2005/01/wf/flow#dependent";
|
|
24373
|
-
var
|
|
24476
|
+
var description11 = "http://www.w3.org/2005/01/wf/flow#description";
|
|
24374
24477
|
var final = "http://www.w3.org/2005/01/wf/flow#final";
|
|
24375
24478
|
var goalDescription = "http://www.w3.org/2005/01/wf/flow#goalDescription";
|
|
24376
24479
|
var initialState = "http://www.w3.org/2005/01/wf/flow#initialState";
|
|
@@ -24414,7 +24517,7 @@ var wfImport = /* @__PURE__ */ Object.freeze({
|
|
|
24414
24517
|
dateDue,
|
|
24415
24518
|
deliverable,
|
|
24416
24519
|
dependent: dependent2,
|
|
24417
|
-
description:
|
|
24520
|
+
description: description11,
|
|
24418
24521
|
final,
|
|
24419
24522
|
goalDescription,
|
|
24420
24523
|
initialState,
|
|
@@ -24540,6 +24643,7 @@ var xsdImport = /* @__PURE__ */ Object.freeze({
|
|
|
24540
24643
|
var acl = aclImport;
|
|
24541
24644
|
var arg = argImport;
|
|
24542
24645
|
var as = asImport;
|
|
24646
|
+
var bookmark = bookmarkImport;
|
|
24543
24647
|
var cal = calImport;
|
|
24544
24648
|
var contact3 = contactImport;
|
|
24545
24649
|
var dc = dcImport;
|