@kl1/contracts 1.0.77 → 1.0.79

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 (73) hide show
  1. package/dist/index.js +2391 -2040
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +2390 -2040
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/call-log/schema.d.ts +6 -6
  6. package/dist/src/call-log/validation.d.ts +4 -4
  7. package/dist/src/channel/index.d.ts +92 -88
  8. package/dist/src/channel/index.d.ts.map +1 -1
  9. package/dist/src/channel/schema.d.ts +4 -4
  10. package/dist/src/channel/schema.d.ts.map +1 -1
  11. package/dist/src/channel/validation.d.ts +3 -3
  12. package/dist/src/chat/index.d.ts +7108 -3826
  13. package/dist/src/chat/index.d.ts.map +1 -1
  14. package/dist/src/chat/schema.d.ts +3391 -1087
  15. package/dist/src/chat/schema.d.ts.map +1 -1
  16. package/dist/src/chat/validation.d.ts +1945 -304
  17. package/dist/src/chat/validation.d.ts.map +1 -1
  18. package/dist/src/comment/index.d.ts +584 -584
  19. package/dist/src/comment/schema.d.ts +144 -144
  20. package/dist/src/contact/index.d.ts +4 -1
  21. package/dist/src/contact/index.d.ts.map +1 -1
  22. package/dist/src/contact/schema.d.ts +156 -0
  23. package/dist/src/contact/schema.d.ts.map +1 -1
  24. package/dist/src/contract.d.ts +25050 -10486
  25. package/dist/src/contract.d.ts.map +1 -1
  26. package/dist/src/cx-log/index.d.ts +948 -205
  27. package/dist/src/cx-log/index.d.ts.map +1 -1
  28. package/dist/src/cx-log/schema.d.ts +920 -263
  29. package/dist/src/cx-log/schema.d.ts.map +1 -1
  30. package/dist/src/dashboard/index.d.ts +4 -4
  31. package/dist/src/dashboard/schema.d.ts +2 -2
  32. package/dist/src/index.d.ts +0 -1
  33. package/dist/src/index.d.ts.map +1 -1
  34. package/dist/src/instagram/index.d.ts +2162 -343
  35. package/dist/src/instagram/index.d.ts.map +1 -1
  36. package/dist/src/line/index.d.ts +1912 -271
  37. package/dist/src/line/index.d.ts.map +1 -1
  38. package/dist/src/mail/mail-contract.d.ts +130 -130
  39. package/dist/src/mail/message-contract.d.ts +6 -6
  40. package/dist/src/mail/room-contract.d.ts +124 -124
  41. package/dist/src/mail/schemas/message.schema.d.ts +4 -4
  42. package/dist/src/mail/schemas/room-validation.schema.d.ts +40 -40
  43. package/dist/src/mail/schemas/room.schema.d.ts +30 -30
  44. package/dist/src/messenger/index.d.ts +2520 -520
  45. package/dist/src/messenger/index.d.ts.map +1 -1
  46. package/dist/src/messenger/validation.d.ts +1523 -0
  47. package/dist/src/messenger/validation.d.ts.map +1 -1
  48. package/dist/src/notification/index.d.ts +742 -0
  49. package/dist/src/notification/index.d.ts.map +1 -0
  50. package/dist/src/notification/schema.d.ts +48 -0
  51. package/dist/src/notification/schema.d.ts.map +1 -0
  52. package/dist/src/notification/validation.d.ts +148 -0
  53. package/dist/src/notification/validation.d.ts.map +1 -0
  54. package/dist/src/telephony-cdr/index.d.ts +2376 -404
  55. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  56. package/dist/src/telephony-cdr/schema.d.ts +839 -63
  57. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  58. package/dist/src/telephony-cdr/validation.d.ts +4 -4
  59. package/dist/src/ticket/index.d.ts +1106 -1106
  60. package/dist/src/ticket/schema.d.ts +72 -72
  61. package/dist/src/ticket/validation.d.ts +12 -12
  62. package/dist/src/viber/index.d.ts +3614 -1248
  63. package/dist/src/viber/index.d.ts.map +1 -1
  64. package/dist/src/wrap-up-form/index.d.ts +19 -19
  65. package/dist/src/wrap-up-form/schema.d.ts +2 -2
  66. package/dist/src/wrap-up-form/validation.d.ts +3 -3
  67. package/package.json +1 -1
  68. package/dist/src/app/index.d.ts +0 -17
  69. package/dist/src/app/index.d.ts.map +0 -1
  70. package/dist/src/mail/mail-server.d.ts +0 -216
  71. package/dist/src/mail/mail-server.d.ts.map +0 -1
  72. package/dist/src/platform-contact/schema.d.ts +0 -30
  73. package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -2168,42 +2168,6 @@ export declare const CommentSchema: z.ZodObject<{
2168
2168
  }[];
