@blocklet/server-js 1.16.52-beta-20250930-134044-9b691563 → 1.16.52-beta-20251003-083412-fdfc4e36
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 +6 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +23 -0
- package/dist/types.js +25 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +31 -1
- package/lib/node.d.ts +6 -0
- package/lib/schema/graphql.json +23 -0
- package/lib/types.js +25 -0
- package/lib/types.js.map +1 -1
- package/package.json +4 -4
package/docs/QUERIES.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# ABT Node GraphQL API List
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
> Updated on 2025-09-
|
|
4
|
+
> Updated on 2025-09-30T09:55:52.558Z
|
|
5
5
|
|
|
6
6
|
## Table of Contents
|
|
7
7
|
|
|
@@ -46368,6 +46368,36 @@ mutation {
|
|
|
46368
46368
|
}
|
|
46369
46369
|
```
|
|
46370
46370
|
|
|
46371
|
+
### getTag
|
|
46372
|
+
|
|
46373
|
+
#### Arguments
|
|
46374
|
+
|
|
46375
|
+
* **input**, optional, null
|
|
46376
|
+
|
|
46377
|
+
#### Result Format
|
|
46378
|
+
|
|
46379
|
+
```graphql
|
|
46380
|
+
mutation {
|
|
46381
|
+
getTag {
|
|
46382
|
+
code
|
|
46383
|
+
tag {
|
|
46384
|
+
color
|
|
46385
|
+
componentDid
|
|
46386
|
+
createdAt
|
|
46387
|
+
createdBy
|
|
46388
|
+
description
|
|
46389
|
+
id
|
|
46390
|
+
parentId
|
|
46391
|
+
slug
|
|
46392
|
+
title
|
|
46393
|
+
type
|
|
46394
|
+
updatedAt
|
|
46395
|
+
updatedBy
|
|
46396
|
+
}
|
|
46397
|
+
}
|
|
46398
|
+
}
|
|
46399
|
+
```
|
|
46400
|
+
|
|
46371
46401
|
### createTag
|
|
46372
46402
|
|
|
46373
46403
|
#### Arguments
|
package/lib/node.d.ts
CHANGED
|
@@ -390,6 +390,7 @@ declare class ABTNodeClient {
|
|
|
390
390
|
deleteBlockletStore(
|
|
391
391
|
params: PartialDeep<ABTNodeClient.DeleteBlockletStoreParams>
|
|
392
392
|
): Promise<ABTNodeClient.GeneralResponse>;
|
|
393
|
+
getTag(params: PartialDeep<ABTNodeClient.GetTagParams>): Promise<ABTNodeClient.ResponseTag>;
|
|
393
394
|
createTag(params: PartialDeep<ABTNodeClient.CreateTagParams>): Promise<ABTNodeClient.ResponseTag>;
|
|
394
395
|
updateTag(params: PartialDeep<ABTNodeClient.UpdateTagParams>): Promise<ABTNodeClient.ResponseTag>;
|
|
395
396
|
deleteTag(params: PartialDeep<ABTNodeClient.DeleteTagParams>): Promise<ABTNodeClient.ResponseTag>;
|
|
@@ -3333,6 +3334,7 @@ declare namespace ABTNodeClient {
|
|
|
3333
3334
|
hasPermission: ABTNodeClient.BooleanResponse;
|
|
3334
3335
|
addBlockletStore: ABTNodeClient.GeneralResponse;
|
|
3335
3336
|
deleteBlockletStore: ABTNodeClient.GeneralResponse;
|
|
3337
|
+
getTag: ABTNodeClient.ResponseTag;
|
|
3336
3338
|
createTag: ABTNodeClient.ResponseTag;
|
|
3337
3339
|
updateTag: ABTNodeClient.ResponseTag;
|
|
3338
3340
|
deleteTag: ABTNodeClient.ResponseTag;
|
|
@@ -5455,6 +5457,10 @@ declare namespace ABTNodeClient {
|
|
|
5455
5457
|
input: ABTNodeClient.RequestDeleteBlockletStoreInput;
|
|
5456
5458
|
}
|
|
5457
5459
|
|
|
5460
|
+
interface GetTagParams {
|
|
5461
|
+
input: ABTNodeClient.RequestTagInput;
|
|
5462
|
+
}
|
|
5463
|
+
|
|
5458
5464
|
interface CreateTagParams {
|
|
5459
5465
|
input: ABTNodeClient.RequestTagInput;
|
|
5460
5466
|
}
|
package/lib/schema/graphql.json
CHANGED
|
@@ -36324,6 +36324,29 @@
|
|
|
36324
36324
|
"isDeprecated": false,
|
|
36325
36325
|
"deprecationReason": null
|
|
36326
36326
|
},
|
|
36327
|
+
{
|
|
36328
|
+
"name": "getTag",
|
|
36329
|
+
"description": null,
|
|
36330
|
+
"args": [
|
|
36331
|
+
{
|
|
36332
|
+
"name": "input",
|
|
36333
|
+
"description": null,
|
|
36334
|
+
"type": {
|
|
36335
|
+
"kind": "INPUT_OBJECT",
|
|
36336
|
+
"name": "RequestTagInput",
|
|
36337
|
+
"ofType": null
|
|
36338
|
+
},
|
|
36339
|
+
"defaultValue": null
|
|
36340
|
+
}
|
|
36341
|
+
],
|
|
36342
|
+
"type": {
|
|
36343
|
+
"kind": "OBJECT",
|
|
36344
|
+
"name": "ResponseTag",
|
|
36345
|
+
"ofType": null
|
|
36346
|
+
},
|
|
36347
|
+
"isDeprecated": false,
|
|
36348
|
+
"deprecationReason": null
|
|
36349
|
+
},
|
|
36327
36350
|
{
|
|
36328
36351
|
"name": "createTag",
|
|
36329
36352
|
"description": null,
|
package/lib/types.js
CHANGED
|
@@ -189,6 +189,7 @@
|
|
|
189
189
|
* // hasPermission,
|
|
190
190
|
* // addBlockletStore,
|
|
191
191
|
* // deleteBlockletStore,
|
|
192
|
+
* // getTag,
|
|
192
193
|
* // createTag,
|
|
193
194
|
* // updateTag,
|
|
194
195
|
* // deleteTag,
|
|
@@ -4340,6 +4341,7 @@
|
|
|
4340
4341
|
* @property {...ABTNodeClient.BooleanResponse} hasPermission
|
|
4341
4342
|
* @property {...ABTNodeClient.GeneralResponse} addBlockletStore
|
|
4342
4343
|
* @property {...ABTNodeClient.GeneralResponse} deleteBlockletStore
|
|
4344
|
+
* @property {...ABTNodeClient.ResponseTag} getTag
|
|
4343
4345
|
* @property {...ABTNodeClient.ResponseTag} createTag
|
|
4344
4346
|
* @property {...ABTNodeClient.ResponseTag} updateTag
|
|
4345
4347
|
* @property {...ABTNodeClient.ResponseTag} deleteTag
|
|
@@ -9085,6 +9087,19 @@
|
|
|
9085
9087
|
* @property {...ABTNodeClient.RequestDeleteBlockletStoreInput} input
|
|
9086
9088
|
*/
|
|
9087
9089
|
|
|
9090
|
+
/**
|
|
9091
|
+
* Structure of ABTNodeClient.GetTagParams
|
|
9092
|
+
*
|
|
9093
|
+
* Checkout the following snippet for the format of GetTagParams:
|
|
9094
|
+
* ```json
|
|
9095
|
+
{}
|
|
9096
|
+
* ```
|
|
9097
|
+
*
|
|
9098
|
+
* @memberof ABTNodeClient
|
|
9099
|
+
* @typedef {object} ABTNodeClient.GetTagParams
|
|
9100
|
+
* @property {...ABTNodeClient.RequestTagInput} input
|
|
9101
|
+
*/
|
|
9102
|
+
|
|
9088
9103
|
/**
|
|
9089
9104
|
* Structure of ABTNodeClient.CreateTagParams
|
|
9090
9105
|
*
|
|
@@ -11475,6 +11490,16 @@
|
|
|
11475
11490
|
* @returns {Promise<ABTNodeClient.GeneralResponse>} Checkout {@link ABTNodeClient.GeneralResponse} for resolved data format
|
|
11476
11491
|
*/
|
|
11477
11492
|
|
|
11493
|
+
/**
|
|
11494
|
+
* getTag
|
|
11495
|
+
*
|
|
11496
|
+
* @name ABTNodeClient#getTag
|
|
11497
|
+
* @param {ABTNodeClient.GetTagParams} params
|
|
11498
|
+
* @function
|
|
11499
|
+
* @memberof ABTNodeClient
|
|
11500
|
+
* @returns {Promise<ABTNodeClient.ResponseTag>} Checkout {@link ABTNodeClient.ResponseTag} for resolved data format
|
|
11501
|
+
*/
|
|
11502
|
+
|
|
11478
11503
|
/**
|
|
11479
11504
|
* createTag
|
|
11480
11505
|
*
|