@imbricate/core 1.17.2 → 1.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.
@@ -10,6 +10,7 @@ import { ImbricatePageQuery, ImbricatePageQueryConfig, ImbricateSearchPageConfig
10
10
  import { ImbricateCollectionCapability } from "./definition";
11
11
  export interface IImbricateOriginCollection {
12
12
  readonly collectionName: string;
13
+ readonly uniqueIdentifier: string;
13
14
  readonly description?: string;
14
15
  readonly capabilities: ImbricateCollectionCapability;
15
16
  createPage(directories: string[], title: string, initialContent: string): PromiseOr<IImbricatePage>;
@@ -10,7 +10,6 @@ export declare enum IMBRICATE_DIGEST_ALGORITHM {
10
10
  SHA256 = "SHA256"
11
11
  }
12
12
  export type ImbricateOriginMetadata = {
13
- readonly type: string;
14
13
  readonly digestAlgorithm: IMBRICATE_DIGEST_ALGORITHM;
15
14
  };
16
15
  export type ImbricateOriginCapability = Record<IMBRICATE_ORIGIN_CAPABILITY_KEY, ImbricateCapability>;
@@ -11,6 +11,8 @@ import { ImbricateScriptMetadata, ImbricateScriptSearchResult, ImbricateScriptSn
11
11
  import { IImbricateScript } from "../script/interface";
12
12
  import { ImbricateOriginCapability, ImbricateOriginMetadata } from "./definition";
13
13
  export interface IImbricateOrigin {
14
+ readonly originType: string;
15
+ readonly uniqueIdentifier: string;
14
16
  readonly metadata: ImbricateOriginMetadata;
15
17
  readonly payloads: Record<string, any>;
16
18
  readonly capabilities: ImbricateOriginCapability;
package/package.json CHANGED
@@ -1,19 +1,21 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "1.17.2",
5
- "description": "Core for Imbricate",
4
+ "version": "1.18.0",
5
+ "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/Imbricate/Imbricate-Core.git"
8
+ "url": "git+https://github.com/Imbricate/Imbricate.git"
9
9
  },
10
10
  "keywords": [
11
+ "Notebook",
12
+ "Engineer",
11
13
  "API"
12
14
  ],
13
15
  "author": "WMXPY",
14
16
  "license": "MIT",
15
17
  "bugs": {
16
- "url": "https://github.com/Imbricate/Imbricate-Core/issues"
18
+ "url": "https://github.com/Imbricate/Imbricate/issues"
17
19
  },
18
20
  "homepage": "https://imbricate.io",
19
21
  "dependencies": {