2169
2169
  }[];
2170
2170
  }[];
2171
- customFields: {
2172
- id: string;
2173
- createdAt: Date;
2174
- updatedAt: Date;
2175
- deletedAt: Date | null;
2176
- attribute: {
2177
- type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2178
- id: string;
2179
- position: number;
2180
- createdAt: Date;
2181
- updatedAt: Date;
2182
- deletedAt: Date | null;
2183
- systemName: string;
2184
- displayName: string;
2185
- isDefault: boolean;
2186
- isArchived: boolean;
2187
- isRequired: boolean;
2188
- isUnique: boolean;
2189
- };
2190
- textValue: string | null;
2191
- booleanValue: boolean | null;
2192
- numberValue: number | null;
2193
- dateValue: Date | null;
2194
- uploads: {
2195
- id: string;
2196
- createdAt: Date;
2197
- updatedAt: Date;
2198
- deletedAt: Date | null;
2199
- fileName: string;
2200
- fileKey: string;
2201
- bucketName: string;
2202
- fileSize: number;
2203
- fileUrl: string | null;
2204
- status?: string | undefined;
2205
- }[];
2206
- }[];
2207
2171
  contact: {
2208
2172
  id: string;
2209
2173
  channel: string | null;
@@ -2301,6 +2265,42 @@ export declare const CommentSchema: z.ZodObject<{
2301
2265
  };
2302
2266
  }[] | undefined;
2303
2267
  };
2268
+ customFields: {
2269
+ id: string;
2270
+ createdAt: Date;
2271
+ updatedAt: Date;
2272
+ deletedAt: Date | null;
2273
+ attribute: {
2274
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2275
+ id: string;
2276
+ position: number;
2277
+ createdAt: Date;
2278
+ updatedAt: Date;
2279
+ deletedAt: Date | null;
2280
+ systemName: string;
2281
+ displayName: string;
2282
+ isDefault: boolean;
2283
+ isArchived: boolean;
2284
+ isRequired: boolean;
2285
+ isUnique: boolean;
2286
+ };
2287
+ textValue: string | null;
2288
+ booleanValue: boolean | null;
2289
+ numberValue: number | null;
2290
+ dateValue: Date | null;
2291
+ uploads: {
2292
+ id: string;
2293
+ createdAt: Date;
2294
+ updatedAt: Date;
2295
+ deletedAt: Date | null;
2296
+ fileName: string;
2297
+ fileKey: string;
2298
+ bucketName: string;
2299
+ fileSize: number;
2300
+ fileUrl: string | null;
2301
+ status?: string | undefined;
2302
+ }[];
2303
+ }[];
2304
2304
  tags: {
2305
2305
  id: string;
2306
2306
  name: string;
@@ -2494,42 +2494,6 @@ export declare const CommentSchema: z.ZodObject<{
2494
2494
  }[];
2495
2495
  }[];
2496
2496
  }[];
