@blocklet/server-js 1.16.53-beta-20251013-005429-ca3b05de → 1.16.53-beta-20251014-110009-8220e324
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 +3 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +35 -1
- package/dist/types.js +275 -272
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +5 -1
- package/lib/node.d.ts +3 -0
- package/lib/schema/graphql.json +35 -1
- package/lib/types.js +275 -272
- 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-10-
|
|
3
|
+
> Updated on 2025-10-13T17:53:47.373Z
|
|
4
4
|
|
|
5
5
|
## Table of Contents
|
|
6
6
|
|
|
@@ -7555,6 +7555,7 @@ No arguments
|
|
|
7555
7555
|
list {
|
|
7556
7556
|
action
|
|
7557
7557
|
category
|
|
7558
|
+
componentDid
|
|
7558
7559
|
content
|
|
7559
7560
|
createdAt
|
|
7560
7561
|
id
|
|
@@ -7866,6 +7867,7 @@ No arguments
|
|
|
7866
7867
|
blockletRepository
|
|
7867
7868
|
blockletResourceType
|
|
7868
7869
|
blockletScreenshots
|
|
7870
|
+
blockletSingleton
|
|
7869
7871
|
blockletSupport
|
|
7870
7872
|
blockletTitle
|
|
7871
7873
|
blockletVersion
|
|
@@ -7934,6 +7936,7 @@ No arguments
|
|
|
7934
7936
|
blockletRepository
|
|
7935
7937
|
blockletResourceType
|
|
7936
7938
|
blockletScreenshots
|
|
7939
|
+
blockletSingleton
|
|
7937
7940
|
blockletSupport
|
|
7938
7941
|
blockletTitle
|
|
7939
7942
|
blockletVersion
|
|
@@ -48630,6 +48633,7 @@ mutation {
|
|
|
48630
48633
|
blockletRepository
|
|
48631
48634
|
blockletResourceType
|
|
48632
48635
|
blockletScreenshots
|
|
48636
|
+
blockletSingleton
|
|
48633
48637
|
blockletSupport
|
|
48634
48638
|
blockletTitle
|
|
48635
48639
|
blockletVersion
|
package/lib/node.d.ts
CHANGED
|
@@ -1411,6 +1411,7 @@ declare namespace ABTNodeClient {
|
|
|
1411
1411
|
blockletRepository: string;
|
|
1412
1412
|
contentType: string;
|
|
1413
1413
|
blockletDocker: ABTNodeClient.BlockletDockerInput;
|
|
1414
|
+
blockletSingleton: boolean;
|
|
1414
1415
|
}
|
|
1415
1416
|
|
|
1416
1417
|
interface RequestCreateRoleInput {
|
|
@@ -2642,6 +2643,7 @@ declare namespace ABTNodeClient {
|
|
|
2642
2643
|
createdAt: number;
|
|
2643
2644
|
ip: string;
|
|
2644
2645
|
ua: string;
|
|
2646
|
+
componentDid: string;
|
|
2645
2647
|
}
|
|
2646
2648
|
|
|
2647
2649
|
interface AuditLogActor {
|
|
@@ -4027,6 +4029,7 @@ declare namespace ABTNodeClient {
|
|
|
4027
4029
|
blockletRepository: string;
|
|
4028
4030
|
contentType: string;
|
|
4029
4031
|
blockletDocker: ABTNodeClient.BlockletDocker;
|
|
4032
|
+
blockletSingleton: boolean;
|
|
4030
4033
|
}
|
|
4031
4034
|
|
|
4032
4035
|
interface ReleaseComponent {
|
package/lib/schema/graphql.json
CHANGED
|
@@ -5718,6 +5718,16 @@
|
|
|
5718
5718
|
"ofType": null
|
|
5719
5719
|
},
|
|
5720
5720
|
"defaultValue": null
|
|
5721
|
+
},
|
|
5722
|
+
{
|
|
5723
|
+
"name": "blockletSingleton",
|
|
5724
|
+
"description": null,
|
|
5725
|
+
"type": {
|
|
5726
|
+
"kind": "SCALAR",
|
|
5727
|
+
"name": "Boolean",
|
|
5728
|
+
"ofType": null
|
|
5729
|
+
},
|
|
5730
|
+
"defaultValue": null
|
|
5721
5731
|
}
|
|
5722
5732
|
],
|
|
5723
5733
|
"interfaces": null,
|
|
@@ -15015,6 +15025,18 @@
|
|
|
15015
15025
|
},
|
|
15016
15026
|
"isDeprecated": false,
|
|
15017
15027
|
"deprecationReason": null
|
|
15028
|
+
},
|
|
15029
|
+
{
|
|
15030
|
+
"name": "componentDid",
|
|
15031
|
+
"description": null,
|
|
15032
|
+
"args": [],
|
|
15033
|
+
"type": {
|
|
15034
|
+
"kind": "SCALAR",
|
|
15035
|
+
"name": "String",
|
|
15036
|
+
"ofType": null
|
|
15037
|
+
},
|
|
15038
|
+
"isDeprecated": false,
|
|
15039
|
+
"deprecationReason": null
|
|
15018
15040
|
}
|
|
15019
15041
|
],
|
|
15020
15042
|
"inputFields": null,
|
|
@@ -26567,6 +26589,18 @@
|
|
|
26567
26589
|
},
|
|
26568
26590
|
"isDeprecated": false,
|
|
26569
26591
|
"deprecationReason": null
|
|
26592
|
+
},
|
|
26593
|
+
{
|
|
26594
|
+
"name": "blockletSingleton",
|
|
26595
|
+
"description": null,
|
|
26596
|
+
"args": [],
|
|
26597
|
+
"type": {
|
|
26598
|
+
"kind": "SCALAR",
|
|
26599
|
+
"name": "Boolean",
|
|
26600
|
+
"ofType": null
|
|
26601
|
+
},
|
|
26602
|
+
"isDeprecated": false,
|
|
26603
|
+
"deprecationReason": null
|
|
26570
26604
|
}
|
|
26571
26605
|
],
|
|
26572
26606
|
"inputFields": null,
|
|
@@ -42667,4 +42701,4 @@
|
|
|
42667
42701
|
]
|
|
42668
42702
|
}
|
|
42669
42703
|
]
|
|
42670
|
-
}
|
|
42704
|
+
}
|