@blocklet/server-js 1.16.52-beta-20250928-042319-ff3f0e04 → 1.16.52-beta-20250930-134044-9b691563
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 +47 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +366 -0
- package/dist/types.js +107 -1
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +259 -1
- package/lib/node.d.ts +47 -0
- package/lib/schema/graphql.json +366 -0
- package/lib/types.js +107 -1
- package/lib/types.js.map +1 -1
- package/package.json +3 -3
package/dist/browser.d.ts
CHANGED
|
@@ -393,6 +393,8 @@ declare class ABTNodeClient {
|
|
|
393
393
|
createTag(params: PartialDeep<ABTNodeClient.CreateTagParams>): Promise<ABTNodeClient.ResponseTag>;
|
|
394
394
|
updateTag(params: PartialDeep<ABTNodeClient.UpdateTagParams>): Promise<ABTNodeClient.ResponseTag>;
|
|
395
395
|
deleteTag(params: PartialDeep<ABTNodeClient.DeleteTagParams>): Promise<ABTNodeClient.ResponseTag>;
|
|
396
|
+
createTagging(params: PartialDeep<ABTNodeClient.CreateTaggingParams>): Promise<ABTNodeClient.ResponseTagging>;
|
|
397
|
+
deleteTagging(params: PartialDeep<ABTNodeClient.DeleteTaggingParams>): Promise<ABTNodeClient.ResponseTagging>;
|
|
396
398
|
readNotifications(
|
|
397
399
|
params: PartialDeep<ABTNodeClient.ReadNotificationsParams>
|
|
398
400
|
): Promise<ABTNodeClient.ResponseReadNotifications>;
|
|
@@ -1936,6 +1938,12 @@ declare namespace ABTNodeClient {
|
|
|
1936
1938
|
interface RequestTagInput {
|
|
1937
1939
|
teamDid: string;
|
|
1938
1940
|
tag: ABTNodeClient.TagInput;
|
|
1941
|
+
moveTo: number;
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
interface RequestTaggingInput {
|
|
1945
|
+
teamDid: string;
|
|
1946
|
+
tagging: ABTNodeClient.TaggingInput;
|
|
1939
1947
|
}
|
|
1940
1948
|
|
|
1941
1949
|
interface RequestTagsInput {
|
|
@@ -2238,6 +2246,18 @@ declare namespace ABTNodeClient {
|
|
|
2238
2246
|
color: string;
|
|
2239
2247
|
createdAt: number;
|
|
2240
2248
|
updatedAt: number;
|
|
2249
|
+
slug: string;
|
|
2250
|
+
type: string;
|
|
2251
|
+
componentDid: string;
|
|
2252
|
+
parentId: number;
|
|
2253
|
+
createdBy: string;
|
|
2254
|
+
updatedBy: string;
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
interface TaggingInput {
|
|
2258
|
+
tagId: number;
|
|
2259
|
+
taggableType: string;
|
|
2260
|
+
taggableIds: string[];
|
|
2241
2261
|
}
|
|
2242
2262
|
|
|
2243
2263
|
interface TeamInput {
|
|
@@ -3316,6 +3336,8 @@ declare namespace ABTNodeClient {
|
|
|
3316
3336
|
createTag: ABTNodeClient.ResponseTag;
|
|
3317
3337
|
updateTag: ABTNodeClient.ResponseTag;
|
|
3318
3338
|
deleteTag: ABTNodeClient.ResponseTag;
|
|
3339
|
+
createTagging: ABTNodeClient.ResponseTagging;
|
|
3340
|
+
deleteTagging: ABTNodeClient.ResponseTagging;
|
|
3319
3341
|
readNotifications: ABTNodeClient.ResponseReadNotifications;
|
|
3320
3342
|
unreadNotifications: ABTNodeClient.ResponseReadNotifications;
|
|
3321
3343
|
addRoutingSite: ABTNodeClient.ResponseRoutingSite;
|
|
@@ -4332,6 +4354,11 @@ declare namespace ABTNodeClient {
|
|
|
4332
4354
|
tag: ABTNodeClient.Tag;
|
|
4333
4355
|
}
|
|
4334
4356
|
|
|
4357
|
+
interface ResponseTagging {
|
|
4358
|
+
code: ABTNodeClient.StatusCode;
|
|
4359
|
+
tagging: ABTNodeClient.Tagging[];
|
|
4360
|
+
}
|
|
4361
|
+
|
|
4335
4362
|
interface ResponseTags {
|
|
4336
4363
|
code: ABTNodeClient.StatusCode;
|
|
4337
4364
|
tags: ABTNodeClient.Tag[];
|
|
@@ -4535,6 +4562,18 @@ declare namespace ABTNodeClient {
|
|
|
4535
4562
|
color: string;
|
|
4536
4563
|
createdAt: number;
|
|
4537
4564
|
updatedAt: number;
|
|
4565
|
+
slug: string;
|
|
4566
|
+
type: string;
|
|
4567
|
+
componentDid: string;
|
|
4568
|
+
parentId: number;
|
|
4569
|
+
createdBy: string;
|
|
4570
|
+
updatedBy: string;
|
|
4571
|
+
}
|
|
4572
|
+
|
|
4573
|
+
interface Tagging {
|
|
4574
|
+
tagId: number;
|
|
4575
|
+
taggableType: string;
|
|
4576
|
+
taggableIds: string[];
|
|
4538
4577
|
}
|
|
4539
4578
|
|
|
4540
4579
|
interface TrafficInsight {
|
|
@@ -5428,6 +5467,14 @@ declare namespace ABTNodeClient {
|
|
|
5428
5467
|
input: ABTNodeClient.RequestTagInput;
|
|
5429
5468
|
}
|
|
5430
5469
|
|
|
5470
|
+
interface CreateTaggingParams {
|
|
5471
|
+
input: ABTNodeClient.RequestTaggingInput;
|
|
5472
|
+
}
|
|
5473
|
+
|
|
5474
|
+
interface DeleteTaggingParams {
|
|
5475
|
+
input: ABTNodeClient.RequestTaggingInput;
|
|
5476
|
+
}
|
|
5477
|
+
|
|
5431
5478
|
interface ReadNotificationsParams {
|
|
5432
5479
|
input: ABTNodeClient.RequestReadNotificationsInput;
|
|
5433
5480
|
}
|