@imbricate/core 1.6.0 → 1.6.2

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.
@@ -3,8 +3,6 @@
3
3
  * @namespace Origin
4
4
  * @description Definition
5
5
  */
6
- import { IMBRICATE_SEARCH_SNIPPET_TYPE, ImbricateSearchResult } from "../search/snippet";
7
- export type ImbricateScriptSearchResult = ImbricateSearchResult<IMBRICATE_SEARCH_SNIPPET_TYPE.SCRIPT>;
8
6
  export type ImbricateOriginMetadata = {
9
7
  readonly type: string;
10
8
  };
@@ -5,9 +5,9 @@
5
5
  */
6
6
  import { IImbricateOriginCollection } from "../collection/interface";
7
7
  import { PromiseOr } from "../definition/promise";
8
- import { ImbricateScriptMetadata, ImbricateScriptSnapshot } from "../script/definition";
8
+ import { ImbricateScriptMetadata, ImbricateScriptSearchResult, ImbricateScriptSnapshot } from "../script/definition";
9
9
  import { IImbricateScript } from "../script/interface";
10
- import { ImbricateOriginMetadata, ImbricateScriptSearchResult } from "./definition";
10
+ import { ImbricateOriginMetadata } from "./definition";
11
11
  export interface IImbricateOrigin {
12
12
  readonly metadata: ImbricateOriginMetadata;
13
13
  readonly payloads: Record<string, any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "1.6.0",
4
+ "version": "1.6.2",
5
5
  "description": "Core for Imbricate",
6
6
  "repository": {
7
7
  "type": "git",
@@ -3,8 +3,9 @@
3
3
  * @namespace Page
4
4
  * @description Definition
5
5
  */
6
- import { IMBRICATE_SEARCH_SNIPPET_TYPE, ImbricateSearchResult } from "../search/snippet";
6
+ import { IMBRICATE_SEARCH_SNIPPET_TYPE, ImbricateSearchResult, ImbricateSearchSnippet } from "../search/snippet";
7
7
  export type ImbricatePageSearchResult = ImbricateSearchResult<IMBRICATE_SEARCH_SNIPPET_TYPE.PAGE>;
8
+ export type ImbricatePageSearchSnippet = ImbricateSearchSnippet<IMBRICATE_SEARCH_SNIPPET_TYPE.PAGE>;
8
9
  export type ImbricatePageSnapshot = {
9
10
  readonly title: string;
10
11
  readonly identifier: string;
@@ -3,6 +3,9 @@
3
3
  * @namespace Script
4
4
  * @description Definition
5
5
  */
6
+ import { IMBRICATE_SEARCH_SNIPPET_TYPE, ImbricateSearchResult, ImbricateSearchSnippet } from "../search/snippet";
7
+ export type ImbricateScriptSearchResult = ImbricateSearchResult<IMBRICATE_SEARCH_SNIPPET_TYPE.SCRIPT>;
8
+ export type ImbricateScriptSearchSnippet = ImbricateSearchSnippet<IMBRICATE_SEARCH_SNIPPET_TYPE.SCRIPT>;
6
9
  export type ImbricateScriptSnapshot = {
7
10
  readonly scriptName: string;
8
11
  readonly identifier: string;