@wppconnect/server 1.2.0 → 1.3.0
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/CHANGELOG.md +9 -0
- package/dist/config/upload.js.map +1 -1
- package/dist/controller/deviceController.js.map +1 -1
- package/dist/controller/encryptController.js.map +1 -1
- package/dist/controller/groupController.js.map +1 -1
- package/dist/controller/messageController.js +4 -2
- package/dist/controller/messageController.js.map +1 -1
- package/dist/controller/orderController.js.map +1 -1
- package/dist/controller/sessionController.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/mapper/index.js.map +1 -1
- package/dist/mapper/tagone-chat.js.map +1 -1
- package/dist/mapper/tagone-device.js.map +1 -1
- package/dist/mapper/tagone-message-document.js.map +1 -1
- package/dist/mapper/tagone-message-image.js.map +1 -1
- package/dist/mapper/tagone-message-location.js.map +1 -1
- package/dist/mapper/tagone-message-video.js.map +1 -1
- package/dist/mapper/tagone-message.js.map +1 -1
- package/dist/mapper/tagone-onack.js.map +1 -1
- package/dist/mapper/tagone-return.js.map +1 -1
- package/dist/middleware/auth.js.map +1 -1
- package/dist/middleware/healthCheck.js.map +1 -1
- package/dist/middleware/statusConnection.js.map +1 -1
- package/dist/routes/index.js.map +1 -1
- package/dist/server.js.map +1 -1
- package/dist/swagger.json +195 -737
- package/dist/util/chatWootClient.js.map +1 -1
- package/dist/util/createSessionUtil.js.map +1 -1
- package/dist/util/db/mongodb/db.js.map +1 -1
- package/dist/util/db/redis/db.js.map +1 -1
- package/dist/util/functions.js +1 -1
- package/dist/util/functions.js.map +1 -1
- package/dist/util/getAllTokens.js.map +1 -1
- package/dist/util/logger.js.map +1 -1
- package/dist/util/sessionUtil.js.map +1 -1
- package/dist/util/tokenStore/factory.js.map +1 -1
- package/dist/util/tokenStore/fileTokenStory.js.map +1 -1
- package/dist/util/tokenStore/firebaseTokenStory.js.map +1 -1
- package/dist/util/tokenStore/model/token.js.map +1 -1
- package/dist/util/tokenStore/mongodbTokenStory.js.map +1 -1
- package/dist/util/tokenStore/redisTokenStory.js.map +1 -1
- package/package.json +5 -5
package/dist/swagger.json
CHANGED
|
@@ -19,9 +19,7 @@
|
|
|
19
19
|
"paths": {
|
|
20
20
|
"/{secretkey}/generate-token": {
|
|
21
21
|
"post": {
|
|
22
|
-
"tags": [
|
|
23
|
-
"Auth"
|
|
24
|
-
],
|
|
22
|
+
"tags": ["Auth"],
|
|
25
23
|
"summary": "generate-token (Gera token Bearer para sessão)",
|
|
26
24
|
"operationId": "generate-token(GeratokenBearerparasessão)",
|
|
27
25
|
"parameters": [
|
|
@@ -61,9 +59,7 @@
|
|
|
61
59
|
},
|
|
62
60
|
"/start-session": {
|
|
63
61
|
"post": {
|
|
64
|
-
"tags": [
|
|
65
|
-
"Auth"
|
|
66
|
-
],
|
|
62
|
+
"tags": ["Auth"],
|
|
67
63
|
"summary": "start-session (Retorna QRCode de login)",
|
|
68
64
|
"description": "Inicializa a sessão",
|
|
69
65
|
"operationId": "start-session(RetornaQRCodedelogin)",
|
|
@@ -94,9 +90,7 @@
|
|
|
94
90
|
},
|
|
95
91
|
"/status-session": {
|
|
96
92
|
"get": {
|
|
97
|
-
"tags": [
|
|
98
|
-
"Auth"
|
|
99
|
-
],
|
|
93
|
+
"tags": ["Auth"],
|
|
100
94
|
"summary": "status-session (Atualiza QRCode de login)",
|
|
101
95
|
"description": "Retorna o status da session",
|
|
102
96
|
"operationId": "status-session(AtualizaQRCodedelogin)",
|
|
@@ -113,9 +107,7 @@
|
|
|
113
107
|
},
|
|
114
108
|
"/qrcode-session": {
|
|
115
109
|
"get": {
|
|
116
|
-
"tags": [
|
|
117
|
-
"Auth"
|
|
118
|
-
],
|
|
110
|
+
"tags": ["Auth"],
|
|
119
111
|
"summary": "qrcode-session (Pegar qrCode de autenticação via stream)",
|
|
120
112
|
"description": "Retorna o status da session",
|
|
121
113
|
"operationId": "qrcode-session(PegarqrCodedeautenticaçãoviastream)",
|
|
@@ -132,9 +124,7 @@
|
|
|
132
124
|
},
|
|
133
125
|
"/check-connection-session": {
|
|
134
126
|
"get": {
|
|
135
|
-
"tags": [
|
|
136
|
-
"Auth"
|
|
137
|
-
],
|
|
127
|
+
"tags": ["Auth"],
|
|
138
128
|
"summary": "check-connection-session (status da conexão)",
|
|
139
129
|
"description": "Verifica se a sessáo esta conectada",
|
|
140
130
|
"operationId": "check-connection-session(statusdaconexão)",
|
|
@@ -151,9 +141,7 @@
|
|
|
151
141
|
},
|
|
152
142
|
"/close-session": {
|
|
153
143
|
"post": {
|
|
154
|
-
"tags": [
|
|
155
|
-
"Auth"
|
|
156
|
-
],
|
|
144
|
+
"tags": ["Auth"],
|
|
157
145
|
"summary": "close-session",
|
|
158
146
|
"description": "finaliza a sessão",
|
|
159
147
|
"operationId": "close-session",
|
|
@@ -170,9 +158,7 @@
|
|
|
170
158
|
},
|
|
171
159
|
"/all-chats": {
|
|
172
160
|
"get": {
|
|
173
|
-
"tags": [
|
|
174
|
-
"Chat"
|
|
175
|
-
],
|
|
161
|
+
"tags": ["Chat"],
|
|
176
162
|
"summary": "All Chats",
|
|
177
163
|
"description": "Retrieves all chats",
|
|
178
164
|
"operationId": "AllChats",
|
|
@@ -349,9 +335,7 @@
|
|
|
349
335
|
},
|
|
350
336
|
"/chat-by-id": {
|
|
351
337
|
"get": {
|
|
352
|
-
"tags": [
|
|
353
|
-
"Chat"
|
|
354
|
-
],
|
|
338
|
+
"tags": ["Chat"],
|
|
355
339
|
"summary": "Chat By Id",
|
|
356
340
|
"description": "Retrieves chat object of given contact id",
|
|
357
341
|
"operationId": "ChatById",
|
|
@@ -1305,9 +1289,7 @@
|
|
|
1305
1289
|
},
|
|
1306
1290
|
"/chat-is-online": {
|
|
1307
1291
|
"get": {
|
|
1308
|
-
"tags": [
|
|
1309
|
-
"Chat"
|
|
1310
|
-
],
|
|
1292
|
+
"tags": ["Chat"],
|
|
1311
1293
|
"summary": "Chat Is OnLine",
|
|
1312
1294
|
"description": "Checks if a CHAT contact is online.",
|
|
1313
1295
|
"operationId": "ChatIsOnLine",
|
|
@@ -1417,9 +1399,7 @@
|
|
|
1417
1399
|
},
|
|
1418
1400
|
"/all-chats-with-messages": {
|
|
1419
1401
|
"get": {
|
|
1420
|
-
"tags": [
|
|
1421
|
-
"Chat"
|
|
1422
|
-
],
|
|
1402
|
+
"tags": ["Chat"],
|
|
1423
1403
|
"summary": "All Chats Whit Messages",
|
|
1424
1404
|
"description": "Retrieves all chats with messages",
|
|
1425
1405
|
"operationId": "AllChatsWhitMessages",
|
|
@@ -1626,9 +1606,7 @@
|
|
|
1626
1606
|
},
|
|
1627
1607
|
"/all-messages-in-chat": {
|
|
1628
1608
|
"get": {
|
|
1629
|
-
"tags": [
|
|
1630
|
-
"Chat"
|
|
1631
|
-
],
|
|
1609
|
+
"tags": ["Chat"],
|
|
1632
1610
|
"summary": "All Messages in Chat",
|
|
1633
1611
|
"description": "Retrieves all messages already loaded in a chat For loading every message use load Messages In Chat",
|
|
1634
1612
|
"operationId": "AllMessagesinChat",
|
|
@@ -2264,9 +2242,7 @@
|
|
|
2264
2242
|
},
|
|
2265
2243
|
"/all-new-messages": {
|
|
2266
2244
|
"get": {
|
|
2267
|
-
"tags": [
|
|
2268
|
-
"Chat"
|
|
2269
|
-
],
|
|
2245
|
+
"tags": ["Chat"],
|
|
2270
2246
|
"summary": "All New Messages",
|
|
2271
2247
|
"description": "Retrieves all new messages (where isNewMsg is true)\n\n*deprecated* Use getAllUnreadMessages",
|
|
2272
2248
|
"operationId": "AllNewMessages",
|
|
@@ -2665,9 +2641,7 @@
|
|
|
2665
2641
|
},
|
|
2666
2642
|
"/unread-messages": {
|
|
2667
2643
|
"get": {
|
|
2668
|
-
"tags": [
|
|
2669
|
-
"Chat"
|
|
2670
|
-
],
|
|
2644
|
+
"tags": ["Chat"],
|
|
2671
2645
|
"summary": "Unread Messages",
|
|
2672
2646
|
"description": "Retorna o status da session",
|
|
2673
2647
|
"operationId": "UnreadMessages",
|
|
@@ -2992,9 +2966,7 @@
|
|
|
2992
2966
|
},
|
|
2993
2967
|
"/all-unread-messages": {
|
|
2994
2968
|
"get": {
|
|
2995
|
-
"tags": [
|
|
2996
|
-
"Chat"
|
|
2997
|
-
],
|
|
2969
|
+
"tags": ["Chat"],
|
|
2998
2970
|
"summary": "All Unread Messages",
|
|
2999
2971
|
"description": "Retorna o status da session",
|
|
3000
2972
|
"operationId": "AllUnreadMessages",
|
|
@@ -3319,9 +3291,7 @@
|
|
|
3319
3291
|
},
|
|
3320
3292
|
"/last-seen": {
|
|
3321
3293
|
"get": {
|
|
3322
|
-
"tags": [
|
|
3323
|
-
"Chat"
|
|
3324
|
-
],
|
|
3294
|
+
"tags": ["Chat"],
|
|
3325
3295
|
"summary": "Last Seen",
|
|
3326
3296
|
"description": "Checks if a CHAT contact is online.",
|
|
3327
3297
|
"operationId": "LastSeen",
|
|
@@ -3431,9 +3401,7 @@
|
|
|
3431
3401
|
},
|
|
3432
3402
|
"/list-mutes": {
|
|
3433
3403
|
"get": {
|
|
3434
|
-
"tags": [
|
|
3435
|
-
"Chat"
|
|
3436
|
-
],
|
|
3404
|
+
"tags": ["Chat"],
|
|
3437
3405
|
"summary": "List Mutes",
|
|
3438
3406
|
"description": "Returns a list of mute and non-mute users\n\nTypes: all, toMute,noMute",
|
|
3439
3407
|
"operationId": "ListMutes",
|
|
@@ -3539,9 +3507,7 @@
|
|
|
3539
3507
|
},
|
|
3540
3508
|
"/archive-chat": {
|
|
3541
3509
|
"post": {
|
|
3542
|
-
"tags": [
|
|
3543
|
-
"Chat"
|
|
3544
|
-
],
|
|
3510
|
+
"tags": ["Chat"],
|
|
3545
3511
|
"summary": "Archive Chat",
|
|
3546
3512
|
"description": "Archive and unarchive chat messages with true or false",
|
|
3547
3513
|
"operationId": "ArchiveChat",
|
|
@@ -3654,9 +3620,7 @@
|
|
|
3654
3620
|
},
|
|
3655
3621
|
"/clear-chat": {
|
|
3656
3622
|
"post": {
|
|
3657
|
-
"tags": [
|
|
3658
|
-
"Chat"
|
|
3659
|
-
],
|
|
3623
|
+
"tags": ["Chat"],
|
|
3660
3624
|
"summary": "Clear Chat",
|
|
3661
3625
|
"description": "Deletes all messages of given chat",
|
|
3662
3626
|
"operationId": "ClearChat",
|
|
@@ -3769,9 +3733,7 @@
|
|
|
3769
3733
|
},
|
|
3770
3734
|
"/delete-chat": {
|
|
3771
3735
|
"post": {
|
|
3772
|
-
"tags": [
|
|
3773
|
-
"Chat"
|
|
3774
|
-
],
|
|
3736
|
+
"tags": ["Chat"],
|
|
3775
3737
|
"summary": "Delete Chat",
|
|
3776
3738
|
"description": "Deletes the given chat",
|
|
3777
3739
|
"operationId": "DeleteChat",
|
|
@@ -3883,9 +3845,7 @@
|
|
|
3883
3845
|
},
|
|
3884
3846
|
"/delete-message": {
|
|
3885
3847
|
"post": {
|
|
3886
|
-
"tags": [
|
|
3887
|
-
"Chat"
|
|
3888
|
-
],
|
|
3848
|
+
"tags": ["Chat"],
|
|
3889
3849
|
"summary": "Delete Message",
|
|
3890
3850
|
"description": "Deletes message of given message id",
|
|
3891
3851
|
"operationId": "DeleteMessage",
|
|
@@ -3998,9 +3958,7 @@
|
|
|
3998
3958
|
},
|
|
3999
3959
|
"/mark-unseen": {
|
|
4000
3960
|
"post": {
|
|
4001
|
-
"tags": [
|
|
4002
|
-
"Chat"
|
|
4003
|
-
],
|
|
3961
|
+
"tags": ["Chat"],
|
|
4004
3962
|
"summary": "Mark Unseen",
|
|
4005
3963
|
"description": "puts the chat as unread",
|
|
4006
3964
|
"operationId": "MarkUnseen",
|
|
@@ -4112,9 +4070,7 @@
|
|
|
4112
4070
|
},
|
|
4113
4071
|
"/pin-chat": {
|
|
4114
4072
|
"post": {
|
|
4115
|
-
"tags": [
|
|
4116
|
-
"Chat"
|
|
4117
|
-
],
|
|
4073
|
+
"tags": ["Chat"],
|
|
4118
4074
|
"summary": "Pin Chat",
|
|
4119
4075
|
"description": "puts the chat as unread",
|
|
4120
4076
|
"operationId": "PinChat",
|
|
@@ -4227,9 +4183,7 @@
|
|
|
4227
4183
|
},
|
|
4228
4184
|
"/send-mute": {
|
|
4229
4185
|
"post": {
|
|
4230
|
-
"tags": [
|
|
4231
|
-
"Chat"
|
|
4232
|
-
],
|
|
4186
|
+
"tags": ["Chat"],
|
|
4233
4187
|
"summary": "Send Mute",
|
|
4234
4188
|
"description": "Mute a chat.\n\ntype: hours, minutes, year",
|
|
4235
4189
|
"operationId": "SendMute",
|
|
@@ -4343,10 +4297,7 @@
|
|
|
4343
4297
|
"_serialized": "556592424425@c.us"
|
|
4344
4298
|
},
|
|
4345
4299
|
"connected": true,
|
|
4346
|
-
"protoVersion": [
|
|
4347
|
-
0,
|
|
4348
|
-
17
|
|
4349
|
-
],
|
|
4300
|
+
"protoVersion": [0, 17],
|
|
4350
4301
|
"clientToken": "hdTL/zIDCji6tgK9HmpNZy6k3iH0ddaQJCHd2SdtFL8=",
|
|
4351
4302
|
"serverToken": "1@5TO8Gf1Qi73m23rF4UtAVb3cYCNsefP2jN2PBgQtIJ4Gukh02M0h2DD/o5kdOUo/flAZJz/6uC9cqA==",
|
|
4352
4303
|
"isResponse": "true",
|
|
@@ -4404,9 +4355,7 @@
|
|
|
4404
4355
|
},
|
|
4405
4356
|
"/chat-state": {
|
|
4406
4357
|
"post": {
|
|
4407
|
-
"tags": [
|
|
4408
|
-
"Chat"
|
|
4409
|
-
],
|
|
4358
|
+
"tags": ["Chat"],
|
|
4410
4359
|
"summary": "Chat State",
|
|
4411
4360
|
"description": "Sets the chat state\n\nchatstate: \n1 = paused\n2 = recording\n3 = typing",
|
|
4412
4361
|
"operationId": "ChatState",
|
|
@@ -4437,9 +4386,7 @@
|
|
|
4437
4386
|
},
|
|
4438
4387
|
"/send-seen": {
|
|
4439
4388
|
"post": {
|
|
4440
|
-
"tags": [
|
|
4441
|
-
"Chat"
|
|
4442
|
-
],
|
|
4389
|
+
"tags": ["Chat"],
|
|
4443
4390
|
"summary": "Send Seen",
|
|
4444
4391
|
"description": "Mute a chat.\n\ntype: hours, minutes, year",
|
|
4445
4392
|
"operationId": "SendSeen",
|
|
@@ -4551,9 +4498,7 @@
|
|
|
4551
4498
|
},
|
|
4552
4499
|
"/temporary-messages": {
|
|
4553
4500
|
"post": {
|
|
4554
|
-
"tags": [
|
|
4555
|
-
"Chat"
|
|
4556
|
-
],
|
|
4501
|
+
"tags": ["Chat"],
|
|
4557
4502
|
"summary": "Temporary Messages",
|
|
4558
4503
|
"description": "Enable or disable temporary messages with true or false",
|
|
4559
4504
|
"operationId": "TemporaryMessages",
|
|
@@ -4666,9 +4611,7 @@
|
|
|
4666
4611
|
},
|
|
4667
4612
|
"/typing": {
|
|
4668
4613
|
"post": {
|
|
4669
|
-
"tags": [
|
|
4670
|
-
"Chat"
|
|
4671
|
-
],
|
|
4614
|
+
"tags": ["Chat"],
|
|
4672
4615
|
"summary": "Set Typing",
|
|
4673
4616
|
"description": "Start and Stop typing, passe valeu true os false",
|
|
4674
4617
|
"operationId": "SetTyping",
|
|
@@ -4782,9 +4725,7 @@
|
|
|
4782
4725
|
},
|
|
4783
4726
|
"/send-file-base64": {
|
|
4784
4727
|
"post": {
|
|
4785
|
-
"tags": [
|
|
4786
|
-
"Send Message"
|
|
4787
|
-
],
|
|
4728
|
+
"tags": ["Send Message"],
|
|
4788
4729
|
"summary": "Send File",
|
|
4789
4730
|
"description": "Envia um arquivo para um número de telefone.",
|
|
4790
4731
|
"operationId": "SendFile",
|
|
@@ -4827,9 +4768,7 @@
|
|
|
4827
4768
|
},
|
|
4828
4769
|
"/send-reply": {
|
|
4829
4770
|
"post": {
|
|
4830
|
-
"tags": [
|
|
4831
|
-
"Send Message"
|
|
4832
|
-
],
|
|
4771
|
+
"tags": ["Send Message"],
|
|
4833
4772
|
"summary": "Send Reply",
|
|
4834
4773
|
"description": "Envia um arquivo para um número de telefone.",
|
|
4835
4774
|
"operationId": "SendReply",
|
|
@@ -4873,9 +4812,7 @@
|
|
|
4873
4812
|
},
|
|
4874
4813
|
"/send-message": {
|
|
4875
4814
|
"post": {
|
|
4876
|
-
"tags": [
|
|
4877
|
-
"Send Message"
|
|
4878
|
-
],
|
|
4815
|
+
"tags": ["Send Message"],
|
|
4879
4816
|
"summary": "Send Message",
|
|
4880
4817
|
"description": "Envia uma mensagem de texto para um número de telefone. ",
|
|
4881
4818
|
"operationId": "SendMessage",
|
|
@@ -4913,9 +4850,7 @@
|
|
|
4913
4850
|
},
|
|
4914
4851
|
"/forwardMessages": {
|
|
4915
4852
|
"post": {
|
|
4916
|
-
"tags": [
|
|
4917
|
-
"Send Message"
|
|
4918
|
-
],
|
|
4853
|
+
"tags": ["Send Message"],
|
|
4919
4854
|
"summary": "Forward Messages (Encaminhar mensagem)",
|
|
4920
4855
|
"description": "Envia uma mensagem de texto para um número de telefone. ",
|
|
4921
4856
|
"operationId": "ForwardMessages(Encaminharmensagem)",
|
|
@@ -4952,9 +4887,7 @@
|
|
|
4952
4887
|
},
|
|
4953
4888
|
"/contact-vcard": {
|
|
4954
4889
|
"post": {
|
|
4955
|
-
"tags": [
|
|
4956
|
-
"Send Message"
|
|
4957
|
-
],
|
|
4890
|
+
"tags": ["Send Message"],
|
|
4958
4891
|
"summary": "Send Contact Vcard",
|
|
4959
4892
|
"description": "Sends contact card to iven chat id",
|
|
4960
4893
|
"operationId": "SendContactVcard",
|
|
@@ -5069,10 +5002,7 @@
|
|
|
5069
5002
|
"_serialized": "556592424425@c.us"
|
|
5070
5003
|
},
|
|
5071
5004
|
"connected": true,
|
|
5072
|
-
"protoVersion": [
|
|
5073
|
-
0,
|
|
5074
|
-
17
|
|
5075
|
-
],
|
|
5005
|
+
"protoVersion": [0, 17],
|
|
5076
5006
|
"clientToken": "aeTnIxydmYIpKUsxG5q+iQRLMRsYMnXhpV1wqsdjQOw=",
|
|
5077
5007
|
"serverToken": "1@3jaCR5jbMKpeSBSt9HYs1OfpnCwnomoZpcnPMOkQOp8ibUglFUjN91I5w1bNHO9XafxYEXMqw6VmDw==",
|
|
5078
5008
|
"isResponse": "true",
|
|
@@ -5129,9 +5059,7 @@
|
|
|
5129
5059
|
},
|
|
5130
5060
|
"/send-link-preview": {
|
|
5131
5061
|
"post": {
|
|
5132
|
-
"tags": [
|
|
5133
|
-
"Send Message"
|
|
5134
|
-
],
|
|
5062
|
+
"tags": ["Send Message"],
|
|
5135
5063
|
"summary": "Send Link Preview",
|
|
5136
5064
|
"description": "Automatically sends a link with the auto generated link preview. You can also add a custom message to be added.",
|
|
5137
5065
|
"operationId": "SendLinkPreview",
|
|
@@ -5245,9 +5173,7 @@
|
|
|
5245
5173
|
},
|
|
5246
5174
|
"/send-location": {
|
|
5247
5175
|
"post": {
|
|
5248
|
-
"tags": [
|
|
5249
|
-
"Send Message"
|
|
5250
|
-
],
|
|
5176
|
+
"tags": ["Send Message"],
|
|
5251
5177
|
"summary": "Send Location",
|
|
5252
5178
|
"description": "send location",
|
|
5253
5179
|
"operationId": "SendLocation",
|
|
@@ -5362,9 +5288,7 @@
|
|
|
5362
5288
|
},
|
|
5363
5289
|
"/send-mentioned": {
|
|
5364
5290
|
"post": {
|
|
5365
|
-
"tags": [
|
|
5366
|
-
"Send Message"
|
|
5367
|
-
],
|
|
5291
|
+
"tags": ["Send Message"],
|
|
5368
5292
|
"summary": "Send Mentioned",
|
|
5369
5293
|
"description": "Sends text with tags",
|
|
5370
5294
|
"operationId": "SendMentioned",
|
|
@@ -5379,9 +5303,7 @@
|
|
|
5379
5303
|
"example": {
|
|
5380
5304
|
"phone": "556593077171-1620997998",
|
|
5381
5305
|
"message": "ola como isso funciona @556593077171@c.us",
|
|
5382
|
-
"mentioned": [
|
|
5383
|
-
"@556593077171@c.us"
|
|
5384
|
-
],
|
|
5306
|
+
"mentioned": ["@556593077171@c.us"],
|
|
5385
5307
|
"isGruop": true
|
|
5386
5308
|
}
|
|
5387
5309
|
}
|
|
@@ -5481,9 +5403,7 @@
|
|
|
5481
5403
|
},
|
|
5482
5404
|
"/change-username": {
|
|
5483
5405
|
"post": {
|
|
5484
|
-
"tags": [
|
|
5485
|
-
"Profile"
|
|
5486
|
-
],
|
|
5406
|
+
"tags": ["Profile"],
|
|
5487
5407
|
"summary": "Change Username",
|
|
5488
5408
|
"description": "Sets current user profile name",
|
|
5489
5409
|
"operationId": "ChangeUsername",
|
|
@@ -5524,9 +5444,7 @@
|
|
|
5524
5444
|
},
|
|
5525
5445
|
"/change-profile-image": {
|
|
5526
5446
|
"post": {
|
|
5527
|
-
"tags": [
|
|
5528
|
-
"Profile"
|
|
5529
|
-
],
|
|
5447
|
+
"tags": ["Profile"],
|
|
5530
5448
|
"summary": "Change Profile Image",
|
|
5531
5449
|
"description": "Altera o nome de usuário do perfil do WhatsApp.",
|
|
5532
5450
|
"operationId": "ChangeProfileImage",
|
|
@@ -5638,9 +5556,7 @@
|
|
|
5638
5556
|
},
|
|
5639
5557
|
"/profile-status": {
|
|
5640
5558
|
"post": {
|
|
5641
|
-
"tags": [
|
|
5642
|
-
"Profile"
|
|
5643
|
-
],
|
|
5559
|
+
"tags": ["Profile"],
|
|
5644
5560
|
"summary": "Change Profile Status",
|
|
5645
5561
|
"description": "Sets current user profile status",
|
|
5646
5562
|
"operationId": "ChangeProfileStatus",
|
|
@@ -5751,9 +5667,7 @@
|
|
|
5751
5667
|
},
|
|
5752
5668
|
"/check-number-status": {
|
|
5753
5669
|
"get": {
|
|
5754
|
-
"tags": [
|
|
5755
|
-
"Contact"
|
|
5756
|
-
],
|
|
5670
|
+
"tags": ["Contact"],
|
|
5757
5671
|
"summary": "Check Number Status",
|
|
5758
5672
|
"description": "Checks if a number is a valid WA number",
|
|
5759
5673
|
"operationId": "CheckNumberStatus",
|
|
@@ -5873,9 +5787,7 @@
|
|
|
5873
5787
|
},
|
|
5874
5788
|
"/all-contacts": {
|
|
5875
5789
|
"get": {
|
|
5876
|
-
"tags": [
|
|
5877
|
-
"Contact"
|
|
5878
|
-
],
|
|
5790
|
+
"tags": ["Contact"],
|
|
5879
5791
|
"summary": "Get All Contacts",
|
|
5880
5792
|
"description": "Retrieves all contacts",
|
|
5881
5793
|
"operationId": "GetAllContacts",
|
|
@@ -6007,9 +5919,7 @@
|
|
|
6007
5919
|
},
|
|
6008
5920
|
"/contact/556593077171": {
|
|
6009
5921
|
"get": {
|
|
6010
|
-
"tags": [
|
|
6011
|
-
"Contact"
|
|
6012
|
-
],
|
|
5922
|
+
"tags": ["Contact"],
|
|
6013
5923
|
"summary": "Get Contact",
|
|
6014
5924
|
"description": "Retrieves contact detail object of given contact id",
|
|
6015
5925
|
"operationId": "GetContact",
|
|
@@ -6152,9 +6062,7 @@
|
|
|
6152
6062
|
},
|
|
6153
6063
|
"/profile/556593077171": {
|
|
6154
6064
|
"get": {
|
|
6155
|
-
"tags": [
|
|
6156
|
-
"Contact"
|
|
6157
|
-
],
|
|
6065
|
+
"tags": ["Contact"],
|
|
6158
6066
|
"summary": "Get Number Profile",
|
|
6159
6067
|
"description": "Checks if a number is a valid whatsapp number",
|
|
6160
6068
|
"operationId": "GetNumberProfile",
|
|
@@ -6274,9 +6182,7 @@
|
|
|
6274
6182
|
},
|
|
6275
6183
|
"/profile-pic/556593077171": {
|
|
6276
6184
|
"get": {
|
|
6277
|
-
"tags": [
|
|
6278
|
-
"Contact"
|
|
6279
|
-
],
|
|
6185
|
+
"tags": ["Contact"],
|
|
6280
6186
|
"summary": "Get Profile Picture",
|
|
6281
6187
|
"description": "Retrieves chat picture",
|
|
6282
6188
|
"operationId": "GetProfilePicture",
|
|
@@ -6397,9 +6303,7 @@
|
|
|
6397
6303
|
},
|
|
6398
6304
|
"/profile-status/556593077171": {
|
|
6399
6305
|
"get": {
|
|
6400
|
-
"tags": [
|
|
6401
|
-
"Contact"
|
|
6402
|
-
],
|
|
6306
|
+
"tags": ["Contact"],
|
|
6403
6307
|
"summary": "Get Profile Status",
|
|
6404
6308
|
"description": "Retrieves chat picture",
|
|
6405
6309
|
"operationId": "GetProfileStatus",
|
|
@@ -6512,9 +6416,7 @@
|
|
|
6512
6416
|
},
|
|
6513
6417
|
"/create-group": {
|
|
6514
6418
|
"post": {
|
|
6515
|
-
"tags": [
|
|
6516
|
-
"Group"
|
|
6517
|
-
],
|
|
6419
|
+
"tags": ["Group"],
|
|
6518
6420
|
"summary": "Create Group",
|
|
6519
6421
|
"description": "Cria um grupo no WhatsApp.",
|
|
6520
6422
|
"operationId": "CreateGroup",
|
|
@@ -6556,9 +6458,7 @@
|
|
|
6556
6458
|
},
|
|
6557
6459
|
"/join-code": {
|
|
6558
6460
|
"post": {
|
|
6559
|
-
"tags": [
|
|
6560
|
-
"Group"
|
|
6561
|
-
],
|
|
6461
|
+
"tags": ["Group"],
|
|
6562
6462
|
"summary": "Join Group by Code",
|
|
6563
6463
|
"description": "Entra em um grupo de WhatsApp através do código de convite.",
|
|
6564
6464
|
"operationId": "JoinGroupbyCode",
|
|
@@ -6599,9 +6499,7 @@
|
|
|
6599
6499
|
},
|
|
6600
6500
|
"/add-participant-group": {
|
|
6601
6501
|
"post": {
|
|
6602
|
-
"tags": [
|
|
6603
|
-
"Group"
|
|
6604
|
-
],
|
|
6502
|
+
"tags": ["Group"],
|
|
6605
6503
|
"summary": "Add Participant",
|
|
6606
6504
|
"description": "Adds participant to Group",
|
|
6607
6505
|
"operationId": "AddParticipant",
|
|
@@ -6705,9 +6603,7 @@
|
|
|
6705
6603
|
"status": "Success",
|
|
6706
6604
|
"message": "Participante(s) adicionado(s) com sucesso",
|
|
6707
6605
|
"participants": "556593077171",
|
|
6708
|
-
"groups": [
|
|
6709
|
-
true
|
|
6710
|
-
]
|
|
6606
|
+
"groups": [true]
|
|
6711
6607
|
}
|
|
6712
6608
|
}
|
|
6713
6609
|
}
|
|
@@ -6718,9 +6614,7 @@
|
|
|
6718
6614
|
},
|
|
6719
6615
|
"/demote-participant-group": {
|
|
6720
6616
|
"post": {
|
|
6721
|
-
"tags": [
|
|
6722
|
-
"Group"
|
|
6723
|
-
],
|
|
6617
|
+
"tags": ["Group"],
|
|
6724
6618
|
"summary": "Demote Participant",
|
|
6725
6619
|
"description": "Demotes admin privileges of participant",
|
|
6726
6620
|
"operationId": "DemoteParticipant",
|
|
@@ -6824,9 +6718,7 @@
|
|
|
6824
6718
|
"status": "Success",
|
|
6825
6719
|
"message": "Admin do(s) participante(s) revogado(s) com sucesso",
|
|
6826
6720
|
"participants": "556593077171",
|
|
6827
|
-
"groups": [
|
|
6828
|
-
"556593077171-1620997998@g.us"
|
|
6829
|
-
]
|
|
6721
|
+
"groups": ["556593077171-1620997998@g.us"]
|
|
6830
6722
|
}
|
|
6831
6723
|
}
|
|
6832
6724
|
}
|
|
@@ -6837,9 +6729,7 @@
|
|
|
6837
6729
|
},
|
|
6838
6730
|
"/promote-participant-group": {
|
|
6839
6731
|
"post": {
|
|
6840
|
-
"tags": [
|
|
6841
|
-
"Group"
|
|
6842
|
-
],
|
|
6732
|
+
"tags": ["Group"],
|
|
6843
6733
|
"summary": "Promote Participant",
|
|
6844
6734
|
"description": "Promotes admin privileges of participant",
|
|
6845
6735
|
"operationId": "PromoteParticipant",
|
|
@@ -6943,9 +6833,7 @@
|
|
|
6943
6833
|
"status": "Success",
|
|
6944
6834
|
"message": "Participante(s) promovidos(s) com sucesso",
|
|
6945
6835
|
"participants": "556593077171",
|
|
6946
|
-
"groups": [
|
|
6947
|
-
"556593077171-1620997998@g.us"
|
|
6948
|
-
]
|
|
6836
|
+
"groups": ["556593077171-1620997998@g.us"]
|
|
6949
6837
|
}
|
|
6950
6838
|
}
|
|
6951
6839
|
}
|
|
@@ -6956,9 +6844,7 @@
|
|
|
6956
6844
|
},
|
|
6957
6845
|
"/all-broadcast-list": {
|
|
6958
6846
|
"get": {
|
|
6959
|
-
"tags": [
|
|
6960
|
-
"Group"
|
|
6961
|
-
],
|
|
6847
|
+
"tags": ["Group"],
|
|
6962
6848
|
"summary": "Get All Broadcast List",
|
|
6963
6849
|
"description": "Retrieve all broadcast list",
|
|
6964
6850
|
"operationId": "GetAllBroadcastList",
|
|
@@ -7150,9 +7036,7 @@
|
|
|
7150
7036
|
},
|
|
7151
7037
|
"/all-groups": {
|
|
7152
7038
|
"get": {
|
|
7153
|
-
"tags": [
|
|
7154
|
-
"Group"
|
|
7155
|
-
],
|
|
7039
|
+
"tags": ["Group"],
|
|
7156
7040
|
"summary": "Get All Groups",
|
|
7157
7041
|
"description": "Retrieve all groups",
|
|
7158
7042
|
"operationId": "GetAllGroups",
|
|
@@ -7266,9 +7150,7 @@
|
|
|
7266
7150
|
},
|
|
7267
7151
|
"/group-admins/556593077171-1620997998": {
|
|
7268
7152
|
"get": {
|
|
7269
|
-
"tags": [
|
|
7270
|
-
"Group"
|
|
7271
|
-
],
|
|
7153
|
+
"tags": ["Group"],
|
|
7272
7154
|
"summary": "Get Group Admins",
|
|
7273
7155
|
"description": "Retrieves group admins",
|
|
7274
7156
|
"operationId": "GetGroupAdmins",
|
|
@@ -7389,9 +7271,7 @@
|
|
|
7389
7271
|
},
|
|
7390
7272
|
"/group-info-from-invite-link": {
|
|
7391
7273
|
"post": {
|
|
7392
|
-
"tags": [
|
|
7393
|
-
"Group"
|
|
7394
|
-
],
|
|
7274
|
+
"tags": ["Group"],
|
|
7395
7275
|
"summary": "Get Group Info From Invite Link",
|
|
7396
7276
|
"description": "Generates group-invite link",
|
|
7397
7277
|
"operationId": "GetGroupInfoFromInviteLink",
|
|
@@ -7535,9 +7415,7 @@
|
|
|
7535
7415
|
},
|
|
7536
7416
|
"/group-invite-link/556593077171-1620997998": {
|
|
7537
7417
|
"get": {
|
|
7538
|
-
"tags": [
|
|
7539
|
-
"Group"
|
|
7540
|
-
],
|
|
7418
|
+
"tags": ["Group"],
|
|
7541
7419
|
"summary": "Get Group Invite Link",
|
|
7542
7420
|
"description": "Retrieves group admins",
|
|
7543
7421
|
"operationId": "GetGroupInviteLink",
|
|
@@ -7647,9 +7525,7 @@
|
|
|
7647
7525
|
},
|
|
7648
7526
|
"/group-members-ids/556593077171-1620997998": {
|
|
7649
7527
|
"get": {
|
|
7650
|
-
"tags": [
|
|
7651
|
-
"Group"
|
|
7652
|
-
],
|
|
7528
|
+
"tags": ["Group"],
|
|
7653
7529
|
"summary": "Get Group Members Ids",
|
|
7654
7530
|
"description": "Retrieves group members as [Id] objects",
|
|
7655
7531
|
"operationId": "GetGroupMembersIds",
|
|
@@ -7770,9 +7646,7 @@
|
|
|
7770
7646
|
},
|
|
7771
7647
|
"/group-members/556593077171-1620997998": {
|
|
7772
7648
|
"get": {
|
|
7773
|
-
"tags": [
|
|
7774
|
-
"Group"
|
|
7775
|
-
],
|
|
7649
|
+
"tags": ["Group"],
|
|
7776
7650
|
"summary": "Get Group Members",
|
|
7777
7651
|
"description": "Returns group members [Contact] objects",
|
|
7778
7652
|
"operationId": "GetGroupMembers",
|
|
@@ -7944,9 +7818,7 @@
|
|
|
7944
7818
|
},
|
|
7945
7819
|
"/leave-group": {
|
|
7946
7820
|
"post": {
|
|
7947
|
-
"tags": [
|
|
7948
|
-
"Group"
|
|
7949
|
-
],
|
|
7821
|
+
"tags": ["Group"],
|
|
7950
7822
|
"summary": "Leave Group",
|
|
7951
7823
|
"description": "Entra em um grupo de WhatsApp através do código de convite.",
|
|
7952
7824
|
"operationId": "LeaveGroup",
|
|
@@ -8059,9 +7931,7 @@
|
|
|
8059
7931
|
},
|
|
8060
7932
|
"/remove-participant-group": {
|
|
8061
7933
|
"post": {
|
|
8062
|
-
"tags": [
|
|
8063
|
-
"Group"
|
|
8064
|
-
],
|
|
7934
|
+
"tags": ["Group"],
|
|
8065
7935
|
"summary": "Remove Participant",
|
|
8066
7936
|
"description": "Promotes admin privileges of participant",
|
|
8067
7937
|
"operationId": "RemoveParticipant",
|
|
@@ -8165,9 +8035,7 @@
|
|
|
8165
8035
|
"status": "Success",
|
|
8166
8036
|
"message": "Participante(s) promovidos(s) com sucesso",
|
|
8167
8037
|
"participants": "556593077171",
|
|
8168
|
-
"groups": [
|
|
8169
|
-
"556593077171-1620997998@g.us"
|
|
8170
|
-
]
|
|
8038
|
+
"groups": ["556593077171-1620997998@g.us"]
|
|
8171
8039
|
}
|
|
8172
8040
|
}
|
|
8173
8041
|
}
|
|
@@ -8178,9 +8046,7 @@
|
|
|
8178
8046
|
},
|
|
8179
8047
|
"/group-description": {
|
|
8180
8048
|
"post": {
|
|
8181
|
-
"tags": [
|
|
8182
|
-
"Group"
|
|
8183
|
-
],
|
|
8049
|
+
"tags": ["Group"],
|
|
8184
8050
|
"summary": "Set Group Description",
|
|
8185
8051
|
"description": "Set group description (if allowed)",
|
|
8186
8052
|
"operationId": "SetGroupDescription",
|
|
@@ -8293,9 +8159,7 @@
|
|
|
8293
8159
|
},
|
|
8294
8160
|
"/group-property": {
|
|
8295
8161
|
"post": {
|
|
8296
|
-
"tags": [
|
|
8297
|
-
"Group"
|
|
8298
|
-
],
|
|
8162
|
+
"tags": ["Group"],
|
|
8299
8163
|
"summary": "Set Group Property",
|
|
8300
8164
|
"description": "Set group description (if allowed)",
|
|
8301
8165
|
"operationId": "SetGroupProperty",
|
|
@@ -8409,9 +8273,7 @@
|
|
|
8409
8273
|
},
|
|
8410
8274
|
"/group-subject": {
|
|
8411
8275
|
"post": {
|
|
8412
|
-
"tags": [
|
|
8413
|
-
"Group"
|
|
8414
|
-
],
|
|
8276
|
+
"tags": ["Group"],
|
|
8415
8277
|
"summary": "Set Group Subject",
|
|
8416
8278
|
"description": "Set group description (if allowed)",
|
|
8417
8279
|
"operationId": "SetGroupSubject",
|
|
@@ -8524,9 +8386,7 @@
|
|
|
8524
8386
|
},
|
|
8525
8387
|
"/messages-admins-only": {
|
|
8526
8388
|
"post": {
|
|
8527
|
-
"tags": [
|
|
8528
|
-
"Group"
|
|
8529
|
-
],
|
|
8389
|
+
"tags": ["Group"],
|
|
8530
8390
|
"summary": "Set Messages Admins Only",
|
|
8531
8391
|
"description": "Allow only admin to send messages with true or false",
|
|
8532
8392
|
"operationId": "SetMessagesAdminsOnly",
|
|
@@ -8639,9 +8499,7 @@
|
|
|
8639
8499
|
},
|
|
8640
8500
|
"/get-battery-level": {
|
|
8641
8501
|
"get": {
|
|
8642
|
-
"tags": [
|
|
8643
|
-
"Phone Status"
|
|
8644
|
-
],
|
|
8502
|
+
"tags": ["Phone Status"],
|
|
8645
8503
|
"summary": "Battery status",
|
|
8646
8504
|
"description": "Retorna o status da session",
|
|
8647
8505
|
"operationId": "Batterystatus",
|
|
@@ -8657,9 +8515,7 @@
|
|
|
8657
8515
|
},
|
|
8658
8516
|
"/block-contact": {
|
|
8659
8517
|
"post": {
|
|
8660
|
-
"tags": [
|
|
8661
|
-
"Block list"
|
|
8662
|
-
],
|
|
8518
|
+
"tags": ["Block list"],
|
|
8663
8519
|
"summary": "Block contact",
|
|
8664
8520
|
"description": "Receive all blocked contacts",
|
|
8665
8521
|
"operationId": "Blockcontact",
|
|
@@ -8771,9 +8627,7 @@
|
|
|
8771
8627
|
},
|
|
8772
8628
|
"/unblock-contact": {
|
|
8773
8629
|
"post": {
|
|
8774
|
-
"tags": [
|
|
8775
|
-
"Block list"
|
|
8776
|
-
],
|
|
8630
|
+
"tags": ["Block list"],
|
|
8777
8631
|
"summary": "UnBlock contact",
|
|
8778
8632
|
"description": "UnBlock contact",
|
|
8779
8633
|
"operationId": "UnBlockcontact",
|
|
@@ -8885,9 +8739,7 @@
|
|
|
8885
8739
|
},
|
|
8886
8740
|
"/blocklist": {
|
|
8887
8741
|
"get": {
|
|
8888
|
-
"tags": [
|
|
8889
|
-
"Block list"
|
|
8890
|
-
],
|
|
8742
|
+
"tags": ["Block list"],
|
|
8891
8743
|
"summary": "Block list",
|
|
8892
8744
|
"description": "UnBlock contact",
|
|
8893
8745
|
"operationId": "Blocklist",
|
|
@@ -9004,12 +8856,7 @@
|
|
|
9004
8856
|
"schemas": {
|
|
9005
8857
|
"resultadocomsucessodacriaçãodotoken": {
|
|
9006
8858
|
"title": "resultadocomsucessodacriaçãodotoken",
|
|
9007
|
-
"required": [
|
|
9008
|
-
"status",
|
|
9009
|
-
"session",
|
|
9010
|
-
"token",
|
|
9011
|
-
"full"
|
|
9012
|
-
],
|
|
8859
|
+
"required": ["status", "session", "token", "full"],
|
|
9013
8860
|
"type": "object",
|
|
9014
8861
|
"properties": {
|
|
9015
8862
|
"status": {
|
|
@@ -9034,9 +8881,7 @@
|
|
|
9034
8881
|
},
|
|
9035
8882
|
"start-session(RetornaQRCodedelogin)Request": {
|
|
9036
8883
|
"title": "start-session(RetornaQRCodedelogin)Request",
|
|
9037
|
-
"required": [
|
|
9038
|
-
"webhook"
|
|
9039
|
-
],
|
|
8884
|
+
"required": ["webhook"],
|
|
9040
8885
|
"type": "object",
|
|
9041
8886
|
"properties": {
|
|
9042
8887
|
"webhook": {
|
|
@@ -9049,10 +8894,7 @@
|
|
|
9049
8894
|
},
|
|
9050
8895
|
"AllChats": {
|
|
9051
8896
|
"title": "AllChats",
|
|
9052
|
-
"required": [
|
|
9053
|
-
"status",
|
|
9054
|
-
"response"
|
|
9055
|
-
],
|
|
8897
|
+
"required": ["status", "response"],
|
|
9056
8898
|
"type": "object",
|
|
9057
8899
|
"properties": {
|
|
9058
8900
|
"status": {
|
|
@@ -9302,11 +9144,7 @@
|
|
|
9302
9144
|
},
|
|
9303
9145
|
"Id": {
|
|
9304
9146
|
"title": "Id",
|
|
9305
|
-
"required": [
|
|
9306
|
-
"server",
|
|
9307
|
-
"user",
|
|
9308
|
-
"_serialized"
|
|
9309
|
-
],
|
|
9147
|
+
"required": ["server", "user", "_serialized"],
|
|
9310
9148
|
"type": "object",
|
|
9311
9149
|
"properties": {
|
|
9312
9150
|
"server": {
|
|
@@ -9442,14 +9280,7 @@
|
|
|
9442
9280
|
},
|
|
9443
9281
|
"ProfilePicThumbObj": {
|
|
9444
9282
|
"title": "ProfilePicThumbObj",
|
|
9445
|
-
"required": [
|
|
9446
|
-
"eurl",
|
|
9447
|
-
"id",
|
|
9448
|
-
"img",
|
|
9449
|
-
"imgFull",
|
|
9450
|
-
"raw",
|
|
9451
|
-
"tag"
|
|
9452
|
-
],
|
|
9283
|
+
"required": ["eurl", "id", "img", "imgFull", "raw", "tag"],
|
|
9453
9284
|
"type": "object",
|
|
9454
9285
|
"properties": {
|
|
9455
9286
|
"eurl": {
|
|
@@ -9487,10 +9318,7 @@
|
|
|
9487
9318
|
},
|
|
9488
9319
|
"Presence": {
|
|
9489
9320
|
"title": "Presence",
|
|
9490
|
-
"required": [
|
|
9491
|
-
"id",
|
|
9492
|
-
"chatstates"
|
|
9493
|
-
],
|
|
9321
|
+
"required": ["id", "chatstates"],
|
|
9494
9322
|
"type": "object",
|
|
9495
9323
|
"properties": {
|
|
9496
9324
|
"id": {
|
|
@@ -9515,10 +9343,7 @@
|
|
|
9515
9343
|
},
|
|
9516
9344
|
"ChatsById": {
|
|
9517
9345
|
"title": "ChatsById",
|
|
9518
|
-
"required": [
|
|
9519
|
-
"status",
|
|
9520
|
-
"response"
|
|
9521
|
-
],
|
|
9346
|
+
"required": ["status", "response"],
|
|
9522
9347
|
"type": "object",
|
|
9523
9348
|
"properties": {
|
|
9524
9349
|
"status": {
|
|
@@ -10708,11 +10533,7 @@
|
|
|
10708
10533
|
},
|
|
10709
10534
|
"ChatId": {
|
|
10710
10535
|
"title": "ChatId",
|
|
10711
|
-
"required": [
|
|
10712
|
-
"server",
|
|
10713
|
-
"user",
|
|
10714
|
-
"_serialized"
|
|
10715
|
-
],
|
|
10536
|
+
"required": ["server", "user", "_serialized"],
|
|
10716
10537
|
"type": "object",
|
|
10717
10538
|
"properties": {
|
|
10718
10539
|
"server": {
|
|
@@ -11017,12 +10838,7 @@
|
|
|
11017
10838
|
},
|
|
11018
10839
|
"LastReceivedKey": {
|
|
11019
10840
|
"title": "LastReceivedKey",
|
|
11020
|
-
"required": [
|
|
11021
|
-
"fromMe",
|
|
11022
|
-
"remote",
|
|
11023
|
-
"id",
|
|
11024
|
-
"_serialized"
|
|
11025
|
-
],
|
|
10841
|
+
"required": ["fromMe", "remote", "id", "_serialized"],
|
|
11026
10842
|
"type": "object",
|
|
11027
10843
|
"properties": {
|
|
11028
10844
|
"fromMe": {
|
|
@@ -11051,11 +10867,7 @@
|
|
|
11051
10867
|
},
|
|
11052
10868
|
"Remote": {
|
|
11053
10869
|
"title": "Remote",
|
|
11054
|
-
"required": [
|
|
11055
|
-
"server",
|
|
11056
|
-
"user",
|
|
11057
|
-
"_serialized"
|
|
11058
|
-
],
|
|
10870
|
+
"required": ["server", "user", "_serialized"],
|
|
11059
10871
|
"type": "object",
|
|
11060
10872
|
"properties": {
|
|
11061
10873
|
"server": {
|
|
@@ -11277,10 +11089,7 @@
|
|
|
11277
11089
|
},
|
|
11278
11090
|
"QuotedMsg": {
|
|
11279
11091
|
"title": "QuotedMsg",
|
|
11280
|
-
"required": [
|
|
11281
|
-
"type",
|
|
11282
|
-
"body"
|
|
11283
|
-
],
|
|
11092
|
+
"required": ["type", "body"],
|
|
11284
11093
|
"type": "object",
|
|
11285
11094
|
"properties": {
|
|
11286
11095
|
"type": {
|
|
@@ -11297,10 +11106,7 @@
|
|
|
11297
11106
|
},
|
|
11298
11107
|
"ChatIsOnLine": {
|
|
11299
11108
|
"title": "ChatIsOnLine",
|
|
11300
|
-
"required": [
|
|
11301
|
-
"status",
|
|
11302
|
-
"response"
|
|
11303
|
-
],
|
|
11109
|
+
"required": ["status", "response"],
|
|
11304
11110
|
"type": "object",
|
|
11305
11111
|
"properties": {
|
|
11306
11112
|
"status": {
|
|
@@ -11317,10 +11123,7 @@
|
|
|
11317
11123
|
},
|
|
11318
11124
|
"AllChatsWhitMessages": {
|
|
11319
11125
|
"title": "AllChatsWhitMessages",
|
|
11320
|
-
"required": [
|
|
11321
|
-
"status",
|
|
11322
|
-
"response"
|
|
11323
|
-
],
|
|
11126
|
+
"required": ["status", "response"],
|
|
11324
11127
|
"type": "object",
|
|
11325
11128
|
"properties": {
|
|
11326
11129
|
"status": {
|
|
@@ -11739,12 +11542,7 @@
|
|
|
11739
11542
|
},
|
|
11740
11543
|
"Id16": {
|
|
11741
11544
|
"title": "Id16",
|
|
11742
|
-
"required": [
|
|
11743
|
-
"fromMe",
|
|
11744
|
-
"remote",
|
|
11745
|
-
"id",
|
|
11746
|
-
"_serialized"
|
|
11747
|
-
],
|
|
11545
|
+
"required": ["fromMe", "remote", "id", "_serialized"],
|
|
11748
11546
|
"type": "object",
|
|
11749
11547
|
"properties": {
|
|
11750
11548
|
"fromMe": {
|
|
@@ -11769,10 +11567,7 @@
|
|
|
11769
11567
|
},
|
|
11770
11568
|
"AllMessagesinChat": {
|
|
11771
11569
|
"title": "AllMessagesinChat",
|
|
11772
|
-
"required": [
|
|
11773
|
-
"status",
|
|
11774
|
-
"response"
|
|
11775
|
-
],
|
|
11570
|
+
"required": ["status", "response"],
|
|
11776
11571
|
"type": "object",
|
|
11777
11572
|
"properties": {
|
|
11778
11573
|
"status": {
|
|
@@ -13118,10 +12913,7 @@
|
|
|
13118
12913
|
},
|
|
13119
12914
|
"AllNewMessages": {
|
|
13120
12915
|
"title": "AllNewMessages",
|
|
13121
|
-
"required": [
|
|
13122
|
-
"status",
|
|
13123
|
-
"response"
|
|
13124
|
-
],
|
|
12916
|
+
"required": ["status", "response"],
|
|
13125
12917
|
"type": "object",
|
|
13126
12918
|
"properties": {
|
|
13127
12919
|
"status": {
|
|
@@ -13729,10 +13521,7 @@
|
|
|
13729
13521
|
},
|
|
13730
13522
|
"UnreadMessages": {
|
|
13731
13523
|
"title": "UnreadMessages",
|
|
13732
|
-
"required": [
|
|
13733
|
-
"status",
|
|
13734
|
-
"response"
|
|
13735
|
-
],
|
|
13524
|
+
"required": ["status", "response"],
|
|
13736
13525
|
"type": "object",
|
|
13737
13526
|
"properties": {
|
|
13738
13527
|
"status": {
|
|
@@ -14618,10 +14407,7 @@
|
|
|
14618
14407
|
},
|
|
14619
14408
|
"ListMutes": {
|
|
14620
14409
|
"title": "ListMutes",
|
|
14621
|
-
"required": [
|
|
14622
|
-
"status",
|
|
14623
|
-
"response"
|
|
14624
|
-
],
|
|
14410
|
+
"required": ["status", "response"],
|
|
14625
14411
|
"type": "object",
|
|
14626
14412
|
"properties": {
|
|
14627
14413
|
"status": {
|
|
@@ -14661,9 +14447,7 @@
|
|
|
14661
14447
|
},
|
|
14662
14448
|
"ArchiveChatRequest": {
|
|
14663
14449
|
"title": "ArchiveChatRequest",
|
|
14664
|
-
"required": [
|
|
14665
|
-
"phone"
|
|
14666
|
-
],
|
|
14450
|
+
"required": ["phone"],
|
|
14667
14451
|
"type": "object",
|
|
14668
14452
|
"properties": {
|
|
14669
14453
|
"phone": {
|
|
@@ -14676,11 +14460,7 @@
|
|
|
14676
14460
|
},
|
|
14677
14461
|
"ArchiveChat": {
|
|
14678
14462
|
"title": "ArchiveChat",
|
|
14679
|
-
"required": [
|
|
14680
|
-
"status",
|
|
14681
|
-
"message",
|
|
14682
|
-
"response"
|
|
14683
|
-
],
|
|
14463
|
+
"required": ["status", "message", "response"],
|
|
14684
14464
|
"type": "object",
|
|
14685
14465
|
"properties": {
|
|
14686
14466
|
"status": {
|
|
@@ -14701,9 +14481,7 @@
|
|
|
14701
14481
|
},
|
|
14702
14482
|
"ClearChatRequest": {
|
|
14703
14483
|
"title": "ClearChatRequest",
|
|
14704
|
-
"required": [
|
|
14705
|
-
"phone"
|
|
14706
|
-
],
|
|
14484
|
+
"required": ["phone"],
|
|
14707
14485
|
"type": "object",
|
|
14708
14486
|
"properties": {
|
|
14709
14487
|
"phone": {
|
|
@@ -14716,9 +14494,7 @@
|
|
|
14716
14494
|
},
|
|
14717
14495
|
"DeleteChatRequest": {
|
|
14718
14496
|
"title": "DeleteChatRequest",
|
|
14719
|
-
"required": [
|
|
14720
|
-
"phone"
|
|
14721
|
-
],
|
|
14497
|
+
"required": ["phone"],
|
|
14722
14498
|
"type": "object",
|
|
14723
14499
|
"properties": {
|
|
14724
14500
|
"phone": {
|
|
@@ -14731,10 +14507,7 @@
|
|
|
14731
14507
|
},
|
|
14732
14508
|
"DeleteChat": {
|
|
14733
14509
|
"title": "DeleteChat",
|
|
14734
|
-
"required": [
|
|
14735
|
-
"status",
|
|
14736
|
-
"message"
|
|
14737
|
-
],
|
|
14510
|
+
"required": ["status", "message"],
|
|
14738
14511
|
"type": "object",
|
|
14739
14512
|
"properties": {
|
|
14740
14513
|
"status": {
|
|
@@ -14751,10 +14524,7 @@
|
|
|
14751
14524
|
},
|
|
14752
14525
|
"DeleteMessageRequest": {
|
|
14753
14526
|
"title": "DeleteMessageRequest",
|
|
14754
|
-
"required": [
|
|
14755
|
-
"phone",
|
|
14756
|
-
"messageId"
|
|
14757
|
-
],
|
|
14527
|
+
"required": ["phone", "messageId"],
|
|
14758
14528
|
"type": "object",
|
|
14759
14529
|
"properties": {
|
|
14760
14530
|
"phone": {
|
|
@@ -14771,10 +14541,7 @@
|
|
|
14771
14541
|
},
|
|
14772
14542
|
"DeleteMessage": {
|
|
14773
14543
|
"title": "DeleteMessage",
|
|
14774
|
-
"required": [
|
|
14775
|
-
"status",
|
|
14776
|
-
"message"
|
|
14777
|
-
],
|
|
14544
|
+
"required": ["status", "message"],
|
|
14778
14545
|
"type": "object",
|
|
14779
14546
|
"properties": {
|
|
14780
14547
|
"status": {
|
|
@@ -14791,9 +14558,7 @@
|
|
|
14791
14558
|
},
|
|
14792
14559
|
"MarkUnseenRequest": {
|
|
14793
14560
|
"title": "MarkUnseenRequest",
|
|
14794
|
-
"required": [
|
|
14795
|
-
"phone"
|
|
14796
|
-
],
|
|
14561
|
+
"required": ["phone"],
|
|
14797
14562
|
"type": "object",
|
|
14798
14563
|
"properties": {
|
|
14799
14564
|
"phone": {
|
|
@@ -14806,10 +14571,7 @@
|
|
|
14806
14571
|
},
|
|
14807
14572
|
"MarkUnseen": {
|
|
14808
14573
|
"title": "MarkUnseen",
|
|
14809
|
-
"required": [
|
|
14810
|
-
"status",
|
|
14811
|
-
"message"
|
|
14812
|
-
],
|
|
14574
|
+
"required": ["status", "message"],
|
|
14813
14575
|
"type": "object",
|
|
14814
14576
|
"properties": {
|
|
14815
14577
|
"status": {
|
|
@@ -14826,10 +14588,7 @@
|
|
|
14826
14588
|
},
|
|
14827
14589
|
"PinChatRequest": {
|
|
14828
14590
|
"title": "PinChatRequest",
|
|
14829
|
-
"required": [
|
|
14830
|
-
"phone",
|
|
14831
|
-
"messageId"
|
|
14832
|
-
],
|
|
14591
|
+
"required": ["phone", "messageId"],
|
|
14833
14592
|
"type": "object",
|
|
14834
14593
|
"properties": {
|
|
14835
14594
|
"phone": {
|
|
@@ -14846,11 +14605,7 @@
|
|
|
14846
14605
|
},
|
|
14847
14606
|
"SendMuteRequest": {
|
|
14848
14607
|
"title": "SendMuteRequest",
|
|
14849
|
-
"required": [
|
|
14850
|
-
"phone",
|
|
14851
|
-
"time",
|
|
14852
|
-
"type"
|
|
14853
|
-
],
|
|
14608
|
+
"required": ["phone", "time", "type"],
|
|
14854
14609
|
"type": "object",
|
|
14855
14610
|
"properties": {
|
|
14856
14611
|
"phone": {
|
|
@@ -14872,10 +14627,7 @@
|
|
|
14872
14627
|
},
|
|
14873
14628
|
"SendMute": {
|
|
14874
14629
|
"title": "SendMute",
|
|
14875
|
-
"required": [
|
|
14876
|
-
"status",
|
|
14877
|
-
"response"
|
|
14878
|
-
],
|
|
14630
|
+
"required": ["status", "response"],
|
|
14879
14631
|
"type": "object",
|
|
14880
14632
|
"properties": {
|
|
14881
14633
|
"status": {
|
|
@@ -14898,10 +14650,7 @@
|
|
|
14898
14650
|
"_serialized": "556592424425@c.us"
|
|
14899
14651
|
},
|
|
14900
14652
|
"connected": true,
|
|
14901
|
-
"protoVersion": [
|
|
14902
|
-
0,
|
|
14903
|
-
17
|
|
14904
|
-
],
|
|
14653
|
+
"protoVersion": [0, 17],
|
|
14905
14654
|
"clientToken": "hdTL/zIDCji6tgK9HmpNZy6k3iH0ddaQJCHd2SdtFL8=",
|
|
14906
14655
|
"serverToken": "1@5TO8Gf1Qi73m23rF4UtAVb3cYCNsefP2jN2PBgQtIJ4Gukh02M0h2DD/o5kdOUo/flAZJz/6uC9cqA==",
|
|
14907
14656
|
"isResponse": "true",
|
|
@@ -14953,16 +14702,7 @@
|
|
|
14953
14702
|
},
|
|
14954
14703
|
"Response8": {
|
|
14955
14704
|
"title": "Response8",
|
|
14956
|
-
"required": [
|
|
14957
|
-
"me",
|
|
14958
|
-
"to",
|
|
14959
|
-
"erro",
|
|
14960
|
-
"text",
|
|
14961
|
-
"status",
|
|
14962
|
-
"type",
|
|
14963
|
-
"time",
|
|
14964
|
-
"timeType"
|
|
14965
|
-
],
|
|
14705
|
+
"required": ["me", "to", "erro", "text", "status", "type", "time", "timeType"],
|
|
14966
14706
|
"type": "object",
|
|
14967
14707
|
"properties": {
|
|
14968
14708
|
"me": {
|
|
@@ -15004,10 +14744,7 @@
|
|
|
15004
14744
|
"_serialized": "556592424425@c.us"
|
|
15005
14745
|
},
|
|
15006
14746
|
"connected": true,
|
|
15007
|
-
"protoVersion": [
|
|
15008
|
-
0,
|
|
15009
|
-
17
|
|
15010
|
-
],
|
|
14747
|
+
"protoVersion": [0, 17],
|
|
15011
14748
|
"clientToken": "hdTL/zIDCji6tgK9HmpNZy6k3iH0ddaQJCHd2SdtFL8=",
|
|
15012
14749
|
"serverToken": "1@5TO8Gf1Qi73m23rF4UtAVb3cYCNsefP2jN2PBgQtIJ4Gukh02M0h2DD/o5kdOUo/flAZJz/6uC9cqA==",
|
|
15013
14750
|
"isResponse": "true",
|
|
@@ -15174,10 +14911,7 @@
|
|
|
15174
14911
|
"_serialized": "556592424425@c.us"
|
|
15175
14912
|
},
|
|
15176
14913
|
"connected": true,
|
|
15177
|
-
"protoVersion": [
|
|
15178
|
-
0,
|
|
15179
|
-
17
|
|
15180
|
-
],
|
|
14914
|
+
"protoVersion": [0, 17],
|
|
15181
14915
|
"clientToken": "hdTL/zIDCji6tgK9HmpNZy6k3iH0ddaQJCHd2SdtFL8=",
|
|
15182
14916
|
"serverToken": "1@5TO8Gf1Qi73m23rF4UtAVb3cYCNsefP2jN2PBgQtIJ4Gukh02M0h2DD/o5kdOUo/flAZJz/6uC9cqA==",
|
|
15183
14917
|
"isResponse": "true",
|
|
@@ -15207,11 +14941,7 @@
|
|
|
15207
14941
|
},
|
|
15208
14942
|
"Wid": {
|
|
15209
14943
|
"title": "Wid",
|
|
15210
|
-
"required": [
|
|
15211
|
-
"server",
|
|
15212
|
-
"user",
|
|
15213
|
-
"_serialized"
|
|
15214
|
-
],
|
|
14944
|
+
"required": ["server", "user", "_serialized"],
|
|
15215
14945
|
"type": "object",
|
|
15216
14946
|
"properties": {
|
|
15217
14947
|
"server": {
|
|
@@ -15277,16 +15007,7 @@
|
|
|
15277
15007
|
},
|
|
15278
15008
|
"To": {
|
|
15279
15009
|
"title": "To",
|
|
15280
|
-
"required": [
|
|
15281
|
-
"fromMe",
|
|
15282
|
-
"remote",
|
|
15283
|
-
"id",
|
|
15284
|
-
"_serialized",
|
|
15285
|
-
"formattedName",
|
|
15286
|
-
"isBusiness",
|
|
15287
|
-
"isMyContact",
|
|
15288
|
-
"pushname"
|
|
15289
|
-
],
|
|
15010
|
+
"required": ["fromMe", "remote", "id", "_serialized", "formattedName", "isBusiness", "isMyContact", "pushname"],
|
|
15290
15011
|
"type": "object",
|
|
15291
15012
|
"properties": {
|
|
15292
15013
|
"fromMe": {
|
|
@@ -15331,10 +15052,7 @@
|
|
|
15331
15052
|
},
|
|
15332
15053
|
"ChatStateRequest": {
|
|
15333
15054
|
"title": "ChatStateRequest",
|
|
15334
|
-
"required": [
|
|
15335
|
-
"phone",
|
|
15336
|
-
"chatstate"
|
|
15337
|
-
],
|
|
15055
|
+
"required": ["phone", "chatstate"],
|
|
15338
15056
|
"type": "object",
|
|
15339
15057
|
"properties": {
|
|
15340
15058
|
"phone": {
|
|
@@ -15352,9 +15070,7 @@
|
|
|
15352
15070
|
},
|
|
15353
15071
|
"SendSeenRequest": {
|
|
15354
15072
|
"title": "SendSeenRequest",
|
|
15355
|
-
"required": [
|
|
15356
|
-
"phone"
|
|
15357
|
-
],
|
|
15073
|
+
"required": ["phone"],
|
|
15358
15074
|
"type": "object",
|
|
15359
15075
|
"properties": {
|
|
15360
15076
|
"phone": {
|
|
@@ -15367,10 +15083,7 @@
|
|
|
15367
15083
|
},
|
|
15368
15084
|
"SendSeen": {
|
|
15369
15085
|
"title": "SendSeen",
|
|
15370
|
-
"required": [
|
|
15371
|
-
"status",
|
|
15372
|
-
"response"
|
|
15373
|
-
],
|
|
15086
|
+
"required": ["status", "response"],
|
|
15374
15087
|
"type": "object",
|
|
15375
15088
|
"properties": {
|
|
15376
15089
|
"status": {
|
|
@@ -15387,10 +15100,7 @@
|
|
|
15387
15100
|
},
|
|
15388
15101
|
"TemporaryMessagesRequest": {
|
|
15389
15102
|
"title": "TemporaryMessagesRequest",
|
|
15390
|
-
"required": [
|
|
15391
|
-
"phone",
|
|
15392
|
-
"value"
|
|
15393
|
-
],
|
|
15103
|
+
"required": ["phone", "value"],
|
|
15394
15104
|
"type": "object",
|
|
15395
15105
|
"properties": {
|
|
15396
15106
|
"phone": {
|
|
@@ -15407,10 +15117,7 @@
|
|
|
15407
15117
|
},
|
|
15408
15118
|
"TemporaryMessages": {
|
|
15409
15119
|
"title": "TemporaryMessages",
|
|
15410
|
-
"required": [
|
|
15411
|
-
"status",
|
|
15412
|
-
"response"
|
|
15413
|
-
],
|
|
15120
|
+
"required": ["status", "response"],
|
|
15414
15121
|
"type": "object",
|
|
15415
15122
|
"properties": {
|
|
15416
15123
|
"status": {
|
|
@@ -15427,11 +15134,7 @@
|
|
|
15427
15134
|
},
|
|
15428
15135
|
"SetTypingRequest": {
|
|
15429
15136
|
"title": "SetTypingRequest",
|
|
15430
|
-
"required": [
|
|
15431
|
-
"phone",
|
|
15432
|
-
"value",
|
|
15433
|
-
"isGrup"
|
|
15434
|
-
],
|
|
15137
|
+
"required": ["phone", "value", "isGrup"],
|
|
15435
15138
|
"type": "object",
|
|
15436
15139
|
"properties": {
|
|
15437
15140
|
"phone": {
|
|
@@ -15452,11 +15155,7 @@
|
|
|
15452
15155
|
},
|
|
15453
15156
|
"SendFileRequest": {
|
|
15454
15157
|
"title": "SendFileRequest",
|
|
15455
|
-
"required": [
|
|
15456
|
-
"phone",
|
|
15457
|
-
"base64",
|
|
15458
|
-
"isGroup"
|
|
15459
|
-
],
|
|
15158
|
+
"required": ["phone", "base64", "isGroup"],
|
|
15460
15159
|
"type": "object",
|
|
15461
15160
|
"properties": {
|
|
15462
15161
|
"phone": {
|
|
@@ -15477,12 +15176,7 @@
|
|
|
15477
15176
|
},
|
|
15478
15177
|
"SendReplyRequest": {
|
|
15479
15178
|
"title": "SendReplyRequest",
|
|
15480
|
-
"required": [
|
|
15481
|
-
"phone",
|
|
15482
|
-
"message",
|
|
15483
|
-
"messageId",
|
|
15484
|
-
"isGroup"
|
|
15485
|
-
],
|
|
15179
|
+
"required": ["phone", "message", "messageId", "isGroup"],
|
|
15486
15180
|
"type": "object",
|
|
15487
15181
|
"properties": {
|
|
15488
15182
|
"phone": {
|
|
@@ -15507,11 +15201,7 @@
|
|
|
15507
15201
|
},
|
|
15508
15202
|
"SendMessageRequest": {
|
|
15509
15203
|
"title": "SendMessageRequest",
|
|
15510
|
-
"required": [
|
|
15511
|
-
"phone",
|
|
15512
|
-
"message",
|
|
15513
|
-
"isGroup"
|
|
15514
|
-
],
|
|
15204
|
+
"required": ["phone", "message", "isGroup"],
|
|
15515
15205
|
"type": "object",
|
|
15516
15206
|
"properties": {
|
|
15517
15207
|
"phone": {
|
|
@@ -15522,6 +15212,9 @@
|
|
|
15522
15212
|
},
|
|
15523
15213
|
"isGroup": {
|
|
15524
15214
|
"type": "boolean"
|
|
15215
|
+
},
|
|
15216
|
+
"options": {
|
|
15217
|
+
"type": "object"
|
|
15525
15218
|
}
|
|
15526
15219
|
},
|
|
15527
15220
|
"example": {
|
|
@@ -15532,10 +15225,7 @@
|
|
|
15532
15225
|
},
|
|
15533
15226
|
"ForwardMessages(Encaminharmensagem)Request": {
|
|
15534
15227
|
"title": "ForwardMessages(Encaminharmensagem)Request",
|
|
15535
|
-
"required": [
|
|
15536
|
-
"phone",
|
|
15537
|
-
"messageId"
|
|
15538
|
-
],
|
|
15228
|
+
"required": ["phone", "messageId"],
|
|
15539
15229
|
"type": "object",
|
|
15540
15230
|
"properties": {
|
|
15541
15231
|
"phone": {
|
|
@@ -15552,10 +15242,7 @@
|
|
|
15552
15242
|
},
|
|
15553
15243
|
"SendContactVcardRequest": {
|
|
15554
15244
|
"title": "SendContactVcardRequest",
|
|
15555
|
-
"required": [
|
|
15556
|
-
"phone",
|
|
15557
|
-
"contactsId"
|
|
15558
|
-
],
|
|
15245
|
+
"required": ["phone", "contactsId"],
|
|
15559
15246
|
"type": "object",
|
|
15560
15247
|
"properties": {
|
|
15561
15248
|
"phone": {
|
|
@@ -15572,10 +15259,7 @@
|
|
|
15572
15259
|
},
|
|
15573
15260
|
"SendContactVcard": {
|
|
15574
15261
|
"title": "SendContactVcard",
|
|
15575
|
-
"required": [
|
|
15576
|
-
"status",
|
|
15577
|
-
"response"
|
|
15578
|
-
],
|
|
15262
|
+
"required": ["status", "response"],
|
|
15579
15263
|
"type": "object",
|
|
15580
15264
|
"properties": {
|
|
15581
15265
|
"status": {
|
|
@@ -15598,10 +15282,7 @@
|
|
|
15598
15282
|
"_serialized": "556592424425@c.us"
|
|
15599
15283
|
},
|
|
15600
15284
|
"connected": true,
|
|
15601
|
-
"protoVersion": [
|
|
15602
|
-
0,
|
|
15603
|
-
17
|
|
15604
|
-
],
|
|
15285
|
+
"protoVersion": [0, 17],
|
|
15605
15286
|
"clientToken": "aeTnIxydmYIpKUsxG5q+iQRLMRsYMnXhpV1wqsdjQOw=",
|
|
15606
15287
|
"serverToken": "1@3jaCR5jbMKpeSBSt9HYs1OfpnCwnomoZpcnPMOkQOp8ibUglFUjN91I5w1bNHO9XafxYEXMqw6VmDw==",
|
|
15607
15288
|
"isResponse": "true",
|
|
@@ -15652,15 +15333,7 @@
|
|
|
15652
15333
|
},
|
|
15653
15334
|
"Response9": {
|
|
15654
15335
|
"title": "Response9",
|
|
15655
|
-
"required": [
|
|
15656
|
-
"me",
|
|
15657
|
-
"to",
|
|
15658
|
-
"erro",
|
|
15659
|
-
"text",
|
|
15660
|
-
"status",
|
|
15661
|
-
"from",
|
|
15662
|
-
"type"
|
|
15663
|
-
],
|
|
15336
|
+
"required": ["me", "to", "erro", "text", "status", "from", "type"],
|
|
15664
15337
|
"type": "object",
|
|
15665
15338
|
"properties": {
|
|
15666
15339
|
"me": {
|
|
@@ -15697,10 +15370,7 @@
|
|
|
15697
15370
|
"_serialized": "556592424425@c.us"
|
|
15698
15371
|
},
|
|
15699
15372
|
"connected": true,
|
|
15700
|
-
"protoVersion": [
|
|
15701
|
-
0,
|
|
15702
|
-
17
|
|
15703
|
-
],
|
|
15373
|
+
"protoVersion": [0, 17],
|
|
15704
15374
|
"clientToken": "aeTnIxydmYIpKUsxG5q+iQRLMRsYMnXhpV1wqsdjQOw=",
|
|
15705
15375
|
"serverToken": "1@3jaCR5jbMKpeSBSt9HYs1OfpnCwnomoZpcnPMOkQOp8ibUglFUjN91I5w1bNHO9XafxYEXMqw6VmDw==",
|
|
15706
15376
|
"isResponse": "true",
|
|
@@ -15750,11 +15420,7 @@
|
|
|
15750
15420
|
},
|
|
15751
15421
|
"SendLinkPreviewRequest": {
|
|
15752
15422
|
"title": "SendLinkPreviewRequest",
|
|
15753
|
-
"required": [
|
|
15754
|
-
"phone",
|
|
15755
|
-
"url",
|
|
15756
|
-
"caption"
|
|
15757
|
-
],
|
|
15423
|
+
"required": ["phone", "url", "caption"],
|
|
15758
15424
|
"type": "object",
|
|
15759
15425
|
"properties": {
|
|
15760
15426
|
"phone": {
|
|
@@ -15775,10 +15441,7 @@
|
|
|
15775
15441
|
},
|
|
15776
15442
|
"SendLinkPreview": {
|
|
15777
15443
|
"title": "SendLinkPreview",
|
|
15778
|
-
"required": [
|
|
15779
|
-
"status",
|
|
15780
|
-
"message"
|
|
15781
|
-
],
|
|
15444
|
+
"required": ["status", "message"],
|
|
15782
15445
|
"type": "object",
|
|
15783
15446
|
"properties": {
|
|
15784
15447
|
"status": {
|
|
@@ -15795,12 +15458,7 @@
|
|
|
15795
15458
|
},
|
|
15796
15459
|
"SendLocationRequest": {
|
|
15797
15460
|
"title": "SendLocationRequest",
|
|
15798
|
-
"required": [
|
|
15799
|
-
"phone",
|
|
15800
|
-
"lat",
|
|
15801
|
-
"lng",
|
|
15802
|
-
"title"
|
|
15803
|
-
],
|
|
15461
|
+
"required": ["phone", "lat", "lng", "title"],
|
|
15804
15462
|
"type": "object",
|
|
15805
15463
|
"properties": {
|
|
15806
15464
|
"phone": {
|
|
@@ -15825,10 +15483,7 @@
|
|
|
15825
15483
|
},
|
|
15826
15484
|
"SendLocation": {
|
|
15827
15485
|
"title": "SendLocation",
|
|
15828
|
-
"required": [
|
|
15829
|
-
"status",
|
|
15830
|
-
"message"
|
|
15831
|
-
],
|
|
15486
|
+
"required": ["status", "message"],
|
|
15832
15487
|
"type": "object",
|
|
15833
15488
|
"properties": {
|
|
15834
15489
|
"status": {
|
|
@@ -15845,12 +15500,7 @@
|
|
|
15845
15500
|
},
|
|
15846
15501
|
"SendMentionedRequest": {
|
|
15847
15502
|
"title": "SendMentionedRequest",
|
|
15848
|
-
"required": [
|
|
15849
|
-
"phone",
|
|
15850
|
-
"message",
|
|
15851
|
-
"mentioned",
|
|
15852
|
-
"isGruop"
|
|
15853
|
-
],
|
|
15503
|
+
"required": ["phone", "message", "mentioned", "isGruop"],
|
|
15854
15504
|
"type": "object",
|
|
15855
15505
|
"properties": {
|
|
15856
15506
|
"phone": {
|
|
@@ -15873,17 +15523,13 @@
|
|
|
15873
15523
|
"example": {
|
|
15874
15524
|
"phone": "556593077171-1620997998",
|
|
15875
15525
|
"message": "ola como isso funciona @556593077171@c.us",
|
|
15876
|
-
"mentioned": [
|
|
15877
|
-
"@556593077171@c.us"
|
|
15878
|
-
],
|
|
15526
|
+
"mentioned": ["@556593077171@c.us"],
|
|
15879
15527
|
"isGruop": true
|
|
15880
15528
|
}
|
|
15881
15529
|
},
|
|
15882
15530
|
"ChangeUsernameRequest": {
|
|
15883
15531
|
"title": "ChangeUsernameRequest",
|
|
15884
|
-
"required": [
|
|
15885
|
-
"name"
|
|
15886
|
-
],
|
|
15532
|
+
"required": ["name"],
|
|
15887
15533
|
"type": "object",
|
|
15888
15534
|
"properties": {
|
|
15889
15535
|
"name": {
|
|
@@ -15896,9 +15542,7 @@
|
|
|
15896
15542
|
},
|
|
15897
15543
|
"ChangeProfileImageRequest": {
|
|
15898
15544
|
"title": "ChangeProfileImageRequest",
|
|
15899
|
-
"required": [
|
|
15900
|
-
"path"
|
|
15901
|
-
],
|
|
15545
|
+
"required": ["path"],
|
|
15902
15546
|
"type": "object",
|
|
15903
15547
|
"properties": {
|
|
15904
15548
|
"path": {
|
|
@@ -15911,10 +15555,7 @@
|
|
|
15911
15555
|
},
|
|
15912
15556
|
"ChangeProfileImage": {
|
|
15913
15557
|
"title": "ChangeProfileImage",
|
|
15914
|
-
"required": [
|
|
15915
|
-
"status",
|
|
15916
|
-
"message"
|
|
15917
|
-
],
|
|
15558
|
+
"required": ["status", "message"],
|
|
15918
15559
|
"type": "object",
|
|
15919
15560
|
"properties": {
|
|
15920
15561
|
"status": {
|
|
@@ -15931,9 +15572,7 @@
|
|
|
15931
15572
|
},
|
|
15932
15573
|
"ChangeProfileStatusRequest": {
|
|
15933
15574
|
"title": "ChangeProfileStatusRequest",
|
|
15934
|
-
"required": [
|
|
15935
|
-
"status"
|
|
15936
|
-
],
|
|
15575
|
+
"required": ["status"],
|
|
15937
15576
|
"type": "object",
|
|
15938
15577
|
"properties": {
|
|
15939
15578
|
"status": {
|
|
@@ -15946,9 +15585,7 @@
|
|
|
15946
15585
|
},
|
|
15947
15586
|
"ChangeProfileStatus": {
|
|
15948
15587
|
"title": "ChangeProfileStatus",
|
|
15949
|
-
"required": [
|
|
15950
|
-
"status"
|
|
15951
|
-
],
|
|
15588
|
+
"required": ["status"],
|
|
15952
15589
|
"type": "object",
|
|
15953
15590
|
"properties": {
|
|
15954
15591
|
"status": {
|
|
@@ -15961,10 +15598,7 @@
|
|
|
15961
15598
|
},
|
|
15962
15599
|
"CheckNumberStatus": {
|
|
15963
15600
|
"title": "CheckNumberStatus",
|
|
15964
|
-
"required": [
|
|
15965
|
-
"status",
|
|
15966
|
-
"response"
|
|
15967
|
-
],
|
|
15601
|
+
"required": ["status", "response"],
|
|
15968
15602
|
"type": "object",
|
|
15969
15603
|
"properties": {
|
|
15970
15604
|
"status": {
|
|
@@ -15991,13 +15625,7 @@
|
|
|
15991
15625
|
},
|
|
15992
15626
|
"Response10": {
|
|
15993
15627
|
"title": "Response10",
|
|
15994
|
-
"required": [
|
|
15995
|
-
"id",
|
|
15996
|
-
"status",
|
|
15997
|
-
"isBusiness",
|
|
15998
|
-
"canReceiveMessage",
|
|
15999
|
-
"numberExists"
|
|
16000
|
-
],
|
|
15628
|
+
"required": ["id", "status", "isBusiness", "canReceiveMessage", "numberExists"],
|
|
16001
15629
|
"type": "object",
|
|
16002
15630
|
"properties": {
|
|
16003
15631
|
"id": {
|
|
@@ -16031,10 +15659,7 @@
|
|
|
16031
15659
|
},
|
|
16032
15660
|
"GetAllContacts": {
|
|
16033
15661
|
"title": "GetAllContacts",
|
|
16034
|
-
"required": [
|
|
16035
|
-
"status",
|
|
16036
|
-
"response"
|
|
16037
|
-
],
|
|
15662
|
+
"required": ["status", "response"],
|
|
16038
15663
|
"type": "object",
|
|
16039
15664
|
"properties": {
|
|
16040
15665
|
"status": {
|
|
@@ -16171,10 +15796,7 @@
|
|
|
16171
15796
|
},
|
|
16172
15797
|
"GetContact": {
|
|
16173
15798
|
"title": "GetContact",
|
|
16174
|
-
"required": [
|
|
16175
|
-
"status",
|
|
16176
|
-
"response"
|
|
16177
|
-
],
|
|
15799
|
+
"required": ["status", "response"],
|
|
16178
15800
|
"type": "object",
|
|
16179
15801
|
"properties": {
|
|
16180
15802
|
"status": {
|
|
@@ -16339,10 +15961,7 @@
|
|
|
16339
15961
|
},
|
|
16340
15962
|
"GetNumberProfile": {
|
|
16341
15963
|
"title": "GetNumberProfile",
|
|
16342
|
-
"required": [
|
|
16343
|
-
"status",
|
|
16344
|
-
"response"
|
|
16345
|
-
],
|
|
15964
|
+
"required": ["status", "response"],
|
|
16346
15965
|
"type": "object",
|
|
16347
15966
|
"properties": {
|
|
16348
15967
|
"status": {
|
|
@@ -16369,10 +15988,7 @@
|
|
|
16369
15988
|
},
|
|
16370
15989
|
"GetProfilePicture": {
|
|
16371
15990
|
"title": "GetProfilePicture",
|
|
16372
|
-
"required": [
|
|
16373
|
-
"status",
|
|
16374
|
-
"response"
|
|
16375
|
-
],
|
|
15991
|
+
"required": ["status", "response"],
|
|
16376
15992
|
"type": "object",
|
|
16377
15993
|
"properties": {
|
|
16378
15994
|
"status": {
|
|
@@ -16400,14 +16016,7 @@
|
|
|
16400
16016
|
},
|
|
16401
16017
|
"Response14": {
|
|
16402
16018
|
"title": "Response14",
|
|
16403
|
-
"required": [
|
|
16404
|
-
"eurl",
|
|
16405
|
-
"id",
|
|
16406
|
-
"img",
|
|
16407
|
-
"imgFull",
|
|
16408
|
-
"raw",
|
|
16409
|
-
"tag"
|
|
16410
|
-
],
|
|
16019
|
+
"required": ["eurl", "id", "img", "imgFull", "raw", "tag"],
|
|
16411
16020
|
"type": "object",
|
|
16412
16021
|
"properties": {
|
|
16413
16022
|
"eurl": {
|
|
@@ -16445,10 +16054,7 @@
|
|
|
16445
16054
|
},
|
|
16446
16055
|
"GetProfileStatus": {
|
|
16447
16056
|
"title": "GetProfileStatus",
|
|
16448
|
-
"required": [
|
|
16449
|
-
"status",
|
|
16450
|
-
"response"
|
|
16451
|
-
],
|
|
16057
|
+
"required": ["status", "response"],
|
|
16452
16058
|
"type": "object",
|
|
16453
16059
|
"properties": {
|
|
16454
16060
|
"status": {
|
|
@@ -16468,10 +16074,7 @@
|
|
|
16468
16074
|
},
|
|
16469
16075
|
"Response15": {
|
|
16470
16076
|
"title": "Response15",
|
|
16471
|
-
"required": [
|
|
16472
|
-
"id",
|
|
16473
|
-
"status"
|
|
16474
|
-
],
|
|
16077
|
+
"required": ["id", "status"],
|
|
16475
16078
|
"type": "object",
|
|
16476
16079
|
"properties": {
|
|
16477
16080
|
"id": {
|
|
@@ -16488,10 +16091,7 @@
|
|
|
16488
16091
|
},
|
|
16489
16092
|
"CreateGroupRequest": {
|
|
16490
16093
|
"title": "CreateGroupRequest",
|
|
16491
|
-
"required": [
|
|
16492
|
-
"groupname",
|
|
16493
|
-
"phone"
|
|
16494
|
-
],
|
|
16094
|
+
"required": ["groupname", "phone"],
|
|
16495
16095
|
"type": "object",
|
|
16496
16096
|
"properties": {
|
|
16497
16097
|
"groupname": {
|
|
@@ -16508,9 +16108,7 @@
|
|
|
16508
16108
|
},
|
|
16509
16109
|
"JoinGroupbyCodeRequest": {
|
|
16510
16110
|
"title": "JoinGroupbyCodeRequest",
|
|
16511
|
-
"required": [
|
|
16512
|
-
"inviteCode"
|
|
16513
|
-
],
|
|
16111
|
+
"required": ["inviteCode"],
|
|
16514
16112
|
"type": "object",
|
|
16515
16113
|
"properties": {
|
|
16516
16114
|
"inviteCode": {
|
|
@@ -16523,10 +16121,7 @@
|
|
|
16523
16121
|
},
|
|
16524
16122
|
"AddParticipantRequest": {
|
|
16525
16123
|
"title": "AddParticipantRequest",
|
|
16526
|
-
"required": [
|
|
16527
|
-
"groupId",
|
|
16528
|
-
"phone"
|
|
16529
|
-
],
|
|
16124
|
+
"required": ["groupId", "phone"],
|
|
16530
16125
|
"type": "object",
|
|
16531
16126
|
"properties": {
|
|
16532
16127
|
"groupId": {
|
|
@@ -16543,12 +16138,7 @@
|
|
|
16543
16138
|
},
|
|
16544
16139
|
"AddParticipant": {
|
|
16545
16140
|
"title": "AddParticipant",
|
|
16546
|
-
"required": [
|
|
16547
|
-
"status",
|
|
16548
|
-
"message",
|
|
16549
|
-
"participants",
|
|
16550
|
-
"groups"
|
|
16551
|
-
],
|
|
16141
|
+
"required": ["status", "message", "participants", "groups"],
|
|
16552
16142
|
"type": "object",
|
|
16553
16143
|
"properties": {
|
|
16554
16144
|
"status": {
|
|
@@ -16572,17 +16162,12 @@
|
|
|
16572
16162
|
"status": "Success",
|
|
16573
16163
|
"message": "Participante(s) adicionado(s) com sucesso",
|
|
16574
16164
|
"participants": "556593077171",
|
|
16575
|
-
"groups": [
|
|
16576
|
-
true
|
|
16577
|
-
]
|
|
16165
|
+
"groups": [true]
|
|
16578
16166
|
}
|
|
16579
16167
|
},
|
|
16580
16168
|
"DemoteParticipantRequest": {
|
|
16581
16169
|
"title": "DemoteParticipantRequest",
|
|
16582
|
-
"required": [
|
|
16583
|
-
"groupId",
|
|
16584
|
-
"phone"
|
|
16585
|
-
],
|
|
16170
|
+
"required": ["groupId", "phone"],
|
|
16586
16171
|
"type": "object",
|
|
16587
16172
|
"properties": {
|
|
16588
16173
|
"groupId": {
|
|
@@ -16599,12 +16184,7 @@
|
|
|
16599
16184
|
},
|
|
16600
16185
|
"DemoteParticipant": {
|
|
16601
16186
|
"title": "DemoteParticipant",
|
|
16602
|
-
"required": [
|
|
16603
|
-
"status",
|
|
16604
|
-
"message",
|
|
16605
|
-
"participants",
|
|
16606
|
-
"groups"
|
|
16607
|
-
],
|
|
16187
|
+
"required": ["status", "message", "participants", "groups"],
|
|
16608
16188
|
"type": "object",
|
|
16609
16189
|
"properties": {
|
|
16610
16190
|
"status": {
|
|
@@ -16628,17 +16208,12 @@
|
|
|
16628
16208
|
"status": "Success",
|
|
16629
16209
|
"message": "Admin do(s) participante(s) revogado(s) com sucesso",
|
|
16630
16210
|
"participants": "556593077171",
|
|
16631
|
-
"groups": [
|
|
16632
|
-
"556593077171-1620997998@g.us"
|
|
16633
|
-
]
|
|
16211
|
+
"groups": ["556593077171-1620997998@g.us"]
|
|
16634
16212
|
}
|
|
16635
16213
|
},
|
|
16636
16214
|
"PromoteParticipantRequest": {
|
|
16637
16215
|
"title": "PromoteParticipantRequest",
|
|
16638
|
-
"required": [
|
|
16639
|
-
"groupId",
|
|
16640
|
-
"phone"
|
|
16641
|
-
],
|
|
16216
|
+
"required": ["groupId", "phone"],
|
|
16642
16217
|
"type": "object",
|
|
16643
16218
|
"properties": {
|
|
16644
16219
|
"groupId": {
|
|
@@ -16655,12 +16230,7 @@
|
|
|
16655
16230
|
},
|
|
16656
16231
|
"PromoteParticipant": {
|
|
16657
16232
|
"title": "PromoteParticipant",
|
|
16658
|
-
"required": [
|
|
16659
|
-
"status",
|
|
16660
|
-
"message",
|
|
16661
|
-
"participants",
|
|
16662
|
-
"groups"
|
|
16663
|
-
],
|
|
16233
|
+
"required": ["status", "message", "participants", "groups"],
|
|
16664
16234
|
"type": "object",
|
|
16665
16235
|
"properties": {
|
|
16666
16236
|
"status": {
|
|
@@ -16684,17 +16254,12 @@
|
|
|
16684
16254
|
"status": "Success",
|
|
16685
16255
|
"message": "Participante(s) promovidos(s) com sucesso",
|
|
16686
16256
|
"participants": "556593077171",
|
|
16687
|
-
"groups": [
|
|
16688
|
-
"556593077171-1620997998@g.us"
|
|
16689
|
-
]
|
|
16257
|
+
"groups": ["556593077171-1620997998@g.us"]
|
|
16690
16258
|
}
|
|
16691
16259
|
},
|
|
16692
16260
|
"GetAllBroadcastList": {
|
|
16693
16261
|
"title": "GetAllBroadcastList",
|
|
16694
|
-
"required": [
|
|
16695
|
-
"status",
|
|
16696
|
-
"response"
|
|
16697
|
-
],
|
|
16262
|
+
"required": ["status", "response"],
|
|
16698
16263
|
"type": "object",
|
|
16699
16264
|
"properties": {
|
|
16700
16265
|
"status": {
|
|
@@ -17018,10 +16583,7 @@
|
|
|
17018
16583
|
},
|
|
17019
16584
|
"ProfilePicThumbObj18": {
|
|
17020
16585
|
"title": "ProfilePicThumbObj18",
|
|
17021
|
-
"required": [
|
|
17022
|
-
"id",
|
|
17023
|
-
"tag"
|
|
17024
|
-
],
|
|
16586
|
+
"required": ["id", "tag"],
|
|
17025
16587
|
"type": "object",
|
|
17026
16588
|
"properties": {
|
|
17027
16589
|
"id": {
|
|
@@ -17043,11 +16605,7 @@
|
|
|
17043
16605
|
},
|
|
17044
16606
|
"GroupMetadata": {
|
|
17045
16607
|
"title": "GroupMetadata",
|
|
17046
|
-
"required": [
|
|
17047
|
-
"id",
|
|
17048
|
-
"participants",
|
|
17049
|
-
"pendingParticipants"
|
|
17050
|
-
],
|
|
16608
|
+
"required": ["id", "participants", "pendingParticipants"],
|
|
17051
16609
|
"type": "object",
|
|
17052
16610
|
"properties": {
|
|
17053
16611
|
"id": {
|
|
@@ -17095,9 +16653,7 @@
|
|
|
17095
16653
|
},
|
|
17096
16654
|
"Participant": {
|
|
17097
16655
|
"title": "Participant",
|
|
17098
|
-
"required": [
|
|
17099
|
-
"id"
|
|
17100
|
-
],
|
|
16656
|
+
"required": ["id"],
|
|
17101
16657
|
"type": "object",
|
|
17102
16658
|
"properties": {
|
|
17103
16659
|
"id": {
|
|
@@ -17114,9 +16670,7 @@
|
|
|
17114
16670
|
},
|
|
17115
16671
|
"GetAllGroups": {
|
|
17116
16672
|
"title": "GetAllGroups",
|
|
17117
|
-
"required": [
|
|
17118
|
-
"groups"
|
|
17119
|
-
],
|
|
16673
|
+
"required": ["groups"],
|
|
17120
16674
|
"type": "object",
|
|
17121
16675
|
"properties": {
|
|
17122
16676
|
"groups": {
|
|
@@ -17138,10 +16692,7 @@
|
|
|
17138
16692
|
},
|
|
17139
16693
|
"Group": {
|
|
17140
16694
|
"title": "Group",
|
|
17141
|
-
"required": [
|
|
17142
|
-
"id",
|
|
17143
|
-
"name"
|
|
17144
|
-
],
|
|
16695
|
+
"required": ["id", "name"],
|
|
17145
16696
|
"type": "object",
|
|
17146
16697
|
"properties": {
|
|
17147
16698
|
"id": {
|
|
@@ -17158,11 +16709,7 @@
|
|
|
17158
16709
|
},
|
|
17159
16710
|
"GetGroupAdmins": {
|
|
17160
16711
|
"title": "GetGroupAdmins",
|
|
17161
|
-
"required": [
|
|
17162
|
-
"status",
|
|
17163
|
-
"participants",
|
|
17164
|
-
"groups"
|
|
17165
|
-
],
|
|
16712
|
+
"required": ["status", "participants", "groups"],
|
|
17166
16713
|
"type": "object",
|
|
17167
16714
|
"properties": {
|
|
17168
16715
|
"status": {
|
|
@@ -17197,9 +16744,7 @@
|
|
|
17197
16744
|
},
|
|
17198
16745
|
"Participants": {
|
|
17199
16746
|
"title": "Participants",
|
|
17200
|
-
"required": [
|
|
17201
|
-
"556593077171-1620997998@g.us"
|
|
17202
|
-
],
|
|
16747
|
+
"required": ["556593077171-1620997998@g.us"],
|
|
17203
16748
|
"type": "object",
|
|
17204
16749
|
"properties": {
|
|
17205
16750
|
"556593077171-1620997998@g.us": {
|
|
@@ -17220,9 +16765,7 @@
|
|
|
17220
16765
|
},
|
|
17221
16766
|
"5565930771711620997998GU": {
|
|
17222
16767
|
"title": "5565930771711620997998GU",
|
|
17223
|
-
"required": [
|
|
17224
|
-
"id"
|
|
17225
|
-
],
|
|
16768
|
+
"required": ["id"],
|
|
17226
16769
|
"type": "object",
|
|
17227
16770
|
"properties": {
|
|
17228
16771
|
"id": {
|
|
@@ -17235,9 +16778,7 @@
|
|
|
17235
16778
|
},
|
|
17236
16779
|
"Group1": {
|
|
17237
16780
|
"title": "Group1",
|
|
17238
|
-
"required": [
|
|
17239
|
-
"id"
|
|
17240
|
-
],
|
|
16781
|
+
"required": ["id"],
|
|
17241
16782
|
"type": "object",
|
|
17242
16783
|
"properties": {
|
|
17243
16784
|
"id": {
|
|
@@ -17250,9 +16791,7 @@
|
|
|
17250
16791
|
},
|
|
17251
16792
|
"GetGroupInfoFromInviteLinkRequest": {
|
|
17252
16793
|
"title": "GetGroupInfoFromInviteLinkRequest",
|
|
17253
|
-
"required": [
|
|
17254
|
-
"invitecode"
|
|
17255
|
-
],
|
|
16794
|
+
"required": ["invitecode"],
|
|
17256
16795
|
"type": "object",
|
|
17257
16796
|
"properties": {
|
|
17258
16797
|
"invitecode": {
|
|
@@ -17265,10 +16804,7 @@
|
|
|
17265
16804
|
},
|
|
17266
16805
|
"PromoteParticipantCopy": {
|
|
17267
16806
|
"title": "PromoteParticipantCopy",
|
|
17268
|
-
"required": [
|
|
17269
|
-
"status",
|
|
17270
|
-
"response"
|
|
17271
|
-
],
|
|
16807
|
+
"required": ["status", "response"],
|
|
17272
16808
|
"type": "object",
|
|
17273
16809
|
"properties": {
|
|
17274
16810
|
"status": {
|
|
@@ -17402,11 +16938,7 @@
|
|
|
17402
16938
|
},
|
|
17403
16939
|
"Owner": {
|
|
17404
16940
|
"title": "Owner",
|
|
17405
|
-
"required": [
|
|
17406
|
-
"server",
|
|
17407
|
-
"user",
|
|
17408
|
-
"_serialized"
|
|
17409
|
-
],
|
|
16941
|
+
"required": ["server", "user", "_serialized"],
|
|
17410
16942
|
"type": "object",
|
|
17411
16943
|
"properties": {
|
|
17412
16944
|
"server": {
|
|
@@ -17427,11 +16959,7 @@
|
|
|
17427
16959
|
},
|
|
17428
16960
|
"Participants1": {
|
|
17429
16961
|
"title": "Participants1",
|
|
17430
|
-
"required": [
|
|
17431
|
-
"id",
|
|
17432
|
-
"isAdmin",
|
|
17433
|
-
"isSuperAdmin"
|
|
17434
|
-
],
|
|
16962
|
+
"required": ["id", "isAdmin", "isSuperAdmin"],
|
|
17435
16963
|
"type": "object",
|
|
17436
16964
|
"properties": {
|
|
17437
16965
|
"id": {
|
|
@@ -17456,11 +16984,7 @@
|
|
|
17456
16984
|
},
|
|
17457
16985
|
"SubjectOwner": {
|
|
17458
16986
|
"title": "SubjectOwner",
|
|
17459
|
-
"required": [
|
|
17460
|
-
"server",
|
|
17461
|
-
"user",
|
|
17462
|
-
"_serialized"
|
|
17463
|
-
],
|
|
16987
|
+
"required": ["server", "user", "_serialized"],
|
|
17464
16988
|
"type": "object",
|
|
17465
16989
|
"properties": {
|
|
17466
16990
|
"server": {
|
|
@@ -17481,10 +17005,7 @@
|
|
|
17481
17005
|
},
|
|
17482
17006
|
"GetGroupInviteLink": {
|
|
17483
17007
|
"title": "GetGroupInviteLink",
|
|
17484
|
-
"required": [
|
|
17485
|
-
"status",
|
|
17486
|
-
"response"
|
|
17487
|
-
],
|
|
17008
|
+
"required": ["status", "response"],
|
|
17488
17009
|
"type": "object",
|
|
17489
17010
|
"properties": {
|
|
17490
17011
|
"status": {
|
|
@@ -17501,10 +17022,7 @@
|
|
|
17501
17022
|
},
|
|
17502
17023
|
"GetGroupMembersIds": {
|
|
17503
17024
|
"title": "GetGroupMembersIds",
|
|
17504
|
-
"required": [
|
|
17505
|
-
"status",
|
|
17506
|
-
"response"
|
|
17507
|
-
],
|
|
17025
|
+
"required": ["status", "response"],
|
|
17508
17026
|
"type": "object",
|
|
17509
17027
|
"properties": {
|
|
17510
17028
|
"status": {
|
|
@@ -17536,11 +17054,7 @@
|
|
|
17536
17054
|
},
|
|
17537
17055
|
"Response18": {
|
|
17538
17056
|
"title": "Response18",
|
|
17539
|
-
"required": [
|
|
17540
|
-
"server",
|
|
17541
|
-
"user",
|
|
17542
|
-
"_serialized"
|
|
17543
|
-
],
|
|
17057
|
+
"required": ["server", "user", "_serialized"],
|
|
17544
17058
|
"type": "object",
|
|
17545
17059
|
"properties": {
|
|
17546
17060
|
"server": {
|
|
@@ -17561,10 +17075,7 @@
|
|
|
17561
17075
|
},
|
|
17562
17076
|
"GetGroupMembers": {
|
|
17563
17077
|
"title": "GetGroupMembers",
|
|
17564
|
-
"required": [
|
|
17565
|
-
"status",
|
|
17566
|
-
"response"
|
|
17567
|
-
],
|
|
17078
|
+
"required": ["status", "response"],
|
|
17568
17079
|
"type": "object",
|
|
17569
17080
|
"properties": {
|
|
17570
17081
|
"status": {
|
|
@@ -17755,9 +17266,7 @@
|
|
|
17755
17266
|
},
|
|
17756
17267
|
"LeaveGroupRequest": {
|
|
17757
17268
|
"title": "LeaveGroupRequest",
|
|
17758
|
-
"required": [
|
|
17759
|
-
"groupId"
|
|
17760
|
-
],
|
|
17269
|
+
"required": ["groupId"],
|
|
17761
17270
|
"type": "object",
|
|
17762
17271
|
"properties": {
|
|
17763
17272
|
"groupId": {
|
|
@@ -17770,11 +17279,7 @@
|
|
|
17770
17279
|
},
|
|
17771
17280
|
"LeaveGroup": {
|
|
17772
17281
|
"title": "LeaveGroup",
|
|
17773
|
-
"required": [
|
|
17774
|
-
"status",
|
|
17775
|
-
"messages",
|
|
17776
|
-
"group"
|
|
17777
|
-
],
|
|
17282
|
+
"required": ["status", "messages", "group"],
|
|
17778
17283
|
"type": "object",
|
|
17779
17284
|
"properties": {
|
|
17780
17285
|
"status": {
|
|
@@ -17795,10 +17300,7 @@
|
|
|
17795
17300
|
},
|
|
17796
17301
|
"RemoveParticipantRequest": {
|
|
17797
17302
|
"title": "RemoveParticipantRequest",
|
|
17798
|
-
"required": [
|
|
17799
|
-
"groupId",
|
|
17800
|
-
"phone"
|
|
17801
|
-
],
|
|
17303
|
+
"required": ["groupId", "phone"],
|
|
17802
17304
|
"type": "object",
|
|
17803
17305
|
"properties": {
|
|
17804
17306
|
"groupId": {
|
|
@@ -17815,10 +17317,7 @@
|
|
|
17815
17317
|
},
|
|
17816
17318
|
"SetGroupDescriptionRequest": {
|
|
17817
17319
|
"title": "SetGroupDescriptionRequest",
|
|
17818
|
-
"required": [
|
|
17819
|
-
"groupId",
|
|
17820
|
-
"description"
|
|
17821
|
-
],
|
|
17320
|
+
"required": ["groupId", "description"],
|
|
17822
17321
|
"type": "object",
|
|
17823
17322
|
"properties": {
|
|
17824
17323
|
"groupId": {
|
|
@@ -17835,10 +17334,7 @@
|
|
|
17835
17334
|
},
|
|
17836
17335
|
"SetGroupDescription": {
|
|
17837
17336
|
"title": "SetGroupDescription",
|
|
17838
|
-
"required": [
|
|
17839
|
-
"status",
|
|
17840
|
-
"response"
|
|
17841
|
-
],
|
|
17337
|
+
"required": ["status", "response"],
|
|
17842
17338
|
"type": "object",
|
|
17843
17339
|
"properties": {
|
|
17844
17340
|
"status": {
|
|
@@ -17855,11 +17351,7 @@
|
|
|
17855
17351
|
},
|
|
17856
17352
|
"SetGroupPropertyRequest": {
|
|
17857
17353
|
"title": "SetGroupPropertyRequest",
|
|
17858
|
-
"required": [
|
|
17859
|
-
"groupId",
|
|
17860
|
-
"property",
|
|
17861
|
-
"value"
|
|
17862
|
-
],
|
|
17354
|
+
"required": ["groupId", "property", "value"],
|
|
17863
17355
|
"type": "object",
|
|
17864
17356
|
"properties": {
|
|
17865
17357
|
"groupId": {
|
|
@@ -17880,10 +17372,7 @@
|
|
|
17880
17372
|
},
|
|
17881
17373
|
"SetGroupProperty": {
|
|
17882
17374
|
"title": "SetGroupProperty",
|
|
17883
|
-
"required": [
|
|
17884
|
-
"status",
|
|
17885
|
-
"response"
|
|
17886
|
-
],
|
|
17375
|
+
"required": ["status", "response"],
|
|
17887
17376
|
"type": "object",
|
|
17888
17377
|
"properties": {
|
|
17889
17378
|
"status": {
|
|
@@ -17900,10 +17389,7 @@
|
|
|
17900
17389
|
},
|
|
17901
17390
|
"SetGroupSubjectRequest": {
|
|
17902
17391
|
"title": "SetGroupSubjectRequest",
|
|
17903
|
-
"required": [
|
|
17904
|
-
"groupId",
|
|
17905
|
-
"title"
|
|
17906
|
-
],
|
|
17392
|
+
"required": ["groupId", "title"],
|
|
17907
17393
|
"type": "object",
|
|
17908
17394
|
"properties": {
|
|
17909
17395
|
"groupId": {
|
|
@@ -17920,10 +17406,7 @@
|
|
|
17920
17406
|
},
|
|
17921
17407
|
"SetGroupSubject": {
|
|
17922
17408
|
"title": "SetGroupSubject",
|
|
17923
|
-
"required": [
|
|
17924
|
-
"status",
|
|
17925
|
-
"response"
|
|
17926
|
-
],
|
|
17409
|
+
"required": ["status", "response"],
|
|
17927
17410
|
"type": "object",
|
|
17928
17411
|
"properties": {
|
|
17929
17412
|
"status": {
|
|
@@ -17940,10 +17423,7 @@
|
|
|
17940
17423
|
},
|
|
17941
17424
|
"SetMessagesAdminsOnlyRequest": {
|
|
17942
17425
|
"title": "SetMessagesAdminsOnlyRequest",
|
|
17943
|
-
"required": [
|
|
17944
|
-
"groupId",
|
|
17945
|
-
"value"
|
|
17946
|
-
],
|
|
17426
|
+
"required": ["groupId", "value"],
|
|
17947
17427
|
"type": "object",
|
|
17948
17428
|
"properties": {
|
|
17949
17429
|
"groupId": {
|
|
@@ -17960,10 +17440,7 @@
|
|
|
17960
17440
|
},
|
|
17961
17441
|
"SetMessagesAdminsOnly": {
|
|
17962
17442
|
"title": "SetMessagesAdminsOnly",
|
|
17963
|
-
"required": [
|
|
17964
|
-
"status",
|
|
17965
|
-
"response"
|
|
17966
|
-
],
|
|
17443
|
+
"required": ["status", "response"],
|
|
17967
17444
|
"type": "object",
|
|
17968
17445
|
"properties": {
|
|
17969
17446
|
"status": {
|
|
@@ -17980,11 +17457,7 @@
|
|
|
17980
17457
|
},
|
|
17981
17458
|
"BatterystatusCopy": {
|
|
17982
17459
|
"title": "BatterystatusCopy",
|
|
17983
|
-
"required": [
|
|
17984
|
-
"connected",
|
|
17985
|
-
"locales",
|
|
17986
|
-
"pushname"
|
|
17987
|
-
],
|
|
17460
|
+
"required": ["connected", "locales", "pushname"],
|
|
17988
17461
|
"type": "object",
|
|
17989
17462
|
"properties": {
|
|
17990
17463
|
"connected": {
|
|
@@ -18005,9 +17478,7 @@
|
|
|
18005
17478
|
},
|
|
18006
17479
|
"BlockcontactRequest": {
|
|
18007
17480
|
"title": "BlockcontactRequest",
|
|
18008
|
-
"required": [
|
|
18009
|
-
"phone"
|
|
18010
|
-
],
|
|
17481
|
+
"required": ["phone"],
|
|
18011
17482
|
"type": "object",
|
|
18012
17483
|
"properties": {
|
|
18013
17484
|
"phone": {
|
|
@@ -18020,10 +17491,7 @@
|
|
|
18020
17491
|
},
|
|
18021
17492
|
"Blockcontact": {
|
|
18022
17493
|
"title": "Blockcontact",
|
|
18023
|
-
"required": [
|
|
18024
|
-
"status",
|
|
18025
|
-
"message"
|
|
18026
|
-
],
|
|
17494
|
+
"required": ["status", "message"],
|
|
18027
17495
|
"type": "object",
|
|
18028
17496
|
"properties": {
|
|
18029
17497
|
"status": {
|
|
@@ -18040,9 +17508,7 @@
|
|
|
18040
17508
|
},
|
|
18041
17509
|
"UnBlockcontactRequest": {
|
|
18042
17510
|
"title": "UnBlockcontactRequest",
|
|
18043
|
-
"required": [
|
|
18044
|
-
"phone"
|
|
18045
|
-
],
|
|
17511
|
+
"required": ["phone"],
|
|
18046
17512
|
"type": "object",
|
|
18047
17513
|
"properties": {
|
|
18048
17514
|
"phone": {
|
|
@@ -18055,10 +17521,7 @@
|
|
|
18055
17521
|
},
|
|
18056
17522
|
"UnBlockcontact": {
|
|
18057
17523
|
"title": "UnBlockcontact",
|
|
18058
|
-
"required": [
|
|
18059
|
-
"status",
|
|
18060
|
-
"message"
|
|
18061
|
-
],
|
|
17524
|
+
"required": ["status", "message"],
|
|
18062
17525
|
"type": "object",
|
|
18063
17526
|
"properties": {
|
|
18064
17527
|
"status": {
|
|
@@ -18075,10 +17538,7 @@
|
|
|
18075
17538
|
},
|
|
18076
17539
|
"Blocklist": {
|
|
18077
17540
|
"title": "Blocklist",
|
|
18078
|
-
"required": [
|
|
18079
|
-
"status",
|
|
18080
|
-
"response"
|
|
18081
|
-
],
|
|
17541
|
+
"required": ["status", "response"],
|
|
18082
17542
|
"type": "object",
|
|
18083
17543
|
"properties": {
|
|
18084
17544
|
"status": {
|
|
@@ -18103,9 +17563,7 @@
|
|
|
18103
17563
|
},
|
|
18104
17564
|
"Response20": {
|
|
18105
17565
|
"title": "Response20",
|
|
18106
|
-
"required": [
|
|
18107
|
-
"phone"
|
|
18108
|
-
],
|
|
17566
|
+
"required": ["phone"],
|
|
18109
17567
|
"type": "object",
|
|
18110
17568
|
"properties": {
|
|
18111
17569
|
"phone": {
|