@blocklet/server-js 1.16.52-beta-20250909-073849-4e392ab1 → 1.16.52-beta-20250912-112002-e3499e9c
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 +16 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +134 -0
- package/dist/types.js +24 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +25 -1
- package/lib/node.d.ts +16 -0
- package/lib/schema/graphql.json +134 -0
- package/lib/types.js +24 -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 {
|
|
@@ -3468,6 +3475,7 @@ declare namespace ABTNodeClient {
|
|
|
3468
3475
|
activity: ABTNodeClient.NotificationActivity;
|
|
3469
3476
|
actorInfo: ABTNodeClient.UserInfo;
|
|
3470
3477
|
options: Record<string, any>;
|
|
3478
|
+
utm: ABTNodeClient.TUTM;
|
|
3471
3479
|
}
|
|
3472
3480
|
|
|
3473
3481
|
interface NotificationAction {
|
|
@@ -3476,6 +3484,7 @@ declare namespace ABTNodeClient {
|
|
|
3476
3484
|
link: string;
|
|
3477
3485
|
name: string;
|
|
3478
3486
|
title: string;
|
|
3487
|
+
utm: ABTNodeClient.TUTM;
|
|
3479
3488
|
}
|
|
3480
3489
|
|
|
3481
3490
|
interface NotificationActivity {
|
|
@@ -4510,6 +4519,13 @@ declare namespace ABTNodeClient {
|
|
|
4510
4519
|
failed: number;
|
|
4511
4520
|
}
|
|
4512
4521
|
|
|
4522
|
+
interface TUTM {
|
|
4523
|
+
source: string;
|
|
4524
|
+
medium: string;
|
|
4525
|
+
campaign: string;
|
|
4526
|
+
content: string;
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4513
4529
|
interface Tag {
|
|
4514
4530
|
id: number;
|
|
4515
4531
|
title: string;
|