@socotra/ec-react-schemas 2.5.1-next.7 → 2.5.1-next.9

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
@@ -397,15 +397,45 @@ export declare type AddChangeInstructionResponse = z.infer<typeof addChangeInstr
397
397
  export declare const addChangeInstructionResponseSchema: z.ZodObject<{
398
398
  locator: z.ZodString;
399
399
  action: z.ZodLiteral<"add">;
400
- elements: z.ZodArray<z.ZodType<ElementCreateRequest, z.ZodTypeDef, ElementCreateRequest>, "many">;
400
+ elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
401
+ locator: z.ZodString;
402
+ removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
403
+ removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
404
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
405
+ setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
406
+ }, "strip", z.ZodTypeAny, {
407
+ locator: string;
408
+ removeCoverageTerms?: Record<string, unknown> | undefined;
409
+ removeData?: Record<string, unknown> | undefined;
410
+ setCoverageTerms?: Record<string, unknown> | undefined;
411
+ setData?: Record<string, unknown> | undefined;
412
+ }, {
413
+ locator: string;
414
+ removeCoverageTerms?: Record<string, unknown> | undefined;
415
+ removeData?: Record<string, unknown> | undefined;
416
+ setCoverageTerms?: Record<string, unknown> | undefined;
417
+ setData?: Record<string, unknown> | undefined;
418
+ }>, "many">>;
401
419
  }, "strip", z.ZodTypeAny, {
402
420
  locator: string;
403
- elements: ElementCreateRequest[];
404
421
  action: "add";
422
+ elements?: {
423
+ locator: string;
424
+ removeCoverageTerms?: Record<string, unknown> | undefined;
425
+ removeData?: Record<string, unknown> | undefined;
426
+ setCoverageTerms?: Record<string, unknown> | undefined;
427
+ setData?: Record<string, unknown> | undefined;
428
+ }[] | undefined;
405
429
  }, {
406
430
  locator: string;
407
- elements: ElementCreateRequest[];
408
431
  action: "add";
432
+ elements?: {
433
+ locator: string;
434
+ removeCoverageTerms?: Record<string, unknown> | undefined;
435
+ removeData?: Record<string, unknown> | undefined;
436
+ setCoverageTerms?: Record<string, unknown> | undefined;
437
+ setData?: Record<string, unknown> | undefined;
438
+ }[] | undefined;
409
439
  }>;
410
440
 
411
441
  export declare type AdvanceLapseTo = z.infer<typeof advanceLapseToEnumSchema>;
