@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pod-os/core",
3
- "version": "0.18.1-rc.5f8057b.0",
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": "^2.2.37",
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
@@ -39,7 +39,6 @@ export declare class Store {
39
39
  flagAuthorizationMetadata(): void;
40
40
  loadModule<T>(module: PodOsModule<T>): T;
41
41
  }
42
- interface PodOsModule<T> {
42
+ export interface PodOsModule<T> {
43
43
  readonly default: new (config: ModuleConfig) => T;
44
44
  }
45
- export {};
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 webId
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 webId
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";