@better-zap/fixtures 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs ADDED
@@ -0,0 +1,734 @@
1
+ //#region src/account-offboarded.ts
2
+ const accountOffboardedFixture = {
3
+ object: "whatsapp_business_account",
4
+ entry: [{
5
+ id: "waba_fixture_1",
6
+ changes: [{
7
+ field: "account_offboarded",
8
+ value: {
9
+ messaging_product: "whatsapp",
10
+ metadata: {
11
+ display_phone_number: "15550000001",
12
+ phone_number_id: "phone_known"
13
+ },
14
+ event: "ACCOUNT_OFFBOARDED",
15
+ reason: "HISTORY_SYNC_DEADLINE_EXPIRED",
16
+ phone_number_id: "phone_known",
17
+ waba_info: {
18
+ waba_id: "waba_fixture_1",
19
+ owner_business_id: "business_fixture_1"
20
+ }
21
+ }
22
+ }]
23
+ }]
24
+ };
25
+ //#endregion
26
+ //#region src/account-reconnected.ts
27
+ const accountReconnectedFixture = {
28
+ object: "whatsapp_business_account",
29
+ entry: [{
30
+ id: "waba_fixture_1",
31
+ changes: [{
32
+ field: "account_reconnected",
33
+ value: {
34
+ messaging_product: "whatsapp",
35
+ metadata: {
36
+ display_phone_number: "15550000001",
37
+ phone_number_id: "phone_known"
38
+ },
39
+ event: "ACCOUNT_RECONNECTED",
40
+ reconnect_reason: "APP_REINSTALL",
41
+ phone_number_id: "phone_known",
42
+ cloud_api_products: [{
43
+ product_id: "cloud_api",
44
+ product_name: "WhatsApp Cloud API",
45
+ reconnected: true
46
+ }],
47
+ waba_info: {
48
+ waba_id: "waba_fixture_1",
49
+ owner_business_id: "business_fixture_1"
50
+ }
51
+ }
52
+ }]
53
+ }]
54
+ };
55
+ //#endregion
56
+ //#region src/account-update-partner-removed.ts
57
+ const accountUpdatePartnerRemovedFixture = {
58
+ object: "whatsapp_business_account",
59
+ entry: [{
60
+ id: "waba_fixture_1",
61
+ changes: [{
62
+ field: "account_update",
63
+ value: {
64
+ messaging_product: "whatsapp",
65
+ metadata: {
66
+ display_phone_number: "15550000001",
67
+ phone_number_id: "phone_known"
68
+ },
69
+ waba_id: "waba_fixture_1",
70
+ event: "PARTNER_REMOVED",
71
+ waba_info: {
72
+ name: "Fixture WABA",
73
+ owner_business_id: "biz_fixture_1"
74
+ }
75
+ }
76
+ }]
77
+ }]
78
+ };
79
+ //#endregion
80
+ //#region src/history-duplicate-chunk.ts
81
+ const historyDuplicateChunkFixture = {
82
+ object: "whatsapp_business_account",
83
+ entry: [{
84
+ id: "waba_fixture_1",
85
+ changes: [{
86
+ field: "history",
87
+ value: {
88
+ messaging_product: "whatsapp",
89
+ metadata: {
90
+ display_phone_number: "15550000001",
91
+ phone_number_id: "phone_known"
92
+ },
93
+ request_id: "req_hist_1",
94
+ history: [{
95
+ phase: 1,
96
+ window: "duplicate_day_0_1",
97
+ messages: [{
98
+ id: "wamid.hist.0001",
99
+ from: "15550000002",
100
+ timestamp: "1783000000",
101
+ type: "text",
102
+ text: { body: "Can you confirm tomorrow's appointment?" }
103
+ }]
104
+ }]
105
+ }
106
+ }]
107
+ }]
108
+ };
109
+ //#endregion
110
+ //#region src/history-group-excluded.ts
111
+ const historyGroupExcludedFixture = {
112
+ object: "whatsapp_business_account",
113
+ entry: [{
114
+ id: "waba_fixture_1",
115
+ changes: [{
116
+ field: "history",
117
+ value: {
118
+ messaging_product: "whatsapp",
119
+ metadata: {
120
+ display_phone_number: "15550000001",
121
+ phone_number_id: "phone_known"
122
+ },
123
+ request_id: "req_hist_individual_only",
124
+ history: [{
125
+ phase: 1,
126
+ excluded: { group_chats: true },
127
+ messages: [{
128
+ id: "wamid.hist.individual.1",
129
+ from: "15550000005",
130
+ timestamp: "1782990000",
131
+ type: "text",
132
+ text: { body: "This one-to-one message is included." }
133
+ }]
134
+ }]
135
+ }
136
+ }]
137
+ }]
138
+ };
139
+ //#endregion
140
+ //#region src/history-media-missing-asset-id-after-day-14.ts
141
+ const historyMediaMissingAssetIdAfterDay14Fixture = {
142
+ object: "whatsapp_business_account",
143
+ entry: [{
144
+ id: "waba_fixture_1",
145
+ changes: [{
146
+ field: "history",
147
+ value: {
148
+ messaging_product: "whatsapp",
149
+ metadata: {
150
+ display_phone_number: "15550000001",
151
+ phone_number_id: "phone_known"
152
+ },
153
+ request_id: "req_hist_media_old",
154
+ history: [{
155
+ phase: 2,
156
+ window: "day_14_90_media",
157
+ messages: [{
158
+ id: "wamid.hist.media.old",
159
+ from: "15550000002",
160
+ timestamp: "1778760000",
161
+ type: "image",
162
+ image: {
163
+ mime_type: "image/jpeg",
164
+ sha256: "fixture-old-media-sha256",
165
+ caption: "Older receipt photo"
166
+ }
167
+ }]
168
+ }]
169
+ }
170
+ }]
171
+ }]
172
+ };
173
+ //#endregion
174
+ //#region src/history-media-with-asset-id.ts
175
+ const historyMediaWithAssetIdFixture = {
176
+ object: "whatsapp_business_account",
177
+ entry: [{
178
+ id: "waba_fixture_1",
179
+ changes: [{
180
+ field: "history",
181
+ value: {
182
+ messaging_product: "whatsapp",
183
+ metadata: {
184
+ display_phone_number: "15550000001",
185
+ phone_number_id: "phone_known"
186
+ },
187
+ request_id: "req_hist_media_14d",
188
+ history: [{
189
+ phase: 1,
190
+ window: "day_0_14_media",
191
+ messages: [{
192
+ id: "wamid.hist.media.14d",
193
+ from: "15550000002",
194
+ timestamp: "1782913600",
195
+ type: "image",
196
+ image: {
197
+ id: "media_asset_hist_14d_1",
198
+ mime_type: "image/jpeg",
199
+ sha256: "fixture-media-sha256",
200
+ caption: "Receipt photo"
201
+ }
202
+ }]
203
+ }]
204
+ }
205
+ }]
206
+ }]
207
+ };
208
+ //#endregion
209
+ //#region src/history-other-error.ts
210
+ const historyOtherErrorFixture = {
211
+ object: "whatsapp_business_account",
212
+ entry: [{
213
+ id: "waba_fixture_1",
214
+ changes: [{
215
+ field: "history",
216
+ value: {
217
+ messaging_product: "whatsapp",
218
+ metadata: {
219
+ display_phone_number: "15550000001",
220
+ phone_number_id: "phone_known"
221
+ },
222
+ request_id: "req_hist_other_error",
223
+ errors: [{
224
+ code: 131e3,
225
+ title: "Something went wrong",
226
+ message: "History sync failed",
227
+ error_data: { details: "transient_history_failure" }
228
+ }],
229
+ history: []
230
+ }
231
+ }]
232
+ }]
233
+ };
234
+ //#endregion
235
+ //#region src/history-phase-1-day0-1.ts
236
+ const historyPhase1Day01Fixture = {
237
+ object: "whatsapp_business_account",
238
+ entry: [{
239
+ id: "waba_fixture_1",
240
+ changes: [{
241
+ field: "history",
242
+ value: {
243
+ messaging_product: "whatsapp",
244
+ metadata: {
245
+ display_phone_number: "15550000001",
246
+ phone_number_id: "phone_known"
247
+ },
248
+ request_id: "req_hist_1",
249
+ history: [{
250
+ phase: 1,
251
+ window: "day_0_1",
252
+ progress: {
253
+ current_phase: 1,
254
+ total_phases: 3,
255
+ started_at_day: 0,
256
+ completed_through_day: 1
257
+ },
258
+ messages: [{
259
+ id: "wamid.hist.0001",
260
+ from: "15550000002",
261
+ timestamp: "1783000000",
262
+ type: "text",
263
+ text: { body: "Can you confirm tomorrow's appointment?" }
264
+ }, {
265
+ id: "wamid.hist.0002",
266
+ from: "15550000001",
267
+ timestamp: "1783000060",
268
+ type: "text",
269
+ text: { body: "Confirmed for 10:00." }
270
+ }]
271
+ }]
272
+ }
273
+ }]
274
+ }]
275
+ };
276
+ //#endregion
277
+ //#region src/history-phase-2-day1-90.ts
278
+ const historyPhase2Day190Fixture = {
279
+ object: "whatsapp_business_account",
280
+ entry: [{
281
+ id: "waba_fixture_1",
282
+ changes: [{
283
+ field: "history",
284
+ value: {
285
+ messaging_product: "whatsapp",
286
+ metadata: {
287
+ display_phone_number: "15550000001",
288
+ phone_number_id: "phone_known"
289
+ },
290
+ request_id: "req_hist_1",
291
+ history: [{
292
+ phase: 2,
293
+ window: "day_1_90",
294
+ progress: {
295
+ current_phase: 2,
296
+ total_phases: 3,
297
+ started_at_day: 1,
298
+ completed_through_day: 90
299
+ },
300
+ messages: [{
301
+ id: "wamid.hist.0090",
302
+ from: "15550000003",
303
+ timestamp: "1777900000",
304
+ type: "text",
305
+ text: { body: "Please send the invoice again." }
306
+ }, {
307
+ id: "wamid.hist.0091",
308
+ from: "15550000001",
309
+ timestamp: "1777900180",
310
+ type: "text",
311
+ text: { body: "Invoice sent." }
312
+ }]
313
+ }]
314
+ }
315
+ }]
316
+ }]
317
+ };
318
+ //#endregion
319
+ //#region src/history-phase-3-day90-180.ts
320
+ const historyPhase3Day90180Fixture = {
321
+ object: "whatsapp_business_account",
322
+ entry: [{
323
+ id: "waba_fixture_1",
324
+ changes: [{
325
+ field: "history",
326
+ value: {
327
+ messaging_product: "whatsapp",
328
+ metadata: {
329
+ display_phone_number: "15550000001",
330
+ phone_number_id: "phone_known"
331
+ },
332
+ request_id: "req_hist_1",
333
+ history: [{
334
+ phase: 3,
335
+ window: "day_90_180",
336
+ progress: {
337
+ current_phase: 3,
338
+ total_phases: 3,
339
+ started_at_day: 90,
340
+ completed_through_day: 180,
341
+ complete: true
342
+ },
343
+ messages: [{
344
+ id: "wamid.hist.0180",
345
+ from: "15550000004",
346
+ timestamp: "1770120000",
347
+ type: "text",
348
+ text: { body: "Do you still have this product?" }
349
+ }]
350
+ }]
351
+ }
352
+ }]
353
+ }]
354
+ };
355
+ //#endregion
356
+ //#region src/history-status-only-chunk.ts
357
+ const historyStatusOnlyChunkFixture = {
358
+ object: "whatsapp_business_account",
359
+ entry: [{
360
+ id: "waba_fixture_1",
361
+ changes: [{
362
+ field: "history",
363
+ value: {
364
+ messaging_product: "whatsapp",
365
+ metadata: {
366
+ display_phone_number: "15550000001",
367
+ phone_number_id: "phone_known"
368
+ },
369
+ request_id: "req_hist_status_only",
370
+ history: [{
371
+ phase: 1,
372
+ statuses: [{
373
+ id: "wamid.hist.0002",
374
+ status: "read",
375
+ timestamp: "1783000120",
376
+ recipient_id: "15550000002"
377
+ }]
378
+ }]
379
+ }
380
+ }]
381
+ }]
382
+ };
383
+ //#endregion
384
+ //#region src/history-sync-error.ts
385
+ const historySyncErrorFixture = {
386
+ object: "whatsapp_business_account",
387
+ entry: [{
388
+ id: "waba_fixture_1",
389
+ changes: [{
390
+ field: "history",
391
+ value: {
392
+ messaging_product: "whatsapp",
393
+ metadata: {
394
+ display_phone_number: "15550000001",
395
+ phone_number_id: "phone_known"
396
+ },
397
+ request_id: "req_hist_error",
398
+ errors: [{
399
+ code: 2593109,
400
+ title: "History sync unavailable",
401
+ message: "The customer opted out of history sync.",
402
+ error_data: { reason: "history_opt_out" }
403
+ }],
404
+ history: []
405
+ }
406
+ }]
407
+ }]
408
+ };
409
+ //#endregion
410
+ //#region src/malformed-payload.ts
411
+ const malformedPayloadMissingPhoneNumberIdFixture = {
412
+ object: "whatsapp_business_account",
413
+ entry: [{
414
+ id: "waba_fixture_1",
415
+ changes: [{
416
+ field: "smb_message_echoes",
417
+ value: {
418
+ messaging_product: "whatsapp",
419
+ metadata: { display_phone_number: "15550000001" },
420
+ messages: [{
421
+ id: "wamid.echo.malformed.missing-phone.1",
422
+ from: "15550000001",
423
+ timestamp: "1783000500",
424
+ type: "text",
425
+ text: { body: "Missing phone_number_id." }
426
+ }]
427
+ }
428
+ }]
429
+ }]
430
+ };
431
+ const malformedPayloadEmptyEntryFixture = {
432
+ object: "whatsapp_business_account",
433
+ entry: []
434
+ };
435
+ const malformedPayloadUnknownFieldFixture = {
436
+ object: "whatsapp_business_account",
437
+ entry: [{
438
+ id: "waba_fixture_1",
439
+ changes: [{
440
+ field: "coexistence_fixture_unknown_field",
441
+ value: {
442
+ messaging_product: "whatsapp",
443
+ metadata: {
444
+ display_phone_number: "15550000001",
445
+ phone_number_id: "phone_known"
446
+ }
447
+ }
448
+ }]
449
+ }]
450
+ };
451
+ const malformedPayloadMissingObjectFixture = { entry: [{
452
+ id: "waba_fixture_1",
453
+ changes: []
454
+ }] };
455
+ //#endregion
456
+ //#region src/message-edit.ts
457
+ const messageEditFixture = {
458
+ object: "whatsapp_business_account",
459
+ entry: [{
460
+ id: "waba_fixture_1",
461
+ changes: [{
462
+ field: "messages",
463
+ value: {
464
+ messaging_product: "whatsapp",
465
+ metadata: {
466
+ display_phone_number: "15550000001",
467
+ phone_number_id: "phone_known"
468
+ },
469
+ contacts: [{
470
+ profile: { name: "Camila Customer" },
471
+ wa_id: "15550000001"
472
+ }],
473
+ messages: [{
474
+ from: "15550000001",
475
+ id: "wamid.edit.fixture.1",
476
+ timestamp: "1783000600",
477
+ type: "text",
478
+ edited: true,
479
+ text: { body: "Edited text" },
480
+ context: {
481
+ from: "15550000001",
482
+ id: "wamid.original.fixture.1"
483
+ }
484
+ }]
485
+ }
486
+ }]
487
+ }]
488
+ };
489
+ //#endregion
490
+ //#region src/message-revoke.ts
491
+ const messageRevokeFixture = {
492
+ object: "whatsapp_business_account",
493
+ entry: [{
494
+ id: "waba_fixture_1",
495
+ changes: [{
496
+ field: "messages",
497
+ value: {
498
+ messaging_product: "whatsapp",
499
+ metadata: {
500
+ display_phone_number: "15550000001",
501
+ phone_number_id: "phone_known"
502
+ },
503
+ contacts: [{
504
+ profile: { name: "Camila Customer" },
505
+ wa_id: "15550000001"
506
+ }],
507
+ messages: [{
508
+ from: "15550000001",
509
+ id: "wamid.revoke.fixture.1",
510
+ timestamp: "1783000660",
511
+ type: "text",
512
+ revoked: true,
513
+ context: {
514
+ from: "15550000001",
515
+ id: "wamid.original.fixture.2"
516
+ }
517
+ }]
518
+ }
519
+ }]
520
+ }]
521
+ };
522
+ //#endregion
523
+ //#region src/signature-test-payload.ts
524
+ const signatureTestPayloadFixture = {
525
+ object: "whatsapp_business_account",
526
+ entry: [{
527
+ id: "waba_fixture_1",
528
+ changes: [{
529
+ field: "smb_message_echoes",
530
+ value: {
531
+ messaging_product: "whatsapp",
532
+ metadata: {
533
+ display_phone_number: "15550000001",
534
+ phone_number_id: "phone_known"
535
+ },
536
+ messages: [{
537
+ id: "wamid.echo.signature.1",
538
+ from: "15550000001",
539
+ timestamp: "1783000600",
540
+ type: "text",
541
+ text: { body: "Payload for webhook signature verification tests." }
542
+ }]
543
+ }
544
+ }]
545
+ }]
546
+ };
547
+ //#endregion
548
+ //#region src/smb-app-state-sync-contact-add.ts
549
+ const smbAppStateSyncContactAddFixture = {
550
+ object: "whatsapp_business_account",
551
+ entry: [{
552
+ id: "waba_fixture_1",
553
+ changes: [{
554
+ field: "smb_app_state_sync",
555
+ value: {
556
+ messaging_product: "whatsapp",
557
+ metadata: {
558
+ display_phone_number: "15550000001",
559
+ phone_number_id: "phone_known"
560
+ },
561
+ request_id: "req_appstate_1",
562
+ contacts: [{
563
+ wa_id: "15550000009",
564
+ profile: { name: "Ada Customer" }
565
+ }]
566
+ }
567
+ }]
568
+ }]
569
+ };
570
+ //#endregion
571
+ //#region src/smb-app-state-sync-contact-remove.ts
572
+ const smbAppStateSyncContactRemoveFixture = {
573
+ object: "whatsapp_business_account",
574
+ entry: [{
575
+ id: "waba_fixture_1",
576
+ changes: [{
577
+ field: "smb_app_state_sync",
578
+ value: {
579
+ messaging_product: "whatsapp",
580
+ metadata: {
581
+ display_phone_number: "15550000001",
582
+ phone_number_id: "phone_known"
583
+ },
584
+ request_id: "req_appstate_1",
585
+ contacts: [{
586
+ wa_id: "15550000009",
587
+ removed: true
588
+ }]
589
+ }
590
+ }]
591
+ }]
592
+ };
593
+ //#endregion
594
+ //#region src/smb-app-state-sync-error.ts
595
+ const smbAppStateSyncErrorFixture = {
596
+ object: "whatsapp_business_account",
597
+ entry: [{
598
+ id: "waba_fixture_1",
599
+ changes: [{
600
+ field: "smb_app_state_sync",
601
+ value: {
602
+ messaging_product: "whatsapp",
603
+ metadata: {
604
+ display_phone_number: "15550000001",
605
+ phone_number_id: "phone_known"
606
+ },
607
+ request_id: "req_contacts_error",
608
+ sync_type: "smb_app_state_sync",
609
+ errors: [{
610
+ code: 131051,
611
+ title: "Contact sync unavailable",
612
+ message: "The business app state could not be synchronized",
613
+ error_data: { details: "smb_app_state_sync_failed" }
614
+ }]
615
+ }
616
+ }]
617
+ }]
618
+ };
619
+ //#endregion
620
+ //#region src/smb-message-echo.ts
621
+ const smbMessageEchoFixture = {
622
+ object: "whatsapp_business_account",
623
+ entry: [{
624
+ id: "waba_fixture_1",
625
+ changes: [{
626
+ field: "smb_message_echoes",
627
+ value: {
628
+ messaging_product: "whatsapp",
629
+ metadata: {
630
+ display_phone_number: "15550000001",
631
+ phone_number_id: "phone_known"
632
+ },
633
+ messages: [{
634
+ id: "wamid.echo.fixture.1",
635
+ from: "15550000001",
636
+ timestamp: "1783000300",
637
+ type: "text",
638
+ text: { body: "Sent from the WhatsApp Business app." }
639
+ }]
640
+ }
641
+ }]
642
+ }]
643
+ };
644
+ //#endregion
645
+ //#region src/unknown-phone-number.ts
646
+ const unknownPhoneNumberFixture = {
647
+ object: "whatsapp_business_account",
648
+ entry: [{
649
+ id: "waba_fixture_1",
650
+ changes: [{
651
+ field: "smb_message_echoes",
652
+ value: {
653
+ messaging_product: "whatsapp",
654
+ metadata: {
655
+ display_phone_number: "15550000001",
656
+ phone_number_id: "phone_unknown"
657
+ },
658
+ messages: [{
659
+ id: "wamid.echo.unknown.1",
660
+ from: "15550000001",
661
+ timestamp: "1783000400",
662
+ type: "text",
663
+ text: { body: "Valid echo for an unmapped number." }
664
+ }]
665
+ }
666
+ }]
667
+ }]
668
+ };
669
+ //#endregion
670
+ //#region src/unsupported-message-type.ts
671
+ const unsupportedMessageTypeFixture = {
672
+ object: "whatsapp_business_account",
673
+ entry: [{
674
+ id: "waba_fixture_1",
675
+ changes: [{
676
+ field: "messages",
677
+ value: {
678
+ messaging_product: "whatsapp",
679
+ metadata: {
680
+ display_phone_number: "15550000001",
681
+ phone_number_id: "phone_known"
682
+ },
683
+ contacts: [{
684
+ profile: { name: "Camila Customer" },
685
+ wa_id: "15550000001"
686
+ }],
687
+ messages: [{
688
+ from: "15550000001",
689
+ id: "wamid.unsupported.fixture.1",
690
+ timestamp: "1783000500",
691
+ type: "unsupported",
692
+ errors: [{
693
+ code: 131051,
694
+ title: "Unsupported message type",
695
+ message: "The message type is not supported",
696
+ error_data: { details: "unsupported_message_type" }
697
+ }]
698
+ }]
699
+ }
700
+ }]
701
+ }]
702
+ };
703
+ //#endregion
704
+ //#region src/index.ts
705
+ const coexistenceWebhookFixtures = {
706
+ historyPhase1Day01Fixture,
707
+ historyPhase2Day190Fixture,
708
+ historyPhase3Day90180Fixture,
709
+ historyStatusOnlyChunkFixture,
710
+ historySyncErrorFixture,
711
+ historyOtherErrorFixture,
712
+ historyMediaWithAssetIdFixture,
713
+ historyMediaMissingAssetIdAfterDay14Fixture,
714
+ historyDuplicateChunkFixture,
715
+ historyGroupExcludedFixture,
716
+ smbAppStateSyncContactAddFixture,
717
+ smbAppStateSyncContactRemoveFixture,
718
+ smbAppStateSyncErrorFixture,
719
+ smbMessageEchoFixture,
720
+ accountUpdatePartnerRemovedFixture,
721
+ accountOffboardedFixture,
722
+ accountReconnectedFixture,
723
+ unsupportedMessageTypeFixture,
724
+ messageEditFixture,
725
+ messageRevokeFixture,
726
+ malformedPayloadUnknownFieldFixture,
727
+ malformedPayloadMissingPhoneNumberIdFixture,
728
+ malformedPayloadEmptyEntryFixture,
729
+ malformedPayloadMissingObjectFixture,
730
+ unknownPhoneNumberFixture,
731
+ signatureTestPayloadFixture
732
+ };
733
+ //#endregion
734
+ export { accountOffboardedFixture, accountReconnectedFixture, accountUpdatePartnerRemovedFixture, coexistenceWebhookFixtures, historyDuplicateChunkFixture, historyGroupExcludedFixture, historyMediaMissingAssetIdAfterDay14Fixture, historyMediaWithAssetIdFixture, historyOtherErrorFixture, historyPhase1Day01Fixture, historyPhase2Day190Fixture, historyPhase3Day90180Fixture, historyStatusOnlyChunkFixture, historySyncErrorFixture, malformedPayloadEmptyEntryFixture, malformedPayloadMissingObjectFixture, malformedPayloadMissingPhoneNumberIdFixture, malformedPayloadUnknownFieldFixture, messageEditFixture, messageRevokeFixture, signatureTestPayloadFixture, smbAppStateSyncContactAddFixture, smbAppStateSyncContactRemoveFixture, smbAppStateSyncErrorFixture, smbMessageEchoFixture, unknownPhoneNumberFixture, unsupportedMessageTypeFixture };