@@ -3634,29 +3664,29 @@ export declare const modifyChangeInstructionCreateRequestSchema: z.ZodObject<{
3634
3664
  export declare type ModifyChangeInstructionResponse = z.infer<typeof modifyChangeInstructionResponseSchema>;
3635
3665
 
3636
3666
  export declare const modifyChangeInstructionResponseSchema: z.ZodObject<{
3637
- locator: z.ZodString;
3638
3667
  staticLocator: z.ZodString;
3639
3668
  action: z.ZodLiteral<"modify">;
3640
- removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodAny>;
3641
- removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
3642
- setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
3643
- setData: z.ZodRecord<z.ZodString, z.ZodAny>;
3669
+ locator: z.ZodString;
3670
+ removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3671
+ removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3672
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3673
+ setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3644
3674
  }, "strip", z.ZodTypeAny, {
3645
3675
  locator: string;
3646
- removeCoverageTerms: Record<string, any>;
3647
- removeData: Record<string, any>;
3648
- setCoverageTerms: Record<string, string>;
3649
- setData: Record<string, any>;
3650
3676
  staticLocator: string;
3651
3677
  action: "modify";
3678
+ removeCoverageTerms?: Record<string, any> | undefined;
3679
+ removeData?: Record<string, any> | undefined;
3680
+ setCoverageTerms?: Record<string, string> | undefined;
3681
+ setData?: Record<string, any> | undefined;
3652
3682
  }, {
3653
3683
  locator: string;
3654
- removeCoverageTerms: Record<string, any>;
3655
- removeData: Record<string, any>;
3656
- setCoverageTerms: Record<string, string>;
3657
- setData: Record<string, any>;
3658
3684
  staticLocator: string;
3659
3685
  action: "modify";
3686
+ removeCoverageTerms?: Record<string, any> | undefined;
3687
+ removeData?: Record<string, any> | undefined;
3688
+ setCoverageTerms?: Record<string, string> | undefined;
3689
+ setData?: Record<string, any> | undefined;
3660
3690
  }>;
3661
3691
 
3662
3692
  export declare type OptionalQuantifiers = z.infer<typeof optionalQuantifiersSchema>;
@@ -3700,115 +3730,13 @@ export declare const paramsChangeInstructionResponseSchema: z.ZodObject<{
3700
3730
  billingModeChange: z.ZodOptional<z.ZodBoolean>;
3701
3731
  inheritSettings: z.ZodOptional<z.ZodBoolean>;
3702
3732
  newPolicyEndTime: z.ZodOptional<z.ZodString>;
3703
- preferences: z.ZodOptional<z.ZodObject<{
3704
- billingPreferences: z.ZodOptional<z.ZodObject<{
3705
- billingPlanName: z.ZodOptional<z.ZodString>;
3706
- billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
3707
- }, "strip", z.ZodTypeAny, {
3708
- billingPlanName?: string | undefined;
3709
- billingLevel?: "account" | "inherit" | "policy" | undefined;
3710
- }, {
3711
- billingPlanName?: string | undefined;
3712
- billingLevel?: "account" | "inherit" | "policy" | undefined;
3713
- }>>;
3714
- installmentPreferences: z.ZodOptional<z.ZodObject<{
3715
- installmentPlanName: z.ZodOptional<z.ZodString>;
3716
- anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
3717
- anchorTime: z.ZodOptional<z.ZodString>;
3718
- anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
3719
- cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
3720
- dayOfMonth: z.ZodOptional<z.ZodNumber>;
3721
- dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
3722
- dueLeadDays: z.ZodOptional<z.ZodNumber>;
3723
- generateLeadDays: z.ZodOptional<z.ZodNumber>;
3724
- maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
3725
- weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
3726
- }, "strip", z.ZodTypeAny, {
3727
- dayOfMonth?: number | undefined;
3728
- anchorTime?: string | undefined;
3729
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3730
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3731
- installmentPlanName?: string | undefined;
3732
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3733
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3734
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3735
- dueLeadDays?: number | undefined;
3736
- generateLeadDays?: number | undefined;
3737
- maxInstallmentsPerTerm?: number | undefined;
3738
- }, {
3739
- dayOfMonth?: number | undefined;
3740
- anchorTime?: string | undefined;
3741
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3742
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3743
- installmentPlanName?: string | undefined;
3744
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3745
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3746
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3747
- dueLeadDays?: number | undefined;
3748
- generateLeadDays?: number | undefined;
3749
- maxInstallmentsPerTerm?: number | undefined;
3750
- }>>;
3751
- }, "strip", z.ZodTypeAny, {
3752
- billingPreferences?: {
3753
- billingPlanName?: string | undefined;
3754
- billingLevel?: "account" | "inherit" | "policy" | undefined;
3755
- } | undefined;
3756
- installmentPreferences?: {
3757
- dayOfMonth?: number | undefined;
3758
- anchorTime?: string | undefined;
3759
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3760
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3761
- installmentPlanName?: string | undefined;
3762
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3763
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3764
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3765
- dueLeadDays?: number | undefined;
3766
- generateLeadDays?: number | undefined;
3767
- maxInstallmentsPerTerm?: number | undefined;
3768
- } | undefined;
3769
- }, {
3770
- billingPreferences?: {
3771
- billingPlanName?: string | undefined;
3772
- billingLevel?: "account" | "inherit" | "policy" | undefined;
3773
- } | undefined;
3774
- installmentPreferences?: {
3775
- dayOfMonth?: number | undefined;
3776
- anchorTime?: string | undefined;
3777
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3778
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3779
- installmentPlanName?: string | undefined;
3780
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3781
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3782
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3783
- dueLeadDays?: number | undefined;
3784
- generateLeadDays?: number | undefined;
3785
- maxInstallmentsPerTerm?: number | undefined;
3786
- } | undefined;
3787
- }>>;
3733
+ preferences: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
3788
3734
  triggerBillingChange: z.ZodOptional<z.ZodBoolean>;
3789
3735
  }, "strip", z.ZodTypeAny, {
3790
3736
  locator: string;
3791
3737
  effectiveTime: string;
3792
3738
  action: "params";
3793
- preferences?: {
3794
- billingPreferences?: {
3795
- billingPlanName?: string | undefined;
3796
- billingLevel?: "account" | "inherit" | "policy" | undefined;
3797
- } | undefined;
3798
- installmentPreferences?: {
3799
- dayOfMonth?: number | undefined;
3800
- anchorTime?: string | undefined;
3801
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3802
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3803
- installmentPlanName?: string | undefined;
3804
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3805
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3806
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3807
- dueLeadDays?: number | undefined;
3808
- generateLeadDays?: number | undefined;
3809
- maxInstallmentsPerTerm?: number | undefined;
3810
- } | undefined;
3811
- } | undefined;
3739
+ preferences?: {} | undefined;
3812
3740
  billingModeChange?: boolean | undefined;
3813
3741
  inheritSettings?: boolean | undefined;
3814
3742
  newPolicyEndTime?: string | undefined;
@@ -3817,25 +3745,7 @@ export declare const paramsChangeInstructionResponseSchema: z.ZodObject<{
3817
3745
  locator: string;
3818
3746
  effectiveTime: string;
3819
3747
  action: "params";
3820
- preferences?: {
3821
- billingPreferences?: {
3822
- billingPlanName?: string | undefined;
3823
- billingLevel?: "account" | "inherit" | "policy" | undefined;
3824
- } | undefined;
3825
- installmentPreferences?: {
3826
- dayOfMonth?: number | undefined;
3827
- anchorTime?: string | undefined;
3828
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
3829
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
3830
- installmentPlanName?: string | undefined;
3831
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
3832
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
3833
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
3834
- dueLeadDays?: number | undefined;
3835
- generateLeadDays?: number | undefined;
3836
- maxInstallmentsPerTerm?: number | undefined;
3837
- } | undefined;
3838
- } | undefined;
3748
+ preferences?: {} | undefined;
3839
3749
  billingModeChange?: boolean | undefined;
3840
3750
  inheritSettings?: boolean | undefined;
3841
3751
  newPolicyEndTime?: string | undefined;
@@ -4631,202 +4541,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
4631
4541
  effectiveTime: z.ZodString;
4632
4542
  transactionCategory: z.ZodEnum<["issuance", "change", "renewal", "cancellation", "reinstatement", "reversal", "aggregate"]>;
4633
4543
  transactionType: z.ZodString;
4634
- changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
4635
- locator: z.ZodString;
4636
- action: z.ZodLiteral<"add">;
4637
- elements: z.ZodArray<z.ZodType<ElementCreateRequest, z.ZodTypeDef, ElementCreateRequest>, "many">;
4638
- }, "strip", z.ZodTypeAny, {
4639
- locator: string;
4640
- elements: ElementCreateRequest[];
4641
- action: "add";
4642
- }, {
4643
- locator: string;
4644
- elements: ElementCreateRequest[];
4645
- action: "add";
4646
- }>, z.ZodObject<{
4647
- locator: z.ZodString;
4648
- staticLocator: z.ZodString;
4649
- action: z.ZodLiteral<"modify">;
4650
- removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodAny>;
4651
- removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
4652
- setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
4653
- setData: z.ZodRecord<z.ZodString, z.ZodAny>;
4654
- }, "strip", z.ZodTypeAny, {
4655
- locator: string;
4656
- removeCoverageTerms: Record<string, any>;
4657
- removeData: Record<string, any>;
4658
- setCoverageTerms: Record<string, string>;
4659
- setData: Record<string, any>;
4660
- staticLocator: string;
4661
- action: "modify";
4662
- }, {
4663
- locator: string;
4664
- removeCoverageTerms: Record<string, any>;
4665
- removeData: Record<string, any>;
4666
- setCoverageTerms: Record<string, string>;
4667
- setData: Record<string, any>;
4668
- staticLocator: string;
4669
- action: "modify";
4670
- }>, z.ZodObject<{
4671
- locator: z.ZodString;
4672
- action: z.ZodLiteral<"params">;
4673
- effectiveTime: z.ZodString;
4674
- billingModeChange: z.ZodOptional<z.ZodBoolean>;
4675
- inheritSettings: z.ZodOptional<z.ZodBoolean>;
4676
- newPolicyEndTime: z.ZodOptional<z.ZodString>;
4677
- preferences: z.ZodOptional<z.ZodObject<{
4678
- billingPreferences: z.ZodOptional<z.ZodObject<{
4679
- billingPlanName: z.ZodOptional<z.ZodString>;
4680
- billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
4681
- }, "strip", z.ZodTypeAny, {
4682
- billingPlanName?: string | undefined;
4683
- billingLevel?: "account" | "inherit" | "policy" | undefined;
4684
- }, {
4685
- billingPlanName?: string | undefined;
4686
- billingLevel?: "account" | "inherit" | "policy" | undefined;
4687
- }>>;
4688
- installmentPreferences: z.ZodOptional<z.ZodObject<{
4689
- installmentPlanName: z.ZodOptional<z.ZodString>;
4690
- anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
4691
- anchorTime: z.ZodOptional<z.ZodString>;
4692
- anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
4693
- cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
4694
- dayOfMonth: z.ZodOptional<z.ZodNumber>;
4695
- dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
4696
- dueLeadDays: z.ZodOptional<z.ZodNumber>;
4697
- generateLeadDays: z.ZodOptional<z.ZodNumber>;
4698
- maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
4699
- weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
4700
- }, "strip", z.ZodTypeAny, {
4701
- dayOfMonth?: number | undefined;
4702
- anchorTime?: string | undefined;
4703
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
4704
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
4705
- installmentPlanName?: string | undefined;
4706
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
4707
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
4708
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
4709
- dueLeadDays?: number | undefined;
4710
- generateLeadDays?: number | undefined;
4711
- maxInstallmentsPerTerm?: number | undefined;
4712
- }, {
4713
- dayOfMonth?: number | undefined;
4714
- anchorTime?: string | undefined;
4715
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
4716
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
4717
- installmentPlanName?: string | undefined;
4718
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
4719
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
4720
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
4721
- dueLeadDays?: number | undefined;
4722
- generateLeadDays?: number | undefined;
4723
- maxInstallmentsPerTerm?: number | undefined;
4724
- }>>;
4725
- }, "strip", z.ZodTypeAny, {
4726
- billingPreferences?: {
4727
- billingPlanName?: string | undefined;
4728
- billingLevel?: "account" | "inherit" | "policy" | undefined;
4729
- } | undefined;
4730
- installmentPreferences?: {
4731
- dayOfMonth?: number | undefined;
4732
- anchorTime?: string | undefined;
4733
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
4734
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
4735
- installmentPlanName?: string | undefined;
4736
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
4737
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
4738
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
4739
- dueLeadDays?: number | undefined;
4740
- generateLeadDays?: number | undefined;
4741
- maxInstallmentsPerTerm?: number | undefined;
4742
- } | undefined;
4743
- }, {
4744
- billingPreferences?: {
4745
- billingPlanName?: string | undefined;
4746
- billingLevel?: "account" | "inherit" | "policy" | undefined;
4747
- } | undefined;
4748
- installmentPreferences?: {
4749
- dayOfMonth?: number | undefined;
4750
- anchorTime?: string | undefined;
4751
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
4752
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
4753
- installmentPlanName?: string | undefined;
4754
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
4755
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
4756
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
4757
- dueLeadDays?: number | undefined;
4758
- generateLeadDays?: number | undefined;
4759
- maxInstallmentsPerTerm?: number | undefined;
4760
- } | undefined;
4761
- }>>;
4762
- triggerBillingChange: z.ZodOptional<z.ZodBoolean>;
4763
- }, "strip", z.ZodTypeAny, {
4764
- locator: string;
4765
- effectiveTime: string;
4766
- action: "params";
4767
- preferences?: {
4768
- billingPreferences?: {
4769
- billingPlanName?: string | undefined;
4770
- billingLevel?: "account" | "inherit" | "policy" | undefined;
4771
- } | undefined;
4772
- installmentPreferences?: {
4773
- dayOfMonth?: number | undefined;
4774
- anchorTime?: string | undefined;
4775
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
4776
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
4777
- installmentPlanName?: string | undefined;
4778
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
4779
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
4780
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
4781
- dueLeadDays?: number | undefined;
4782
- generateLeadDays?: number | undefined;
4783
- maxInstallmentsPerTerm?: number | undefined;
4784
- } | undefined;
4785
- } | undefined;
4786
- billingModeChange?: boolean | undefined;
4787
- inheritSettings?: boolean | undefined;
4788
- newPolicyEndTime?: string | undefined;
4789
- triggerBillingChange?: boolean | undefined;
4790
- }, {
4791
- locator: string;
4792
- effectiveTime: string;
4793
- action: "params";
4794
- preferences?: {
4795
- billingPreferences?: {
4796
- billingPlanName?: string | undefined;
4797
- billingLevel?: "account" | "inherit" | "policy" | undefined;
4798
- } | undefined;
4799
- installmentPreferences?: {
4800
- dayOfMonth?: number | undefined;
4801
- anchorTime?: string | undefined;
4802
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
4803
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
4804
- installmentPlanName?: string | undefined;
4805
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
4806
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
4807
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
4808
- dueLeadDays?: number | undefined;
4809
- generateLeadDays?: number | undefined;
4810
- maxInstallmentsPerTerm?: number | undefined;
4811
- } | undefined;
4812
- } | undefined;
4813
- billingModeChange?: boolean | undefined;
4814
- inheritSettings?: boolean | undefined;
4815
- newPolicyEndTime?: string | undefined;
4816
- triggerBillingChange?: boolean | undefined;
4817
- }>, z.ZodObject<{
4818
- locator: z.ZodString;
4819
- action: z.ZodLiteral<"delete">;
4820
- staticElementLocators: z.ZodArray<z.ZodString, "many">;
4821
- }, "strip", z.ZodTypeAny, {
4822
- locator: string;
4823
- action: "delete";
4824
- staticElementLocators: string[];
4825
- }, {
4826
- locator: string;
4827
- action: "delete";
4828
- staticElementLocators: string[];
4829
- }>]>, "many">>;
4544
+ changeInstructions: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
4830
4545
  aggregateTransactionLocator: z.ZodOptional<z.ZodString>;
4831
4546
  baseTransactionLocator: z.ZodOptional<z.ZodString>;
4832
4547
  issuedTime: z.ZodOptional<z.ZodString>;
@@ -4958,202 +4673,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
4958
4673
  effectiveTime: z.ZodString;
4959
4674
  transactionCategory: z.ZodEnum<["issuance", "change", "renewal", "cancellation", "reinstatement", "reversal", "aggregate"]>;
4960
4675
  transactionType: z.ZodString;
4961
- changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
4962
- locator: z.ZodString;
4963
- action: z.ZodLiteral<"add">;
4964
- elements: z.ZodArray<z.ZodType<ElementCreateRequest, z.ZodTypeDef, ElementCreateRequest>, "many">;
4965
- }, "strip", z.ZodTypeAny, {
4966
- locator: string;
4967
- elements: ElementCreateRequest[];
4968
- action: "add";
4969
- }, {
4970
- locator: string;
4971
- elements: ElementCreateRequest[];
4972
- action: "add";
4973
- }>, z.ZodObject<{
4974
- locator: z.ZodString;
4975
- staticLocator: z.ZodString;
4976
- action: z.ZodLiteral<"modify">;
4977
- removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodAny>;
4978
- removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
4979
- setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
4980
- setData: z.ZodRecord<z.ZodString, z.ZodAny>;
4981
- }, "strip", z.ZodTypeAny, {
4982
- locator: string;
4983
- removeCoverageTerms: Record<string, any>;
4984
- removeData: Record<string, any>;
4985
- setCoverageTerms: Record<string, string>;
4986
- setData: Record<string, any>;
4987
- staticLocator: string;
4988
- action: "modify";
4989
- }, {
4990
- locator: string;
4991
- removeCoverageTerms: Record<string, any>;
4992
- removeData: Record<string, any>;
4993
- setCoverageTerms: Record<string, string>;
4994
- setData: Record<string, any>;
4995
- staticLocator: string;
4996
- action: "modify";
4997
- }>, z.ZodObject<{
4998
- locator: z.ZodString;
4999
- action: z.ZodLiteral<"params">;
5000
- effectiveTime: z.ZodString;
5001
- billingModeChange: z.ZodOptional<z.ZodBoolean>;
5002
- inheritSettings: z.ZodOptional<z.ZodBoolean>;
5003
- newPolicyEndTime: z.ZodOptional<z.ZodString>;
5004
- preferences: z.ZodOptional<z.ZodObject<{
5005
- billingPreferences: z.ZodOptional<z.ZodObject<{
5006
- billingPlanName: z.ZodOptional<z.ZodString>;
5007
- billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
5008
- }, "strip", z.ZodTypeAny, {
5009
- billingPlanName?: string | undefined;
5010
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5011
- }, {
5012
- billingPlanName?: string | undefined;
5013
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5014
- }>>;
5015
- installmentPreferences: z.ZodOptional<z.ZodObject<{
5016
- installmentPlanName: z.ZodOptional<z.ZodString>;
5017
- anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
5018
- anchorTime: z.ZodOptional<z.ZodString>;
5019
- anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
5020
- cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
5021
- dayOfMonth: z.ZodOptional<z.ZodNumber>;
5022
- dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
5023
- dueLeadDays: z.ZodOptional<z.ZodNumber>;
5024
- generateLeadDays: z.ZodOptional<z.ZodNumber>;
5025
- maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
5026
- weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
5027
- }, "strip", z.ZodTypeAny, {
5028
- dayOfMonth?: number | undefined;
5029
- anchorTime?: string | undefined;
5030
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5031
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5032
- installmentPlanName?: string | undefined;
5033
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5034
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5035
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5036
- dueLeadDays?: number | undefined;
5037
- generateLeadDays?: number | undefined;
5038
- maxInstallmentsPerTerm?: number | undefined;
5039
- }, {
5040
- dayOfMonth?: number | undefined;
5041
- anchorTime?: string | undefined;
5042
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5043
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5044
- installmentPlanName?: string | undefined;
5045
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5046
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5047
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5048
- dueLeadDays?: number | undefined;
5049
- generateLeadDays?: number | undefined;
5050
- maxInstallmentsPerTerm?: number | undefined;
5051
- }>>;
5052
- }, "strip", z.ZodTypeAny, {
5053
- billingPreferences?: {
5054
- billingPlanName?: string | undefined;
5055
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5056
- } | undefined;
5057
- installmentPreferences?: {
5058
- dayOfMonth?: number | undefined;
5059
- anchorTime?: string | undefined;
5060
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5061
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5062
- installmentPlanName?: string | undefined;
5063
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5064
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5065
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5066
- dueLeadDays?: number | undefined;
5067
- generateLeadDays?: number | undefined;
5068
- maxInstallmentsPerTerm?: number | undefined;
5069
- } | undefined;
5070
- }, {
5071
- billingPreferences?: {
5072
- billingPlanName?: string | undefined;
5073
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5074
- } | undefined;
5075
- installmentPreferences?: {
5076
- dayOfMonth?: number | undefined;
5077
- anchorTime?: string | undefined;
5078
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5079
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5080
- installmentPlanName?: string | undefined;
5081
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5082
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5083
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5084
- dueLeadDays?: number | undefined;
5085
- generateLeadDays?: number | undefined;
5086
- maxInstallmentsPerTerm?: number | undefined;
5087
- } | undefined;
5088
- }>>;
5089
- triggerBillingChange: z.ZodOptional<z.ZodBoolean>;
5090
- }, "strip", z.ZodTypeAny, {
5091
- locator: string;
5092
- effectiveTime: string;
5093
- action: "params";
5094
- preferences?: {
5095
- billingPreferences?: {
5096
- billingPlanName?: string | undefined;
5097
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5098
- } | undefined;
5099
- installmentPreferences?: {
5100
- dayOfMonth?: number | undefined;
5101
- anchorTime?: string | undefined;
5102
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5103
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5104
- installmentPlanName?: string | undefined;
5105
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5106
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5107
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5108
- dueLeadDays?: number | undefined;
5109
- generateLeadDays?: number | undefined;
5110
- maxInstallmentsPerTerm?: number | undefined;
5111
- } | undefined;
5112
- } | undefined;
5113
- billingModeChange?: boolean | undefined;
5114
- inheritSettings?: boolean | undefined;
5115
- newPolicyEndTime?: string | undefined;
5116
- triggerBillingChange?: boolean | undefined;
5117
- }, {
5118
- locator: string;
5119
- effectiveTime: string;
5120
- action: "params";
5121
- preferences?: {
5122
- billingPreferences?: {
5123
- billingPlanName?: string | undefined;
5124
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5125
- } | undefined;
5126
- installmentPreferences?: {
5127
- dayOfMonth?: number | undefined;
5128
- anchorTime?: string | undefined;
5129
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5130
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5131
- installmentPlanName?: string | undefined;
5132
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5133
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5134
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5135
- dueLeadDays?: number | undefined;
5136
- generateLeadDays?: number | undefined;
5137
- maxInstallmentsPerTerm?: number | undefined;
5138
- } | undefined;
5139
- } | undefined;
5140
- billingModeChange?: boolean | undefined;
5141
- inheritSettings?: boolean | undefined;
5142
- newPolicyEndTime?: string | undefined;
5143
- triggerBillingChange?: boolean | undefined;
5144
- }>, z.ZodObject<{
5145
- locator: z.ZodString;
5146
- action: z.ZodLiteral<"delete">;
5147
- staticElementLocators: z.ZodArray<z.ZodString, "many">;
5148
- }, "strip", z.ZodTypeAny, {
5149
- locator: string;
5150
- action: "delete";
5151
- staticElementLocators: string[];
5152
- }, {
5153
- locator: string;
5154
- action: "delete";
5155
- staticElementLocators: string[];
5156
- }>]>, "many">>;
4676
+ changeInstructions: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
5157
4677
  aggregateTransactionLocator: z.ZodOptional<z.ZodString>;
