customer-module-frontend 1.0.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.
Files changed (87) hide show
  1. package/.cursor/rules/context.md +306 -0
  2. package/.cursor/rules/guardrails.md +35 -0
  3. package/.env +1 -0
  4. package/.github/workflows/publish-to-npm-beta.yml +56 -0
  5. package/.github/workflows/publish-to-npm.yml +58 -0
  6. package/README.md +73 -0
  7. package/eslint.config.js +23 -0
  8. package/index.html +13 -0
  9. package/package.json +43 -0
  10. package/postcss-unwrap-layers.js +31 -0
  11. package/postcss.config.js +11 -0
  12. package/public/vite.svg +1 -0
  13. package/src/App.css +40 -0
  14. package/src/App.tsx +58 -0
  15. package/src/assets/accounts.svg +3 -0
  16. package/src/assets/at_the_rate.svg +10 -0
  17. package/src/assets/buildings.svg +3 -0
  18. package/src/assets/chat.svg +3 -0
  19. package/src/assets/close.svg +3 -0
  20. package/src/assets/contacts.svg +3 -0
  21. package/src/assets/conversation.svg +10 -0
  22. package/src/assets/customers.svg +10 -0
  23. package/src/assets/details.svg +3 -0
  24. package/src/assets/domain.svg +10 -0
  25. package/src/assets/edit.svg +15 -0
  26. package/src/assets/email.svg +3 -0
  27. package/src/assets/google.svg +8 -0
  28. package/src/assets/inbox.svg +0 -0
  29. package/src/assets/message.svg +3 -0
  30. package/src/assets/no-data.svg +9 -0
  31. package/src/assets/open_in_a_new_tab.svg +10 -0
  32. package/src/assets/phone.svg +3 -0
  33. package/src/assets/react.svg +1 -0
  34. package/src/assets/search.svg +3 -0
  35. package/src/assets/search_typing.svg +4 -0
  36. package/src/assets/sm_contacts.svg +3 -0
  37. package/src/assets/sm_inbox.svg +3 -0
  38. package/src/assets/sm_slider.svg +3 -0
  39. package/src/assets/status-resolved.svg +3 -0
  40. package/src/assets/status-snoozed.svg +4 -0
  41. package/src/assets/status_open.svg +1 -0
  42. package/src/components/AccountContacts/index.tsx +107 -0
  43. package/src/components/AccountDetails/index.tsx +102 -0
  44. package/src/components/AccountsConversation/index.tsx +75 -0
  45. package/src/components/Avatar/constants.tsx +45 -0
  46. package/src/components/Avatar/index.tsx +42 -0
  47. package/src/components/BreadcrumbsSection/index.tsx +16 -0
  48. package/src/components/Card/index.tsx +31 -0
  49. package/src/components/Card/types.ts +10 -0
  50. package/src/components/ContactConversation/Converation.tsx +14 -0
  51. package/src/components/ContactConversation/index.tsx +81 -0
  52. package/src/components/ContactDetails/index.tsx +111 -0
  53. package/src/components/Contacts/EditContact.tsx +213 -0
  54. package/src/components/Contacts/constants/index.tsx +24 -0
  55. package/src/components/Contacts/index.tsx +171 -0
  56. package/src/components/ConversationBox/constants.tsx +99 -0
  57. package/src/components/ConversationBox/index.tsx +147 -0
  58. package/src/components/ConversationBox/types.ts +20 -0
  59. package/src/components/CustomersLayout/index.tsx +20 -0
  60. package/src/components/DetailsCard/index.tsx +31 -0
  61. package/src/components/DetailsCard/types.ts +10 -0
  62. package/src/components/EmptyData/NoDataFound.tsx +31 -0
  63. package/src/components/Header/index.tsx +55 -0
  64. package/src/components/Icon/index.tsx +93 -0
  65. package/src/components/Icon/types.ts +13 -0
  66. package/src/components/Listing/AccountTable.tsx +47 -0
  67. package/src/components/Listing/ContactTable.tsx +76 -0
  68. package/src/components/RightPanel/AccountPanel.tsx +123 -0
  69. package/src/components/RightPanel/ContactPanel.tsx +142 -0
  70. package/src/components/RightPanel/index.tsx +167 -0
  71. package/src/components/Search/SearchDialog.tsx +150 -0
  72. package/src/components/TabsSection/index.tsx +49 -0
  73. package/src/constants/index.tsx +645 -0
  74. package/src/hooks/useBreadcrumb.tsx +93 -0
  75. package/src/index.css +315 -0
  76. package/src/main.tsx +14 -0
  77. package/src/pages/AccountDetail.tsx +68 -0
  78. package/src/pages/Accounts.tsx +12 -0
  79. package/src/pages/ContactDetail.tsx +55 -0
  80. package/src/pages/Contacts.tsx +12 -0
  81. package/src/stores/count.tsx +17 -0
  82. package/src/types/index.ts +0 -0
  83. package/tailwind.config.js +179 -0
  84. package/tsconfig.app.json +36 -0
  85. package/tsconfig.json +7 -0
  86. package/tsconfig.node.json +26 -0
  87. package/vite.config.ts +31 -0
@@ -0,0 +1,645 @@
1
+ export const accountData = {
2
+ "status": "success",
3
+ "message": null,
4
+ "data": {
5
+ "results": [
6
+ {
7
+ "id": 123,
8
+ "name": "Acme Corp",
9
+ "generated_name": "acme.com",
10
+ "description": "Technology company",
11
+ "created_at": "2025-01-15T10:30:00Z",
12
+ "updated_at": "2025-01-20T14:45:00Z",
13
+ "updated_by": "user@example.com",
14
+ "domains": [
15
+ { "id": 1, "name": "acme.com", "description": "Primary domain" }
16
+ ]
17
+ },
18
+ {
19
+ "id": 124,
20
+ "name": "TechNova Inc",
21
+ "generated_name": "technova.io",
22
+ "description": "Software development",
23
+ "created_at": "2025-01-10T09:00:00Z",
24
+ "updated_at": "2025-01-18T11:30:00Z",
25
+ "updated_by": "admin@example.com",
26
+ "domains": [
27
+ { "id": 2, "name": "technova.io", "description": "Main website" }
28
+ ]
29
+ },
30
+ {
31
+ "id": 125,
32
+ "name": "Global Solutions",
33
+ "generated_name": "globalsolutions.com",
34
+ "description": "Consulting services",
35
+ "created_at": "2025-01-08T14:20:00Z",
36
+ "updated_at": "2025-01-19T16:00:00Z",
37
+ "updated_by": "manager@example.com",
38
+ "domains": [
39
+ { "id": 3, "name": "globalsolutions.com", "description": "Corporate site" }
40
+ ]
41
+ },
42
+ {
43
+ "id": 126,
44
+ "name": "CloudBase Systems",
45
+ "generated_name": "cloudbase.net",
46
+ "description": "Cloud infrastructure",
47
+ "created_at": "2025-01-05T08:15:00Z",
48
+ "updated_at": "2025-01-17T10:45:00Z",
49
+ "updated_by": "ops@example.com",
50
+ "domains": [
51
+ { "id": 4, "name": "cloudbase.net", "description": "Service portal" }
52
+ ]
53
+ },
54
+ {
55
+ "id": 127,
56
+ "name": "DataFlow Analytics",
57
+ "generated_name": "dataflow.ai",
58
+ "description": "Data analytics platform",
59
+ "created_at": "2025-01-03T12:00:00Z",
60
+ "updated_at": "2025-01-16T09:30:00Z",
61
+ "updated_by": "data@example.com",
62
+ "domains": [
63
+ { "id": 5, "name": "dataflow.ai", "description": "Analytics dashboard" }
64
+ ]
65
+ },
66
+ {
67
+ "id": 128,
68
+ "name": "SecureNet Corp",
69
+ "generated_name": "securenet.com",
70
+ "description": "Cybersecurity solutions",
71
+ "created_at": "2025-01-02T07:45:00Z",
72
+ "updated_at": "2025-01-15T13:20:00Z",
73
+ "updated_by": "security@example.com",
74
+ "domains": [
75
+ { "id": 6, "name": "securenet.com", "description": "Security portal" }
76
+ ]
77
+ },
78
+ {
79
+ "id": 129,
80
+ "name": "InnovateTech",
81
+ "generated_name": "innovatetech.co",
82
+ "description": "R&D and innovation",
83
+ "created_at": "2024-12-28T10:30:00Z",
84
+ "updated_at": "2025-01-14T15:00:00Z",
85
+ "updated_by": "research@example.com",
86
+ "domains": [
87
+ { "id": 7, "name": "innovatetech.co", "description": "Innovation hub" }
88
+ ]
89
+ },
90
+ {
91
+ "id": 130,
92
+ "name": "FinServe Pro",
93
+ "generated_name": "finservepro.com",
94
+ "description": "Financial services",
95
+ "created_at": "2024-12-25T09:00:00Z",
96
+ "updated_at": "2025-01-13T11:15:00Z",
97
+ "updated_by": "finance@example.com",
98
+ "domains": [
99
+ { "id": 8, "name": "finservepro.com", "description": "Client portal" }
100
+ ]
101
+ },
102
+ {
103
+ "id": 131,
104
+ "name": "HealthCare Plus",
105
+ "generated_name": "healthcareplus.org",
106
+ "description": "Healthcare technology",
107
+ "created_at": "2024-12-20T14:00:00Z",
108
+ "updated_at": "2025-01-12T16:30:00Z",
109
+ "updated_by": "health@example.com",
110
+ "domains": [
111
+ { "id": 9, "name": "healthcareplus.org", "description": "Patient portal" }
112
+ ]
113
+ },
114
+ {
115
+ "id": 132,
116
+ "name": "EduLearn Systems",
117
+ "generated_name": "edulearn.edu",
118
+ "description": "Education technology",
119
+ "created_at": "2024-12-18T08:30:00Z",
120
+ "updated_at": "2025-01-11T10:00:00Z",
121
+ "updated_by": "edu@example.com",
122
+ "domains": [
123
+ { "id": 10, "name": "edulearn.edu", "description": "Learning platform" }
124
+ ]
125
+ },
126
+ {
127
+ "id": 133,
128
+ "name": "RetailMax",
129
+ "generated_name": "retailmax.com",
130
+ "description": "Retail solutions",
131
+ "created_at": "2024-12-15T11:45:00Z",
132
+ "updated_at": "2025-01-10T14:20:00Z",
133
+ "updated_by": "retail@example.com",
134
+ "domains": [
135
+ { "id": 11, "name": "retailmax.com", "description": "E-commerce site" }
136
+ ]
137
+ },
138
+ {
139
+ "id": 134,
140
+ "name": "LogiTrans Inc",
141
+ "generated_name": "logitrans.io",
142
+ "description": "Logistics and transport",
143
+ "created_at": "2024-12-12T13:00:00Z",
144
+ "updated_at": "2025-01-09T08:45:00Z",
145
+ "updated_by": "logistics@example.com",
146
+ "domains": [
147
+ { "id": 12, "name": "logitrans.io", "description": "Tracking portal" }
148
+ ]
149
+ },
150
+ {
151
+ "id": 135,
152
+ "name": "MediaStream",
153
+ "generated_name": "mediastream.tv",
154
+ "description": "Media and entertainment",
155
+ "created_at": "2024-12-10T16:30:00Z",
156
+ "updated_at": "2025-01-08T12:00:00Z",
157
+ "updated_by": "media@example.com",
158
+ "domains": [
159
+ { "id": 13, "name": "mediastream.tv", "description": "Streaming platform" }
160
+ ]
161
+ },
162
+ {
163
+ "id": 136,
164
+ "name": "GreenEnergy Co",
165
+ "generated_name": "greenenergy.eco",
166
+ "description": "Renewable energy",
167
+ "created_at": "2024-12-08T09:15:00Z",
168
+ "updated_at": "2025-01-07T15:30:00Z",
169
+ "updated_by": "energy@example.com",
170
+ "domains": [
171
+ { "id": 14, "name": "greenenergy.eco", "description": "Sustainability portal" }
172
+ ]
173
+ },
174
+ {
175
+ "id": 137,
176
+ "name": "BuildRight Construction",
177
+ "generated_name": "buildright.com",
178
+ "description": "Construction management",
179
+ "created_at": "2024-12-05T10:00:00Z",
180
+ "updated_at": "2025-01-06T11:45:00Z",
181
+ "updated_by": "build@example.com",
182
+ "domains": [
183
+ { "id": 15, "name": "buildright.com", "description": "Project portal" }
184
+ ]
185
+ },
186
+ {
187
+ "id": 138,
188
+ "name": "FoodTech Solutions",
189
+ "generated_name": "foodtech.io",
190
+ "description": "Food technology",
191
+ "created_at": "2024-12-03T14:30:00Z",
192
+ "updated_at": "2025-01-05T09:00:00Z",
193
+ "updated_by": "food@example.com",
194
+ "domains": [
195
+ { "id": 16, "name": "foodtech.io", "description": "Ordering system" }
196
+ ]
197
+ },
198
+ {
199
+ "id": 139,
200
+ "name": "TravelEase",
201
+ "generated_name": "travelease.com",
202
+ "description": "Travel and hospitality",
203
+ "created_at": "2024-12-01T07:00:00Z",
204
+ "updated_at": "2025-01-04T13:15:00Z",
205
+ "updated_by": "travel@example.com",
206
+ "domains": [
207
+ { "id": 17, "name": "travelease.com", "description": "Booking platform" }
208
+ ]
209
+ },
210
+ {
211
+ "id": 140,
212
+ "name": "LegalPro Services",
213
+ "generated_name": "legalpro.law",
214
+ "description": "Legal technology",
215
+ "created_at": "2024-11-28T11:30:00Z",
216
+ "updated_at": "2025-01-03T16:00:00Z",
217
+ "updated_by": "legal@example.com",
218
+ "domains": [
219
+ { "id": 18, "name": "legalpro.law", "description": "Case management" }
220
+ ]
221
+ },
222
+ {
223
+ "id": 141,
224
+ "name": "AutoDrive Tech",
225
+ "generated_name": "autodrive.auto",
226
+ "description": "Automotive technology",
227
+ "created_at": "2024-11-25T08:45:00Z",
228
+ "updated_at": "2025-01-02T10:30:00Z",
229
+ "updated_by": "auto@example.com",
230
+ "domains": [
231
+ { "id": 19, "name": "autodrive.auto", "description": "Vehicle portal" }
232
+ ]
233
+ },
234
+ {
235
+ "id": 142,
236
+ "name": "SmartHome Inc",
237
+ "generated_name": "smarthome.io",
238
+ "description": "IoT and smart devices",
239
+ "created_at": "2024-11-22T15:00:00Z",
240
+ "updated_at": "2025-01-01T14:45:00Z",
241
+ "updated_by": "iot@example.com",
242
+ "domains": [
243
+ { "id": 20, "name": "smarthome.io", "description": "Device management" }
244
+ ]
245
+ }
246
+ ],
247
+ "total_results": 150,
248
+ "page_number": 1,
249
+ "page_size": 20
250
+ }
251
+ }
252
+
253
+
254
+ export const contactsData =
255
+ {
256
+ "status": "success",
257
+ "message": null,
258
+ "data": {
259
+ "results": [
260
+ {
261
+ "id": 456,
262
+ "name": "John Doe",
263
+ "email": "john@acme.com",
264
+ "phone_number": "+1234567890",
265
+ "generated_name": "john",
266
+ "created_at": "2025-01-10T08:00:00Z",
267
+ "updated_at": "2025-01-18T12:00:00Z",
268
+ "company": {
269
+ "id": 123,
270
+ "name": "Acme Corp",
271
+ "domains": {
272
+ "id": 1,
273
+ "name": "acme.com",
274
+ "description": "Primary domain"
275
+ }
276
+ },
277
+ "channel_type": "email"
278
+ },
279
+ {
280
+ "id": 457,
281
+ "name": "Jane Smith",
282
+ "email": "jane@technova.io",
283
+ "phone_number": "+1987654321",
284
+ "generated_name": "jane",
285
+ "created_at": "2025-01-09T09:30:00Z",
286
+ "updated_at": "2025-01-17T14:00:00Z",
287
+ "company": {
288
+ "id": 124,
289
+ "name": "TechNova Inc",
290
+ "domains": {
291
+ "id": 2,
292
+ "name": "technova.io",
293
+ "description": "Main website"
294
+ }
295
+ },
296
+ "channel_type": "email"
297
+ },
298
+ {
299
+ "id": 458,
300
+ "name": "Michael Johnson",
301
+ "email": "michael@globalsolutions.com",
302
+ "phone_number": "+1122334455",
303
+ "generated_name": "michael",
304
+ "created_at": "2025-01-08T11:15:00Z",
305
+ "updated_at": "2025-01-16T10:30:00Z",
306
+ "company": {
307
+ "id": 125,
308
+ "name": "Global Solutions",
309
+ "domains": {
310
+ "id": 3,
311
+ "name": "globalsolutions.com",
312
+ "description": "Corporate site"
313
+ }
314
+ },
315
+ "channel_type": "phone"
316
+ },
317
+ {
318
+ "id": 459,
319
+ "name": "Emily Davis",
320
+ "email": "emily@cloudbase.net",
321
+ "phone_number": "+1555666777",
322
+ "generated_name": "emily",
323
+ "created_at": "2025-01-07T14:45:00Z",
324
+ "updated_at": "2025-01-15T16:20:00Z",
325
+ "company": {
326
+ "id": 126,
327
+ "name": "CloudBase Systems",
328
+ "domains": {
329
+ "id": 4,
330
+ "name": "cloudbase.net",
331
+ "description": "Service portal"
332
+ }
333
+ },
334
+ "channel_type": "email"
335
+ },
336
+ {
337
+ "id": 460,
338
+ "name": "David Wilson",
339
+ "email": "david@dataflow.ai",
340
+ "phone_number": "+1888999000",
341
+ "generated_name": "david",
342
+ "created_at": "2025-01-06T08:00:00Z",
343
+ "updated_at": "2025-01-14T12:45:00Z",
344
+ "company": {
345
+ "id": 127,
346
+ "name": "DataFlow Analytics",
347
+ "domains": {
348
+ "id": 5,
349
+ "name": "dataflow.ai",
350
+ "description": "Analytics dashboard"
351
+ }
352
+ },
353
+ "channel_type": "chat"
354
+ },
355
+ {
356
+ "id": 461,
357
+ "name": "Sarah Brown",
358
+ "email": "sarah@securenet.com",
359
+ "phone_number": "+1333444555",
360
+ "generated_name": "sarah",
361
+ "created_at": "2025-01-05T10:30:00Z",
362
+ "updated_at": "2025-01-13T09:15:00Z",
363
+ "company": {
364
+ "id": 128,
365
+ "name": "SecureNet Corp",
366
+ "domains": {
367
+ "id": 6,
368
+ "name": "securenet.com",
369
+ "description": "Security portal"
370
+ }
371
+ },
372
+ "channel_type": "email"
373
+ },
374
+ {
375
+ "id": 462,
376
+ "name": "Chris Taylor",
377
+ "email": "chris@innovatetech.co",
378
+ "phone_number": "+1777888999",
379
+ "generated_name": "chris",
380
+ "created_at": "2025-01-04T13:00:00Z",
381
+ "updated_at": "2025-01-12T15:30:00Z",
382
+ "company": {
383
+ "id": 129,
384
+ "name": "InnovateTech",
385
+ "domains": {
386
+ "id": 7,
387
+ "name": "innovatetech.co",
388
+ "description": "Innovation hub"
389
+ }
390
+ },
391
+ "channel_type": "phone"
392
+ },
393
+ {
394
+ "id": 463,
395
+ "name": "Amanda Martinez",
396
+ "email": "amanda@finservepro.com",
397
+ "phone_number": "+1666777888",
398
+ "generated_name": "amanda",
399
+ "created_at": "2025-01-03T09:45:00Z",
400
+ "updated_at": "2025-01-11T11:00:00Z",
401
+ "company": {
402
+ "id": 130,
403
+ "name": "FinServe Pro",
404
+ "domains": {
405
+ "id": 8,
406
+ "name": "finservepro.com",
407
+ "description": "Client portal"
408
+ }
409
+ },
410
+ "channel_type": "email"
411
+ },
412
+ {
413
+ "id": 464,
414
+ "name": "Robert Garcia",
415
+ "email": "robert@healthcareplus.org",
416
+ "phone_number": "+1444555666",
417
+ "generated_name": "robert",
418
+ "created_at": "2025-01-02T15:20:00Z",
419
+ "updated_at": "2025-01-10T08:45:00Z",
420
+ "company": {
421
+ "id": 131,
422
+ "name": "HealthCare Plus",
423
+ "domains": {
424
+ "id": 9,
425
+ "name": "healthcareplus.org",
426
+ "description": "Patient portal"
427
+ }
428
+ },
429
+ "channel_type": "email"
430
+ },
431
+ {
432
+ "id": 465,
433
+ "name": "Lisa Anderson",
434
+ "email": "lisa@edulearn.edu",
435
+ "phone_number": "+1222333444",
436
+ "generated_name": "lisa",
437
+ "created_at": "2025-01-01T11:00:00Z",
438
+ "updated_at": "2025-01-09T14:30:00Z",
439
+ "company": {
440
+ "id": 132,
441
+ "name": "EduLearn Systems",
442
+ "domains": {
443
+ "id": 10,
444
+ "name": "edulearn.edu",
445
+ "description": "Learning platform"
446
+ }
447
+ },
448
+ "channel_type": "chat"
449
+ },
450
+ {
451
+ "id": 466,
452
+ "name": "Kevin Thomas",
453
+ "email": "kevin@retailmax.com",
454
+ "phone_number": "+1999000111",
455
+ "generated_name": "kevin",
456
+ "created_at": "2024-12-31T08:30:00Z",
457
+ "updated_at": "2025-01-08T10:15:00Z",
458
+ "company": {
459
+ "id": 133,
460
+ "name": "RetailMax",
461
+ "domains": {
462
+ "id": 11,
463
+ "name": "retailmax.com",
464
+ "description": "E-commerce site"
465
+ }
466
+ },
467
+ "channel_type": "email"
468
+ },
469
+ {
470
+ "id": 467,
471
+ "name": "Jennifer White",
472
+ "email": "jennifer@logitrans.io",
473
+ "phone_number": "+1111222333",
474
+ "generated_name": "jennifer",
475
+ "created_at": "2024-12-30T14:15:00Z",
476
+ "updated_at": "2025-01-07T16:45:00Z",
477
+ "company": {
478
+ "id": 134,
479
+ "name": "LogiTrans Inc",
480
+ "domains": {
481
+ "id": 12,
482
+ "name": "logitrans.io",
483
+ "description": "Tracking portal"
484
+ }
485
+ },
486
+ "channel_type": "phone"
487
+ },
488
+ {
489
+ "id": 468,
490
+ "name": "Daniel Harris",
491
+ "email": "daniel@mediastream.tv",
492
+ "phone_number": "+1000111222",
493
+ "generated_name": "daniel",
494
+ "created_at": "2024-12-29T10:00:00Z",
495
+ "updated_at": "2025-01-06T13:00:00Z",
496
+ "company": {
497
+ "id": 135,
498
+ "name": "MediaStream",
499
+ "domains": {
500
+ "id": 13,
501
+ "name": "mediastream.tv",
502
+ "description": "Streaming platform"
503
+ }
504
+ },
505
+ "channel_type": "email"
506
+ },
507
+ {
508
+ "id": 469,
509
+ "name": "Michelle Clark",
510
+ "email": "michelle@greenenergy.eco",
511
+ "phone_number": "+1888000111",
512
+ "generated_name": "michelle",
513
+ "created_at": "2024-12-28T12:30:00Z",
514
+ "updated_at": "2025-01-05T09:30:00Z",
515
+ "company": {
516
+ "id": 136,
517
+ "name": "GreenEnergy Co",
518
+ "domains": {
519
+ "id": 14,
520
+ "name": "greenenergy.eco",
521
+ "description": "Sustainability portal"
522
+ }
523
+ },
524
+ "channel_type": "email"
525
+ },
526
+ {
527
+ "id": 470,
528
+ "name": "James Lewis",
529
+ "email": "james@buildright.com",
530
+ "phone_number": "+1777000888",
531
+ "generated_name": "james",
532
+ "created_at": "2024-12-27T09:15:00Z",
533
+ "updated_at": "2025-01-04T15:00:00Z",
534
+ "company": {
535
+ "id": 137,
536
+ "name": "BuildRight Construction",
537
+ "domains": {
538
+ "id": 15,
539
+ "name": "buildright.com",
540
+ "description": "Project portal"
541
+ }
542
+ },
543
+ "channel_type": "chat"
544
+ },
545
+ {
546
+ "id": 471,
547
+ "name": "Patricia Walker",
548
+ "email": "patricia@foodtech.io",
549
+ "phone_number": "+1666000777",
550
+ "generated_name": "patricia",
551
+ "created_at": "2024-12-26T15:45:00Z",
552
+ "updated_at": "2025-01-03T11:20:00Z",
553
+ "company": {
554
+ "id": 138,
555
+ "name": "FoodTech Solutions",
556
+ "domains": {
557
+ "id": 16,
558
+ "name": "foodtech.io",
559
+ "description": "Ordering system"
560
+ }
561
+ },
562
+ "channel_type": "email"
563
+ },
564
+ {
565
+ "id": 472,
566
+ "name": "Mark Robinson",
567
+ "email": "mark@travelease.com",
568
+ "phone_number": "+1555000666",
569
+ "generated_name": "mark",
570
+ "created_at": "2024-12-25T08:00:00Z",
571
+ "updated_at": "2025-01-02T14:45:00Z",
572
+ "company": {
573
+ "id": 139,
574
+ "name": "TravelEase",
575
+ "domains": {
576
+ "id": 17,
577
+ "name": "travelease.com",
578
+ "description": "Booking platform"
579
+ }
580
+ },
581
+ "channel_type": "phone"
582
+ },
583
+ {
584
+ "id": 473,
585
+ "name": "Elizabeth Hall",
586
+ "email": "elizabeth@legalpro.law",
587
+ "phone_number": "+1444000555",
588
+ "generated_name": "elizabeth",
589
+ "created_at": "2024-12-24T11:30:00Z",
590
+ "updated_at": "2025-01-01T10:00:00Z",
591
+ "company": {
592
+ "id": 140,
593
+ "name": "LegalPro Services",
594
+ "domains": {
595
+ "id": 18,
596
+ "name": "legalpro.law",
597
+ "description": "Case management"
598
+ }
599
+ },
600
+ "channel_type": "email"
601
+ },
602
+ {
603
+ "id": 474,
604
+ "name": "Steven Young",
605
+ "email": "steven@autodrive.auto",
606
+ "phone_number": "+1333000444",
607
+ "generated_name": "steven",
608
+ "created_at": "2024-12-23T14:00:00Z",
609
+ "updated_at": "2024-12-31T16:30:00Z",
610
+ "company": {
611
+ "id": 141,
612
+ "name": "AutoDrive Tech",
613
+ "domains": {
614
+ "id": 19,
615
+ "name": "autodrive.auto",
616
+ "description": "Vehicle portal"
617
+ }
618
+ },
619
+ "channel_type": "email"
620
+ },
621
+ {
622
+ "id": 475,
623
+ "name": "Nancy King",
624
+ "email": "nancy@smarthome.io",
625
+ "phone_number": "+1222000333",
626
+ "generated_name": "nancy",
627
+ "created_at": "2024-12-22T09:45:00Z",
628
+ "updated_at": "2024-12-30T12:15:00Z",
629
+ "company": {
630
+ "id": 142,
631
+ "name": "SmartHome Inc",
632
+ "domains": {
633
+ "id": 20,
634
+ "name": "smarthome.io",
635
+ "description": "Device management"
636
+ }
637
+ },
638
+ "channel_type": "chat"
639
+ }
640
+ ],
641
+ "total_results": 200,
642
+ "page_number": 1,
643
+ "page_size": 20
644
+ }
645
+ }