@abtnode/schema 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/lib/index.js +39 -1
- package/lib/schema.graphqls +38 -0
- package/package.json +2 -2
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 {
|
|
@@ -4118,9 +4153,12 @@ type Mutation {
|
|
|
4118
4153
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
4119
4154
|
addBlockletStore(input: RequestAddBlockletStoreInput): GeneralResponse
|
|
4120
4155
|
deleteBlockletStore(input: RequestDeleteBlockletStoreInput): GeneralResponse
|
|
4156
|
+
getTag(input: RequestTagInput): ResponseTag
|
|
4121
4157
|
createTag(input: RequestTagInput): ResponseTag
|
|
4122
4158
|
updateTag(input: RequestTagInput): ResponseTag
|
|
4123
4159
|
deleteTag(input: RequestTagInput): ResponseTag
|
|
4160
|
+
createTagging(input: RequestTaggingInput): ResponseTagging
|
|
4161
|
+
deleteTagging(input: RequestTaggingInput): ResponseTagging
|
|
4124
4162
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
4125
4163
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
4126
4164
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
@@ -4264,4 +4302,4 @@ type Query {
|
|
|
4264
4302
|
createOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
|
|
4265
4303
|
updateOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
|
|
4266
4304
|
deleteOAuthClient(input: RequestDeleteOAuthClientInput): GeneralResponse
|
|
4267
|
-
}`;
|
|
4305
|
+
}`;
|
package/lib/schema.graphqls
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 {
|
|
@@ -4120,9 +4155,12 @@ type Mutation {
|
|
|
4120
4155
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
4121
4156
|
addBlockletStore(input: RequestAddBlockletStoreInput): GeneralResponse
|
|
4122
4157
|
deleteBlockletStore(input: RequestDeleteBlockletStoreInput): GeneralResponse
|
|
4158
|
+
getTag(input: RequestTagInput): ResponseTag
|
|
4123
4159
|
createTag(input: RequestTagInput): ResponseTag
|
|
4124
4160
|
updateTag(input: RequestTagInput): ResponseTag
|
|
4125
4161
|
deleteTag(input: RequestTagInput): ResponseTag
|
|
4162
|
+
createTagging(input: RequestTaggingInput): ResponseTagging
|
|
4163
|
+
deleteTagging(input: RequestTaggingInput): ResponseTagging
|
|
4126
4164
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
4127
4165
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
4128
4166
|
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-
|
|
6
|
+
"version": "1.16.52-beta-20251002-030549-0f91dab2",
|
|
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": "
|
|
16
|
+
"gitHead": "57e57e5edc99bfbb7e4591d682f1057ec05655a8",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|