5158
4678
  baseTransactionLocator: z.ZodOptional<z.ZodString>;
5159
4679
  issuedTime: z.ZodOptional<z.ZodString>;
@@ -5314,50 +4834,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
5314
4834
  success?: boolean | undefined;
5315
4835
  } | undefined;
5316
4836
  billingTrigger?: "accept" | "issue" | undefined;
5317
- changeInstructions?: ({
5318
- locator: string;
5319
- elements: ElementCreateRequest[];
5320
- action: "add";
5321
- } | {
5322
- locator: string;
5323
- removeCoverageTerms: Record<string, any>;
5324
- removeData: Record<string, any>;
5325
- setCoverageTerms: Record<string, string>;
5326
- setData: Record<string, any>;
5327
- staticLocator: string;
5328
- action: "modify";
5329
- } | {
5330
- locator: string;
5331
- effectiveTime: string;
5332
- action: "params";
5333
- preferences?: {
5334
- billingPreferences?: {
5335
- billingPlanName?: string | undefined;
5336
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5337
- } | undefined;
5338
- installmentPreferences?: {
5339
- dayOfMonth?: number | undefined;
5340
- anchorTime?: string | undefined;
5341
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5342
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5343
- installmentPlanName?: string | undefined;
5344
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5345
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5346
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5347
- dueLeadDays?: number | undefined;
5348
- generateLeadDays?: number | undefined;
5349
- maxInstallmentsPerTerm?: number | undefined;
5350
- } | undefined;
5351
- } | undefined;
5352
- billingModeChange?: boolean | undefined;
5353
- inheritSettings?: boolean | undefined;
5354
- newPolicyEndTime?: string | undefined;
5355
- triggerBillingChange?: boolean | undefined;
5356
- } | {
5357
- locator: string;
5358
- action: "delete";
5359
- staticElementLocators: string[];
5360
- })[] | undefined;
4837
+ changeInstructions?: any[] | undefined;
5361
4838
  aggregateTransactionLocator?: string | undefined;
