roamjs-components 0.73.15 → 0.73.16
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 +2 -0
package/package.json
CHANGED
package/types/query-builder.d.ts
CHANGED
|
@@ -96,11 +96,13 @@ export declare type ParseQuery = (q: RoamBasicNode | string) => {
|
|
|
96
96
|
selectionsNodesUid: string;
|
|
97
97
|
customNodeUid: string;
|
|
98
98
|
isCustomEnabled: boolean;
|
|
99
|
+
isBackendEnabled: boolean;
|
|
99
100
|
};
|
|
100
101
|
export declare type FireQuery = (query: {
|
|
101
102
|
returnNode: string;
|
|
102
103
|
conditions: Condition[];
|
|
103
104
|
selections: Selection[];
|
|
105
|
+
isBackendEnabled: boolean;
|
|
104
106
|
}) => Promise<Result[]>;
|
|
105
107
|
export declare type ConditionToDatalog = (condition: Condition) => DatalogClause[];
|
|
106
108
|
export declare type RegisterDatalogTranslator = (args: {
|