@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/docs/QUERIES.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ABT Node GraphQL API List
|
|
2
2
|
|
|
3
|
-
> Updated on 2025-09-
|
|
3
|
+
> Updated on 2025-09-12T09:43:53.354Z
|
|
4
4
|
|
|
5
5
|
## Table of Contents
|
|
6
6
|
|
|
@@ -4471,6 +4471,12 @@ No arguments
|
|
|
4471
4471
|
link
|
|
4472
4472
|
name
|
|
4473
4473
|
title
|
|
4474
|
+
utm {
|
|
4475
|
+
campaign
|
|
4476
|
+
content
|
|
4477
|
+
medium
|
|
4478
|
+
source
|
|
4479
|
+
}
|
|
4474
4480
|
}
|
|
4475
4481
|
activity {
|
|
4476
4482
|
actor
|
|
@@ -4809,6 +4815,12 @@ No arguments
|
|
|
4809
4815
|
total
|
|
4810
4816
|
}
|
|
4811
4817
|
}
|
|
4818
|
+
utm {
|
|
4819
|
+
campaign
|
|
4820
|
+
content
|
|
4821
|
+
medium
|
|
4822
|
+
source
|
|
4823
|
+
}
|
|
4812
4824
|
}
|
|
4813
4825
|
paging {
|
|
4814
4826
|
page
|
|
@@ -4876,6 +4888,12 @@ No arguments
|
|
|
4876
4888
|
link
|
|
4877
4889
|
name
|
|
4878
4890
|
title
|
|
4891
|
+
utm {
|
|
4892
|
+
campaign
|
|
4893
|
+
content
|
|
4894
|
+
medium
|
|
4895
|
+
source
|
|
4896
|
+
}
|
|
4879
4897
|
}
|
|
4880
4898
|
activity {
|
|
4881
4899
|
actor
|
|
@@ -5214,6 +5232,12 @@ No arguments
|
|
|
5214
5232
|
total
|
|
5215
5233
|
}
|
|
5216
5234
|
}
|
|
5235
|
+
utm {
|
|
5236
|
+
campaign
|
|
5237
|
+
content
|
|
5238
|
+
medium
|
|
5239
|
+
source
|
|
5240
|
+
}
|
|
5217
5241
|
}
|
|
5218
5242
|
paging {
|
|
5219
5243
|
page
|
package/lib/node.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;
|
package/lib/schema/graphql.json
CHANGED
|
@@ -2973,6 +2973,47 @@
|
|
|
2973
2973
|
"enumValues": null,
|
|
2974
2974
|
"possibleTypes": null
|
|
2975
2975
|
},
|
|
2976
|
+
{
|
|
2977
|
+
"kind": "INPUT_OBJECT",
|
|
2978
|
+
"name": "QueryUserFollowStateOptionsInput",
|
|
2979
|
+
"description": null,
|
|
2980
|
+
"fields": null,
|
|
2981
|
+
"inputFields": [
|
|
2982
|
+
{
|
|
2983
|
+
"name": "includeFollowing",
|
|
2984
|
+
"description": null,
|
|
2985
|
+
"type": {
|
|
2986
|
+
"kind": "SCALAR",
|
|
2987
|
+
"name": "Boolean",
|
|
2988
|
+
"ofType": null
|
|
2989
|
+
},
|
|
2990
|
+
"defaultValue": null
|
|
2991
|
+
},
|
|
2992
|
+
{
|
|
2993
|
+
"name": "includeFollowers",
|
|
2994
|
+
"description": null,
|
|
2995
|
+
"type": {
|
|
2996
|
+
"kind": "SCALAR",
|
|
2997
|
+
"name": "Boolean",
|
|
2998
|
+
"ofType": null
|
|
2999
|
+
},
|
|
3000
|
+
"defaultValue": null
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
"name": "includeInvitees",
|
|
3004
|
+
"description": null,
|
|
3005
|
+
"type": {
|
|
3006
|
+
"kind": "SCALAR",
|
|
3007
|
+
"name": "Boolean",
|
|
3008
|
+
"ofType": null
|
|
3009
|
+
},
|
|
3010
|
+
"defaultValue": null
|
|
3011
|
+
}
|
|
3012
|
+
],
|
|
3013
|
+
"interfaces": null,
|
|
3014
|
+
"enumValues": null,
|
|
3015
|
+
"possibleTypes": null
|
|
3016
|
+
},
|
|
2976
3017
|
{
|
|
2977
3018
|
"kind": "INPUT_OBJECT",
|
|
2978
3019
|
"name": "RequestAbortBlockletBackupInput",
|
|
@@ -10931,6 +10972,16 @@
|
|
|
10931
10972
|
}
|
|
10932
10973
|
},
|
|
10933
10974
|
"defaultValue": null
|
|
10975
|
+
},
|
|
10976
|
+
{
|
|
10977
|
+
"name": "options",
|
|
10978
|
+
"description": null,
|
|
10979
|
+
"type": {
|
|
10980
|
+
"kind": "INPUT_OBJECT",
|
|
10981
|
+
"name": "QueryUserFollowStateOptionsInput",
|
|
10982
|
+
"ofType": null
|
|
10983
|
+
},
|
|
10984
|
+
"defaultValue": null
|
|
10934
10985
|
}
|
|
10935
10986
|
],
|
|
10936
10987
|
"interfaces": null,
|
|
@@ -22603,6 +22654,18 @@
|
|
|
22603
22654
|
},
|
|
22604
22655
|
"isDeprecated": false,
|
|
22605
22656
|
"deprecationReason": null
|
|
22657
|
+
},
|
|
22658
|
+
{
|
|
22659
|
+
"name": "utm",
|
|
22660
|
+
"description": null,
|
|
22661
|
+
"args": [],
|
|
22662
|
+
"type": {
|
|
22663
|
+
"kind": "OBJECT",
|
|
22664
|
+
"name": "TUTM",
|
|
22665
|
+
"ofType": null
|
|
22666
|
+
},
|
|
22667
|
+
"isDeprecated": false,
|
|
22668
|
+
"deprecationReason": null
|
|
22606
22669
|
}
|
|
22607
22670
|
],
|
|
22608
22671
|
"inputFields": null,
|
|
@@ -22674,6 +22737,18 @@
|
|
|
22674
22737
|
},
|
|
22675
22738
|
"isDeprecated": false,
|
|
22676
22739
|
"deprecationReason": null
|
|
22740
|
+
},
|
|
22741
|
+
{
|
|
22742
|
+
"name": "utm",
|
|
22743
|
+
"description": null,
|
|
22744
|
+
"args": [],
|
|
22745
|
+
"type": {
|
|
22746
|
+
"kind": "OBJECT",
|
|
22747
|
+
"name": "TUTM",
|
|
22748
|
+
"ofType": null
|
|
22749
|
+
},
|
|
22750
|
+
"isDeprecated": false,
|
|
22751
|
+
"deprecationReason": null
|
|
22677
22752
|
}
|
|
22678
22753
|
],
|
|
22679
22754
|
"inputFields": null,
|
|
@@ -30735,6 +30810,65 @@
|
|
|
30735
30810
|
"enumValues": null,
|
|
30736
30811
|
"possibleTypes": null
|
|
30737
30812
|
},
|
|
30813
|
+
{
|
|
30814
|
+
"kind": "OBJECT",
|
|
30815
|
+
"name": "TUTM",
|
|
30816
|
+
"description": null,
|
|
30817
|
+
"fields": [
|
|
30818
|
+
{
|
|
30819
|
+
"name": "source",
|
|
30820
|
+
"description": null,
|
|
30821
|
+
"args": [],
|
|
30822
|
+
"type": {
|
|
30823
|
+
"kind": "SCALAR",
|
|
30824
|
+
"name": "String",
|
|
30825
|
+
"ofType": null
|
|
30826
|
+
},
|
|
30827
|
+
"isDeprecated": false,
|
|
30828
|
+
"deprecationReason": null
|
|
30829
|
+
},
|
|
30830
|
+
{
|
|
30831
|
+
"name": "medium",
|
|
30832
|
+
"description": null,
|
|
30833
|
+
"args": [],
|
|
30834
|
+
"type": {
|
|
30835
|
+
"kind": "SCALAR",
|
|
30836
|
+
"name": "String",
|
|
30837
|
+
"ofType": null
|
|
30838
|
+
},
|
|
30839
|
+
"isDeprecated": false,
|
|
30840
|
+
"deprecationReason": null
|
|
30841
|
+
},
|
|
30842
|
+
{
|
|
30843
|
+
"name": "campaign",
|
|
30844
|
+
"description": null,
|
|
30845
|
+
"args": [],
|
|
30846
|
+
"type": {
|
|
30847
|
+
"kind": "SCALAR",
|
|
30848
|
+
"name": "String",
|
|
30849
|
+
"ofType": null
|
|
30850
|
+
},
|
|
30851
|
+
"isDeprecated": false,
|
|
30852
|
+
"deprecationReason": null
|
|
30853
|
+
},
|
|
30854
|
+
{
|
|
30855
|
+
"name": "content",
|
|
30856
|
+
"description": null,
|
|
30857
|
+
"args": [],
|
|
30858
|
+
"type": {
|
|
30859
|
+
"kind": "SCALAR",
|
|
30860
|
+
"name": "String",
|
|
30861
|
+
"ofType": null
|
|
30862
|
+
},
|
|
30863
|
+
"isDeprecated": false,
|
|
30864
|
+
"deprecationReason": null
|
|
30865
|
+
}
|
|
30866
|
+
],
|
|
30867
|
+
"inputFields": null,
|
|
30868
|
+
"interfaces": [],
|
|
30869
|
+
"enumValues": null,
|
|
30870
|
+
"possibleTypes": null
|
|
30871
|
+
},
|
|
30738
30872
|
{
|
|
30739
30873
|
"kind": "OBJECT",
|
|
30740
30874
|
"name": "Tag",
|
package/lib/types.js
CHANGED
|
@@ -816,6 +816,16 @@
|
|
|
816
816
|
* @property {boolean} includeFollowStatus
|
|
817
817
|
*/
|
|
818
818
|
|
|
819
|
+
/**
|
|
820
|
+
* Structure of ABTNodeClient.QueryUserFollowStateOptionsInput
|
|
821
|
+
*
|
|
822
|
+
* @memberof ABTNodeClient
|
|
823
|
+
* @typedef {object} ABTNodeClient.QueryUserFollowStateOptionsInput
|
|
824
|
+
* @property {boolean} includeFollowing
|
|
825
|
+
* @property {boolean} includeFollowers
|
|
826
|
+
* @property {boolean} includeInvitees
|
|
827
|
+
*/
|
|
828
|
+
|
|
819
829
|
/**
|
|
820
830
|
* Structure of ABTNodeClient.RequestAbortBlockletBackupInput
|
|
821
831
|
*
|
|
@@ -2605,6 +2615,7 @@
|
|
|
2605
2615
|
* @typedef {object} ABTNodeClient.RequestUserRelationCountInput
|
|
2606
2616
|
* @property {string} teamDid
|
|
2607
2617
|
* @property {Array<...ABTNodeClient.null>} userDids
|
|
2618
|
+
* @property {...ABTNodeClient.QueryUserFollowStateOptionsInput} options
|
|
2608
2619
|
*/
|
|
2609
2620
|
|
|
2610
2621
|
/**
|
|
@@ -4487,6 +4498,7 @@
|
|
|
4487
4498
|
* @property {...ABTNodeClient.NotificationActivity} activity
|
|
4488
4499
|
* @property {...ABTNodeClient.UserInfo} actorInfo
|
|
4489
4500
|
* @property {any} options
|
|
4501
|
+
* @property {...ABTNodeClient.TUTM} utm
|
|
4490
4502
|
*/
|
|
4491
4503
|
|
|
4492
4504
|
/**
|
|
@@ -4499,6 +4511,7 @@
|
|
|
4499
4511
|
* @property {string} link
|
|
4500
4512
|
* @property {string} name
|
|
4501
4513
|
* @property {string} title
|
|
4514
|
+
* @property {...ABTNodeClient.TUTM} utm
|
|
4502
4515
|
*/
|
|
4503
4516
|
|
|
4504
4517
|
/**
|
|
@@ -6608,6 +6621,17 @@
|
|
|
6608
6621
|
* @property {number} failed
|
|
6609
6622
|
*/
|
|
6610
6623
|
|
|
6624
|
+
/**
|
|
6625
|
+
* Structure of ABTNodeClient.TUTM
|
|
6626
|
+
*
|
|
6627
|
+
* @memberof ABTNodeClient
|
|
6628
|
+
* @typedef {object} ABTNodeClient.TUTM
|
|
6629
|
+
* @property {string} source
|
|
6630
|
+
* @property {string} medium
|
|
6631
|
+
* @property {string} campaign
|
|
6632
|
+
* @property {string} content
|
|
6633
|
+
*/
|
|
6634
|
+
|
|
6611
6635
|
/**
|
|
6612
6636
|
* Structure of ABTNodeClient.Tag
|
|
6613
6637
|
*
|