@imbricate/core 3.8.2 → 3.9.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.
Files changed (2) hide show
  1. package/origin/search.d.ts +10 -7
  2. package/package.json +1 -1
@@ -9,15 +9,18 @@ export declare enum IMBRICATE_SEARCH_TARGET_TYPE {
9
9
  MARKDOWN = "MARKDOWN"
10
10
  }
11
11
  export type ImbricateSearchTargetSwitch<T extends IMBRICATE_SEARCH_TARGET_TYPE> = T extends IMBRICATE_SEARCH_TARGET_TYPE.DATABASE ? {
12
- databaseUniqueIdentifier: string;
12
+ readonly originUniqueIdentifier: string;
13
+ readonly databaseUniqueIdentifier: string;
13
14
  } : T extends IMBRICATE_SEARCH_TARGET_TYPE.DOCUMENT ? {
14
- databaseUniqueIdentifier: string;
15
- documentUniqueIdentifier: string;
15
+ readonly originUniqueIdentifier: string;
16
+ readonly databaseUniqueIdentifier: string;
17
+ readonly documentUniqueIdentifier: string;
16
18
  } : T extends IMBRICATE_SEARCH_TARGET_TYPE.MARKDOWN ? {
17
- databaseUniqueIdentifier: string;
18
- documentUniqueIdentifier: string;
19
- propertyUniqueIdentifier: string;
20
- lineNumber: number;
19
+ readonly originUniqueIdentifier: string;
20
+ readonly databaseUniqueIdentifier: string;
21
+ readonly documentUniqueIdentifier: string;
22
+ readonly propertyUniqueIdentifier: string;
23
+ readonly lineNumber: number;
21
24
  } : never;
22
25
  export type ImbricateSearchTarget<T extends IMBRICATE_SEARCH_TARGET_TYPE> = {
23
26
  readonly type: T;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "3.8.2",
4
+ "version": "3.9.0",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",