roamjs-components 0.73.15 → 0.73.17
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 +1 -1
- package/types/query-builder.d.ts +3 -0
package/package.json
CHANGED
package/types/query-builder.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export declare type ExportTypes = {
|
|
|
36
36
|
callback: (args: {
|
|
37
37
|
filename: string;
|
|
38
38
|
graph: string;
|
|
39
|
+
isBackendEnabled: boolean;
|
|
39
40
|
}) => Promise<{
|
|
40
41
|
title: string;
|
|
41
42
|
content: string;
|
|
@@ -96,11 +97,13 @@ export declare type ParseQuery = (q: RoamBasicNode | string) => {
|
|
|
96
97
|
selectionsNodesUid: string;
|
|
97
98
|
customNodeUid: string;
|
|
98
99
|
isCustomEnabled: boolean;
|
|
100
|
+
isBackendEnabled: boolean;
|
|
99
101
|
};
|
|
100
102
|
export declare type FireQuery = (query: {
|
|
101
103
|
returnNode: string;
|
|
102
104
|
conditions: Condition[];
|
|
103
105
|
selections: Selection[];
|
|
106
|
+
isBackendEnabled: boolean;
|
|
104
107
|
}) => Promise<Result[]>;
|
|
105
108
|
export declare type ConditionToDatalog = (condition: Condition) => DatalogClause[];
|
|
106
109
|
export declare type RegisterDatalogTranslator = (args: {
|