@automate.ax/integration-contracts 0.55.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.
Files changed (136) hide show
  1. package/dist/airtable/api.d.ts +19 -0
  2. package/dist/airtable/api.js +44 -0
  3. package/dist/airtable/index.d.ts +353 -0
  4. package/dist/airtable/index.js +32 -0
  5. package/dist/airtable/schemas.d.ts +716 -0
  6. package/dist/airtable/schemas.js +184 -0
  7. package/dist/asana/api.d.ts +70 -0
  8. package/dist/asana/api.js +119 -0
  9. package/dist/asana/index.d.ts +384 -0
  10. package/dist/asana/index.js +38 -0
  11. package/dist/asana/schemas.d.ts +1060 -0
  12. package/dist/asana/schemas.js +512 -0
  13. package/dist/brevo/api.d.ts +31 -0
  14. package/dist/brevo/api.js +64 -0
  15. package/dist/brevo/index.d.ts +822 -0
  16. package/dist/brevo/index.js +51 -0
  17. package/dist/brevo/schemas.d.ts +1217 -0
  18. package/dist/brevo/schemas.js +332 -0
  19. package/dist/github/index.d.ts +37 -0
  20. package/dist/github/index.js +106 -0
  21. package/dist/github/schemas.d.ts +8014 -0
  22. package/dist/github/schemas.js +113 -0
  23. package/dist/gmail/gmail.d.ts +172 -0
  24. package/dist/gmail/gmail.js +405 -0
  25. package/dist/gmail/index.d.ts +262 -0
  26. package/dist/gmail/index.js +23 -0
  27. package/dist/gmail/schemas.d.ts +444 -0
  28. package/dist/gmail/schemas.js +242 -0
  29. package/dist/google-calendar/event-schemas.d.ts +117 -0
  30. package/dist/google-calendar/event-schemas.js +13 -0
  31. package/dist/google-calendar/google-calendar.d.ts +147 -0
  32. package/dist/google-calendar/google-calendar.js +583 -0
  33. package/dist/google-calendar/index.d.ts +365 -0
  34. package/dist/google-calendar/index.js +24 -0
  35. package/dist/google-calendar/schemas.d.ts +592 -0
  36. package/dist/google-calendar/schemas.js +379 -0
  37. package/dist/google-forms/event-schemas.d.ts +105 -0
  38. package/dist/google-forms/event-schemas.js +20 -0
  39. package/dist/google-forms/google-forms.d.ts +243 -0
  40. package/dist/google-forms/google-forms.js +581 -0
  41. package/dist/google-forms/index.d.ts +141 -0
  42. package/dist/google-forms/index.js +20 -0
  43. package/dist/google-forms/schemas.d.ts +618 -0
  44. package/dist/google-forms/schemas.js +383 -0
  45. package/dist/linear/api.d.ts +63 -0
  46. package/dist/linear/api.js +88 -0
  47. package/dist/linear/index.d.ts +1338 -0
  48. package/dist/linear/index.js +55 -0
  49. package/dist/linear/schemas.d.ts +1795 -0
  50. package/dist/linear/schemas.js +760 -0
  51. package/dist/outlook/graph.d.ts +34 -0
  52. package/dist/outlook/graph.js +98 -0
  53. package/dist/outlook/index.d.ts +115 -0
  54. package/dist/outlook/index.js +11 -0
  55. package/dist/outlook/schemas.d.ts +529 -0
  56. package/dist/outlook/schemas.js +312 -0
  57. package/dist/resend/index.d.ts +707 -0
  58. package/dist/resend/index.js +54 -0
  59. package/dist/resend/schemas.d.ts +1033 -0
  60. package/dist/resend/schemas.js +377 -0
  61. package/dist/slack/index.d.ts +151 -0
  62. package/dist/slack/index.js +22 -0
  63. package/dist/slack/schemas.d.ts +641 -0
  64. package/dist/slack/schemas.js +581 -0
  65. package/dist/teams/graph.d.ts +33 -0
  66. package/dist/teams/graph.js +95 -0
  67. package/dist/teams/index.d.ts +164 -0
  68. package/dist/teams/index.js +21 -0
  69. package/dist/teams/schemas.d.ts +675 -0
  70. package/dist/teams/schemas.js +365 -0
  71. package/dist/trello/api.d.ts +69 -0
  72. package/dist/trello/api.js +140 -0
  73. package/dist/trello/event-schemas.d.ts +1101 -0
  74. package/dist/trello/event-schemas.js +233 -0
  75. package/dist/trello/index.d.ts +721 -0
  76. package/dist/trello/index.js +35 -0
  77. package/dist/trello/schemas.d.ts +283 -0
  78. package/dist/trello/schemas.js +401 -0
  79. package/dist/triggers.d.ts +26 -0
  80. package/dist/triggers.js +33 -0
  81. package/dist/vercel/index.d.ts +1065 -0
  82. package/dist/vercel/index.js +114 -0
  83. package/dist/vercel/schemas.d.ts +1518 -0
  84. package/dist/vercel/schemas.js +335 -0
  85. package/dist/whatsapp/api.d.ts +62 -0
  86. package/dist/whatsapp/api.js +121 -0
  87. package/dist/whatsapp/index.d.ts +614 -0
  88. package/dist/whatsapp/index.js +35 -0
  89. package/dist/whatsapp/schemas.d.ts +926 -0
  90. package/dist/whatsapp/schemas.js +326 -0
  91. package/package.json +169 -0
  92. package/src/airtable/api.ts +66 -0
  93. package/src/airtable/index.ts +41 -0
  94. package/src/airtable/schemas.ts +231 -0
  95. package/src/asana/api.ts +171 -0
  96. package/src/asana/index.ts +49 -0
  97. package/src/asana/schemas.ts +655 -0
  98. package/src/brevo/api.ts +89 -0
  99. package/src/brevo/index.ts +66 -0
  100. package/src/brevo/schemas.ts +449 -0
  101. package/src/github/index.ts +217 -0
  102. package/src/github/schemas.ts +435 -0
  103. package/src/gmail/gmail.ts +577 -0
  104. package/src/gmail/index.ts +26 -0
  105. package/src/gmail/schemas.ts +327 -0
  106. package/src/google-calendar/event-schemas.ts +16 -0
  107. package/src/google-calendar/google-calendar.ts +727 -0
  108. package/src/google-calendar/index.ts +27 -0
  109. package/src/google-calendar/schemas.ts +529 -0
  110. package/src/google-forms/event-schemas.ts +26 -0
  111. package/src/google-forms/google-forms.ts +683 -0
  112. package/src/google-forms/index.ts +23 -0
  113. package/src/google-forms/schemas.ts +499 -0
  114. package/src/linear/api.ts +141 -0
  115. package/src/linear/index.ts +71 -0
  116. package/src/linear/schemas.ts +1060 -0
  117. package/src/outlook/graph.ts +132 -0
  118. package/src/outlook/index.ts +14 -0
  119. package/src/outlook/schemas.ts +388 -0
  120. package/src/resend/index.ts +70 -0
  121. package/src/resend/schemas.ts +462 -0
  122. package/src/slack/index.ts +29 -0
  123. package/src/slack/schemas.ts +737 -0
  124. package/src/teams/graph.ts +130 -0
  125. package/src/teams/index.ts +27 -0
  126. package/src/teams/schemas.ts +463 -0
  127. package/src/trello/api.ts +190 -0
  128. package/src/trello/event-schemas.ts +290 -0
  129. package/src/trello/index.ts +45 -0
  130. package/src/trello/schemas.ts +507 -0
  131. package/src/triggers.ts +68 -0
  132. package/src/vercel/index.ts +147 -0
  133. package/src/vercel/schemas.ts +594 -0
  134. package/src/whatsapp/api.ts +171 -0
  135. package/src/whatsapp/index.ts +46 -0
  136. package/src/whatsapp/schemas.ts +341 -0
