@blocklet/server-js 1.16.52-beta-20250911-023851-d988be85 → 1.16.52-beta-20250916-025146-35d976f4
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 +7 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +51 -0
- package/dist/types.js +11 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +1 -1
- package/lib/node.d.ts +7 -0
- package/lib/schema/graphql.json +51 -0
- package/lib/types.js +11 -0
- package/lib/types.js.map +1 -1
- package/package.json +2 -2
package/dist/browser.d.ts
CHANGED
|
@@ -1013,6 +1013,12 @@ declare namespace ABTNodeClient {
|
|
|
1013
1013
|
includeFollowStatus: boolean;
|
|
1014
1014
|
}
|
|
1015
1015
|
|
|
1016
|
+
interface QueryUserFollowStateOptionsInput {
|
|
1017
|
+
includeFollowing: boolean;
|
|
1018
|
+
includeFollowers: boolean;
|
|
1019
|
+
includeInvitees: boolean;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1016
1022
|
interface RequestAbortBlockletBackupInput {
|
|
1017
1023
|
appPid: string;
|
|
1018
1024
|
}
|
|
@@ -2106,6 +2112,7 @@ declare namespace ABTNodeClient {
|
|
|
2106
2112
|
interface RequestUserRelationCountInput {
|
|
2107
2113
|
teamDid: string;
|
|
2108
2114
|
userDids: string[];
|
|
2115
|
+
options: ABTNodeClient.QueryUserFollowStateOptionsInput;
|
|
2109
2116
|
}
|
|
2110
2117
|
|
|
2111
2118
|
interface RequestUserRelationQueryInput {
|