5362
4839
  baseTransactionLocator?: string | undefined;
5363
4840
  }, {
@@ -5400,50 +4877,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
5400
4877
  success?: boolean | undefined;
5401
4878
  } | undefined;
5402
4879
  billingTrigger?: "accept" | "issue" | undefined;
5403
- changeInstructions?: ({
5404
- locator: string;
5405
- elements: ElementCreateRequest[];
5406
- action: "add";
5407
- } | {
5408
- locator: string;
5409
- removeCoverageTerms: Record<string, any>;
5410
- removeData: Record<string, any>;
5411
- setCoverageTerms: Record<string, string>;
5412
- setData: Record<string, any>;
5413
- staticLocator: string;
5414
- action: "modify";
5415
- } | {
5416
- locator: string;
5417
- effectiveTime: string;
5418
- action: "params";
5419
- preferences?: {
5420
- billingPreferences?: {
5421
- billingPlanName?: string | undefined;
5422
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5423
- } | undefined;
5424
- installmentPreferences?: {
5425
- dayOfMonth?: number | undefined;
5426
- anchorTime?: string | undefined;
5427
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5428
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5429
- installmentPlanName?: string | undefined;
5430
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5431
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5432
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5433
- dueLeadDays?: number | undefined;
5434
- generateLeadDays?: number | undefined;
5435
- maxInstallmentsPerTerm?: number | undefined;
5436
- } | undefined;
5437
- } | undefined;
5438
- billingModeChange?: boolean | undefined;
5439
- inheritSettings?: boolean | undefined;
5440
- newPolicyEndTime?: string | undefined;
5441
- triggerBillingChange?: boolean | undefined;
5442
- } | {
5443
- locator: string;
5444
- action: "delete";
5445
- staticElementLocators: string[];
5446
- })[] | undefined;
4880
+ changeInstructions?: any[] | undefined;
5447
4881
  aggregateTransactionLocator?: string | undefined;
