@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
package/dist/mantine/index.mjs
CHANGED