@abtnode/schema 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/lib/index.js CHANGED
@@ -1288,6 +1288,12 @@ input RequestSyncMasterAuthorizationInput {
1288
1288
  input RequestTagInput {
1289
1289
  teamDid: String
1290
1290
  tag: TagInput
1291
+ moveTo: Uint32
1292
+ }
1293
+
1294
+ input RequestTaggingInput {
1295
+ teamDid: String
1296
+ tagging: TaggingInput
1291
1297
  }
1292
1298
 
1293
1299
  input RequestTagsInput {
@@ -1590,6 +1596,18 @@ input TagInput {
1590
1596
  color: String
1591
1597
  createdAt: Uint32
1592
1598
  updatedAt: Uint32
1599
+ slug: String
1600
+ type: String
1601
+ componentDid: String
1602
+ parentId: Uint32
1603
+ createdBy: String
1604
+ updatedBy: String
1605
+ }
1606
+
1607
+ input TaggingInput {
1608
+ tagId: Uint32
1609
+ taggableType: String
1610
+ taggableIds: [String!]
1593
1611
  }
1594
1612
 
1595
1613
  input TeamInput {
@@ -3451,6 +3469,11 @@ type ResponseTag {
3451
3469
  tag: Tag
3452
3470
  }
3453
3471
 
3472
+ type ResponseTagging {
3473
+ code: StatusCode
3474
+ tagging: [Tagging!]
3475
+ }
3476
+
3454
3477
  type ResponseTags {
3455
3478
  code: StatusCode
3456
3479
  tags: [Tag!]
@@ -3654,6 +3677,18 @@ type Tag {
3654
3677
  color: String
3655
3678
  createdAt: Uint32
3656
3679
  updatedAt: Uint32
3680
+ slug: String
3681
+ type: String
3682
+ componentDid: String
3683
+ parentId: Uint32
3684
+ createdBy: String
3685
+ updatedBy: String
3686
+ }
3687
+
3688
+ type Tagging {
3689
+ tagId: Uint32
3690
+ taggableType: String
3691
+ taggableIds: [String!]
3657
3692
  }
3658
3693
 
3659
3694
  type TrafficInsight {
@@ -4121,6 +4156,8 @@ type Mutation {
4121
4156
  createTag(input: RequestTagInput): ResponseTag
4122
4157
  updateTag(input: RequestTagInput): ResponseTag
4123
4158
  deleteTag(input: RequestTagInput): ResponseTag
4159
+ createTagging(input: RequestTaggingInput): ResponseTagging
4160
+ deleteTagging(input: RequestTaggingInput): ResponseTagging
4124
4161
  readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
4125
4162
  unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
4126
4163
  addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
@@ -4264,4 +4301,4 @@ type Query {
4264
4301
  createOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
4265
4302
  updateOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
4266
4303
  deleteOAuthClient(input: RequestDeleteOAuthClientInput): GeneralResponse
4267
- }`;
4304
+ }`;
@@ -1288,6 +1288,12 @@ input RequestSyncMasterAuthorizationInput {
1288
1288
  input RequestTagInput {
1289
1289
  teamDid: String
1290
1290
  tag: TagInput
1291
+ moveTo: Uint32
1292
+ }
1293
+
1294
+ input RequestTaggingInput {
1295
+ teamDid: String
1296
+ tagging: TaggingInput
1291
1297
  }
1292
1298
 
1293
1299
  input RequestTagsInput {
@@ -1590,6 +1596,18 @@ input TagInput {
1590
1596
  color: String
1591
1597
  createdAt: Uint32
1592
1598
  updatedAt: Uint32
1599
+ slug: String
1600
+ type: String
1601
+ componentDid: String
1602
+ parentId: Uint32
1603
+ createdBy: String
1604
+ updatedBy: String
1605
+ }
1606
+
1607
+ input TaggingInput {
1608
+ tagId: Uint32
1609
+ taggableType: String
1610
+ taggableIds: [String!]
1593
1611
  }
1594
1612
 
1595
1613
  input TeamInput {
@@ -3451,6 +3469,11 @@ type ResponseTag {
3451
3469
  tag: Tag
3452
3470
  }
3453
3471
 
3472
+ type ResponseTagging {
3473
+ code: StatusCode
3474
+ tagging: [Tagging!]
3475
+ }
3476
+
3454
3477
  type ResponseTags {
3455
3478
  code: StatusCode
3456
3479
  tags: [Tag!]
@@ -3654,6 +3677,18 @@ type Tag {
3654
3677
  color: String
3655
3678
  createdAt: Uint32
3656
3679
  updatedAt: Uint32
3680
+ slug: String
3681
+ type: String
3682
+ componentDid: String
3683
+ parentId: Uint32
3684
+ createdBy: String
3685
+ updatedBy: String
3686
+ }
3687
+
3688
+ type Tagging {
3689
+ tagId: Uint32
3690
+ taggableType: String
3691
+ taggableIds: [String!]
3657
3692
  }
3658
3693
 
3659
3694
  type TrafficInsight {
@@ -4123,6 +4158,8 @@ type Mutation {
4123
4158
  createTag(input: RequestTagInput): ResponseTag
4124
4159
  updateTag(input: RequestTagInput): ResponseTag
4125
4160
  deleteTag(input: RequestTagInput): ResponseTag
4161
+ createTagging(input: RequestTaggingInput): ResponseTagging
4162
+ deleteTagging(input: RequestTaggingInput): ResponseTagging
4126
4163
  readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
4127
4164
  unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
4128
4165
  addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.52-beta-20250928-042319-ff3f0e04",
6
+ "version": "1.16.52-beta-20250930-134044-9b691563",
7
7
  "description": "",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -13,7 +13,7 @@
13
13
  "keywords": [],
14
14
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
15
15
  "license": "Apache-2.0",
16
- "gitHead": "2390501ff6e05cbf356f751ced062803e3562465",
16
+ "gitHead": "922d7f11acfdfafe4494f59add4884fe73954a0b",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }