gifted-baileys 1.5.5 → 1.5.7

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.
Files changed (251) hide show
  1. package/README.md +6 -1642
  2. package/WAProto/WAProto.proto +969 -88
  3. package/WAProto/index.d.ts +13199 -1260
  4. package/WAProto/index.js +124901 -74525
  5. package/lib/Defaults/baileys-version.json +3 -0
  6. package/lib/Defaults/index.d.ts +284 -0
  7. package/{src → lib}/Defaults/index.js +7 -14
  8. package/lib/Signal/libsignal.d.ts +3 -0
  9. package/lib/Signal/libsignal.js +161 -0
  10. package/lib/Socket/Client/abstract-socket-client.d.ts +15 -0
  11. package/lib/Socket/Client/index.d.ts +2 -0
  12. package/{src → lib}/Socket/Client/index.js +2 -3
  13. package/lib/Socket/Client/mobile-socket-client.d.ts +12 -0
  14. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  15. package/lib/Socket/Client/types.d.ts +17 -0
  16. package/lib/Socket/Client/types.js +13 -0
  17. package/lib/Socket/Client/websocket.d.ts +12 -0
  18. package/lib/Socket/Client/websocket.js +62 -0
  19. package/lib/Socket/business.d.ts +170 -0
  20. package/{src → lib}/Socket/business.js +28 -33
  21. package/lib/Socket/chats.d.ts +81 -0
  22. package/{src → lib}/Socket/chats.js +174 -176
  23. package/lib/Socket/groups.d.ts +115 -0
  24. package/{src → lib}/Socket/groups.js +80 -68
  25. package/lib/Socket/index.d.ts +172 -0
  26. package/{src → lib}/Socket/index.js +4 -1
  27. package/lib/Socket/messages-recv.d.ts +158 -0
  28. package/{src → lib}/Socket/messages-recv.js +378 -211
  29. package/lib/Socket/messages-send.d.ts +155 -0
  30. package/{src → lib}/Socket/messages-send.js +452 -177
  31. package/lib/Socket/newsletter.d.ts +132 -0
  32. package/{src → lib}/Socket/newsletter.js +107 -98
  33. package/lib/Socket/registration.d.ts +264 -0
  34. package/{src → lib}/Socket/registration.js +56 -48
  35. package/lib/Socket/socket.d.ts +44 -0
  36. package/{src → lib}/Socket/socket.js +77 -77
  37. package/lib/Socket/usync.d.ts +37 -0
  38. package/lib/Socket/usync.js +70 -0
  39. package/lib/Store/index.d.ts +3 -0
  40. package/lib/Store/make-cache-manager-store.d.ts +14 -0
  41. package/{src → lib}/Store/make-cache-manager-store.js +25 -34
  42. package/lib/Store/make-in-memory-store.d.ts +118 -0
  43. package/{src → lib}/Store/make-in-memory-store.js +36 -32
  44. package/lib/Store/make-ordered-dictionary.d.ts +13 -0
  45. package/lib/Store/object-repository.d.ts +10 -0
  46. package/{src → lib}/Store/object-repository.js +1 -1
  47. package/lib/Types/Auth.d.ts +109 -0
  48. package/lib/Types/Call.d.ts +13 -0
  49. package/lib/Types/Chat.d.ts +107 -0
  50. package/{src/Types/Contact.ts → lib/Types/Contact.d.ts} +8 -9
  51. package/lib/Types/Events.d.ts +172 -0
  52. package/lib/Types/GroupMetadata.d.ts +56 -0
  53. package/lib/Types/Label.d.ts +46 -0
  54. package/{src/Types/LabelAssociation.ts → lib/Types/LabelAssociation.d.ts} +16 -22
  55. package/lib/Types/Message.d.ts +433 -0
  56. package/lib/Types/Newsletter.d.ts +92 -0
  57. package/lib/Types/Product.d.ts +78 -0
  58. package/lib/Types/Signal.d.ts +57 -0
  59. package/{src/Types/Socket.ts → lib/Types/Socket.d.ts} +61 -68
  60. package/lib/Types/State.d.ts +27 -0
  61. package/lib/Types/USync.d.ts +25 -0
  62. package/lib/Types/index.d.ts +66 -0
  63. package/lib/Utils/auth-utils.d.ts +18 -0
  64. package/{src → lib}/Utils/auth-utils.js +73 -90
  65. package/lib/Utils/baileys-event-stream.d.ts +16 -0
  66. package/lib/Utils/baileys-event-stream.js +63 -0
  67. package/lib/Utils/business.d.ts +22 -0
  68. package/{src → lib}/Utils/business.js +15 -43
  69. package/lib/Utils/chat-utils.d.ts +70 -0
  70. package/{src → lib}/Utils/chat-utils.js +87 -94
  71. package/lib/Utils/crypto.d.ts +40 -0
  72. package/{src → lib}/Utils/crypto.js +4 -2
  73. package/lib/Utils/decode-wa-message.d.ts +36 -0
  74. package/lib/Utils/decode-wa-message.js +226 -0
  75. package/lib/Utils/event-buffer.d.ts +35 -0
  76. package/{src → lib}/Utils/event-buffer.js +4 -13
  77. package/lib/Utils/generics.d.ts +88 -0
  78. package/{src → lib}/Utils/generics.js +67 -86
  79. package/lib/Utils/history.d.ts +19 -0
  80. package/{src → lib}/Utils/history.js +13 -39
  81. package/lib/Utils/index.d.ts +17 -0
  82. package/lib/Utils/link-preview.d.ts +21 -0
  83. package/{src → lib}/Utils/link-preview.js +17 -54
  84. package/lib/Utils/logger.d.ts +2 -0
  85. package/lib/Utils/lt-hash.d.ts +12 -0
  86. package/lib/Utils/make-mutex.d.ts +7 -0
  87. package/{src → lib}/Utils/make-mutex.js +4 -13
  88. package/lib/Utils/messages-media.d.ts +113 -0
  89. package/{src → lib}/Utils/messages-media.js +193 -255
  90. package/lib/Utils/messages.d.ts +77 -0
  91. package/{src → lib}/Utils/messages.js +588 -118
  92. package/lib/Utils/noise-handler.d.ts +20 -0
  93. package/lib/Utils/process-message.d.ts +41 -0
  94. package/{src → lib}/Utils/process-message.js +27 -30
  95. package/lib/Utils/signal.d.ts +33 -0
  96. package/{src → lib}/Utils/signal.js +25 -42
  97. package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
  98. package/{src → lib}/Utils/use-multi-file-auth-state.js +27 -28
  99. package/lib/Utils/validate-connection.d.ts +11 -0
  100. package/{src → lib}/Utils/validate-connection.js +40 -9
  101. package/lib/WABinary/constants.d.ts +27 -0
  102. package/lib/WABinary/decode.d.ts +6 -0
  103. package/lib/WABinary/encode.d.ts +2 -0
  104. package/{src → lib}/WABinary/encode.js +16 -10
  105. package/lib/WABinary/generic-utils.d.ts +14 -0
  106. package/lib/WABinary/index.d.ts +5 -0
  107. package/lib/WABinary/jid-utils.d.ts +31 -0
  108. package/lib/WABinary/types.d.ts +18 -0
  109. package/lib/WABinary/types.js +2 -0
  110. package/lib/WAM/BinaryInfo.d.ts +8 -0
  111. package/lib/WAM/constants.d.ts +38 -0
  112. package/lib/WAM/encode.d.ts +2 -0
  113. package/lib/WAM/index.d.ts +3 -0
  114. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
  115. package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
  116. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
  117. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
  118. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
  119. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
  120. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
  121. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
  122. package/lib/WAUSync/Protocols/index.d.ts +4 -0
  123. package/lib/WAUSync/Protocols/index.js +20 -0
  124. package/lib/WAUSync/USyncQuery.d.ts +26 -0
  125. package/lib/WAUSync/USyncQuery.js +79 -0
  126. package/lib/WAUSync/USyncUser.d.ts +10 -0
  127. package/lib/WAUSync/USyncUser.js +22 -0
  128. package/lib/WAUSync/index.d.ts +3 -0
  129. package/lib/WAUSync/index.js +19 -0
  130. package/{src → lib}/index.js +1 -0
  131. package/package.json +26 -8
  132. package/LICENSE +0 -21
  133. package/src/Defaults/baileys-version.json +0 -3
  134. package/src/Defaults/index.ts +0 -131
  135. package/src/Signal/libsignal.js +0 -180
  136. package/src/Signal/libsignal.ts +0 -141
  137. package/src/Socket/Client/abstract-socket-client.ts +0 -19
  138. package/src/Socket/Client/index.ts +0 -3
  139. package/src/Socket/Client/mobile-socket-client.js +0 -78
  140. package/src/Socket/Client/mobile-socket-client.ts +0 -66
  141. package/src/Socket/Client/web-socket-client.js +0 -75
  142. package/src/Socket/Client/web-socket-client.ts +0 -57
  143. package/src/Socket/business.ts +0 -281
  144. package/src/Socket/chats.ts +0 -1030
  145. package/src/Socket/groups.ts +0 -356
  146. package/src/Socket/index.ts +0 -13
  147. package/src/Socket/messages-recv.ts +0 -985
  148. package/src/Socket/messages-send.ts +0 -871
  149. package/src/Socket/newsletter.ts +0 -282
  150. package/src/Socket/registration.ts +0 -250
  151. package/src/Socket/socket.ts +0 -777
  152. package/src/Store/index.ts +0 -3
  153. package/src/Store/make-cache-manager-store.ts +0 -100
  154. package/src/Store/make-in-memory-store.ts +0 -475
  155. package/src/Store/make-ordered-dictionary.ts +0 -86
  156. package/src/Store/object-repository.ts +0 -32
  157. package/src/Tests/test.app-state-sync.js +0 -204
  158. package/src/Tests/test.app-state-sync.ts +0 -207
  159. package/src/Tests/test.event-buffer.js +0 -270
  160. package/src/Tests/test.event-buffer.ts +0 -319
  161. package/src/Tests/test.key-store.js +0 -76
  162. package/src/Tests/test.key-store.ts +0 -92
  163. package/src/Tests/test.libsignal.js +0 -141
  164. package/src/Tests/test.libsignal.ts +0 -186
  165. package/src/Tests/test.media-download.js +0 -93
  166. package/src/Tests/test.media-download.ts +0 -76
  167. package/src/Tests/test.messages.js +0 -33
  168. package/src/Tests/test.messages.ts +0 -37
  169. package/src/Tests/utils.js +0 -34
  170. package/src/Tests/utils.ts +0 -36
  171. package/src/Types/Auth.ts +0 -113
  172. package/src/Types/Call.ts +0 -15
  173. package/src/Types/Chat.ts +0 -106
  174. package/src/Types/Events.ts +0 -93
  175. package/src/Types/GroupMetadata.ts +0 -53
  176. package/src/Types/Label.ts +0 -36
  177. package/src/Types/Message.ts +0 -288
  178. package/src/Types/Newsletter.ts +0 -98
  179. package/src/Types/Product.ts +0 -85
  180. package/src/Types/Signal.ts +0 -68
  181. package/src/Types/State.ts +0 -29
  182. package/src/Types/index.ts +0 -59
  183. package/src/Utils/auth-utils.ts +0 -222
  184. package/src/Utils/baileys-event-stream.js +0 -92
  185. package/src/Utils/baileys-event-stream.ts +0 -66
  186. package/src/Utils/business.ts +0 -275
  187. package/src/Utils/chat-utils.ts +0 -860
  188. package/src/Utils/crypto.ts +0 -131
  189. package/src/Utils/decode-wa-message.js +0 -211
  190. package/src/Utils/decode-wa-message.ts +0 -228
  191. package/src/Utils/event-buffer.ts +0 -613
  192. package/src/Utils/generics.ts +0 -434
  193. package/src/Utils/history.ts +0 -112
  194. package/src/Utils/index.ts +0 -17
  195. package/src/Utils/link-preview.ts +0 -122
  196. package/src/Utils/logger.ts +0 -3
  197. package/src/Utils/lt-hash.ts +0 -61
  198. package/src/Utils/make-mutex.ts +0 -44
  199. package/src/Utils/messages-media.ts +0 -847
  200. package/src/Utils/messages.ts +0 -956
  201. package/src/Utils/noise-handler.ts +0 -197
  202. package/src/Utils/process-message.ts +0 -414
  203. package/src/Utils/signal.ts +0 -177
  204. package/src/Utils/use-multi-file-auth-state.ts +0 -90
  205. package/src/Utils/validate-connection.ts +0 -238
  206. package/src/WABinary/constants.ts +0 -42
  207. package/src/WABinary/decode.ts +0 -265
  208. package/src/WABinary/encode.ts +0 -236
  209. package/src/WABinary/generic-utils.ts +0 -121
  210. package/src/WABinary/index.ts +0 -5
  211. package/src/WABinary/jid-utils.ts +0 -68
  212. package/src/WABinary/types.ts +0 -17
  213. package/src/WAM/BinaryInfo.ts +0 -12
  214. package/src/WAM/constants.ts +0 -15382
  215. package/src/WAM/encode.ts +0 -174
  216. package/src/WAM/index.ts +0 -3
  217. package/src/gifted +0 -1
  218. package/src/index.ts +0 -13
  219. /package/{src → lib}/Defaults/phonenumber-mcc.json +0 -0
  220. /package/{src → lib}/Socket/Client/abstract-socket-client.js +0 -0
  221. /package/{src → lib}/Store/index.js +0 -0
  222. /package/{src → lib}/Store/make-ordered-dictionary.js +0 -0
  223. /package/{src → lib}/Types/Auth.js +0 -0
  224. /package/{src → lib}/Types/Call.js +0 -0
  225. /package/{src → lib}/Types/Chat.js +0 -0
  226. /package/{src → lib}/Types/Contact.js +0 -0
  227. /package/{src → lib}/Types/Events.js +0 -0
  228. /package/{src → lib}/Types/GroupMetadata.js +0 -0
  229. /package/{src → lib}/Types/Label.js +0 -0
  230. /package/{src → lib}/Types/LabelAssociation.js +0 -0
  231. /package/{src → lib}/Types/Message.js +0 -0
  232. /package/{src → lib}/Types/Newsletter.js +0 -0
  233. /package/{src → lib}/Types/Product.js +0 -0
  234. /package/{src → lib}/Types/Signal.js +0 -0
  235. /package/{src → lib}/Types/Socket.js +0 -0
  236. /package/{src → lib}/Types/State.js +0 -0
  237. /package/{src/WABinary/types.js → lib/Types/USync.js} +0 -0
  238. /package/{src → lib}/Types/index.js +0 -0
  239. /package/{src → lib}/Utils/index.js +0 -0
  240. /package/{src → lib}/Utils/logger.js +0 -0
  241. /package/{src → lib}/Utils/lt-hash.js +0 -0
  242. /package/{src → lib}/Utils/noise-handler.js +0 -0
  243. /package/{src → lib}/WABinary/constants.js +0 -0
  244. /package/{src → lib}/WABinary/decode.js +0 -0
  245. /package/{src → lib}/WABinary/generic-utils.js +0 -0
  246. /package/{src → lib}/WABinary/index.js +0 -0
  247. /package/{src → lib}/WABinary/jid-utils.js +0 -0
  248. /package/{src → lib}/WAM/BinaryInfo.js +0 -0
  249. /package/{src → lib}/WAM/constants.js +0 -0
  250. /package/{src → lib}/WAM/encode.js +0 -0
  251. /package/{src → lib}/WAM/index.js +0 -0
