@blocklet/server-js 1.17.5-beta-20251211-104355-426d7eb6 → 1.17.5-beta-20251214-122206-29056e8c
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 +19 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +153 -0
- package/dist/types.js +35 -1
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +15 -4
- package/lib/node.d.ts +19 -0
- package/lib/schema/graphql.json +153 -0
- package/lib/types.js +35 -1
- package/lib/types.js.map +1 -1
- package/package.json +4 -4
package/docs/QUERIES.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# ABT Node GraphQL API List
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
> Updated on 2025-11-30T16:10:00.856Z
|
|
3
|
+
> Updated on 2025-12-13T02:59:57.798Z
|
|
5
4
|
|
|
6
5
|
## Table of Contents
|
|
7
6
|
|
|
@@ -9079,10 +9078,23 @@ No arguments
|
|
|
9079
9078
|
updatedAt
|
|
9080
9079
|
userDid
|
|
9081
9080
|
}
|
|
9081
|
+
integrations {
|
|
9082
|
+
accessKeys
|
|
9083
|
+
oauthApps
|
|
9084
|
+
webhooks
|
|
9085
|
+
}
|
|
9082
9086
|
passport {
|
|
9083
9087
|
activePassports
|
|
9084
9088
|
passports
|
|
9085
9089
|
}
|
|
9090
|
+
studio {
|
|
9091
|
+
blocklets
|
|
9092
|
+
releases
|
|
9093
|
+
}
|
|
9094
|
+
traffic {
|
|
9095
|
+
failedRequests
|
|
9096
|
+
totalRequests
|
|
9097
|
+
}
|
|
9086
9098
|
user {
|
|
9087
9099
|
approvedUsers
|
|
9088
9100
|
users
|
|
@@ -10685,7 +10697,6 @@ No arguments
|
|
|
10685
10697
|
|
|
10686
10698
|
No Subscriptions supported yet.
|
|
10687
10699
|
|
|
10688
|
-
|
|
10689
10700
|
## Mutations
|
|
10690
10701
|
|
|
10691
10702
|
### installBlocklet
|
|
@@ -50455,4 +50466,4 @@ mutation {
|
|
|
50455
50466
|
}
|
|
50456
50467
|
}
|
|
50457
50468
|
}
|
|
50458
|
-
```
|
|
50469
|
+
```
|
package/lib/node.d.ts
CHANGED
|
@@ -2831,6 +2831,12 @@ declare namespace ABTNodeClient {
|
|
|
2831
2831
|
value: ABTNodeClient.BlockletHistoryItem[];
|
|
2832
2832
|
}
|
|
2833
2833
|
|
|
2834
|
+
interface BlockletIntegrations {
|
|
2835
|
+
webhooks: number;
|
|
2836
|
+
accessKeys: number;
|
|
2837
|
+
oauthApps: number;
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2834
2840
|
interface BlockletMeta {
|
|
2835
2841
|
did: string;
|
|
2836
2842
|
name: string;
|
|
@@ -3067,6 +3073,16 @@ declare namespace ABTNodeClient {
|
|
|
3067
3073
|
scope: string;
|
|
3068
3074
|
}
|
|
3069
3075
|
|
|
3076
|
+
interface BlockletStudio {
|
|
3077
|
+
blocklets: number;
|
|
3078
|
+
releases: number;
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
interface BlockletTraffic {
|
|
3082
|
+
totalRequests: number;
|
|
3083
|
+
failedRequests: number;
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3070
3086
|
interface BlockletUsers {
|
|
3071
3087
|
users: number;
|
|
3072
3088
|
approvedUsers: number;
|
|
@@ -4116,6 +4132,9 @@ declare namespace ABTNodeClient {
|
|
|
4116
4132
|
passport: ABTNodeClient.BlockletPassport;
|
|
4117
4133
|
backup: ABTNodeClient.Backup;
|
|
4118
4134
|
appRuntimeInfo: ABTNodeClient.RuntimeInfo;
|
|
4135
|
+
traffic: ABTNodeClient.BlockletTraffic;
|
|
4136
|
+
integrations: ABTNodeClient.BlockletIntegrations;
|
|
4137
|
+
studio: ABTNodeClient.BlockletStudio;
|
|
4119
4138
|
}
|
|
4120
4139
|
|
|
4121
4140
|
interface ResponseBlockletMeta {
|
package/lib/schema/graphql.json
CHANGED
|
@@ -16674,6 +16674,53 @@
|
|
|
16674
16674
|
"enumValues": null,
|
|
16675
16675
|
"possibleTypes": null
|
|
16676
16676
|
},
|
|
16677
|
+
{
|
|
16678
|
+
"kind": "OBJECT",
|
|
16679
|
+
"name": "BlockletIntegrations",
|
|
16680
|
+
"description": null,
|
|
16681
|
+
"fields": [
|
|
16682
|
+
{
|
|
16683
|
+
"name": "webhooks",
|
|
16684
|
+
"description": null,
|
|
16685
|
+
"args": [],
|
|
16686
|
+
"type": {
|
|
16687
|
+
"kind": "SCALAR",
|
|
16688
|
+
"name": "Uint32",
|
|
16689
|
+
"ofType": null
|
|
16690
|
+
},
|
|
16691
|
+
"isDeprecated": false,
|
|
16692
|
+
"deprecationReason": null
|
|
16693
|
+
},
|
|
16694
|
+
{
|
|
16695
|
+
"name": "accessKeys",
|
|
16696
|
+
"description": null,
|
|
16697
|
+
"args": [],
|
|
16698
|
+
"type": {
|
|
16699
|
+
"kind": "SCALAR",
|
|
16700
|
+
"name": "Uint32",
|
|
16701
|
+
"ofType": null
|
|
16702
|
+
},
|
|
16703
|
+
"isDeprecated": false,
|
|
16704
|
+
"deprecationReason": null
|
|
16705
|
+
},
|
|
16706
|
+
{
|
|
16707
|
+
"name": "oauthApps",
|
|
16708
|
+
"description": null,
|
|
16709
|
+
"args": [],
|
|
16710
|
+
"type": {
|
|
16711
|
+
"kind": "SCALAR",
|
|
16712
|
+
"name": "Uint32",
|
|
16713
|
+
"ofType": null
|
|
16714
|
+
},
|
|
16715
|
+
"isDeprecated": false,
|
|
16716
|
+
"deprecationReason": null
|
|
16717
|
+
}
|
|
16718
|
+
],
|
|
16719
|
+
"inputFields": null,
|
|
16720
|
+
"interfaces": [],
|
|
16721
|
+
"enumValues": null,
|
|
16722
|
+
"possibleTypes": null
|
|
16723
|
+
},
|
|
16677
16724
|
{
|
|
16678
16725
|
"kind": "OBJECT",
|
|
16679
16726
|
"name": "BlockletMeta",
|
|
@@ -19237,6 +19284,76 @@
|
|
|
19237
19284
|
"enumValues": null,
|
|
19238
19285
|
"possibleTypes": null
|
|
19239
19286
|
},
|
|
19287
|
+
{
|
|
19288
|
+
"kind": "OBJECT",
|
|
19289
|
+
"name": "BlockletStudio",
|
|
19290
|
+
"description": null,
|
|
19291
|
+
"fields": [
|
|
19292
|
+
{
|
|
19293
|
+
"name": "blocklets",
|
|
19294
|
+
"description": null,
|
|
19295
|
+
"args": [],
|
|
19296
|
+
"type": {
|
|
19297
|
+
"kind": "SCALAR",
|
|
19298
|
+
"name": "Uint32",
|
|
19299
|
+
"ofType": null
|
|
19300
|
+
},
|
|
19301
|
+
"isDeprecated": false,
|
|
19302
|
+
"deprecationReason": null
|
|
19303
|
+
},
|
|
19304
|
+
{
|
|
19305
|
+
"name": "releases",
|
|
19306
|
+
"description": null,
|
|
19307
|
+
"args": [],
|
|
19308
|
+
"type": {
|
|
19309
|
+
"kind": "SCALAR",
|
|
19310
|
+
"name": "Uint32",
|
|
19311
|
+
"ofType": null
|
|
19312
|
+
},
|
|
19313
|
+
"isDeprecated": false,
|
|
19314
|
+
"deprecationReason": null
|
|
19315
|
+
}
|
|
19316
|
+
],
|
|
19317
|
+
"inputFields": null,
|
|
19318
|
+
"interfaces": [],
|
|
19319
|
+
"enumValues": null,
|
|
19320
|
+
"possibleTypes": null
|
|
19321
|
+
},
|
|
19322
|
+
{
|
|
19323
|
+
"kind": "OBJECT",
|
|
19324
|
+
"name": "BlockletTraffic",
|
|
19325
|
+
"description": null,
|
|
19326
|
+
"fields": [
|
|
19327
|
+
{
|
|
19328
|
+
"name": "totalRequests",
|
|
19329
|
+
"description": null,
|
|
19330
|
+
"args": [],
|
|
19331
|
+
"type": {
|
|
19332
|
+
"kind": "SCALAR",
|
|
19333
|
+
"name": "Uint64",
|
|
19334
|
+
"ofType": null
|
|
19335
|
+
},
|
|
19336
|
+
"isDeprecated": false,
|
|
19337
|
+
"deprecationReason": null
|
|
19338
|
+
},
|
|
19339
|
+
{
|
|
19340
|
+
"name": "failedRequests",
|
|
19341
|
+
"description": null,
|
|
19342
|
+
"args": [],
|
|
19343
|
+
"type": {
|
|
19344
|
+
"kind": "SCALAR",
|
|
19345
|
+
"name": "Uint64",
|
|
19346
|
+
"ofType": null
|
|
19347
|
+
},
|
|
19348
|
+
"isDeprecated": false,
|
|
19349
|
+
"deprecationReason": null
|
|
19350
|
+
}
|
|
19351
|
+
],
|
|
19352
|
+
"inputFields": null,
|
|
19353
|
+
"interfaces": [],
|
|
19354
|
+
"enumValues": null,
|
|
19355
|
+
"possibleTypes": null
|
|
19356
|
+
},
|
|
19240
19357
|
{
|
|
19241
19358
|
"kind": "OBJECT",
|
|
19242
19359
|
"name": "BlockletUsers",
|
|
@@ -27274,6 +27391,42 @@
|
|
|
27274
27391
|
},
|
|
27275
27392
|
"isDeprecated": false,
|
|
27276
27393
|
"deprecationReason": null
|
|
27394
|
+
},
|
|
27395
|
+
{
|
|
27396
|
+
"name": "traffic",
|
|
27397
|
+
"description": null,
|
|
27398
|
+
"args": [],
|
|
27399
|
+
"type": {
|
|
27400
|
+
"kind": "OBJECT",
|
|
27401
|
+
"name": "BlockletTraffic",
|
|
27402
|
+
"ofType": null
|
|
27403
|
+
},
|
|
27404
|
+
"isDeprecated": false,
|
|
27405
|
+
"deprecationReason": null
|
|
27406
|
+
},
|
|
27407
|
+
{
|
|
27408
|
+
"name": "integrations",
|
|
27409
|
+
"description": null,
|
|
27410
|
+
"args": [],
|
|
27411
|
+
"type": {
|
|
27412
|
+
"kind": "OBJECT",
|
|
27413
|
+
"name": "BlockletIntegrations",
|
|
27414
|
+
"ofType": null
|
|
27415
|
+
},
|
|
27416
|
+
"isDeprecated": false,
|
|
27417
|
+
"deprecationReason": null
|
|
27418
|
+
},
|
|
27419
|
+
{
|
|
27420
|
+
"name": "studio",
|
|
27421
|
+
"description": null,
|
|
27422
|
+
"args": [],
|
|
27423
|
+
"type": {
|
|
27424
|
+
"kind": "OBJECT",
|
|
27425
|
+
"name": "BlockletStudio",
|
|
27426
|
+
"ofType": null
|
|
27427
|
+
},
|
|
27428
|
+
"isDeprecated": false,
|
|
27429
|
+
"deprecationReason": null
|
|
27277
27430
|
}
|
|
27278
27431
|
],
|
|
27279
27432
|
"inputFields": null,
|
package/lib/types.js
CHANGED
|
@@ -3639,6 +3639,16 @@
|
|
|
3639
3639
|
* @property {Array<...ABTNodeClient.null>} value
|
|
3640
3640
|
*/
|
|
3641
3641
|
|
|
3642
|
+
/**
|
|
3643
|
+
* Structure of ABTNodeClient.BlockletIntegrations
|
|
3644
|
+
*
|
|
3645
|
+
* @memberof ABTNodeClient
|
|
3646
|
+
* @typedef {object} ABTNodeClient.BlockletIntegrations
|
|
3647
|
+
* @property {number} webhooks
|
|
3648
|
+
* @property {number} accessKeys
|
|
3649
|
+
* @property {number} oauthApps
|
|
3650
|
+
*/
|
|
3651
|
+
|
|
3642
3652
|
/**
|
|
3643
3653
|
* Structure of ABTNodeClient.BlockletMeta
|
|
3644
3654
|
*
|
|
@@ -3959,6 +3969,24 @@
|
|
|
3959
3969
|
* @property {string} scope
|
|
3960
3970
|
*/
|
|
3961
3971
|
|
|
3972
|
+
/**
|
|
3973
|
+
* Structure of ABTNodeClient.BlockletStudio
|
|
3974
|
+
*
|
|
3975
|
+
* @memberof ABTNodeClient
|
|
3976
|
+
* @typedef {object} ABTNodeClient.BlockletStudio
|
|
3977
|
+
* @property {number} blocklets
|
|
3978
|
+
* @property {number} releases
|
|
3979
|
+
*/
|
|
3980
|
+
|
|
3981
|
+
/**
|
|
3982
|
+
* Structure of ABTNodeClient.BlockletTraffic
|
|
3983
|
+
*
|
|
3984
|
+
* @memberof ABTNodeClient
|
|
3985
|
+
* @typedef {object} ABTNodeClient.BlockletTraffic
|
|
3986
|
+
* @property {number} totalRequests
|
|
3987
|
+
* @property {number} failedRequests
|
|
3988
|
+
*/
|
|
3989
|
+
|
|
3962
3990
|
/**
|
|
3963
3991
|
* Structure of ABTNodeClient.BlockletUsers
|
|
3964
3992
|
*
|
|
@@ -5401,7 +5429,10 @@
|
|
|
5401
5429
|
"port": "abc",
|
|
5402
5430
|
"uptime": "abc",
|
|
5403
5431
|
"runningDocker": true
|
|
5404
|
-
}
|
|
5432
|
+
},
|
|
5433
|
+
"traffic": {},
|
|
5434
|
+
"integrations": {},
|
|
5435
|
+
"studio": {}
|
|
5405
5436
|
}
|
|
5406
5437
|
* ```
|
|
5407
5438
|
*
|
|
@@ -5411,6 +5442,9 @@
|
|
|
5411
5442
|
* @property {...ABTNodeClient.BlockletPassport} passport
|
|
5412
5443
|
* @property {...ABTNodeClient.Backup} backup
|
|
5413
5444
|
* @property {...ABTNodeClient.RuntimeInfo} appRuntimeInfo
|
|
5445
|
+
* @property {...ABTNodeClient.BlockletTraffic} traffic
|
|
5446
|
+
* @property {...ABTNodeClient.BlockletIntegrations} integrations
|
|
5447
|
+
* @property {...ABTNodeClient.BlockletStudio} studio
|
|
5414
5448
|
*/
|
|
5415
5449
|
|
|
5416
5450
|
/**
|