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