roamjs-components 0.53.2 → 0.53.3

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/package.json +1 -1
  2. package/types/index.d.ts +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "roamjs-components",
3
3
  "description": "Description for roamjs-components",
4
- "version": "0.53.2",
4
+ "version": "0.53.3",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "scripts": {
package/types/index.d.ts CHANGED
@@ -424,7 +424,7 @@ declare global {
424
424
  selectionNodes: QueryBuilderSelection[];
425
425
  };
426
426
  conditionToDatalog: (condition: QueryBuilderCondition) => string;
427
- registerDatalogTransfer: (args: {
427
+ registerDatalogTranslator: (args: {
428
428
  key: string;
429
429
  callback: (args: {
430
430
  freeVar: (s: string) => string;
@@ -433,7 +433,7 @@ declare global {
433
433
  uid: string;
434
434
  }) => string;
435
435
  }) => void;
436
- unregisterDatalogTransfer: (args: {
436
+ unregisterDatalogTranslator: (args: {
437
437
  key: string;
438
438
  }) => void;
439
439
  registerSelection: (args: {