@@ -0,0 +1,172 @@
1
+ import type { Boom } from '@hapi/boom';
2
+ import { proto } from '../../WAProto';
3
+ import { AuthenticationCreds } from './Auth';
4
+ import { WACallEvent } from './Call';
5
+ import { Chat, ChatUpdate, PresenceData } from './Chat';
6
+ import { Contact } from './Contact';
7
+ import { GroupMetadata, ParticipantAction, RequestJoinAction, RequestJoinMethod } from './GroupMetadata';
8
+ import { Label } from './Label';
9
+ import { LabelAssociation } from './LabelAssociation';
10
+ import { MessageUpsertType, MessageUserReceiptUpdate, WAMessage, WAMessageKey, WAMessageUpdate } from './Message';
11
+ import { ConnectionState } from './State';
12
+ export type BaileysEventMap = {
13
+ /** connection state has been updated -- WS closed, opened, connecting etc. */
14
+ 'connection.update': Partial<ConnectionState>;
15
+ /** credentials updated -- some metadata, keys or something */
16
+ 'creds.update': Partial<AuthenticationCreds>;
17
+ /** set chats (history sync), everything is reverse chronologically sorted */
18
+ 'messaging-history.set': {
19
+ chats: Chat[];
20
+ contacts: Contact[];
21
+ messages: WAMessage[];
22
+ isLatest?: boolean;
23
+ progress?: number | null;
24
+ syncType?: proto.HistorySync.HistorySyncType;
25
+ peerDataRequestSessionId?: string | null;
26
+ };
27
+ /** upsert chats */
28
+ 'chats.upsert': Chat[];
29
+ /** update the given chats */
30
+ 'chats.update': ChatUpdate[];
31
+ 'chats.phoneNumberShare': {
32
+ lid: string;
33
+ jid: string;
34
+ };
35
+ /** delete chats with given ID */
36
+ 'chats.delete': string[];
37
+ /** presence of contact in a chat updated */
38
+ 'presence.update': {
39
+ id: string;
40
+ presences: {
41
+ [participant: string]: PresenceData;
42
+ };
43
+ };
44
+ 'contacts.upsert': Contact[];
45
+ 'contacts.update': Partial<Contact>[];
46
+ 'messages.delete': {
47
+ keys: WAMessageKey[];
48
+ } | {
49
+ jid: string;
50
+ all: true;
51
+ };
52
+ 'messages.update': WAMessageUpdate[];
53
+ 'messages.media-update': {
54
+ key: WAMessageKey;
55
+ media?: {
56
+ ciphertext: Uint8Array;
57
+ iv: Uint8Array;
58
+ };
59
+ error?: Boom;
60
+ }[];
61
+ /**
62
+ * add/update the given messages. If they were received while the connection was online,
63
+ * the update will have type: "notify"
64
+ * if requestId is provided, then the messages was received from the phone due to it being unavailable
65
+ * */
66
+ 'messages.upsert': {
67
+ messages: WAMessage[];
68
+ type: MessageUpsertType;
69
+ requestId?: string;
70
+ };
71
+ /** message was reacted to. If reaction was removed -- then "reaction.text" will be falsey */
72
+ 'messages.reaction': {
73
+ key: WAMessageKey;
74
+ reaction: proto.IReaction;
75
+ }[];
76
+ 'message-receipt.update': MessageUserReceiptUpdate[];
77
+ 'groups.upsert': GroupMetadata[];
78
+ 'groups.update': Partial<GroupMetadata>[];
79
+ /** apply an action to participants in a group */
80
+ 'group-participants.update': {
81
+ id: string;
82
+ author: string;
83
+ participants: string[];
84
+ action: ParticipantAction;
85
+ };
86
+ 'group.join-request': {
87
+ id: string;
88
+ author: string;
89
+ participant: string;
90
+ action: RequestJoinAction;
91
+ method: RequestJoinMethod;
92
+ };
93
+ 'blocklist.set': {
94
+ blocklist: string[];
95
+ };
96
+ 'blocklist.update': {
97
+ blocklist: string[];
98
+ type: 'add' | 'remove';
99
+ };
100
+ /** Receive an update on a call, including when the call was received, rejected, accepted */
101
+ 'call': WACallEvent[];
102
+ 'labels.edit': Label;
103
+ 'labels.association': {
104
+ association: LabelAssociation;
105
+ type: 'add' | 'remove';
106
+ };
107
+ };
108
+ export type BufferedEventData = {
109
+ historySets: {
110
+ chats: {
111
+ [jid: string]: Chat;
112
+ };
113
+ contacts: {
114
+ [jid: string]: Contact;
115
+ };
116
+ messages: {
117
+ [uqId: string]: WAMessage;
118
+ };
119
+ empty: boolean;
120
+ isLatest: boolean;
121
+ progress?: number | null;
122
+ syncType?: proto.HistorySync.HistorySyncType;
123
+ peerDataRequestSessionId?: string;
124
+ };
125
+ chatUpserts: {
126
+ [jid: string]: Chat;
127
+ };
128
+ chatUpdates: {
129
+ [jid: string]: ChatUpdate;
130
+ };
131
+ chatDeletes: Set<string>;
132
+ contactUpserts: {
133
+ [jid: string]: Contact;
134
+ };
135
+ contactUpdates: {
136
+ [jid: string]: Partial<Contact>;
137
+ };
138
+ messageUpserts: {
139
+ [key: string]: {
140
+ type: MessageUpsertType;
141
+ message: WAMessage;
142
+ };
143
+ };
144
+ messageUpdates: {
145
+ [key: string]: WAMessageUpdate;
146
+ };
147
+ messageDeletes: {
148
+ [key: string]: WAMessageKey;
149
+ };
150
+ messageReactions: {
151
+ [key: string]: {
152
+ key: WAMessageKey;
153
+ reactions: proto.IReaction[];
154
+ };
155
+ };
156
+ messageReceipts: {
157
+ [key: string]: {
158
+ key: WAMessageKey;
159
+ userReceipt: proto.IUserReceipt[];
160
+ };
161
+ };
162
+ groupUpdates: {
163
+ [jid: string]: Partial<GroupMetadata>;
164
+ };
165
+ };
166
+ export type BaileysEvent = keyof BaileysEventMap;
167
+ export interface BaileysEventEmitter {
168
+ on<T extends keyof BaileysEventMap>(event: T, listener: (arg: BaileysEventMap[T]) => void): void;
169
+ off<T extends keyof BaileysEventMap>(event: T, listener: (arg: BaileysEventMap[T]) => void): void;
170
+ removeAllListeners<T extends keyof BaileysEventMap>(event: T): void;
171
+ emit<T extends keyof BaileysEventMap>(event: T, arg: BaileysEventMap[T]): boolean;
172
+ }
@@ -0,0 +1,56 @@
1
+ import { Contact } from './Contact';
2
+ export type GroupParticipant = (Contact & {
3
+ isAdmin?: boolean;
4
+ isSuperAdmin?: boolean;
5
+ admin?: 'admin' | 'superadmin' | null;
6
+ });
7
+ export type ParticipantAction = 'add' | 'remove' | 'promote' | 'demote' | 'modify';
8
+ export type RequestJoinAction = 'created' | 'revoked' | 'rejected';
9
+ export type RequestJoinMethod = 'invite_link' | 'linked_group_join' | 'non_admin_add' | undefined;
10
+ export interface GroupMetadata {
11
+ id: string;
12
+ owner: string | undefined;
13
+ subject: string;
14
+ /** group subject owner */
15
+ subjectOwner?: string;
16
+ /** group subject modification date */
17
+ subjectTime?: number;
18
+ creation?: number;
19
+ desc?: string;
20
+ descOwner?: string;
21
+ descId?: string;
22
+ /** if this group is part of a community, it returns the jid of the community to which it belongs */
23
+ linkedParent?: string;
24
+ /** is set when the group only allows admins to change group settings */
25
+ restrict?: boolean;
26
+ /** is set when the group only allows admins to write messages */
27
+ announce?: boolean;
28
+ /** is set when the group also allows members to add participants */
29
+ memberAddMode?: boolean;
30
+ /** Request approval to join the group */
31
+ joinApprovalMode?: boolean;
32
+ /** is this a community */
33
+ isCommunity?: boolean;
34
+ /** is this the announce of a community */
35
+ isCommunityAnnounce?: boolean;
36
+ /** number of group participants */
37
+ size?: number;
38
+ participants: GroupParticipant[];
39
+ ephemeralDuration?: number;
40
+ inviteCode?: string;
41
+ /** the person who added you to group or changed some setting in group */
42
+ author?: string;
43
+ }
44
+ export interface WAGroupCreateResponse {
45
+ status: number;
46
+ gid?: string;
47
+ participants?: [{
48
+ [key: string]: {};
49
+ }];
50
+ }
51
+ export interface GroupModificationResponse {
52
+ status: number;
53
+ participants?: {
54
+ [key: string]: {};
55
+ };
56
+ }
@@ -0,0 +1,46 @@
1
+ export interface Label {
2
+ /** Label uniq ID */
3
+ id: string;
4
+ /** Label name */
5
+ name: string;
6
+ /** Label color ID */
7
+ color: number;
8
+ /** Is label has been deleted */
9
+ deleted: boolean;
10
+ /** WhatsApp has 5 predefined labels (New customer, New order & etc) */
11
+ predefinedId?: string;
12
+ }
13
+ export interface LabelActionBody {
14
+ id: string;
15
+ /** Label name */
16
+ name?: string;
17
+ /** Label color ID */
18
+ color?: number;
19
+ /** Is label has been deleted */
20
+ deleted?: boolean;
21
+ /** WhatsApp has 5 predefined labels (New customer, New order & etc) */
22
+ predefinedId?: number;
23
+ }
24
+ /** WhatsApp has 20 predefined colors */
25
+ export declare enum LabelColor {
26
+ Color1 = 0,
27
+ Color2 = 1,
28
+ Color3 = 2,
29
+ Color4 = 3,
30
+ Color5 = 4,
31
+ Color6 = 5,
32
+ Color7 = 6,
33
+ Color8 = 7,
34
+ Color9 = 8,
35
+ Color10 = 9,
36
+ Color11 = 10,
37
+ Color12 = 11,
38
+ Color13 = 12,
39
+ Color14 = 13,
40
+ Color15 = 14,
41
+ Color16 = 15,
42
+ Color17 = 16,
43
+ Color18 = 17,
44
+ Color19 = 18,
45
+ Color20 = 19
46
+ }
@@ -1,35 +1,29 @@
1
1
  /** Association type */
