@pod-os/core 0.17.1-rc.624a4a0.0 → 0.17.1-rc.6bd4b35.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 +229 -113
- package/lib/index.js +603 -487
- package/package.json +10 -10
- package/types/Store.d.ts +16 -10
- package/types/index.d.ts +3 -1
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,29 +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-
|
|
2756
|
-
return
|
|
2757
|
-
store: store.graph,
|
|
2758
|
-
fetcher: store.fetcher,
|
|
2759
|
-
updater: store.updater
|
|
2760
|
-
});
|
|
2755
|
+
const module2 = await import("./dist-4BQLT63G.js");
|
|
2756
|
+
return store.loadModule(module2);
|
|
2761
2757
|
}
|
|
2762
2758
|
|
|
2763
2759
|
// src/thing/accumulateSubjects.ts
|
|
2764
|
-
var accumulateSubjects = (accumulator,
|
|
2765
|
-
const existing = accumulator[
|
|
2760
|
+
var accumulateSubjects = (accumulator, current3) => {
|
|
2761
|
+
const existing = accumulator[current3.predicate.uri];
|
|
2766
2762
|
return {
|
|
2767
2763
|
...accumulator,
|
|
2768
|
-
[
|
|
2764
|
+
[current3.predicate.uri]: existing ? [...existing, current3.subject.value] : [current3.subject.value]
|
|
2769
2765
|
};
|
|
2770
2766
|
};
|
|
2771
2767
|
|
|
2772
2768
|
// src/thing/accumulateValues.ts
|
|
2773
|
-
var accumulateValues = (accumulator,
|
|
2774
|
-
const existing = accumulator[
|
|
2769
|
+
var accumulateValues = (accumulator, current3) => {
|
|
2770
|
+
const existing = accumulator[current3.predicate.uri];
|
|
2775
2771
|
return {
|
|
2776
2772
|
...accumulator,
|
|
2777
|
-
[
|
|
2773
|
+
[current3.predicate.uri]: existing ? [...existing, current3.object.value] : [current3.object.value]
|
|
2778
2774
|
};
|
|
2779
2775
|
};
|
|
2780
2776
|
|
|
@@ -3287,17 +3283,17 @@ var AssumeAlwaysOnline = class {
|
|
|
3287
3283
|
|
|
3288
3284
|
// src/Store.ts
|
|
3289
3285
|
var Store = class {
|
|
3290
|
-
constructor(session4, offlineCache = new NoOfflineCache(), onlineStatus = new AssumeAlwaysOnline()) {
|
|
3291
|
-
this.
|
|
3292
|
-
this.fetcher = new OfflineCapableFetcher(this.
|
|
3286
|
+
constructor(session4, offlineCache = new NoOfflineCache(), onlineStatus = new AssumeAlwaysOnline(), internalStore = graph()) {
|
|
3287
|
+
this.internalStore = internalStore;
|
|
3288
|
+
this.fetcher = new OfflineCapableFetcher(this.internalStore, {
|
|
3293
3289
|
fetch: session4.authenticatedFetch,
|
|
3294
3290
|
offlineCache,
|
|
3295
3291
|
isOnline: onlineStatus.isOnline
|
|
3296
3292
|
});
|
|
3297
|
-
this.updater = new UpdateManager(this.
|
|
3293
|
+
this.updater = new UpdateManager(this.internalStore);
|
|
3298
3294
|
}
|
|
3299
3295
|
/**
|
|
3300
|
-
* Fetch data for the given URI to the
|
|
3296
|
+
* Fetch data for the given URI to the internalStore
|
|
3301
3297
|
* @param uri
|
|
3302
3298
|
*/
|
|
3303
3299
|
fetch(uri6) {
|
|
@@ -3313,7 +3309,7 @@ var Store = class {
|
|
|
3313
3309
|
});
|
|
3314
3310
|
}
|
|
3315
3311
|
/**
|
|
3316
|
-
* Fetch all the given URIs in parallel and put the data to the
|
|
3312
|
+
* Fetch all the given URIs in parallel and put the data to the internalStore
|
|
3317
3313
|
* @param uris
|
|
3318
3314
|
*/
|
|
3319
3315
|
fetchAll(uris) {
|
|
@@ -3321,12 +3317,12 @@ var Store = class {
|
|
|
3321
3317
|
return Promise.allSettled(responses);
|
|
3322
3318
|
}
|
|
3323
3319
|
/**
|
|
3324
|
-
* Retrieve the thing identified by the given URI from the
|
|
3320
|
+
* Retrieve the thing identified by the given URI from the internalStore
|
|
3325
3321
|
* @param uri
|
|
3326
3322
|
*/
|
|
3327
3323
|
get(uri6) {
|
|
3328
3324
|
const editable = !!this.updater.editable(uri6);
|
|
3329
|
-
return new Thing(uri6, this.
|
|
3325
|
+
return new Thing(uri6, this.internalStore, editable);
|
|
3330
3326
|
}
|
|
3331
3327
|
/**
|
|
3332
3328
|
* Adds a new value to the property of the given thing
|
|
@@ -3376,6 +3372,16 @@ var Store = class {
|
|
|
3376
3372
|
async executeUpdate(operation3) {
|
|
3377
3373
|
await executeUpdate(this.fetcher, this.updater, operation3);
|
|
3378
3374
|
}
|
|
3375
|
+
flagAuthorizationMetadata() {
|
|
3376
|
+
this.updater.flagAuthorizationMetadata();
|
|
3377
|
+
}
|
|
3378
|
+
loadModule(module2) {
|
|
3379
|
+
return new module2.default({
|
|
3380
|
+
store: this.internalStore,
|
|
3381
|
+
fetcher: this.fetcher,
|
|
3382
|
+
updater: this.updater
|
|
3383
|
+
});
|
|
3384
|
+
}
|
|
3379
3385
|
};
|
|
3380
3386
|
|
|
3381
3387
|
// ../node_modules/rdf-namespaces/dist/index.es.js
|
|
@@ -3384,6 +3390,7 @@ __export(index_es_exports, {
|
|
|
3384
3390
|
acl: () => acl,
|
|
3385
3391
|
arg: () => arg,
|
|
3386
3392
|
as: () => as,
|
|
3393
|
+
bookmark: () => bookmark,
|
|
3387
3394
|
cal: () => cal,
|
|
3388
3395
|
contact: () => contact3,
|
|
3389
3396
|
dc: () => dc,
|
|
@@ -3478,7 +3485,7 @@ var argImport = /* @__PURE__ */ Object.freeze({
|
|
|
3478
3485
|
support
|
|
3479
3486
|
});
|
|
3480
3487
|
|
|
3481
|
-
// ../node_modules/rdf-namespaces/dist/as-
|
|
3488
|
+
// ../node_modules/rdf-namespaces/dist/as-48207dab.js
|
|
3482
3489
|
var actor = "https://www.w3.org/ns/activitystreams#actor";
|
|
3483
3490
|
var attributedTo = "https://www.w3.org/ns/activitystreams#attributedTo";
|
|
3484
3491
|
var attachment = "https://www.w3.org/ns/activitystreams#attachment";
|
|
@@ -3488,20 +3495,26 @@ var bcc = "https://www.w3.org/ns/activitystreams#bcc";
|
|
|
3488
3495
|
var bto = "https://www.w3.org/ns/activitystreams#bto";
|
|
3489
3496
|
var cc = "https://www.w3.org/ns/activitystreams#cc";
|
|
3490
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";
|
|
3491
3500
|
var generator = "https://www.w3.org/ns/activitystreams#generator";
|
|
3492
3501
|
var icon = "https://www.w3.org/ns/activitystreams#icon";
|
|
3493
3502
|
var image = "https://www.w3.org/ns/activitystreams#image";
|
|
3494
3503
|
var inReplyTo = "https://www.w3.org/ns/activitystreams#inReplyTo";
|
|
3495
3504
|
var items = "https://www.w3.org/ns/activitystreams#items";
|
|
3505
|
+
var last = "https://www.w3.org/ns/activitystreams#last";
|
|
3496
3506
|
var location = "https://www.w3.org/ns/activitystreams#location";
|
|
3507
|
+
var next = "https://www.w3.org/ns/activitystreams#next";
|
|
3497
3508
|
var object = "https://www.w3.org/ns/activitystreams#object";
|
|
3498
3509
|
var oneOf = "https://www.w3.org/ns/activitystreams#oneOf";
|
|
3499
3510
|
var anyOf = "https://www.w3.org/ns/activitystreams#anyOf";
|
|
3511
|
+
var prev = "https://www.w3.org/ns/activitystreams#prev";
|
|
3500
3512
|
var preview = "https://www.w3.org/ns/activitystreams#preview";
|
|
3501
3513
|
var provider = "https://www.w3.org/ns/activitystreams#provider";
|
|
3502
3514
|
var replies = "https://www.w3.org/ns/activitystreams#replies";
|
|
3503
3515
|
var result = "https://www.w3.org/ns/activitystreams#result";
|
|
3504
3516
|
var audience = "https://www.w3.org/ns/activitystreams#audience";
|
|
3517
|
+
var partOf = "https://www.w3.org/ns/activitystreams#partOf";
|
|
3505
3518
|
var tag = "https://www.w3.org/ns/activitystreams#tag";
|
|
3506
3519
|
var tags = "https://www.w3.org/ns/activitystreams#tags";
|
|
3507
3520
|
var target = "https://www.w3.org/ns/activitystreams#target";
|
|
@@ -3509,6 +3522,7 @@ var origin2 = "https://www.w3.org/ns/activitystreams#origin";
|
|
|
3509
3522
|
var instrument = "https://www.w3.org/ns/activitystreams#instrument";
|
|
3510
3523
|
var to = "https://www.w3.org/ns/activitystreams#to";
|
|
3511
3524
|
var url = "https://www.w3.org/ns/activitystreams#url";
|
|
3525
|
+
var subject = "https://www.w3.org/ns/activitystreams#subject";
|
|
3512
3526
|
var relationship = "https://www.w3.org/ns/activitystreams#relationship";
|
|
3513
3527
|
var describes = "https://www.w3.org/ns/activitystreams#describes";
|
|
3514
3528
|
var formerType = "https://www.w3.org/ns/activitystreams#formerType";
|
|
@@ -3606,20 +3620,26 @@ var asImport = /* @__PURE__ */ Object.freeze({
|
|
|
3606
3620
|
bto,
|
|
3607
3621
|
cc,
|
|
3608
3622
|
context: context2,
|
|
3623
|
+
current,
|
|
3624
|
+
first,
|
|
3609
3625
|
generator,
|
|
3610
3626
|
icon,
|
|
3611
3627
|
image,
|
|
3612
3628
|
inReplyTo,
|
|
3613
3629
|
items,
|
|
3630
|
+
last,
|
|
3614
3631
|
location,
|
|
3632
|
+
next,
|
|
3615
3633
|
object,
|
|
3616
3634
|
oneOf,
|
|
3617
3635
|
anyOf,
|
|
3636
|
+
prev,
|
|
3618
3637
|
preview,
|
|
3619
3638
|
provider,
|
|
3620
3639
|
replies,
|
|
3621
3640
|
result,
|
|
3622
3641
|
audience,
|
|
3642
|
+
partOf,
|
|
3623
3643
|
tag,
|
|
3624
3644
|
tags,
|
|
3625
3645
|
target,
|
|
@@ -3627,6 +3647,7 @@ var asImport = /* @__PURE__ */ Object.freeze({
|
|
|
3627
3647
|
instrument,
|
|
3628
3648
|
to,
|
|
3629
3649
|
url,
|
|
3650
|
+
subject,
|
|
3630
3651
|
relationship,
|
|
3631
3652
|
describes,
|
|
3632
3653
|
formerType,
|
|
@@ -3716,6 +3737,26 @@ var asImport = /* @__PURE__ */ Object.freeze({
|
|
|
3716
3737
|
Video
|
|
3717
3738
|
});
|
|
3718
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
|
+
|
|
3719
3760
|
// ../node_modules/rdf-namespaces/dist/cal-a0992050.js
|
|
3720
3761
|
var Vevent = "http://www.w3.org/2002/12/cal/ical#Vevent";
|
|
3721
3762
|
var Vtodo = "http://www.w3.org/2002/12/cal/ical#Vtodo";
|
|
@@ -3915,7 +3956,7 @@ var publisher = "http://purl.org/dc/elements/1.1/publisher";
|
|
|
3915
3956
|
var relation = "http://purl.org/dc/elements/1.1/relation";
|
|
3916
3957
|
var rights = "http://purl.org/dc/elements/1.1/rights";
|
|
3917
3958
|
var source = "http://purl.org/dc/elements/1.1/source";
|
|
3918
|
-
var
|
|
3959
|
+
var subject2 = "http://purl.org/dc/elements/1.1/subject";
|
|
3919
3960
|
var title = "http://purl.org/dc/elements/1.1/title";
|
|
3920
3961
|
var type = "http://purl.org/dc/elements/1.1/type";
|
|
3921
3962
|
var dcImport = /* @__PURE__ */ Object.freeze({
|
|
@@ -3931,12 +3972,13 @@ var dcImport = /* @__PURE__ */ Object.freeze({
|
|
|
3931
3972
|
relation,
|
|
3932
3973
|
rights,
|
|
3933
3974
|
source,
|
|
3934
|
-
subject,
|
|
3975
|
+
subject: subject2,
|
|
3935
3976
|
title,
|
|
3936
3977
|
type
|
|
3937
3978
|
});
|
|
3938
3979
|
|
|
3939
|
-
// ../node_modules/rdf-namespaces/dist/dct-
|
|
3980
|
+
// ../node_modules/rdf-namespaces/dist/dct-00f7660b.js
|
|
3981
|
+
var Agent = "http://purl.org/dc/terms/Agent";
|
|
3940
3982
|
var AgentClass = "http://purl.org/dc/terms/AgentClass";
|
|
3941
3983
|
var BibliographicResource = "http://purl.org/dc/terms/BibliographicResource";
|
|
3942
3984
|
var Box = "http://purl.org/dc/terms/Box";
|
|
@@ -4017,13 +4059,14 @@ var rights2 = "http://purl.org/dc/terms/rights";
|
|
|
4017
4059
|
var rightsHolder = "http://purl.org/dc/terms/rightsHolder";
|
|
4018
4060
|
var source2 = "http://purl.org/dc/terms/source";
|
|
4019
4061
|
var spatial = "http://purl.org/dc/terms/spatial";
|
|
4020
|
-
var
|
|
4062
|
+
var subject3 = "http://purl.org/dc/terms/subject";
|
|
4021
4063
|
var tableOfContents = "http://purl.org/dc/terms/tableOfContents";
|
|
4022
4064
|
var temporal = "http://purl.org/dc/terms/temporal";
|
|
4023
4065
|
var title2 = "http://purl.org/dc/terms/title";
|
|
4024
4066
|
var type2 = "http://purl.org/dc/terms/type";
|
|
4025
4067
|
var valid = "http://purl.org/dc/terms/valid";
|
|
4026
4068
|
var dctImport = /* @__PURE__ */ Object.freeze({
|
|
4069
|
+
Agent,
|
|
4027
4070
|
AgentClass,
|
|
4028
4071
|
BibliographicResource,
|
|
4029
4072
|
Box,
|
|
@@ -4104,7 +4147,7 @@ var dctImport = /* @__PURE__ */ Object.freeze({
|
|
|
4104
4147
|
rightsHolder,
|
|
4105
4148
|
source: source2,
|
|
4106
4149
|
spatial,
|
|
4107
|
-
subject:
|
|
4150
|
+
subject: subject3,
|
|
4108
4151
|
tableOfContents,
|
|
4109
4152
|
temporal,
|
|
4110
4153
|
title: title2,
|
|
@@ -4112,7 +4155,7 @@ var dctImport = /* @__PURE__ */ Object.freeze({
|
|
|
4112
4155
|
valid
|
|
4113
4156
|
});
|
|
4114
4157
|
|
|
4115
|
-
// ../node_modules/rdf-namespaces/dist/fhir-
|
|
4158
|
+
// ../node_modules/rdf-namespaces/dist/fhir-09bb1d53.js
|
|
4116
4159
|
var constituent = "http://hl7.org/fhir/constituent";
|
|
4117
4160
|
var _careTeam = "http://hl7.org/fhir/_careTeam";
|
|
4118
4161
|
var ClinicalUseDefinitionWarningComponent = "http://hl7.org/fhir/ClinicalUseDefinitionWarningComponent";
|
|
@@ -4469,6 +4512,7 @@ var _compositional = "http://hl7.org/fhir/_compositional";
|
|
|
4469
4512
|
var financial = "http://hl7.org/fhir/financial";
|
|
4470
4513
|
var _bodysite = "http://hl7.org/fhir/_bodysite";
|
|
4471
4514
|
var sourceScope = "http://hl7.org/fhir/sourceScope";
|
|
4515
|
+
var modifierExtensionClass = "http://hl7.org/fhir/modifierExtensionClass";
|
|
4472
4516
|
var parameter = "http://hl7.org/fhir/parameter";
|
|
4473
4517
|
var lineItem = "http://hl7.org/fhir/lineItem";
|
|
4474
4518
|
var _businessArrangement = "http://hl7.org/fhir/_businessArrangement";
|
|
@@ -4512,6 +4556,7 @@ var TestPlanTestCaseTestRunComponent = "http://hl7.org/fhir/TestPlanTestCaseTest
|
|
|
4512
4556
|
var _productOrService = "http://hl7.org/fhir/_productOrService";
|
|
4513
4557
|
var reviewOutcome = "http://hl7.org/fhir/reviewOutcome";
|
|
4514
4558
|
var maxDispense = "http://hl7.org/fhir/maxDispense";
|
|
4559
|
+
var modifierExtensionProperty = "http://hl7.org/fhir/modifierExtensionProperty";
|
|
4515
4560
|
var filterDefinition = "http://hl7.org/fhir/filterDefinition";
|
|
4516
4561
|
var sourceAttachment = "http://hl7.org/fhir/sourceAttachment";
|
|
4517
4562
|
var provisionActor = "http://hl7.org/fhir/provisionActor";
|
|
@@ -4748,7 +4793,7 @@ var RiskAssessmentPredictionComponent = "http://hl7.org/fhir/RiskAssessmentPredi
|
|
|
4748
4793
|
var _enteredDate = "http://hl7.org/fhir/_enteredDate";
|
|
4749
4794
|
var _legalStatusOfSupply = "http://hl7.org/fhir/_legalStatusOfSupply";
|
|
4750
4795
|
var valueAlternatives = "http://hl7.org/fhir/valueAlternatives";
|
|
4751
|
-
var
|
|
4796
|
+
var subject4 = "http://hl7.org/fhir/subject";
|
|
4752
4797
|
var _publicationDate = "http://hl7.org/fhir/_publicationDate";
|
|
4753
4798
|
var occurrenceChanged = "http://hl7.org/fhir/occurrenceChanged";
|
|
4754
4799
|
var _referralRequest = "http://hl7.org/fhir/_referralRequest";
|
|
@@ -6201,7 +6246,7 @@ var signature = "http://hl7.org/fhir/signature";
|
|
|
6201
6246
|
var reviewer = "http://hl7.org/fhir/reviewer";
|
|
6202
6247
|
var _usePeriod = "http://hl7.org/fhir/_usePeriod";
|
|
6203
6248
|
var BodyStructureIncludedStructureComponent = "http://hl7.org/fhir/BodyStructureIncludedStructureComponent";
|
|
6204
|
-
var
|
|
6249
|
+
var next2 = "http://hl7.org/fhir/next";
|
|
6205
6250
|
var _changeType = "http://hl7.org/fhir/_changeType";
|
|
6206
6251
|
var _ImmunizationEvaluation = "http://hl7.org/fhir/_ImmunizationEvaluation";
|
|
6207
6252
|
var requestingOrganization = "http://hl7.org/fhir/requestingOrganization";
|
|
@@ -6249,7 +6294,7 @@ var MeasureTermComponent = "http://hl7.org/fhir/MeasureTermComponent";
|
|
|
6249
6294
|
var _containedItemQuantity = "http://hl7.org/fhir/_containedItemQuantity";
|
|
6250
6295
|
var _daysSupply = "http://hl7.org/fhir/_daysSupply";
|
|
6251
6296
|
var reportingVendor = "http://hl7.org/fhir/reportingVendor";
|
|
6252
|
-
var
|
|
6297
|
+
var current2 = "http://hl7.org/fhir/current";
|
|
6253
6298
|
var uid3 = "http://hl7.org/fhir/uid";
|
|
6254
6299
|
var order = "http://hl7.org/fhir/order";
|
|
6255
6300
|
var priorPrescription = "http://hl7.org/fhir/priorPrescription";
|
|
@@ -7420,7 +7465,7 @@ var _focal = "http://hl7.org/fhir/_focal";
|
|
|
7420
7465
|
var indication = "http://hl7.org/fhir/indication";
|
|
7421
7466
|
var _AllergyIntolerance = "http://hl7.org/fhir/_AllergyIntolerance";
|
|
7422
7467
|
var _publishedIn = "http://hl7.org/fhir/_publishedIn";
|
|
7423
|
-
var
|
|
7468
|
+
var partOf2 = "http://hl7.org/fhir/partOf";
|
|
7424
7469
|
var _initialSelected = "http://hl7.org/fhir/_initialSelected";
|
|
7425
7470
|
var _key = "http://hl7.org/fhir/_key";
|
|
7426
7471
|
var backCurve = "http://hl7.org/fhir/backCurve";
|
|
@@ -8702,6 +8747,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
8702
8747
|
financial,
|
|
8703
8748
|
_bodysite,
|
|
8704
8749
|
sourceScope,
|
|
8750
|
+
modifierExtensionClass,
|
|
8705
8751
|
parameter,
|
|
8706
8752
|
lineItem,
|
|
8707
8753
|
_businessArrangement,
|
|
@@ -8745,6 +8791,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
8745
8791
|
_productOrService,
|
|
8746
8792
|
reviewOutcome,
|
|
8747
8793
|
maxDispense,
|
|
8794
|
+
modifierExtensionProperty,
|
|
8748
8795
|
filterDefinition,
|
|
8749
8796
|
sourceAttachment,
|
|
8750
8797
|
provisionActor,
|
|
@@ -8981,7 +9028,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
8981
9028
|
_enteredDate,
|
|
8982
9029
|
_legalStatusOfSupply,
|
|
8983
9030
|
valueAlternatives,
|
|
8984
|
-
subject:
|
|
9031
|
+
subject: subject4,
|
|
8985
9032
|
_publicationDate,
|
|
8986
9033
|
occurrenceChanged,
|
|
8987
9034
|
_referralRequest,
|
|
@@ -10434,7 +10481,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
10434
10481
|
reviewer,
|
|
10435
10482
|
_usePeriod,
|
|
10436
10483
|
BodyStructureIncludedStructureComponent,
|
|
10437
|
-
next,
|
|
10484
|
+
next: next2,
|
|
10438
10485
|
_changeType,
|
|
10439
10486
|
_ImmunizationEvaluation,
|
|
10440
10487
|
requestingOrganization,
|
|
@@ -10482,7 +10529,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
10482
10529
|
_containedItemQuantity,
|
|
10483
10530
|
_daysSupply,
|
|
10484
10531
|
reportingVendor,
|
|
10485
|
-
current,
|
|
10532
|
+
current: current2,
|
|
10486
10533
|
uid: uid3,
|
|
10487
10534
|
order,
|
|
10488
10535
|
priorPrescription,
|
|
@@ -11653,7 +11700,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
11653
11700
|
indication,
|
|
11654
11701
|
_AllergyIntolerance,
|
|
11655
11702
|
_publishedIn,
|
|
11656
|
-
partOf,
|
|
11703
|
+
partOf: partOf2,
|
|
11657
11704
|
_initialSelected,
|
|
11658
11705
|
_key,
|
|
11659
11706
|
backCurve,
|
|
@@ -12581,7 +12628,7 @@ var fhirImport = /* @__PURE__ */ Object.freeze({
|
|
|
12581
12628
|
});
|
|
12582
12629
|
|
|
12583
12630
|
// ../node_modules/rdf-namespaces/dist/foaf-85ab4e00.js
|
|
12584
|
-
var
|
|
12631
|
+
var Agent2 = "http://xmlns.com/foaf/0.1/Agent";
|
|
12585
12632
|
var Document2 = "http://xmlns.com/foaf/0.1/Document";
|
|
12586
12633
|
var Group3 = "http://xmlns.com/foaf/0.1/Group";
|
|
12587
12634
|
var Image2 = "http://xmlns.com/foaf/0.1/Image";
|
|
@@ -12657,7 +12704,7 @@ var workInfoHomepage = "http://xmlns.com/foaf/0.1/workInfoHomepage";
|
|
|
12657
12704
|
var workplaceHomepage = "http://xmlns.com/foaf/0.1/workplaceHomepage";
|
|
12658
12705
|
var yahooChatID = "http://xmlns.com/foaf/0.1/yahooChatID";
|
|
12659
12706
|
var foafImport = /* @__PURE__ */ Object.freeze({
|
|
12660
|
-
Agent,
|
|
12707
|
+
Agent: Agent2,
|
|
12661
12708
|
Document: Document2,
|
|
12662
12709
|
Group: Group3,
|
|
12663
12710
|
Image: Image2,
|
|
@@ -12780,15 +12827,15 @@ var entrypoint = "http://www.w3.org/ns/hydra/core#entrypoint";
|
|
|
12780
12827
|
var expects = "http://www.w3.org/ns/hydra/core#expects";
|
|
12781
12828
|
var expectsHeader = "http://www.w3.org/ns/hydra/core#expectsHeader";
|
|
12782
12829
|
var extension2 = "http://www.w3.org/ns/hydra/core#extension";
|
|
12783
|
-
var
|
|
12830
|
+
var first2 = "http://www.w3.org/ns/hydra/core#first";
|
|
12784
12831
|
var freetextQuery = "http://www.w3.org/ns/hydra/core#freetextQuery";
|
|
12785
12832
|
var headerName = "http://www.w3.org/ns/hydra/core#headerName";
|
|
12786
|
-
var
|
|
12833
|
+
var last2 = "http://www.w3.org/ns/hydra/core#last";
|
|
12787
12834
|
var limit2 = "http://www.w3.org/ns/hydra/core#limit";
|
|
12788
12835
|
var mapping2 = "http://www.w3.org/ns/hydra/core#mapping";
|
|
12789
12836
|
var member3 = "http://www.w3.org/ns/hydra/core#member";
|
|
12790
12837
|
var method4 = "http://www.w3.org/ns/hydra/core#method";
|
|
12791
|
-
var
|
|
12838
|
+
var next3 = "http://www.w3.org/ns/hydra/core#next";
|
|
12792
12839
|
var offset2 = "http://www.w3.org/ns/hydra/core#offset";
|
|
12793
12840
|
var operation2 = "http://www.w3.org/ns/hydra/core#operation";
|
|
12794
12841
|
var pageIndex = "http://www.w3.org/ns/hydra/core#pageIndex";
|
|
@@ -12842,15 +12889,15 @@ var hydraImport = /* @__PURE__ */ Object.freeze({
|
|
|
12842
12889
|
expects,
|
|
12843
12890
|
expectsHeader,
|
|
12844
12891
|
extension: extension2,
|
|
12845
|
-
first,
|
|
12892
|
+
first: first2,
|
|
12846
12893
|
freetextQuery,
|
|
12847
12894
|
headerName,
|
|
12848
|
-
last,
|
|
12895
|
+
last: last2,
|
|
12849
12896
|
limit: limit2,
|
|
12850
12897
|
mapping: mapping2,
|
|
12851
12898
|
member: member3,
|
|
12852
12899
|
method: method4,
|
|
12853
|
-
next:
|
|
12900
|
+
next: next3,
|
|
12854
12901
|
offset: offset2,
|
|
12855
12902
|
operation: operation2,
|
|
12856
12903
|
pageIndex,
|
|
@@ -13054,7 +13101,7 @@ var meetingImport = /* @__PURE__ */ Object.freeze({
|
|
|
13054
13101
|
videoCallPage
|
|
13055
13102
|
});
|
|
13056
13103
|
|
|
13057
|
-
// ../node_modules/rdf-namespaces/dist/owl-
|
|
13104
|
+
// ../node_modules/rdf-namespaces/dist/owl-cfadfdf5.js
|
|
13058
13105
|
var AllDifferent = "http://www.w3.org/2002/07/owl#AllDifferent";
|
|
13059
13106
|
var AllDisjointClasses = "http://www.w3.org/2002/07/owl#AllDisjointClasses";
|
|
13060
13107
|
var AllDisjointProperties = "http://www.w3.org/2002/07/owl#AllDisjointProperties";
|
|
@@ -13086,11 +13133,13 @@ var annotatedProperty = "http://www.w3.org/2002/07/owl#annotatedProperty";
|
|
|
13086
13133
|
var annotatedSource = "http://www.w3.org/2002/07/owl#annotatedSource";
|
|
13087
13134
|
var annotatedTarget = "http://www.w3.org/2002/07/owl#annotatedTarget";
|
|
13088
13135
|
var assertionProperty = "http://www.w3.org/2002/07/owl#assertionProperty";
|
|
13136
|
+
var backwardCompatibleWith = "http://www.w3.org/2002/07/owl#backwardCompatibleWith";
|
|
13089
13137
|
var bottomDataProperty = "http://www.w3.org/2002/07/owl#bottomDataProperty";
|
|
13090
13138
|
var bottomObjectProperty = "http://www.w3.org/2002/07/owl#bottomObjectProperty";
|
|
13091
13139
|
var cardinality = "http://www.w3.org/2002/07/owl#cardinality";
|
|
13092
13140
|
var complementOf = "http://www.w3.org/2002/07/owl#complementOf";
|
|
13093
13141
|
var datatypeComplementOf = "http://www.w3.org/2002/07/owl#datatypeComplementOf";
|
|
13142
|
+
var deprecated = "http://www.w3.org/2002/07/owl#deprecated";
|
|
13094
13143
|
var differentFrom = "http://www.w3.org/2002/07/owl#differentFrom";
|
|
13095
13144
|
var disjointUnionOf = "http://www.w3.org/2002/07/owl#disjointUnionOf";
|
|
13096
13145
|
var disjointWith = "http://www.w3.org/2002/07/owl#disjointWith";
|
|
@@ -13100,6 +13149,7 @@ var equivalentProperty = "http://www.w3.org/2002/07/owl#equivalentProperty";
|
|
|
13100
13149
|
var hasKey = "http://www.w3.org/2002/07/owl#hasKey";
|
|
13101
13150
|
var hasSelf = "http://www.w3.org/2002/07/owl#hasSelf";
|
|
13102
13151
|
var hasValue = "http://www.w3.org/2002/07/owl#hasValue";
|
|
13152
|
+
var incompatibleWith = "http://www.w3.org/2002/07/owl#incompatibleWith";
|
|
13103
13153
|
var intersectionOf = "http://www.w3.org/2002/07/owl#intersectionOf";
|
|
13104
13154
|
var inverseOf = "http://www.w3.org/2002/07/owl#inverseOf";
|
|
13105
13155
|
var maxCardinality = "http://www.w3.org/2002/07/owl#maxCardinality";
|
|
@@ -13113,6 +13163,7 @@ var onDatatype = "http://www.w3.org/2002/07/owl#onDatatype";
|
|
|
13113
13163
|
var oneOf2 = "http://www.w3.org/2002/07/owl#oneOf";
|
|
13114
13164
|
var onProperties = "http://www.w3.org/2002/07/owl#onProperties";
|
|
13115
13165
|
var onProperty = "http://www.w3.org/2002/07/owl#onProperty";
|
|
13166
|
+
var priorVersion = "http://www.w3.org/2002/07/owl#priorVersion";
|
|
13116
13167
|
var propertyChainAxiom = "http://www.w3.org/2002/07/owl#propertyChainAxiom";
|
|
13117
13168
|
var propertyDisjointWith = "http://www.w3.org/2002/07/owl#propertyDisjointWith";
|
|
13118
13169
|
var qualifiedCardinality = "http://www.w3.org/2002/07/owl#qualifiedCardinality";
|
|
@@ -13124,6 +13175,7 @@ var targetValue = "http://www.w3.org/2002/07/owl#targetValue";
|
|
|
13124
13175
|
var topDataProperty = "http://www.w3.org/2002/07/owl#topDataProperty";
|
|
13125
13176
|
var topObjectProperty = "http://www.w3.org/2002/07/owl#topObjectProperty";
|
|
13126
13177
|
var unionOf = "http://www.w3.org/2002/07/owl#unionOf";
|
|
13178
|
+
var versionInfo = "http://www.w3.org/2002/07/owl#versionInfo";
|
|
13127
13179
|
var withRestrictions = "http://www.w3.org/2002/07/owl#withRestrictions";
|
|
13128
13180
|
var owlImport = /* @__PURE__ */ Object.freeze({
|
|
13129
13181
|
AllDifferent,
|
|
@@ -13157,11 +13209,13 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13157
13209
|
annotatedSource,
|
|
13158
13210
|
annotatedTarget,
|
|
13159
13211
|
assertionProperty,
|
|
13212
|
+
backwardCompatibleWith,
|
|
13160
13213
|
bottomDataProperty,
|
|
13161
13214
|
bottomObjectProperty,
|
|
13162
13215
|
cardinality,
|
|
13163
13216
|
complementOf,
|
|
13164
13217
|
datatypeComplementOf,
|
|
13218
|
+
deprecated,
|
|
13165
13219
|
differentFrom,
|
|
13166
13220
|
disjointUnionOf,
|
|
13167
13221
|
disjointWith,
|
|
@@ -13171,6 +13225,7 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13171
13225
|
hasKey,
|
|
13172
13226
|
hasSelf,
|
|
13173
13227
|
hasValue,
|
|
13228
|
+
incompatibleWith,
|
|
13174
13229
|
intersectionOf,
|
|
13175
13230
|
inverseOf,
|
|
13176
13231
|
maxCardinality,
|
|
@@ -13184,6 +13239,7 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13184
13239
|
oneOf: oneOf2,
|
|
13185
13240
|
onProperties,
|
|
13186
13241
|
onProperty,
|
|
13242
|
+
priorVersion,
|
|
13187
13243
|
propertyChainAxiom,
|
|
13188
13244
|
propertyDisjointWith,
|
|
13189
13245
|
qualifiedCardinality,
|
|
@@ -13195,6 +13251,7 @@ var owlImport = /* @__PURE__ */ Object.freeze({
|
|
|
13195
13251
|
topDataProperty,
|
|
13196
13252
|
topObjectProperty,
|
|
13197
13253
|
unionOf,
|
|
13254
|
+
versionInfo,
|
|
13198
13255
|
withRestrictions
|
|
13199
13256
|
});
|
|
13200
13257
|
|
|
@@ -13265,7 +13322,7 @@ var PlainLiteral = "http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral";
|
|
|
13265
13322
|
var type4 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type";
|
|
13266
13323
|
var Property2 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property";
|
|
13267
13324
|
var Statement = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement";
|
|
13268
|
-
var
|
|
13325
|
+
var subject5 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#subject";
|
|
13269
13326
|
var predicate = "http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate";
|
|
13270
13327
|
var object3 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#object";
|
|
13271
13328
|
var Bag = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag";
|
|
@@ -13273,7 +13330,7 @@ var Seq = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq";
|
|
|
13273
13330
|
var Alt = "http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt";
|
|
13274
13331
|
var value2 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#value";
|
|
13275
13332
|
var List3 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#List";
|
|
13276
|
-
var
|
|
13333
|
+
var first3 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#first";
|
|
13277
13334
|
var rest2 = "http://www.w3.org/1999/02/22-rdf-syntax-ns#rest";
|
|
13278
13335
|
var XMLLiteral = "http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral";
|
|
13279
13336
|
var JSON__workaround = "http://www.w3.org/1999/02/22-rdf-syntax-ns#JSON";
|
|
@@ -13287,7 +13344,7 @@ var rdfImport = /* @__PURE__ */ Object.freeze({
|
|
|
13287
13344
|
type: type4,
|
|
13288
13345
|
Property: Property2,
|
|
13289
13346
|
Statement,
|
|
13290
|
-
subject:
|
|
13347
|
+
subject: subject5,
|
|
13291
13348
|
predicate,
|
|
13292
13349
|
object: object3,
|
|
13293
13350
|
Bag,
|
|
@@ -13295,7 +13352,7 @@ var rdfImport = /* @__PURE__ */ Object.freeze({
|
|
|
13295
13352
|
Alt,
|
|
13296
13353
|
value: value2,
|
|
13297
13354
|
List: List3,
|
|
13298
|
-
first:
|
|
13355
|
+
first: first3,
|
|
13299
13356
|
rest: rest2,
|
|
13300
13357
|
XMLLiteral,
|
|
13301
13358
|
JSON__workaround,
|
|
@@ -23384,7 +23441,7 @@ var Rule2 = "http://www.w3.org/ns/shacl#Rule";
|
|
|
23384
23441
|
var rule2 = "http://www.w3.org/ns/shacl#rule";
|
|
23385
23442
|
var condition2 = "http://www.w3.org/ns/shacl#condition";
|
|
23386
23443
|
var TripleRule = "http://www.w3.org/ns/shacl#TripleRule";
|
|
23387
|
-
var
|
|
23444
|
+
var subject6 = "http://www.w3.org/ns/shacl#subject";
|
|
23388
23445
|
var predicate2 = "http://www.w3.org/ns/shacl#predicate";
|
|
23389
23446
|
var object6 = "http://www.w3.org/ns/shacl#object";
|
|
23390
23447
|
var SPARQLRule = "http://www.w3.org/ns/shacl#SPARQLRule";
|
|
@@ -23526,7 +23583,7 @@ var shaclImport = /* @__PURE__ */ Object.freeze({
|
|
|
23526
23583
|
rule: rule2,
|
|
23527
23584
|
condition: condition2,
|
|
23528
23585
|
TripleRule,
|
|
23529
|
-
subject:
|
|
23586
|
+
subject: subject6,
|
|
23530
23587
|
predicate: predicate2,
|
|
23531
23588
|
object: object6,
|
|
23532
23589
|
SPARQLRule,
|
|
@@ -23678,7 +23735,7 @@ var shexImport = /* @__PURE__ */ Object.freeze({
|
|
|
23678
23735
|
xsFacet
|
|
23679
23736
|
});
|
|
23680
23737
|
|
|
23681
|
-
// ../node_modules/rdf-namespaces/dist/sioc-
|
|
23738
|
+
// ../node_modules/rdf-namespaces/dist/sioc-0842c71e.js
|
|
23682
23739
|
var Community = "http://rdfs.org/sioc/ns#Community";
|
|
23683
23740
|
var Container3 = "http://rdfs.org/sioc/ns#Container";
|
|
23684
23741
|
var Forum = "http://rdfs.org/sioc/ns#Forum";
|
|
@@ -23701,6 +23758,7 @@ var content4 = "http://rdfs.org/sioc/ns#content";
|
|
|
23701
23758
|
var creator_of = "http://rdfs.org/sioc/ns#creator_of";
|
|
23702
23759
|
var delivered_at = "http://rdfs.org/sioc/ns#delivered_at";
|
|
23703
23760
|
var discussion_of = "http://rdfs.org/sioc/ns#discussion_of";
|
|
23761
|
+
var earlier_version = "http://rdfs.org/sioc/ns#earlier_version";
|
|
23704
23762
|
var email3 = "http://rdfs.org/sioc/ns#email";
|
|
23705
23763
|
var email_sha1 = "http://rdfs.org/sioc/ns#email_sha1";
|
|
23706
23764
|
var embeds_knowledge = "http://rdfs.org/sioc/ns#embeds_knowledge";
|
|
@@ -23730,6 +23788,7 @@ var ip_address = "http://rdfs.org/sioc/ns#ip_address";
|
|
|
23730
23788
|
var last_activity_date = "http://rdfs.org/sioc/ns#last_activity_date";
|
|
23731
23789
|
var last_item_date = "http://rdfs.org/sioc/ns#last_item_date";
|
|
23732
23790
|
var last_reply_date = "http://rdfs.org/sioc/ns#last_reply_date";
|
|
23791
|
+
var later_version = "http://rdfs.org/sioc/ns#later_version";
|
|
23733
23792
|
var latest_version = "http://rdfs.org/sioc/ns#latest_version";
|
|
23734
23793
|
var likes = "http://rdfs.org/sioc/ns#likes";
|
|
23735
23794
|
var link2 = "http://rdfs.org/sioc/ns#link";
|
|
@@ -23757,10 +23816,24 @@ var reply_of = "http://rdfs.org/sioc/ns#reply_of";
|
|
|
23757
23816
|
var respond_to = "http://rdfs.org/sioc/ns#respond_to";
|
|
23758
23817
|
var scope_of = "http://rdfs.org/sioc/ns#scope_of";
|
|
23759
23818
|
var shared_by = "http://rdfs.org/sioc/ns#shared_by";
|
|
23819
|
+
var sibling3 = "http://rdfs.org/sioc/ns#sibling";
|
|
23760
23820
|
var space_of = "http://rdfs.org/sioc/ns#space_of";
|
|
23761
23821
|
var subscriber_of = "http://rdfs.org/sioc/ns#subscriber_of";
|
|
23762
23822
|
var topic3 = "http://rdfs.org/sioc/ns#topic";
|
|
23763
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";
|
|
23764
23837
|
var siocImport = /* @__PURE__ */ Object.freeze({
|
|
23765
23838
|
Community,
|
|
23766
23839
|
Container: Container3,
|
|
@@ -23784,6 +23857,7 @@ var siocImport = /* @__PURE__ */ Object.freeze({
|
|
|
23784
23857
|
creator_of,
|
|
23785
23858
|
delivered_at,
|
|
23786
23859
|
discussion_of,
|
|
23860
|
+
earlier_version,
|
|
23787
23861
|
email: email3,
|
|
23788
23862
|
email_sha1,
|
|
23789
23863
|
embeds_knowledge,
|
|
@@ -23813,6 +23887,7 @@ var siocImport = /* @__PURE__ */ Object.freeze({
|
|
|
23813
23887
|
last_activity_date,
|
|
23814
23888
|
last_item_date,
|
|
23815
23889
|
last_reply_date,
|
|
23890
|
+
later_version,
|
|
23816
23891
|
latest_version,
|
|
23817
23892
|
likes,
|
|
23818
23893
|
link: link2,
|
|
@@ -23840,13 +23915,27 @@ var siocImport = /* @__PURE__ */ Object.freeze({
|
|
|
23840
23915
|
respond_to,
|
|
23841
23916
|
scope_of,
|
|
23842
23917
|
shared_by,
|
|
23918
|
+
sibling: sibling3,
|
|
23843
23919
|
space_of,
|
|
23844
23920
|
subscriber_of,
|
|
23845
23921
|
topic: topic3,
|
|
23846
|
-
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
|
|
23847
23936
|
});
|
|
23848
23937
|
|
|
23849
|
-
// ../node_modules/rdf-namespaces/dist/skos-
|
|
23938
|
+
// ../node_modules/rdf-namespaces/dist/skos-2b5965bf.js
|
|
23850
23939
|
var Concept = "http://www.w3.org/2004/02/skos/core#Concept";
|
|
23851
23940
|
var ConceptScheme = "http://www.w3.org/2004/02/skos/core#ConceptScheme";
|
|
23852
23941
|
var Collection5 = "http://www.w3.org/2004/02/skos/core#Collection";
|
|
@@ -23854,7 +23943,17 @@ var OrderedCollection2 = "http://www.w3.org/2004/02/skos/core#OrderedCollection"
|
|
|
23854
23943
|
var inScheme = "http://www.w3.org/2004/02/skos/core#inScheme";
|
|
23855
23944
|
var hasTopConcept = "http://www.w3.org/2004/02/skos/core#hasTopConcept";
|
|
23856
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";
|
|
23857
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";
|
|
23858
23957
|
var semanticRelation = "http://www.w3.org/2004/02/skos/core#semanticRelation";
|
|
23859
23958
|
var broader = "http://www.w3.org/2004/02/skos/core#broader";
|
|
23860
23959
|
var narrower = "http://www.w3.org/2004/02/skos/core#narrower";
|
|
@@ -23877,7 +23976,17 @@ var skosImport = /* @__PURE__ */ Object.freeze({
|
|
|
23877
23976
|
inScheme,
|
|
23878
23977
|
hasTopConcept,
|
|
23879
23978
|
topConceptOf,
|
|
23979
|
+
prefLabel,
|
|
23980
|
+
altLabel,
|
|
23981
|
+
hiddenLabel,
|
|
23880
23982
|
notation,
|
|
23983
|
+
note: note3,
|
|
23984
|
+
changeNote,
|
|
23985
|
+
definition: definition2,
|
|
23986
|
+
editorialNote,
|
|
23987
|
+
example: example2,
|
|
23988
|
+
historyNote,
|
|
23989
|
+
scopeNote,
|
|
23881
23990
|
semanticRelation,
|
|
23882
23991
|
broader,
|
|
23883
23992
|
narrower,
|
|
@@ -24075,7 +24184,7 @@ var tabontImport = /* @__PURE__ */ Object.freeze({
|
|
|
24075
24184
|
// ../node_modules/rdf-namespaces/dist/vcard-16bbe2a9.js
|
|
24076
24185
|
var Acquaintance = "http://www.w3.org/2006/vcard/ns#Acquaintance";
|
|
24077
24186
|
var Address3 = "http://www.w3.org/2006/vcard/ns#Address";
|
|
24078
|
-
var
|
|
24187
|
+
var Agent3 = "http://www.w3.org/2006/vcard/ns#Agent";
|
|
24079
24188
|
var BBS = "http://www.w3.org/2006/vcard/ns#BBS";
|
|
24080
24189
|
var Car3 = "http://www.w3.org/2006/vcard/ns#Car";
|
|
24081
24190
|
var Cell = "http://www.w3.org/2006/vcard/ns#Cell";
|
|
@@ -24193,7 +24302,7 @@ var longitude5 = "http://www.w3.org/2006/vcard/ns#longitude";
|
|
|
24193
24302
|
var mailer = "http://www.w3.org/2006/vcard/ns#mailer";
|
|
24194
24303
|
var n = "http://www.w3.org/2006/vcard/ns#n";
|
|
24195
24304
|
var nickname = "http://www.w3.org/2006/vcard/ns#nickname";
|
|
24196
|
-
var
|
|
24305
|
+
var note4 = "http://www.w3.org/2006/vcard/ns#note";
|
|
24197
24306
|
var org = "http://www.w3.org/2006/vcard/ns#org";
|
|
24198
24307
|
var photo4 = "http://www.w3.org/2006/vcard/ns#photo";
|
|
24199
24308
|
var prodid2 = "http://www.w3.org/2006/vcard/ns#prodid";
|
|
@@ -24202,14 +24311,14 @@ var rev = "http://www.w3.org/2006/vcard/ns#rev";
|
|
|
24202
24311
|
var role2 = "http://www.w3.org/2006/vcard/ns#role";
|
|
24203
24312
|
var sound = "http://www.w3.org/2006/vcard/ns#sound";
|
|
24204
24313
|
var tel = "http://www.w3.org/2006/vcard/ns#tel";
|
|
24205
|
-
var
|
|
24314
|
+
var title9 = "http://www.w3.org/2006/vcard/ns#title";
|
|
24206
24315
|
var tz = "http://www.w3.org/2006/vcard/ns#tz";
|
|
24207
24316
|
var url6 = "http://www.w3.org/2006/vcard/ns#url";
|
|
24208
24317
|
var value6 = "http://www.w3.org/2006/vcard/ns#value";
|
|
24209
24318
|
var vcardImport = /* @__PURE__ */ Object.freeze({
|
|
24210
24319
|
Acquaintance,
|
|
24211
24320
|
Address: Address3,
|
|
24212
|
-
Agent:
|
|
24321
|
+
Agent: Agent3,
|
|
24213
24322
|
BBS,
|
|
24214
24323
|
Car: Car3,
|
|
24215
24324
|
Cell,
|
|
@@ -24327,7 +24436,7 @@ var vcardImport = /* @__PURE__ */ Object.freeze({
|
|
|
24327
24436
|
mailer,
|
|
24328
24437
|
n,
|
|
24329
24438
|
nickname,
|
|
24330
|
-
note:
|
|
24439
|
+
note: note4,
|
|
24331
24440
|
org,
|
|
24332
24441
|
photo: photo4,
|
|
24333
24442
|
prodid: prodid2,
|
|
@@ -24336,7 +24445,7 @@ var vcardImport = /* @__PURE__ */ Object.freeze({
|
|
|
24336
24445
|
role: role2,
|
|
24337
24446
|
sound,
|
|
24338
24447
|
tel,
|
|
24339
|
-
title:
|
|
24448
|
+
title: title9,
|
|
24340
24449
|
tz,
|
|
24341
24450
|
url: url6,
|
|
24342
24451
|
value: value6
|
|
@@ -24364,7 +24473,7 @@ var creates = "http://www.w3.org/2005/01/wf/flow#creates";
|
|
|
24364
24473
|
var dateDue = "http://www.w3.org/2005/01/wf/flow#dateDue";
|
|
24365
24474
|
var deliverable = "http://www.w3.org/2005/01/wf/flow#deliverable";
|
|
24366
24475
|
var dependent2 = "http://www.w3.org/2005/01/wf/flow#dependent";
|
|
24367
|
-
var
|
|
24476
|
+
var description11 = "http://www.w3.org/2005/01/wf/flow#description";
|
|
24368
24477
|
var final = "http://www.w3.org/2005/01/wf/flow#final";
|
|
24369
24478
|
var goalDescription = "http://www.w3.org/2005/01/wf/flow#goalDescription";
|
|
24370
24479
|
var initialState = "http://www.w3.org/2005/01/wf/flow#initialState";
|
|
@@ -24408,7 +24517,7 @@ var wfImport = /* @__PURE__ */ Object.freeze({
|
|
|
24408
24517
|
dateDue,
|
|
24409
24518
|
deliverable,
|
|
24410
24519
|
dependent: dependent2,
|
|
24411
|
-
description:
|
|
24520
|
+
description: description11,
|
|
24412
24521
|
final,
|
|
24413
24522
|
goalDescription,
|
|
24414
24523
|
initialState,
|
|
@@ -24534,6 +24643,7 @@ var xsdImport = /* @__PURE__ */ Object.freeze({
|
|
|
24534
24643
|
var acl = aclImport;
|
|
24535
24644
|
var arg = argImport;
|
|
24536
24645
|
var as = asImport;
|
|
24646
|
+
var bookmark = bookmarkImport;
|
|
24537
24647
|
var cal = calImport;
|
|
24538
24648
|
var contact3 = contactImport;
|
|
24539
24649
|
var dc = dcImport;
|
|
@@ -24654,11 +24764,17 @@ var PodOS = class {
|
|
|
24654
24764
|
constructor({
|
|
24655
24765
|
session: session4 = {},
|
|
24656
24766
|
offlineCache = new NoOfflineCache(),
|
|
24657
|
-
onlineStatus = new AssumeAlwaysOnline()
|
|
24767
|
+
onlineStatus = new AssumeAlwaysOnline(),
|
|
24768
|
+
internalStore = void 0
|
|
24658
24769
|
} = {}) {
|
|
24659
24770
|
this.session = session4;
|
|
24660
24771
|
this.offlineCache = offlineCache;
|
|
24661
|
-
this.store = new Store(
|
|
24772
|
+
this.store = new Store(
|
|
24773
|
+
this.session,
|
|
24774
|
+
offlineCache,
|
|
24775
|
+
onlineStatus,
|
|
24776
|
+
internalStore
|
|
24777
|
+
);
|
|
24662
24778
|
this.searchGateway = new SearchGateway(this.store);
|
|
24663
24779
|
this.flagAuthorizationMetaDataOnSessionChange();
|
|
24664
24780
|
this.uriService = new UriService(this.store);
|
|
@@ -24674,7 +24790,7 @@ var PodOS = class {
|
|
|
24674
24790
|
flagAuthorizationMetaDataOnSessionChange() {
|
|
24675
24791
|
this.session.observeSession().pipe(
|
|
24676
24792
|
tap(() => {
|
|
24677
|
-
this.store.
|
|
24793
|
+
this.store.flagAuthorizationMetadata();
|
|
24678
24794
|
})
|
|
24679
24795
|
).subscribe();
|
|
24680
24796
|
}
|