@ixo/editor 1.13.0 → 1.15.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.
package/dist/index.d.ts CHANGED
@@ -728,6 +728,18 @@ interface Request {
728
728
  totalApplications: number;
729
729
  description?: string;
730
730
  }
731
+ interface Project {
732
+ did: string;
733
+ name: string;
734
+ icon: string;
735
+ description?: string;
736
+ }
737
+ interface Dao {
738
+ did: string;
739
+ name: string;
740
+ icon: string;
741
+ description?: string;
742
+ }
731
743
  interface Oracle {
732
744
  did: string;
733
745
  name: string;
@@ -931,6 +943,14 @@ interface BlocknoteHandlers {
931
943
  data: Request[];
932
944
  totalCount: number;
933
945
  }>;
946
+ getDaos: (relayerDid: string, page: number) => Promise<{
947
+ data: Dao[];
948
+ totalCount: number;
949
+ }>;
950
+ getProjects: (relayerDid: string, page: number) => Promise<{
951
+ data: Project[];
952
+ totalCount: number;
953
+ }>;
934
954
  getMembers: (address: string, groupCoreAddress: string, withBalance: boolean, page: number) => Promise<{
935
955
  data: Member[];
936
956
  totalCount: number;
package/dist/index.mjs CHANGED
@@ -18,7 +18,7 @@ import {
18
18
  useBlocknoteHandlers,
19
19
  useCreateCollaborativeIxoEditor,
20
20
  useCreateIxoEditor
21
- } from "./chunk-3LUJTQVK.mjs";
21
+ } from "./chunk-HNGZPIVW.mjs";
22
22
  export {
23
23
  ApiRequestBlockSpec,
24
24
  AuthzExecActionTypes,
@@ -18,7 +18,7 @@ import {
18
18
  useBlocknoteHandlers,
19
19
  useCreateCollaborativeIxoEditor,
20
20
  useCreateIxoEditor
21
- } from "../chunk-3LUJTQVK.mjs";
21
+ } from "../chunk-HNGZPIVW.mjs";
22
22
  export {
23
23
  ApiRequestBlockSpec,
24
24
  AuthzExecActionTypes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ixo/editor",
3
- "version": "1.13.0",
3
+ "version": "1.15.0",
4
4
  "description": "A custom BlockNote editor wrapper for IXO team",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",