2
- export enum LabelAssociationType {
3
- Chat = 'label_jid',
4
- Message = 'label_message'
2
+ export declare enum LabelAssociationType {
3
+ Chat = "label_jid",
4
+ Message = "label_message"
5
5
  }
6
-
7
- export type LabelAssociationTypes = `${LabelAssociationType}`
8
-
6
+ export type LabelAssociationTypes = `${LabelAssociationType}`;
9
7
  /** Association for chat */
10
8
  export interface ChatLabelAssociation {
11
- type: LabelAssociationType.Chat
12
- chatId: string
13
- labelId: string
9
+ type: LabelAssociationType.Chat;
10
+ chatId: string;
11
+ labelId: string;
14
12
  }
15
-
16
13
  /** Association for message */
17
14
  export interface MessageLabelAssociation {
18
- type: LabelAssociationType.Message
19
- chatId: string
20
- messageId: string
21
- labelId: string
15
+ type: LabelAssociationType.Message;
16
+ chatId: string;
17
+ messageId: string;
18
+ labelId: string;
22
19
  }
23
-
24
- export type LabelAssociation = ChatLabelAssociation | MessageLabelAssociation
25
-
20
+ export type LabelAssociation = ChatLabelAssociation | MessageLabelAssociation;
26
21
  /** Body for add/remove chat label association action */
27
22
  export interface ChatLabelAssociationActionBody {
28
- labelId: string
23
+ labelId: string;
29
24
  }
30
-
31
25
  /** body for add/remove message label association action */
32
26
  export interface MessageLabelAssociationActionBody {
33
- labelId: string
34
- messageId: string
35
- }
27
+ labelId: string;
28
+ messageId: string;
29
+ }