5448
4882
  baseTransactionLocator?: string | undefined;
5449
4883
  }>, "many">>>;
@@ -5487,50 +4921,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
5487
4921
  success?: boolean | undefined;
5488
4922
  } | undefined;
5489
4923
  billingTrigger?: "accept" | "issue" | undefined;
5490
- changeInstructions?: ({
5491
- locator: string;
5492
- elements: ElementCreateRequest[];
5493
- action: "add";
5494
- } | {
5495
- locator: string;
5496
- removeCoverageTerms: Record<string, any>;
5497
- removeData: Record<string, any>;
5498
- setCoverageTerms: Record<string, string>;
5499
- setData: Record<string, any>;
5500
- staticLocator: string;
5501
- action: "modify";
5502
- } | {
5503
- locator: string;
5504
- effectiveTime: string;
5505
- action: "params";
5506
- preferences?: {
5507
- billingPreferences?: {
5508
- billingPlanName?: string | undefined;
5509
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5510
- } | undefined;
5511
- installmentPreferences?: {
5512
- dayOfMonth?: number | undefined;
5513
- anchorTime?: string | undefined;
5514
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5515
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5516
- installmentPlanName?: string | undefined;
5517
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5518
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5519
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5520
- dueLeadDays?: number | undefined;
5521
- generateLeadDays?: number | undefined;
5522
- maxInstallmentsPerTerm?: number | undefined;
5523
- } | undefined;
5524
- } | undefined;
5525
- billingModeChange?: boolean | undefined;
5526
- inheritSettings?: boolean | undefined;
5527
- newPolicyEndTime?: string | undefined;
5528
- triggerBillingChange?: boolean | undefined;
5529
- } | {
5530
- locator: string;
5531
- action: "delete";
5532
- staticElementLocators: string[];
5533
- })[] | undefined;
4924
+ changeInstructions?: any[] | undefined;
5534
4925
  aggregateTransactionLocator?: string | undefined;
5535
4926
  baseTransactionLocator?: string | undefined;
5536
4927
  aggregatedTransactions?: {
@@ -5573,50 +4964,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
5573
4964
  success?: boolean | undefined;
5574
4965
  } | undefined;