2497
- customFields: {
2498
- id: string;
2499
- createdAt: Date;
2500
- updatedAt: Date;
2501
- deletedAt: Date | null;
2502
- attribute: {
2503
- type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2504
- id: string;
2505
- position: number;
2506
- createdAt: Date;
2507
- updatedAt: Date;
2508
- deletedAt: Date | null;
2509
- systemName: string;
2510
- displayName: string;
2511
- isDefault: boolean;
2512
- isArchived: boolean;
2513
- isRequired: boolean;
2514
- isUnique: boolean;
2515
- };
2516
- textValue: string | null;
2517
- booleanValue: boolean | null;
2518
- numberValue: number | null;
2519
- dateValue: Date | null;
2520
- uploads: {
2521
- id: string;
2522
- createdAt: Date;
2523
- updatedAt: Date;
2524
- deletedAt: Date | null;
2525
- fileName: string;
2526
- fileKey: string;
2527
- bucketName: string;
2528
- fileSize: number;
2529
- fileUrl: string | null;
2530
- status?: string | undefined;
2531
- }[];
2532
- }[];
2533
2497
  contact: {
2534
2498
  id: string;
2535
2499
  channel: string | null;
@@ -2627,6 +2591,42 @@ export declare const CommentSchema: z.ZodObject<{
2627
2591
  };
2628
2592
  }[] | undefined;
2629
2593
  };
2594
+ customFields: {
2595
+ id: string;
2596
+ createdAt: Date;
2597
+ updatedAt: Date;
2598
+ deletedAt: Date | null;
2599
+ attribute: {
2600
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2601
+ id: string;
2602
+ position: number;
2603
+ createdAt: Date;
2604
+ updatedAt: Date;
2605
+ deletedAt: Date | null;
2606
+ systemName: string;
2607
+ displayName: string;
2608
+ isDefault: boolean;
2609
+ isArchived: boolean;
2610
+ isRequired: boolean;
2611
+ isUnique: boolean;
2612
+ };
2613
+ textValue: string | null;
2614
+ booleanValue: boolean | null;
2615
+ numberValue: number | null;
2616
+ dateValue: Date | null;
2617
+ uploads: {
2618
+ id: string;
2619
+ createdAt: Date;
2620
+ updatedAt: Date;
2621
+ deletedAt: Date | null;
2622
+ fileName: string;
2623
+ fileKey: string;
2624
+ bucketName: string;
2625
+ fileSize: number;
2626
+ fileUrl: string | null;
2627
+ status?: string | undefined;
2628
+ }[];
2629
+ }[];
2630
2630
  tags: {
2631
2631
  id: string;
2632
2632
  name: string;
@@ -3030,42 +3030,6 @@ export declare const CommentSchema: z.ZodObject<{
3030
3030
  }[];
3031
3031
  }[];
3032
3032
  }[];
3033
- customFields: {
3034
- id: string;
3035
- createdAt: Date;
3036
- updatedAt: Date;
3037
- deletedAt: Date | null;
3038
- attribute: {
3039
- type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3040
- id: string;
3041
- position: number;
3042
- createdAt: Date;
3043
- updatedAt: Date;
3044
- deletedAt: Date | null;
3045
- systemName: string;
3046
- displayName: string;
3047
- isDefault: boolean;
3048
- isArchived: boolean;
3049
- isRequired: boolean;
3050
- isUnique: boolean;
3051
- };
3052
- textValue: string | null;
3053
- booleanValue: boolean | null;
3054
- numberValue: number | null;
3055
- dateValue: Date | null;
3056
- uploads: {
3057
- id: string;
3058
- createdAt: Date;
3059
- updatedAt: Date;
3060
- deletedAt: Date | null;
3061
- fileName: string;
3062
- fileKey: string;
3063
- bucketName: string;
3064
- fileSize: number;
3065
- fileUrl: string | null;
3066
- status?: string | undefined;
3067
- }[];
3068
- }[];
3069
3033
  contact: {
3070
3034
  id: string;
3071
3035
  channel: string | null;
@@ -3163,6 +3127,42 @@ export declare const CommentSchema: z.ZodObject<{
3163
3127
  };
3164
3128
  }[] | undefined;