@@ -0,0 +1,926 @@
1
+ import { z } from "zod";
2
+ /** Provider-native WhatsApp webhook envelope. */
3
+ export declare const WHATSAPP_WEBHOOK_SCHEMA: z.ZodObject<{
4
+ entry: z.ZodArray<z.ZodObject<{
5
+ changes: z.ZodArray<z.ZodObject<{
6
+ field: z.ZodLiteral<"messages">;
7
+ value: z.ZodObject<{
8
+ contacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
9
+ profile: z.ZodObject<{
10
+ name: z.ZodOptional<z.ZodString>;
11
+ }, z.core.$strip>;
12
+ wa_id: z.ZodString;
13
+ }, z.core.$strip>>>;
14
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
15
+ audio: z.ZodOptional<z.ZodObject<{
16
+ id: z.ZodString;
17
+ mime_type: z.ZodOptional<z.ZodString>;
18
+ }, z.core.$strip>>;
19
+ button: z.ZodOptional<z.ZodObject<{
20
+ payload: z.ZodString;
21
+ text: z.ZodString;
22
+ }, z.core.$strip>>;
23
+ contacts: z.ZodOptional<z.ZodArray<z.ZodJSONSchema>>;
24
+ context: z.ZodOptional<z.ZodObject<{
25
+ forwarded: z.ZodOptional<z.ZodBoolean>;
26
+ from: z.ZodOptional<z.ZodString>;
27
+ id: z.ZodString;
28
+ }, z.core.$strip>>;
29
+ document: z.ZodOptional<z.ZodObject<{
30
+ caption: z.ZodOptional<z.ZodString>;
31
+ filename: z.ZodOptional<z.ZodString>;
32
+ id: z.ZodString;
33
+ mime_type: z.ZodOptional<z.ZodString>;
34
+ }, z.core.$strip>>;
35
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
36
+ code: z.ZodNumber;
37
+ error_data: z.ZodOptional<z.ZodObject<{
38
+ details: z.ZodOptional<z.ZodString>;
39
+ messaging_product: z.ZodOptional<z.ZodString>;
40
+ }, z.core.$strip>>;
41
+ error_subcode: z.ZodOptional<z.ZodNumber>;
42
+ fbtrace_id: z.ZodOptional<z.ZodString>;
43
+ message: z.ZodString;
44
+ title: z.ZodOptional<z.ZodString>;
45
+ }, z.core.$strip>>>;
46
+ from: z.ZodString;
47
+ id: z.ZodString;
48
+ image: z.ZodOptional<z.ZodObject<{
49
+ caption: z.ZodOptional<z.ZodString>;
50
+ id: z.ZodString;
51
+ mime_type: z.ZodOptional<z.ZodString>;
52
+ }, z.core.$strip>>;
53
+ interactive: z.ZodOptional<z.ZodObject<{
54
+ button_reply: z.ZodOptional<z.ZodObject<{
55
+ id: z.ZodString;
56
+ title: z.ZodString;
57
+ }, z.core.$strip>>;
58
+ list_reply: z.ZodOptional<z.ZodObject<{
59
+ description: z.ZodOptional<z.ZodString>;
60
+ id: z.ZodString;
61
+ title: z.ZodString;
62
+ }, z.core.$strip>>;
63
+ type: z.ZodEnum<{
64
+ button_reply: "button_reply";
65
+ list_reply: "list_reply";
66
+ }>;
67
+ }, z.core.$strip>>;
68
+ location: z.ZodOptional<z.ZodObject<{
69
+ address: z.ZodOptional<z.ZodString>;
70
+ latitude: z.ZodNumber;
71
+ longitude: z.ZodNumber;
72
+ name: z.ZodOptional<z.ZodString>;
73
+ url: z.ZodOptional<z.ZodString>;
74
+ }, z.core.$strip>>;
75
+ order: z.ZodOptional<z.ZodJSONSchema>;
76
+ reaction: z.ZodOptional<z.ZodObject<{
77
+ emoji: z.ZodString;
78
+ message_id: z.ZodString;
79
+ }, z.core.$strip>>;
80
+ referral: z.ZodOptional<z.ZodJSONSchema>;
81
+ sticker: z.ZodOptional<z.ZodObject<{
82
+ id: z.ZodString;
83
+ mime_type: z.ZodOptional<z.ZodString>;
84
+ }, z.core.$strip>>;
85
+ system: z.ZodOptional<z.ZodJSONSchema>;
86
+ text: z.ZodOptional<z.ZodObject<{
87
+ body: z.ZodString;
88
+ }, z.core.$strip>>;
89
+ timestamp: z.ZodString;
90
+ type: z.ZodEnum<{
91
+ unknown: "unknown";
92
+ text: "text";
93
+ system: "system";
94
+ location: "location";
95
+ image: "image";
96
+ video: "video";
97
+ reaction: "reaction";
98
+ audio: "audio";
99
+ button: "button";
100
+ contacts: "contacts";
101
+ document: "document";
102
+ interactive: "interactive";
103
+ order: "order";
104
+ sticker: "sticker";
105
+ unsupported: "unsupported";
106
+ }>;
107
+ unknown: z.ZodOptional<z.ZodJSONSchema>;
108
+ unsupported: z.ZodOptional<z.ZodJSONSchema>;
109
+ video: z.ZodOptional<z.ZodObject<{
110
+ caption: z.ZodOptional<z.ZodString>;
111
+ id: z.ZodString;
112
+ mime_type: z.ZodOptional<z.ZodString>;
113
+ }, z.core.$strip>>;
114
+ }, z.core.$strip>>>;
115
+ messaging_product: z.ZodLiteral<"whatsapp">;
116
+ metadata: z.ZodObject<{
117
+ display_phone_number: z.ZodString;
118
+ phone_number_id: z.ZodString;
119
+ }, z.core.$strip>;
120
+ statuses: z.ZodOptional<z.ZodArray<z.ZodObject<{
121
+ biz_opaque_callback_data: z.ZodOptional<z.ZodString>;
122
+ conversation: z.ZodOptional<z.ZodObject<{
123
+ expiration_timestamp: z.ZodOptional<z.ZodString>;
124
+ id: z.ZodString;
125
+ origin: z.ZodObject<{
126
+ type: z.ZodString;
127
+ }, z.core.$strip>;
128
+ }, z.core.$strip>>;
129
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
130
+ code: z.ZodNumber;
131
+ error_data: z.ZodOptional<z.ZodObject<{
132
+ details: z.ZodOptional<z.ZodString>;
133
+ messaging_product: z.ZodOptional<z.ZodString>;
134
+ }, z.core.$strip>>;
135
+ error_subcode: z.ZodOptional<z.ZodNumber>;
136
+ fbtrace_id: z.ZodOptional<z.ZodString>;
137
+ message: z.ZodString;
138
+ title: z.ZodOptional<z.ZodString>;
139
+ }, z.core.$strip>>>;
140
+ id: z.ZodString;
141
+ pricing: z.ZodOptional<z.ZodObject<{
142
+ billable: z.ZodOptional<z.ZodBoolean>;
143
+ category: z.ZodString;
144
+ pricing_model: z.ZodEnum<{
145
+ CBP: "CBP";
146
+ PMP: "PMP";
147
+ }>;
148
+ type: z.ZodOptional<z.ZodEnum<{
149
+ regular: "regular";
150
+ free_customer_service: "free_customer_service";
151
+ free_entry_point: "free_entry_point";
152
+ }>>;
153
+ }, z.core.$strip>>;
154
+ recipient_id: z.ZodString;
155
+ status: z.ZodEnum<{
156
+ delivered: "delivered";
157
+ failed: "failed";
158
+ sent: "sent";
159
+ read: "read";
160
+ played: "played";
161
+ }>;
162
+ timestamp: z.ZodString;
163
+ }, z.core.$strip>>>;
164
+ }, z.core.$strip>;
165
+ }, z.core.$strip>>;
166
+ id: z.ZodString;
167
+ }, z.core.$strip>>;
168
+ object: z.ZodLiteral<"whatsapp_business_account">;
169
+ }, z.core.$strip>;
170
+ /** Normalized incoming WhatsApp message event. */
171
+ export declare const WHATSAPP_MESSAGE_RECEIVED_EVENT_SCHEMA: z.ZodObject<{
172
+ businessAccountId: z.ZodString;
173
+ displayPhoneNumber: z.ZodString;
174
+ message: z.ZodObject<{
175
+ content: z.ZodOptional<z.ZodJSONSchema>;
176
+ context: z.ZodOptional<z.ZodObject<{
177
+ forwarded: z.ZodOptional<z.ZodBoolean>;
178
+ from: z.ZodOptional<z.ZodString>;
179
+ messageId: z.ZodString;
180
+ }, z.core.$strip>>;
181
+ id: z.ZodString;
182
+ timestamp: z.ZodString;
183
+ type: z.ZodEnum<{
184
+ unknown: "unknown";
185
+ text: "text";
186
+ system: "system";
187
+ location: "location";
188
+ image: "image";
189
+ video: "video";
190
+ reaction: "reaction";
191
+ audio: "audio";
192
+ button: "button";
193
+ contacts: "contacts";
194
+ document: "document";
195
+ interactive: "interactive";
196
+ order: "order";
197
+ sticker: "sticker";
198
+ unsupported: "unsupported";
199
+ }>;
200
+ }, z.core.$strip>;
201
+ phoneNumberId: z.ZodString;
202
+ providerEvent: z.ZodObject<{
203
+ audio: z.ZodOptional<z.ZodObject<{
204
+ id: z.ZodString;
205
+ mime_type: z.ZodOptional<z.ZodString>;
206
+ }, z.core.$strip>>;
207
+ button: z.ZodOptional<z.ZodObject<{
208
+ payload: z.ZodString;
209
+ text: z.ZodString;
210
+ }, z.core.$strip>>;
211
+ contacts: z.ZodOptional<z.ZodArray<z.ZodJSONSchema>>;
212
+ context: z.ZodOptional<z.ZodObject<{
213
+ forwarded: z.ZodOptional<z.ZodBoolean>;
214
+ from: z.ZodOptional<z.ZodString>;
215
+ id: z.ZodString;
216
+ }, z.core.$strip>>;
217
+ document: z.ZodOptional<z.ZodObject<{
218
+ caption: z.ZodOptional<z.ZodString>;
219
+ filename: z.ZodOptional<z.ZodString>;
220
+ id: z.ZodString;
221
+ mime_type: z.ZodOptional<z.ZodString>;
222
+ }, z.core.$strip>>;
223
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
224
+ code: z.ZodNumber;
225
+ error_data: z.ZodOptional<z.ZodObject<{
226
+ details: z.ZodOptional<z.ZodString>;
227
+ messaging_product: z.ZodOptional<z.ZodString>;
228
+ }, z.core.$strip>>;
229
+ error_subcode: z.ZodOptional<z.ZodNumber>;
230
+ fbtrace_id: z.ZodOptional<z.ZodString>;
231
+ message: z.ZodString;
232
+ title: z.ZodOptional<z.ZodString>;
233
+ }, z.core.$strip>>>;
234
+ from: z.ZodString;
235
+ id: z.ZodString;
236
+ image: z.ZodOptional<z.ZodObject<{
237
+ caption: z.ZodOptional<z.ZodString>;
238
+ id: z.ZodString;
239
+ mime_type: z.ZodOptional<z.ZodString>;
240
+ }, z.core.$strip>>;
241
+ interactive: z.ZodOptional<z.ZodObject<{
242
+ button_reply: z.ZodOptional<z.ZodObject<{
243
+ id: z.ZodString;
244
+ title: z.ZodString;
245
+ }, z.core.$strip>>;
246
+ list_reply: z.ZodOptional<z.ZodObject<{
247
+ description: z.ZodOptional<z.ZodString>;
248
+ id: z.ZodString;
249
+ title: z.ZodString;
250
+ }, z.core.$strip>>;
251
+ type: z.ZodEnum<{
252
+ button_reply: "button_reply";
253
+ list_reply: "list_reply";
254
+ }>;
255
+ }, z.core.$strip>>;
256
+ location: z.ZodOptional<z.ZodObject<{
257
+ address: z.ZodOptional<z.ZodString>;
258
+ latitude: z.ZodNumber;
259
+ longitude: z.ZodNumber;
260
+ name: z.ZodOptional<z.ZodString>;
261
+ url: z.ZodOptional<z.ZodString>;
262
+ }, z.core.$strip>>;
263
+ order: z.ZodOptional<z.ZodJSONSchema>;
264
+ reaction: z.ZodOptional<z.ZodObject<{
265
+ emoji: z.ZodString;
266
+ message_id: z.ZodString;
267
+ }, z.core.$strip>>;
268
+ referral: z.ZodOptional<z.ZodJSONSchema>;
269
+ sticker: z.ZodOptional<z.ZodObject<{
270
+ id: z.ZodString;
271
+ mime_type: z.ZodOptional<z.ZodString>;
272
+ }, z.core.$strip>>;
273
+ system: z.ZodOptional<z.ZodJSONSchema>;
274
+ text: z.ZodOptional<z.ZodObject<{
275
+ body: z.ZodString;
276
+ }, z.core.$strip>>;
277
+ timestamp: z.ZodString;
278
+ type: z.ZodEnum<{
279
+ unknown: "unknown";
280
+ text: "text";
281
+ system: "system";
282
+ location: "location";
283
+ image: "image";
284
+ video: "video";
285
+ reaction: "reaction";
286
+ audio: "audio";
287
+ button: "button";
288
+ contacts: "contacts";
289
+ document: "document";
290
+ interactive: "interactive";
291
+ order: "order";
292
+ sticker: "sticker";
293
+ unsupported: "unsupported";
294
+ }>;
295
+ unknown: z.ZodOptional<z.ZodJSONSchema>;
296
+ unsupported: z.ZodOptional<z.ZodJSONSchema>;
297
+ video: z.ZodOptional<z.ZodObject<{
298
+ caption: z.ZodOptional<z.ZodString>;
299
+ id: z.ZodString;
300
+ mime_type: z.ZodOptional<z.ZodString>;
301
+ }, z.core.$strip>>;
302
+ }, z.core.$strip>;
303
+ sender: z.ZodObject<{
304
+ id: z.ZodString;
305
+ name: z.ZodOptional<z.ZodString>;
306
+ }, z.core.$strip>;
307
+ }, z.core.$strip>;
308
+ /** Normalized WhatsApp message status event. */
309
+ export declare const WHATSAPP_MESSAGE_STATUS_EVENT_SCHEMA: z.ZodObject<{
310
+ businessAccountId: z.ZodString;
311
+ callbackData: z.ZodOptional<z.ZodString>;
312
+ conversation: z.ZodOptional<z.ZodObject<{
313
+ expirationTimestamp: z.ZodOptional<z.ZodString>;
314
+ id: z.ZodString;
315
+ originType: z.ZodString;
316
+ }, z.core.$strip>>;
317
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
318
+ code: z.ZodNumber;
319
+ details: z.ZodOptional<z.ZodString>;
320
+ message: z.ZodString;
321
+ subcode: z.ZodOptional<z.ZodNumber>;
322
+ title: z.ZodOptional<z.ZodString>;
323
+ traceId: z.ZodOptional<z.ZodString>;
324
+ }, z.core.$strip>>>;
325
+ messageId: z.ZodString;
326
+ phoneNumberId: z.ZodString;
327
+ pricing: z.ZodOptional<z.ZodObject<{
328
+ billable: z.ZodOptional<z.ZodBoolean>;
329
+ category: z.ZodString;
330
+ model: z.ZodEnum<{
331
+ CBP: "CBP";
332
+ PMP: "PMP";
333
+ }>;
334
+ type: z.ZodOptional<z.ZodEnum<{
335
+ regular: "regular";
336
+ free_customer_service: "free_customer_service";
337
+ free_entry_point: "free_entry_point";
338
+ }>>;
339
+ }, z.core.$strip>>;
340
+ providerEvent: z.ZodObject<{
341
+ biz_opaque_callback_data: z.ZodOptional<z.ZodString>;
342
+ conversation: z.ZodOptional<z.ZodObject<{
343
+ expiration_timestamp: z.ZodOptional<z.ZodString>;
344
+ id: z.ZodString;
345
+ origin: z.ZodObject<{
346
+ type: z.ZodString;
347
+ }, z.core.$strip>;
348
+ }, z.core.$strip>>;
349
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
350
+ code: z.ZodNumber;
351
+ error_data: z.ZodOptional<z.ZodObject<{
352
+ details: z.ZodOptional<z.ZodString>;
353
+ messaging_product: z.ZodOptional<z.ZodString>;
354
+ }, z.core.$strip>>;
355
+ error_subcode: z.ZodOptional<z.ZodNumber>;
356
+ fbtrace_id: z.ZodOptional<z.ZodString>;
357
+ message: z.ZodString;
358
+ title: z.ZodOptional<z.ZodString>;
359
+ }, z.core.$strip>>>;
360
+ id: z.ZodString;
361
+ pricing: z.ZodOptional<z.ZodObject<{
362
+ billable: z.ZodOptional<z.ZodBoolean>;
363
+ category: z.ZodString;
364
+ pricing_model: z.ZodEnum<{
365
+ CBP: "CBP";
366
+ PMP: "PMP";
367
+ }>;
368
+ type: z.ZodOptional<z.ZodEnum<{
369
+ regular: "regular";
370
+ free_customer_service: "free_customer_service";
371
+ free_entry_point: "free_entry_point";
372
+ }>>;
373
+ }, z.core.$strip>>;
374
+ recipient_id: z.ZodString;
375
+ status: z.ZodEnum<{
376
+ delivered: "delivered";
377
+ failed: "failed";
378
+ sent: "sent";
379
+ read: "read";
380
+ played: "played";
381
+ }>;
382
+ timestamp: z.ZodString;
383
+ }, z.core.$strip>;
384
+ recipientId: z.ZodString;
385
+ status: z.ZodEnum<{
386
+ delivered: "delivered";
387
+ failed: "failed";
388
+ sent: "sent";
389
+ read: "read";
390
+ played: "played";
391
+ }>;
392
+ timestamp: z.ZodString;
393
+ }, z.core.$strip>;
394
+ export declare const WHATSAPP_MESSAGE_SENT_EVENT_SCHEMA: z.ZodObject<{
395
+ businessAccountId: z.ZodString;
396
+ callbackData: z.ZodOptional<z.ZodString>;
397
+ conversation: z.ZodOptional<z.ZodObject<{
398
+ expirationTimestamp: z.ZodOptional<z.ZodString>;
399
+ id: z.ZodString;
400
+ originType: z.ZodString;
401
+ }, z.core.$strip>>;
402
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
403
+ code: z.ZodNumber;
404
+ details: z.ZodOptional<z.ZodString>;
405
+ message: z.ZodString;
406
+ subcode: z.ZodOptional<z.ZodNumber>;
407
+ title: z.ZodOptional<z.ZodString>;
408
+ traceId: z.ZodOptional<z.ZodString>;
409
+ }, z.core.$strip>>>;
410
+ messageId: z.ZodString;
411
+ phoneNumberId: z.ZodString;
412
+ pricing: z.ZodOptional<z.ZodObject<{
413
+ billable: z.ZodOptional<z.ZodBoolean>;
414
+ category: z.ZodString;
415
+ model: z.ZodEnum<{
416
+ CBP: "CBP";
417
+ PMP: "PMP";
418
+ }>;
419
+ type: z.ZodOptional<z.ZodEnum<{
420
+ regular: "regular";
421
+ free_customer_service: "free_customer_service";
422
+ free_entry_point: "free_entry_point";
423
+ }>>;
424
+ }, z.core.$strip>>;
425
+ recipientId: z.ZodString;
426
+ timestamp: z.ZodString;
427
+ providerEvent: z.ZodObject<{
428
+ biz_opaque_callback_data: z.ZodOptional<z.ZodString>;
429
+ conversation: z.ZodOptional<z.ZodObject<{
430
+ expiration_timestamp: z.ZodOptional<z.ZodString>;
431
+ id: z.ZodString;
432
+ origin: z.ZodObject<{
433
+ type: z.ZodString;
434
+ }, z.core.$strip>;
435
+ }, z.core.$strip>>;
436
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
437
+ code: z.ZodNumber;
438
+ error_data: z.ZodOptional<z.ZodObject<{
439
+ details: z.ZodOptional<z.ZodString>;
440
+ messaging_product: z.ZodOptional<z.ZodString>;
441
+ }, z.core.$strip>>;
442
+ error_subcode: z.ZodOptional<z.ZodNumber>;
443
+ fbtrace_id: z.ZodOptional<z.ZodString>;
444
+ message: z.ZodString;
445
+ title: z.ZodOptional<z.ZodString>;
446
+ }, z.core.$strip>>>;
447
+ id: z.ZodString;
448
+ pricing: z.ZodOptional<z.ZodObject<{
449
+ billable: z.ZodOptional<z.ZodBoolean>;
450
+ category: z.ZodString;
451
+ pricing_model: z.ZodEnum<{
452
+ CBP: "CBP";
453
+ PMP: "PMP";
454
+ }>;
455
+ type: z.ZodOptional<z.ZodEnum<{
456
+ regular: "regular";
457
+ free_customer_service: "free_customer_service";
458
+ free_entry_point: "free_entry_point";
459
+ }>>;
460
+ }, z.core.$strip>>;
461
+ recipient_id: z.ZodString;
462
+ timestamp: z.ZodString;
463
+ status: z.ZodLiteral<"sent">;
464
+ }, z.core.$strip>;
465
+ status: z.ZodLiteral<"sent">;
466
+ }, z.core.$strip>;
467
+ export declare const WHATSAPP_MESSAGE_DELIVERED_EVENT_SCHEMA: z.ZodObject<{
468
+ businessAccountId: z.ZodString;
469
+ callbackData: z.ZodOptional<z.ZodString>;
470
+ conversation: z.ZodOptional<z.ZodObject<{
471
+ expirationTimestamp: z.ZodOptional<z.ZodString>;
472
+ id: z.ZodString;
473
+ originType: z.ZodString;
474
+ }, z.core.$strip>>;
475
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
476
+ code: z.ZodNumber;
477
+ details: z.ZodOptional<z.ZodString>;
478
+ message: z.ZodString;
479
+ subcode: z.ZodOptional<z.ZodNumber>;
480
+ title: z.ZodOptional<z.ZodString>;
481
+ traceId: z.ZodOptional<z.ZodString>;
482
+ }, z.core.$strip>>>;
483
+ messageId: z.ZodString;
484
+ phoneNumberId: z.ZodString;
485
+ pricing: z.ZodOptional<z.ZodObject<{
486
+ billable: z.ZodOptional<z.ZodBoolean>;
487
+ category: z.ZodString;
488
+ model: z.ZodEnum<{
489
+ CBP: "CBP";
490
+ PMP: "PMP";
491
+ }>;
492
+ type: z.ZodOptional<z.ZodEnum<{
493
+ regular: "regular";
494
+ free_customer_service: "free_customer_service";
495
+ free_entry_point: "free_entry_point";
496
+ }>>;
497
+ }, z.core.$strip>>;
498
+ recipientId: z.ZodString;
499
+ timestamp: z.ZodString;
500
+ providerEvent: z.ZodObject<{
501
+ biz_opaque_callback_data: z.ZodOptional<z.ZodString>;
502
+ conversation: z.ZodOptional<z.ZodObject<{
503
+ expiration_timestamp: z.ZodOptional<z.ZodString>;
504
+ id: z.ZodString;
505
+ origin: z.ZodObject<{
506
+ type: z.ZodString;
507
+ }, z.core.$strip>;
508
+ }, z.core.$strip>>;
509
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
510
+ code: z.ZodNumber;
511
+ error_data: z.ZodOptional<z.ZodObject<{
512
+ details: z.ZodOptional<z.ZodString>;
513
+ messaging_product: z.ZodOptional<z.ZodString>;
514
+ }, z.core.$strip>>;
515
+ error_subcode: z.ZodOptional<z.ZodNumber>;
516
+ fbtrace_id: z.ZodOptional<z.ZodString>;
517
+ message: z.ZodString;
518
+ title: z.ZodOptional<z.ZodString>;
519
+ }, z.core.$strip>>>;
520
+ id: z.ZodString;
521
+ pricing: z.ZodOptional<z.ZodObject<{
522
+ billable: z.ZodOptional<z.ZodBoolean>;
523
+ category: z.ZodString;
524
+ pricing_model: z.ZodEnum<{
525
+ CBP: "CBP";
526
+ PMP: "PMP";
527
+ }>;
528
+ type: z.ZodOptional<z.ZodEnum<{
529
+ regular: "regular";
530
+ free_customer_service: "free_customer_service";
531
+ free_entry_point: "free_entry_point";
532
+ }>>;
533
+ }, z.core.$strip>>;
534
+ recipient_id: z.ZodString;
535
+ timestamp: z.ZodString;
536
+ status: z.ZodLiteral<"delivered">;
537
+ }, z.core.$strip>;
538
+ status: z.ZodLiteral<"delivered">;
539
+ }, z.core.$strip>;
540
+ export declare const WHATSAPP_MESSAGE_READ_EVENT_SCHEMA: z.ZodObject<{
541
+ businessAccountId: z.ZodString;
542
+ callbackData: z.ZodOptional<z.ZodString>;
543
+ conversation: z.ZodOptional<z.ZodObject<{
544
+ expirationTimestamp: z.ZodOptional<z.ZodString>;
545
+ id: z.ZodString;
546
+ originType: z.ZodString;
547
+ }, z.core.$strip>>;
548
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
549
+ code: z.ZodNumber;
550
+ details: z.ZodOptional<z.ZodString>;
551
+ message: z.ZodString;
552
+ subcode: z.ZodOptional<z.ZodNumber>;
553
+ title: z.ZodOptional<z.ZodString>;
554
+ traceId: z.ZodOptional<z.ZodString>;
555
+ }, z.core.$strip>>>;
556
+ messageId: z.ZodString;
557
+ phoneNumberId: z.ZodString;
558
+ pricing: z.ZodOptional<z.ZodObject<{
559
+ billable: z.ZodOptional<z.ZodBoolean>;
560
+ category: z.ZodString;
561
+ model: z.ZodEnum<{
562
+ CBP: "CBP";
563
+ PMP: "PMP";
564
+ }>;
565
+ type: z.ZodOptional<z.ZodEnum<{
566
+ regular: "regular";
567
+ free_customer_service: "free_customer_service";
568
+ free_entry_point: "free_entry_point";
569
+ }>>;
570
+ }, z.core.$strip>>;
571
+ recipientId: z.ZodString;
572
+ timestamp: z.ZodString;
573
+ providerEvent: z.ZodObject<{
574
+ biz_opaque_callback_data: z.ZodOptional<z.ZodString>;
575
+ conversation: z.ZodOptional<z.ZodObject<{
576
+ expiration_timestamp: z.ZodOptional<z.ZodString>;
577
+ id: z.ZodString;
578
+ origin: z.ZodObject<{
579
+ type: z.ZodString;
580
+ }, z.core.$strip>;
581
+ }, z.core.$strip>>;
582
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
583
+ code: z.ZodNumber;
584
+ error_data: z.ZodOptional<z.ZodObject<{
585
+ details: z.ZodOptional<z.ZodString>;
586
+ messaging_product: z.ZodOptional<z.ZodString>;
587
+ }, z.core.$strip>>;
588
+ error_subcode: z.ZodOptional<z.ZodNumber>;
589
+ fbtrace_id: z.ZodOptional<z.ZodString>;
590
+ message: z.ZodString;
591
+ title: z.ZodOptional<z.ZodString>;
592
+ }, z.core.$strip>>>;
593
+ id: z.ZodString;
594
+ pricing: z.ZodOptional<z.ZodObject<{
595
+ billable: z.ZodOptional<z.ZodBoolean>;
596
+ category: z.ZodString;
597
+ pricing_model: z.ZodEnum<{
598
+ CBP: "CBP";
599
+ PMP: "PMP";
600
+ }>;
601
+ type: z.ZodOptional<z.ZodEnum<{
602
+ regular: "regular";
603
+ free_customer_service: "free_customer_service";
604
+ free_entry_point: "free_entry_point";
605
+ }>>;
606
+ }, z.core.$strip>>;
607
+ recipient_id: z.ZodString;
608
+ timestamp: z.ZodString;
609
+ status: z.ZodLiteral<"read">;
610
+ }, z.core.$strip>;
611
+ status: z.ZodLiteral<"read">;
612
+ }, z.core.$strip>;
613
+ export declare const WHATSAPP_MESSAGE_FAILED_EVENT_SCHEMA: z.ZodObject<{
614
+ businessAccountId: z.ZodString;
615
+ callbackData: z.ZodOptional<z.ZodString>;
616
+ conversation: z.ZodOptional<z.ZodObject<{
617
+ expirationTimestamp: z.ZodOptional<z.ZodString>;
618
+ id: z.ZodString;
619
+ originType: z.ZodString;
620
+ }, z.core.$strip>>;
621
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
622
+ code: z.ZodNumber;
623
+ details: z.ZodOptional<z.ZodString>;
624
+ message: z.ZodString;
625
+ subcode: z.ZodOptional<z.ZodNumber>;
626
+ title: z.ZodOptional<z.ZodString>;
627
+ traceId: z.ZodOptional<z.ZodString>;
628
+ }, z.core.$strip>>>;
629
+ messageId: z.ZodString;
630
+ phoneNumberId: z.ZodString;
631
+ pricing: z.ZodOptional<z.ZodObject<{
632
+ billable: z.ZodOptional<z.ZodBoolean>;
633
+ category: z.ZodString;
634
+ model: z.ZodEnum<{
635
+ CBP: "CBP";
636
+ PMP: "PMP";
637
+ }>;
638
+ type: z.ZodOptional<z.ZodEnum<{
639
+ regular: "regular";
640
+ free_customer_service: "free_customer_service";
641
+ free_entry_point: "free_entry_point";
642
+ }>>;
643
+ }, z.core.$strip>>;
644
+ recipientId: z.ZodString;
645
+ timestamp: z.ZodString;
646
+ providerEvent: z.ZodObject<{
647
+ biz_opaque_callback_data: z.ZodOptional<z.ZodString>;
648
+ conversation: z.ZodOptional<z.ZodObject<{
649
+ expiration_timestamp: z.ZodOptional<z.ZodString>;
650
+ id: z.ZodString;
651
+ origin: z.ZodObject<{
652
+ type: z.ZodString;
653
+ }, z.core.$strip>;
654
+ }, z.core.$strip>>;
655
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
656
+ code: z.ZodNumber;
657
+ error_data: z.ZodOptional<z.ZodObject<{
658
+ details: z.ZodOptional<z.ZodString>;
659
+ messaging_product: z.ZodOptional<z.ZodString>;
660
+ }, z.core.$strip>>;
661
+ error_subcode: z.ZodOptional<z.ZodNumber>;
662
+ fbtrace_id: z.ZodOptional<z.ZodString>;
663
+ message: z.ZodString;
664
+ title: z.ZodOptional<z.ZodString>;
665
+ }, z.core.$strip>>>;
666
+ id: z.ZodString;
667
+ pricing: z.ZodOptional<z.ZodObject<{
668
+ billable: z.ZodOptional<z.ZodBoolean>;
669
+ category: z.ZodString;
670
+ pricing_model: z.ZodEnum<{
671
+ CBP: "CBP";
672
+ PMP: "PMP";
673
+ }>;
674
+ type: z.ZodOptional<z.ZodEnum<{
675
+ regular: "regular";
676
+ free_customer_service: "free_customer_service";
677
+ free_entry_point: "free_entry_point";
678
+ }>>;
679
+ }, z.core.$strip>>;
680
+ recipient_id: z.ZodString;
681
+ timestamp: z.ZodString;
682
+ status: z.ZodLiteral<"failed">;
683
+ }, z.core.$strip>;
684
+ status: z.ZodLiteral<"failed">;
685
+ }, z.core.$strip>;
686
+ export declare const WHATSAPP_MESSAGE_PLAYED_EVENT_SCHEMA: z.ZodObject<{
687
+ businessAccountId: z.ZodString;
688
+ callbackData: z.ZodOptional<z.ZodString>;
689
+ conversation: z.ZodOptional<z.ZodObject<{
690
+ expirationTimestamp: z.ZodOptional<z.ZodString>;
691
+ id: z.ZodString;
692
+ originType: z.ZodString;
693
+ }, z.core.$strip>>;
694
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
695
+ code: z.ZodNumber;
696
+ details: z.ZodOptional<z.ZodString>;
697
+ message: z.ZodString;
698
+ subcode: z.ZodOptional<z.ZodNumber>;
699
+ title: z.ZodOptional<z.ZodString>;
700
+ traceId: z.ZodOptional<z.ZodString>;
701
+ }, z.core.$strip>>>;
702
+ messageId: z.ZodString;
703
+ phoneNumberId: z.ZodString;
704
+ pricing: z.ZodOptional<z.ZodObject<{
705
+ billable: z.ZodOptional<z.ZodBoolean>;
706
+ category: z.ZodString;
707
+ model: z.ZodEnum<{
708
+ CBP: "CBP";
709
+ PMP: "PMP";
710
+ }>;
711
+ type: z.ZodOptional<z.ZodEnum<{
712
+ regular: "regular";
713
+ free_customer_service: "free_customer_service";
714
+ free_entry_point: "free_entry_point";
715
+ }>>;
716
+ }, z.core.$strip>>;
717
+ recipientId: z.ZodString;
718
+ timestamp: z.ZodString;
719
+ providerEvent: z.ZodObject<{
720
+ biz_opaque_callback_data: z.ZodOptional<z.ZodString>;
721
+ conversation: z.ZodOptional<z.ZodObject<{
722
+ expiration_timestamp: z.ZodOptional<z.ZodString>;
723
+ id: z.ZodString;
724
+ origin: z.ZodObject<{
725
+ type: z.ZodString;
726
+ }, z.core.$strip>;
727
+ }, z.core.$strip>>;
728
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
729
+ code: z.ZodNumber;
730
+ error_data: z.ZodOptional<z.ZodObject<{
731
+ details: z.ZodOptional<z.ZodString>;
732
+ messaging_product: z.ZodOptional<z.ZodString>;
733
+ }, z.core.$strip>>;
734
+ error_subcode: z.ZodOptional<z.ZodNumber>;
735
+ fbtrace_id: z.ZodOptional<z.ZodString>;
736
+ message: z.ZodString;
737
+ title: z.ZodOptional<z.ZodString>;
738
+ }, z.core.$strip>>>;
739
+ id: z.ZodString;
740
+ pricing: z.ZodOptional<z.ZodObject<{
741
+ billable: z.ZodOptional<z.ZodBoolean>;
742
+ category: z.ZodString;
743
+ pricing_model: z.ZodEnum<{
744
+ CBP: "CBP";
745
+ PMP: "PMP";
746
+ }>;
747
+ type: z.ZodOptional<z.ZodEnum<{
748
+ regular: "regular";
749
+ free_customer_service: "free_customer_service";
750
+ free_entry_point: "free_entry_point";
751
+ }>>;
752
+ }, z.core.$strip>>;
753
+ recipient_id: z.ZodString;
754
+ timestamp: z.ZodString;
755
+ status: z.ZodLiteral<"played">;
756
+ }, z.core.$strip>;
757
+ status: z.ZodLiteral<"played">;
758
+ }, z.core.$strip>;
759
+ /**
760
+ * Flattens one verified provider callback into independently ingestible events.
761
+ *
762
+ * @param input - Untrusted WhatsApp webhook envelope.
763
+ */
764
+ export declare function normalizeWhatsAppWebhook(input: unknown): {
765
+ messages: {
766
+ businessAccountId: string;
767
+ displayPhoneNumber: string;
768
+ message: {
769
+ id: string;
770
+ timestamp: string;
771
+ type: "unknown" | "text" | "system" | "location" | "image" | "video" | "reaction" | "audio" | "button" | "contacts" | "document" | "interactive" | "order" | "sticker" | "unsupported";
772
+ content?: z.core.util.JSONType | undefined;
773
+ context?: {
774
+ messageId: string;
775
+ forwarded?: boolean | undefined;
776
+ from?: string | undefined;
777
+ } | undefined;
778
+ };
779
+ phoneNumberId: string;
780
+ providerEvent: {
781
+ from: string;
782
+ id: string;
783
+ timestamp: string;
784
+ type: "unknown" | "text" | "system" | "location" | "image" | "video" | "reaction" | "audio" | "button" | "contacts" | "document" | "interactive" | "order" | "sticker" | "unsupported";
785
+ audio?: {
786
+ id: string;
787
+ mime_type?: string | undefined;
788
+ } | undefined;
789
+ button?: {
790
+ payload: string;
791
+ text: string;
792
+ } | undefined;
793
+ contacts?: z.core.util.JSONType[] | undefined;
794
+ context?: {
795
+ id: string;
796
+ forwarded?: boolean | undefined;
797
+ from?: string | undefined;
798
+ } | undefined;
799
+ document?: {
800
+ id: string;
801
+ caption?: string | undefined;
802
+ filename?: string | undefined;
803
+ mime_type?: string | undefined;
804
+ } | undefined;
805
+ errors?: {
806
+ code: number;
807
+ message: string;
808
+ error_data?: {
809
+ details?: string | undefined;
810
+ messaging_product?: string | undefined;
811
+ } | undefined;
812
+ error_subcode?: number | undefined;
813
+ fbtrace_id?: string | undefined;
814
+ title?: string | undefined;
815
+ }[] | undefined;
816
+ image?: {
817
+ id: string;
818
+ caption?: string | undefined;
819
+ mime_type?: string | undefined;
820
+ } | undefined;
821
+ interactive?: {
822
+ type: "button_reply" | "list_reply";
823
+ button_reply?: {
824
+ id: string;
825
+ title: string;
826
+ } | undefined;
827
+ list_reply?: {
828
+ id: string;
829
+ title: string;
830
+ description?: string | undefined;
831
+ } | undefined;
832
+ } | undefined;
833
+ location?: {
834
+ latitude: number;
835
+ longitude: number;
836
+ address?: string | undefined;
837
+ name?: string | undefined;
838
+ url?: string | undefined;
839
+ } | undefined;
840
+ order?: z.core.util.JSONType | undefined;
841
+ reaction?: {
842
+ emoji: string;
843
+ message_id: string;
844
+ } | undefined;
845
+ referral?: z.core.util.JSONType | undefined;
846
+ sticker?: {
847
+ id: string;
848
+ mime_type?: string | undefined;
849
+ } | undefined;
850
+ system?: z.core.util.JSONType | undefined;
851
+ text?: {
852
+ body: string;
853
+ } | undefined;
854
+ unknown?: z.core.util.JSONType | undefined;
855
+ unsupported?: z.core.util.JSONType | undefined;
856
+ video?: {
857
+ id: string;
858
+ caption?: string | undefined;
859
+ mime_type?: string | undefined;
860
+ } | undefined;
861
+ };
862
+ sender: {
863
+ id: string;
864
+ name?: string | undefined;
865
+ };
866
+ }[];
867
+ statuses: {
868
+ businessAccountId: string;
869
+ messageId: string;
870
+ phoneNumberId: string;
871
+ providerEvent: {
872
+ id: string;
873
+ recipient_id: string;
874
+ status: "delivered" | "failed" | "sent" | "read" | "played";
875
+ timestamp: string;
876
+ biz_opaque_callback_data?: string | undefined;
877
+ conversation?: {
878
+ id: string;
879
+ origin: {
880
+ type: string;
881
+ };
882
+ expiration_timestamp?: string | undefined;
883
+ } | undefined;
884
+ errors?: {
885
+ code: number;
886
+ message: string;
887
+ error_data?: {
888
+ details?: string | undefined;
889
+ messaging_product?: string | undefined;
890
+ } | undefined;
891
+ error_subcode?: number | undefined;
892
+ fbtrace_id?: string | undefined;
893
+ title?: string | undefined;
894
+ }[] | undefined;
895
+ pricing?: {
896
+ category: string;
897
+ pricing_model: "CBP" | "PMP";
898
+ billable?: boolean | undefined;
899
+ type?: "regular" | "free_customer_service" | "free_entry_point" | undefined;
900
+ } | undefined;
901
+ };
902
+ recipientId: string;
903
+ status: "delivered" | "failed" | "sent" | "read" | "played";
904
+ timestamp: string;
905
+ callbackData?: string | undefined;
906
+ conversation?: {
907
+ id: string;
908
+ originType: string;
909
+ expirationTimestamp?: string | undefined;
910
+ } | undefined;
911
+ errors?: {
912
+ code: number;
913
+ message: string;
914
+ details?: string | undefined;
915
+ subcode?: number | undefined;
916
+ title?: string | undefined;
917
+ traceId?: string | undefined;
918
+ }[] | undefined;
919
+ pricing?: {
920
+ category: string;
921
+ model: "CBP" | "PMP";
922
+ billable?: boolean | undefined;
923
+ type?: "regular" | "free_customer_service" | "free_entry_point" | undefined;
924
+ } | undefined;
925
+ }[];
926
+ };