@blocklet/server-js 1.17.8-beta-20260121-102603-f9d0176f → 1.17.8-beta-20260125-093329-64b43854
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/browser.d.ts +4 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +44 -0
- package/dist/types.js +4 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +50 -1
- package/lib/node.d.ts +4 -0
- package/lib/schema/graphql.json +44 -0
- package/lib/types.js +4 -0
- package/lib/types.js.map +1 -1
- package/package.json +4 -4
package/dist/browser.d.ts
CHANGED
|
@@ -1000,6 +1000,7 @@ declare namespace ABTNodeClient {
|
|
|
1000
1000
|
membersCount: number;
|
|
1001
1001
|
passports: ABTNodeClient.PassportInput[];
|
|
1002
1002
|
metadata: Record<string, any>;
|
|
1003
|
+
avatar: string;
|
|
1003
1004
|
}
|
|
1004
1005
|
|
|
1005
1006
|
interface OrgSettingsInput {
|
|
@@ -2495,6 +2496,7 @@ declare namespace ABTNodeClient {
|
|
|
2495
2496
|
address: ABTNodeClient.UserAddressInput;
|
|
2496
2497
|
userSessionsCount: number;
|
|
2497
2498
|
isFollowing: boolean;
|
|
2499
|
+
name: string;
|
|
2498
2500
|
}
|
|
2499
2501
|
|
|
2500
2502
|
interface UserMetadataInput {
|
|
@@ -3825,6 +3827,7 @@ declare namespace ABTNodeClient {
|
|
|
3825
3827
|
membersCount: number;
|
|
3826
3828
|
passports: ABTNodeClient.Passport[];
|
|
3827
3829
|
metadata: Record<string, any>;
|
|
3830
|
+
avatar: string;
|
|
3828
3831
|
}
|
|
3829
3832
|
|
|
3830
3833
|
interface OrgResourceResult {
|
|
@@ -4946,6 +4949,7 @@ declare namespace ABTNodeClient {
|
|
|
4946
4949
|
address: ABTNodeClient.UserAddress;
|
|
4947
4950
|
userSessionsCount: number;
|
|
4948
4951
|
isFollowing: boolean;
|
|
4952
|
+
name: string;
|
|
4949
4953
|
}
|
|
4950
4954
|
|
|
4951
4955
|
interface UserMetadata {
|