@blocklet/server-js 1.16.52-beta-20250928-042319-ff3f0e04 → 1.16.52-beta-20251002-030549-0f91dab2

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 CHANGED
@@ -390,9 +390,12 @@ 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>;
397
+ createTagging(params: PartialDeep<ABTNodeClient.CreateTaggingParams>): Promise<ABTNodeClient.ResponseTagging>;
398
+ deleteTagging(params: PartialDeep<ABTNodeClient.DeleteTaggingParams>): Promise<ABTNodeClient.ResponseTagging>;
396
399
  readNotifications(
397
400
  params: PartialDeep<ABTNodeClient.ReadNotificationsParams>
398
401
  ): Promise<ABTNodeClient.ResponseReadNotifications>;
@@ -1936,6 +1939,12 @@ declare namespace ABTNodeClient {
1936
1939
  interface RequestTagInput {
1937
1940
  teamDid: string;
1938
1941
  tag: ABTNodeClient.TagInput;
1942
+ moveTo: number;
1943
+ }
1944
+
1945
+ interface RequestTaggingInput {
1946
+ teamDid: string;
1947
+ tagging: ABTNodeClient.TaggingInput;
1939
1948
  }
1940
1949
 
1941
1950
  interface RequestTagsInput {
@@ -2238,6 +2247,18 @@ declare namespace ABTNodeClient {
2238
2247
  color: string;
2239
2248
  createdAt: number;
2240
2249
  updatedAt: number;
2250
+ slug: string;
2251
+ type: string;
2252
+ componentDid: string;
2253
+ parentId: number;
2254
+ createdBy: string;
2255
+ updatedBy: string;
2256
+ }
2257
+
2258
+ interface TaggingInput {
2259
+ tagId: number;
2260
+ taggableType: string;
2261
+ taggableIds: string[];
2241
2262
  }
2242
2263
 
2243
2264
  interface TeamInput {
@@ -3313,9 +3334,12 @@ declare namespace ABTNodeClient {
3313
3334
  hasPermission: ABTNodeClient.BooleanResponse;
3314
3335
  addBlockletStore: ABTNodeClient.GeneralResponse;
3315
3336
  deleteBlockletStore: ABTNodeClient.GeneralResponse;
3337
+ getTag: ABTNodeClient.ResponseTag;
3316
3338
  createTag: ABTNodeClient.ResponseTag;
3317
3339
  updateTag: ABTNodeClient.ResponseTag;
3318
3340
  deleteTag: ABTNodeClient.ResponseTag;
3341
+ createTagging: ABTNodeClient.ResponseTagging;
3342
+ deleteTagging: ABTNodeClient.ResponseTagging;
3319
3343
  readNotifications: ABTNodeClient.ResponseReadNotifications;
3320
3344
  unreadNotifications: ABTNodeClient.ResponseReadNotifications;
3321
3345
  addRoutingSite: ABTNodeClient.ResponseRoutingSite;
@@ -4332,6 +4356,11 @@ declare namespace ABTNodeClient {
4332
4356
  tag: ABTNodeClient.Tag;
4333
4357
  }
4334
4358
 
4359
+ interface ResponseTagging {
4360
+ code: ABTNodeClient.StatusCode;
4361
+ tagging: ABTNodeClient.Tagging[];
4362
+ }
4363
+
4335
4364
  interface ResponseTags {
4336
4365
  code: ABTNodeClient.StatusCode;
4337
4366
  tags: ABTNodeClient.Tag[];
@@ -4535,6 +4564,18 @@ declare namespace ABTNodeClient {
4535
4564
  color: string;
4536
4565
  createdAt: number;
4537
4566
  updatedAt: number;
4567
+ slug: string;
4568
+ type: string;
4569
+ componentDid: string;
4570
+ parentId: number;
4571
+ createdBy: string;
4572
+ updatedBy: string;
4573
+ }
4574
+
4575
+ interface Tagging {
4576
+ tagId: number;
4577
+ taggableType: string;
4578
+ taggableIds: string[];
4538
4579
  }
4539
4580
 
4540
4581
  interface TrafficInsight {
@@ -5416,6 +5457,10 @@ declare namespace ABTNodeClient {
5416
5457
  input: ABTNodeClient.RequestDeleteBlockletStoreInput;
5417
5458
  }
5418
5459
 
5460
+ interface GetTagParams {
5461
+ input: ABTNodeClient.RequestTagInput;
5462
+ }
5463
+
5419
5464
  interface CreateTagParams {
5420
5465
  input: ABTNodeClient.RequestTagInput;
5421
5466
  }
@@ -5428,6 +5473,14 @@ declare namespace ABTNodeClient {
5428
5473
  input: ABTNodeClient.RequestTagInput;
5429
5474
  }
5430
5475
 
5476
+ interface CreateTaggingParams {
5477
+ input: ABTNodeClient.RequestTaggingInput;
5478
+ }
5479
+
5480
+ interface DeleteTaggingParams {
5481
+ input: ABTNodeClient.RequestTaggingInput;
5482
+ }
5483
+
5431
5484
  interface ReadNotificationsParams {
5432
5485
  input: ABTNodeClient.RequestReadNotificationsInput;
5433
5486
  }