@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.
@@ -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/dist/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
  *