3165
3129
  };
3130
+ customFields: {
3131
+ id: string;
3132
+ createdAt: Date;
3133
+ updatedAt: Date;
3134
+ deletedAt: Date | null;
3135
+ attribute: {
3136
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3137
+ id: string;
3138
+ position: number;
3139
+ createdAt: Date;
3140
+ updatedAt: Date;
3141
+ deletedAt: Date | null;
3142
+ systemName: string;
3143
+ displayName: string;
3144
+ isDefault: boolean;
3145
+ isArchived: boolean;
3146
+ isRequired: boolean;
3147
+ isUnique: boolean;
3148
+ };
3149
+ textValue: string | null;
3150
+ booleanValue: boolean | null;
3151
+ numberValue: number | null;
3152
+ dateValue: Date | null;
3153
+ uploads: {
3154
+ id: string;
3155
+ createdAt: Date;
3156
+ updatedAt: Date;
3157
+ deletedAt: Date | null;
3158
+ fileName: string;
3159
+ fileKey: string;
3160
+ bucketName: string;
3161
+ fileSize: number;
3162
+ fileUrl: string | null;
3163
+ status?: string | undefined;
3164
+ }[];
3165
+ }[];
3166
3166
  tags: {
3167
3167
  id: string;
3168
3168
  name: string;
@@ -3468,42 +3468,6 @@ export declare const CommentSchema: z.ZodObject<{
3468
3468
  }[];
3469
3469
  }[];
3470
3470
  }[];
3471
- customFields: {
3472
- id: string;
3473
- createdAt: Date;
3474
- updatedAt: Date;
3475
- deletedAt: Date | null;
3476
- attribute: {
3477
- type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3478
- id: string;
3479
- position: number;
3480
- createdAt: Date;
3481
- updatedAt: Date;
3482
- deletedAt: Date | null;
3483
- systemName: string;
3484
- displayName: string;
3485
- isDefault: boolean;
3486
- isArchived: boolean;
3487
- isRequired: boolean;
3488
- isUnique: boolean;
3489
- };
3490
- textValue: string | null;
3491
- booleanValue: boolean | null;
3492
- numberValue: number | null;
3493
- dateValue: Date | null;
3494
- uploads: {
3495
- id: string;
3496
- createdAt: Date;
3497
- updatedAt: Date;
3498
- deletedAt: Date | null;
3499
- fileName: string;
3500
- fileKey: string;
3501
- bucketName: string;
3502
- fileSize: number;
3503
- fileUrl: string | null;
3504
- status?: string | undefined;
3505
- }[];
3506
- }[];
3507
3471
  contact: {
3508
3472
  id: string;
3509
3473
  channel: string | null;
@@ -3601,6 +3565,42 @@ export declare const CommentSchema: z.ZodObject<{
3601
3565
  };
3602
3566
  }[] | undefined;
3603
3567
  };
