@socotra/ec-react-schemas 2.3.0-next.3 → 2.3.0-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -216,20 +216,20 @@ export declare const accountRequestSchema: z.ZodObject<{
216
216
  invoiceDocument: z.ZodOptional<z.ZodString>;
217
217
  }, "strip", z.ZodTypeAny, {
218
218
  type?: string | undefined;
219
+ billingLevel?: "account" | "policy" | undefined;
219
220
  data?: Record<string, any> | undefined;
220
221
  delinquencyPlanName?: string | undefined;
221
222
  autoRenewalPlanName?: string | undefined;
222
- billingLevel?: "policy" | "account" | undefined;
223
223
  autoValidate?: boolean | undefined;
224
224
  excessCreditPlanName?: string | undefined;
225
225
  shortfallTolerancePlanName?: string | undefined;
226
226
  invoiceDocument?: string | undefined;
227
227
  }, {
228
228
  type?: string | undefined;
229
+ billingLevel?: "account" | "policy" | undefined;
229
230
  data?: Record<string, any> | undefined;
230
231
  delinquencyPlanName?: string | undefined;
231
232
  autoRenewalPlanName?: string | undefined;
232
- billingLevel?: "policy" | "account" | undefined;
233
233
  autoValidate?: boolean | undefined;
234
234
  excessCreditPlanName?: string | undefined;
235
235
  shortfallTolerancePlanName?: string | undefined;
@@ -249,52 +249,16 @@ export declare const accountResponseSchema: z.ZodObject<{
249
249
  shortfallTolerancePlanName: z.ZodOptional<z.ZodString>;
250
250
  billingLevel: z.ZodOptional<z.ZodEnum<["account", "policy"]>>;
251
251
  invoiceDocument: z.ZodOptional<z.ZodString>;
252
- validationResult: z.ZodOptional<z.ZodObject<{
253
- validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
254
- elementType: z.ZodOptional<z.ZodString>;
255
- locator: z.ZodOptional<z.ZodString>;
256
- errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
257
- }, "strip", z.ZodTypeAny, {
258
- elementType?: string | undefined;
259
- locator?: string | undefined;
260
- errors?: string[] | undefined;
261
- }, {
262
- elementType?: string | undefined;
263
- locator?: string | undefined;
264
- errors?: string[] | undefined;
265
- }>, "many">>;
266
- success: z.ZodOptional<z.ZodBoolean>;
267
- }, "strip", z.ZodTypeAny, {
268
- validationItems?: {
269
- elementType?: string | undefined;
270
- locator?: string | undefined;
271
- errors?: string[] | undefined;
272
- }[] | undefined;
273
- success?: boolean | undefined;
274
- }, {
275
- validationItems?: {
276
- elementType?: string | undefined;
277
- locator?: string | undefined;
278
- errors?: string[] | undefined;
279
- }[] | undefined;
280
- success?: boolean | undefined;
281
- }>>;
252
+ validationResult: z.ZodOptional<z.ZodAny>;
282
253
  }, "strip", z.ZodTypeAny, {
283
254
  locator: string;
284
255
  type: string;
285
256
  state: "draft" | "validated" | "discarded";
257
+ billingLevel?: "account" | "policy" | undefined;
286
258
  data?: Record<string, any> | undefined;
287
- validationResult?: {
288
- validationItems?: {
289
- elementType?: string | undefined;
290
- locator?: string | undefined;
291
- errors?: string[] | undefined;
292
- }[] | undefined;
293
- success?: boolean | undefined;
294
- } | undefined;
295
259
  delinquencyPlanName?: string | undefined;
260
+ validationResult?: any;
296
261
  autoRenewalPlanName?: string | undefined;
297
- billingLevel?: "policy" | "account" | undefined;
298
262
  excessCreditPlanName?: string | undefined;
299
263
  shortfallTolerancePlanName?: string | undefined;
300
264
  invoiceDocument?: string | undefined;
@@ -302,18 +266,11 @@ export declare const accountResponseSchema: z.ZodObject<{
302
266
  locator: string;
303
267
  type: string;
304
268
  state: "draft" | "validated" | "discarded";
269
+ billingLevel?: "account" | "policy" | undefined;
305
270
  data?: Record<string, any> | undefined;
306
- validationResult?: {
307
- validationItems?: {
308
- elementType?: string | undefined;
309
- locator?: string | undefined;
310
- errors?: string[] | undefined;
311
- }[] | undefined;
312
- success?: boolean | undefined;
313
- } | undefined;
314
271
  delinquencyPlanName?: string | undefined;
272
+ validationResult?: any;
315
273
  autoRenewalPlanName?: string | undefined;
316
- billingLevel?: "policy" | "account" | undefined;
317
274
  excessCreditPlanName?: string | undefined;
318
275
  shortfallTolerancePlanName?: string | undefined;
319
276
  invoiceDocument?: string | undefined;
@@ -325,6 +282,14 @@ export declare const accountStateEnumSchema: z.ZodEnum<["draft", "validated", "d
325
282
 
326
283
  export declare const advanceLapseToSchema: z.ZodEnum<["draft", "validated", "priced", "underwritten", "accepted", "issued"]>;
327
284
 
285
+ export declare type AnchorMode = z.infer<typeof anchorModeEnumSchema>;
286
+
287
+ export declare const anchorModeEnumSchema: z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>;
288
+
289
+ export declare type AnchorType = z.infer<typeof anchorTypeEnumSchema>;
290
+
291
+ export declare const anchorTypeEnumSchema: z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>;
292
+
328
293
  export declare type AutoRenewalPlan = z.infer<typeof autoRenewalPlanSchema>;
329
294
 
330
295
  export declare const autoRenewalPlanSchema: z.ZodObject<{
@@ -379,6 +344,14 @@ declare const baseElementResponseSchema: z.ZodObject<{
379
344
  parentLocator?: string | undefined;
380
345
  }>;
381
346
 
347
+ export declare type BillingLevel = z.infer<typeof billingLevelEnumSchema>;
348
+
349
+ export declare const billingLevelEnumSchema: z.ZodEnum<["account", "inherit", "policy"]>;
350
+
351
+ export declare type Cadence = z.infer<typeof cadenceEnumSchema>;
352
+
353
+ export declare const cadenceEnumSchema: z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>;
354
+
382
355
  export declare type CoverageTermOption = z.infer<typeof coverageTermOptionSchema>;
383
356
 
384
357
  export declare const coverageTermOptionSchema: z.ZodObject<{
@@ -467,6 +440,10 @@ export declare const coverageTermsRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
467
440
  displayName?: string | undefined;
468
441
  }>>;
469
442
 
443
+ export declare const currencyEnumSchema: z.ZodEnum<["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOV", "BRL", "BSD", "BTN", "BWP", "BYN", "BZD", "CAD", "CDF", "CHE", "CHF", "CHW", "CLF", "CLP", "COP", "COU", "CRC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HTG", "HUF", "IDR", "ILS", "INR", "IQD", "IRR", "ISK", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK", "MXN", "MXV", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "CNY", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLE", "SLL", "SOS", "SRD", "SSP", "STN", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "USD", "USN", "UYI", "UYU", "UYW", "UZS", "VED", "VES", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XOF", "XPD", "XPF", "XPT", "XSU", "XTS", "XUA", "XXX", "YER", "ZAR", "ZMW", "ZWL"]>;
444
+
445
+ export declare type CurrencyType = z.infer<typeof currencyEnumSchema>;
446
+
470
447
  export declare type DataModel = z.infer<typeof dataModelSchema>;
471
448
 
472
449
  export declare const dataModelSchema: z.ZodObject<{
@@ -1329,7 +1306,6 @@ export declare const dataModelSchema: z.ZodObject<{
1329
1306
  defaultDelinquencyPlan: z.ZodOptional<z.ZodString>;
1330
1307
  defaultAuxDataSettings: z.ZodOptional<z.ZodString>;
1331
1308
  defaultBillingLevel: z.ZodOptional<z.ZodString>;
1332
- defaultShortfallTolerancePlan: z.ZodOptional<z.ZodString>;
1333
1309
  charges: z.ZodAny;
1334
1310
  transactionTypes: z.ZodAny;
1335
1311
  installmentPlans: z.ZodAny;
@@ -1464,7 +1440,6 @@ export declare const dataModelSchema: z.ZodObject<{
1464
1440
  defaultInstallmentPlan?: string | undefined;
1465
1441
  defaultDelinquencyPlan?: string | undefined;
1466
1442
  defaultAuxDataSettings?: string | undefined;
1467
- defaultShortfallTolerancePlan?: string | undefined;
1468
1443
  defaultAutoRenewalPlan?: string | undefined;
1469
1444
  defaultBillingTrigger?: string | undefined;
1470
1445
  defaultBillingLevel?: string | undefined;
@@ -1704,7 +1679,6 @@ export declare const dataModelSchema: z.ZodObject<{
1704
1679
  defaultInstallmentPlan?: string | undefined;
1705
1680
  defaultDelinquencyPlan?: string | undefined;
1706
1681
  defaultAuxDataSettings?: string | undefined;
1707
- defaultShortfallTolerancePlan?: string | undefined;
1708
1682
  defaultAutoRenewalPlan?: string | undefined;
1709
1683
  defaultBillingTrigger?: string | undefined;
1710
1684
  defaultBillingLevel?: string | undefined;
@@ -2024,6 +1998,10 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
2024
1998
  }> | undefined;
2025
1999
  }>>;
2026
2000
 
2001
+ export declare type DayOfWeek = z.infer<typeof dayOfWeekEnumSchema>;
2002
+
2003
+ export declare const dayOfWeekEnumSchema: z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>;
2004
+
2027
2005
  export declare const delinquencyLevelSchema: z.ZodEnum<["policy", "invoice"]>;
2028
2006
 
2029
2007
  export declare type DelinquencyPlan = z.infer<typeof delinquencyPlanSchema>;
@@ -2068,6 +2046,36 @@ export declare const delinquencyPlanSchema: z.ZodObject<{
2068
2046
  lapseTransactionType?: string | undefined;
2069
2047
  }>;
2070
2048
 
2049
+ export declare type DocumentReference = z.infer<typeof documentReferenceTypeEnumSchema>;
2050
+
2051
+ export declare const documentReferenceTypeEnumSchema: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
2052
+
2053
+ export declare type DocumentState = z.infer<typeof documentStateEnumSchema>;
2054
+
2055
+ export declare const documentStateEnumSchema: z.ZodEnum<["draft", "dataReady", "ready", "dataError", "renderError", "conversionError"]>;
2056
+
2057
+ export declare type DocumentSummary = z.infer<typeof documentSummarySchema>;
2058
+
2059
+ export declare const documentSummarySchema: z.ZodObject<{
2060
+ locator: z.ZodString;
2061
+ staticLocator: z.ZodString;
2062
+ name: z.ZodString;
2063
+ state: z.ZodEnum<["draft", "dataReady", "ready", "dataError", "renderError", "conversionError"]>;
2064
+ referenceType: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
2065
+ }, "strip", z.ZodTypeAny, {
2066
+ locator: string;
2067
+ staticLocator: string;
2068
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2069
+ name: string;
2070
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2071
+ }, {
2072
+ locator: string;
2073
+ staticLocator: string;
2074
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2075
+ name: string;
2076
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2077
+ }>;
2078
+
2071
2079
  declare type Element_2 = z.infer<typeof baseElementResponseSchema> & {
2072
2080
  elements?: Element_2[];
2073
2081
  };
@@ -2314,6 +2322,28 @@ export declare type ElementResponse = z.infer<typeof elementResponseSchema>;
2314
2322
 
2315
2323
  export declare const elementResponseSchema: z.ZodType<Element_2>;
2316
2324
 
2325
+ export declare type ElementSummary = z.infer<typeof elementSummarySchema>;
2326
+
2327
+ export declare const elementSummarySchema: z.ZodObject<{
2328
+ locator: z.ZodString;
2329
+ staticLocator: z.ZodString;
2330
+ type: z.ZodString;
2331
+ chargeSummaries: z.ZodRecord<z.ZodString, z.ZodNumber>;
2332
+ data: z.ZodRecord<z.ZodString, z.ZodAny>;
2333
+ }, "strip", z.ZodTypeAny, {
2334
+ locator: string;
2335
+ type: string;
2336
+ data: Record<string, any>;
2337
+ staticLocator: string;
2338
+ chargeSummaries: Record<string, number>;
2339
+ }, {
2340
+ locator: string;
2341
+ type: string;
2342
+ data: Record<string, any>;
2343
+ staticLocator: string;
2344
+ chargeSummaries: Record<string, number>;
2345
+ }>;
2346
+
2317
2347
  export declare type FieldConfig = z.infer<typeof fieldConfigSchema>;
2318
2348
 
2319
2349
  export declare type FieldConfigRecord = z.infer<typeof fieldConfigRecordSchema>;
@@ -2422,6 +2452,556 @@ export declare type OptionalQuantifiers = z.infer<typeof optionalQuantifiersSche
2422
2452
 
2423
2453
  export declare const optionalQuantifiersSchema: z.ZodEnum<["?", "*"]>;
2424
2454
 
2455
+ export declare type PolicyBillingLevel = z.infer<typeof policyBillingLevelEnumSchema>;
2456
+
2457
+ export declare const policyBillingLevelEnumSchema: z.ZodEnum<["account", "inherit", "policy"]>;
2458
+
2459
+ export declare type PolicyBillingTrigger = z.infer<typeof policyBillingTriggerEnumSchema>;
2460
+
2461
+ export declare const policyBillingTriggerEnumSchema: z.ZodEnum<["accept", "issue"]>;
2462
+
2463
+ export declare type PolicyDurationBasis = z.infer<typeof policyDurationBasisEnumSchema>;
2464
+
2465
+ export declare const policyDurationBasisEnumSchema: z.ZodEnum<["years", "months", "weeks", "days", "hours"]>;
2466
+
2467
+ export declare type PolicyResponse = z.infer<typeof policyResponseSchema>;
2468
+
2469
+ export declare const policyResponseSchema: z.ZodObject<{
2470
+ locator: z.ZodString;
2471
+ accountLocator: z.ZodString;
2472
+ issuedTransactionLocator: z.ZodString;
2473
+ latestTermLocator: z.ZodString;
2474
+ productName: z.ZodString;
2475
+ startTime: z.ZodString;
2476
+ endTime: z.ZodString;
2477
+ durationBasis: z.ZodEnum<["years", "months", "weeks", "days", "hours"]>;
2478
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
2479
+ billingTrigger: z.ZodEnum<["accept", "issue"]>;
2480
+ createdAt: z.ZodOptional<z.ZodString>;
2481
+ createdBy: z.ZodOptional<z.ZodString>;
2482
+ currency: z.ZodOptional<z.ZodString>;
2483
+ timezone: z.ZodOptional<z.ZodString>;
2484
+ branchHeadTransactionLocators: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2485
+ static: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2486
+ autoRenewalPlanName: z.ZodOptional<z.ZodString>;
2487
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
2488
+ validationResult: z.ZodOptional<z.ZodObject<{
2489
+ validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
2490
+ elementType: z.ZodOptional<z.ZodString>;
2491
+ locator: z.ZodOptional<z.ZodString>;
2492
+ errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2493
+ }, "strip", z.ZodTypeAny, {
2494
+ elementType?: string | undefined;
2495
+ locator?: string | undefined;
2496
+ errors?: string[] | undefined;
2497
+ }, {
2498
+ elementType?: string | undefined;
2499
+ locator?: string | undefined;
2500
+ errors?: string[] | undefined;
2501
+ }>, "many">>;
2502
+ success: z.ZodOptional<z.ZodBoolean>;
2503
+ }, "strip", z.ZodTypeAny, {
2504
+ validationItems?: {
2505
+ elementType?: string | undefined;
2506
+ locator?: string | undefined;
2507
+ errors?: string[] | undefined;
2508
+ }[] | undefined;
2509
+ success?: boolean | undefined;
2510
+ }, {
2511
+ validationItems?: {
2512
+ elementType?: string | undefined;
2513
+ locator?: string | undefined;
2514
+ errors?: string[] | undefined;
2515
+ }[] | undefined;
2516
+ success?: boolean | undefined;
2517
+ }>>;
2518
+ }, "strip", z.ZodTypeAny, {
2519
+ locator: string;
2520
+ billingLevel: "account" | "inherit" | "policy";
2521
+ productName: string;
2522
+ startTime: string;
2523
+ endTime: string;
2524
+ durationBasis: "years" | "months" | "weeks" | "days" | "hours";
2525
+ accountLocator: string;
2526
+ billingTrigger: "accept" | "issue";
2527
+ issuedTransactionLocator: string;
2528
+ latestTermLocator: string;
2529
+ delinquencyPlanName?: string | undefined;
2530
+ currency?: string | undefined;
2531
+ timezone?: string | undefined;
2532
+ validationResult?: {
2533
+ validationItems?: {
2534
+ elementType?: string | undefined;
2535
+ locator?: string | undefined;
2536
+ errors?: string[] | undefined;
2537
+ }[] | undefined;
2538
+ success?: boolean | undefined;
2539
+ } | undefined;
2540
+ autoRenewalPlanName?: string | undefined;
2541
+ createdAt?: string | undefined;
2542
+ createdBy?: string | undefined;
2543
+ branchHeadTransactionLocators?: string[] | undefined;
2544
+ static?: Record<string, any> | undefined;
2545
+ }, {
2546
+ locator: string;
2547
+ billingLevel: "account" | "inherit" | "policy";
2548
+ productName: string;
2549
+ startTime: string;
2550
+ endTime: string;
2551
+ durationBasis: "years" | "months" | "weeks" | "days" | "hours";
2552
+ accountLocator: string;
2553
+ billingTrigger: "accept" | "issue";
2554
+ issuedTransactionLocator: string;
2555
+ latestTermLocator: string;
2556
+ delinquencyPlanName?: string | undefined;
2557
+ currency?: string | undefined;
2558
+ timezone?: string | undefined;
2559
+ validationResult?: {
2560
+ validationItems?: {
2561
+ elementType?: string | undefined;
2562
+ locator?: string | undefined;
2563
+ errors?: string[] | undefined;
2564
+ }[] | undefined;
2565
+ success?: boolean | undefined;
2566
+ } | undefined;
2567
+ autoRenewalPlanName?: string | undefined;
2568
+ createdAt?: string | undefined;
2569
+ createdBy?: string | undefined;
2570
+ branchHeadTransactionLocators?: string[] | undefined;
2571
+ static?: Record<string, any> | undefined;
2572
+ }>;
2573
+
2574
+ export declare type PolicySnapshotResponse = z.infer<typeof policySnapshotResponseSchema>;
2575
+
2576
+ export declare const policySnapshotResponseSchema: z.ZodObject<{
2577
+ locator: z.ZodString;
2578
+ accountLocator: z.ZodString;
2579
+ productName: z.ZodString;
2580
+ currency: z.ZodString;
2581
+ timezone: z.ZodString;
2582
+ transaction: z.ZodObject<{
2583
+ locator: z.ZodString;
2584
+ issuedTime: z.ZodString;
2585
+ effectiveTime: z.ZodString;
2586
+ preferences: z.ZodOptional<z.ZodObject<{
2587
+ billingPreferences: z.ZodObject<{
2588
+ billingPlanName: z.ZodOptional<z.ZodString>;
2589
+ billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
2590
+ }, "strip", z.ZodTypeAny, {
2591
+ billingPlanName?: string | undefined;
2592
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2593
+ }, {
2594
+ billingPlanName?: string | undefined;
2595
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2596
+ }>;
2597
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
2598
+ installmentPlanName: z.ZodOptional<z.ZodString>;
2599
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
2600
+ anchorTime: z.ZodOptional<z.ZodString>;
2601
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
2602
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
2603
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
2604
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
2605
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
2606
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
2607
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
2608
+ weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
2609
+ }, "strip", z.ZodTypeAny, {
2610
+ dayOfMonth?: number | undefined;
2611
+ anchorTime?: string | undefined;
2612
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2613
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2614
+ installmentPlanName?: string | undefined;
2615
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2616
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2617
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2618
+ dueLeadDays?: number | undefined;
2619
+ generateLeadDays?: number | undefined;
2620
+ maxInstallmentsPerTerm?: number | undefined;
2621
+ }, {
2622
+ dayOfMonth?: number | undefined;
2623
+ anchorTime?: string | undefined;
2624
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2625
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2626
+ installmentPlanName?: string | undefined;
2627
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2628
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2629
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2630
+ dueLeadDays?: number | undefined;
2631
+ generateLeadDays?: number | undefined;
2632
+ maxInstallmentsPerTerm?: number | undefined;
2633
+ }>>;
2634
+ }, "strip", z.ZodTypeAny, {
2635
+ billingPreferences: {
2636
+ billingPlanName?: string | undefined;
2637
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2638
+ };
2639
+ installmentPreferences?: {
2640
+ dayOfMonth?: number | undefined;
2641
+ anchorTime?: string | undefined;
2642
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2643
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2644
+ installmentPlanName?: string | undefined;
2645
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2646
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2647
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2648
+ dueLeadDays?: number | undefined;
2649
+ generateLeadDays?: number | undefined;
2650
+ maxInstallmentsPerTerm?: number | undefined;
2651
+ } | undefined;
2652
+ }, {
2653
+ billingPreferences: {
2654
+ billingPlanName?: string | undefined;
2655
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2656
+ };
2657
+ installmentPreferences?: {
2658
+ dayOfMonth?: number | undefined;
2659
+ anchorTime?: string | undefined;
2660
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2661
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2662
+ installmentPlanName?: string | undefined;
2663
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2664
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2665
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2666
+ dueLeadDays?: number | undefined;
2667
+ generateLeadDays?: number | undefined;
2668
+ maxInstallmentsPerTerm?: number | undefined;
2669
+ } | undefined;
2670
+ }>>;
2671
+ segment: z.ZodRecord<z.ZodString, z.ZodAny>;
2672
+ transactionCategory: z.ZodEnum<["issuance", "change", "renewal", "cancellation", "reinstatement", "reversal", "aggregate"]>;
2673
+ transactionType: z.ZodString;
2674
+ }, "strip", z.ZodTypeAny, {
2675
+ locator: string;
2676
+ issuedTime: string;
2677
+ effectiveTime: string;
2678
+ segment: Record<string, any>;
2679
+ transactionCategory: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
2680
+ transactionType: string;
2681
+ preferences?: {
2682
+ billingPreferences: {
2683
+ billingPlanName?: string | undefined;
2684
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2685
+ };
2686
+ installmentPreferences?: {
2687
+ dayOfMonth?: number | undefined;
2688
+ anchorTime?: string | undefined;
2689
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2690
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2691
+ installmentPlanName?: string | undefined;
2692
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2693
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2694
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2695
+ dueLeadDays?: number | undefined;
2696
+ generateLeadDays?: number | undefined;
2697
+ maxInstallmentsPerTerm?: number | undefined;
2698
+ } | undefined;
2699
+ } | undefined;
2700
+ }, {
2701
+ locator: string;
2702
+ issuedTime: string;
2703
+ effectiveTime: string;
2704
+ segment: Record<string, any>;
2705
+ transactionCategory: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
2706
+ transactionType: string;
2707
+ preferences?: {
2708
+ billingPreferences: {
2709
+ billingPlanName?: string | undefined;
2710
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2711
+ };
2712
+ installmentPreferences?: {
2713
+ dayOfMonth?: number | undefined;
2714
+ anchorTime?: string | undefined;
2715
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2716
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2717
+ installmentPlanName?: string | undefined;
2718
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2719
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2720
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2721
+ dueLeadDays?: number | undefined;
2722
+ generateLeadDays?: number | undefined;
2723
+ maxInstallmentsPerTerm?: number | undefined;
2724
+ } | undefined;
2725
+ } | undefined;
2726
+ }>;
2727
+ static: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2728
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
2729
+ }, "strip", z.ZodTypeAny, {
2730
+ locator: string;
2731
+ productName: string;
2732
+ currency: string;
2733
+ timezone: string;
2734
+ accountLocator: string;
2735
+ transaction: {
2736
+ locator: string;
2737
+ issuedTime: string;
2738
+ effectiveTime: string;
2739
+ segment: Record<string, any>;
2740
+ transactionCategory: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
2741
+ transactionType: string;
2742
+ preferences?: {
2743
+ billingPreferences: {
2744
+ billingPlanName?: string | undefined;
2745
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2746
+ };
2747
+ installmentPreferences?: {
2748
+ dayOfMonth?: number | undefined;
2749
+ anchorTime?: string | undefined;
2750
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2751
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2752
+ installmentPlanName?: string | undefined;
2753
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2754
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2755
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2756
+ dueLeadDays?: number | undefined;
2757
+ generateLeadDays?: number | undefined;
2758
+ maxInstallmentsPerTerm?: number | undefined;
2759
+ } | undefined;
2760
+ } | undefined;
2761
+ };
2762
+ delinquencyPlanName?: string | undefined;
2763
+ static?: Record<string, any> | undefined;
2764
+ }, {
2765
+ locator: string;
2766
+ productName: string;
2767
+ currency: string;
2768
+ timezone: string;
2769
+ accountLocator: string;
2770
+ transaction: {
2771
+ locator: string;
2772
+ issuedTime: string;
2773
+ effectiveTime: string;
2774
+ segment: Record<string, any>;
2775
+ transactionCategory: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
2776
+ transactionType: string;
2777
+ preferences?: {
2778
+ billingPreferences: {
2779
+ billingPlanName?: string | undefined;
2780
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2781
+ };
2782
+ installmentPreferences?: {
2783
+ dayOfMonth?: number | undefined;
2784
+ anchorTime?: string | undefined;
2785
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2786
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2787
+ installmentPlanName?: string | undefined;
2788
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2789
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2790
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2791
+ dueLeadDays?: number | undefined;
2792
+ generateLeadDays?: number | undefined;
2793
+ maxInstallmentsPerTerm?: number | undefined;
2794
+ } | undefined;
2795
+ } | undefined;
2796
+ };
2797
+ delinquencyPlanName?: string | undefined;
2798
+ static?: Record<string, any> | undefined;
2799
+ }>;
2800
+
2801
+ export declare type PolicyTermSummaryResponse = z.infer<typeof policyTermSummaryResponse>;
2802
+
2803
+ export declare const policyTermSummaryResponse: z.ZodObject<{
2804
+ locator: z.ZodString;
2805
+ staticLocator: z.ZodString;
2806
+ policyLocator: z.ZodString;
2807
+ startTime: z.ZodString;
2808
+ endTime: z.ZodString;
2809
+ duration: z.ZodNumber;
2810
+ durationBasis: z.ZodEnum<["years", "months", "weeks", "days", "hours"]>;
2811
+ termNumber: z.ZodNumber;
2812
+ subsegments: z.ZodArray<z.ZodObject<{
2813
+ locator: z.ZodString;
2814
+ startTime: z.ZodString;
2815
+ endTime: z.ZodString;
2816
+ duration: z.ZodNumber;
2817
+ basedOn: z.ZodString;
2818
+ type: z.ZodEnum<["coverage", "gap"]>;
2819
+ documentSummary: z.ZodArray<z.ZodObject<{
2820
+ locator: z.ZodString;
2821
+ staticLocator: z.ZodString;
2822
+ name: z.ZodString;
2823
+ state: z.ZodEnum<["draft", "dataReady", "ready", "dataError", "renderError", "conversionError"]>;
2824
+ referenceType: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
2825
+ }, "strip", z.ZodTypeAny, {
2826
+ locator: string;
2827
+ staticLocator: string;
2828
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2829
+ name: string;
2830
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2831
+ }, {
2832
+ locator: string;
2833
+ staticLocator: string;
2834
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2835
+ name: string;
2836
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2837
+ }>, "many">;
2838
+ }, "strip", z.ZodTypeAny, {
2839
+ locator: string;
2840
+ type: "coverage" | "gap";
2841
+ startTime: string;
2842
+ endTime: string;
2843
+ duration: number;
2844
+ basedOn: string;
2845
+ documentSummary: {
2846
+ locator: string;
2847
+ staticLocator: string;
2848
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2849
+ name: string;
2850
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2851
+ }[];
2852
+ }, {
2853
+ locator: string;
2854
+ type: "coverage" | "gap";
2855
+ startTime: string;
2856
+ endTime: string;
2857
+ duration: number;
2858
+ basedOn: string;
2859
+ documentSummary: {
2860
+ locator: string;
2861
+ staticLocator: string;
2862
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2863
+ name: string;
2864
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2865
+ }[];
2866
+ }>, "many">;
2867
+ }, "strip", z.ZodTypeAny, {
2868
+ locator: string;
2869
+ startTime: string;
2870
+ endTime: string;
2871
+ durationBasis: "years" | "months" | "weeks" | "days" | "hours";
2872
+ staticLocator: string;
2873
+ duration: number;
2874
+ policyLocator: string;
2875
+ termNumber: number;
2876
+ subsegments: {
2877
+ locator: string;
2878
+ type: "coverage" | "gap";
2879
+ startTime: string;
2880
+ endTime: string;
2881
+ duration: number;
2882
+ basedOn: string;
2883
+ documentSummary: {
2884
+ locator: string;
2885
+ staticLocator: string;
2886
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2887
+ name: string;
2888
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2889
+ }[];
2890
+ }[];
2891
+ }, {
2892
+ locator: string;
2893
+ startTime: string;
2894
+ endTime: string;
2895
+ durationBasis: "years" | "months" | "weeks" | "days" | "hours";
2896
+ staticLocator: string;
2897
+ duration: number;
2898
+ policyLocator: string;
2899
+ termNumber: number;
2900
+ subsegments: {
2901
+ locator: string;
2902
+ type: "coverage" | "gap";
2903
+ startTime: string;
2904
+ endTime: string;
2905
+ duration: number;
2906
+ basedOn: string;
2907
+ documentSummary: {
2908
+ locator: string;
2909
+ staticLocator: string;
2910
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
2911
+ name: string;
2912
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
2913
+ }[];
2914
+ }[];
2915
+ }>;
2916
+
2917
+ export declare type PreferencesResponse = z.infer<typeof preferencesResponseSchema>;
2918
+
2919
+ export declare const preferencesResponseSchema: z.ZodObject<{
2920
+ billingPreferences: z.ZodObject<{
2921
+ billingPlanName: z.ZodOptional<z.ZodString>;
2922
+ billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
2923
+ }, "strip", z.ZodTypeAny, {
2924
+ billingPlanName?: string | undefined;
2925
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2926
+ }, {
2927
+ billingPlanName?: string | undefined;
2928
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2929
+ }>;
2930
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
2931
+ installmentPlanName: z.ZodOptional<z.ZodString>;
2932
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
2933
+ anchorTime: z.ZodOptional<z.ZodString>;
2934
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
2935
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
2936
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
2937
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
2938
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
2939
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
2940
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
2941
+ weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
2942
+ }, "strip", z.ZodTypeAny, {
2943
+ dayOfMonth?: number | undefined;
2944
+ anchorTime?: string | undefined;
2945
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2946
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2947
+ installmentPlanName?: string | undefined;
2948
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2949
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2950
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2951
+ dueLeadDays?: number | undefined;
2952
+ generateLeadDays?: number | undefined;
2953
+ maxInstallmentsPerTerm?: number | undefined;
2954
+ }, {
2955
+ dayOfMonth?: number | undefined;
2956
+ anchorTime?: string | undefined;
2957
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2958
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2959
+ installmentPlanName?: string | undefined;
2960
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2961
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2962
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2963
+ dueLeadDays?: number | undefined;
2964
+ generateLeadDays?: number | undefined;
2965
+ maxInstallmentsPerTerm?: number | undefined;
2966
+ }>>;
2967
+ }, "strip", z.ZodTypeAny, {
2968
+ billingPreferences: {
2969
+ billingPlanName?: string | undefined;
2970
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2971
+ };
2972
+ installmentPreferences?: {
2973
+ dayOfMonth?: number | undefined;
2974
+ anchorTime?: string | undefined;
2975
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2976
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2977
+ installmentPlanName?: string | undefined;
2978
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2979
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2980
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2981
+ dueLeadDays?: number | undefined;
2982
+ generateLeadDays?: number | undefined;
2983
+ maxInstallmentsPerTerm?: number | undefined;
2984
+ } | undefined;
2985
+ }, {
2986
+ billingPreferences: {
2987
+ billingPlanName?: string | undefined;
2988
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2989
+ };
2990
+ installmentPreferences?: {
2991
+ dayOfMonth?: number | undefined;
2992
+ anchorTime?: string | undefined;
2993
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2994
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
2995
+ installmentPlanName?: string | undefined;
2996
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2997
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2998
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2999
+ dueLeadDays?: number | undefined;
3000
+ generateLeadDays?: number | undefined;
3001
+ maxInstallmentsPerTerm?: number | undefined;
3002
+ } | undefined;
3003
+ }>;
3004
+
2425
3005
  export declare type ProductConfig = z.infer<typeof productConfigSchema>;
2426
3006
 
2427
3007
  export declare type ProductConfigRecord = z.infer<typeof productConfigRecordSchema>;
@@ -2734,6 +3314,8 @@ export declare type Quantifiers = z.infer<typeof quantifiersSchema>;
2734
3314
 
2735
3315
  export declare const quantifiersSchema: z.ZodEnum<["", "?", "+", "*", "!"]>;
2736
3316
 
3317
+ export declare type QuoteBillingLevel = z.infer<typeof quoteBillingLevelEnumSchema>;
3318
+
2737
3319
  export declare const quoteBillingLevelEnumSchema: z.ZodEnum<["account", "inherit", "policy"]>;
2738
3320
 
2739
3321
  export declare const quoteBillingTriggerEnumSchema: z.ZodEnum<["accept", "issue"]>;
@@ -2781,11 +3363,11 @@ export declare const quoteRequestSchema: z.ZodObject<{
2781
3363
  billingPlanName: z.ZodOptional<z.ZodString>;
2782
3364
  billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
2783
3365
  }, "strip", z.ZodTypeAny, {
2784
- billingLevel?: "policy" | "account" | "inherit" | undefined;
2785
3366
  billingPlanName?: string | undefined;
3367
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2786
3368
  }, {
2787
- billingLevel?: "policy" | "account" | "inherit" | undefined;
2788
3369
  billingPlanName?: string | undefined;
3370
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2789
3371
  }>>;
2790
3372
  installmentPreferences: z.ZodOptional<z.ZodObject<{
2791
3373
  installmentPlanName: z.ZodOptional<z.ZodString>;
@@ -2802,12 +3384,12 @@ export declare const quoteRequestSchema: z.ZodObject<{
2802
3384
  installmentPlanWeights: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2803
3385
  }, "strip", z.ZodTypeAny, {
2804
3386
  weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
2805
- installmentPlanName?: string | undefined;
2806
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2807
- anchorTime?: string | undefined;
2808
3387
  dayOfMonth?: number | undefined;
3388
+ anchorTime?: string | undefined;
2809
3389
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2810
- anchorType?: "none" | "anchorTime" | "dayOfMonth" | "dayOfWeek" | "weekOfMonth" | undefined;
3390
+ installmentPlanName?: string | undefined;
3391
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3392
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2811
3393
  cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2812
3394
  dueLeadDays?: number | undefined;
2813
3395
  generateLeadDays?: number | undefined;
@@ -2815,12 +3397,12 @@ export declare const quoteRequestSchema: z.ZodObject<{
2815
3397
  installmentPlanWeights?: number[] | undefined;
2816
3398
  }, {
2817
3399
  weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
2818
- installmentPlanName?: string | undefined;
2819
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2820
- anchorTime?: string | undefined;
2821
3400
  dayOfMonth?: number | undefined;
3401
+ anchorTime?: string | undefined;
2822
3402
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2823
- anchorType?: "none" | "anchorTime" | "dayOfMonth" | "dayOfWeek" | "weekOfMonth" | undefined;
3403
+ installmentPlanName?: string | undefined;
3404
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3405
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2824
3406
  cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2825
3407
  dueLeadDays?: number | undefined;
2826
3408
  generateLeadDays?: number | undefined;
@@ -2829,17 +3411,17 @@ export declare const quoteRequestSchema: z.ZodObject<{
2829
3411
  }>>;
2830
3412
  }, "strip", z.ZodTypeAny, {
2831
3413
  billingPreferences?: {
2832
- billingLevel?: "policy" | "account" | "inherit" | undefined;
2833
3414
  billingPlanName?: string | undefined;
3415
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2834
3416
  } | undefined;
2835
3417
  installmentPreferences?: {
2836
3418
  weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
2837
- installmentPlanName?: string | undefined;
2838
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2839
- anchorTime?: string | undefined;
2840
3419
  dayOfMonth?: number | undefined;
3420
+ anchorTime?: string | undefined;
2841
3421
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2842
- anchorType?: "none" | "anchorTime" | "dayOfMonth" | "dayOfWeek" | "weekOfMonth" | undefined;
3422
+ installmentPlanName?: string | undefined;
3423
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3424
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2843
3425
  cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2844
3426
  dueLeadDays?: number | undefined;
2845
3427
  generateLeadDays?: number | undefined;
@@ -2848,17 +3430,17 @@ export declare const quoteRequestSchema: z.ZodObject<{
2848
3430
  } | undefined;
2849
3431
  }, {
2850
3432
  billingPreferences?: {
2851
- billingLevel?: "policy" | "account" | "inherit" | undefined;
2852
3433
  billingPlanName?: string | undefined;
3434
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2853
3435
  } | undefined;
2854
3436
  installmentPreferences?: {
2855
3437
  weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
2856
- installmentPlanName?: string | undefined;
2857
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2858
- anchorTime?: string | undefined;
2859
3438
  dayOfMonth?: number | undefined;
3439
+ anchorTime?: string | undefined;
2860
3440
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2861
- anchorType?: "none" | "anchorTime" | "dayOfMonth" | "dayOfWeek" | "weekOfMonth" | undefined;
3441
+ installmentPlanName?: string | undefined;
3442
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3443
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2862
3444
  cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2863
3445
  dueLeadDays?: number | undefined;
2864
3446
  generateLeadDays?: number | undefined;
@@ -2868,6 +3450,13 @@ export declare const quoteRequestSchema: z.ZodObject<{
2868
3450
  }>>;
2869
3451
  }, "strip", z.ZodTypeAny, {
2870
3452
  defaultTermDuration?: string | undefined;
3453
+ setData?: Record<string, unknown> | undefined;
3454
+ productName?: string | undefined;
3455
+ delinquencyPlanName?: string | undefined;
3456
+ startTime?: string | undefined;
3457
+ endTime?: string | undefined;
3458
+ currency?: string | undefined;
3459
+ expirationTime?: string | undefined;
2871
3460
  elements?: {
2872
3461
  locator: string;
2873
3462
  removeCoverageTerms?: Record<string, unknown> | undefined;
@@ -2875,26 +3464,23 @@ export declare const quoteRequestSchema: z.ZodObject<{
2875
3464
  setCoverageTerms?: Record<string, unknown> | undefined;
2876
3465
  setData?: Record<string, unknown> | undefined;
2877
3466
  }[] | undefined;
2878
- productName?: string | undefined;
2879
- startTime?: string | undefined;
2880
- endTime?: string | undefined;
2881
3467
  timezone?: string | undefined;
2882
- currency?: string | undefined;
2883
- expirationTime?: string | undefined;
3468
+ billingPlan?: string | undefined;
3469
+ installmentPlan?: string | undefined;
2884
3470
  durationBasis?: string | undefined;
2885
3471
  preferences?: {
2886
3472
  billingPreferences?: {
2887
- billingLevel?: "policy" | "account" | "inherit" | undefined;
2888
3473
  billingPlanName?: string | undefined;
3474
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2889
3475
  } | undefined;
2890
3476
  installmentPreferences?: {
2891
3477
  weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
2892
- installmentPlanName?: string | undefined;
2893
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2894
- anchorTime?: string | undefined;
2895
3478
  dayOfMonth?: number | undefined;
3479
+ anchorTime?: string | undefined;
2896
3480
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2897
- anchorType?: "none" | "anchorTime" | "dayOfMonth" | "dayOfWeek" | "weekOfMonth" | undefined;
3481
+ installmentPlanName?: string | undefined;
3482
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3483
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2898
3484
  cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2899
3485
  dueLeadDays?: number | undefined;
2900
3486
  generateLeadDays?: number | undefined;
@@ -2902,12 +3488,15 @@ export declare const quoteRequestSchema: z.ZodObject<{
2902
3488
  installmentPlanWeights?: number[] | undefined;
2903
3489
  } | undefined;
2904
3490
  } | undefined;
2905
- delinquencyPlanName?: string | undefined;
2906
- setData?: Record<string, unknown> | undefined;
2907
- billingPlan?: string | undefined;
2908
- installmentPlan?: string | undefined;
2909
3491
  }, {
2910
3492
  defaultTermDuration?: string | undefined;
3493
+ setData?: Record<string, unknown> | undefined;
3494
+ productName?: string | undefined;
3495
+ delinquencyPlanName?: string | undefined;
3496
+ startTime?: string | undefined;
3497
+ endTime?: string | undefined;
3498
+ currency?: string | undefined;
3499
+ expirationTime?: string | undefined;
2911
3500
  elements?: {
2912
3501
  locator: string;
2913
3502
  removeCoverageTerms?: Record<string, unknown> | undefined;
@@ -2915,26 +3504,23 @@ export declare const quoteRequestSchema: z.ZodObject<{
2915
3504
  setCoverageTerms?: Record<string, unknown> | undefined;
2916
3505
  setData?: Record<string, unknown> | undefined;
2917
3506
  }[] | undefined;
2918
- productName?: string | undefined;
2919
- startTime?: string | undefined;
2920
- endTime?: string | undefined;
2921
3507
  timezone?: string | undefined;
2922
- currency?: string | undefined;
2923
- expirationTime?: string | undefined;
3508
+ billingPlan?: string | undefined;
3509
+ installmentPlan?: string | undefined;
2924
3510
  durationBasis?: string | undefined;
2925
3511
  preferences?: {
2926
3512
  billingPreferences?: {
2927
- billingLevel?: "policy" | "account" | "inherit" | undefined;
2928
3513
  billingPlanName?: string | undefined;
3514
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
2929
3515
  } | undefined;
2930
3516
  installmentPreferences?: {
2931
3517
  weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
2932
- installmentPlanName?: string | undefined;
2933
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
2934
- anchorTime?: string | undefined;
2935
3518
  dayOfMonth?: number | undefined;
3519
+ anchorTime?: string | undefined;
2936
3520
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
2937
- anchorType?: "none" | "anchorTime" | "dayOfMonth" | "dayOfWeek" | "weekOfMonth" | undefined;
3521
+ installmentPlanName?: string | undefined;
3522
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3523
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
2938
3524
  cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
2939
3525
  dueLeadDays?: number | undefined;
2940
3526
  generateLeadDays?: number | undefined;
@@ -2942,10 +3528,6 @@ export declare const quoteRequestSchema: z.ZodObject<{
2942
3528
  installmentPlanWeights?: number[] | undefined;
2943
3529
  } | undefined;
2944
3530
  } | undefined;
2945
- delinquencyPlanName?: string | undefined;
2946
- setData?: Record<string, unknown> | undefined;
2947
- billingPlan?: string | undefined;
2948
- installmentPlan?: string | undefined;
2949
3531
  }>;
2950
3532
 
2951
3533
  export declare type QuoteResponse = z.infer<typeof quoteResponseSchema>;
@@ -3045,16 +3627,20 @@ export declare const quoteResponseSchema: z.ZodObject<{
3045
3627
  billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
3046
3628
  }, "strip", z.ZodTypeAny, {
3047
3629
  locator: string;
3048
- quoteState: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded";
3049
3630
  productName: string;
3631
+ quoteState: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded";
3050
3632
  accountLocator: string;
3051
3633
  type?: string | undefined;
3634
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3635
+ delinquencyPlanName?: string | undefined;
3052
3636
  startTime?: string | undefined;
3053
3637
  endTime?: string | undefined;
3054
- timezone?: string | undefined;
3055
3638
  currency?: string | undefined;
3056
- underwritingStatus?: string | undefined;
3057
3639
  expirationTime?: string | undefined;
3640
+ timezone?: string | undefined;
3641
+ durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
3642
+ preferences?: any;
3643
+ underwritingStatus?: string | undefined;
3058
3644
  element?: ({
3059
3645
  locator: string;
3060
3646
  type: string;
@@ -3077,7 +3663,6 @@ export declare const quoteResponseSchema: z.ZodObject<{
3077
3663
  } & any)[];
3078
3664
  }) | undefined;
3079
3665
  duration?: number | undefined;
3080
- durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
3081
3666
  boundTime?: string | undefined;
3082
3667
  issuedTime?: string | undefined;
3083
3668
  policyLocator?: string | undefined;
@@ -3089,23 +3674,24 @@ export declare const quoteResponseSchema: z.ZodObject<{
3089
3674
  }[] | undefined;
3090
3675
  success?: boolean | undefined;
3091
3676
  } | undefined;
3092
- preferences?: any;
3093
- delinquencyPlanName?: string | undefined;
3094
3677
  autoRenewalPlanName?: string | undefined;
3095
- billingLevel?: "policy" | "account" | "inherit" | undefined;
3096
3678
  billingTrigger?: "accept" | "issue" | undefined;
3097
3679
  }, {
3098
3680
  locator: string;
3099
- quoteState: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded";
3100
3681
  productName: string;
3682
+ quoteState: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded";
3101
3683
  accountLocator: string;
3102
3684
  type?: string | undefined;
3685
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3686
+ delinquencyPlanName?: string | undefined;
3103
3687
  startTime?: string | undefined;
3104
3688
  endTime?: string | undefined;
3105
- timezone?: string | undefined;
3106
3689
  currency?: string | undefined;
3107
- underwritingStatus?: string | undefined;
3108
3690
  expirationTime?: string | undefined;
3691
+ timezone?: string | undefined;
3692
+ durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
3693
+ preferences?: any;
3694
+ underwritingStatus?: string | undefined;
3109
3695
  element?: ({
3110
3696
  locator: string;
3111
3697
  type: string;
@@ -3128,7 +3714,6 @@ export declare const quoteResponseSchema: z.ZodObject<{
3128
3714
  } & any)[];
3129
3715
  }) | undefined;
3130
3716
  duration?: number | undefined;
3131
- durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
3132
3717
  boundTime?: string | undefined;
3133
3718
  issuedTime?: string | undefined;
3134
3719
  policyLocator?: string | undefined;
@@ -3140,10 +3725,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
3140
3725
  }[] | undefined;
3141
3726
  success?: boolean | undefined;
3142
3727
  } | undefined;
3143
- preferences?: any;
3144
- delinquencyPlanName?: string | undefined;
3145
3728
  autoRenewalPlanName?: string | undefined;
3146
- billingLevel?: "policy" | "account" | "inherit" | undefined;
3147
3729
  billingTrigger?: "accept" | "issue" | undefined;
3148
3730
  }>;
3149
3731
 
@@ -3151,6 +3733,62 @@ export declare type QuoteState = z.infer<typeof quoteStateEnumSchema>;
3151
3733
 
3152
3734
  export declare const quoteStateEnumSchema: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
3153
3735
 
3736
+ export declare const subsegmentSummarySchema: z.ZodObject<{
3737
+ locator: z.ZodString;
3738
+ startTime: z.ZodString;
3739
+ endTime: z.ZodString;
3740
+ duration: z.ZodNumber;
3741
+ basedOn: z.ZodString;
3742
+ type: z.ZodEnum<["coverage", "gap"]>;
3743
+ documentSummary: z.ZodArray<z.ZodObject<{
3744
+ locator: z.ZodString;
3745
+ staticLocator: z.ZodString;
3746
+ name: z.ZodString;
3747
+ state: z.ZodEnum<["draft", "dataReady", "ready", "dataError", "renderError", "conversionError"]>;
3748
+ referenceType: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
3749
+ }, "strip", z.ZodTypeAny, {
3750
+ locator: string;
3751
+ staticLocator: string;
3752
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
3753
+ name: string;
3754
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
3755
+ }, {
3756
+ locator: string;
3757
+ staticLocator: string;
3758
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
3759
+ name: string;
3760
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
3761
+ }>, "many">;
3762
+ }, "strip", z.ZodTypeAny, {
3763
+ locator: string;
3764
+ type: "coverage" | "gap";
3765
+ startTime: string;
3766
+ endTime: string;
3767
+ duration: number;
3768
+ basedOn: string;
3769
+ documentSummary: {
3770
+ locator: string;
3771
+ staticLocator: string;
3772
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
3773
+ name: string;
3774
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
3775
+ }[];
3776
+ }, {
3777
+ locator: string;
3778
+ type: "coverage" | "gap";
3779
+ startTime: string;
3780
+ endTime: string;
3781
+ duration: number;
3782
+ basedOn: string;
3783
+ documentSummary: {
3784
+ locator: string;
3785
+ staticLocator: string;
3786
+ state: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
3787
+ name: string;
3788
+ referenceType: "policy" | "invoice" | "segment" | "quote" | "transaction" | "term";
3789
+ }[];
3790
+ }>;
3791
+
3154
3792
  export declare type TenantBaseConfig = z.infer<typeof tenantBaseConfigSchema>;
3155
3793
 
3156
3794
  declare const tenantBaseConfigSchema: z.ZodObject<{
@@ -3191,6 +3829,162 @@ declare const tenantBaseConfigSchema: z.ZodObject<{
3191
3829
  defaultBillingLevel?: string | undefined;
3192
3830
  }>;
3193
3831
 
3832
+ export declare const timezoneEnumSchema: z.ZodEnum<["Africa/Abidjan", "Africa/Accra", "Africa/Addis_Ababa", "Africa/Algiers", "Africa/Asmara", "Africa/Asmera", "Africa/Bamako", "Africa/Bangui", "Africa/Banjul", "Africa/Bissau", "Africa/Blantyre", "Africa/Brazzaville", "Africa/Bujumbura", "Africa/Cairo", "Africa/Casablanca", "Africa/Ceuta", "Africa/Conakry", "Africa/Dakar", "Africa/Dar_es_Salaam", "Africa/Djibouti", "Africa/Douala", "Africa/El_Aaiun", "Africa/Freetown", "Africa/Gaborone", "Africa/Harare", "Africa/Johannesburg", "Africa/Juba", "Africa/Kampala", "Africa/Khartoum", "Africa/Kigali", "Africa/Kinshasa", "Africa/Lagos", "Africa/Libreville", "Africa/Lome", "Africa/Luanda", "Africa/Lubumbashi", "Africa/Lusaka", "Africa/Malabo", "Africa/Maputo", "Africa/Maseru", "Africa/Mbabane", "Africa/Mogadishu", "Africa/Monrovia", "Africa/Nairobi", "Africa/Ndjamena", "Africa/Niamey", "Africa/Nouakchott", "Africa/Ouagadougou", "Africa/Porto-Novo", "Africa/Sao_Tome", "Africa/Timbuktu", "Africa/Tripoli", "Africa/Tunis", "Africa/Windhoek", "America/Adak", "America/Anchorage", "America/Anguilla", "America/Antigua", "America/Araguaina", "America/Argentina/Buenos_Aires", "America/Argentina/Catamarca", "America/Argentina/ComodRivadavia", "America/Argentina/Cordoba", "America/Argentina/Jujuy", "America/Argentina/La_Rioja", "America/Argentina/Mendoza", "America/Argentina/Rio_Gallegos", "America/Argentina/Salta", "America/Argentina/San_Juan", "America/Argentina/San_Luis", "America/Argentina/Tucuman", "America/Argentina/Ushuaia", "America/Aruba", "America/Asuncion", "America/Atikokan", "America/Atka", "America/Bahia", "America/Bahia_Banderas", "America/Barbados", "America/Belem", "America/Belize", "America/Blanc-Sablon", "America/Boa_Vista", "America/Bogota", "America/Boise", "America/Buenos_Aires", "America/Cambridge_Bay", "America/Campo_Grande", "America/Cancun", "America/Caracas", "America/Catamarca", "America/Cayenne", "America/Cayman", "America/Chicago", "America/Chihuahua", "America/Ciudad_Juarez", "America/Coral_Harbour", "America/Cordoba", "America/Costa_Rica", "America/Creston", "America/Cuiaba", "America/Curacao", "America/Danmarkshavn", "America/Dawson", "America/Dawson_Creek", "America/Denver", "America/Detroit", "America/Dominica", "America/Edmonton", "America/Eirunepe", "America/El_Salvador", "America/Ensenada", "America/Fort_Nelson", "America/Fort_Wayne", "America/Fortaleza", "America/Glace_Bay", "America/Godthab", "America/Goose_Bay", "America/Grand_Turk", "America/Grenada", "America/Guadeloupe", "America/Guatemala", "America/Guayaquil", "America/Guyana", "America/Halifax", "America/Havana", "America/Hermosillo", "America/Indiana/Indianapolis", "America/Indiana/Knox", "America/Indiana/Marengo", "America/Indiana/Petersburg", "America/Indiana/Tell_City", "America/Indiana/Vevay", "America/Indiana/Vincennes", "America/Indiana/Winamac", "America/Indianapolis", "America/Inuvik", "America/Iqaluit", "America/Jamaica", "America/Jujuy", "America/Juneau", "America/Kentucky/Louisville", "America/Kentucky/Monticello", "America/Knox_IN", "America/Kralendijk", "America/La_Paz", "America/Lima", "America/Los_Angeles", "America/Louisville", "America/Lower_Princes", "America/Maceio", "America/Managua", "America/Manaus", "America/Marigot", "America/Martinique", "America/Matamoros", "America/Mazatlan", "America/Mendoza", "America/Menominee", "America/Merida", "America/Metlakatla", "America/Mexico_City", "America/Miquelon", "America/Moncton", "America/Monterrey", "America/Montevideo", "America/Montreal", "America/Montserrat", "America/Nassau", "America/New_York", "America/Nipigon", "America/Nome", "America/Noronha", "America/North_Dakota/Beulah", "America/North_Dakota/Center", "America/North_Dakota/New_Salem", "America/Nuuk", "America/Ojinaga", "America/Panama", "America/Pangnirtung", "America/Paramaribo", "America/Phoenix", "America/Port-au-Prince", "America/Port_of_Spain", "America/Porto_Acre", "America/Porto_Velho", "America/Puerto_Rico", "America/Punta_Arenas", "America/Rainy_River", "America/Rankin_Inlet", "America/Recife", "America/Regina", "America/Resolute", "America/Rio_Branco", "America/Rosario", "America/Santa_Isabel", "America/Santarem", "America/Santiago", "America/Santo_Domingo", "America/Sao_Paulo", "America/Scoresbysund", "America/Shiprock", "America/Sitka", "America/St_Barthelemy", "America/St_Johns", "America/St_Kitts", "America/St_Lucia", "America/St_Thomas", "America/St_Vincent", "America/Swift_Current", "America/Tegucigalpa", "America/Thule", "America/Thunder_Bay", "America/Tijuana", "America/Toronto", "America/Tortola", "America/Vancouver", "America/Virgin", "America/Whitehorse", "America/Winnipeg", "America/Yakutat", "America/Yellowknife", "Antarctica/Casey", "Antarctica/Davis", "Antarctica/DumontDUrville", "Antarctica/Macquarie", "Antarctica/Mawson", "Antarctica/McMurdo", "Antarctica/Palmer", "Antarctica/Rothera", "Antarctica/South_Pole", "Antarctica/Syowa", "Antarctica/Troll", "Antarctica/Vostok", "Arctic/Longyearbyen", "Asia/Aden", "Asia/Almaty", "Asia/Amman", "Asia/Anadyr", "Asia/Aqtau", "Asia/Aqtobe", "Asia/Ashgabat", "Asia/Ashkhabad", "Asia/Atyrau", "Asia/Baghdad", "Asia/Bahrain", "Asia/Baku", "Asia/Bangkok", "Asia/Barnaul", "Asia/Beirut", "Asia/Bishkek", "Asia/Brunei", "Asia/Calcutta", "Asia/Chita", "Asia/Choibalsan", "Asia/Chongqing", "Asia/Chungking", "Asia/Colombo", "Asia/Dacca", "Asia/Damascus", "Asia/Dhaka", "Asia/Dili", "Asia/Dubai", "Asia/Dushanbe", "Asia/Famagusta", "Asia/Gaza", "Asia/Harbin", "Asia/Hebron", "Asia/Ho_Chi_Minh", "Asia/Hong_Kong", "Asia/Hovd", "Asia/Irkutsk", "Asia/Istanbul", "Asia/Jakarta", "Asia/Jayapura", "Asia/Jerusalem", "Asia/Kabul", "Asia/Kamchatka", "Asia/Karachi", "Asia/Kashgar", "Asia/Kathmandu", "Asia/Katmandu", "Asia/Khandyga", "Asia/Kolkata", "Asia/Krasnoyarsk", "Asia/Kuala_Lumpur", "Asia/Kuching", "Asia/Kuwait", "Asia/Macao", "Asia/Macau", "Asia/Magadan", "Asia/Makassar", "Asia/Manila", "Asia/Muscat", "Asia/Nicosia", "Asia/Novokuznetsk", "Asia/Novosibirsk", "Asia/Omsk", "Asia/Oral", "Asia/Phnom_Penh", "Asia/Pontianak", "Asia/Pyongyang", "Asia/Qatar", "Asia/Qostanay", "Asia/Qyzylorda", "Asia/Rangoon", "Asia/Riyadh", "Asia/Saigon", "Asia/Sakhalin", "Asia/Samarkand", "Asia/Seoul", "Asia/Shanghai", "Asia/Singapore", "Asia/Srednekolymsk", "Asia/Taipei", "Asia/Tashkent", "Asia/Tbilisi", "Asia/Tehran", "Asia/Tel_Aviv", "Asia/Thimbu", "Asia/Thimphu", "Asia/Tokyo", "Asia/Tomsk", "Asia/Ujung_Pandang", "Asia/Ulaanbaatar", "Asia/Ulan_Bator", "Asia/Urumqi", "Asia/Ust-Nera", "Asia/Vientiane", "Asia/Vladivostok", "Asia/Yakutsk", "Asia/Yangon", "Asia/Yekaterinburg", "Asia/Yerevan", "Atlantic/Azores", "Atlantic/Bermuda", "Atlantic/Canary", "Atlantic/Cape_Verde", "Atlantic/Faeroe", "Atlantic/Faroe", "Atlantic/Jan_Mayen", "Atlantic/Madeira", "Atlantic/Reykjavik", "Atlantic/South_Georgia", "Atlantic/St_Helena", "Atlantic/Stanley", "Australia/ACT", "Australia/Adelaide", "Australia/Brisbane", "Australia/Broken_Hill", "Australia/Canberra", "Australia/Currie", "Australia/Darwin", "Australia/Eucla", "Australia/Hobart", "Australia/LHI", "Australia/Lindeman", "Australia/Lord_Howe", "Australia/Melbourne", "Australia/North", "Australia/NSW", "Australia/Perth", "Australia/Queensland", "Australia/South", "Australia/Sydney", "Australia/Tasmania", "Australia/Victoria", "Australia/West", "Australia/Yancowinna", "Brazil/Acre", "Brazil/DeNoronha", "Brazil/East", "Brazil/West", "Canada/Atlantic", "Canada/Central", "Canada/Eastern", "Canada/Mountain", "Canada/Newfoundland", "Canada/Pacific", "Canada/Saskatchewan", "Canada/Yukon", "CET", "Chile/Continental", "Chile/EasterIsland", "CST6CDT", "Cuba", "EET", "Egypt", "Eire", "EST", "EST5EDT", "Etc/GMT", "Etc/GMT+0", "Etc/GMT+1", "Etc/GMT+10", "Etc/GMT+11", "Etc/GMT+12", "Etc/GMT+2", "Etc/GMT+3", "Etc/GMT+4", "Etc/GMT+5", "Etc/GMT+6", "Etc/GMT+7", "Etc/GMT+8", "Etc/GMT+9", "Etc/GMT-0", "Etc/GMT-1", "Etc/GMT-10", "Etc/GMT-11", "Etc/GMT-12", "Etc/GMT-13", "Etc/GMT-14", "Etc/GMT-2", "Etc/GMT-3", "Etc/GMT-4", "Etc/GMT-5", "Etc/GMT-6", "Etc/GMT-7", "Etc/GMT-8", "Etc/GMT-9", "Etc/GMT0", "Etc/Greenwich", "Etc/UCT", "Etc/Universal", "Etc/UTC", "Etc/Zulu", "Europe/Amsterdam", "Europe/Andorra", "Europe/Astrakhan", "Europe/Athens", "Europe/Belfast", "Europe/Belgrade", "Europe/Berlin", "Europe/Bratislava", "Europe/Brussels", "Europe/Bucharest", "Europe/Budapest", "Europe/Busingen", "Europe/Chisinau", "Europe/Copenhagen", "Europe/Dublin", "Europe/Gibraltar", "Europe/Guernsey", "Europe/Helsinki", "Europe/Isle_of_Man", "Europe/Istanbul", "Europe/Jersey", "Europe/Kaliningrad", "Europe/Kiev", "Europe/Kirov", "Europe/Kyiv", "Europe/Lisbon", "Europe/Ljubljana", "Europe/London", "Europe/Luxembourg", "Europe/Madrid", "Europe/Malta", "Europe/Mariehamn", "Europe/Minsk", "Europe/Monaco", "Europe/Moscow", "Europe/Nicosia", "Europe/Oslo", "Europe/Paris", "Europe/Podgorica", "Europe/Prague", "Europe/Riga", "Europe/Rome", "Europe/Samara", "Europe/San_Marino", "Europe/Sarajevo", "Europe/Saratov", "Europe/Simferopol", "Europe/Skopje", "Europe/Sofia", "Europe/Stockholm", "Europe/Tallinn", "Europe/Tirane", "Europe/Tiraspol", "Europe/Ulyanovsk", "Europe/Uzhgorod", "Europe/Vaduz", "Europe/Vatican", "Europe/Vienna", "Europe/Vilnius", "Europe/Volgograd", "Europe/Warsaw", "Europe/Zagreb", "Europe/Zaporozhye", "Europe/Zurich", "Factory", "GB", "GB-Eire", "GMT", "GMT+0", "GMT-0", "GMT0", "Greenwich", "Hongkong", "HST", "Iceland", "Indian/Antananarivo", "Indian/Chagos", "Indian/Christmas", "Indian/Cocos", "Indian/Comoro", "Indian/Kerguelen", "Indian/Mahe", "Indian/Maldives", "Indian/Mauritius", "Indian/Mayotte", "Indian/Reunion", "Iran", "Israel", "Jamaica", "Japan", "Kwajalein", "Libya", "MET", "Mexico/BajaNorte", "Mexico/BajaSur", "Mexico/General", "MST", "MST7MDT", "Navajo", "NZ", "NZ-CHAT", "Pacific/Apia", "Pacific/Auckland", "Pacific/Bougainville", "Pacific/Chatham", "Pacific/Chuuk", "Pacific/Easter", "Pacific/Efate", "Pacific/Enderbury", "Pacific/Fakaofo", "Pacific/Fiji", "Pacific/Funafuti", "Pacific/Galapagos", "Pacific/Gambier", "Pacific/Guadalcanal", "Pacific/Guam", "Pacific/Honolulu", "Pacific/Johnston", "Pacific/Kanton", "Pacific/Kiritimati", "Pacific/Kosrae", "Pacific/Kwajalein", "Pacific/Majuro", "Pacific/Marquesas", "Pacific/Midway", "Pacific/Nauru", "Pacific/Niue", "Pacific/Norfolk", "Pacific/Noumea", "Pacific/Pago_Pago", "Pacific/Palau", "Pacific/Pitcairn", "Pacific/Pohnpei", "Pacific/Ponape", "Pacific/Port_Moresby", "Pacific/Rarotonga", "Pacific/Saipan", "Pacific/Samoa", "Pacific/Tahiti", "Pacific/Tarawa", "Pacific/Tongatapu", "Pacific/Truk", "Pacific/Wake", "Pacific/Wallis", "Pacific/Yap", "Poland", "Portugal", "PRC", "PST8PDT", "ROC", "ROK", "Singapore", "Turkey", "UCT", "Universal", "US/Alaska", "US/Aleutian", "US/Arizona", "US/Central", "US/East-Indiana", "US/Eastern", "US/Hawaii", "US/Indiana-Starke", "US/Michigan", "US/Mountain", "US/Pacific", "US/Samoa", "UTC", "W-SU", "WET", "Zulu"]>;
3833
+
3834
+ export declare type TimezoneType = z.infer<typeof timezoneEnumSchema>;
3835
+
3836
+ export declare type TransactionCategory = z.infer<typeof transactionCategoryEnumSchema>;
3837
+
3838
+ export declare const transactionCategoryEnumSchema: z.ZodEnum<["issuance", "change", "renewal", "cancellation", "reinstatement", "reversal", "aggregate"]>;
3839
+
3840
+ export declare type TransactionSnapshotResponse = z.infer<typeof transactionSnapshotResponseSchema>;
3841
+
3842
+ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
3843
+ locator: z.ZodString;
3844
+ issuedTime: z.ZodString;
3845
+ effectiveTime: z.ZodString;
3846
+ preferences: z.ZodOptional<z.ZodObject<{
3847
+ billingPreferences: z.ZodObject<{
3848
+ billingPlanName: z.ZodOptional<z.ZodString>;
3849
+ billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
3850
+ }, "strip", z.ZodTypeAny, {
3851
+ billingPlanName?: string | undefined;
3852
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3853
+ }, {
3854
+ billingPlanName?: string | undefined;
3855
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3856
+ }>;
3857
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
3858
+ installmentPlanName: z.ZodOptional<z.ZodString>;
3859
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
3860
+ anchorTime: z.ZodOptional<z.ZodString>;
3861
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
3862
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
3863
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
3864
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
3865
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
3866
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
3867
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
3868
+ weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
3869
+ }, "strip", z.ZodTypeAny, {
3870
+ dayOfMonth?: number | undefined;
3871
+ anchorTime?: string | undefined;
3872
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3873
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3874
+ installmentPlanName?: string | undefined;
3875
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3876
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3877
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3878
+ dueLeadDays?: number | undefined;
3879
+ generateLeadDays?: number | undefined;
3880
+ maxInstallmentsPerTerm?: number | undefined;
3881
+ }, {
3882
+ dayOfMonth?: number | undefined;
3883
+ anchorTime?: string | undefined;
3884
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3885
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3886
+ installmentPlanName?: string | undefined;
3887
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3888
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3889
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3890
+ dueLeadDays?: number | undefined;
3891
+ generateLeadDays?: number | undefined;
3892
+ maxInstallmentsPerTerm?: number | undefined;
3893
+ }>>;
3894
+ }, "strip", z.ZodTypeAny, {
3895
+ billingPreferences: {
3896
+ billingPlanName?: string | undefined;
3897
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3898
+ };
3899
+ installmentPreferences?: {
3900
+ dayOfMonth?: number | undefined;
3901
+ anchorTime?: string | undefined;
3902
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3903
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3904
+ installmentPlanName?: string | undefined;
3905
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3906
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3907
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3908
+ dueLeadDays?: number | undefined;
3909
+ generateLeadDays?: number | undefined;
3910
+ maxInstallmentsPerTerm?: number | undefined;
3911
+ } | undefined;
3912
+ }, {
3913
+ billingPreferences: {
3914
+ billingPlanName?: string | undefined;
3915
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3916
+ };
3917
+ installmentPreferences?: {
3918
+ dayOfMonth?: number | undefined;
3919
+ anchorTime?: string | undefined;
3920
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3921
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3922
+ installmentPlanName?: string | undefined;
3923
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3924
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3925
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3926
+ dueLeadDays?: number | undefined;
3927
+ generateLeadDays?: number | undefined;
3928
+ maxInstallmentsPerTerm?: number | undefined;
3929
+ } | undefined;
3930
+ }>>;
3931
+ segment: z.ZodRecord<z.ZodString, z.ZodAny>;
3932
+ transactionCategory: z.ZodEnum<["issuance", "change", "renewal", "cancellation", "reinstatement", "reversal", "aggregate"]>;
3933
+ transactionType: z.ZodString;
3934
+ }, "strip", z.ZodTypeAny, {
3935
+ locator: string;
3936
+ issuedTime: string;
3937
+ effectiveTime: string;
3938
+ segment: Record<string, any>;
3939
+ transactionCategory: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
3940
+ transactionType: string;
3941
+ preferences?: {
3942
+ billingPreferences: {
3943
+ billingPlanName?: string | undefined;
3944
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3945
+ };
3946
+ installmentPreferences?: {
3947
+ dayOfMonth?: number | undefined;
3948
+ anchorTime?: string | undefined;
3949
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3950
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3951
+ installmentPlanName?: string | undefined;
3952
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3953
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3954
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3955
+ dueLeadDays?: number | undefined;
3956
+ generateLeadDays?: number | undefined;
3957
+ maxInstallmentsPerTerm?: number | undefined;
3958
+ } | undefined;
3959
+ } | undefined;
3960
+ }, {
3961
+ locator: string;
3962
+ issuedTime: string;
3963
+ effectiveTime: string;
3964
+ segment: Record<string, any>;
3965
+ transactionCategory: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
3966
+ transactionType: string;
3967
+ preferences?: {
3968
+ billingPreferences: {
3969
+ billingPlanName?: string | undefined;
3970
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
3971
+ };
3972
+ installmentPreferences?: {
3973
+ dayOfMonth?: number | undefined;
3974
+ anchorTime?: string | undefined;
3975
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3976
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3977
+ installmentPlanName?: string | undefined;
3978
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3979
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3980
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3981
+ dueLeadDays?: number | undefined;
3982
+ generateLeadDays?: number | undefined;
3983
+ maxInstallmentsPerTerm?: number | undefined;
3984
+ } | undefined;
3985
+ } | undefined;
3986
+ }>;
3987
+
3194
3988
  export declare type ValidationItem = z.infer<typeof validationItemSchema>;
3195
3989
 
3196
3990
  declare const validationItemSchema: z.ZodObject<{
@@ -3240,4 +4034,8 @@ export declare const validationResultSchema: z.ZodObject<{
3240
4034
  success?: boolean | undefined;
3241
4035
  }>;
3242
4036
 
4037
+ export declare type WeekOfMonth = z.infer<typeof weekOfMonthEnumSchema>;
4038
+
4039
+ export declare const weekOfMonthEnumSchema: z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>;
4040
+
3243
4041
  export { }