5575
4966
  billingTrigger?: "accept" | "issue" | undefined;
5576
- changeInstructions?: ({
5577
- locator: string;
5578
- elements: ElementCreateRequest[];
5579
- action: "add";
5580
- } | {
5581
- locator: string;
5582
- removeCoverageTerms: Record<string, any>;
5583
- removeData: Record<string, any>;
5584
- setCoverageTerms: Record<string, string>;
5585
- setData: Record<string, any>;
5586
- staticLocator: string;
5587
- action: "modify";
5588
- } | {
5589
- locator: string;
5590
- effectiveTime: string;
5591
- action: "params";
5592
- preferences?: {
5593
- billingPreferences?: {
5594
- billingPlanName?: string | undefined;
5595
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5596
- } | undefined;
5597
- installmentPreferences?: {
5598
- dayOfMonth?: number | undefined;
5599
- anchorTime?: string | undefined;
5600
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5601
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5602
- installmentPlanName?: string | undefined;
5603
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5604
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5605
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5606
- dueLeadDays?: number | undefined;
5607
- generateLeadDays?: number | undefined;
5608
- maxInstallmentsPerTerm?: number | undefined;
5609
- } | undefined;
5610
- } | undefined;
5611
- billingModeChange?: boolean | undefined;
5612
- inheritSettings?: boolean | undefined;
5613
- newPolicyEndTime?: string | undefined;
5614
- triggerBillingChange?: boolean | undefined;
5615
- } | {
5616
- locator: string;
5617
- action: "delete";
5618
- staticElementLocators: string[];
5619
- })[] | undefined;
4967
+ changeInstructions?: any[] | undefined;
5620
4968
  aggregateTransactionLocator?: string | undefined;
5621
4969
  baseTransactionLocator?: string | undefined;
5622
4970
  }[] | undefined;
@@ -5660,50 +5008,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
5660
5008
  success?: boolean | undefined;
5661
5009
  } | undefined;
5662
5010
  billingTrigger?: "accept" | "issue" | undefined;
5663
- changeInstructions?: ({
5664
- locator: string;
5665
- elements: ElementCreateRequest[];
5666
- action: "add";
5667
- } | {
5668
- locator: string;
5669
- removeCoverageTerms: Record<string, any>;
5670
- removeData: Record<string, any>;
5671
- setCoverageTerms: Record<string, string>;
5672
- setData: Record<string, any>;
5673
- staticLocator: string;
5674
- action: "modify";
5675
- } | {
5676
- locator: string;
5677
- effectiveTime: string;
5678
- action: "params";
5679
- preferences?: {
5680
- billingPreferences?: {
5681
- billingPlanName?: string | undefined;
5682
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5683
- } | undefined;
5684
- installmentPreferences?: {
5685
- dayOfMonth?: number | undefined;
5686
- anchorTime?: string | undefined;
5687
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5688
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5689
- installmentPlanName?: string | undefined;
5690
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5691
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5692
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5693
- dueLeadDays?: number | undefined;
5694
- generateLeadDays?: number | undefined;
5695
- maxInstallmentsPerTerm?: number | undefined;
5696
- } | undefined;
5697
- } | undefined;
5698
- billingModeChange?: boolean | undefined;
5699
- inheritSettings?: boolean | undefined;
5700
- newPolicyEndTime?: string | undefined;
5701
- triggerBillingChange?: boolean | undefined;
5702
- } | {
5703
- locator: string;
5704
- action: "delete";
5705
- staticElementLocators: string[];
5706
- })[] | undefined;
5011
+ changeInstructions?: any[] | undefined;
5707
5012
  aggregateTransactionLocator?: string | undefined;
5708
5013
  baseTransactionLocator?: string | undefined;
5709
5014
  aggregatedTransactions?: {
@@ -5746,50 +5051,7 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
5746
5051
  success?: boolean | undefined;
5747
5052
  } | undefined;
5748
5053
  billingTrigger?: "accept" | "issue" | undefined;
5749
- changeInstructions?: ({
5750
- locator: string;
5751
- elements: ElementCreateRequest[];
5752
- action: "add";
5753
- } | {
5754
- locator: string;
5755
- removeCoverageTerms: Record<string, any>;
5756
- removeData: Record<string, any>;
5757
- setCoverageTerms: Record<string, string>;
5758
- setData: Record<string, any>;
5759
- staticLocator: string;
5760
- action: "modify";
5761
- } | {
5762
- locator: string;
5763
- effectiveTime: string;
5764
- action: "params";
5765
- preferences?: {
5766
- billingPreferences?: {
5767
- billingPlanName?: string | undefined;
5768
- billingLevel?: "account" | "inherit" | "policy" | undefined;
5769
- } | undefined;
5770
- installmentPreferences?: {
5771
- dayOfMonth?: number | undefined;
5772
- anchorTime?: string | undefined;
5773
- dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
5774
- weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
5775
- installmentPlanName?: string | undefined;
5776
- anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
5777
- anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
5778
- cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
5779
- dueLeadDays?: number | undefined;
5780
- generateLeadDays?: number | undefined;
5781
- maxInstallmentsPerTerm?: number | undefined;
5782
- } | undefined;
5783
- } | undefined;
5784
- billingModeChange?: boolean | undefined;
5785
- inheritSettings?: boolean | undefined;
5786
- newPolicyEndTime?: string | undefined;
5787
- triggerBillingChange?: boolean | undefined;
5788
- } | {
5789
- locator: string;
5790
- action: "delete";
5791
- staticElementLocators: string[];
5792
- })[] | undefined;
5054
+ changeInstructions?: any[] | undefined;
5793
5055
  aggregateTransactionLocator?: string | undefined;
5794
5056
  baseTransactionLocator?: string | undefined;
5795
5057
  }[] | undefined;
@@ -6989,7 +6251,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
6989
6251
  quoteLocator: z.ZodString;
6990
6252
  clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
6991
6253
  locator: z.ZodString;
6992
- elementLocator: z.ZodString;
6254
+ elementLocator: z.ZodOptional<z.ZodString>;
6993
6255
  clearedBy: z.ZodOptional<z.ZodString>;
6994
6256
  clearedTime: z.ZodOptional<z.ZodString>;
6995
6257
  createdBy: z.ZodOptional<z.ZodString>;
@@ -6998,7 +6260,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
6998
6260
  note: z.ZodOptional<z.ZodString>;