3568
+ customFields: {
3569
+ id: string;
3570
+ createdAt: Date;
3571
+ updatedAt: Date;
3572
+ deletedAt: Date | null;
3573
+ attribute: {
3574
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3575
+ id: string;
3576
+ position: number;
3577
+ createdAt: Date;
3578
+ updatedAt: Date;
3579
+ deletedAt: Date | null;
3580
+ systemName: string;
3581
+ displayName: string;
3582
+ isDefault: boolean;
3583
+ isArchived: boolean;
3584
+ isRequired: boolean;
3585
+ isUnique: boolean;
3586
+ };
3587
+ textValue: string | null;
3588
+ booleanValue: boolean | null;
3589
+ numberValue: number | null;
3590
+ dateValue: Date | null;
3591
+ uploads: {
3592
+ id: string;
3593
+ createdAt: Date;
3594
+ updatedAt: Date;
3595
+ deletedAt: Date | null;
3596
+ fileName: string;
3597
+ fileKey: string;
3598
+ bucketName: string;
3599
+ fileSize: number;
3600
+ fileUrl: string | null;
3601
+ status?: string | undefined;
3602
+ }[];
3603
+ }[];
3604
3604
  tags: {
3605
3605
  id: string;
3606
3606
  name: string;
@@ -1,7 +1,10 @@
1
1
  import z from 'zod';
2
2
  import { ContactContractValidationSchema } from './validation';
3
- import { ContactSchema } from './schema';
3
+ import { ContactRowSchema, ContactSchema, CustomSchema, ImportBodySchema } from './schema';
4
4
  export type CreateContactRequest = z.infer<typeof ContactContractValidationSchema.create.request>;
5
+ export type ImportContact = z.infer<typeof ImportBodySchema>;
6
+ export type ContactRow = z.infer<typeof ContactRowSchema>;
7
+ export type CustomImportField = z.infer<typeof CustomSchema>;
5
8
  export type CreateContactResponse = z.infer<typeof ContactContractValidationSchema.create.response>;
6
9
  export type CreateContactByPhoneRequest = z.infer<typeof ContactContractValidationSchema.createContactByPhone.request>;
7
10
  export type CreateContactByPhoneResponse = z.infer<typeof ContactContractValidationSchema.createContactByPhone.response>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2S3B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4S3B,CAAC"}
@@ -1007,4 +1007,160 @@ export declare const ContactSchema: z.ZodObject<{
1007
1007
  };
1008
1008
  }[] | undefined;
1009
1009
  }>;
