@imbricate/core 1.15.0 → 1.16.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
|
export interface IImbricateOriginCollection {
|
|
11
11
|
readonly collectionName: string;
|
|
12
12
|
readonly description?: string;
|
|
13
|
+
readonly includeInSearch: boolean;
|
|
13
14
|
createPage(directories: string[], title: string, initialContent: string): PromiseOr<IImbricatePage>;
|
|
14
15
|
putPage(pageMetadata: ImbricatePageMetadata, content: string): PromiseOr<IImbricatePage>;
|
|
15
16
|
retitlePage(identifier: string, newTitle: string): PromiseOr<void>;
|
package/origin/interface.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export interface IImbricateOrigin {
|
|
|
14
14
|
readonly metadata: ImbricateOriginMetadata;
|
|
15
15
|
readonly payloads: Record<string, any>;
|
|
16
16
|
getFunctionManger(): IImbricateFunctionManager;
|
|
17
|
-
createCollection(collectionName: string, description?: string
|
|
17
|
+
createCollection(collectionName: string, description?: string): PromiseOr<void>;
|
|
18
18
|
renameCollection(collectionName: string, newCollectionName: string): PromiseOr<void>;
|
|
19
19
|
deleteCollection(collectionName: string): PromiseOr<void>;
|
|
20
20
|
hasCollection(collectionName: string): PromiseOr<boolean>;
|