@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 +53 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +389 -0
- package/dist/types.js +132 -1
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +289 -1
- package/lib/node.d.ts +53 -0
- package/lib/schema/graphql.json +389 -0
- package/lib/types.js +132 -1
- package/lib/types.js.map +1 -1
- package/package.json +5 -5
package/lib/node.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
|
}
|
package/lib/schema/graphql.json
CHANGED
|
@@ -9734,6 +9734,47 @@
|
|
|
9734
9734
|
"ofType": null
|
|
9735
9735
|
},
|
|
9736
9736
|
"defaultValue": null
|
|
9737
|
+
},
|
|
9738
|
+
{
|
|
9739
|
+
"name": "moveTo",
|
|
9740
|
+
"description": null,
|
|
9741
|
+
"type": {
|
|
9742
|
+
"kind": "SCALAR",
|
|
9743
|
+
"name": "Uint32",
|
|
9744
|
+
"ofType": null
|
|
9745
|
+
},
|
|
9746
|
+
"defaultValue": null
|
|
9747
|
+
}
|
|
9748
|
+
],
|
|
9749
|
+
"interfaces": null,
|
|
9750
|
+
"enumValues": null,
|
|
9751
|
+
"possibleTypes": null
|
|
9752
|
+
},
|
|
9753
|
+
{
|
|
9754
|
+
"kind": "INPUT_OBJECT",
|
|
9755
|
+
"name": "RequestTaggingInput",
|
|
9756
|
+
"description": null,
|
|
9757
|
+
"fields": null,
|
|
9758
|
+
"inputFields": [
|
|
9759
|
+
{
|
|
9760
|
+
"name": "teamDid",
|
|
9761
|
+
"description": null,
|
|
9762
|
+
"type": {
|
|
9763
|
+
"kind": "SCALAR",
|
|
9764
|
+
"name": "String",
|
|
9765
|
+
"ofType": null
|
|
9766
|
+
},
|
|
9767
|
+
"defaultValue": null
|
|
9768
|
+
},
|
|
9769
|
+
{
|
|
9770
|
+
"name": "tagging",
|
|
9771
|
+
"description": null,
|
|
9772
|
+
"type": {
|
|
9773
|
+
"kind": "INPUT_OBJECT",
|
|
9774
|
+
"name": "TaggingInput",
|
|
9775
|
+
"ofType": null
|
|
9776
|
+
},
|
|
9777
|
+
"defaultValue": null
|
|
9737
9778
|
}
|
|
9738
9779
|
],
|
|
9739
9780
|
"interfaces": null,
|
|
@@ -11960,6 +12001,115 @@
|
|
|
11960
12001
|
"ofType": null
|
|
11961
12002
|
},
|
|
11962
12003
|
"defaultValue": null
|
|
12004
|
+
},
|
|
12005
|
+
{
|
|
12006
|
+
"name": "slug",
|
|
12007
|
+
"description": null,
|
|
12008
|
+
"type": {
|
|
12009
|
+
"kind": "SCALAR",
|
|
12010
|
+
"name": "String",
|
|
12011
|
+
"ofType": null
|
|
12012
|
+
},
|
|
12013
|
+
"defaultValue": null
|
|
12014
|
+
},
|
|
12015
|
+
{
|
|
12016
|
+
"name": "type",
|
|
12017
|
+
"description": null,
|
|
12018
|
+
"type": {
|
|
12019
|
+
"kind": "SCALAR",
|
|
12020
|
+
"name": "String",
|
|
12021
|
+
"ofType": null
|
|
12022
|
+
},
|
|
12023
|
+
"defaultValue": null
|
|
12024
|
+
},
|
|
12025
|
+
{
|
|
12026
|
+
"name": "componentDid",
|
|
12027
|
+
"description": null,
|
|
12028
|
+
"type": {
|
|
12029
|
+
"kind": "SCALAR",
|
|
12030
|
+
"name": "String",
|
|
12031
|
+
"ofType": null
|
|
12032
|
+
},
|
|
12033
|
+
"defaultValue": null
|
|
12034
|
+
},
|
|
12035
|
+
{
|
|
12036
|
+
"name": "parentId",
|
|
12037
|
+
"description": null,
|
|
12038
|
+
"type": {
|
|
12039
|
+
"kind": "SCALAR",
|
|
12040
|
+
"name": "Uint32",
|
|
12041
|
+
"ofType": null
|
|
12042
|
+
},
|
|
12043
|
+
"defaultValue": null
|
|
12044
|
+
},
|
|
12045
|
+
{
|
|
12046
|
+
"name": "createdBy",
|
|
12047
|
+
"description": null,
|
|
12048
|
+
"type": {
|
|
12049
|
+
"kind": "SCALAR",
|
|
12050
|
+
"name": "String",
|
|
12051
|
+
"ofType": null
|
|
12052
|
+
},
|
|
12053
|
+
"defaultValue": null
|
|
12054
|
+
},
|
|
12055
|
+
{
|
|
12056
|
+
"name": "updatedBy",
|
|
12057
|
+
"description": null,
|
|
12058
|
+
"type": {
|
|
12059
|
+
"kind": "SCALAR",
|
|
12060
|
+
"name": "String",
|
|
12061
|
+
"ofType": null
|
|
12062
|
+
},
|
|
12063
|
+
"defaultValue": null
|
|
12064
|
+
}
|
|
12065
|
+
],
|
|
12066
|
+
"interfaces": null,
|
|
12067
|
+
"enumValues": null,
|
|
12068
|
+
"possibleTypes": null
|
|
12069
|
+
},
|
|
12070
|
+
{
|
|
12071
|
+
"kind": "INPUT_OBJECT",
|
|
12072
|
+
"name": "TaggingInput",
|
|
12073
|
+
"description": null,
|
|
12074
|
+
"fields": null,
|
|
12075
|
+
"inputFields": [
|
|
12076
|
+
{
|
|
12077
|
+
"name": "tagId",
|
|
12078
|
+
"description": null,
|
|
12079
|
+
"type": {
|
|
12080
|
+
"kind": "SCALAR",
|
|
12081
|
+
"name": "Uint32",
|
|
12082
|
+
"ofType": null
|
|
12083
|
+
},
|
|
12084
|
+
"defaultValue": null
|
|
12085
|
+
},
|
|
12086
|
+
{
|
|
12087
|
+
"name": "taggableType",
|
|
12088
|
+
"description": null,
|
|
12089
|
+
"type": {
|
|
12090
|
+
"kind": "SCALAR",
|
|
12091
|
+
"name": "String",
|
|
12092
|
+
"ofType": null
|
|
12093
|
+
},
|
|
12094
|
+
"defaultValue": null
|
|
12095
|
+
},
|
|
12096
|
+
{
|
|
12097
|
+
"name": "taggableIds",
|
|
12098
|
+
"description": null,
|
|
12099
|
+
"type": {
|
|
12100
|
+
"kind": "LIST",
|
|
12101
|
+
"name": null,
|
|
12102
|
+
"ofType": {
|
|
12103
|
+
"kind": "NON_NULL",
|
|
12104
|
+
"name": null,
|
|
12105
|
+
"ofType": {
|
|
12106
|
+
"kind": "SCALAR",
|
|
12107
|
+
"name": "String",
|
|
12108
|
+
"ofType": null
|
|
12109
|
+
}
|
|
12110
|
+
}
|
|
12111
|
+
},
|
|
12112
|
+
"defaultValue": null
|
|
11963
12113
|
}
|
|
11964
12114
|
],
|
|
11965
12115
|
"interfaces": null,
|
|
@@ -29182,6 +29332,49 @@
|
|
|
29182
29332
|
"enumValues": null,
|
|
29183
29333
|
"possibleTypes": null
|
|
29184
29334
|
},
|
|
29335
|
+
{
|
|
29336
|
+
"kind": "OBJECT",
|
|
29337
|
+
"name": "ResponseTagging",
|
|
29338
|
+
"description": null,
|
|
29339
|
+
"fields": [
|
|
29340
|
+
{
|
|
29341
|
+
"name": "code",
|
|
29342
|
+
"description": null,
|
|
29343
|
+
"args": [],
|
|
29344
|
+
"type": {
|
|
29345
|
+
"kind": "ENUM",
|
|
29346
|
+
"name": "StatusCode",
|
|
29347
|
+
"ofType": null
|
|
29348
|
+
},
|
|
29349
|
+
"isDeprecated": false,
|
|
29350
|
+
"deprecationReason": null
|
|
29351
|
+
},
|
|
29352
|
+
{
|
|
29353
|
+
"name": "tagging",
|
|
29354
|
+
"description": null,
|
|
29355
|
+
"args": [],
|
|
29356
|
+
"type": {
|
|
29357
|
+
"kind": "LIST",
|
|
29358
|
+
"name": null,
|
|
29359
|
+
"ofType": {
|
|
29360
|
+
"kind": "NON_NULL",
|
|
29361
|
+
"name": null,
|
|
29362
|
+
"ofType": {
|
|
29363
|
+
"kind": "OBJECT",
|
|
29364
|
+
"name": "Tagging",
|
|
29365
|
+
"ofType": null
|
|
29366
|
+
}
|
|
29367
|
+
}
|
|
29368
|
+
},
|
|
29369
|
+
"isDeprecated": false,
|
|
29370
|
+
"deprecationReason": null
|
|
29371
|
+
}
|
|
29372
|
+
],
|
|
29373
|
+
"inputFields": null,
|
|
29374
|
+
"interfaces": [],
|
|
29375
|
+
"enumValues": null,
|
|
29376
|
+
"possibleTypes": null
|
|
29377
|
+
},
|
|
29185
29378
|
{
|
|
29186
29379
|
"kind": "OBJECT",
|
|
29187
29380
|
"name": "ResponseTags",
|
|
@@ -30965,6 +31158,133 @@
|
|
|
30965
31158
|
},
|
|
30966
31159
|
"isDeprecated": false,
|
|
30967
31160
|
"deprecationReason": null
|
|
31161
|
+
},
|
|
31162
|
+
{
|
|
31163
|
+
"name": "slug",
|
|
31164
|
+
"description": null,
|
|
31165
|
+
"args": [],
|
|
31166
|
+
"type": {
|
|
31167
|
+
"kind": "SCALAR",
|
|
31168
|
+
"name": "String",
|
|
31169
|
+
"ofType": null
|
|
31170
|
+
},
|
|
31171
|
+
"isDeprecated": false,
|
|
31172
|
+
"deprecationReason": null
|
|
31173
|
+
},
|
|
31174
|
+
{
|
|
31175
|
+
"name": "type",
|
|
31176
|
+
"description": null,
|
|
31177
|
+
"args": [],
|
|
31178
|
+
"type": {
|
|
31179
|
+
"kind": "SCALAR",
|
|
31180
|
+
"name": "String",
|
|
31181
|
+
"ofType": null
|
|
31182
|
+
},
|
|
31183
|
+
"isDeprecated": false,
|
|
31184
|
+
"deprecationReason": null
|
|
31185
|
+
},
|
|
31186
|
+
{
|
|
31187
|
+
"name": "componentDid",
|
|
31188
|
+
"description": null,
|
|
31189
|
+
"args": [],
|
|
31190
|
+
"type": {
|
|
31191
|
+
"kind": "SCALAR",
|
|
31192
|
+
"name": "String",
|
|
31193
|
+
"ofType": null
|
|
31194
|
+
},
|
|
31195
|
+
"isDeprecated": false,
|
|
31196
|
+
"deprecationReason": null
|
|
31197
|
+
},
|
|
31198
|
+
{
|
|
31199
|
+
"name": "parentId",
|
|
31200
|
+
"description": null,
|
|
31201
|
+
"args": [],
|
|
31202
|
+
"type": {
|
|
31203
|
+
"kind": "SCALAR",
|
|
31204
|
+
"name": "Uint32",
|
|
31205
|
+
"ofType": null
|
|
31206
|
+
},
|
|
31207
|
+
"isDeprecated": false,
|
|
31208
|
+
"deprecationReason": null
|
|
31209
|
+
},
|
|
31210
|
+
{
|
|
31211
|
+
"name": "createdBy",
|
|
31212
|
+
"description": null,
|
|
31213
|
+
"args": [],
|
|
31214
|
+
"type": {
|
|
31215
|
+
"kind": "SCALAR",
|
|
31216
|
+
"name": "String",
|
|
31217
|
+
"ofType": null
|
|
31218
|
+
},
|
|
31219
|
+
"isDeprecated": false,
|
|
31220
|
+
"deprecationReason": null
|
|
31221
|
+
},
|
|
31222
|
+
{
|
|
31223
|
+
"name": "updatedBy",
|
|
31224
|
+
"description": null,
|
|
31225
|
+
"args": [],
|
|
31226
|
+
"type": {
|
|
31227
|
+
"kind": "SCALAR",
|
|
31228
|
+
"name": "String",
|
|
31229
|
+
"ofType": null
|
|
31230
|
+
},
|
|
31231
|
+
"isDeprecated": false,
|
|
31232
|
+
"deprecationReason": null
|
|
31233
|
+
}
|
|
31234
|
+
],
|
|
31235
|
+
"inputFields": null,
|
|
31236
|
+
"interfaces": [],
|
|
31237
|
+
"enumValues": null,
|
|
31238
|
+
"possibleTypes": null
|
|
31239
|
+
},
|
|
31240
|
+
{
|
|
31241
|
+
"kind": "OBJECT",
|
|
31242
|
+
"name": "Tagging",
|
|
31243
|
+
"description": null,
|
|
31244
|
+
"fields": [
|
|
31245
|
+
{
|
|
31246
|
+
"name": "tagId",
|
|
31247
|
+
"description": null,
|
|
31248
|
+
"args": [],
|
|
31249
|
+
"type": {
|
|
31250
|
+
"kind": "SCALAR",
|
|
31251
|
+
"name": "Uint32",
|
|
31252
|
+
"ofType": null
|
|
31253
|
+
},
|
|
31254
|
+
"isDeprecated": false,
|
|
31255
|
+
"deprecationReason": null
|
|
31256
|
+
},
|
|
31257
|
+
{
|
|
31258
|
+
"name": "taggableType",
|
|
31259
|
+
"description": null,
|
|
31260
|
+
"args": [],
|
|
31261
|
+
"type": {
|
|
31262
|
+
"kind": "SCALAR",
|
|
31263
|
+
"name": "String",
|
|
31264
|
+
"ofType": null
|
|
31265
|
+
},
|
|
31266
|
+
"isDeprecated": false,
|
|
31267
|
+
"deprecationReason": null
|
|
31268
|
+
},
|
|
31269
|
+
{
|
|
31270
|
+
"name": "taggableIds",
|
|
31271
|
+
"description": null,
|
|
31272
|
+
"args": [],
|
|
31273
|
+
"type": {
|
|
31274
|
+
"kind": "LIST",
|
|
31275
|
+
"name": null,
|
|
31276
|
+
"ofType": {
|
|
31277
|
+
"kind": "NON_NULL",
|
|
31278
|
+
"name": null,
|
|
31279
|
+
"ofType": {
|
|
31280
|
+
"kind": "SCALAR",
|
|
31281
|
+
"name": "String",
|
|
31282
|
+
"ofType": null
|
|
31283
|
+
}
|
|
31284
|
+
}
|
|
31285
|
+
},
|
|
31286
|
+
"isDeprecated": false,
|
|
31287
|
+
"deprecationReason": null
|
|
30968
31288
|
}
|
|
30969
31289
|
],
|
|
30970
31290
|
"inputFields": null,
|
|
@@ -36004,6 +36324,29 @@
|
|
|
36004
36324
|
"isDeprecated": false,
|
|
36005
36325
|
"deprecationReason": null
|
|
36006
36326
|
},
|
|
36327
|
+
{
|
|
36328
|
+
"name": "getTag",
|
|
36329
|
+
"description": null,
|
|
36330
|
+
"args": [
|
|
36331
|
+
{
|
|
36332
|
+
"name": "input",
|
|
36333
|
+
"description": null,
|
|
36334
|
+
"type": {
|
|
36335
|
+
"kind": "INPUT_OBJECT",
|
|
36336
|
+
"name": "RequestTagInput",
|
|
36337
|
+
"ofType": null
|
|
36338
|
+
},
|
|
36339
|
+
"defaultValue": null
|
|
36340
|
+
}
|
|
36341
|
+
],
|
|
36342
|
+
"type": {
|
|
36343
|
+
"kind": "OBJECT",
|
|
36344
|
+
"name": "ResponseTag",
|
|
36345
|
+
"ofType": null
|
|
36346
|
+
},
|
|
36347
|
+
"isDeprecated": false,
|
|
36348
|
+
"deprecationReason": null
|
|
36349
|
+
},
|
|
36007
36350
|
{
|
|
36008
36351
|
"name": "createTag",
|
|
36009
36352
|
"description": null,
|
|
@@ -36073,6 +36416,52 @@
|
|
|
36073
36416
|
"isDeprecated": false,
|
|
36074
36417
|
"deprecationReason": null
|
|
36075
36418
|
},
|
|
36419
|
+
{
|
|
36420
|
+
"name": "createTagging",
|
|
36421
|
+
"description": null,
|
|
36422
|
+
"args": [
|
|
36423
|
+
{
|
|
36424
|
+
"name": "input",
|
|
36425
|
+
"description": null,
|
|
36426
|
+
"type": {
|
|
36427
|
+
"kind": "INPUT_OBJECT",
|
|
36428
|
+
"name": "RequestTaggingInput",
|
|
36429
|
+
"ofType": null
|
|
36430
|
+
},
|
|
36431
|
+
"defaultValue": null
|
|
36432
|
+
}
|
|
36433
|
+
],
|
|
36434
|
+
"type": {
|
|
36435
|
+
"kind": "OBJECT",
|
|
36436
|
+
"name": "ResponseTagging",
|
|
36437
|
+
"ofType": null
|
|
36438
|
+
},
|
|
36439
|
+
"isDeprecated": false,
|
|
36440
|
+
"deprecationReason": null
|
|
36441
|
+
},
|
|
36442
|
+
{
|
|
36443
|
+
"name": "deleteTagging",
|
|
36444
|
+
"description": null,
|
|
36445
|
+
"args": [
|
|
36446
|
+
{
|
|
36447
|
+
"name": "input",
|
|
36448
|
+
"description": null,
|
|
36449
|
+
"type": {
|
|
36450
|
+
"kind": "INPUT_OBJECT",
|
|
36451
|
+
"name": "RequestTaggingInput",
|
|
36452
|
+
"ofType": null
|
|
36453
|
+
},
|
|
36454
|
+
"defaultValue": null
|
|
36455
|
+
}
|
|
36456
|
+
],
|
|
36457
|
+
"type": {
|
|
36458
|
+
"kind": "OBJECT",
|
|
36459
|
+
"name": "ResponseTagging",
|
|
36460
|
+
"ofType": null
|
|
36461
|
+
},
|
|
36462
|
+
"isDeprecated": false,
|
|
36463
|
+
"deprecationReason": null
|
|
36464
|
+
},
|
|
36076
36465
|
{
|
|
36077
36466
|
"name": "readNotifications",
|
|
36078
36467
|
"description": null,
|