1010
+ export declare const ContactRowSchema: z.ZodObject<{
1011
+ name: z.ZodString;
1012
+ address: z.ZodNullable<z.ZodString>;
1013
+ channel: z.ZodNullable<z.ZodString>;
1014
+ email: z.ZodNullable<z.ZodString>;
1015
+ phone: z.ZodNullable<z.ZodString>;
1016
+ notes: z.ZodNullable<z.ZodString>;
1017
+ company: z.ZodNullable<z.ZodString>;
1018
+ 'CPE no.': z.ZodString;
1019
+ 'Internet Subscription': z.ZodString;
1020
+ others: z.ZodNull;
1021
+ _dynamic_data: z.ZodOptional<z.ZodAny>;
1022
+ }, "strip", z.ZodTypeAny, {
1023
+ channel: string | null;
1024
+ address: string | null;
1025
+ name: string;
1026
+ email: string | null;
1027
+ phone: string | null;
1028
+ company: string | null;
1029
+ notes: string | null;
1030
+ 'CPE no.': string;
1031
+ 'Internet Subscription': string;
1032
+ others: null;
1033
+ _dynamic_data?: any;
1034
+ }, {
1035
+ channel: string | null;
1036
+ address: string | null;
1037
+ name: string;
1038
+ email: string | null;
1039
+ phone: string | null;
1040
+ company: string | null;
1041
+ notes: string | null;
1042
+ 'CPE no.': string;
1043
+ 'Internet Subscription': string;
1044
+ others: null;
1045
+ _dynamic_data?: any;
1046
+ }>;
1047
+ export declare const CustomSchema: z.ZodObject<{
1048
+ attriuteId: z.ZodOptional<z.ZodString>;
1049
+ systemName: z.ZodOptional<z.ZodString>;
1050
+ displayName: z.ZodOptional<z.ZodString>;
1051
+ isRequired: z.ZodOptional<z.ZodString>;
1052
+ type: z.ZodOptional<z.ZodString>;
1053
+ }, "strip", z.ZodTypeAny, {
1054
+ attriuteId?: string | undefined;
1055
+ systemName?: string | undefined;
1056
+ displayName?: string | undefined;
1057
+ isRequired?: string | undefined;
1058
+ type?: string | undefined;
1059
+ }, {
1060
+ attriuteId?: string | undefined;
1061
+ systemName?: string | undefined;
1062
+ displayName?: string | undefined;
1063
+ isRequired?: string | undefined;
1064
+ type?: string | undefined;
1065
+ }>;
1066
+ export declare const ImportBodySchema: z.ZodObject<{
1067
+ import_id: z.ZodNumber;
1068
+ sheet_id: z.ZodNumber;
1069
+ sheet_name: z.ZodString;
1070
+ row_number: z.ZodNumber;
1071
+ total_rows: z.ZodNumber;
1072
+ custom_fields: z.ZodObject<{
1073
+ user_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1074
+ custom: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
1075
+ }, "strip", z.ZodTypeAny, {
1076
+ user_id?: string | undefined;
1077
+ custom?: any;
1078
+ }, {
1079
+ user_id?: string | undefined;
1080
+ custom?: any;
1081
+ }>;
1082
+ row_data: z.ZodObject<{
1083
+ name: z.ZodString;
1084
+ address: z.ZodNullable<z.ZodString>;
1085
+ channel: z.ZodNullable<z.ZodString>;
1086
+ email: z.ZodNullable<z.ZodString>;
1087
+ phone: z.ZodNullable<z.ZodString>;
1088
+ notes: z.ZodNullable<z.ZodString>;
1089
+ company: z.ZodNullable<z.ZodString>;
1090
+ 'CPE no.': z.ZodString;
1091
+ 'Internet Subscription': z.ZodString;
1092
+ others: z.ZodNull;
1093
+ _dynamic_data: z.ZodOptional<z.ZodAny>;
1094
+ }, "strip", z.ZodTypeAny, {
1095
+ channel: string | null;
1096
+ address: string | null;
1097
+ name: string;
1098
+ email: string | null;
1099
+ phone: string | null;
1100
+ company: string | null;
1101
+ notes: string | null;
1102
+ 'CPE no.': string;
1103
+ 'Internet Subscription': string;
1104
+ others: null;
1105
+ _dynamic_data?: any;
1106
+ }, {
1107
+ channel: string | null;
1108
+ address: string | null;
1109
+ name: string;
1110
+ email: string | null;
1111
+ phone: string | null;
1112
+ company: string | null;
1113
+ notes: string | null;
1114
+ 'CPE no.': string;
1115
+ 'Internet Subscription': string;
1116
+ others: null;
1117
+ _dynamic_data?: any;
1118
+ }>;
1119
+ }, "strip", z.ZodTypeAny, {
1120
+ import_id: number;
1121
+ sheet_id: number;
1122
+ sheet_name: string;
1123
+ row_number: number;
1124
+ total_rows: number;
1125
+ custom_fields: {
1126
+ user_id?: string | undefined;
1127
+ custom?: any;
1128
+ };
1129
+ row_data: {
1130
+ channel: string | null;
1131
+ address: string | null;
1132
+ name: string;
1133
+ email: string | null;
1134
+ phone: string | null;
1135
+ company: string | null;
1136
+ notes: string | null;
1137
+ 'CPE no.': string;
1138
+ 'Internet Subscription': string;
1139
+ others: null;
1140
+ _dynamic_data?: any;
1141
+ };
1142
+ }, {
1143
+ import_id: number;
1144
+ sheet_id: number;
1145
+ sheet_name: string;
1146
+ row_number: number;
1147
+ total_rows: number;
1148
+ custom_fields: {
1149
+ user_id?: string | undefined;
1150
+ custom?: any;
1151
+ };
1152
+ row_data: {
1153
+ channel: string | null;
1154
+ address: string | null;
1155
+ name: string;
1156
+ email: string | null;
1157
+ phone: string | null;
1158
+ company: string | null;
1159
+ notes: string | null;
1160
+ 'CPE no.': string;
1161
+ 'Internet Subscription': string;
1162
+ others: null;
1163
+ _dynamic_data?: any;
1164
+ };
1165
+ }>;
1010
1166
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/contact/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWnC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/contact/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWnC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY3B,CAAC;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa3B,CAAC"}