@pod-os/core 0.18.1-rc.5f8057b.0 → 0.18.1-rc.93bb261.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-3LTXZPFZ.js → chunk-FVHR3ZCY.js} +11810 -21896
- package/dist/dist-B3GAMWT3.js +9771 -0
- package/dist/index.js +10293 -226
- package/lib/index.js +13231 -4157
- package/package.json +2 -2
- package/types/Store.d.ts +1 -2
- package/types/index.d.ts +3 -1
- package/types/offline-cache/index.d.ts +1 -1
- package/types/search/SearchGateway.d.ts +1 -1
- package/types/uri/index.d.ts +1 -0
- package/dist/dist-4BQLT63G.js +0 -694
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pod-os/core",
|
|
3
|
-
"version": "0.18.1-rc.
|
|
3
|
+
"version": "0.18.1-rc.93bb261.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"buffer": "^6.0.3",
|
|
54
54
|
"lunr": "^2.3.9",
|
|
55
55
|
"rdf-namespaces": "^1.16.0",
|
|
56
|
-
"rdflib": "
|
|
56
|
+
"rdflib": "2.2.37-38360c03",
|
|
57
57
|
"rxjs": "^7.8.2",
|
|
58
58
|
"slugify": "^1.6.6",
|
|
59
59
|
"url": "^0.11.4"
|
package/types/Store.d.ts
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ export * from "./profile";
|
|
|
19
19
|
export * from "./search";
|
|
20
20
|
export * from "./offline-cache";
|
|
21
21
|
export * from "./terms";
|
|
22
|
+
export * from "./Store";
|
|
23
|
+
export * from "./uri";
|
|
22
24
|
export interface PodOsConfiguration {
|
|
23
25
|
offlineCache?: OfflineCache;
|
|
24
26
|
onlineStatus?: OnlineStatus;
|
|
@@ -52,7 +54,7 @@ export declare class PodOS {
|
|
|
52
54
|
fetchProfile(webId: string): Promise<WebIdProfile>;
|
|
53
55
|
/**
|
|
54
56
|
* Fetch the private label index for the given profile and build a search index from it
|
|
55
|
-
* @param
|
|
57
|
+
* @param profile
|
|
56
58
|
*/
|
|
57
59
|
buildSearchIndex(profile: WebIdProfile): Promise<import("./search").SearchIndex>;
|
|
58
60
|
logout(): Promise<void>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { OfflineCapableFetcher } from "./OfflineCapableFetcher";
|
|
1
|
+
export { OfflineCapableFetcher, OfflineCapableFetcherOptions, } from "./OfflineCapableFetcher";
|
|
2
2
|
export { OfflineCache, CachedRdfDocument, NoOfflineCache, } from "./OfflineCache";
|
|
3
3
|
export { OnlineStatus, AssumeAlwaysOnline } from "./OnlineStatus";
|
|
@@ -8,7 +8,7 @@ export declare class SearchGateway {
|
|
|
8
8
|
constructor(store: Store);
|
|
9
9
|
/**
|
|
10
10
|
* Fetch the private label index for the given profile and build a search index from it
|
|
11
|
-
* @param
|
|
11
|
+
* @param profile
|
|
12
12
|
*/
|
|
13
13
|
buildSearchIndex(profile: WebIdProfile): Promise<SearchIndex>;
|
|
14
14
|
addToLabelIndex(thing: Thing, labelIndex: LabelIndex): Promise<void>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UriService } from "./UriService";
|