@blocklet/server-js 1.17.8-beta-20260119-102944-6ba93a16 → 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 +18 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +154 -0
- package/dist/types.js +26 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +190 -1
- package/lib/node.d.ts +18 -0
- package/lib/schema/graphql.json +154 -0
- package/lib/types.js +26 -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 {
|
|
@@ -1231,6 +1232,7 @@ declare namespace ABTNodeClient {
|
|
|
1231
1232
|
gateway: ABTNodeClient.BlockletGatewayInput;
|
|
1232
1233
|
aigne: ABTNodeClient.AigneConfigInput;
|
|
1233
1234
|
org: ABTNodeClient.OrgSettingsInput;
|
|
1235
|
+
subService: ABTNodeClient.SubServiceConfigInput;
|
|
1234
1236
|
}
|
|
1235
1237
|
|
|
1236
1238
|
interface RequestCheckDomainsInput {
|
|
@@ -2387,6 +2389,12 @@ declare namespace ABTNodeClient {
|
|
|
2387
2389
|
did: string;
|
|
2388
2390
|
}
|
|
2389
2391
|
|
|
2392
|
+
interface SubServiceConfigInput {
|
|
2393
|
+
enabled: boolean;
|
|
2394
|
+
domain: string;
|
|
2395
|
+
staticRoot: string;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2390
2398
|
interface TagInput {
|
|
2391
2399
|
id: number;
|
|
2392
2400
|
title: string;
|
|
@@ -2488,6 +2496,7 @@ declare namespace ABTNodeClient {
|
|
|
2488
2496
|
address: ABTNodeClient.UserAddressInput;
|
|
2489
2497
|
userSessionsCount: number;
|
|
2490
2498
|
isFollowing: boolean;
|
|
2499
|
+
name: string;
|
|
2491
2500
|
}
|
|
2492
2501
|
|
|
2493
2502
|
interface UserMetadataInput {
|
|
@@ -3010,6 +3019,7 @@ declare namespace ABTNodeClient {
|
|
|
3010
3019
|
didConnect: Record<string, any>;
|
|
3011
3020
|
oauth: Record<string, any>;
|
|
3012
3021
|
actionConfig: Record<string, any>;
|
|
3022
|
+
subService: ABTNodeClient.SubServiceConfig;
|
|
3013
3023
|
}
|
|
3014
3024
|
|
|
3015
3025
|
interface BlockletState {
|
|
@@ -3817,6 +3827,7 @@ declare namespace ABTNodeClient {
|
|
|
3817
3827
|
membersCount: number;
|
|
3818
3828
|
passports: ABTNodeClient.Passport[];
|
|
3819
3829
|
metadata: Record<string, any>;
|
|
3830
|
+
avatar: string;
|
|
3820
3831
|
}
|
|
3821
3832
|
|
|
3822
3833
|
interface OrgResourceResult {
|
|
@@ -4803,6 +4814,12 @@ declare namespace ABTNodeClient {
|
|
|
4803
4814
|
failed: number;
|
|
4804
4815
|
}
|
|
4805
4816
|
|
|
4817
|
+
interface SubServiceConfig {
|
|
4818
|
+
enabled: boolean;
|
|
4819
|
+
domain: string;
|
|
4820
|
+
staticRoot: string;
|
|
4821
|
+
}
|
|
4822
|
+
|
|
4806
4823
|
interface TUTM {
|
|
4807
4824
|
source: string;
|
|
4808
4825
|
medium: string;
|
|
@@ -4932,6 +4949,7 @@ declare namespace ABTNodeClient {
|
|
|
4932
4949
|
address: ABTNodeClient.UserAddress;
|
|
4933
4950
|
userSessionsCount: number;
|
|
4934
4951
|
isFollowing: boolean;
|
|
4952
|
+
name: string;
|
|
4935
4953
|
}
|
|
4936
4954
|
|
|
4937
4955
|
interface UserMetadata {
|