6999
6261
  }, "strip", z.ZodTypeAny, {
7000
6262
  locator: string;
7001
- elementLocator: string;
6263
+ elementLocator?: string | undefined;
7002
6264
  clearedBy?: string | undefined;
7003
6265
  clearedTime?: string | undefined;
7004
6266
  createdBy?: string | undefined;
@@ -7007,7 +6269,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7007
6269
  note?: string | undefined;
7008
6270
  }, {
7009
6271
  locator: string;
7010
- elementLocator: string;
6272
+ elementLocator?: string | undefined;
7011
6273
  clearedBy?: string | undefined;
7012
6274
  clearedTime?: string | undefined;
7013
6275
  createdBy?: string | undefined;
@@ -7017,7 +6279,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7017
6279
  }>, "many">>;
7018
6280
  flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
7019
6281
  locator: z.ZodString;
7020
- elementLocator: z.ZodString;
6282
+ elementLocator: z.ZodOptional<z.ZodString>;
7021
6283
  clearedBy: z.ZodOptional<z.ZodString>;
7022
6284
  clearedTime: z.ZodOptional<z.ZodString>;
7023
6285
  createdBy: z.ZodOptional<z.ZodString>;
@@ -7026,7 +6288,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7026
6288
  note: z.ZodOptional<z.ZodString>;
