@juzi/wechaty-grpc 1.0.12 → 1.0.15
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/cjs/out/wechaty/puppet/base_pb.d.ts +2 -0
- package/dist/cjs/out/wechaty/puppet/base_pb.js +3 -1
- package/dist/cjs/out/wechaty/puppet/contact_pb.d.ts +7 -0
- package/dist/cjs/out/wechaty/puppet/contact_pb.js +57 -2
- package/dist/cjs/out/wechaty/puppet/event_pb.d.ts +2 -0
- package/dist/cjs/out/wechaty/puppet/event_pb.js +3 -1
- package/dist/cjs/out/wechaty/puppet/tag_pb.d.ts +123 -35
- package/dist/cjs/out/wechaty/puppet/tag_pb.js +821 -145
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +94 -14
- package/dist/cjs/out/wechaty/puppet.swagger.json +140 -21
- package/dist/cjs/out/wechaty/puppet_grpc_pb.d.ts +34 -0
- package/dist/cjs/out/wechaty/puppet_grpc_pb.js +66 -0
- package/dist/cjs/out/wechaty/puppet_pb_service.d.ts +38 -0
- package/dist/cjs/out/wechaty/puppet_pb_service.js +80 -0
- package/dist/cjs/proto/wechaty/puppet/base.proto +2 -0
- package/dist/cjs/proto/wechaty/puppet/contact.proto +4 -0
- package/dist/cjs/proto/wechaty/puppet/event.proto +2 -0
- package/dist/cjs/proto/wechaty/puppet/tag.proto +26 -9
- package/dist/cjs/proto/wechaty/puppet.proto +14 -0
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/cjs/tests/puppet-server-impl.d.ts.map +1 -1
- package/dist/cjs/tests/puppet-server-impl.js +10 -0
- package/dist/cjs/tests/puppet-server-impl.js.map +1 -1
- package/dist/esm/out/wechaty/puppet/base_pb.d.ts +2 -0
- package/dist/esm/out/wechaty/puppet/base_pb.js +3 -1
- package/dist/esm/out/wechaty/puppet/contact_pb.d.ts +7 -0
- package/dist/esm/out/wechaty/puppet/contact_pb.js +57 -2
- package/dist/esm/out/wechaty/puppet/event_pb.d.ts +2 -0
- package/dist/esm/out/wechaty/puppet/event_pb.js +3 -1
- package/dist/esm/out/wechaty/puppet/tag_pb.d.ts +123 -35
- package/dist/esm/out/wechaty/puppet/tag_pb.js +821 -145
- package/dist/esm/out/wechaty/puppet.openapi.yaml +94 -14
- package/dist/esm/out/wechaty/puppet.swagger.json +140 -21
- package/dist/esm/out/wechaty/puppet_grpc_pb.d.ts +34 -0
- package/dist/esm/out/wechaty/puppet_grpc_pb.js +66 -0
- package/dist/esm/out/wechaty/puppet_pb_service.d.ts +38 -0
- package/dist/esm/out/wechaty/puppet_pb_service.js +80 -0
- package/dist/esm/proto/wechaty/puppet/base.proto +2 -0
- package/dist/esm/proto/wechaty/puppet/contact.proto +4 -0
- package/dist/esm/proto/wechaty/puppet/event.proto +2 -0
- package/dist/esm/proto/wechaty/puppet/tag.proto +26 -9
- package/dist/esm/proto/wechaty/puppet.proto +14 -0
- package/dist/esm/src/package-json.js +1 -1
- package/dist/esm/tests/puppet-server-impl.d.ts.map +1 -1
- package/dist/esm/tests/puppet-server-impl.js +10 -0
- package/dist/esm/tests/puppet-server-impl.js.map +1 -1
- package/out/wechaty/puppet/base_pb.d.ts +2 -0
- package/out/wechaty/puppet/base_pb.js +3 -1
- package/out/wechaty/puppet/contact_pb.d.ts +7 -0
- package/out/wechaty/puppet/contact_pb.js +57 -2
- package/out/wechaty/puppet/event_pb.d.ts +2 -0
- package/out/wechaty/puppet/event_pb.js +3 -1
- package/out/wechaty/puppet/tag_pb.d.ts +123 -35
- package/out/wechaty/puppet/tag_pb.js +821 -145
- package/out/wechaty/puppet.openapi.yaml +94 -14
- package/out/wechaty/puppet.swagger.json +140 -21
- package/out/wechaty/puppet_grpc_pb.d.ts +34 -0
- package/out/wechaty/puppet_grpc_pb.js +66 -0
- package/out/wechaty/puppet_pb_service.d.ts +38 -0
- package/out/wechaty/puppet_pb_service.js +80 -0
- package/package.json +1 -1
- package/src/package-json.ts +1 -1
|
@@ -9,7 +9,7 @@ info:
|
|
|
9
9
|
|
|
10
10
|
Wechaty Puppet Service is the RESTful API for Wechaty API, which is build on
|
|
11
11
|
top of the Wechaty Puppet Abstraction and the gRPC proto definition.
|
|
12
|
-
version: 1.0.
|
|
12
|
+
version: 1.0.15
|
|
13
13
|
contact:
|
|
14
14
|
name: Wechaty
|
|
15
15
|
url: 'https://github.com/wechaty/openapi'
|
|
@@ -310,6 +310,8 @@ paths:
|
|
|
310
310
|
- PAYLOAD_TYPE_ROOM
|
|
311
311
|
- PAYLOAD_TYPE_ROOM_MEMBER
|
|
312
312
|
- PAYLOAD_TYPE_FRIENDSHIP
|
|
313
|
+
- PAYLOAD_TYPE_TAG
|
|
314
|
+
- PAYLOAD_TYPE_TAG_GROUP
|
|
313
315
|
pattern: PAYLOADTYPECONTACT
|
|
314
316
|
tags:
|
|
315
317
|
- Puppet
|
|
@@ -769,6 +771,8 @@ paths:
|
|
|
769
771
|
- PAYLOAD_TYPE_ROOM
|
|
770
772
|
- PAYLOAD_TYPE_ROOM_MEMBER
|
|
771
773
|
- PAYLOAD_TYPE_FRIENDSHIP
|
|
774
|
+
- PAYLOAD_TYPE_TAG
|
|
775
|
+
- PAYLOAD_TYPE_TAG_GROUP
|
|
772
776
|
pattern: PAYLOADTYPEFRIENDSHIP
|
|
773
777
|
tags:
|
|
774
778
|
- Puppet
|
|
@@ -871,6 +875,8 @@ paths:
|
|
|
871
875
|
- PAYLOAD_TYPE_ROOM
|
|
872
876
|
- PAYLOAD_TYPE_ROOM_MEMBER
|
|
873
877
|
- PAYLOAD_TYPE_FRIENDSHIP
|
|
878
|
+
- PAYLOAD_TYPE_TAG
|
|
879
|
+
- PAYLOAD_TYPE_TAG_GROUP
|
|
874
880
|
pattern: PAYLOADTYPEMESSAGE
|
|
875
881
|
tags:
|
|
876
882
|
- Puppet
|
|
@@ -1250,6 +1256,8 @@ paths:
|
|
|
1250
1256
|
- PAYLOAD_TYPE_ROOM
|
|
1251
1257
|
- PAYLOAD_TYPE_ROOM_MEMBER
|
|
1252
1258
|
- PAYLOAD_TYPE_FRIENDSHIP
|
|
1259
|
+
- PAYLOAD_TYPE_TAG
|
|
1260
|
+
- PAYLOAD_TYPE_TAG_GROUP
|
|
1253
1261
|
pattern: PAYLOADTYPEROOMMEMBER
|
|
1254
1262
|
tags:
|
|
1255
1263
|
- Puppet
|
|
@@ -1281,6 +1289,8 @@ paths:
|
|
|
1281
1289
|
- PAYLOAD_TYPE_ROOM
|
|
1282
1290
|
- PAYLOAD_TYPE_ROOM_MEMBER
|
|
1283
1291
|
- PAYLOAD_TYPE_FRIENDSHIP
|
|
1292
|
+
- PAYLOAD_TYPE_TAG
|
|
1293
|
+
- PAYLOAD_TYPE_TAG_GROUP
|
|
1284
1294
|
pattern: PAYLOADTYPEROOM
|
|
1285
1295
|
tags:
|
|
1286
1296
|
- Puppet
|
|
@@ -1527,6 +1537,26 @@ paths:
|
|
|
1527
1537
|
$ref: '#/definitions/rpcStatus'
|
|
1528
1538
|
tags:
|
|
1529
1539
|
- Puppet
|
|
1540
|
+
/tag/payload:
|
|
1541
|
+
post:
|
|
1542
|
+
operationId: Puppet_TagPayload
|
|
1543
|
+
responses:
|
|
1544
|
+
'200':
|
|
1545
|
+
description: A successful response.
|
|
1546
|
+
schema:
|
|
1547
|
+
$ref: '#/definitions/puppetTagPayloadResponse'
|
|
1548
|
+
default:
|
|
1549
|
+
description: An unexpected error response.
|
|
1550
|
+
schema:
|
|
1551
|
+
$ref: '#/definitions/rpcStatus'
|
|
1552
|
+
parameters:
|
|
1553
|
+
- name: body
|
|
1554
|
+
in: body
|
|
1555
|
+
required: true
|
|
1556
|
+
schema:
|
|
1557
|
+
$ref: '#/definitions/puppetTagPayloadRequest'
|
|
1558
|
+
tags:
|
|
1559
|
+
- Puppet
|
|
1530
1560
|
/tag/removeContactTag:
|
|
1531
1561
|
post:
|
|
1532
1562
|
operationId: Puppet_TagContactTagRemove
|
|
@@ -1624,6 +1654,26 @@ paths:
|
|
|
1624
1654
|
$ref: '#/definitions/rpcStatus'
|
|
1625
1655
|
tags:
|
|
1626
1656
|
- Puppet
|
|
1657
|
+
/tagGroup/payload:
|
|
1658
|
+
post:
|
|
1659
|
+
operationId: Puppet_TagGroupPayload
|
|
1660
|
+
responses:
|
|
1661
|
+
'200':
|
|
1662
|
+
description: A successful response.
|
|
1663
|
+
schema:
|
|
1664
|
+
$ref: '#/definitions/puppetTagGroupPayloadResponse'
|
|
1665
|
+
default:
|
|
1666
|
+
description: An unexpected error response.
|
|
1667
|
+
schema:
|
|
1668
|
+
$ref: '#/definitions/rpcStatus'
|
|
1669
|
+
parameters:
|
|
1670
|
+
- name: body
|
|
1671
|
+
in: body
|
|
1672
|
+
required: true
|
|
1673
|
+
schema:
|
|
1674
|
+
$ref: '#/definitions/puppetTagGroupPayloadRequest'
|
|
1675
|
+
tags:
|
|
1676
|
+
- Puppet
|
|
1627
1677
|
/upload:
|
|
1628
1678
|
post:
|
|
1629
1679
|
operationId: Puppet_Upload
|
|
@@ -1946,6 +1996,10 @@ definitions:
|
|
|
1946
1996
|
type: string
|
|
1947
1997
|
additionalInfo:
|
|
1948
1998
|
type: string
|
|
1999
|
+
tags:
|
|
2000
|
+
type: array
|
|
2001
|
+
items:
|
|
2002
|
+
$ref: '#/definitions/puppetTagIdentifier'
|
|
1949
2003
|
puppetContactPhoneResponse:
|
|
1950
2004
|
type: object
|
|
1951
2005
|
properties:
|
|
@@ -2023,6 +2077,8 @@ definitions:
|
|
|
2023
2077
|
- EVENT_TYPE_LOGIN
|
|
2024
2078
|
- EVENT_TYPE_LOGOUT
|
|
2025
2079
|
- EVENT_TYPE_DIRTY
|
|
2080
|
+
- EVENT_TYPE_TAG
|
|
2081
|
+
- EVENT_TYPE_TAG_GROUP
|
|
2026
2082
|
default: EVENT_TYPE_UNSPECIFIED
|
|
2027
2083
|
puppetFileBoxChunk:
|
|
2028
2084
|
type: object
|
|
@@ -2446,6 +2502,8 @@ definitions:
|
|
|
2446
2502
|
- PAYLOAD_TYPE_ROOM
|
|
2447
2503
|
- PAYLOAD_TYPE_ROOM_MEMBER
|
|
2448
2504
|
- PAYLOAD_TYPE_FRIENDSHIP
|
|
2505
|
+
- PAYLOAD_TYPE_TAG
|
|
2506
|
+
- PAYLOAD_TYPE_TAG_GROUP
|
|
2449
2507
|
default: PAYLOAD_TYPE_UNSPECIFIED
|
|
2450
2508
|
puppetReferrer:
|
|
2451
2509
|
type: object
|
|
@@ -2610,10 +2668,10 @@ definitions:
|
|
|
2610
2668
|
puppetTagContactTagListResponse:
|
|
2611
2669
|
type: object
|
|
2612
2670
|
properties:
|
|
2613
|
-
|
|
2671
|
+
tags:
|
|
2614
2672
|
type: array
|
|
2615
2673
|
items:
|
|
2616
|
-
$ref: '#/definitions/
|
|
2674
|
+
$ref: '#/definitions/puppetTagIdentifier'
|
|
2617
2675
|
puppetTagContactTagRemoveRequest:
|
|
2618
2676
|
type: object
|
|
2619
2677
|
properties:
|
|
@@ -2635,8 +2693,8 @@ definitions:
|
|
|
2635
2693
|
puppetTagGroupAddResponse:
|
|
2636
2694
|
type: object
|
|
2637
2695
|
properties:
|
|
2638
|
-
|
|
2639
|
-
|
|
2696
|
+
tagGroupId:
|
|
2697
|
+
type: string
|
|
2640
2698
|
puppetTagGroupDeleteRequest:
|
|
2641
2699
|
type: object
|
|
2642
2700
|
properties:
|
|
@@ -2647,10 +2705,10 @@ definitions:
|
|
|
2647
2705
|
puppetTagGroupListResponse:
|
|
2648
2706
|
type: object
|
|
2649
2707
|
properties:
|
|
2650
|
-
|
|
2708
|
+
tagGroupIds:
|
|
2651
2709
|
type: array
|
|
2652
2710
|
items:
|
|
2653
|
-
|
|
2711
|
+
type: string
|
|
2654
2712
|
puppetTagGroupPayload:
|
|
2655
2713
|
type: object
|
|
2656
2714
|
properties:
|
|
@@ -2658,13 +2716,25 @@ definitions:
|
|
|
2658
2716
|
type: string
|
|
2659
2717
|
name:
|
|
2660
2718
|
type: string
|
|
2719
|
+
type:
|
|
2720
|
+
$ref: '#/definitions/puppetTagType'
|
|
2721
|
+
puppetTagGroupPayloadRequest:
|
|
2722
|
+
type: object
|
|
2723
|
+
properties:
|
|
2724
|
+
groupId:
|
|
2725
|
+
type: string
|
|
2726
|
+
puppetTagGroupPayloadResponse:
|
|
2727
|
+
type: object
|
|
2728
|
+
properties:
|
|
2729
|
+
payload:
|
|
2730
|
+
$ref: '#/definitions/puppetTagGroupPayload'
|
|
2661
2731
|
puppetTagGroupTagListResponse:
|
|
2662
2732
|
type: object
|
|
2663
2733
|
properties:
|
|
2664
|
-
|
|
2734
|
+
tags:
|
|
2665
2735
|
type: array
|
|
2666
2736
|
items:
|
|
2667
|
-
$ref: '#/definitions/
|
|
2737
|
+
$ref: '#/definitions/puppetTagIdentifier'
|
|
2668
2738
|
puppetTagIdentifier:
|
|
2669
2739
|
type: object
|
|
2670
2740
|
properties:
|
|
@@ -2683,6 +2753,16 @@ definitions:
|
|
|
2683
2753
|
type: string
|
|
2684
2754
|
type:
|
|
2685
2755
|
$ref: '#/definitions/puppetTagType'
|
|
2756
|
+
puppetTagPayloadRequest:
|
|
2757
|
+
type: object
|
|
2758
|
+
properties:
|
|
2759
|
+
tag:
|
|
2760
|
+
$ref: '#/definitions/puppetTagIdentifier'
|
|
2761
|
+
puppetTagPayloadResponse:
|
|
2762
|
+
type: object
|
|
2763
|
+
properties:
|
|
2764
|
+
payload:
|
|
2765
|
+
$ref: '#/definitions/puppetTagPayload'
|
|
2686
2766
|
puppetTagTagAddRequest:
|
|
2687
2767
|
type: object
|
|
2688
2768
|
properties:
|
|
@@ -2693,12 +2773,12 @@ definitions:
|
|
|
2693
2773
|
puppetTagTagAddResponse:
|
|
2694
2774
|
type: object
|
|
2695
2775
|
properties:
|
|
2696
|
-
|
|
2697
|
-
$ref: '#/definitions/
|
|
2776
|
+
tag:
|
|
2777
|
+
$ref: '#/definitions/puppetTagIdentifier'
|
|
2698
2778
|
puppetTagTagContactListResponse:
|
|
2699
2779
|
type: object
|
|
2700
2780
|
properties:
|
|
2701
|
-
|
|
2781
|
+
contactIds:
|
|
2702
2782
|
type: array
|
|
2703
2783
|
items:
|
|
2704
2784
|
type: string
|
|
@@ -2712,10 +2792,10 @@ definitions:
|
|
|
2712
2792
|
puppetTagTagListResponse:
|
|
2713
2793
|
type: object
|
|
2714
2794
|
properties:
|
|
2715
|
-
|
|
2795
|
+
tags:
|
|
2716
2796
|
type: array
|
|
2717
2797
|
items:
|
|
2718
|
-
$ref: '#/definitions/
|
|
2798
|
+
$ref: '#/definitions/puppetTagIdentifier'
|
|
2719
2799
|
puppetTagType:
|
|
2720
2800
|
type: string
|
|
2721
2801
|
enum:
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Wechaty Puppet Service OpenAPI Specification",
|
|
5
5
|
"description": "Wechaty is a Conversational RPA SDK for chatbot makers. With only 6 lines of code, you can create a bot on the most popular IMs like WeChat, Whatsapp, WeCom, Gitter, etc.\n\nWechaty Puppet Service is the RESTful API for Wechaty API, which is build on top of the Wechaty Puppet Abstraction and the gRPC proto definition.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.15",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Wechaty",
|
|
9
9
|
"url": "https://github.com/wechaty/openapi",
|
|
@@ -459,7 +459,9 @@
|
|
|
459
459
|
"PAYLOAD_TYPE_CONTACT",
|
|
460
460
|
"PAYLOAD_TYPE_ROOM",
|
|
461
461
|
"PAYLOAD_TYPE_ROOM_MEMBER",
|
|
462
|
-
"PAYLOAD_TYPE_FRIENDSHIP"
|
|
462
|
+
"PAYLOAD_TYPE_FRIENDSHIP",
|
|
463
|
+
"PAYLOAD_TYPE_TAG",
|
|
464
|
+
"PAYLOAD_TYPE_TAG_GROUP"
|
|
463
465
|
],
|
|
464
466
|
"pattern": "PAYLOADTYPECONTACT"
|
|
465
467
|
}
|
|
@@ -1130,7 +1132,9 @@
|
|
|
1130
1132
|
"PAYLOAD_TYPE_CONTACT",
|
|
1131
1133
|
"PAYLOAD_TYPE_ROOM",
|
|
1132
1134
|
"PAYLOAD_TYPE_ROOM_MEMBER",
|
|
1133
|
-
"PAYLOAD_TYPE_FRIENDSHIP"
|
|
1135
|
+
"PAYLOAD_TYPE_FRIENDSHIP",
|
|
1136
|
+
"PAYLOAD_TYPE_TAG",
|
|
1137
|
+
"PAYLOAD_TYPE_TAG_GROUP"
|
|
1134
1138
|
],
|
|
1135
1139
|
"pattern": "PAYLOADTYPEFRIENDSHIP"
|
|
1136
1140
|
}
|
|
@@ -1287,7 +1291,9 @@
|
|
|
1287
1291
|
"PAYLOAD_TYPE_CONTACT",
|
|
1288
1292
|
"PAYLOAD_TYPE_ROOM",
|
|
1289
1293
|
"PAYLOAD_TYPE_ROOM_MEMBER",
|
|
1290
|
-
"PAYLOAD_TYPE_FRIENDSHIP"
|
|
1294
|
+
"PAYLOAD_TYPE_FRIENDSHIP",
|
|
1295
|
+
"PAYLOAD_TYPE_TAG",
|
|
1296
|
+
"PAYLOAD_TYPE_TAG_GROUP"
|
|
1291
1297
|
],
|
|
1292
1298
|
"pattern": "PAYLOADTYPEMESSAGE"
|
|
1293
1299
|
}
|
|
@@ -1863,7 +1869,9 @@
|
|
|
1863
1869
|
"PAYLOAD_TYPE_CONTACT",
|
|
1864
1870
|
"PAYLOAD_TYPE_ROOM",
|
|
1865
1871
|
"PAYLOAD_TYPE_ROOM_MEMBER",
|
|
1866
|
-
"PAYLOAD_TYPE_FRIENDSHIP"
|
|
1872
|
+
"PAYLOAD_TYPE_FRIENDSHIP",
|
|
1873
|
+
"PAYLOAD_TYPE_TAG",
|
|
1874
|
+
"PAYLOAD_TYPE_TAG_GROUP"
|
|
1867
1875
|
],
|
|
1868
1876
|
"pattern": "PAYLOADTYPEROOMMEMBER"
|
|
1869
1877
|
}
|
|
@@ -1908,7 +1916,9 @@
|
|
|
1908
1916
|
"PAYLOAD_TYPE_CONTACT",
|
|
1909
1917
|
"PAYLOAD_TYPE_ROOM",
|
|
1910
1918
|
"PAYLOAD_TYPE_ROOM_MEMBER",
|
|
1911
|
-
"PAYLOAD_TYPE_FRIENDSHIP"
|
|
1919
|
+
"PAYLOAD_TYPE_FRIENDSHIP",
|
|
1920
|
+
"PAYLOAD_TYPE_TAG",
|
|
1921
|
+
"PAYLOAD_TYPE_TAG_GROUP"
|
|
1912
1922
|
],
|
|
1913
1923
|
"pattern": "PAYLOADTYPEROOM"
|
|
1914
1924
|
}
|
|
@@ -2298,6 +2308,38 @@
|
|
|
2298
2308
|
]
|
|
2299
2309
|
}
|
|
2300
2310
|
},
|
|
2311
|
+
"/tag/payload": {
|
|
2312
|
+
"post": {
|
|
2313
|
+
"operationId": "Puppet_TagPayload",
|
|
2314
|
+
"responses": {
|
|
2315
|
+
"200": {
|
|
2316
|
+
"description": "A successful response.",
|
|
2317
|
+
"schema": {
|
|
2318
|
+
"$ref": "#/definitions/puppetTagPayloadResponse"
|
|
2319
|
+
}
|
|
2320
|
+
},
|
|
2321
|
+
"default": {
|
|
2322
|
+
"description": "An unexpected error response.",
|
|
2323
|
+
"schema": {
|
|
2324
|
+
"$ref": "#/definitions/rpcStatus"
|
|
2325
|
+
}
|
|
2326
|
+
}
|
|
2327
|
+
},
|
|
2328
|
+
"parameters": [
|
|
2329
|
+
{
|
|
2330
|
+
"name": "body",
|
|
2331
|
+
"in": "body",
|
|
2332
|
+
"required": true,
|
|
2333
|
+
"schema": {
|
|
2334
|
+
"$ref": "#/definitions/puppetTagPayloadRequest"
|
|
2335
|
+
}
|
|
2336
|
+
}
|
|
2337
|
+
],
|
|
2338
|
+
"tags": [
|
|
2339
|
+
"Puppet"
|
|
2340
|
+
]
|
|
2341
|
+
}
|
|
2342
|
+
},
|
|
2301
2343
|
"/tag/removeContactTag": {
|
|
2302
2344
|
"post": {
|
|
2303
2345
|
"operationId": "Puppet_TagContactTagRemove",
|
|
@@ -2452,6 +2494,38 @@
|
|
|
2452
2494
|
]
|
|
2453
2495
|
}
|
|
2454
2496
|
},
|
|
2497
|
+
"/tagGroup/payload": {
|
|
2498
|
+
"post": {
|
|
2499
|
+
"operationId": "Puppet_TagGroupPayload",
|
|
2500
|
+
"responses": {
|
|
2501
|
+
"200": {
|
|
2502
|
+
"description": "A successful response.",
|
|
2503
|
+
"schema": {
|
|
2504
|
+
"$ref": "#/definitions/puppetTagGroupPayloadResponse"
|
|
2505
|
+
}
|
|
2506
|
+
},
|
|
2507
|
+
"default": {
|
|
2508
|
+
"description": "An unexpected error response.",
|
|
2509
|
+
"schema": {
|
|
2510
|
+
"$ref": "#/definitions/rpcStatus"
|
|
2511
|
+
}
|
|
2512
|
+
}
|
|
2513
|
+
},
|
|
2514
|
+
"parameters": [
|
|
2515
|
+
{
|
|
2516
|
+
"name": "body",
|
|
2517
|
+
"in": "body",
|
|
2518
|
+
"required": true,
|
|
2519
|
+
"schema": {
|
|
2520
|
+
"$ref": "#/definitions/puppetTagGroupPayloadRequest"
|
|
2521
|
+
}
|
|
2522
|
+
}
|
|
2523
|
+
],
|
|
2524
|
+
"tags": [
|
|
2525
|
+
"Puppet"
|
|
2526
|
+
]
|
|
2527
|
+
}
|
|
2528
|
+
},
|
|
2455
2529
|
"/upload": {
|
|
2456
2530
|
"post": {
|
|
2457
2531
|
"operationId": "Puppet_Upload",
|
|
@@ -2905,6 +2979,12 @@
|
|
|
2905
2979
|
},
|
|
2906
2980
|
"additionalInfo": {
|
|
2907
2981
|
"type": "string"
|
|
2982
|
+
},
|
|
2983
|
+
"tags": {
|
|
2984
|
+
"type": "array",
|
|
2985
|
+
"items": {
|
|
2986
|
+
"$ref": "#/definitions/puppetTagIdentifier"
|
|
2987
|
+
}
|
|
2908
2988
|
}
|
|
2909
2989
|
}
|
|
2910
2990
|
},
|
|
@@ -3013,7 +3093,9 @@
|
|
|
3013
3093
|
"EVENT_TYPE_RESET",
|
|
3014
3094
|
"EVENT_TYPE_LOGIN",
|
|
3015
3095
|
"EVENT_TYPE_LOGOUT",
|
|
3016
|
-
"EVENT_TYPE_DIRTY"
|
|
3096
|
+
"EVENT_TYPE_DIRTY",
|
|
3097
|
+
"EVENT_TYPE_TAG",
|
|
3098
|
+
"EVENT_TYPE_TAG_GROUP"
|
|
3017
3099
|
],
|
|
3018
3100
|
"default": "EVENT_TYPE_UNSPECIFIED"
|
|
3019
3101
|
},
|
|
@@ -3529,7 +3611,9 @@
|
|
|
3529
3611
|
"PAYLOAD_TYPE_CONTACT",
|
|
3530
3612
|
"PAYLOAD_TYPE_ROOM",
|
|
3531
3613
|
"PAYLOAD_TYPE_ROOM_MEMBER",
|
|
3532
|
-
"PAYLOAD_TYPE_FRIENDSHIP"
|
|
3614
|
+
"PAYLOAD_TYPE_FRIENDSHIP",
|
|
3615
|
+
"PAYLOAD_TYPE_TAG",
|
|
3616
|
+
"PAYLOAD_TYPE_TAG_GROUP"
|
|
3533
3617
|
],
|
|
3534
3618
|
"default": "PAYLOAD_TYPE_UNSPECIFIED"
|
|
3535
3619
|
},
|
|
@@ -3768,10 +3852,10 @@
|
|
|
3768
3852
|
"puppetTagContactTagListResponse": {
|
|
3769
3853
|
"type": "object",
|
|
3770
3854
|
"properties": {
|
|
3771
|
-
"
|
|
3855
|
+
"tags": {
|
|
3772
3856
|
"type": "array",
|
|
3773
3857
|
"items": {
|
|
3774
|
-
"$ref": "#/definitions/
|
|
3858
|
+
"$ref": "#/definitions/puppetTagIdentifier"
|
|
3775
3859
|
}
|
|
3776
3860
|
}
|
|
3777
3861
|
}
|
|
@@ -3807,8 +3891,8 @@
|
|
|
3807
3891
|
"puppetTagGroupAddResponse": {
|
|
3808
3892
|
"type": "object",
|
|
3809
3893
|
"properties": {
|
|
3810
|
-
"
|
|
3811
|
-
"
|
|
3894
|
+
"tagGroupId": {
|
|
3895
|
+
"type": "string"
|
|
3812
3896
|
}
|
|
3813
3897
|
}
|
|
3814
3898
|
},
|
|
@@ -3826,10 +3910,10 @@
|
|
|
3826
3910
|
"puppetTagGroupListResponse": {
|
|
3827
3911
|
"type": "object",
|
|
3828
3912
|
"properties": {
|
|
3829
|
-
"
|
|
3913
|
+
"tagGroupIds": {
|
|
3830
3914
|
"type": "array",
|
|
3831
3915
|
"items": {
|
|
3832
|
-
"
|
|
3916
|
+
"type": "string"
|
|
3833
3917
|
}
|
|
3834
3918
|
}
|
|
3835
3919
|
}
|
|
@@ -3842,16 +3926,35 @@
|
|
|
3842
3926
|
},
|
|
3843
3927
|
"name": {
|
|
3844
3928
|
"type": "string"
|
|
3929
|
+
},
|
|
3930
|
+
"type": {
|
|
3931
|
+
"$ref": "#/definitions/puppetTagType"
|
|
3932
|
+
}
|
|
3933
|
+
}
|
|
3934
|
+
},
|
|
3935
|
+
"puppetTagGroupPayloadRequest": {
|
|
3936
|
+
"type": "object",
|
|
3937
|
+
"properties": {
|
|
3938
|
+
"groupId": {
|
|
3939
|
+
"type": "string"
|
|
3940
|
+
}
|
|
3941
|
+
}
|
|
3942
|
+
},
|
|
3943
|
+
"puppetTagGroupPayloadResponse": {
|
|
3944
|
+
"type": "object",
|
|
3945
|
+
"properties": {
|
|
3946
|
+
"payload": {
|
|
3947
|
+
"$ref": "#/definitions/puppetTagGroupPayload"
|
|
3845
3948
|
}
|
|
3846
3949
|
}
|
|
3847
3950
|
},
|
|
3848
3951
|
"puppetTagGroupTagListResponse": {
|
|
3849
3952
|
"type": "object",
|
|
3850
3953
|
"properties": {
|
|
3851
|
-
"
|
|
3954
|
+
"tags": {
|
|
3852
3955
|
"type": "array",
|
|
3853
3956
|
"items": {
|
|
3854
|
-
"$ref": "#/definitions/
|
|
3957
|
+
"$ref": "#/definitions/puppetTagIdentifier"
|
|
3855
3958
|
}
|
|
3856
3959
|
}
|
|
3857
3960
|
}
|
|
@@ -3884,6 +3987,22 @@
|
|
|
3884
3987
|
}
|
|
3885
3988
|
}
|
|
3886
3989
|
},
|
|
3990
|
+
"puppetTagPayloadRequest": {
|
|
3991
|
+
"type": "object",
|
|
3992
|
+
"properties": {
|
|
3993
|
+
"tag": {
|
|
3994
|
+
"$ref": "#/definitions/puppetTagIdentifier"
|
|
3995
|
+
}
|
|
3996
|
+
}
|
|
3997
|
+
},
|
|
3998
|
+
"puppetTagPayloadResponse": {
|
|
3999
|
+
"type": "object",
|
|
4000
|
+
"properties": {
|
|
4001
|
+
"payload": {
|
|
4002
|
+
"$ref": "#/definitions/puppetTagPayload"
|
|
4003
|
+
}
|
|
4004
|
+
}
|
|
4005
|
+
},
|
|
3887
4006
|
"puppetTagTagAddRequest": {
|
|
3888
4007
|
"type": "object",
|
|
3889
4008
|
"properties": {
|
|
@@ -3898,15 +4017,15 @@
|
|
|
3898
4017
|
"puppetTagTagAddResponse": {
|
|
3899
4018
|
"type": "object",
|
|
3900
4019
|
"properties": {
|
|
3901
|
-
"
|
|
3902
|
-
"$ref": "#/definitions/
|
|
4020
|
+
"tag": {
|
|
4021
|
+
"$ref": "#/definitions/puppetTagIdentifier"
|
|
3903
4022
|
}
|
|
3904
4023
|
}
|
|
3905
4024
|
},
|
|
3906
4025
|
"puppetTagTagContactListResponse": {
|
|
3907
4026
|
"type": "object",
|
|
3908
4027
|
"properties": {
|
|
3909
|
-
"
|
|
4028
|
+
"contactIds": {
|
|
3910
4029
|
"type": "array",
|
|
3911
4030
|
"items": {
|
|
3912
4031
|
"type": "string"
|
|
@@ -3928,10 +4047,10 @@
|
|
|
3928
4047
|
"puppetTagTagListResponse": {
|
|
3929
4048
|
"type": "object",
|
|
3930
4049
|
"properties": {
|
|
3931
|
-
"
|
|
4050
|
+
"tags": {
|
|
3932
4051
|
"type": "array",
|
|
3933
4052
|
"items": {
|
|
3934
|
-
"$ref": "#/definitions/
|
|
4053
|
+
"$ref": "#/definitions/puppetTagIdentifier"
|
|
3935
4054
|
}
|
|
3936
4055
|
}
|
|
3937
4056
|
}
|
|
@@ -84,8 +84,10 @@ interface IPuppetService extends grpc.ServiceDefinition<grpc.UntypedServiceImple
|
|
|
84
84
|
tagContactTagRemove: IPuppetService_ITagContactTagRemove;
|
|
85
85
|
tagGroupAdd: IPuppetService_ITagGroupAdd;
|
|
86
86
|
tagGroupDelete: IPuppetService_ITagGroupDelete;
|
|
87
|
+
tagGroupPayload: IPuppetService_ITagGroupPayload;
|
|
87
88
|
tagTagAdd: IPuppetService_ITagTagAdd;
|
|
88
89
|
tagTagDelete: IPuppetService_ITagTagDelete;
|
|
90
|
+
tagPayload: IPuppetService_ITagPayload;
|
|
89
91
|
tagGroupList: IPuppetService_ITagGroupList;
|
|
90
92
|
tagGroupTagList: IPuppetService_ITagGroupTagList;
|
|
91
93
|
tagTagList: IPuppetService_ITagTagList;
|
|
@@ -662,6 +664,15 @@ interface IPuppetService_ITagGroupDelete extends grpc.MethodDefinition<wechaty_p
|
|
|
662
664
|
responseSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagGroupDeleteResponse>;
|
|
663
665
|
responseDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagGroupDeleteResponse>;
|
|
664
666
|
}
|
|
667
|
+
interface IPuppetService_ITagGroupPayload extends grpc.MethodDefinition<wechaty_puppet_tag_pb.TagGroupPayloadRequest, wechaty_puppet_tag_pb.TagGroupPayloadResponse> {
|
|
668
|
+
path: "/wechaty.Puppet/TagGroupPayload";
|
|
669
|
+
requestStream: false;
|
|
670
|
+
responseStream: false;
|
|
671
|
+
requestSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagGroupPayloadRequest>;
|
|
672
|
+
requestDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagGroupPayloadRequest>;
|
|
673
|
+
responseSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagGroupPayloadResponse>;
|
|
674
|
+
responseDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagGroupPayloadResponse>;
|
|
675
|
+
}
|
|
665
676
|
interface IPuppetService_ITagTagAdd extends grpc.MethodDefinition<wechaty_puppet_tag_pb.TagTagAddRequest, wechaty_puppet_tag_pb.TagTagAddResponse> {
|
|
666
677
|
path: "/wechaty.Puppet/TagTagAdd";
|
|
667
678
|
requestStream: false;
|
|
@@ -680,6 +691,15 @@ interface IPuppetService_ITagTagDelete extends grpc.MethodDefinition<wechaty_pup
|
|
|
680
691
|
responseSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
681
692
|
responseDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
682
693
|
}
|
|
694
|
+
interface IPuppetService_ITagPayload extends grpc.MethodDefinition<wechaty_puppet_tag_pb.TagPayloadRequest, wechaty_puppet_tag_pb.TagPayloadResponse> {
|
|
695
|
+
path: "/wechaty.Puppet/TagPayload";
|
|
696
|
+
requestStream: false;
|
|
697
|
+
responseStream: false;
|
|
698
|
+
requestSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagPayloadRequest>;
|
|
699
|
+
requestDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagPayloadRequest>;
|
|
700
|
+
responseSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagPayloadResponse>;
|
|
701
|
+
responseDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagPayloadResponse>;
|
|
702
|
+
}
|
|
683
703
|
interface IPuppetService_ITagGroupList extends grpc.MethodDefinition<wechaty_puppet_tag_pb.TagGroupListRequest, wechaty_puppet_tag_pb.TagGroupListResponse> {
|
|
684
704
|
path: "/wechaty.Puppet/TagGroupList";
|
|
685
705
|
requestStream: false;
|
|
@@ -810,8 +830,10 @@ export interface IPuppetServer extends grpc.UntypedServiceImplementation {
|
|
|
810
830
|
tagContactTagRemove: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagContactTagRemoveRequest, wechaty_puppet_tag_pb.TagContactTagRemoveResponse>;
|
|
811
831
|
tagGroupAdd: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagGroupAddRequest, wechaty_puppet_tag_pb.TagGroupAddResponse>;
|
|
812
832
|
tagGroupDelete: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagGroupDeleteRequest, wechaty_puppet_tag_pb.TagGroupDeleteResponse>;
|
|
833
|
+
tagGroupPayload: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagGroupPayloadRequest, wechaty_puppet_tag_pb.TagGroupPayloadResponse>;
|
|
813
834
|
tagTagAdd: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagTagAddRequest, wechaty_puppet_tag_pb.TagTagAddResponse>;
|
|
814
835
|
tagTagDelete: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagTagDeleteRequest, wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
836
|
+
tagPayload: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagPayloadRequest, wechaty_puppet_tag_pb.TagPayloadResponse>;
|
|
815
837
|
tagGroupList: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagGroupListRequest, wechaty_puppet_tag_pb.TagGroupListResponse>;
|
|
816
838
|
tagGroupTagList: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagGroupTagListRequest, wechaty_puppet_tag_pb.TagGroupTagListResponse>;
|
|
817
839
|
tagTagList: grpc.handleUnaryCall<wechaty_puppet_tag_pb.TagTagListRequest, wechaty_puppet_tag_pb.TagTagListResponse>;
|
|
@@ -1009,12 +1031,18 @@ export interface IPuppetClient {
|
|
|
1009
1031
|
tagGroupDelete(request: wechaty_puppet_tag_pb.TagGroupDeleteRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1010
1032
|
tagGroupDelete(request: wechaty_puppet_tag_pb.TagGroupDeleteRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1011
1033
|
tagGroupDelete(request: wechaty_puppet_tag_pb.TagGroupDeleteRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1034
|
+
tagGroupPayload(request: wechaty_puppet_tag_pb.TagGroupPayloadRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1035
|
+
tagGroupPayload(request: wechaty_puppet_tag_pb.TagGroupPayloadRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1036
|
+
tagGroupPayload(request: wechaty_puppet_tag_pb.TagGroupPayloadRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1012
1037
|
tagTagAdd(request: wechaty_puppet_tag_pb.TagTagAddRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagAddResponse) => void): grpc.ClientUnaryCall;
|
|
1013
1038
|
tagTagAdd(request: wechaty_puppet_tag_pb.TagTagAddRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagAddResponse) => void): grpc.ClientUnaryCall;
|
|
1014
1039
|
tagTagAdd(request: wechaty_puppet_tag_pb.TagTagAddRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagAddResponse) => void): grpc.ClientUnaryCall;
|
|
1015
1040
|
tagTagDelete(request: wechaty_puppet_tag_pb.TagTagDeleteRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1016
1041
|
tagTagDelete(request: wechaty_puppet_tag_pb.TagTagDeleteRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1017
1042
|
tagTagDelete(request: wechaty_puppet_tag_pb.TagTagDeleteRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1043
|
+
tagPayload(request: wechaty_puppet_tag_pb.TagPayloadRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1044
|
+
tagPayload(request: wechaty_puppet_tag_pb.TagPayloadRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1045
|
+
tagPayload(request: wechaty_puppet_tag_pb.TagPayloadRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1018
1046
|
tagGroupList(request: wechaty_puppet_tag_pb.TagGroupListRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupListResponse) => void): grpc.ClientUnaryCall;
|
|
1019
1047
|
tagGroupList(request: wechaty_puppet_tag_pb.TagGroupListRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupListResponse) => void): grpc.ClientUnaryCall;
|
|
1020
1048
|
tagGroupList(request: wechaty_puppet_tag_pb.TagGroupListRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupListResponse) => void): grpc.ClientUnaryCall;
|
|
@@ -1227,12 +1255,18 @@ export class PuppetClient extends grpc.Client implements IPuppetClient {
|
|
|
1227
1255
|
public tagGroupDelete(request: wechaty_puppet_tag_pb.TagGroupDeleteRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1228
1256
|
public tagGroupDelete(request: wechaty_puppet_tag_pb.TagGroupDeleteRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1229
1257
|
public tagGroupDelete(request: wechaty_puppet_tag_pb.TagGroupDeleteRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1258
|
+
public tagGroupPayload(request: wechaty_puppet_tag_pb.TagGroupPayloadRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1259
|
+
public tagGroupPayload(request: wechaty_puppet_tag_pb.TagGroupPayloadRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1260
|
+
public tagGroupPayload(request: wechaty_puppet_tag_pb.TagGroupPayloadRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1230
1261
|
public tagTagAdd(request: wechaty_puppet_tag_pb.TagTagAddRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagAddResponse) => void): grpc.ClientUnaryCall;
|
|
1231
1262
|
public tagTagAdd(request: wechaty_puppet_tag_pb.TagTagAddRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagAddResponse) => void): grpc.ClientUnaryCall;
|
|
1232
1263
|
public tagTagAdd(request: wechaty_puppet_tag_pb.TagTagAddRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagAddResponse) => void): grpc.ClientUnaryCall;
|
|
1233
1264
|
public tagTagDelete(request: wechaty_puppet_tag_pb.TagTagDeleteRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1234
1265
|
public tagTagDelete(request: wechaty_puppet_tag_pb.TagTagDeleteRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1235
1266
|
public tagTagDelete(request: wechaty_puppet_tag_pb.TagTagDeleteRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagTagDeleteResponse) => void): grpc.ClientUnaryCall;
|
|
1267
|
+
public tagPayload(request: wechaty_puppet_tag_pb.TagPayloadRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1268
|
+
public tagPayload(request: wechaty_puppet_tag_pb.TagPayloadRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1269
|
+
public tagPayload(request: wechaty_puppet_tag_pb.TagPayloadRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagPayloadResponse) => void): grpc.ClientUnaryCall;
|
|
1236
1270
|
public tagGroupList(request: wechaty_puppet_tag_pb.TagGroupListRequest, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupListResponse) => void): grpc.ClientUnaryCall;
|
|
1237
1271
|
public tagGroupList(request: wechaty_puppet_tag_pb.TagGroupListRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupListResponse) => void): grpc.ClientUnaryCall;
|
|
1238
1272
|
public tagGroupList(request: wechaty_puppet_tag_pb.TagGroupListRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: wechaty_puppet_tag_pb.TagGroupListResponse) => void): grpc.ClientUnaryCall;
|