@socotra/ec-react-schemas 0.0.0-alpha.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.
@@ -0,0 +1,2483 @@
1
+ import { z } from 'zod';
2
+
3
+ export declare type AccountConfig = z.infer<typeof accountConfigSchema>;
4
+
5
+ export declare type AccountConfigRecord = z.infer<typeof accountConfigRecordSchema>;
6
+
7
+ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
8
+ displayName: z.ZodOptional<z.ZodString>;
9
+ abstract: z.ZodOptional<z.ZodBoolean>;
10
+ extend: z.ZodOptional<z.ZodString>;
11
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
12
+ displayName: z.ZodOptional<z.ZodString>;
13
+ defaultValue: z.ZodOptional<z.ZodString>;
14
+ type: z.ZodOptional<z.ZodString>;
15
+ minLength: z.ZodOptional<z.ZodNumber>;
16
+ maxLength: z.ZodOptional<z.ZodNumber>;
17
+ regex: z.ZodOptional<z.ZodString>;
18
+ min: z.ZodOptional<z.ZodString>;
19
+ multiline: z.ZodOptional<z.ZodBoolean>;
20
+ max: z.ZodOptional<z.ZodString>;
21
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22
+ overrides: z.ZodOptional<z.ZodString>;
23
+ scope: z.ZodOptional<z.ZodString>;
24
+ inherited: z.ZodOptional<z.ZodBoolean>;
25
+ precision: z.ZodOptional<z.ZodNumber>;
26
+ readOnly: z.ZodOptional<z.ZodBoolean>;
27
+ }, "strip", z.ZodTypeAny, {
28
+ displayName?: string | undefined;
29
+ defaultValue?: string | undefined;
30
+ type?: string | undefined;
31
+ minLength?: number | undefined;
32
+ maxLength?: number | undefined;
33
+ regex?: string | undefined;
34
+ min?: string | undefined;
35
+ multiline?: boolean | undefined;
36
+ max?: string | undefined;
37
+ options?: string[] | undefined;
38
+ overrides?: string | undefined;
39
+ scope?: string | undefined;
40
+ inherited?: boolean | undefined;
41
+ precision?: number | undefined;
42
+ readOnly?: boolean | undefined;
43
+ }, {
44
+ displayName?: string | undefined;
45
+ defaultValue?: string | undefined;
46
+ type?: string | undefined;
47
+ minLength?: number | undefined;
48
+ maxLength?: number | undefined;
49
+ regex?: string | undefined;
50
+ min?: string | undefined;
51
+ multiline?: boolean | undefined;
52
+ max?: string | undefined;
53
+ options?: string[] | undefined;
54
+ overrides?: string | undefined;
55
+ scope?: string | undefined;
56
+ inherited?: boolean | undefined;
57
+ precision?: number | undefined;
58
+ readOnly?: boolean | undefined;
59
+ }>>>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ displayName?: string | undefined;
62
+ abstract?: boolean | undefined;
63
+ extend?: string | undefined;
64
+ data?: Record<string, {
65
+ displayName?: string | undefined;
66
+ defaultValue?: string | undefined;
67
+ type?: string | undefined;
68
+ minLength?: number | undefined;
69
+ maxLength?: number | undefined;
70
+ regex?: string | undefined;
71
+ min?: string | undefined;
72
+ multiline?: boolean | undefined;
73
+ max?: string | undefined;
74
+ options?: string[] | undefined;
75
+ overrides?: string | undefined;
76
+ scope?: string | undefined;
77
+ inherited?: boolean | undefined;
78
+ precision?: number | undefined;
79
+ readOnly?: boolean | undefined;
80
+ }> | undefined;
81
+ }, {
82
+ displayName?: string | undefined;
83
+ abstract?: boolean | undefined;
84
+ extend?: string | undefined;
85
+ data?: Record<string, {
86
+ displayName?: string | undefined;
87
+ defaultValue?: string | undefined;
88
+ type?: string | undefined;
89
+ minLength?: number | undefined;
90
+ maxLength?: number | undefined;
91
+ regex?: string | undefined;
92
+ min?: string | undefined;
93
+ multiline?: boolean | undefined;
94
+ max?: string | undefined;
95
+ options?: string[] | undefined;
96
+ overrides?: string | undefined;
97
+ scope?: string | undefined;
98
+ inherited?: boolean | undefined;
99
+ precision?: number | undefined;
100
+ readOnly?: boolean | undefined;
101
+ }> | undefined;
102
+ }>>;
103
+
104
+ export declare const accountConfigSchema: z.ZodObject<{
105
+ displayName: z.ZodOptional<z.ZodString>;
106
+ abstract: z.ZodOptional<z.ZodBoolean>;
107
+ extend: z.ZodOptional<z.ZodString>;
108
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
109
+ displayName: z.ZodOptional<z.ZodString>;
110
+ defaultValue: z.ZodOptional<z.ZodString>;
111
+ type: z.ZodOptional<z.ZodString>;
112
+ minLength: z.ZodOptional<z.ZodNumber>;
113
+ maxLength: z.ZodOptional<z.ZodNumber>;
114
+ regex: z.ZodOptional<z.ZodString>;
115
+ min: z.ZodOptional<z.ZodString>;
116
+ multiline: z.ZodOptional<z.ZodBoolean>;
117
+ max: z.ZodOptional<z.ZodString>;
118
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
119
+ overrides: z.ZodOptional<z.ZodString>;
120
+ scope: z.ZodOptional<z.ZodString>;
121
+ inherited: z.ZodOptional<z.ZodBoolean>;
122
+ precision: z.ZodOptional<z.ZodNumber>;
123
+ readOnly: z.ZodOptional<z.ZodBoolean>;
124
+ }, "strip", z.ZodTypeAny, {
125
+ displayName?: string | undefined;
126
+ defaultValue?: string | undefined;
127
+ type?: string | undefined;
128
+ minLength?: number | undefined;
129
+ maxLength?: number | undefined;
130
+ regex?: string | undefined;
131
+ min?: string | undefined;
132
+ multiline?: boolean | undefined;
133
+ max?: string | undefined;
134
+ options?: string[] | undefined;
135
+ overrides?: string | undefined;
136
+ scope?: string | undefined;
137
+ inherited?: boolean | undefined;
138
+ precision?: number | undefined;
139
+ readOnly?: boolean | undefined;
140
+ }, {
141
+ displayName?: string | undefined;
142
+ defaultValue?: string | undefined;
143
+ type?: string | undefined;
144
+ minLength?: number | undefined;
145
+ maxLength?: number | undefined;
146
+ regex?: string | undefined;
147
+ min?: string | undefined;
148
+ multiline?: boolean | undefined;
149
+ max?: string | undefined;
150
+ options?: string[] | undefined;
151
+ overrides?: string | undefined;
152
+ scope?: string | undefined;
153
+ inherited?: boolean | undefined;
154
+ precision?: number | undefined;
155
+ readOnly?: boolean | undefined;
156
+ }>>>;
157
+ }, "strip", z.ZodTypeAny, {
158
+ displayName?: string | undefined;
159
+ abstract?: boolean | undefined;
160
+ extend?: string | undefined;
161
+ data?: Record<string, {
162
+ displayName?: string | undefined;
163
+ defaultValue?: string | undefined;
164
+ type?: string | undefined;
165
+ minLength?: number | undefined;
166
+ maxLength?: number | undefined;
167
+ regex?: string | undefined;
168
+ min?: string | undefined;
169
+ multiline?: boolean | undefined;
170
+ max?: string | undefined;
171
+ options?: string[] | undefined;
172
+ overrides?: string | undefined;
173
+ scope?: string | undefined;
174
+ inherited?: boolean | undefined;
175
+ precision?: number | undefined;
176
+ readOnly?: boolean | undefined;
177
+ }> | undefined;
178
+ }, {
179
+ displayName?: string | undefined;
180
+ abstract?: boolean | undefined;
181
+ extend?: string | undefined;
182
+ data?: Record<string, {
183
+ displayName?: string | undefined;
184
+ defaultValue?: string | undefined;
185
+ type?: string | undefined;
186
+ minLength?: number | undefined;
187
+ maxLength?: number | undefined;
188
+ regex?: string | undefined;
189
+ min?: string | undefined;
190
+ multiline?: boolean | undefined;
191
+ max?: string | undefined;
192
+ options?: string[] | undefined;
193
+ overrides?: string | undefined;
194
+ scope?: string | undefined;
195
+ inherited?: boolean | undefined;
196
+ precision?: number | undefined;
197
+ readOnly?: boolean | undefined;
198
+ }> | undefined;
199
+ }>;
200
+
201
+ export declare type AccountRequest = z.infer<typeof accountRequestSchema>;
202
+
203
+ export declare const accountRequestSchema: z.ZodObject<{
204
+ type: z.ZodOptional<z.ZodString>;
205
+ autoValidate: z.ZodOptional<z.ZodBoolean>;
206
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
207
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
208
+ }, "strip", z.ZodTypeAny, {
209
+ type?: string | undefined;
210
+ data?: Record<string, any> | undefined;
211
+ delinquencyPlanName?: string | undefined;
212
+ autoValidate?: boolean | undefined;
213
+ }, {
214
+ type?: string | undefined;
215
+ data?: Record<string, any> | undefined;
216
+ delinquencyPlanName?: string | undefined;
217
+ autoValidate?: boolean | undefined;
218
+ }>;
219
+
220
+ export declare type AccountResponse = z.infer<typeof accountResponseSchema>;
221
+
222
+ export declare const accountResponseSchema: z.ZodObject<{
223
+ locator: z.ZodString;
224
+ type: z.ZodOptional<z.ZodString>;
225
+ state: z.ZodOptional<z.ZodEnum<["draft", "validated", "discarded"]>>;
226
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
227
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
228
+ validationResult: z.ZodOptional<z.ZodAny>;
229
+ }, "strip", z.ZodTypeAny, {
230
+ locator: string;
231
+ type?: string | undefined;
232
+ data?: Record<string, any> | undefined;
233
+ validationResult?: any;
234
+ delinquencyPlanName?: string | undefined;
235
+ state?: "draft" | "validated" | "discarded" | undefined;
236
+ }, {
237
+ locator: string;
238
+ type?: string | undefined;
239
+ data?: Record<string, any> | undefined;
240
+ validationResult?: any;
241
+ delinquencyPlanName?: string | undefined;
242
+ state?: "draft" | "validated" | "discarded" | undefined;
243
+ }>;
244
+
245
+ declare const baseElementResponseSchema: z.ZodObject<{
246
+ locator: z.ZodString;
247
+ staticLocator: z.ZodString;
248
+ rootLocator: z.ZodOptional<z.ZodString>;
249
+ tenantLocator: z.ZodOptional<z.ZodString>;
250
+ type: z.ZodString;
251
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
252
+ parentLocator: z.ZodOptional<z.ZodString>;
253
+ coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
254
+ }, "strip", z.ZodTypeAny, {
255
+ type: string;
256
+ locator: string;
257
+ staticLocator: string;
258
+ data?: Record<string, any> | undefined;
259
+ coverageTerms?: Record<string, string> | undefined;
260
+ rootLocator?: string | undefined;
261
+ tenantLocator?: string | undefined;
262
+ parentLocator?: string | undefined;
263
+ }, {
264
+ type: string;
265
+ locator: string;
266
+ staticLocator: string;
267
+ data?: Record<string, any> | undefined;
268
+ coverageTerms?: Record<string, string> | undefined;
269
+ rootLocator?: string | undefined;
270
+ tenantLocator?: string | undefined;
271
+ parentLocator?: string | undefined;
272
+ }>;
273
+
274
+ export declare type DataModel = z.infer<typeof dataModelSchema>;
275
+
276
+ export declare const dataModelSchema: z.ZodObject<{
277
+ dataTypes: z.ZodRecord<z.ZodString, z.ZodObject<{
278
+ displayName: z.ZodOptional<z.ZodString>;
279
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
280
+ abstract: z.ZodOptional<z.ZodBoolean>;
281
+ extend: z.ZodOptional<z.ZodString>;
282
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
283
+ displayName: z.ZodOptional<z.ZodString>;
284
+ defaultValue: z.ZodOptional<z.ZodString>;
285
+ type: z.ZodOptional<z.ZodString>;
286
+ minLength: z.ZodOptional<z.ZodNumber>;
287
+ maxLength: z.ZodOptional<z.ZodNumber>;
288
+ regex: z.ZodOptional<z.ZodString>;
289
+ min: z.ZodOptional<z.ZodString>;
290
+ multiline: z.ZodOptional<z.ZodBoolean>;
291
+ max: z.ZodOptional<z.ZodString>;
292
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
293
+ overrides: z.ZodOptional<z.ZodString>;
294
+ scope: z.ZodOptional<z.ZodString>;
295
+ inherited: z.ZodOptional<z.ZodBoolean>;
296
+ precision: z.ZodOptional<z.ZodNumber>;
297
+ readOnly: z.ZodOptional<z.ZodBoolean>;
298
+ }, "strip", z.ZodTypeAny, {
299
+ displayName?: string | undefined;
300
+ defaultValue?: string | undefined;
301
+ type?: string | undefined;
302
+ minLength?: number | undefined;
303
+ maxLength?: number | undefined;
304
+ regex?: string | undefined;
305
+ min?: string | undefined;
306
+ multiline?: boolean | undefined;
307
+ max?: string | undefined;
308
+ options?: string[] | undefined;
309
+ overrides?: string | undefined;
310
+ scope?: string | undefined;
311
+ inherited?: boolean | undefined;
312
+ precision?: number | undefined;
313
+ readOnly?: boolean | undefined;
314
+ }, {
315
+ displayName?: string | undefined;
316
+ defaultValue?: string | undefined;
317
+ type?: string | undefined;
318
+ minLength?: number | undefined;
319
+ maxLength?: number | undefined;
320
+ regex?: string | undefined;
321
+ min?: string | undefined;
322
+ multiline?: boolean | undefined;
323
+ max?: string | undefined;
324
+ options?: string[] | undefined;
325
+ overrides?: string | undefined;
326
+ scope?: string | undefined;
327
+ inherited?: boolean | undefined;
328
+ precision?: number | undefined;
329
+ readOnly?: boolean | undefined;
330
+ }>>>;
331
+ }, "strip", z.ZodTypeAny, {
332
+ displayName?: string | undefined;
333
+ abstract?: boolean | undefined;
334
+ extend?: string | undefined;
335
+ data?: Record<string, {
336
+ displayName?: string | undefined;
337
+ defaultValue?: string | undefined;
338
+ type?: string | undefined;
339
+ minLength?: number | undefined;
340
+ maxLength?: number | undefined;
341
+ regex?: string | undefined;
342
+ min?: string | undefined;
343
+ multiline?: boolean | undefined;
344
+ max?: string | undefined;
345
+ options?: string[] | undefined;
346
+ overrides?: string | undefined;
347
+ scope?: string | undefined;
348
+ inherited?: boolean | undefined;
349
+ precision?: number | undefined;
350
+ readOnly?: boolean | undefined;
351
+ }> | undefined;
352
+ contents?: string[] | undefined;
353
+ }, {
354
+ displayName?: string | undefined;
355
+ abstract?: boolean | undefined;
356
+ extend?: string | undefined;
357
+ data?: Record<string, {
358
+ displayName?: string | undefined;
359
+ defaultValue?: string | undefined;
360
+ type?: string | undefined;
361
+ minLength?: number | undefined;
362
+ maxLength?: number | undefined;
363
+ regex?: string | undefined;
364
+ min?: string | undefined;
365
+ multiline?: boolean | undefined;
366
+ max?: string | undefined;
367
+ options?: string[] | undefined;
368
+ overrides?: string | undefined;
369
+ scope?: string | undefined;
370
+ inherited?: boolean | undefined;
371
+ precision?: number | undefined;
372
+ readOnly?: boolean | undefined;
373
+ }> | undefined;
374
+ contents?: string[] | undefined;
375
+ }>>;
376
+ accounts: z.ZodRecord<z.ZodString, z.ZodObject<{
377
+ displayName: z.ZodOptional<z.ZodString>;
378
+ abstract: z.ZodOptional<z.ZodBoolean>;
379
+ extend: z.ZodOptional<z.ZodString>;
380
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
381
+ displayName: z.ZodOptional<z.ZodString>;
382
+ defaultValue: z.ZodOptional<z.ZodString>;
383
+ type: z.ZodOptional<z.ZodString>;
384
+ minLength: z.ZodOptional<z.ZodNumber>;
385
+ maxLength: z.ZodOptional<z.ZodNumber>;
386
+ regex: z.ZodOptional<z.ZodString>;
387
+ min: z.ZodOptional<z.ZodString>;
388
+ multiline: z.ZodOptional<z.ZodBoolean>;
389
+ max: z.ZodOptional<z.ZodString>;
390
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
391
+ overrides: z.ZodOptional<z.ZodString>;
392
+ scope: z.ZodOptional<z.ZodString>;
393
+ inherited: z.ZodOptional<z.ZodBoolean>;
394
+ precision: z.ZodOptional<z.ZodNumber>;
395
+ readOnly: z.ZodOptional<z.ZodBoolean>;
396
+ }, "strip", z.ZodTypeAny, {
397
+ displayName?: string | undefined;
398
+ defaultValue?: string | undefined;
399
+ type?: string | undefined;
400
+ minLength?: number | undefined;
401
+ maxLength?: number | undefined;
402
+ regex?: string | undefined;
403
+ min?: string | undefined;
404
+ multiline?: boolean | undefined;
405
+ max?: string | undefined;
406
+ options?: string[] | undefined;
407
+ overrides?: string | undefined;
408
+ scope?: string | undefined;
409
+ inherited?: boolean | undefined;
410
+ precision?: number | undefined;
411
+ readOnly?: boolean | undefined;
412
+ }, {
413
+ displayName?: string | undefined;
414
+ defaultValue?: string | undefined;
415
+ type?: string | undefined;
416
+ minLength?: number | undefined;
417
+ maxLength?: number | undefined;
418
+ regex?: string | undefined;
419
+ min?: string | undefined;
420
+ multiline?: boolean | undefined;
421
+ max?: string | undefined;
422
+ options?: string[] | undefined;
423
+ overrides?: string | undefined;
424
+ scope?: string | undefined;
425
+ inherited?: boolean | undefined;
426
+ precision?: number | undefined;
427
+ readOnly?: boolean | undefined;
428
+ }>>>;
429
+ }, "strip", z.ZodTypeAny, {
430
+ displayName?: string | undefined;
431
+ abstract?: boolean | undefined;
432
+ extend?: string | undefined;
433
+ data?: Record<string, {
434
+ displayName?: string | undefined;
435
+ defaultValue?: string | undefined;
436
+ type?: string | undefined;
437
+ minLength?: number | undefined;
438
+ maxLength?: number | undefined;
439
+ regex?: string | undefined;
440
+ min?: string | undefined;
441
+ multiline?: boolean | undefined;
442
+ max?: string | undefined;
443
+ options?: string[] | undefined;
444
+ overrides?: string | undefined;
445
+ scope?: string | undefined;
446
+ inherited?: boolean | undefined;
447
+ precision?: number | undefined;
448
+ readOnly?: boolean | undefined;
449
+ }> | undefined;
450
+ }, {
451
+ displayName?: string | undefined;
452
+ abstract?: boolean | undefined;
453
+ extend?: string | undefined;
454
+ data?: Record<string, {
455
+ displayName?: string | undefined;
456
+ defaultValue?: string | undefined;
457
+ type?: string | undefined;
458
+ minLength?: number | undefined;
459
+ maxLength?: number | undefined;
460
+ regex?: string | undefined;
461
+ min?: string | undefined;
462
+ multiline?: boolean | undefined;
463
+ max?: string | undefined;
464
+ options?: string[] | undefined;
465
+ overrides?: string | undefined;
466
+ scope?: string | undefined;
467
+ inherited?: boolean | undefined;
468
+ precision?: number | undefined;
469
+ readOnly?: boolean | undefined;
470
+ }> | undefined;
471
+ }>>;
472
+ products: z.ZodRecord<z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
473
+ abstract: z.ZodOptional<z.ZodBoolean>;
474
+ extend: z.ZodOptional<z.ZodString>;
475
+ displayName: z.ZodOptional<z.ZodString>;
476
+ coverageTerms: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
477
+ eligibleAccountTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
478
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
479
+ documents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
480
+ plugins: z.ZodAny;
481
+ tables: z.ZodAny;
482
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
483
+ displayName: z.ZodOptional<z.ZodString>;
484
+ defaultValue: z.ZodOptional<z.ZodString>;
485
+ type: z.ZodOptional<z.ZodString>;
486
+ minLength: z.ZodOptional<z.ZodNumber>;
487
+ maxLength: z.ZodOptional<z.ZodNumber>;
488
+ regex: z.ZodOptional<z.ZodString>;
489
+ min: z.ZodOptional<z.ZodString>;
490
+ multiline: z.ZodOptional<z.ZodBoolean>;
491
+ max: z.ZodOptional<z.ZodString>;
492
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
493
+ overrides: z.ZodOptional<z.ZodString>;
494
+ scope: z.ZodOptional<z.ZodString>;
495
+ inherited: z.ZodOptional<z.ZodBoolean>;
496
+ precision: z.ZodOptional<z.ZodNumber>;
497
+ readOnly: z.ZodOptional<z.ZodBoolean>;
498
+ }, "strip", z.ZodTypeAny, {
499
+ displayName?: string | undefined;
500
+ defaultValue?: string | undefined;
501
+ type?: string | undefined;
502
+ minLength?: number | undefined;
503
+ maxLength?: number | undefined;
504
+ regex?: string | undefined;
505
+ min?: string | undefined;
506
+ multiline?: boolean | undefined;
507
+ max?: string | undefined;
508
+ options?: string[] | undefined;
509
+ overrides?: string | undefined;
510
+ scope?: string | undefined;
511
+ inherited?: boolean | undefined;
512
+ precision?: number | undefined;
513
+ readOnly?: boolean | undefined;
514
+ }, {
515
+ displayName?: string | undefined;
516
+ defaultValue?: string | undefined;
517
+ type?: string | undefined;
518
+ minLength?: number | undefined;
519
+ maxLength?: number | undefined;
520
+ regex?: string | undefined;
521
+ min?: string | undefined;
522
+ multiline?: boolean | undefined;
523
+ max?: string | undefined;
524
+ options?: string[] | undefined;
525
+ overrides?: string | undefined;
526
+ scope?: string | undefined;
527
+ inherited?: boolean | undefined;
528
+ precision?: number | undefined;
529
+ readOnly?: boolean | undefined;
530
+ }>>>;
531
+ }, {
532
+ defaultTimeZone: z.ZodOptional<z.ZodString>;
533
+ defaultCurrency: z.ZodOptional<z.ZodString>;
534
+ defaultTermDuration: z.ZodOptional<z.ZodNumber>;
535
+ defaultDurationBasis: z.ZodOptional<z.ZodString>;
536
+ defaultInstallmentPlan: z.ZodOptional<z.ZodString>;
537
+ }>, "strip", z.ZodTypeAny, {
538
+ displayName?: string | undefined;
539
+ abstract?: boolean | undefined;
540
+ extend?: string | undefined;
541
+ data?: Record<string, {
542
+ displayName?: string | undefined;
543
+ defaultValue?: string | undefined;
544
+ type?: string | undefined;
545
+ minLength?: number | undefined;
546
+ maxLength?: number | undefined;
547
+ regex?: string | undefined;
548
+ min?: string | undefined;
549
+ multiline?: boolean | undefined;
550
+ max?: string | undefined;
551
+ options?: string[] | undefined;
552
+ overrides?: string | undefined;
553
+ scope?: string | undefined;
554
+ inherited?: boolean | undefined;
555
+ precision?: number | undefined;
556
+ readOnly?: boolean | undefined;
557
+ }> | undefined;
558
+ contents?: string[] | undefined;
559
+ defaultTimeZone?: string | undefined;
560
+ defaultCurrency?: string | undefined;
561
+ defaultTermDuration?: number | undefined;
562
+ defaultDurationBasis?: string | undefined;
563
+ defaultInstallmentPlan?: string | undefined;
564
+ coverageTerms?: string[] | undefined;
565
+ eligibleAccountTypes?: string[] | undefined;
566
+ documents?: string[] | undefined;
567
+ plugins?: any;
568
+ tables?: any;
569
+ }, {
570
+ displayName?: string | undefined;
571
+ abstract?: boolean | undefined;
572
+ extend?: string | undefined;
573
+ data?: Record<string, {
574
+ displayName?: string | undefined;
575
+ defaultValue?: string | undefined;
576
+ type?: string | undefined;
577
+ minLength?: number | undefined;
578
+ maxLength?: number | undefined;
579
+ regex?: string | undefined;
580
+ min?: string | undefined;
581
+ multiline?: boolean | undefined;
582
+ max?: string | undefined;
583
+ options?: string[] | undefined;
584
+ overrides?: string | undefined;
585
+ scope?: string | undefined;
586
+ inherited?: boolean | undefined;
587
+ precision?: number | undefined;
588
+ readOnly?: boolean | undefined;
589
+ }> | undefined;
590
+ contents?: string[] | undefined;
591
+ defaultTimeZone?: string | undefined;
592
+ defaultCurrency?: string | undefined;
593
+ defaultTermDuration?: number | undefined;
594
+ defaultDurationBasis?: string | undefined;
595
+ defaultInstallmentPlan?: string | undefined;
596
+ coverageTerms?: string[] | undefined;
597
+ eligibleAccountTypes?: string[] | undefined;
598
+ documents?: string[] | undefined;
599
+ plugins?: any;
600
+ tables?: any;
601
+ }>>;
602
+ policyLines: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
603
+ displayName: z.ZodOptional<z.ZodString>;
604
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
605
+ abstract: z.ZodOptional<z.ZodBoolean>;
606
+ extend: z.ZodOptional<z.ZodString>;
607
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
608
+ displayName: z.ZodOptional<z.ZodString>;
609
+ defaultValue: z.ZodOptional<z.ZodString>;
610
+ type: z.ZodOptional<z.ZodString>;
611
+ minLength: z.ZodOptional<z.ZodNumber>;
612
+ maxLength: z.ZodOptional<z.ZodNumber>;
613
+ regex: z.ZodOptional<z.ZodString>;
614
+ min: z.ZodOptional<z.ZodString>;
615
+ multiline: z.ZodOptional<z.ZodBoolean>;
616
+ max: z.ZodOptional<z.ZodString>;
617
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
618
+ overrides: z.ZodOptional<z.ZodString>;
619
+ scope: z.ZodOptional<z.ZodString>;
620
+ inherited: z.ZodOptional<z.ZodBoolean>;
621
+ precision: z.ZodOptional<z.ZodNumber>;
622
+ readOnly: z.ZodOptional<z.ZodBoolean>;
623
+ }, "strip", z.ZodTypeAny, {
624
+ displayName?: string | undefined;
625
+ defaultValue?: string | undefined;
626
+ type?: string | undefined;
627
+ minLength?: number | undefined;
628
+ maxLength?: number | undefined;
629
+ regex?: string | undefined;
630
+ min?: string | undefined;
631
+ multiline?: boolean | undefined;
632
+ max?: string | undefined;
633
+ options?: string[] | undefined;
634
+ overrides?: string | undefined;
635
+ scope?: string | undefined;
636
+ inherited?: boolean | undefined;
637
+ precision?: number | undefined;
638
+ readOnly?: boolean | undefined;
639
+ }, {
640
+ displayName?: string | undefined;
641
+ defaultValue?: string | undefined;
642
+ type?: string | undefined;
643
+ minLength?: number | undefined;
644
+ maxLength?: number | undefined;
645
+ regex?: string | undefined;
646
+ min?: string | undefined;
647
+ multiline?: boolean | undefined;
648
+ max?: string | undefined;
649
+ options?: string[] | undefined;
650
+ overrides?: string | undefined;
651
+ scope?: string | undefined;
652
+ inherited?: boolean | undefined;
653
+ precision?: number | undefined;
654
+ readOnly?: boolean | undefined;
655
+ }>>>;
656
+ }, "strip", z.ZodTypeAny, {
657
+ displayName?: string | undefined;
658
+ abstract?: boolean | undefined;
659
+ extend?: string | undefined;
660
+ data?: Record<string, {
661
+ displayName?: string | undefined;
662
+ defaultValue?: string | undefined;
663
+ type?: string | undefined;
664
+ minLength?: number | undefined;
665
+ maxLength?: number | undefined;
666
+ regex?: string | undefined;
667
+ min?: string | undefined;
668
+ multiline?: boolean | undefined;
669
+ max?: string | undefined;
670
+ options?: string[] | undefined;
671
+ overrides?: string | undefined;
672
+ scope?: string | undefined;
673
+ inherited?: boolean | undefined;
674
+ precision?: number | undefined;
675
+ readOnly?: boolean | undefined;
676
+ }> | undefined;
677
+ contents?: string[] | undefined;
678
+ }, {
679
+ displayName?: string | undefined;
680
+ abstract?: boolean | undefined;
681
+ extend?: string | undefined;
682
+ data?: Record<string, {
683
+ displayName?: string | undefined;
684
+ defaultValue?: string | undefined;
685
+ type?: string | undefined;
686
+ minLength?: number | undefined;
687
+ maxLength?: number | undefined;
688
+ regex?: string | undefined;
689
+ min?: string | undefined;
690
+ multiline?: boolean | undefined;
691
+ max?: string | undefined;
692
+ options?: string[] | undefined;
693
+ overrides?: string | undefined;
694
+ scope?: string | undefined;
695
+ inherited?: boolean | undefined;
696
+ precision?: number | undefined;
697
+ readOnly?: boolean | undefined;
698
+ }> | undefined;
699
+ contents?: string[] | undefined;
700
+ }>>>;
701
+ exposures: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
702
+ displayName: z.ZodOptional<z.ZodString>;
703
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
704
+ abstract: z.ZodOptional<z.ZodBoolean>;
705
+ extend: z.ZodOptional<z.ZodString>;
706
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
707
+ displayName: z.ZodOptional<z.ZodString>;
708
+ defaultValue: z.ZodOptional<z.ZodString>;
709
+ type: z.ZodOptional<z.ZodString>;
710
+ minLength: z.ZodOptional<z.ZodNumber>;
711
+ maxLength: z.ZodOptional<z.ZodNumber>;
712
+ regex: z.ZodOptional<z.ZodString>;
713
+ min: z.ZodOptional<z.ZodString>;
714
+ multiline: z.ZodOptional<z.ZodBoolean>;
715
+ max: z.ZodOptional<z.ZodString>;
716
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
717
+ overrides: z.ZodOptional<z.ZodString>;
718
+ scope: z.ZodOptional<z.ZodString>;
719
+ inherited: z.ZodOptional<z.ZodBoolean>;
720
+ precision: z.ZodOptional<z.ZodNumber>;
721
+ readOnly: z.ZodOptional<z.ZodBoolean>;
722
+ }, "strip", z.ZodTypeAny, {
723
+ displayName?: string | undefined;
724
+ defaultValue?: string | undefined;
725
+ type?: string | undefined;
726
+ minLength?: number | undefined;
727
+ maxLength?: number | undefined;
728
+ regex?: string | undefined;
729
+ min?: string | undefined;
730
+ multiline?: boolean | undefined;
731
+ max?: string | undefined;
732
+ options?: string[] | undefined;
733
+ overrides?: string | undefined;
734
+ scope?: string | undefined;
735
+ inherited?: boolean | undefined;
736
+ precision?: number | undefined;
737
+ readOnly?: boolean | undefined;
738
+ }, {
739
+ displayName?: string | undefined;
740
+ defaultValue?: string | undefined;
741
+ type?: string | undefined;
742
+ minLength?: number | undefined;
743
+ maxLength?: number | undefined;
744
+ regex?: string | undefined;
745
+ min?: string | undefined;
746
+ multiline?: boolean | undefined;
747
+ max?: string | undefined;
748
+ options?: string[] | undefined;
749
+ overrides?: string | undefined;
750
+ scope?: string | undefined;
751
+ inherited?: boolean | undefined;
752
+ precision?: number | undefined;
753
+ readOnly?: boolean | undefined;
754
+ }>>>;
755
+ }, "strip", z.ZodTypeAny, {
756
+ displayName?: string | undefined;
757
+ abstract?: boolean | undefined;
758
+ extend?: string | undefined;
759
+ data?: Record<string, {
760
+ displayName?: string | undefined;
761
+ defaultValue?: string | undefined;
762
+ type?: string | undefined;
763
+ minLength?: number | undefined;
764
+ maxLength?: number | undefined;
765
+ regex?: string | undefined;
766
+ min?: string | undefined;
767
+ multiline?: boolean | undefined;
768
+ max?: string | undefined;
769
+ options?: string[] | undefined;
770
+ overrides?: string | undefined;
771
+ scope?: string | undefined;
772
+ inherited?: boolean | undefined;
773
+ precision?: number | undefined;
774
+ readOnly?: boolean | undefined;
775
+ }> | undefined;
776
+ contents?: string[] | undefined;
777
+ }, {
778
+ displayName?: string | undefined;
779
+ abstract?: boolean | undefined;
780
+ extend?: string | undefined;
781
+ data?: Record<string, {
782
+ displayName?: string | undefined;
783
+ defaultValue?: string | undefined;
784
+ type?: string | undefined;
785
+ minLength?: number | undefined;
786
+ maxLength?: number | undefined;
787
+ regex?: string | undefined;
788
+ min?: string | undefined;
789
+ multiline?: boolean | undefined;
790
+ max?: string | undefined;
791
+ options?: string[] | undefined;
792
+ overrides?: string | undefined;
793
+ scope?: string | undefined;
794
+ inherited?: boolean | undefined;
795
+ precision?: number | undefined;
796
+ readOnly?: boolean | undefined;
797
+ }> | undefined;
798
+ contents?: string[] | undefined;
799
+ }>>>;
800
+ exposureGroups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
801
+ displayName: z.ZodOptional<z.ZodString>;
802
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
803
+ abstract: z.ZodOptional<z.ZodBoolean>;
804
+ extend: z.ZodOptional<z.ZodString>;
805
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
806
+ displayName: z.ZodOptional<z.ZodString>;
807
+ defaultValue: z.ZodOptional<z.ZodString>;
808
+ type: z.ZodOptional<z.ZodString>;
809
+ minLength: z.ZodOptional<z.ZodNumber>;
810
+ maxLength: z.ZodOptional<z.ZodNumber>;
811
+ regex: z.ZodOptional<z.ZodString>;
812
+ min: z.ZodOptional<z.ZodString>;
813
+ multiline: z.ZodOptional<z.ZodBoolean>;
814
+ max: z.ZodOptional<z.ZodString>;
815
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
816
+ overrides: z.ZodOptional<z.ZodString>;
817
+ scope: z.ZodOptional<z.ZodString>;
818
+ inherited: z.ZodOptional<z.ZodBoolean>;
819
+ precision: z.ZodOptional<z.ZodNumber>;
820
+ readOnly: z.ZodOptional<z.ZodBoolean>;
821
+ }, "strip", z.ZodTypeAny, {
822
+ displayName?: string | undefined;
823
+ defaultValue?: string | undefined;
824
+ type?: string | undefined;
825
+ minLength?: number | undefined;
826
+ maxLength?: number | undefined;
827
+ regex?: string | undefined;
828
+ min?: string | undefined;
829
+ multiline?: boolean | undefined;
830
+ max?: string | undefined;
831
+ options?: string[] | undefined;
832
+ overrides?: string | undefined;
833
+ scope?: string | undefined;
834
+ inherited?: boolean | undefined;
835
+ precision?: number | undefined;
836
+ readOnly?: boolean | undefined;
837
+ }, {
838
+ displayName?: string | undefined;
839
+ defaultValue?: string | undefined;
840
+ type?: string | undefined;
841
+ minLength?: number | undefined;
842
+ maxLength?: number | undefined;
843
+ regex?: string | undefined;
844
+ min?: string | undefined;
845
+ multiline?: boolean | undefined;
846
+ max?: string | undefined;
847
+ options?: string[] | undefined;
848
+ overrides?: string | undefined;
849
+ scope?: string | undefined;
850
+ inherited?: boolean | undefined;
851
+ precision?: number | undefined;
852
+ readOnly?: boolean | undefined;
853
+ }>>>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ displayName?: string | undefined;
856
+ abstract?: boolean | undefined;
857
+ extend?: string | undefined;
858
+ data?: Record<string, {
859
+ displayName?: string | undefined;
860
+ defaultValue?: string | undefined;
861
+ type?: string | undefined;
862
+ minLength?: number | undefined;
863
+ maxLength?: number | undefined;
864
+ regex?: string | undefined;
865
+ min?: string | undefined;
866
+ multiline?: boolean | undefined;
867
+ max?: string | undefined;
868
+ options?: string[] | undefined;
869
+ overrides?: string | undefined;
870
+ scope?: string | undefined;
871
+ inherited?: boolean | undefined;
872
+ precision?: number | undefined;
873
+ readOnly?: boolean | undefined;
874
+ }> | undefined;
875
+ contents?: string[] | undefined;
876
+ }, {
877
+ displayName?: string | undefined;
878
+ abstract?: boolean | undefined;
879
+ extend?: string | undefined;
880
+ data?: Record<string, {
881
+ displayName?: string | undefined;
882
+ defaultValue?: string | undefined;
883
+ type?: string | undefined;
884
+ minLength?: number | undefined;
885
+ maxLength?: number | undefined;
886
+ regex?: string | undefined;
887
+ min?: string | undefined;
888
+ multiline?: boolean | undefined;
889
+ max?: string | undefined;
890
+ options?: string[] | undefined;
891
+ overrides?: string | undefined;
892
+ scope?: string | undefined;
893
+ inherited?: boolean | undefined;
894
+ precision?: number | undefined;
895
+ readOnly?: boolean | undefined;
896
+ }> | undefined;
897
+ contents?: string[] | undefined;
898
+ }>>>;
899
+ coverages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
900
+ displayName: z.ZodOptional<z.ZodString>;
901
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
902
+ abstract: z.ZodOptional<z.ZodBoolean>;
903
+ extend: z.ZodOptional<z.ZodString>;
904
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
905
+ displayName: z.ZodOptional<z.ZodString>;
906
+ defaultValue: z.ZodOptional<z.ZodString>;
907
+ type: z.ZodOptional<z.ZodString>;
908
+ minLength: z.ZodOptional<z.ZodNumber>;
909
+ maxLength: z.ZodOptional<z.ZodNumber>;
910
+ regex: z.ZodOptional<z.ZodString>;
911
+ min: z.ZodOptional<z.ZodString>;
912
+ multiline: z.ZodOptional<z.ZodBoolean>;
913
+ max: z.ZodOptional<z.ZodString>;
914
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
915
+ overrides: z.ZodOptional<z.ZodString>;
916
+ scope: z.ZodOptional<z.ZodString>;
917
+ inherited: z.ZodOptional<z.ZodBoolean>;
918
+ precision: z.ZodOptional<z.ZodNumber>;
919
+ readOnly: z.ZodOptional<z.ZodBoolean>;
920
+ }, "strip", z.ZodTypeAny, {
921
+ displayName?: string | undefined;
922
+ defaultValue?: string | undefined;
923
+ type?: string | undefined;
924
+ minLength?: number | undefined;
925
+ maxLength?: number | undefined;
926
+ regex?: string | undefined;
927
+ min?: string | undefined;
928
+ multiline?: boolean | undefined;
929
+ max?: string | undefined;
930
+ options?: string[] | undefined;
931
+ overrides?: string | undefined;
932
+ scope?: string | undefined;
933
+ inherited?: boolean | undefined;
934
+ precision?: number | undefined;
935
+ readOnly?: boolean | undefined;
936
+ }, {
937
+ displayName?: string | undefined;
938
+ defaultValue?: string | undefined;
939
+ type?: string | undefined;
940
+ minLength?: number | undefined;
941
+ maxLength?: number | undefined;
942
+ regex?: string | undefined;
943
+ min?: string | undefined;
944
+ multiline?: boolean | undefined;
945
+ max?: string | undefined;
946
+ options?: string[] | undefined;
947
+ overrides?: string | undefined;
948
+ scope?: string | undefined;
949
+ inherited?: boolean | undefined;
950
+ precision?: number | undefined;
951
+ readOnly?: boolean | undefined;
952
+ }>>>;
953
+ }, "strip", z.ZodTypeAny, {
954
+ displayName?: string | undefined;
955
+ abstract?: boolean | undefined;
956
+ extend?: string | undefined;
957
+ data?: Record<string, {
958
+ displayName?: string | undefined;
959
+ defaultValue?: string | undefined;
960
+ type?: string | undefined;
961
+ minLength?: number | undefined;
962
+ maxLength?: number | undefined;
963
+ regex?: string | undefined;
964
+ min?: string | undefined;
965
+ multiline?: boolean | undefined;
966
+ max?: string | undefined;
967
+ options?: string[] | undefined;
968
+ overrides?: string | undefined;
969
+ scope?: string | undefined;
970
+ inherited?: boolean | undefined;
971
+ precision?: number | undefined;
972
+ readOnly?: boolean | undefined;
973
+ }> | undefined;
974
+ contents?: string[] | undefined;
975
+ }, {
976
+ displayName?: string | undefined;
977
+ abstract?: boolean | undefined;
978
+ extend?: string | undefined;
979
+ data?: Record<string, {
980
+ displayName?: string | undefined;
981
+ defaultValue?: string | undefined;
982
+ type?: string | undefined;
983
+ minLength?: number | undefined;
984
+ maxLength?: number | undefined;
985
+ regex?: string | undefined;
986
+ min?: string | undefined;
987
+ multiline?: boolean | undefined;
988
+ max?: string | undefined;
989
+ options?: string[] | undefined;
990
+ overrides?: string | undefined;
991
+ scope?: string | undefined;
992
+ inherited?: boolean | undefined;
993
+ precision?: number | undefined;
994
+ readOnly?: boolean | undefined;
995
+ }> | undefined;
996
+ contents?: string[] | undefined;
997
+ }>>>;
998
+ defaultTimeZone: z.ZodOptional<z.ZodString>;
999
+ defaultCurrency: z.ZodOptional<z.ZodString>;
1000
+ defaultTermDuration: z.ZodOptional<z.ZodNumber>;
1001
+ defaultInstallmentPlan: z.ZodOptional<z.ZodString>;
1002
+ defaultBillingPlan: z.ZodOptional<z.ZodString>;
1003
+ defaultDurationBasis: z.ZodOptional<z.ZodString>;
1004
+ defaultDelinquencyPlan: z.ZodOptional<z.ZodString>;
1005
+ defaultAuxDataSettings: z.ZodOptional<z.ZodString>;
1006
+ coverageTerms: z.ZodAny;
1007
+ charges: z.ZodAny;
1008
+ transactionTypes: z.ZodAny;
1009
+ installmentPlans: z.ZodAny;
1010
+ billingPlans: z.ZodAny;
1011
+ payments: z.ZodAny;
1012
+ disbursements: z.ZodAny;
1013
+ tables: z.ZodAny;
1014
+ constraintTables: z.ZodAny;
1015
+ secrets: z.ZodAny;
1016
+ documents: z.ZodAny;
1017
+ auxDataSettings: z.ZodAny;
1018
+ customEvents: z.ZodAny;
1019
+ delinquencyPlans: z.ZodAny;
1020
+ }, "strip", z.ZodTypeAny, {
1021
+ dataTypes: Record<string, {
1022
+ displayName?: string | undefined;
1023
+ abstract?: boolean | undefined;
1024
+ extend?: string | undefined;
1025
+ data?: Record<string, {
1026
+ displayName?: string | undefined;
1027
+ defaultValue?: string | undefined;
1028
+ type?: string | undefined;
1029
+ minLength?: number | undefined;
1030
+ maxLength?: number | undefined;
1031
+ regex?: string | undefined;
1032
+ min?: string | undefined;
1033
+ multiline?: boolean | undefined;
1034
+ max?: string | undefined;
1035
+ options?: string[] | undefined;
1036
+ overrides?: string | undefined;
1037
+ scope?: string | undefined;
1038
+ inherited?: boolean | undefined;
1039
+ precision?: number | undefined;
1040
+ readOnly?: boolean | undefined;
1041
+ }> | undefined;
1042
+ contents?: string[] | undefined;
1043
+ }>;
1044
+ accounts: Record<string, {
1045
+ displayName?: string | undefined;
1046
+ abstract?: boolean | undefined;
1047
+ extend?: string | undefined;
1048
+ data?: Record<string, {
1049
+ displayName?: string | undefined;
1050
+ defaultValue?: string | undefined;
1051
+ type?: string | undefined;
1052
+ minLength?: number | undefined;
1053
+ maxLength?: number | undefined;
1054
+ regex?: string | undefined;
1055
+ min?: string | undefined;
1056
+ multiline?: boolean | undefined;
1057
+ max?: string | undefined;
1058
+ options?: string[] | undefined;
1059
+ overrides?: string | undefined;
1060
+ scope?: string | undefined;
1061
+ inherited?: boolean | undefined;
1062
+ precision?: number | undefined;
1063
+ readOnly?: boolean | undefined;
1064
+ }> | undefined;
1065
+ }>;
1066
+ products: Record<string, {
1067
+ displayName?: string | undefined;
1068
+ abstract?: boolean | undefined;
1069
+ extend?: string | undefined;
1070
+ data?: Record<string, {
1071
+ displayName?: string | undefined;
1072
+ defaultValue?: string | undefined;
1073
+ type?: string | undefined;
1074
+ minLength?: number | undefined;
1075
+ maxLength?: number | undefined;
1076
+ regex?: string | undefined;
1077
+ min?: string | undefined;
1078
+ multiline?: boolean | undefined;
1079
+ max?: string | undefined;
1080
+ options?: string[] | undefined;
1081
+ overrides?: string | undefined;
1082
+ scope?: string | undefined;
1083
+ inherited?: boolean | undefined;
1084
+ precision?: number | undefined;
1085
+ readOnly?: boolean | undefined;
1086
+ }> | undefined;
1087
+ contents?: string[] | undefined;
1088
+ defaultTimeZone?: string | undefined;
1089
+ defaultCurrency?: string | undefined;
1090
+ defaultTermDuration?: number | undefined;
1091
+ defaultDurationBasis?: string | undefined;
1092
+ defaultInstallmentPlan?: string | undefined;
1093
+ coverageTerms?: string[] | undefined;
1094
+ eligibleAccountTypes?: string[] | undefined;
1095
+ documents?: string[] | undefined;
1096
+ plugins?: any;
1097
+ tables?: any;
1098
+ }>;
1099
+ defaultTimeZone?: string | undefined;
1100
+ defaultCurrency?: string | undefined;
1101
+ defaultTermDuration?: number | undefined;
1102
+ defaultDurationBasis?: string | undefined;
1103
+ defaultInstallmentPlan?: string | undefined;
1104
+ coverageTerms?: any;
1105
+ documents?: any;
1106
+ tables?: any;
1107
+ policyLines?: Record<string, {
1108
+ displayName?: string | undefined;
1109
+ abstract?: boolean | undefined;
1110
+ extend?: string | undefined;
1111
+ data?: Record<string, {
1112
+ displayName?: string | undefined;
1113
+ defaultValue?: string | undefined;
1114
+ type?: string | undefined;
1115
+ minLength?: number | undefined;
1116
+ maxLength?: number | undefined;
1117
+ regex?: string | undefined;
1118
+ min?: string | undefined;
1119
+ multiline?: boolean | undefined;
1120
+ max?: string | undefined;
1121
+ options?: string[] | undefined;
1122
+ overrides?: string | undefined;
1123
+ scope?: string | undefined;
1124
+ inherited?: boolean | undefined;
1125
+ precision?: number | undefined;
1126
+ readOnly?: boolean | undefined;
1127
+ }> | undefined;
1128
+ contents?: string[] | undefined;
1129
+ }> | undefined;
1130
+ exposures?: Record<string, {
1131
+ displayName?: string | undefined;
1132
+ abstract?: boolean | undefined;
1133
+ extend?: string | undefined;
1134
+ data?: Record<string, {
1135
+ displayName?: string | undefined;
1136
+ defaultValue?: string | undefined;
1137
+ type?: string | undefined;
1138
+ minLength?: number | undefined;
1139
+ maxLength?: number | undefined;
1140
+ regex?: string | undefined;
1141
+ min?: string | undefined;
1142
+ multiline?: boolean | undefined;
1143
+ max?: string | undefined;
1144
+ options?: string[] | undefined;
1145
+ overrides?: string | undefined;
1146
+ scope?: string | undefined;
1147
+ inherited?: boolean | undefined;
1148
+ precision?: number | undefined;
1149
+ readOnly?: boolean | undefined;
1150
+ }> | undefined;
1151
+ contents?: string[] | undefined;
1152
+ }> | undefined;
1153
+ exposureGroups?: Record<string, {
1154
+ displayName?: string | undefined;
1155
+ abstract?: boolean | undefined;
1156
+ extend?: string | undefined;
1157
+ data?: Record<string, {
1158
+ displayName?: string | undefined;
1159
+ defaultValue?: string | undefined;
1160
+ type?: string | undefined;
1161
+ minLength?: number | undefined;
1162
+ maxLength?: number | undefined;
1163
+ regex?: string | undefined;
1164
+ min?: string | undefined;
1165
+ multiline?: boolean | undefined;
1166
+ max?: string | undefined;
1167
+ options?: string[] | undefined;
1168
+ overrides?: string | undefined;
1169
+ scope?: string | undefined;
1170
+ inherited?: boolean | undefined;
1171
+ precision?: number | undefined;
1172
+ readOnly?: boolean | undefined;
1173
+ }> | undefined;
1174
+ contents?: string[] | undefined;
1175
+ }> | undefined;
1176
+ coverages?: Record<string, {
1177
+ displayName?: string | undefined;
1178
+ abstract?: boolean | undefined;
1179
+ extend?: string | undefined;
1180
+ data?: Record<string, {
1181
+ displayName?: string | undefined;
1182
+ defaultValue?: string | undefined;
1183
+ type?: string | undefined;
1184
+ minLength?: number | undefined;
1185
+ maxLength?: number | undefined;
1186
+ regex?: string | undefined;
1187
+ min?: string | undefined;
1188
+ multiline?: boolean | undefined;
1189
+ max?: string | undefined;
1190
+ options?: string[] | undefined;
1191
+ overrides?: string | undefined;
1192
+ scope?: string | undefined;
1193
+ inherited?: boolean | undefined;
1194
+ precision?: number | undefined;
1195
+ readOnly?: boolean | undefined;
1196
+ }> | undefined;
1197
+ contents?: string[] | undefined;
1198
+ }> | undefined;
1199
+ defaultBillingPlan?: string | undefined;
1200
+ defaultDelinquencyPlan?: string | undefined;
1201
+ defaultAuxDataSettings?: string | undefined;
1202
+ charges?: any;
1203
+ transactionTypes?: any;
1204
+ installmentPlans?: any;
1205
+ billingPlans?: any;
1206
+ payments?: any;
1207
+ disbursements?: any;
1208
+ constraintTables?: any;
1209
+ secrets?: any;
1210
+ auxDataSettings?: any;
1211
+ customEvents?: any;
1212
+ delinquencyPlans?: any;
1213
+ }, {
1214
+ dataTypes: Record<string, {
1215
+ displayName?: string | undefined;
1216
+ abstract?: boolean | undefined;
1217
+ extend?: string | undefined;
1218
+ data?: Record<string, {
1219
+ displayName?: string | undefined;
1220
+ defaultValue?: string | undefined;
1221
+ type?: string | undefined;
1222
+ minLength?: number | undefined;
1223
+ maxLength?: number | undefined;
1224
+ regex?: string | undefined;
1225
+ min?: string | undefined;
1226
+ multiline?: boolean | undefined;
1227
+ max?: string | undefined;
1228
+ options?: string[] | undefined;
1229
+ overrides?: string | undefined;
1230
+ scope?: string | undefined;
1231
+ inherited?: boolean | undefined;
1232
+ precision?: number | undefined;
1233
+ readOnly?: boolean | undefined;
1234
+ }> | undefined;
1235
+ contents?: string[] | undefined;
1236
+ }>;
1237
+ accounts: Record<string, {
1238
+ displayName?: string | undefined;
1239
+ abstract?: boolean | undefined;
1240
+ extend?: string | undefined;
1241
+ data?: Record<string, {
1242
+ displayName?: string | undefined;
1243
+ defaultValue?: string | undefined;
1244
+ type?: string | undefined;
1245
+ minLength?: number | undefined;
1246
+ maxLength?: number | undefined;
1247
+ regex?: string | undefined;
1248
+ min?: string | undefined;
1249
+ multiline?: boolean | undefined;
1250
+ max?: string | undefined;
1251
+ options?: string[] | undefined;
1252
+ overrides?: string | undefined;
1253
+ scope?: string | undefined;
1254
+ inherited?: boolean | undefined;
1255
+ precision?: number | undefined;
1256
+ readOnly?: boolean | undefined;
1257
+ }> | undefined;
1258
+ }>;
1259
+ products: Record<string, {
1260
+ displayName?: string | undefined;
1261
+ abstract?: boolean | undefined;
1262
+ extend?: string | undefined;
1263
+ data?: Record<string, {
1264
+ displayName?: string | undefined;
1265
+ defaultValue?: string | undefined;
1266
+ type?: string | undefined;
1267
+ minLength?: number | undefined;
1268
+ maxLength?: number | undefined;
1269
+ regex?: string | undefined;
1270
+ min?: string | undefined;
1271
+ multiline?: boolean | undefined;
1272
+ max?: string | undefined;
1273
+ options?: string[] | undefined;
1274
+ overrides?: string | undefined;
1275
+ scope?: string | undefined;
1276
+ inherited?: boolean | undefined;
1277
+ precision?: number | undefined;
1278
+ readOnly?: boolean | undefined;
1279
+ }> | undefined;
1280
+ contents?: string[] | undefined;
1281
+ defaultTimeZone?: string | undefined;
1282
+ defaultCurrency?: string | undefined;
1283
+ defaultTermDuration?: number | undefined;
1284
+ defaultDurationBasis?: string | undefined;
1285
+ defaultInstallmentPlan?: string | undefined;
1286
+ coverageTerms?: string[] | undefined;
1287
+ eligibleAccountTypes?: string[] | undefined;
1288
+ documents?: string[] | undefined;
1289
+ plugins?: any;
1290
+ tables?: any;
1291
+ }>;
1292
+ defaultTimeZone?: string | undefined;
1293
+ defaultCurrency?: string | undefined;
1294
+ defaultTermDuration?: number | undefined;
1295
+ defaultDurationBasis?: string | undefined;
1296
+ defaultInstallmentPlan?: string | undefined;
1297
+ coverageTerms?: any;
1298
+ documents?: any;
1299
+ tables?: any;
1300
+ policyLines?: Record<string, {
1301
+ displayName?: string | undefined;
1302
+ abstract?: boolean | undefined;
1303
+ extend?: string | undefined;
1304
+ data?: Record<string, {
1305
+ displayName?: string | undefined;
1306
+ defaultValue?: string | undefined;
1307
+ type?: string | undefined;
1308
+ minLength?: number | undefined;
1309
+ maxLength?: number | undefined;
1310
+ regex?: string | undefined;
1311
+ min?: string | undefined;
1312
+ multiline?: boolean | undefined;
1313
+ max?: string | undefined;
1314
+ options?: string[] | undefined;
1315
+ overrides?: string | undefined;
1316
+ scope?: string | undefined;
1317
+ inherited?: boolean | undefined;
1318
+ precision?: number | undefined;
1319
+ readOnly?: boolean | undefined;
1320
+ }> | undefined;
1321
+ contents?: string[] | undefined;
1322
+ }> | undefined;
1323
+ exposures?: Record<string, {
1324
+ displayName?: string | undefined;
1325
+ abstract?: boolean | undefined;
1326
+ extend?: string | undefined;
1327
+ data?: Record<string, {
1328
+ displayName?: string | undefined;
1329
+ defaultValue?: string | undefined;
1330
+ type?: string | undefined;
1331
+ minLength?: number | undefined;
1332
+ maxLength?: number | undefined;
1333
+ regex?: string | undefined;
1334
+ min?: string | undefined;
1335
+ multiline?: boolean | undefined;
1336
+ max?: string | undefined;
1337
+ options?: string[] | undefined;
1338
+ overrides?: string | undefined;
1339
+ scope?: string | undefined;
1340
+ inherited?: boolean | undefined;
1341
+ precision?: number | undefined;
1342
+ readOnly?: boolean | undefined;
1343
+ }> | undefined;
1344
+ contents?: string[] | undefined;
1345
+ }> | undefined;
1346
+ exposureGroups?: Record<string, {
1347
+ displayName?: string | undefined;
1348
+ abstract?: boolean | undefined;
1349
+ extend?: string | undefined;
1350
+ data?: Record<string, {
1351
+ displayName?: string | undefined;
1352
+ defaultValue?: string | undefined;
1353
+ type?: string | undefined;
1354
+ minLength?: number | undefined;
1355
+ maxLength?: number | undefined;
1356
+ regex?: string | undefined;
1357
+ min?: string | undefined;
1358
+ multiline?: boolean | undefined;
1359
+ max?: string | undefined;
1360
+ options?: string[] | undefined;
1361
+ overrides?: string | undefined;
1362
+ scope?: string | undefined;
1363
+ inherited?: boolean | undefined;
1364
+ precision?: number | undefined;
1365
+ readOnly?: boolean | undefined;
1366
+ }> | undefined;
1367
+ contents?: string[] | undefined;
1368
+ }> | undefined;
1369
+ coverages?: Record<string, {
1370
+ displayName?: string | undefined;
1371
+ abstract?: boolean | undefined;
1372
+ extend?: string | undefined;
1373
+ data?: Record<string, {
1374
+ displayName?: string | undefined;
1375
+ defaultValue?: string | undefined;
1376
+ type?: string | undefined;
1377
+ minLength?: number | undefined;
1378
+ maxLength?: number | undefined;
1379
+ regex?: string | undefined;
1380
+ min?: string | undefined;
1381
+ multiline?: boolean | undefined;
1382
+ max?: string | undefined;
1383
+ options?: string[] | undefined;
1384
+ overrides?: string | undefined;
1385
+ scope?: string | undefined;
1386
+ inherited?: boolean | undefined;
1387
+ precision?: number | undefined;
1388
+ readOnly?: boolean | undefined;
1389
+ }> | undefined;
1390
+ contents?: string[] | undefined;
1391
+ }> | undefined;
1392
+ defaultBillingPlan?: string | undefined;
1393
+ defaultDelinquencyPlan?: string | undefined;
1394
+ defaultAuxDataSettings?: string | undefined;
1395
+ charges?: any;
1396
+ transactionTypes?: any;
1397
+ installmentPlans?: any;
1398
+ billingPlans?: any;
1399
+ payments?: any;
1400
+ disbursements?: any;
1401
+ constraintTables?: any;
1402
+ secrets?: any;
1403
+ auxDataSettings?: any;
1404
+ customEvents?: any;
1405
+ delinquencyPlans?: any;
1406
+ }>;
1407
+
1408
+ export declare type DataTypeConfig = z.infer<typeof dataTypeConfigSchema>;
1409
+
1410
+ export declare type DataTypeConfigRecord = z.infer<typeof dataTypesRecordSchema>;
1411
+
1412
+ export declare const dataTypeConfigSchema: z.ZodObject<{
1413
+ abstract: z.ZodOptional<z.ZodBoolean>;
1414
+ extend: z.ZodOptional<z.ZodString>;
1415
+ displayName: z.ZodOptional<z.ZodString>;
1416
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1417
+ displayName: z.ZodOptional<z.ZodString>;
1418
+ defaultValue: z.ZodOptional<z.ZodString>;
1419
+ type: z.ZodOptional<z.ZodString>;
1420
+ minLength: z.ZodOptional<z.ZodNumber>;
1421
+ maxLength: z.ZodOptional<z.ZodNumber>;
1422
+ regex: z.ZodOptional<z.ZodString>;
1423
+ min: z.ZodOptional<z.ZodString>;
1424
+ multiline: z.ZodOptional<z.ZodBoolean>;
1425
+ max: z.ZodOptional<z.ZodString>;
1426
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1427
+ overrides: z.ZodOptional<z.ZodString>;
1428
+ scope: z.ZodOptional<z.ZodString>;
1429
+ inherited: z.ZodOptional<z.ZodBoolean>;
1430
+ precision: z.ZodOptional<z.ZodNumber>;
1431
+ readOnly: z.ZodOptional<z.ZodBoolean>;
1432
+ }, "strip", z.ZodTypeAny, {
1433
+ displayName?: string | undefined;
1434
+ defaultValue?: string | undefined;
1435
+ type?: string | undefined;
1436
+ minLength?: number | undefined;
1437
+ maxLength?: number | undefined;
1438
+ regex?: string | undefined;
1439
+ min?: string | undefined;
1440
+ multiline?: boolean | undefined;
1441
+ max?: string | undefined;
1442
+ options?: string[] | undefined;
1443
+ overrides?: string | undefined;
1444
+ scope?: string | undefined;
1445
+ inherited?: boolean | undefined;
1446
+ precision?: number | undefined;
1447
+ readOnly?: boolean | undefined;
1448
+ }, {
1449
+ displayName?: string | undefined;
1450
+ defaultValue?: string | undefined;
1451
+ type?: string | undefined;
1452
+ minLength?: number | undefined;
1453
+ maxLength?: number | undefined;
1454
+ regex?: string | undefined;
1455
+ min?: string | undefined;
1456
+ multiline?: boolean | undefined;
1457
+ max?: string | undefined;
1458
+ options?: string[] | undefined;
1459
+ overrides?: string | undefined;
1460
+ scope?: string | undefined;
1461
+ inherited?: boolean | undefined;
1462
+ precision?: number | undefined;
1463
+ readOnly?: boolean | undefined;
1464
+ }>>>;
1465
+ }, "strip", z.ZodTypeAny, {
1466
+ displayName?: string | undefined;
1467
+ abstract?: boolean | undefined;
1468
+ extend?: string | undefined;
1469
+ data?: Record<string, {
1470
+ displayName?: string | undefined;
1471
+ defaultValue?: string | undefined;
1472
+ type?: string | undefined;
1473
+ minLength?: number | undefined;
1474
+ maxLength?: number | undefined;
1475
+ regex?: string | undefined;
1476
+ min?: string | undefined;
1477
+ multiline?: boolean | undefined;
1478
+ max?: string | undefined;
1479
+ options?: string[] | undefined;
1480
+ overrides?: string | undefined;
1481
+ scope?: string | undefined;
1482
+ inherited?: boolean | undefined;
1483
+ precision?: number | undefined;
1484
+ readOnly?: boolean | undefined;
1485
+ }> | undefined;
1486
+ }, {
1487
+ displayName?: string | undefined;
1488
+ abstract?: boolean | undefined;
1489
+ extend?: string | undefined;
1490
+ data?: Record<string, {
1491
+ displayName?: string | undefined;
1492
+ defaultValue?: string | undefined;
1493
+ type?: string | undefined;
1494
+ minLength?: number | undefined;
1495
+ maxLength?: number | undefined;
1496
+ regex?: string | undefined;
1497
+ min?: string | undefined;
1498
+ multiline?: boolean | undefined;
1499
+ max?: string | undefined;
1500
+ options?: string[] | undefined;
1501
+ overrides?: string | undefined;
1502
+ scope?: string | undefined;
1503
+ inherited?: boolean | undefined;
1504
+ precision?: number | undefined;
1505
+ readOnly?: boolean | undefined;
1506
+ }> | undefined;
1507
+ }>;
1508
+
1509
+ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
1510
+ abstract: z.ZodOptional<z.ZodBoolean>;
1511
+ extend: z.ZodOptional<z.ZodString>;
1512
+ displayName: z.ZodOptional<z.ZodString>;
1513
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1514
+ displayName: z.ZodOptional<z.ZodString>;
1515
+ defaultValue: z.ZodOptional<z.ZodString>;
1516
+ type: z.ZodOptional<z.ZodString>;
1517
+ minLength: z.ZodOptional<z.ZodNumber>;
1518
+ maxLength: z.ZodOptional<z.ZodNumber>;
1519
+ regex: z.ZodOptional<z.ZodString>;
1520
+ min: z.ZodOptional<z.ZodString>;
1521
+ multiline: z.ZodOptional<z.ZodBoolean>;
1522
+ max: z.ZodOptional<z.ZodString>;
1523
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1524
+ overrides: z.ZodOptional<z.ZodString>;
1525
+ scope: z.ZodOptional<z.ZodString>;
1526
+ inherited: z.ZodOptional<z.ZodBoolean>;
1527
+ precision: z.ZodOptional<z.ZodNumber>;
1528
+ readOnly: z.ZodOptional<z.ZodBoolean>;
1529
+ }, "strip", z.ZodTypeAny, {
1530
+ displayName?: string | undefined;
1531
+ defaultValue?: string | undefined;
1532
+ type?: string | undefined;
1533
+ minLength?: number | undefined;
1534
+ maxLength?: number | undefined;
1535
+ regex?: string | undefined;
1536
+ min?: string | undefined;
1537
+ multiline?: boolean | undefined;
1538
+ max?: string | undefined;
1539
+ options?: string[] | undefined;
1540
+ overrides?: string | undefined;
1541
+ scope?: string | undefined;
1542
+ inherited?: boolean | undefined;
1543
+ precision?: number | undefined;
1544
+ readOnly?: boolean | undefined;
1545
+ }, {
1546
+ displayName?: string | undefined;
1547
+ defaultValue?: string | undefined;
1548
+ type?: string | undefined;
1549
+ minLength?: number | undefined;
1550
+ maxLength?: number | undefined;
1551
+ regex?: string | undefined;
1552
+ min?: string | undefined;
1553
+ multiline?: boolean | undefined;
1554
+ max?: string | undefined;
1555
+ options?: string[] | undefined;
1556
+ overrides?: string | undefined;
1557
+ scope?: string | undefined;
1558
+ inherited?: boolean | undefined;
1559
+ precision?: number | undefined;
1560
+ readOnly?: boolean | undefined;
1561
+ }>>>;
1562
+ }, "strip", z.ZodTypeAny, {
1563
+ displayName?: string | undefined;
1564
+ abstract?: boolean | undefined;
1565
+ extend?: string | undefined;
1566
+ data?: Record<string, {
1567
+ displayName?: string | undefined;
1568
+ defaultValue?: string | undefined;
1569
+ type?: string | undefined;
1570
+ minLength?: number | undefined;
1571
+ maxLength?: number | undefined;
1572
+ regex?: string | undefined;
1573
+ min?: string | undefined;
1574
+ multiline?: boolean | undefined;
1575
+ max?: string | undefined;
1576
+ options?: string[] | undefined;
1577
+ overrides?: string | undefined;
1578
+ scope?: string | undefined;
1579
+ inherited?: boolean | undefined;
1580
+ precision?: number | undefined;
1581
+ readOnly?: boolean | undefined;
1582
+ }> | undefined;
1583
+ }, {
1584
+ displayName?: string | undefined;
1585
+ abstract?: boolean | undefined;
1586
+ extend?: string | undefined;
1587
+ data?: Record<string, {
1588
+ displayName?: string | undefined;
1589
+ defaultValue?: string | undefined;
1590
+ type?: string | undefined;
1591
+ minLength?: number | undefined;
1592
+ maxLength?: number | undefined;
1593
+ regex?: string | undefined;
1594
+ min?: string | undefined;
1595
+ multiline?: boolean | undefined;
1596
+ max?: string | undefined;
1597
+ options?: string[] | undefined;
1598
+ overrides?: string | undefined;
1599
+ scope?: string | undefined;
1600
+ inherited?: boolean | undefined;
1601
+ precision?: number | undefined;
1602
+ readOnly?: boolean | undefined;
1603
+ }> | undefined;
1604
+ }>>;
1605
+
1606
+ declare type Element_2 = z.infer<typeof baseElementResponseSchema> & {
1607
+ elements?: Element_2[];
1608
+ };
1609
+
1610
+ export declare type ElementConfig = z.infer<typeof elementConfigSchema>;
1611
+
1612
+ export declare type ElementConfigRecord = z.infer<typeof elementConfigRecordSchema>;
1613
+
1614
+ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
1615
+ displayName: z.ZodOptional<z.ZodString>;
1616
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1617
+ abstract: z.ZodOptional<z.ZodBoolean>;
1618
+ extend: z.ZodOptional<z.ZodString>;
1619
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1620
+ displayName: z.ZodOptional<z.ZodString>;
1621
+ defaultValue: z.ZodOptional<z.ZodString>;
1622
+ type: z.ZodOptional<z.ZodString>;
1623
+ minLength: z.ZodOptional<z.ZodNumber>;
1624
+ maxLength: z.ZodOptional<z.ZodNumber>;
1625
+ regex: z.ZodOptional<z.ZodString>;
1626
+ min: z.ZodOptional<z.ZodString>;
1627
+ multiline: z.ZodOptional<z.ZodBoolean>;
1628
+ max: z.ZodOptional<z.ZodString>;
1629
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1630
+ overrides: z.ZodOptional<z.ZodString>;
1631
+ scope: z.ZodOptional<z.ZodString>;
1632
+ inherited: z.ZodOptional<z.ZodBoolean>;
1633
+ precision: z.ZodOptional<z.ZodNumber>;
1634
+ readOnly: z.ZodOptional<z.ZodBoolean>;
1635
+ }, "strip", z.ZodTypeAny, {
1636
+ displayName?: string | undefined;
1637
+ defaultValue?: string | undefined;
1638
+ type?: string | undefined;
1639
+ minLength?: number | undefined;
1640
+ maxLength?: number | undefined;
1641
+ regex?: string | undefined;
1642
+ min?: string | undefined;
1643
+ multiline?: boolean | undefined;
1644
+ max?: string | undefined;
1645
+ options?: string[] | undefined;
1646
+ overrides?: string | undefined;
1647
+ scope?: string | undefined;
1648
+ inherited?: boolean | undefined;
1649
+ precision?: number | undefined;
1650
+ readOnly?: boolean | undefined;
1651
+ }, {
1652
+ displayName?: string | undefined;
1653
+ defaultValue?: string | undefined;
1654
+ type?: string | undefined;
1655
+ minLength?: number | undefined;
1656
+ maxLength?: number | undefined;
1657
+ regex?: string | undefined;
1658
+ min?: string | undefined;
1659
+ multiline?: boolean | undefined;
1660
+ max?: string | undefined;
1661
+ options?: string[] | undefined;
1662
+ overrides?: string | undefined;
1663
+ scope?: string | undefined;
1664
+ inherited?: boolean | undefined;
1665
+ precision?: number | undefined;
1666
+ readOnly?: boolean | undefined;
1667
+ }>>>;
1668
+ }, "strip", z.ZodTypeAny, {
1669
+ displayName?: string | undefined;
1670
+ abstract?: boolean | undefined;
1671
+ extend?: string | undefined;
1672
+ data?: Record<string, {
1673
+ displayName?: string | undefined;
1674
+ defaultValue?: string | undefined;
1675
+ type?: string | undefined;
1676
+ minLength?: number | undefined;
1677
+ maxLength?: number | undefined;
1678
+ regex?: string | undefined;
1679
+ min?: string | undefined;
1680
+ multiline?: boolean | undefined;
1681
+ max?: string | undefined;
1682
+ options?: string[] | undefined;
1683
+ overrides?: string | undefined;
1684
+ scope?: string | undefined;
1685
+ inherited?: boolean | undefined;
1686
+ precision?: number | undefined;
1687
+ readOnly?: boolean | undefined;
1688
+ }> | undefined;
1689
+ contents?: string[] | undefined;
1690
+ }, {
1691
+ displayName?: string | undefined;
1692
+ abstract?: boolean | undefined;
1693
+ extend?: string | undefined;
1694
+ data?: Record<string, {
1695
+ displayName?: string | undefined;
1696
+ defaultValue?: string | undefined;
1697
+ type?: string | undefined;
1698
+ minLength?: number | undefined;
1699
+ maxLength?: number | undefined;
1700
+ regex?: string | undefined;
1701
+ min?: string | undefined;
1702
+ multiline?: boolean | undefined;
1703
+ max?: string | undefined;
1704
+ options?: string[] | undefined;
1705
+ overrides?: string | undefined;
1706
+ scope?: string | undefined;
1707
+ inherited?: boolean | undefined;
1708
+ precision?: number | undefined;
1709
+ readOnly?: boolean | undefined;
1710
+ }> | undefined;
1711
+ contents?: string[] | undefined;
1712
+ }>>;
1713
+
1714
+ export declare const elementConfigSchema: z.ZodObject<{
1715
+ displayName: z.ZodOptional<z.ZodString>;
1716
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1717
+ abstract: z.ZodOptional<z.ZodBoolean>;
1718
+ extend: z.ZodOptional<z.ZodString>;
1719
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1720
+ displayName: z.ZodOptional<z.ZodString>;
1721
+ defaultValue: z.ZodOptional<z.ZodString>;
1722
+ type: z.ZodOptional<z.ZodString>;
1723
+ minLength: z.ZodOptional<z.ZodNumber>;
1724
+ maxLength: z.ZodOptional<z.ZodNumber>;
1725
+ regex: z.ZodOptional<z.ZodString>;
1726
+ min: z.ZodOptional<z.ZodString>;
1727
+ multiline: z.ZodOptional<z.ZodBoolean>;
1728
+ max: z.ZodOptional<z.ZodString>;
1729
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1730
+ overrides: z.ZodOptional<z.ZodString>;
1731
+ scope: z.ZodOptional<z.ZodString>;
1732
+ inherited: z.ZodOptional<z.ZodBoolean>;
1733
+ precision: z.ZodOptional<z.ZodNumber>;
1734
+ readOnly: z.ZodOptional<z.ZodBoolean>;
1735
+ }, "strip", z.ZodTypeAny, {
1736
+ displayName?: string | undefined;
1737
+ defaultValue?: string | undefined;
1738
+ type?: string | undefined;
1739
+ minLength?: number | undefined;
1740
+ maxLength?: number | undefined;
1741
+ regex?: string | undefined;
1742
+ min?: string | undefined;
1743
+ multiline?: boolean | undefined;
1744
+ max?: string | undefined;
1745
+ options?: string[] | undefined;
1746
+ overrides?: string | undefined;
1747
+ scope?: string | undefined;
1748
+ inherited?: boolean | undefined;
1749
+ precision?: number | undefined;
1750
+ readOnly?: boolean | undefined;
1751
+ }, {
1752
+ displayName?: string | undefined;
1753
+ defaultValue?: string | undefined;
1754
+ type?: string | undefined;
1755
+ minLength?: number | undefined;
1756
+ maxLength?: number | undefined;
1757
+ regex?: string | undefined;
1758
+ min?: string | undefined;
1759
+ multiline?: boolean | undefined;
1760
+ max?: string | undefined;
1761
+ options?: string[] | undefined;
1762
+ overrides?: string | undefined;
1763
+ scope?: string | undefined;
1764
+ inherited?: boolean | undefined;
1765
+ precision?: number | undefined;
1766
+ readOnly?: boolean | undefined;
1767
+ }>>>;
1768
+ }, "strip", z.ZodTypeAny, {
1769
+ displayName?: string | undefined;
1770
+ abstract?: boolean | undefined;
1771
+ extend?: string | undefined;
1772
+ data?: Record<string, {
1773
+ displayName?: string | undefined;
1774
+ defaultValue?: string | undefined;
1775
+ type?: string | undefined;
1776
+ minLength?: number | undefined;
1777
+ maxLength?: number | undefined;
1778
+ regex?: string | undefined;
1779
+ min?: string | undefined;
1780
+ multiline?: boolean | undefined;
1781
+ max?: string | undefined;
1782
+ options?: string[] | undefined;
1783
+ overrides?: string | undefined;
1784
+ scope?: string | undefined;
1785
+ inherited?: boolean | undefined;
1786
+ precision?: number | undefined;
1787
+ readOnly?: boolean | undefined;
1788
+ }> | undefined;
1789
+ contents?: string[] | undefined;
1790
+ }, {
1791
+ displayName?: string | undefined;
1792
+ abstract?: boolean | undefined;
1793
+ extend?: string | undefined;
1794
+ data?: Record<string, {
1795
+ displayName?: string | undefined;
1796
+ defaultValue?: string | undefined;
1797
+ type?: string | undefined;
1798
+ minLength?: number | undefined;
1799
+ maxLength?: number | undefined;
1800
+ regex?: string | undefined;
1801
+ min?: string | undefined;
1802
+ multiline?: boolean | undefined;
1803
+ max?: string | undefined;
1804
+ options?: string[] | undefined;
1805
+ overrides?: string | undefined;
1806
+ scope?: string | undefined;
1807
+ inherited?: boolean | undefined;
1808
+ precision?: number | undefined;
1809
+ readOnly?: boolean | undefined;
1810
+ }> | undefined;
1811
+ contents?: string[] | undefined;
1812
+ }>;
1813
+
1814
+ export declare type ElementRequest = z.infer<typeof elementRequestSchema>;
1815
+
1816
+ export declare const elementRequestSchema: z.ZodObject<{
1817
+ locator: z.ZodString;
1818
+ removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1819
+ removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1820
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1821
+ setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1822
+ }, "strip", z.ZodTypeAny, {
1823
+ locator: string;
1824
+ removeCoverageTerms?: Record<string, unknown> | undefined;
1825
+ removeData?: Record<string, unknown> | undefined;
1826
+ setCoverageTerms?: Record<string, unknown> | undefined;
1827
+ setData?: Record<string, unknown> | undefined;
1828
+ }, {
1829
+ locator: string;
1830
+ removeCoverageTerms?: Record<string, unknown> | undefined;
1831
+ removeData?: Record<string, unknown> | undefined;
1832
+ setCoverageTerms?: Record<string, unknown> | undefined;
1833
+ setData?: Record<string, unknown> | undefined;
1834
+ }>;
1835
+
1836
+ export declare type ElementResponse = z.infer<typeof elementResponseSchema>;
1837
+
1838
+ export declare const elementResponseSchema: z.ZodType<Element_2>;
1839
+
1840
+ export declare type FieldConfig = z.infer<typeof fieldConfigSchema>;
1841
+
1842
+ export declare type FieldConfigRecord = z.infer<typeof fieldConfigRecordSchema>;
1843
+
1844
+ export declare const fieldConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
1845
+ displayName: z.ZodOptional<z.ZodString>;
1846
+ defaultValue: z.ZodOptional<z.ZodString>;
1847
+ type: z.ZodOptional<z.ZodString>;
1848
+ minLength: z.ZodOptional<z.ZodNumber>;
1849
+ maxLength: z.ZodOptional<z.ZodNumber>;
1850
+ regex: z.ZodOptional<z.ZodString>;
1851
+ min: z.ZodOptional<z.ZodString>;
1852
+ multiline: z.ZodOptional<z.ZodBoolean>;
1853
+ max: z.ZodOptional<z.ZodString>;
1854
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1855
+ overrides: z.ZodOptional<z.ZodString>;
1856
+ scope: z.ZodOptional<z.ZodString>;
1857
+ inherited: z.ZodOptional<z.ZodBoolean>;
1858
+ precision: z.ZodOptional<z.ZodNumber>;
1859
+ readOnly: z.ZodOptional<z.ZodBoolean>;
1860
+ }, "strip", z.ZodTypeAny, {
1861
+ displayName?: string | undefined;
1862
+ defaultValue?: string | undefined;
1863
+ type?: string | undefined;
1864
+ minLength?: number | undefined;
1865
+ maxLength?: number | undefined;
1866
+ regex?: string | undefined;
1867
+ min?: string | undefined;
1868
+ multiline?: boolean | undefined;
1869
+ max?: string | undefined;
1870
+ options?: string[] | undefined;
1871
+ overrides?: string | undefined;
1872
+ scope?: string | undefined;
1873
+ inherited?: boolean | undefined;
1874
+ precision?: number | undefined;
1875
+ readOnly?: boolean | undefined;
1876
+ }, {
1877
+ displayName?: string | undefined;
1878
+ defaultValue?: string | undefined;
1879
+ type?: string | undefined;
1880
+ minLength?: number | undefined;
1881
+ maxLength?: number | undefined;
1882
+ regex?: string | undefined;
1883
+ min?: string | undefined;
1884
+ multiline?: boolean | undefined;
1885
+ max?: string | undefined;
1886
+ options?: string[] | undefined;
1887
+ overrides?: string | undefined;
1888
+ scope?: string | undefined;
1889
+ inherited?: boolean | undefined;
1890
+ precision?: number | undefined;
1891
+ readOnly?: boolean | undefined;
1892
+ }>>;
1893
+
1894
+ export declare const fieldConfigSchema: z.ZodObject<{
1895
+ displayName: z.ZodOptional<z.ZodString>;
1896
+ defaultValue: z.ZodOptional<z.ZodString>;
1897
+ type: z.ZodOptional<z.ZodString>;
1898
+ minLength: z.ZodOptional<z.ZodNumber>;
1899
+ maxLength: z.ZodOptional<z.ZodNumber>;
1900
+ regex: z.ZodOptional<z.ZodString>;
1901
+ min: z.ZodOptional<z.ZodString>;
1902
+ multiline: z.ZodOptional<z.ZodBoolean>;
1903
+ max: z.ZodOptional<z.ZodString>;
1904
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1905
+ overrides: z.ZodOptional<z.ZodString>;
1906
+ scope: z.ZodOptional<z.ZodString>;
1907
+ inherited: z.ZodOptional<z.ZodBoolean>;
1908
+ precision: z.ZodOptional<z.ZodNumber>;
1909
+ readOnly: z.ZodOptional<z.ZodBoolean>;
1910
+ }, "strip", z.ZodTypeAny, {
1911
+ displayName?: string | undefined;
1912
+ defaultValue?: string | undefined;
1913
+ type?: string | undefined;
1914
+ minLength?: number | undefined;
1915
+ maxLength?: number | undefined;
1916
+ regex?: string | undefined;
1917
+ min?: string | undefined;
1918
+ multiline?: boolean | undefined;
1919
+ max?: string | undefined;
1920
+ options?: string[] | undefined;
1921
+ overrides?: string | undefined;
1922
+ scope?: string | undefined;
1923
+ inherited?: boolean | undefined;
1924
+ precision?: number | undefined;
1925
+ readOnly?: boolean | undefined;
1926
+ }, {
1927
+ displayName?: string | undefined;
1928
+ defaultValue?: string | undefined;
1929
+ type?: string | undefined;
1930
+ minLength?: number | undefined;
1931
+ maxLength?: number | undefined;
1932
+ regex?: string | undefined;
1933
+ min?: string | undefined;
1934
+ multiline?: boolean | undefined;
1935
+ max?: string | undefined;
1936
+ options?: string[] | undefined;
1937
+ overrides?: string | undefined;
1938
+ scope?: string | undefined;
1939
+ inherited?: boolean | undefined;
1940
+ precision?: number | undefined;
1941
+ readOnly?: boolean | undefined;
1942
+ }>;
1943
+
1944
+ export declare type ProductConfig = z.infer<typeof productConfigSchema>;
1945
+
1946
+ export declare type ProductConfigRecord = z.infer<typeof productConfigRecordSchema>;
1947
+
1948
+ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
1949
+ abstract: z.ZodOptional<z.ZodBoolean>;
1950
+ extend: z.ZodOptional<z.ZodString>;
1951
+ displayName: z.ZodOptional<z.ZodString>;
1952
+ coverageTerms: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1953
+ eligibleAccountTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1954
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1955
+ documents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1956
+ plugins: z.ZodAny;
1957
+ tables: z.ZodAny;
1958
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1959
+ displayName: z.ZodOptional<z.ZodString>;
1960
+ defaultValue: z.ZodOptional<z.ZodString>;
1961
+ type: z.ZodOptional<z.ZodString>;
1962
+ minLength: z.ZodOptional<z.ZodNumber>;
1963
+ maxLength: z.ZodOptional<z.ZodNumber>;
1964
+ regex: z.ZodOptional<z.ZodString>;
1965
+ min: z.ZodOptional<z.ZodString>;
1966
+ multiline: z.ZodOptional<z.ZodBoolean>;
1967
+ max: z.ZodOptional<z.ZodString>;
1968
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1969
+ overrides: z.ZodOptional<z.ZodString>;
1970
+ scope: z.ZodOptional<z.ZodString>;
1971
+ inherited: z.ZodOptional<z.ZodBoolean>;
1972
+ precision: z.ZodOptional<z.ZodNumber>;
1973
+ readOnly: z.ZodOptional<z.ZodBoolean>;
1974
+ }, "strip", z.ZodTypeAny, {
1975
+ displayName?: string | undefined;
1976
+ defaultValue?: string | undefined;
1977
+ type?: string | undefined;
1978
+ minLength?: number | undefined;
1979
+ maxLength?: number | undefined;
1980
+ regex?: string | undefined;
1981
+ min?: string | undefined;
1982
+ multiline?: boolean | undefined;
1983
+ max?: string | undefined;
1984
+ options?: string[] | undefined;
1985
+ overrides?: string | undefined;
1986
+ scope?: string | undefined;
1987
+ inherited?: boolean | undefined;
1988
+ precision?: number | undefined;
1989
+ readOnly?: boolean | undefined;
1990
+ }, {
1991
+ displayName?: string | undefined;
1992
+ defaultValue?: string | undefined;
1993
+ type?: string | undefined;
1994
+ minLength?: number | undefined;
1995
+ maxLength?: number | undefined;
1996
+ regex?: string | undefined;
1997
+ min?: string | undefined;
1998
+ multiline?: boolean | undefined;
1999
+ max?: string | undefined;
2000
+ options?: string[] | undefined;
2001
+ overrides?: string | undefined;
2002
+ scope?: string | undefined;
2003
+ inherited?: boolean | undefined;
2004
+ precision?: number | undefined;
2005
+ readOnly?: boolean | undefined;
2006
+ }>>>;
2007
+ }, {
2008
+ defaultTimeZone: z.ZodOptional<z.ZodString>;
2009
+ defaultCurrency: z.ZodOptional<z.ZodString>;
2010
+ defaultTermDuration: z.ZodOptional<z.ZodNumber>;
2011
+ defaultDurationBasis: z.ZodOptional<z.ZodString>;
2012
+ defaultInstallmentPlan: z.ZodOptional<z.ZodString>;
2013
+ }>, "strip", z.ZodTypeAny, {
2014
+ displayName?: string | undefined;
2015
+ abstract?: boolean | undefined;
2016
+ extend?: string | undefined;
2017
+ data?: Record<string, {
2018
+ displayName?: string | undefined;
2019
+ defaultValue?: string | undefined;
2020
+ type?: string | undefined;
2021
+ minLength?: number | undefined;
2022
+ maxLength?: number | undefined;
2023
+ regex?: string | undefined;
2024
+ min?: string | undefined;
2025
+ multiline?: boolean | undefined;
2026
+ max?: string | undefined;
2027
+ options?: string[] | undefined;
2028
+ overrides?: string | undefined;
2029
+ scope?: string | undefined;
2030
+ inherited?: boolean | undefined;
2031
+ precision?: number | undefined;
2032
+ readOnly?: boolean | undefined;
2033
+ }> | undefined;
2034
+ contents?: string[] | undefined;
2035
+ defaultTimeZone?: string | undefined;
2036
+ defaultCurrency?: string | undefined;
2037
+ defaultTermDuration?: number | undefined;
2038
+ defaultDurationBasis?: string | undefined;
2039
+ defaultInstallmentPlan?: string | undefined;
2040
+ coverageTerms?: string[] | undefined;
2041
+ eligibleAccountTypes?: string[] | undefined;
2042
+ documents?: string[] | undefined;
2043
+ plugins?: any;
2044
+ tables?: any;
2045
+ }, {
2046
+ displayName?: string | undefined;
2047
+ abstract?: boolean | undefined;
2048
+ extend?: string | undefined;
2049
+ data?: Record<string, {
2050
+ displayName?: string | undefined;
2051
+ defaultValue?: string | undefined;
2052
+ type?: string | undefined;
2053
+ minLength?: number | undefined;
2054
+ maxLength?: number | undefined;
2055
+ regex?: string | undefined;
2056
+ min?: string | undefined;
2057
+ multiline?: boolean | undefined;
2058
+ max?: string | undefined;
2059
+ options?: string[] | undefined;
2060
+ overrides?: string | undefined;
2061
+ scope?: string | undefined;
2062
+ inherited?: boolean | undefined;
2063
+ precision?: number | undefined;
2064
+ readOnly?: boolean | undefined;
2065
+ }> | undefined;
2066
+ contents?: string[] | undefined;
2067
+ defaultTimeZone?: string | undefined;
2068
+ defaultCurrency?: string | undefined;
2069
+ defaultTermDuration?: number | undefined;
2070
+ defaultDurationBasis?: string | undefined;
2071
+ defaultInstallmentPlan?: string | undefined;
2072
+ coverageTerms?: string[] | undefined;
2073
+ eligibleAccountTypes?: string[] | undefined;
2074
+ documents?: string[] | undefined;
2075
+ plugins?: any;
2076
+ tables?: any;
2077
+ }>>;
2078
+
2079
+ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
2080
+ abstract: z.ZodOptional<z.ZodBoolean>;
2081
+ extend: z.ZodOptional<z.ZodString>;
2082
+ displayName: z.ZodOptional<z.ZodString>;
2083
+ coverageTerms: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2084
+ eligibleAccountTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2085
+ contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2086
+ documents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2087
+ plugins: z.ZodAny;
2088
+ tables: z.ZodAny;
2089
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2090
+ displayName: z.ZodOptional<z.ZodString>;
2091
+ defaultValue: z.ZodOptional<z.ZodString>;
2092
+ type: z.ZodOptional<z.ZodString>;
2093
+ minLength: z.ZodOptional<z.ZodNumber>;
2094
+ maxLength: z.ZodOptional<z.ZodNumber>;
2095
+ regex: z.ZodOptional<z.ZodString>;
2096
+ min: z.ZodOptional<z.ZodString>;
2097
+ multiline: z.ZodOptional<z.ZodBoolean>;
2098
+ max: z.ZodOptional<z.ZodString>;
2099
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2100
+ overrides: z.ZodOptional<z.ZodString>;
2101
+ scope: z.ZodOptional<z.ZodString>;
2102
+ inherited: z.ZodOptional<z.ZodBoolean>;
2103
+ precision: z.ZodOptional<z.ZodNumber>;
2104
+ readOnly: z.ZodOptional<z.ZodBoolean>;
2105
+ }, "strip", z.ZodTypeAny, {
2106
+ displayName?: string | undefined;
2107
+ defaultValue?: string | undefined;
2108
+ type?: string | undefined;
2109
+ minLength?: number | undefined;
2110
+ maxLength?: number | undefined;
2111
+ regex?: string | undefined;
2112
+ min?: string | undefined;
2113
+ multiline?: boolean | undefined;
2114
+ max?: string | undefined;
2115
+ options?: string[] | undefined;
2116
+ overrides?: string | undefined;
2117
+ scope?: string | undefined;
2118
+ inherited?: boolean | undefined;
2119
+ precision?: number | undefined;
2120
+ readOnly?: boolean | undefined;
2121
+ }, {
2122
+ displayName?: string | undefined;
2123
+ defaultValue?: string | undefined;
2124
+ type?: string | undefined;
2125
+ minLength?: number | undefined;
2126
+ maxLength?: number | undefined;
2127
+ regex?: string | undefined;
2128
+ min?: string | undefined;
2129
+ multiline?: boolean | undefined;
2130
+ max?: string | undefined;
2131
+ options?: string[] | undefined;
2132
+ overrides?: string | undefined;
2133
+ scope?: string | undefined;
2134
+ inherited?: boolean | undefined;
2135
+ precision?: number | undefined;
2136
+ readOnly?: boolean | undefined;
2137
+ }>>>;
2138
+ }, {
2139
+ defaultTimeZone: z.ZodOptional<z.ZodString>;
2140
+ defaultCurrency: z.ZodOptional<z.ZodString>;
2141
+ defaultTermDuration: z.ZodOptional<z.ZodNumber>;
2142
+ defaultDurationBasis: z.ZodOptional<z.ZodString>;
2143
+ defaultInstallmentPlan: z.ZodOptional<z.ZodString>;
2144
+ }>, "strip", z.ZodTypeAny, {
2145
+ displayName?: string | undefined;
2146
+ abstract?: boolean | undefined;
2147
+ extend?: string | undefined;
2148
+ data?: Record<string, {
2149
+ displayName?: string | undefined;
2150
+ defaultValue?: string | undefined;
2151
+ type?: string | undefined;
2152
+ minLength?: number | undefined;
2153
+ maxLength?: number | undefined;
2154
+ regex?: string | undefined;
2155
+ min?: string | undefined;
2156
+ multiline?: boolean | undefined;
2157
+ max?: string | undefined;
2158
+ options?: string[] | undefined;
2159
+ overrides?: string | undefined;
2160
+ scope?: string | undefined;
2161
+ inherited?: boolean | undefined;
2162
+ precision?: number | undefined;
2163
+ readOnly?: boolean | undefined;
2164
+ }> | undefined;
2165
+ contents?: string[] | undefined;
2166
+ defaultTimeZone?: string | undefined;
2167
+ defaultCurrency?: string | undefined;
2168
+ defaultTermDuration?: number | undefined;
2169
+ defaultDurationBasis?: string | undefined;
2170
+ defaultInstallmentPlan?: string | undefined;
2171
+ coverageTerms?: string[] | undefined;
2172
+ eligibleAccountTypes?: string[] | undefined;
2173
+ documents?: string[] | undefined;
2174
+ plugins?: any;
2175
+ tables?: any;
2176
+ }, {
2177
+ displayName?: string | undefined;
2178
+ abstract?: boolean | undefined;
2179
+ extend?: string | undefined;
2180
+ data?: Record<string, {
2181
+ displayName?: string | undefined;
2182
+ defaultValue?: string | undefined;
2183
+ type?: string | undefined;
2184
+ minLength?: number | undefined;
2185
+ maxLength?: number | undefined;
2186
+ regex?: string | undefined;
2187
+ min?: string | undefined;
2188
+ multiline?: boolean | undefined;
2189
+ max?: string | undefined;
2190
+ options?: string[] | undefined;
2191
+ overrides?: string | undefined;
2192
+ scope?: string | undefined;
2193
+ inherited?: boolean | undefined;
2194
+ precision?: number | undefined;
2195
+ readOnly?: boolean | undefined;
2196
+ }> | undefined;
2197
+ contents?: string[] | undefined;
2198
+ defaultTimeZone?: string | undefined;
2199
+ defaultCurrency?: string | undefined;
2200
+ defaultTermDuration?: number | undefined;
2201
+ defaultDurationBasis?: string | undefined;
2202
+ defaultInstallmentPlan?: string | undefined;
2203
+ coverageTerms?: string[] | undefined;
2204
+ eligibleAccountTypes?: string[] | undefined;
2205
+ documents?: string[] | undefined;
2206
+ plugins?: any;
2207
+ tables?: any;
2208
+ }>;
2209
+
2210
+ export declare type QuoteRequest = z.infer<typeof quoteRequestSchema>;
2211
+
2212
+ export declare const quoteRequestSchema: z.ZodObject<{
2213
+ productName: z.ZodOptional<z.ZodString>;
2214
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
2215
+ startTime: z.ZodOptional<z.ZodString>;
2216
+ endTime: z.ZodOptional<z.ZodString>;
2217
+ currency: z.ZodOptional<z.ZodString>;
2218
+ expirationTime: z.ZodOptional<z.ZodString>;
2219
+ setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2220
+ elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
2221
+ locator: z.ZodString;
2222
+ removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2223
+ removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2224
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2225
+ setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2226
+ }, "strip", z.ZodTypeAny, {
2227
+ locator: string;
2228
+ removeCoverageTerms?: Record<string, unknown> | undefined;
2229
+ removeData?: Record<string, unknown> | undefined;
2230
+ setCoverageTerms?: Record<string, unknown> | undefined;
2231
+ setData?: Record<string, unknown> | undefined;
2232
+ }, {
2233
+ locator: string;
2234
+ removeCoverageTerms?: Record<string, unknown> | undefined;
2235
+ removeData?: Record<string, unknown> | undefined;
2236
+ setCoverageTerms?: Record<string, unknown> | undefined;
2237
+ setData?: Record<string, unknown> | undefined;
2238
+ }>, "many">>;
2239
+ }, "strip", z.ZodTypeAny, {
2240
+ elements?: {
2241
+ locator: string;
2242
+ removeCoverageTerms?: Record<string, unknown> | undefined;
2243
+ removeData?: Record<string, unknown> | undefined;
2244
+ setCoverageTerms?: Record<string, unknown> | undefined;
2245
+ setData?: Record<string, unknown> | undefined;
2246
+ }[] | undefined;
2247
+ productName?: string | undefined;
2248
+ startTime?: string | undefined;
2249
+ endTime?: string | undefined;
2250
+ currency?: string | undefined;
2251
+ expirationTime?: string | undefined;
2252
+ delinquencyPlanName?: string | undefined;
2253
+ setData?: Record<string, unknown> | undefined;
2254
+ }, {
2255
+ elements?: {
2256
+ locator: string;
2257
+ removeCoverageTerms?: Record<string, unknown> | undefined;
2258
+ removeData?: Record<string, unknown> | undefined;
2259
+ setCoverageTerms?: Record<string, unknown> | undefined;
2260
+ setData?: Record<string, unknown> | undefined;
2261
+ }[] | undefined;
2262
+ productName?: string | undefined;
2263
+ startTime?: string | undefined;
2264
+ endTime?: string | undefined;
2265
+ currency?: string | undefined;
2266
+ expirationTime?: string | undefined;
2267
+ delinquencyPlanName?: string | undefined;
2268
+ setData?: Record<string, unknown> | undefined;
2269
+ }>;
2270
+
2271
+ export declare type QuoteResponse = z.infer<typeof quoteResponseSchema>;
2272
+
2273
+ export declare const quoteResponseSchema: z.ZodObject<{
2274
+ locator: z.ZodOptional<z.ZodString>;
2275
+ quoteState: z.ZodOptional<z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>>;
2276
+ productName: z.ZodOptional<z.ZodString>;
2277
+ accountLocator: z.ZodOptional<z.ZodString>;
2278
+ startTime: z.ZodOptional<z.ZodString>;
2279
+ endTime: z.ZodOptional<z.ZodString>;
2280
+ timezone: z.ZodOptional<z.ZodString>;
2281
+ currency: z.ZodOptional<z.ZodString>;
2282
+ underwritingStatus: z.ZodOptional<z.ZodString>;
2283
+ expirationTime: z.ZodOptional<z.ZodString>;
2284
+ element: z.ZodOptional<z.ZodType<{
2285
+ type: string;
2286
+ locator: string;
2287
+ staticLocator: string;
2288
+ data?: Record<string, any> | undefined;
2289
+ coverageTerms?: Record<string, string> | undefined;
2290
+ rootLocator?: string | undefined;
2291
+ tenantLocator?: string | undefined;
2292
+ parentLocator?: string | undefined;
2293
+ } & {
2294
+ elements?: ({
2295
+ type: string;
2296
+ locator: string;
2297
+ staticLocator: string;
2298
+ data?: Record<string, any> | undefined;
2299
+ coverageTerms?: Record<string, string> | undefined;
2300
+ rootLocator?: string | undefined;
2301
+ tenantLocator?: string | undefined;
2302
+ parentLocator?: string | undefined;
2303
+ } & any)[] | undefined;
2304
+ }, z.ZodTypeDef, {
2305
+ type: string;
2306
+ locator: string;
2307
+ staticLocator: string;
2308
+ data?: Record<string, any> | undefined;
2309
+ coverageTerms?: Record<string, string> | undefined;
2310
+ rootLocator?: string | undefined;
2311
+ tenantLocator?: string | undefined;
2312
+ parentLocator?: string | undefined;
2313
+ } & {
2314
+ elements?: ({
2315
+ type: string;
2316
+ locator: string;
2317
+ staticLocator: string;
2318
+ data?: Record<string, any> | undefined;
2319
+ coverageTerms?: Record<string, string> | undefined;
2320
+ rootLocator?: string | undefined;
2321
+ tenantLocator?: string | undefined;
2322
+ parentLocator?: string | undefined;
2323
+ } & any)[] | undefined;
2324
+ }>>;
2325
+ type: z.ZodOptional<z.ZodString>;
2326
+ duration: z.ZodOptional<z.ZodNumber>;
2327
+ durationBasis: z.ZodOptional<z.ZodEnum<["none", "years", "months", "monthsE360", "weeks", "days", "hours"]>>;
2328
+ boundTime: z.ZodOptional<z.ZodString>;
2329
+ issuedTime: z.ZodOptional<z.ZodString>;
2330
+ policyLocator: z.ZodOptional<z.ZodString>;
2331
+ validationResult: z.ZodOptional<z.ZodObject<{
2332
+ validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
2333
+ elementType: z.ZodOptional<z.ZodString>;
2334
+ locator: z.ZodOptional<z.ZodString>;
2335
+ errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2336
+ }, "strip", z.ZodTypeAny, {
2337
+ locator?: string | undefined;
2338
+ elementType?: string | undefined;
2339
+ errors?: string[] | undefined;
2340
+ }, {
2341
+ locator?: string | undefined;
2342
+ elementType?: string | undefined;
2343
+ errors?: string[] | undefined;
2344
+ }>, "many">>;
2345
+ success: z.ZodOptional<z.ZodBoolean>;
2346
+ }, "strip", z.ZodTypeAny, {
2347
+ validationItems?: {
2348
+ locator?: string | undefined;
2349
+ elementType?: string | undefined;
2350
+ errors?: string[] | undefined;
2351
+ }[] | undefined;
2352
+ success?: boolean | undefined;
2353
+ }, {
2354
+ validationItems?: {
2355
+ locator?: string | undefined;
2356
+ elementType?: string | undefined;
2357
+ errors?: string[] | undefined;
2358
+ }[] | undefined;
2359
+ success?: boolean | undefined;
2360
+ }>>;
2361
+ preferences: z.ZodOptional<z.ZodAny>;
2362
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
2363
+ }, "strip", z.ZodTypeAny, {
2364
+ type?: string | undefined;
2365
+ locator?: string | undefined;
2366
+ quoteState?: "draft" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | undefined;
2367
+ productName?: string | undefined;
2368
+ accountLocator?: string | undefined;
2369
+ startTime?: string | undefined;
2370
+ endTime?: string | undefined;
2371
+ timezone?: string | undefined;
2372
+ currency?: string | undefined;
2373
+ underwritingStatus?: string | undefined;
2374
+ expirationTime?: string | undefined;
2375
+ element?: ({
2376
+ type: string;
2377
+ locator: string;
2378
+ staticLocator: string;
2379
+ data?: Record<string, any> | undefined;
2380
+ coverageTerms?: Record<string, string> | undefined;
2381
+ rootLocator?: string | undefined;
2382
+ tenantLocator?: string | undefined;
2383
+ parentLocator?: string | undefined;
2384
+ } & {
2385
+ elements?: ({
2386
+ type: string;
2387
+ locator: string;
2388
+ staticLocator: string;
2389
+ data?: Record<string, any> | undefined;
2390
+ coverageTerms?: Record<string, string> | undefined;
2391
+ rootLocator?: string | undefined;
2392
+ tenantLocator?: string | undefined;
2393
+ parentLocator?: string | undefined;
2394
+ } & any)[] | undefined;
2395
+ }) | undefined;
2396
+ duration?: number | undefined;
2397
+ durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
2398
+ boundTime?: string | undefined;
2399
+ issuedTime?: string | undefined;
2400
+ policyLocator?: string | undefined;
2401
+ validationResult?: {
2402
+ validationItems?: {
2403
+ locator?: string | undefined;
2404
+ elementType?: string | undefined;
2405
+ errors?: string[] | undefined;
2406
+ }[] | undefined;
2407
+ success?: boolean | undefined;
2408
+ } | undefined;
2409
+ preferences?: any;
2410
+ delinquencyPlanName?: string | undefined;
2411
+ }, {
2412
+ type?: string | undefined;
2413
+ locator?: string | undefined;
2414
+ quoteState?: "draft" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | undefined;
2415
+ productName?: string | undefined;
2416
+ accountLocator?: string | undefined;
2417
+ startTime?: string | undefined;
2418
+ endTime?: string | undefined;
2419
+ timezone?: string | undefined;
2420
+ currency?: string | undefined;
2421
+ underwritingStatus?: string | undefined;
2422
+ expirationTime?: string | undefined;
2423
+ element?: ({
2424
+ type: string;
2425
+ locator: string;
2426
+ staticLocator: string;
2427
+ data?: Record<string, any> | undefined;
2428
+ coverageTerms?: Record<string, string> | undefined;
2429
+ rootLocator?: string | undefined;
2430
+ tenantLocator?: string | undefined;
2431
+ parentLocator?: string | undefined;
2432
+ } & {
2433
+ elements?: ({
2434
+ type: string;
2435
+ locator: string;
2436
+ staticLocator: string;
2437
+ data?: Record<string, any> | undefined;
2438
+ coverageTerms?: Record<string, string> | undefined;
2439
+ rootLocator?: string | undefined;
2440
+ tenantLocator?: string | undefined;
2441
+ parentLocator?: string | undefined;
2442
+ } & any)[] | undefined;
2443
+ }) | undefined;
2444
+ duration?: number | undefined;
2445
+ durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
2446
+ boundTime?: string | undefined;
2447
+ issuedTime?: string | undefined;
2448
+ policyLocator?: string | undefined;
2449
+ validationResult?: {
2450
+ validationItems?: {
2451
+ locator?: string | undefined;
2452
+ elementType?: string | undefined;
2453
+ errors?: string[] | undefined;
2454
+ }[] | undefined;
2455
+ success?: boolean | undefined;
2456
+ } | undefined;
2457
+ preferences?: any;
2458
+ delinquencyPlanName?: string | undefined;
2459
+ }>;
2460
+
2461
+ export declare type TenantBaseConfig = z.infer<typeof tenantBaseConfigSchema>;
2462
+
2463
+ declare const tenantBaseConfigSchema: z.ZodObject<{
2464
+ defaultTimeZone: z.ZodOptional<z.ZodString>;
2465
+ defaultCurrency: z.ZodOptional<z.ZodString>;
2466
+ defaultTermDuration: z.ZodOptional<z.ZodNumber>;
2467
+ defaultDurationBasis: z.ZodOptional<z.ZodString>;
2468
+ defaultInstallmentPlan: z.ZodOptional<z.ZodString>;
2469
+ }, "strip", z.ZodTypeAny, {
2470
+ defaultTimeZone?: string | undefined;
2471
+ defaultCurrency?: string | undefined;
2472
+ defaultTermDuration?: number | undefined;
2473
+ defaultDurationBasis?: string | undefined;
2474
+ defaultInstallmentPlan?: string | undefined;
2475
+ }, {
2476
+ defaultTimeZone?: string | undefined;
2477
+ defaultCurrency?: string | undefined;
2478
+ defaultTermDuration?: number | undefined;
2479
+ defaultDurationBasis?: string | undefined;
2480
+ defaultInstallmentPlan?: string | undefined;
2481
+ }>;
2482
+
2483
+ export { }