7027
6289
  }, "strip", z.ZodTypeAny, {
7028
6290
  locator: string;
7029
- elementLocator: string;
6291
+ elementLocator?: string | undefined;
7030
6292
  clearedBy?: string | undefined;
7031
6293
  clearedTime?: string | undefined;
7032
6294
  createdBy?: string | undefined;
@@ -7035,7 +6297,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7035
6297
  note?: string | undefined;
7036
6298
  }, {
7037
6299
  locator: string;
7038
- elementLocator: string;
6300
+ elementLocator?: string | undefined;
7039
6301
  clearedBy?: string | undefined;
7040
6302
  clearedTime?: string | undefined;
7041
6303
  createdBy?: string | undefined;
@@ -7047,7 +6309,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7047
6309
  quoteLocator: string;
7048
6310
  clearedFlags?: {
7049
6311
  locator: string;
7050
- elementLocator: string;
6312
+ elementLocator?: string | undefined;
7051
6313
  clearedBy?: string | undefined;
7052
6314
  clearedTime?: string | undefined;
7053
6315
  createdBy?: string | undefined;
@@ -7057,7 +6319,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7057
6319
  }[] | undefined;
7058
6320
  flags?: {
7059
6321
  locator: string;
7060
- elementLocator: string;
6322
+ elementLocator?: string | undefined;
7061
6323
  clearedBy?: string | undefined;
7062
6324
  clearedTime?: string | undefined;
7063
6325
  createdBy?: string | undefined;
@@ -7069,7 +6331,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7069
6331
  quoteLocator: string;
7070
6332
  clearedFlags?: {
7071
6333
  locator: string;
7072
- elementLocator: string;
6334
+ elementLocator?: string | undefined;
7073
6335
  clearedBy?: string | undefined;
7074
6336
  clearedTime?: string | undefined;
7075
6337
  createdBy?: string | undefined;
@@ -7079,7 +6341,7 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
7079
6341
  }[] | undefined;
7080
6342
  flags?: {
7081
6343
  locator: string;
7082
- elementLocator: string;
6344
+ elementLocator?: string | undefined;
7083
6345
  clearedBy?: string | undefined;
7084
6346
  clearedTime?: string | undefined;
7085
6347
  createdBy?: string | undefined;
@@ -8187,7 +7449,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8187
7449
  underwritingStatus: z.ZodOptional<z.ZodString>;
8188
7450
  underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
8189
7451
  locator: z.ZodString;
8190
- elementLocator: z.ZodString;
7452
+ elementLocator: z.ZodOptional<z.ZodString>;
8191
7453
  clearedBy: z.ZodOptional<z.ZodString>;
8192
7454
  clearedTime: z.ZodOptional<z.ZodString>;
8193
7455
  createdBy: z.ZodOptional<z.ZodString>;
@@ -8196,7 +7458,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8196
7458
  note: z.ZodOptional<z.ZodString>;
8197
7459
  }, "strip", z.ZodTypeAny, {
8198
7460
  locator: string;
8199
- elementLocator: string;
7461
+ elementLocator?: string | undefined;
8200
7462
  clearedBy?: string | undefined;
8201
7463
  clearedTime?: string | undefined;
8202
7464
  createdBy?: string | undefined;
@@ -8205,7 +7467,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8205
7467
  note?: string | undefined;
8206
7468
  }, {
8207
7469
  locator: string;
8208
- elementLocator: string;
7470
+ elementLocator?: string | undefined;
8209
7471
  clearedBy?: string | undefined;
8210
7472
  clearedTime?: string | undefined;
8211
7473
  createdBy?: string | undefined;
@@ -8223,7 +7485,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8223
7485
  underwritingStatus: z.ZodOptional<z.ZodString>;
8224
7486
  underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
8225
7487
  locator: z.ZodString;
8226
- elementLocator: z.ZodString;
7488
+ elementLocator: z.ZodOptional<z.ZodString>;
8227
7489
  clearedBy: z.ZodOptional<z.ZodString>;
8228
7490
  clearedTime: z.ZodOptional<z.ZodString>;
8229
7491
  createdBy: z.ZodOptional<z.ZodString>;
@@ -8232,7 +7494,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8232
7494
  note: z.ZodOptional<z.ZodString>;
8233
7495
  }, "strip", z.ZodTypeAny, {
8234
7496
  locator: string;
8235
- elementLocator: string;
7497
+ elementLocator?: string | undefined;
8236
7498
  clearedBy?: string | undefined;
8237
7499
  clearedTime?: string | undefined;
8238
7500
  createdBy?: string | undefined;
@@ -8241,7 +7503,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8241
7503
  note?: string | undefined;
8242
7504
  }, {
8243
7505
  locator: string;
8244
- elementLocator: string;
7506
+ elementLocator?: string | undefined;
8245
7507
  clearedBy?: string | undefined;
8246
7508
  clearedTime?: string | undefined;
8247
7509
  createdBy?: string | undefined;
@@ -8258,7 +7520,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8258
7520
  underwritingStatus?: string | undefined;
8259
7521
  underwritingFlags?: {
8260
7522
  locator: string;
8261
- elementLocator: string;
7523
+ elementLocator?: string | undefined;
8262
7524
  clearedBy?: string | undefined;
8263
7525
  clearedTime?: string | undefined;
8264
7526
  createdBy?: string | undefined;
@@ -8275,7 +7537,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8275
7537
  underwritingStatus?: string | undefined;
8276
7538
  underwritingFlags?: {
8277
7539
  locator: string;
8278
- elementLocator: string;
7540
+ elementLocator?: string | undefined;
8279
7541
  clearedBy?: string | undefined;
8280
7542
  clearedTime?: string | undefined;
8281
7543
  createdBy?: string | undefined;
@@ -8300,7 +7562,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8300
7562
  underwritingStatus?: string | undefined;
8301
7563
  underwritingFlags?: {
8302
7564
  locator: string;
8303
- elementLocator: string;
7565
+ elementLocator?: string | undefined;
8304
7566
  clearedBy?: string | undefined;
8305
7567
  clearedTime?: string | undefined;
8306
7568
  createdBy?: string | undefined;
@@ -8311,7 +7573,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8311
7573
  }[] | undefined;
8312
7574
  underwritingFlags?: {
8313
7575
  locator: string;
8314
- elementLocator: string;
7576
+ elementLocator?: string | undefined;
8315
7577
  clearedBy?: string | undefined;
8316
7578
  clearedTime?: string | undefined;
8317
7579
  createdBy?: string | undefined;
@@ -8335,7 +7597,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8335
7597
  underwritingStatus?: string | undefined;
8336
7598
  underwritingFlags?: {
8337
7599
  locator: string;
8338
- elementLocator: string;
7600
+ elementLocator?: string | undefined;
8339
7601
  clearedBy?: string | undefined;
8340
7602
  clearedTime?: string | undefined;
8341
7603
  createdBy?: string | undefined;
@@ -8346,7 +7608,7 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8346
7608
  }[] | undefined;
8347
7609
  underwritingFlags?: {
8348
7610
  locator: string;
8349
- elementLocator: string;
7611
+ elementLocator?: string | undefined;
8350
7612
  clearedBy?: string | undefined;
8351
7613
  clearedTime?: string | undefined;
8352
7614
  createdBy?: string | undefined;
@@ -8356,11 +7618,31 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
8356
7618
  }[] | undefined;
8357
7619
  }>;
8358
7620
 
7621
+ export declare type UnderwritingFlagCreateRequest = z.infer<typeof underwritingFlagCreateRequestSchema>;
7622
+
7623
+ export declare const underwritingFlagCreateRequestSchema: z.ZodObject<{
7624
+ elementLocator: z.ZodString;
7625
+ level: z.ZodEnum<["info", "block", "decline", "reject", "approve"]>;
7626
+ note: z.ZodOptional<z.ZodString>;
7627
+ }, "strip", z.ZodTypeAny, {
7628
+ elementLocator: string;
7629
+ level: "info" | "block" | "decline" | "reject" | "approve";
7630
+ note?: string | undefined;
7631
+ }, {
7632
+ elementLocator: string;
7633
+ level: "info" | "block" | "decline" | "reject" | "approve";
7634
+ note?: string | undefined;
7635
+ }>;
7636
+
7637
+ export declare type UnderwritingFlagEnum = z.infer<typeof underwritingFlagEnumSchema>;
7638
+
7639
+ export declare const underwritingFlagEnumSchema: z.ZodEnum<["info", "block", "decline", "reject", "approve"]>;
7640
+
8359
7641
  export declare type UnderwritingFlagResponse = z.infer<typeof underwritingFlagResponseSchema>;
8360
7642
 
8361
7643
  export declare const underwritingFlagResponseSchema: z.ZodObject<{
8362
7644
  locator: z.ZodString;
8363
- elementLocator: z.ZodString;
7645
+ elementLocator: z.ZodOptional<z.ZodString>;
8364
7646
  clearedBy: z.ZodOptional<z.ZodString>;
8365
7647
  clearedTime: z.ZodOptional<z.ZodString>;
8366
7648
  createdBy: z.ZodOptional<z.ZodString>;
@@ -8369,7 +7651,7 @@ export declare const underwritingFlagResponseSchema: z.ZodObject<{
8369
7651
  note: z.ZodOptional<z.ZodString>;
8370
7652
  }, "strip", z.ZodTypeAny, {
8371
7653
  locator: string;
8372
- elementLocator: string;
7654
+ elementLocator?: string | undefined;
8373
7655
  clearedBy?: string | undefined;
8374
7656
  clearedTime?: string | undefined;
8375
7657
  createdBy?: string | undefined;
@@ -8378,7 +7660,7 @@ export declare const underwritingFlagResponseSchema: z.ZodObject<{
8378
7660
  note?: string | undefined;
8379
7661
  }, {
8380
7662
  locator: string;
8381
- elementLocator: string;
7663
+ elementLocator?: string | undefined;
8382
7664
  clearedBy?: string | undefined;
8383
7665
  clearedTime?: string | undefined;
8384
7666
  createdBy?: string | undefined;
@@ -8387,6 +7669,39 @@ export declare const underwritingFlagResponseSchema: z.ZodObject<{
8387
7669
  note?: string | undefined;
8388
7670
  }>;
8389
7671
 
7672
+ export declare type UnderwritingFlagsUpdateRequest = z.infer<typeof underwritingFlagsUpdateRequestSchema>;
7673
+
7674
+ export declare const underwritingFlagsUpdateRequestSchema: z.ZodObject<{
7675
+ addFlags: z.ZodArray<z.ZodObject<{
7676
+ elementLocator: z.ZodString;
7677
+ level: z.ZodEnum<["info", "block", "decline", "reject", "approve"]>;
7678
+ note: z.ZodOptional<z.ZodString>;
7679
+ }, "strip", z.ZodTypeAny, {
7680
+ elementLocator: string;
7681
+ level: "info" | "block" | "decline" | "reject" | "approve";
7682
+ note?: string | undefined;
7683
+ }, {
7684
+ elementLocator: string;
7685
+ level: "info" | "block" | "decline" | "reject" | "approve";
7686
+ note?: string | undefined;
7687
+ }>, "many">;
7688
+ clearFlags: z.ZodArray<z.ZodString, "many">;
7689
+ }, "strip", z.ZodTypeAny, {
7690
+ addFlags: {
7691
+ elementLocator: string;
7692
+ level: "info" | "block" | "decline" | "reject" | "approve";
7693
+ note?: string | undefined;
7694
+ }[];
7695
+ clearFlags: string[];
7696
+ }, {
7697
+ addFlags: {
7698
+ elementLocator: string;
7699
+ level: "info" | "block" | "decline" | "reject" | "approve";
7700
+ note?: string | undefined;
7701
+ }[];
7702
+ clearFlags: string[];
7703
+ }>;
7704
+
8390
7705
  export declare type ValidationItem = z.infer<typeof validationItemSchema>;
8391
7706
 
8392
7707
  declare const validationItemSchema: z.ZodObject<{