@socotra/ec-react-schemas 2.19.1 → 2.19.2-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +246 -198
- package/dist/index.es.js +1364 -1358
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -542,21 +542,21 @@ export declare const AccountResponseSchema: z.ZodObject<{
|
|
|
542
542
|
locator?: string | undefined;
|
|
543
543
|
errors?: string[] | undefined;
|
|
544
544
|
}>, "many">>;
|
|
545
|
-
success: z.ZodBoolean
|
|
545
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
546
546
|
}, "strip", z.ZodTypeAny, {
|
|
547
|
-
success: boolean;
|
|
548
547
|
validationItems?: {
|
|
549
548
|
elementType?: string | undefined;
|
|
550
549
|
locator?: string | undefined;
|
|
551
550
|
errors?: string[] | undefined;
|
|
552
551
|
}[] | undefined;
|
|
552
|
+
success?: boolean | undefined;
|
|
553
553
|
}, {
|
|
554
|
-
success: boolean;
|
|
555
554
|
validationItems?: {
|
|
556
555
|
elementType?: string | undefined;
|
|
557
556
|
locator?: string | undefined;
|
|
558
557
|
errors?: string[] | undefined;
|
|
559
558
|
}[] | undefined;
|
|
559
|
+
success?: boolean | undefined;
|
|
560
560
|
}>>;
|
|
561
561
|
preferences: z.ZodOptional<z.ZodObject<{
|
|
562
562
|
installmentPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -713,12 +713,12 @@ export declare const AccountResponseSchema: z.ZodObject<{
|
|
|
713
713
|
autoRenewalPlanName?: string | undefined;
|
|
714
714
|
region?: string | undefined;
|
|
715
715
|
validationResult?: {
|
|
716
|
-
success: boolean;
|
|
717
716
|
validationItems?: {
|
|
718
717
|
elementType?: string | undefined;
|
|
719
718
|
locator?: string | undefined;
|
|
720
719
|
errors?: string[] | undefined;
|
|
721
720
|
}[] | undefined;
|
|
721
|
+
success?: boolean | undefined;
|
|
722
722
|
} | undefined;
|
|
723
723
|
shortfallTolerancePlanName?: string | undefined;
|
|
724
724
|
excessCreditPlanName?: string | undefined;
|
|
@@ -763,12 +763,12 @@ export declare const AccountResponseSchema: z.ZodObject<{
|
|
|
763
763
|
autoRenewalPlanName?: string | undefined;
|
|
764
764
|
region?: string | undefined;
|
|
765
765
|
validationResult?: {
|
|
766
|
-
success: boolean;
|
|
767
766
|
validationItems?: {
|
|
768
767
|
elementType?: string | undefined;
|
|
769
768
|
locator?: string | undefined;
|
|
770
769
|
errors?: string[] | undefined;
|
|
771
770
|
}[] | undefined;
|
|
771
|
+
success?: boolean | undefined;
|
|
772
772
|
} | undefined;
|
|
773
773
|
shortfallTolerancePlanName?: string | undefined;
|
|
774
774
|
excessCreditPlanName?: string | undefined;
|
|
@@ -3927,21 +3927,21 @@ export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
3927
3927
|
locator?: string | undefined;
|
|
3928
3928
|
errors?: string[] | undefined;
|
|
3929
3929
|
}>, "many">>;
|
|
3930
|
-
success: z.ZodBoolean
|
|
3930
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
3931
3931
|
}, "strip", z.ZodTypeAny, {
|
|
3932
|
-
success: boolean;
|
|
3933
3932
|
validationItems?: {
|
|
3934
3933
|
elementType?: string | undefined;
|
|
3935
3934
|
locator?: string | undefined;
|
|
3936
3935
|
errors?: string[] | undefined;
|
|
3937
3936
|
}[] | undefined;
|
|
3937
|
+
success?: boolean | undefined;
|
|
3938
3938
|
}, {
|
|
3939
|
-
success: boolean;
|
|
3940
3939
|
validationItems?: {
|
|
3941
3940
|
elementType?: string | undefined;
|
|
3942
3941
|
locator?: string | undefined;
|
|
3943
3942
|
errors?: string[] | undefined;
|
|
3944
3943
|
}[] | undefined;
|
|
3944
|
+
success?: boolean | undefined;
|
|
3945
3945
|
}>>;
|
|
3946
3946
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3947
3947
|
action: z.ZodString;
|
|
@@ -4308,12 +4308,12 @@ export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
4308
4308
|
baseTransactionLocator?: string | undefined;
|
|
4309
4309
|
aggregateTransactionLocator?: string | undefined;
|
|
4310
4310
|
validationResult?: {
|
|
4311
|
-
success: boolean;
|
|
4312
4311
|
validationItems?: {
|
|
4313
4312
|
elementType?: string | undefined;
|
|
4314
4313
|
locator?: string | undefined;
|
|
4315
4314
|
errors?: string[] | undefined;
|
|
4316
4315
|
}[] | undefined;
|
|
4316
|
+
success?: boolean | undefined;
|
|
4317
4317
|
} | undefined;
|
|
4318
4318
|
changeInstructions?: ({
|
|
4319
4319
|
locator: string;
|
|
@@ -4410,12 +4410,12 @@ export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
4410
4410
|
baseTransactionLocator?: string | undefined;
|
|
4411
4411
|
aggregateTransactionLocator?: string | undefined;
|
|
4412
4412
|
validationResult?: {
|
|
4413
|
-
success: boolean;
|
|
4414
4413
|
validationItems?: {
|
|
4415
4414
|
elementType?: string | undefined;
|
|
4416
4415
|
locator?: string | undefined;
|
|
4417
4416
|
errors?: string[] | undefined;
|
|
4418
4417
|
}[] | undefined;
|
|
4418
|
+
success?: boolean | undefined;
|
|
4419
4419
|
} | undefined;
|
|
4420
4420
|
changeInstructions?: ({
|
|
4421
4421
|
locator: string;
|
|
@@ -5116,21 +5116,21 @@ export declare const ContactListResponseSchema: z.ZodObject<{
|
|
|
5116
5116
|
locator?: string | undefined;
|
|
5117
5117
|
errors?: string[] | undefined;
|
|
5118
5118
|
}>, "many">>;
|
|
5119
|
-
success: z.ZodBoolean
|
|
5119
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
5120
5120
|
}, "strip", z.ZodTypeAny, {
|
|
5121
|
-
success: boolean;
|
|
5122
5121
|
validationItems?: {
|
|
5123
5122
|
elementType?: string | undefined;
|
|
5124
5123
|
locator?: string | undefined;
|
|
5125
5124
|
errors?: string[] | undefined;
|
|
5126
5125
|
}[] | undefined;
|
|
5126
|
+
success?: boolean | undefined;
|
|
5127
5127
|
}, {
|
|
5128
|
-
success: boolean;
|
|
5129
5128
|
validationItems?: {
|
|
5130
5129
|
elementType?: string | undefined;
|
|
5131
5130
|
locator?: string | undefined;
|
|
5132
5131
|
errors?: string[] | undefined;
|
|
5133
5132
|
}[] | undefined;
|
|
5133
|
+
success?: boolean | undefined;
|
|
5134
5134
|
}>>;
|
|
5135
5135
|
staticLocator: z.ZodString;
|
|
5136
5136
|
type: z.ZodString;
|
|
@@ -5148,12 +5148,12 @@ export declare const ContactListResponseSchema: z.ZodObject<{
|
|
|
5148
5148
|
updatedAt?: string | undefined;
|
|
5149
5149
|
region?: string | undefined;
|
|
5150
5150
|
validationResult?: {
|
|
5151
|
-
success: boolean;
|
|
5152
5151
|
validationItems?: {
|
|
5153
5152
|
elementType?: string | undefined;
|
|
5154
5153
|
locator?: string | undefined;
|
|
5155
5154
|
errors?: string[] | undefined;
|
|
5156
5155
|
}[] | undefined;
|
|
5156
|
+
success?: boolean | undefined;
|
|
5157
5157
|
} | undefined;
|
|
5158
5158
|
anonymizedAt?: string | undefined;
|
|
5159
5159
|
}, {
|
|
@@ -5168,12 +5168,12 @@ export declare const ContactListResponseSchema: z.ZodObject<{
|
|
|
5168
5168
|
updatedAt?: string | undefined;
|
|
5169
5169
|
region?: string | undefined;
|
|
5170
5170
|
validationResult?: {
|
|
5171
|
-
success: boolean;
|
|
5172
5171
|
validationItems?: {
|
|
5173
5172
|
elementType?: string | undefined;
|
|
5174
5173
|
locator?: string | undefined;
|
|
5175
5174
|
errors?: string[] | undefined;
|
|
5176
5175
|
}[] | undefined;
|
|
5176
|
+
success?: boolean | undefined;
|
|
5177
5177
|
} | undefined;
|
|
5178
5178
|
anonymizedAt?: string | undefined;
|
|
5179
5179
|
}>, "many">;
|
|
@@ -5190,12 +5190,12 @@ export declare const ContactListResponseSchema: z.ZodObject<{
|
|
|
5190
5190
|
updatedAt?: string | undefined;
|
|
5191
5191
|
region?: string | undefined;
|
|
5192
5192
|
validationResult?: {
|
|
5193
|
-
success: boolean;
|
|
5194
5193
|
validationItems?: {
|
|
5195
5194
|
elementType?: string | undefined;
|
|
5196
5195
|
locator?: string | undefined;
|
|
5197
5196
|
errors?: string[] | undefined;
|
|
5198
5197
|
}[] | undefined;
|
|
5198
|
+
success?: boolean | undefined;
|
|
5199
5199
|
} | undefined;
|
|
5200
5200
|
anonymizedAt?: string | undefined;
|
|
5201
5201
|
}[];
|
|
@@ -5213,12 +5213,12 @@ export declare const ContactListResponseSchema: z.ZodObject<{
|
|
|
5213
5213
|
updatedAt?: string | undefined;
|
|
5214
5214
|
region?: string | undefined;
|
|
5215
5215
|
validationResult?: {
|
|
5216
|
-
success: boolean;
|
|
5217
5216
|
validationItems?: {
|
|
5218
5217
|
elementType?: string | undefined;
|
|
5219
5218
|
locator?: string | undefined;
|
|
5220
5219
|
errors?: string[] | undefined;
|
|
5221
5220
|
}[] | undefined;
|
|
5221
|
+
success?: boolean | undefined;
|
|
5222
5222
|
} | undefined;
|
|
5223
5223
|
anonymizedAt?: string | undefined;
|
|
5224
5224
|
}[];
|
|
@@ -5897,21 +5897,21 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
5897
5897
|
locator?: string | undefined;
|
|
5898
5898
|
errors?: string[] | undefined;
|
|
5899
5899
|
}>, "many">>;
|
|
5900
|
-
success: z.ZodBoolean
|
|
5900
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
5901
5901
|
}, "strip", z.ZodTypeAny, {
|
|
5902
|
-
success: boolean;
|
|
5903
5902
|
validationItems?: {
|
|
5904
5903
|
elementType?: string | undefined;
|
|
5905
5904
|
locator?: string | undefined;
|
|
5906
5905
|
errors?: string[] | undefined;
|
|
5907
5906
|
}[] | undefined;
|
|
5907
|
+
success?: boolean | undefined;
|
|
5908
5908
|
}, {
|
|
5909
|
-
success: boolean;
|
|
5910
5909
|
validationItems?: {
|
|
5911
5910
|
elementType?: string | undefined;
|
|
5912
5911
|
locator?: string | undefined;
|
|
5913
5912
|
errors?: string[] | undefined;
|
|
5914
5913
|
}[] | undefined;
|
|
5914
|
+
success?: boolean | undefined;
|
|
5915
5915
|
}>>;
|
|
5916
5916
|
staticLocator: z.ZodString;
|
|
5917
5917
|
type: z.ZodString;
|
|
@@ -5929,12 +5929,12 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
5929
5929
|
updatedAt?: string | undefined;
|
|
5930
5930
|
region?: string | undefined;
|
|
5931
5931
|
validationResult?: {
|
|
5932
|
-
success: boolean;
|
|
5933
5932
|
validationItems?: {
|
|
5934
5933
|
elementType?: string | undefined;
|
|
5935
5934
|
locator?: string | undefined;
|
|
5936
5935
|
errors?: string[] | undefined;
|
|
5937
5936
|
}[] | undefined;
|
|
5937
|
+
success?: boolean | undefined;
|
|
5938
5938
|
} | undefined;
|
|
5939
5939
|
anonymizedAt?: string | undefined;
|
|
5940
5940
|
}, {
|
|
@@ -5949,12 +5949,12 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
5949
5949
|
updatedAt?: string | undefined;
|
|
5950
5950
|
region?: string | undefined;
|
|
5951
5951
|
validationResult?: {
|
|
5952
|
-
success: boolean;
|
|
5953
5952
|
validationItems?: {
|
|
5954
5953
|
elementType?: string | undefined;
|
|
5955
5954
|
locator?: string | undefined;
|
|
5956
5955
|
errors?: string[] | undefined;
|
|
5957
5956
|
}[] | undefined;
|
|
5957
|
+
success?: boolean | undefined;
|
|
5958
5958
|
} | undefined;
|
|
5959
5959
|
anonymizedAt?: string | undefined;
|
|
5960
5960
|
}>;
|
|
@@ -7645,9 +7645,9 @@ export declare const creditDistributionResponseSchema: z.ZodObject<{
|
|
|
7645
7645
|
success?: boolean | undefined;
|
|
7646
7646
|
} | undefined;
|
|
7647
7647
|
shortfallCreditLocators?: string[] | undefined;
|
|
7648
|
+
executedAt?: string | undefined;
|
|
7648
7649
|
reversalReason?: string | undefined;
|
|
7649
7650
|
reversedAt?: string | undefined;
|
|
7650
|
-
executedAt?: string | undefined;
|
|
7651
7651
|
}, {
|
|
7652
7652
|
locator: string;
|
|
7653
7653
|
createdBy: string;
|
|
@@ -7675,9 +7675,9 @@ export declare const creditDistributionResponseSchema: z.ZodObject<{
|
|
|
7675
7675
|
success?: boolean | undefined;
|
|
7676
7676
|
} | undefined;
|
|
7677
7677
|
shortfallCreditLocators?: string[] | undefined;
|
|
7678
|
+
executedAt?: string | undefined;
|
|
7678
7679
|
reversalReason?: string | undefined;
|
|
7679
7680
|
reversedAt?: string | undefined;
|
|
7680
|
-
executedAt?: string | undefined;
|
|
7681
7681
|
}>;
|
|
7682
7682
|
|
|
7683
7683
|
export declare type CreditDistributionReverseRequest = z.infer<typeof creditDistributionReverseRequestSchema>;
|
|
@@ -13774,21 +13774,21 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
13774
13774
|
locator?: string | undefined;
|
|
13775
13775
|
errors?: string[] | undefined;
|
|
13776
13776
|
}>, "many">>;
|
|
13777
|
-
success: z.ZodBoolean
|
|
13777
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
13778
13778
|
}, "strip", z.ZodTypeAny, {
|
|
13779
|
-
success: boolean;
|
|
13780
13779
|
validationItems?: {
|
|
13781
13780
|
elementType?: string | undefined;
|
|
13782
13781
|
locator?: string | undefined;
|
|
13783
13782
|
errors?: string[] | undefined;
|
|
13784
13783
|
}[] | undefined;
|
|
13784
|
+
success?: boolean | undefined;
|
|
13785
13785
|
}, {
|
|
13786
|
-
success: boolean;
|
|
13787
13786
|
validationItems?: {
|
|
13788
13787
|
elementType?: string | undefined;
|
|
13789
13788
|
locator?: string | undefined;
|
|
13790
13789
|
errors?: string[] | undefined;
|
|
13791
13790
|
}[] | undefined;
|
|
13791
|
+
success?: boolean | undefined;
|
|
13792
13792
|
}>>;
|
|
13793
13793
|
type: z.ZodString;
|
|
13794
13794
|
currency: z.ZodString;
|
|
@@ -13811,12 +13811,12 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
13811
13811
|
disbursementState: "draft" | "validated" | "rejected" | "discarded" | "reversed" | "approved" | "executed";
|
|
13812
13812
|
accountLocator?: string | undefined;
|
|
13813
13813
|
validationResult?: {
|
|
13814
|
-
success: boolean;
|
|
13815
13814
|
validationItems?: {
|
|
13816
13815
|
elementType?: string | undefined;
|
|
13817
13816
|
locator?: string | undefined;
|
|
13818
13817
|
errors?: string[] | undefined;
|
|
13819
13818
|
}[] | undefined;
|
|
13819
|
+
success?: boolean | undefined;
|
|
13820
13820
|
} | undefined;
|
|
13821
13821
|
externalCashTransactionLocator?: string | undefined;
|
|
13822
13822
|
disbursementNumber?: string | undefined;
|
|
@@ -13836,12 +13836,12 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
13836
13836
|
disbursementState: "draft" | "validated" | "rejected" | "discarded" | "reversed" | "approved" | "executed";
|
|
13837
13837
|
accountLocator?: string | undefined;
|
|
13838
13838
|
validationResult?: {
|
|
13839
|
-
success: boolean;
|
|
13840
13839
|
validationItems?: {
|
|
13841
13840
|
elementType?: string | undefined;
|
|
13842
13841
|
locator?: string | undefined;
|
|
13843
13842
|
errors?: string[] | undefined;
|
|
13844
13843
|
}[] | undefined;
|
|
13844
|
+
success?: boolean | undefined;
|
|
13845
13845
|
} | undefined;
|
|
13846
13846
|
externalCashTransactionLocator?: string | undefined;
|
|
13847
13847
|
disbursementNumber?: string | undefined;
|
|
@@ -13863,12 +13863,12 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
13863
13863
|
disbursementState: "draft" | "validated" | "rejected" | "discarded" | "reversed" | "approved" | "executed";
|
|
13864
13864
|
accountLocator?: string | undefined;
|
|
13865
13865
|
validationResult?: {
|
|
13866
|
-
success: boolean;
|
|
13867
13866
|
validationItems?: {
|
|
13868
13867
|
elementType?: string | undefined;
|
|
13869
13868
|
locator?: string | undefined;
|
|
13870
13869
|
errors?: string[] | undefined;
|
|
13871
13870
|
}[] | undefined;
|
|
13871
|
+
success?: boolean | undefined;
|
|
13872
13872
|
} | undefined;
|
|
13873
13873
|
externalCashTransactionLocator?: string | undefined;
|
|
13874
13874
|
disbursementNumber?: string | undefined;
|
|
@@ -13891,12 +13891,12 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
13891
13891
|
disbursementState: "draft" | "validated" | "rejected" | "discarded" | "reversed" | "approved" | "executed";
|
|
13892
13892
|
accountLocator?: string | undefined;
|
|
13893
13893
|
validationResult?: {
|
|
13894
|
-
success: boolean;
|
|
13895
13894
|
validationItems?: {
|
|
13896
13895
|
elementType?: string | undefined;
|
|
13897
13896
|
locator?: string | undefined;
|
|
13898
13897
|
errors?: string[] | undefined;
|
|
13899
13898
|
}[] | undefined;
|
|
13899
|
+
success?: boolean | undefined;
|
|
13900
13900
|
} | undefined;
|
|
13901
13901
|
externalCashTransactionLocator?: string | undefined;
|
|
13902
13902
|
disbursementNumber?: string | undefined;
|
|
@@ -13984,21 +13984,21 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
13984
13984
|
locator?: string | undefined;
|
|
13985
13985
|
errors?: string[] | undefined;
|
|
13986
13986
|
}>, "many">>;
|
|
13987
|
-
success: z.ZodBoolean
|
|
13987
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
13988
13988
|
}, "strip", z.ZodTypeAny, {
|
|
13989
|
-
success: boolean;
|
|
13990
13989
|
validationItems?: {
|
|
13991
13990
|
elementType?: string | undefined;
|
|
13992
13991
|
locator?: string | undefined;
|
|
13993
13992
|
errors?: string[] | undefined;
|
|
13994
13993
|
}[] | undefined;
|
|
13994
|
+
success?: boolean | undefined;
|
|
13995
13995
|
}, {
|
|
13996
|
-
success: boolean;
|
|
13997
13996
|
validationItems?: {
|
|
13998
13997
|
elementType?: string | undefined;
|
|
13999
13998
|
locator?: string | undefined;
|
|
14000
13999
|
errors?: string[] | undefined;
|
|
14001
14000
|
}[] | undefined;
|
|
14001
|
+
success?: boolean | undefined;
|
|
14002
14002
|
}>>;
|
|
14003
14003
|
type: z.ZodString;
|
|
14004
14004
|
currency: z.ZodString;
|
|
@@ -14021,12 +14021,12 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
14021
14021
|
disbursementState: "draft" | "validated" | "rejected" | "discarded" | "reversed" | "approved" | "executed";
|
|
14022
14022
|
accountLocator?: string | undefined;
|
|
14023
14023
|
validationResult?: {
|
|
14024
|
-
success: boolean;
|
|
14025
14024
|
validationItems?: {
|
|
14026
14025
|
elementType?: string | undefined;
|
|
14027
14026
|
locator?: string | undefined;
|
|
14028
14027
|
errors?: string[] | undefined;
|
|
14029
14028
|
}[] | undefined;
|
|
14029
|
+
success?: boolean | undefined;
|
|
14030
14030
|
} | undefined;
|
|
14031
14031
|
externalCashTransactionLocator?: string | undefined;
|
|
14032
14032
|
disbursementNumber?: string | undefined;
|
|
@@ -14046,12 +14046,12 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
14046
14046
|
disbursementState: "draft" | "validated" | "rejected" | "discarded" | "reversed" | "approved" | "executed";
|
|
14047
14047
|
accountLocator?: string | undefined;
|
|
14048
14048
|
validationResult?: {
|
|
14049
|
-
success: boolean;
|
|
14050
14049
|
validationItems?: {
|
|
14051
14050
|
elementType?: string | undefined;
|
|
14052
14051
|
locator?: string | undefined;
|
|
14053
14052
|
errors?: string[] | undefined;
|
|
14054
14053
|
}[] | undefined;
|
|
14054
|
+
success?: boolean | undefined;
|
|
14055
14055
|
} | undefined;
|
|
14056
14056
|
externalCashTransactionLocator?: string | undefined;
|
|
14057
14057
|
disbursementNumber?: string | undefined;
|
|
@@ -19572,6 +19572,10 @@ export declare const paymentConfigSchema: z.ZodObject<{
|
|
|
19572
19572
|
}> | undefined;
|
|
19573
19573
|
}>;
|
|
19574
19574
|
|
|
19575
|
+
export declare type PaymentModeEnum = z.infer<typeof PaymentModeEnumSchema>;
|
|
19576
|
+
|
|
19577
|
+
export declare const PaymentModeEnumSchema: z.ZodEnum<["normal", "aggregate"]>;
|
|
19578
|
+
|
|
19575
19579
|
declare type PaymentRequest_2 = z.infer<typeof PaymentRequestSchema>;
|
|
19576
19580
|
export { PaymentRequest_2 as PaymentRequest }
|
|
19577
19581
|
|
|
@@ -19630,21 +19634,16 @@ export declare const PaymentRequestSchema: z.ZodObject<{
|
|
|
19630
19634
|
transactionNumber?: string | undefined;
|
|
19631
19635
|
}>;
|
|
19632
19636
|
|
|
19633
|
-
declare type PaymentResponse_2 = z.infer<typeof
|
|
19637
|
+
declare type PaymentResponse_2 = z.infer<typeof PaymentResponseSchema>;
|
|
19634
19638
|
export { PaymentResponse_2 as PaymentResponse }
|
|
19635
19639
|
|
|
19636
|
-
export declare const
|
|
19637
|
-
locator: z.ZodString;
|
|
19640
|
+
export declare const PaymentResponseSchema: z.ZodObject<{
|
|
19638
19641
|
currency: 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"]>;
|
|
19639
19642
|
paymentState: z.ZodEnum<["draft", "validated", "posted", "reversed", "discarded"]>;
|
|
19640
|
-
amount: z.ZodNumber;
|
|
19641
|
-
type: z.ZodString;
|
|
19642
19643
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19643
|
-
createdAt: z.ZodString;
|
|
19644
|
-
createdBy: z.ZodString;
|
|
19645
19644
|
targets: z.ZodArray<z.ZodObject<{
|
|
19646
|
-
containerLocator: z.ZodString;
|
|
19647
19645
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
19646
|
+
containerLocator: z.ZodString;
|
|
19648
19647
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
19649
19648
|
}, "strip", z.ZodTypeAny, {
|
|
19650
19649
|
containerLocator: string;
|
|
@@ -19656,16 +19655,10 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19656
19655
|
amount?: number | undefined;
|
|
19657
19656
|
}>, "many">;
|
|
19658
19657
|
shortfallCreditLocators: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19659
|
-
accountLocator: z.ZodOptional<z.ZodString>;
|
|
19660
|
-
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
19661
|
-
postedAt: z.ZodOptional<z.ZodString>;
|
|
19662
|
-
remainingAmount: z.ZodOptional<z.ZodNumber>;
|
|
19663
|
-
reversalReason: z.ZodOptional<z.ZodString>;
|
|
19664
|
-
reversedAt: z.ZodOptional<z.ZodString>;
|
|
19665
19658
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
19666
19659
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19667
|
-
elementType: z.ZodOptional<z.ZodString>;
|
|
19668
19660
|
locator: z.ZodOptional<z.ZodString>;
|
|
19661
|
+
elementType: z.ZodOptional<z.ZodString>;
|
|
19669
19662
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19670
19663
|
}, "strip", z.ZodTypeAny, {
|
|
19671
19664
|
elementType?: string | undefined;
|
|
@@ -19692,6 +19685,30 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19692
19685
|
}[] | undefined;
|
|
19693
19686
|
success?: boolean | undefined;
|
|
19694
19687
|
}>>;
|
|
19688
|
+
subpayments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19689
|
+
subpaymentLocator: z.ZodString;
|
|
19690
|
+
amount: z.ZodNumber;
|
|
19691
|
+
}, "strip", z.ZodTypeAny, {
|
|
19692
|
+
amount: number;
|
|
19693
|
+
subpaymentLocator: string;
|
|
19694
|
+
}, {
|
|
19695
|
+
amount: number;
|
|
19696
|
+
subpaymentLocator: string;
|
|
19697
|
+
}>, "many">>;
|
|
19698
|
+
paymentMode: z.ZodOptional<z.ZodEnum<["normal", "aggregate"]>>;
|
|
19699
|
+
locator: z.ZodString;
|
|
19700
|
+
type: z.ZodString;
|
|
19701
|
+
amount: z.ZodNumber;
|
|
19702
|
+
remainingAmount: z.ZodOptional<z.ZodNumber>;
|
|
19703
|
+
createdAt: z.ZodString;
|
|
19704
|
+
createdBy: z.ZodString;
|
|
19705
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
19706
|
+
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
19707
|
+
postedAt: z.ZodOptional<z.ZodString>;
|
|
19708
|
+
reversalReason: z.ZodOptional<z.ZodString>;
|
|
19709
|
+
reversedAt: z.ZodOptional<z.ZodString>;
|
|
19710
|
+
reversedBy: z.ZodOptional<z.ZodString>;
|
|
19711
|
+
aggregatePaymentLocator: z.ZodOptional<z.ZodString>;
|
|
19695
19712
|
}, "strip", z.ZodTypeAny, {
|
|
19696
19713
|
locator: string;
|
|
19697
19714
|
type: string;
|
|
@@ -19717,10 +19734,17 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19717
19734
|
} | undefined;
|
|
19718
19735
|
remainingAmount?: number | undefined;
|
|
19719
19736
|
shortfallCreditLocators?: string[] | undefined;
|
|
19720
|
-
externalCashTransactionLocator?: string | undefined;
|
|
19721
|
-
postedAt?: string | undefined;
|
|
19722
19737
|
reversalReason?: string | undefined;
|
|
19723
19738
|
reversedAt?: string | undefined;
|
|
19739
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
19740
|
+
externalCashTransactionLocator?: string | undefined;
|
|
19741
|
+
postedAt?: string | undefined;
|
|
19742
|
+
reversedBy?: string | undefined;
|
|
19743
|
+
subpayments?: {
|
|
19744
|
+
amount: number;
|
|
19745
|
+
subpaymentLocator: string;
|
|
19746
|
+
}[] | undefined;
|
|
19747
|
+
aggregatePaymentLocator?: string | undefined;
|
|
19724
19748
|
}, {
|
|
19725
19749
|
locator: string;
|
|
19726
19750
|
type: string;
|
|
@@ -19746,12 +19770,23 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19746
19770
|
} | undefined;
|
|
19747
19771
|
remainingAmount?: number | undefined;
|
|
19748
19772
|
shortfallCreditLocators?: string[] | undefined;
|
|
19749
|
-
externalCashTransactionLocator?: string | undefined;
|
|
19750
|
-
postedAt?: string | undefined;
|
|
19751
19773
|
reversalReason?: string | undefined;
|
|
19752
19774
|
reversedAt?: string | undefined;
|
|
19775
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
19776
|
+
externalCashTransactionLocator?: string | undefined;
|
|
19777
|
+
postedAt?: string | undefined;
|
|
19778
|
+
reversedBy?: string | undefined;
|
|
19779
|
+
subpayments?: {
|
|
19780
|
+
amount: number;
|
|
19781
|
+
subpaymentLocator: string;
|
|
19782
|
+
}[] | undefined;
|
|
19783
|
+
aggregatePaymentLocator?: string | undefined;
|
|
19753
19784
|
}>;
|
|
19754
19785
|
|
|
19786
|
+
export declare type PaymentStateEnum = z.infer<typeof PaymentStateEnumSchema>;
|
|
19787
|
+
|
|
19788
|
+
export declare const PaymentStateEnumSchema: z.ZodEnum<["draft", "validated", "posted", "reversed", "discarded"]>;
|
|
19789
|
+
|
|
19755
19790
|
export declare type PolicyBillingLevel = z.infer<typeof policyBillingLevelEnumSchema>;
|
|
19756
19791
|
|
|
19757
19792
|
export declare const policyBillingLevelEnumSchema: z.ZodEnum<["account", "inherit", "policy"]>;
|
|
@@ -19799,21 +19834,21 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19799
19834
|
locator?: string | undefined;
|
|
19800
19835
|
errors?: string[] | undefined;
|
|
19801
19836
|
}>, "many">>;
|
|
19802
|
-
success: z.ZodBoolean
|
|
19837
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
19803
19838
|
}, "strip", z.ZodTypeAny, {
|
|
19804
|
-
success: boolean;
|
|
19805
19839
|
validationItems?: {
|
|
19806
19840
|
elementType?: string | undefined;
|
|
19807
19841
|
locator?: string | undefined;
|
|
19808
19842
|
errors?: string[] | undefined;
|
|
19809
19843
|
}[] | undefined;
|
|
19844
|
+
success?: boolean | undefined;
|
|
19810
19845
|
}, {
|
|
19811
|
-
success: boolean;
|
|
19812
19846
|
validationItems?: {
|
|
19813
19847
|
elementType?: string | undefined;
|
|
19814
19848
|
locator?: string | undefined;
|
|
19815
19849
|
errors?: string[] | undefined;
|
|
19816
19850
|
}[] | undefined;
|
|
19851
|
+
success?: boolean | undefined;
|
|
19817
19852
|
}>>;
|
|
19818
19853
|
contacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19819
19854
|
contactLocator: z.ZodString;
|
|
@@ -19858,12 +19893,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19858
19893
|
static?: Record<string, any> | undefined;
|
|
19859
19894
|
createdAt?: string | undefined;
|
|
19860
19895
|
validationResult?: {
|
|
19861
|
-
success: boolean;
|
|
19862
19896
|
validationItems?: {
|
|
19863
19897
|
elementType?: string | undefined;
|
|
19864
19898
|
locator?: string | undefined;
|
|
19865
19899
|
errors?: string[] | undefined;
|
|
19866
19900
|
}[] | undefined;
|
|
19901
|
+
success?: boolean | undefined;
|
|
19867
19902
|
} | undefined;
|
|
19868
19903
|
anonymizedAt?: string | undefined;
|
|
19869
19904
|
policyNumber?: string | undefined;
|
|
@@ -19895,12 +19930,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19895
19930
|
static?: Record<string, any> | undefined;
|
|
19896
19931
|
createdAt?: string | undefined;
|
|
19897
19932
|
validationResult?: {
|
|
19898
|
-
success: boolean;
|
|
19899
19933
|
validationItems?: {
|
|
19900
19934
|
elementType?: string | undefined;
|
|
19901
19935
|
locator?: string | undefined;
|
|
19902
19936
|
errors?: string[] | undefined;
|
|
19903
19937
|
}[] | undefined;
|
|
19938
|
+
success?: boolean | undefined;
|
|
19904
19939
|
} | undefined;
|
|
19905
19940
|
anonymizedAt?: string | undefined;
|
|
19906
19941
|
policyNumber?: string | undefined;
|
|
@@ -19934,12 +19969,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19934
19969
|
static?: Record<string, any> | undefined;
|
|
19935
19970
|
createdAt?: string | undefined;
|
|
19936
19971
|
validationResult?: {
|
|
19937
|
-
success: boolean;
|
|
19938
19972
|
validationItems?: {
|
|
19939
19973
|
elementType?: string | undefined;
|
|
19940
19974
|
locator?: string | undefined;
|
|
19941
19975
|
errors?: string[] | undefined;
|
|
19942
19976
|
}[] | undefined;
|
|
19977
|
+
success?: boolean | undefined;
|
|
19943
19978
|
} | undefined;
|
|
19944
19979
|
anonymizedAt?: string | undefined;
|
|
19945
19980
|
policyNumber?: string | undefined;
|
|
@@ -19974,12 +20009,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19974
20009
|
static?: Record<string, any> | undefined;
|
|
19975
20010
|
createdAt?: string | undefined;
|
|
19976
20011
|
validationResult?: {
|
|
19977
|
-
success: boolean;
|
|
19978
20012
|
validationItems?: {
|
|
19979
20013
|
elementType?: string | undefined;
|
|
19980
20014
|
locator?: string | undefined;
|
|
19981
20015
|
errors?: string[] | undefined;
|
|
19982
20016
|
}[] | undefined;
|
|
20017
|
+
success?: boolean | undefined;
|
|
19983
20018
|
} | undefined;
|
|
19984
20019
|
anonymizedAt?: string | undefined;
|
|
19985
20020
|
policyNumber?: string | undefined;
|
|
@@ -20182,21 +20217,21 @@ export declare const PolicyResponseArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20182
20217
|
locator?: string | undefined;
|
|
20183
20218
|
errors?: string[] | undefined;
|
|
20184
20219
|
}>, "many">>;
|
|
20185
|
-
success: z.ZodBoolean
|
|
20220
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
20186
20221
|
}, "strip", z.ZodTypeAny, {
|
|
20187
|
-
success: boolean;
|
|
20188
20222
|
validationItems?: {
|
|
20189
20223
|
elementType?: string | undefined;
|
|
20190
20224
|
locator?: string | undefined;
|
|
20191
20225
|
errors?: string[] | undefined;
|
|
20192
20226
|
}[] | undefined;
|
|
20227
|
+
success?: boolean | undefined;
|
|
20193
20228
|
}, {
|
|
20194
|
-
success: boolean;
|
|
20195
20229
|
validationItems?: {
|
|
20196
20230
|
elementType?: string | undefined;
|
|
20197
20231
|
locator?: string | undefined;
|
|
20198
20232
|
errors?: string[] | undefined;
|
|
20199
20233
|
}[] | undefined;
|
|
20234
|
+
success?: boolean | undefined;
|
|
20200
20235
|
}>>;
|
|
20201
20236
|
contacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20202
20237
|
contactLocator: z.ZodString;
|
|
@@ -20241,12 +20276,12 @@ export declare const PolicyResponseArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20241
20276
|
static?: Record<string, any> | undefined;
|
|
20242
20277
|
createdAt?: string | undefined;
|
|
20243
20278
|
validationResult?: {
|
|
20244
|
-
success: boolean;
|
|
20245
20279
|
validationItems?: {
|
|
20246
20280
|
elementType?: string | undefined;
|
|
20247
20281
|
locator?: string | undefined;
|
|
20248
20282
|
errors?: string[] | undefined;
|
|
20249
20283
|
}[] | undefined;
|
|
20284
|
+
success?: boolean | undefined;
|
|
20250
20285
|
} | undefined;
|
|
20251
20286
|
anonymizedAt?: string | undefined;
|
|
20252
20287
|
policyNumber?: string | undefined;
|
|
@@ -20278,12 +20313,12 @@ export declare const PolicyResponseArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20278
20313
|
static?: Record<string, any> | undefined;
|
|
20279
20314
|
createdAt?: string | undefined;
|
|
20280
20315
|
validationResult?: {
|
|
20281
|
-
success: boolean;
|
|
20282
20316
|
validationItems?: {
|
|
20283
20317
|
elementType?: string | undefined;
|
|
20284
20318
|
locator?: string | undefined;
|
|
20285
20319
|
errors?: string[] | undefined;
|
|
20286
20320
|
}[] | undefined;
|
|
20321
|
+
success?: boolean | undefined;
|
|
20287
20322
|
} | undefined;
|
|
20288
20323
|
anonymizedAt?: string | undefined;
|
|
20289
20324
|
policyNumber?: string | undefined;
|
|
@@ -20323,21 +20358,21 @@ export declare const PolicyResponseSchema: z.ZodObject<{
|
|
|
20323
20358
|
locator?: string | undefined;
|
|
20324
20359
|
errors?: string[] | undefined;
|
|
20325
20360
|
}>, "many">>;
|
|
20326
|
-
success: z.ZodBoolean
|
|
20361
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
20327
20362
|
}, "strip", z.ZodTypeAny, {
|
|
20328
|
-
success: boolean;
|
|
20329
20363
|
validationItems?: {
|
|
20330
20364
|
elementType?: string | undefined;
|
|
20331
20365
|
locator?: string | undefined;
|
|
20332
20366
|
errors?: string[] | undefined;
|
|
20333
20367
|
}[] | undefined;
|
|
20368
|
+
success?: boolean | undefined;
|
|
20334
20369
|
}, {
|
|
20335
|
-
success: boolean;
|
|
20336
20370
|
validationItems?: {
|
|
20337
20371
|
elementType?: string | undefined;
|
|
20338
20372
|
locator?: string | undefined;
|
|
20339
20373
|
errors?: string[] | undefined;
|
|
20340
20374
|
}[] | undefined;
|
|
20375
|
+
success?: boolean | undefined;
|
|
20341
20376
|
}>>;
|
|
20342
20377
|
contacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20343
20378
|
contactLocator: z.ZodString;
|
|
@@ -20382,12 +20417,12 @@ export declare const PolicyResponseSchema: z.ZodObject<{
|
|
|
20382
20417
|
static?: Record<string, any> | undefined;
|
|
20383
20418
|
createdAt?: string | undefined;
|
|
20384
20419
|
validationResult?: {
|
|
20385
|
-
success: boolean;
|
|
20386
20420
|
validationItems?: {
|
|
20387
20421
|
elementType?: string | undefined;
|
|
20388
20422
|
locator?: string | undefined;
|
|
20389
20423
|
errors?: string[] | undefined;
|
|
20390
20424
|
}[] | undefined;
|
|
20425
|
+
success?: boolean | undefined;
|
|
20391
20426
|
} | undefined;
|
|
20392
20427
|
anonymizedAt?: string | undefined;
|
|
20393
20428
|
policyNumber?: string | undefined;
|
|
@@ -20419,12 +20454,12 @@ export declare const PolicyResponseSchema: z.ZodObject<{
|
|
|
20419
20454
|
static?: Record<string, any> | undefined;
|
|
20420
20455
|
createdAt?: string | undefined;
|
|
20421
20456
|
validationResult?: {
|
|
20422
|
-
success: boolean;
|
|
20423
20457
|
validationItems?: {
|
|
20424
20458
|
elementType?: string | undefined;
|
|
20425
20459
|
locator?: string | undefined;
|
|
20426
20460
|
errors?: string[] | undefined;
|
|
20427
20461
|
}[] | undefined;
|
|
20462
|
+
success?: boolean | undefined;
|
|
20428
20463
|
} | undefined;
|
|
20429
20464
|
anonymizedAt?: string | undefined;
|
|
20430
20465
|
policyNumber?: string | undefined;
|
|
@@ -22133,21 +22168,21 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
22133
22168
|
locator?: string | undefined;
|
|
22134
22169
|
errors?: string[] | undefined;
|
|
22135
22170
|
}>, "many">>;
|
|
22136
|
-
success: z.ZodBoolean
|
|
22171
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
22137
22172
|
}, "strip", z.ZodTypeAny, {
|
|
22138
|
-
success: boolean;
|
|
22139
22173
|
validationItems?: {
|
|
22140
22174
|
elementType?: string | undefined;
|
|
22141
22175
|
locator?: string | undefined;
|
|
22142
22176
|
errors?: string[] | undefined;
|
|
22143
22177
|
}[] | undefined;
|
|
22178
|
+
success?: boolean | undefined;
|
|
22144
22179
|
}, {
|
|
22145
|
-
success: boolean;
|
|
22146
22180
|
validationItems?: {
|
|
22147
22181
|
elementType?: string | undefined;
|
|
22148
22182
|
locator?: string | undefined;
|
|
22149
22183
|
errors?: string[] | undefined;
|
|
22150
22184
|
}[] | undefined;
|
|
22185
|
+
success?: boolean | undefined;
|
|
22151
22186
|
}>>;
|
|
22152
22187
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
22153
22188
|
action: z.ZodString;
|
|
@@ -22658,21 +22693,21 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
22658
22693
|
locator?: string | undefined;
|
|
22659
22694
|
errors?: string[] | undefined;
|
|
22660
22695
|
}>, "many">>;
|
|
22661
|
-
success: z.ZodBoolean
|
|
22696
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
22662
22697
|
}, "strip", z.ZodTypeAny, {
|
|
22663
|
-
success: boolean;
|
|
22664
22698
|
validationItems?: {
|
|
22665
22699
|
elementType?: string | undefined;
|
|
22666
22700
|
locator?: string | undefined;
|
|
22667
22701
|
errors?: string[] | undefined;
|
|
22668
22702
|
}[] | undefined;
|
|
22703
|
+
success?: boolean | undefined;
|
|
22669
22704
|
}, {
|
|
22670
|
-
success: boolean;
|
|
22671
22705
|
validationItems?: {
|
|
22672
22706
|
elementType?: string | undefined;
|
|
22673
22707
|
locator?: string | undefined;
|
|
22674
22708
|
errors?: string[] | undefined;
|
|
22675
22709
|
}[] | undefined;
|
|
22710
|
+
success?: boolean | undefined;
|
|
22676
22711
|
}>>;
|
|
22677
22712
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
22678
22713
|
action: z.ZodString;
|
|
@@ -23039,12 +23074,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23039
23074
|
baseTransactionLocator?: string | undefined;
|
|
23040
23075
|
aggregateTransactionLocator?: string | undefined;
|
|
23041
23076
|
validationResult?: {
|
|
23042
|
-
success: boolean;
|
|
23043
23077
|
validationItems?: {
|
|
23044
23078
|
elementType?: string | undefined;
|
|
23045
23079
|
locator?: string | undefined;
|
|
23046
23080
|
errors?: string[] | undefined;
|
|
23047
23081
|
}[] | undefined;
|
|
23082
|
+
success?: boolean | undefined;
|
|
23048
23083
|
} | undefined;
|
|
23049
23084
|
changeInstructions?: ({
|
|
23050
23085
|
locator: string;
|
|
@@ -23141,12 +23176,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23141
23176
|
baseTransactionLocator?: string | undefined;
|
|
23142
23177
|
aggregateTransactionLocator?: string | undefined;
|
|
23143
23178
|
validationResult?: {
|
|
23144
|
-
success: boolean;
|
|
23145
23179
|
validationItems?: {
|
|
23146
23180
|
elementType?: string | undefined;
|
|
23147
23181
|
locator?: string | undefined;
|
|
23148
23182
|
errors?: string[] | undefined;
|
|
23149
23183
|
}[] | undefined;
|
|
23184
|
+
success?: boolean | undefined;
|
|
23150
23185
|
} | undefined;
|
|
23151
23186
|
changeInstructions?: ({
|
|
23152
23187
|
locator: string;
|
|
@@ -23255,12 +23290,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23255
23290
|
baseTransactionLocator?: string | undefined;
|
|
23256
23291
|
aggregateTransactionLocator?: string | undefined;
|
|
23257
23292
|
validationResult?: {
|
|
23258
|
-
success: boolean;
|
|
23259
23293
|
validationItems?: {
|
|
23260
23294
|
elementType?: string | undefined;
|
|
23261
23295
|
locator?: string | undefined;
|
|
23262
23296
|
errors?: string[] | undefined;
|
|
23263
23297
|
}[] | undefined;
|
|
23298
|
+
success?: boolean | undefined;
|
|
23264
23299
|
} | undefined;
|
|
23265
23300
|
changeInstructions?: ({
|
|
23266
23301
|
locator: string;
|
|
@@ -23347,12 +23382,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23347
23382
|
baseTransactionLocator?: string | undefined;
|
|
23348
23383
|
aggregateTransactionLocator?: string | undefined;
|
|
23349
23384
|
validationResult?: {
|
|
23350
|
-
success: boolean;
|
|
23351
23385
|
validationItems?: {
|
|
23352
23386
|
elementType?: string | undefined;
|
|
23353
23387
|
locator?: string | undefined;
|
|
23354
23388
|
errors?: string[] | undefined;
|
|
23355
23389
|
}[] | undefined;
|
|
23390
|
+
success?: boolean | undefined;
|
|
23356
23391
|
} | undefined;
|
|
23357
23392
|
changeInstructions?: ({
|
|
23358
23393
|
locator: string;
|
|
@@ -23460,12 +23495,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23460
23495
|
baseTransactionLocator?: string | undefined;
|
|
23461
23496
|
aggregateTransactionLocator?: string | undefined;
|
|
23462
23497
|
validationResult?: {
|
|
23463
|
-
success: boolean;
|
|
23464
23498
|
validationItems?: {
|
|
23465
23499
|
elementType?: string | undefined;
|
|
23466
23500
|
locator?: string | undefined;
|
|
23467
23501
|
errors?: string[] | undefined;
|
|
23468
23502
|
}[] | undefined;
|
|
23503
|
+
success?: boolean | undefined;
|
|
23469
23504
|
} | undefined;
|
|
23470
23505
|
changeInstructions?: ({
|
|
23471
23506
|
locator: string;
|
|
@@ -23552,12 +23587,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23552
23587
|
baseTransactionLocator?: string | undefined;
|
|
23553
23588
|
aggregateTransactionLocator?: string | undefined;
|
|
23554
23589
|
validationResult?: {
|
|
23555
|
-
success: boolean;
|
|
23556
23590
|
validationItems?: {
|
|
23557
23591
|
elementType?: string | undefined;
|
|
23558
23592
|
locator?: string | undefined;
|
|
23559
23593
|
errors?: string[] | undefined;
|
|
23560
23594
|
}[] | undefined;
|
|
23595
|
+
success?: boolean | undefined;
|
|
23561
23596
|
} | undefined;
|
|
23562
23597
|
changeInstructions?: ({
|
|
23563
23598
|
locator: string;
|
|
@@ -23667,12 +23702,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23667
23702
|
baseTransactionLocator?: string | undefined;
|
|
23668
23703
|
aggregateTransactionLocator?: string | undefined;
|
|
23669
23704
|
validationResult?: {
|
|
23670
|
-
success: boolean;
|
|
23671
23705
|
validationItems?: {
|
|
23672
23706
|
elementType?: string | undefined;
|
|
23673
23707
|
locator?: string | undefined;
|
|
23674
23708
|
errors?: string[] | undefined;
|
|
23675
23709
|
}[] | undefined;
|
|
23710
|
+
success?: boolean | undefined;
|
|
23676
23711
|
} | undefined;
|
|
23677
23712
|
changeInstructions?: ({
|
|
23678
23713
|
locator: string;
|
|
@@ -23759,12 +23794,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23759
23794
|
baseTransactionLocator?: string | undefined;
|
|
23760
23795
|
aggregateTransactionLocator?: string | undefined;
|
|
23761
23796
|
validationResult?: {
|
|
23762
|
-
success: boolean;
|
|
23763
23797
|
validationItems?: {
|
|
23764
23798
|
elementType?: string | undefined;
|
|
23765
23799
|
locator?: string | undefined;
|
|
23766
23800
|
errors?: string[] | undefined;
|
|
23767
23801
|
}[] | undefined;
|
|
23802
|
+
success?: boolean | undefined;
|
|
23768
23803
|
} | undefined;
|
|
23769
23804
|
changeInstructions?: ({
|
|
23770
23805
|
locator: string;
|
|
@@ -23875,12 +23910,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23875
23910
|
baseTransactionLocator?: string | undefined;
|
|
23876
23911
|
aggregateTransactionLocator?: string | undefined;
|
|
23877
23912
|
validationResult?: {
|
|
23878
|
-
success: boolean;
|
|
23879
23913
|
validationItems?: {
|
|
23880
23914
|
elementType?: string | undefined;
|
|
23881
23915
|
locator?: string | undefined;
|
|
23882
23916
|
errors?: string[] | undefined;
|
|
23883
23917
|
}[] | undefined;
|
|
23918
|
+
success?: boolean | undefined;
|
|
23884
23919
|
} | undefined;
|
|
23885
23920
|
changeInstructions?: ({
|
|
23886
23921
|
locator: string;
|
|
@@ -23967,12 +24002,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23967
24002
|
baseTransactionLocator?: string | undefined;
|
|
23968
24003
|
aggregateTransactionLocator?: string | undefined;
|
|
23969
24004
|
validationResult?: {
|
|
23970
|
-
success: boolean;
|
|
23971
24005
|
validationItems?: {
|
|
23972
24006
|
elementType?: string | undefined;
|
|
23973
24007
|
locator?: string | undefined;
|
|
23974
24008
|
errors?: string[] | undefined;
|
|
23975
24009
|
}[] | undefined;
|
|
24010
|
+
success?: boolean | undefined;
|
|
23976
24011
|
} | undefined;
|
|
23977
24012
|
changeInstructions?: ({
|
|
23978
24013
|
locator: string;
|
|
@@ -24218,21 +24253,21 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
24218
24253
|
locator?: string | undefined;
|
|
24219
24254
|
errors?: string[] | undefined;
|
|
24220
24255
|
}>, "many">>;
|
|
24221
|
-
success: z.ZodBoolean
|
|
24256
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
24222
24257
|
}, "strip", z.ZodTypeAny, {
|
|
24223
|
-
success: boolean;
|
|
24224
24258
|
validationItems?: {
|
|
24225
24259
|
elementType?: string | undefined;
|
|
24226
24260
|
locator?: string | undefined;
|
|
24227
24261
|
errors?: string[] | undefined;
|
|
24228
24262
|
}[] | undefined;
|
|
24263
|
+
success?: boolean | undefined;
|
|
24229
24264
|
}, {
|
|
24230
|
-
success: boolean;
|
|
24231
24265
|
validationItems?: {
|
|
24232
24266
|
elementType?: string | undefined;
|
|
24233
24267
|
locator?: string | undefined;
|
|
24234
24268
|
errors?: string[] | undefined;
|
|
24235
24269
|
}[] | undefined;
|
|
24270
|
+
success?: boolean | undefined;
|
|
24236
24271
|
}>>;
|
|
24237
24272
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
24238
24273
|
action: z.ZodString;
|
|
@@ -24743,21 +24778,21 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
24743
24778
|
locator?: string | undefined;
|
|
24744
24779
|
errors?: string[] | undefined;
|
|
24745
24780
|
}>, "many">>;
|
|
24746
|
-
success: z.ZodBoolean
|
|
24781
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
24747
24782
|
}, "strip", z.ZodTypeAny, {
|
|
24748
|
-
success: boolean;
|
|
24749
24783
|
validationItems?: {
|
|
24750
24784
|
elementType?: string | undefined;
|
|
24751
24785
|
locator?: string | undefined;
|
|
24752
24786
|
errors?: string[] | undefined;
|
|
24753
24787
|
}[] | undefined;
|
|
24788
|
+
success?: boolean | undefined;
|
|
24754
24789
|
}, {
|
|
24755
|
-
success: boolean;
|
|
24756
24790
|
validationItems?: {
|
|
24757
24791
|
elementType?: string | undefined;
|
|
24758
24792
|
locator?: string | undefined;
|
|
24759
24793
|
errors?: string[] | undefined;
|
|
24760
24794
|
}[] | undefined;
|
|
24795
|
+
success?: boolean | undefined;
|
|
24761
24796
|
}>>;
|
|
24762
24797
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
24763
24798
|
action: z.ZodString;
|
|
@@ -25124,12 +25159,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25124
25159
|
baseTransactionLocator?: string | undefined;
|
|
25125
25160
|
aggregateTransactionLocator?: string | undefined;
|
|
25126
25161
|
validationResult?: {
|
|
25127
|
-
success: boolean;
|
|
25128
25162
|
validationItems?: {
|
|
25129
25163
|
elementType?: string | undefined;
|
|
25130
25164
|
locator?: string | undefined;
|
|
25131
25165
|
errors?: string[] | undefined;
|
|
25132
25166
|
}[] | undefined;
|
|
25167
|
+
success?: boolean | undefined;
|
|
25133
25168
|
} | undefined;
|
|
25134
25169
|
changeInstructions?: ({
|
|
25135
25170
|
locator: string;
|
|
@@ -25226,12 +25261,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25226
25261
|
baseTransactionLocator?: string | undefined;
|
|
25227
25262
|
aggregateTransactionLocator?: string | undefined;
|
|
25228
25263
|
validationResult?: {
|
|
25229
|
-
success: boolean;
|
|
25230
25264
|
validationItems?: {
|
|
25231
25265
|
elementType?: string | undefined;
|
|
25232
25266
|
locator?: string | undefined;
|
|
25233
25267
|
errors?: string[] | undefined;
|
|
25234
25268
|
}[] | undefined;
|
|
25269
|
+
success?: boolean | undefined;
|
|
25235
25270
|
} | undefined;
|
|
25236
25271
|
changeInstructions?: ({
|
|
25237
25272
|
locator: string;
|
|
@@ -25340,12 +25375,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25340
25375
|
baseTransactionLocator?: string | undefined;
|
|
25341
25376
|
aggregateTransactionLocator?: string | undefined;
|
|
25342
25377
|
validationResult?: {
|
|
25343
|
-
success: boolean;
|
|
25344
25378
|
validationItems?: {
|
|
25345
25379
|
elementType?: string | undefined;
|
|
25346
25380
|
locator?: string | undefined;
|
|
25347
25381
|
errors?: string[] | undefined;
|
|
25348
25382
|
}[] | undefined;
|
|
25383
|
+
success?: boolean | undefined;
|
|
25349
25384
|
} | undefined;
|
|
25350
25385
|
changeInstructions?: ({
|
|
25351
25386
|
locator: string;
|
|
@@ -25432,12 +25467,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25432
25467
|
baseTransactionLocator?: string | undefined;
|
|
25433
25468
|
aggregateTransactionLocator?: string | undefined;
|
|
25434
25469
|
validationResult?: {
|
|
25435
|
-
success: boolean;
|
|
25436
25470
|
validationItems?: {
|
|
25437
25471
|
elementType?: string | undefined;
|
|
25438
25472
|
locator?: string | undefined;
|
|
25439
25473
|
errors?: string[] | undefined;
|
|
25440
25474
|
}[] | undefined;
|
|
25475
|
+
success?: boolean | undefined;
|
|
25441
25476
|
} | undefined;
|
|
25442
25477
|
changeInstructions?: ({
|
|
25443
25478
|
locator: string;
|
|
@@ -25545,12 +25580,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25545
25580
|
baseTransactionLocator?: string | undefined;
|
|
25546
25581
|
aggregateTransactionLocator?: string | undefined;
|
|
25547
25582
|
validationResult?: {
|
|
25548
|
-
success: boolean;
|
|
25549
25583
|
validationItems?: {
|
|
25550
25584
|
elementType?: string | undefined;
|
|
25551
25585
|
locator?: string | undefined;
|
|
25552
25586
|
errors?: string[] | undefined;
|
|
25553
25587
|
}[] | undefined;
|
|
25588
|
+
success?: boolean | undefined;
|
|
25554
25589
|
} | undefined;
|
|
25555
25590
|
changeInstructions?: ({
|
|
25556
25591
|
locator: string;
|
|
@@ -25637,12 +25672,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25637
25672
|
baseTransactionLocator?: string | undefined;
|
|
25638
25673
|
aggregateTransactionLocator?: string | undefined;
|
|
25639
25674
|
validationResult?: {
|
|
25640
|
-
success: boolean;
|
|
25641
25675
|
validationItems?: {
|
|
25642
25676
|
elementType?: string | undefined;
|
|
25643
25677
|
locator?: string | undefined;
|
|
25644
25678
|
errors?: string[] | undefined;
|
|
25645
25679
|
}[] | undefined;
|
|
25680
|
+
success?: boolean | undefined;
|
|
25646
25681
|
} | undefined;
|
|
25647
25682
|
changeInstructions?: ({
|
|
25648
25683
|
locator: string;
|
|
@@ -25820,21 +25855,21 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25820
25855
|
locator?: string | undefined;
|
|
25821
25856
|
errors?: string[] | undefined;
|
|
25822
25857
|
}>, "many">>;
|
|
25823
|
-
success: z.ZodBoolean
|
|
25858
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
25824
25859
|
}, "strip", z.ZodTypeAny, {
|
|
25825
|
-
success: boolean;
|
|
25826
25860
|
validationItems?: {
|
|
25827
25861
|
elementType?: string | undefined;
|
|
25828
25862
|
locator?: string | undefined;
|
|
25829
25863
|
errors?: string[] | undefined;
|
|
25830
25864
|
}[] | undefined;
|
|
25865
|
+
success?: boolean | undefined;
|
|
25831
25866
|
}, {
|
|
25832
|
-
success: boolean;
|
|
25833
25867
|
validationItems?: {
|
|
25834
25868
|
elementType?: string | undefined;
|
|
25835
25869
|
locator?: string | undefined;
|
|
25836
25870
|
errors?: string[] | undefined;
|
|
25837
25871
|
}[] | undefined;
|
|
25872
|
+
success?: boolean | undefined;
|
|
25838
25873
|
}>>;
|
|
25839
25874
|
}, {
|
|
25840
25875
|
aggregatedTransactions: z.ZodLazy<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -25952,21 +25987,21 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25952
25987
|
locator?: string | undefined;
|
|
25953
25988
|
errors?: string[] | undefined;
|
|
25954
25989
|
}>, "many">>;
|
|
25955
|
-
success: z.ZodBoolean
|
|
25990
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
25956
25991
|
}, "strip", z.ZodTypeAny, {
|
|
25957
|
-
success: boolean;
|
|
25958
25992
|
validationItems?: {
|
|
25959
25993
|
elementType?: string | undefined;
|
|
25960
25994
|
locator?: string | undefined;
|
|
25961
25995
|
errors?: string[] | undefined;
|
|
25962
25996
|
}[] | undefined;
|
|
25997
|
+
success?: boolean | undefined;
|
|
25963
25998
|
}, {
|
|
25964
|
-
success: boolean;
|
|
25965
25999
|
validationItems?: {
|
|
25966
26000
|
elementType?: string | undefined;
|
|
25967
26001
|
locator?: string | undefined;
|
|
25968
26002
|
errors?: string[] | undefined;
|
|
25969
26003
|
}[] | undefined;
|
|
26004
|
+
success?: boolean | undefined;
|
|
25970
26005
|
}>>;
|
|
25971
26006
|
}, "strip", z.ZodTypeAny, {
|
|
25972
26007
|
locator: string;
|
|
@@ -26003,12 +26038,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26003
26038
|
baseTransactionLocator?: string | undefined;
|
|
26004
26039
|
aggregateTransactionLocator?: string | undefined;
|
|
26005
26040
|
validationResult?: {
|
|
26006
|
-
success: boolean;
|
|
26007
26041
|
validationItems?: {
|
|
26008
26042
|
elementType?: string | undefined;
|
|
26009
26043
|
locator?: string | undefined;
|
|
26010
26044
|
errors?: string[] | undefined;
|
|
26011
26045
|
}[] | undefined;
|
|
26046
|
+
success?: boolean | undefined;
|
|
26012
26047
|
} | undefined;
|
|
26013
26048
|
changeInstructions?: any[] | undefined;
|
|
26014
26049
|
}, {
|
|
@@ -26046,12 +26081,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26046
26081
|
baseTransactionLocator?: string | undefined;
|
|
26047
26082
|
aggregateTransactionLocator?: string | undefined;
|
|
26048
26083
|
validationResult?: {
|
|
26049
|
-
success: boolean;
|
|
26050
26084
|
validationItems?: {
|
|
26051
26085
|
elementType?: string | undefined;
|
|
26052
26086
|
locator?: string | undefined;
|
|
26053
26087
|
errors?: string[] | undefined;
|
|
26054
26088
|
}[] | undefined;
|
|
26089
|
+
success?: boolean | undefined;
|
|
26055
26090
|
} | undefined;
|
|
26056
26091
|
changeInstructions?: any[] | undefined;
|
|
26057
26092
|
}>, "many">>>;
|
|
@@ -26090,12 +26125,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26090
26125
|
baseTransactionLocator?: string | undefined;
|
|
26091
26126
|
aggregateTransactionLocator?: string | undefined;
|
|
26092
26127
|
validationResult?: {
|
|
26093
|
-
success: boolean;
|
|
26094
26128
|
validationItems?: {
|
|
26095
26129
|
elementType?: string | undefined;
|
|
26096
26130
|
locator?: string | undefined;
|
|
26097
26131
|
errors?: string[] | undefined;
|
|
26098
26132
|
}[] | undefined;
|
|
26133
|
+
success?: boolean | undefined;
|
|
26099
26134
|
} | undefined;
|
|
26100
26135
|
changeInstructions?: any[] | undefined;
|
|
26101
26136
|
aggregatedTransactions?: {
|
|
@@ -26133,12 +26168,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26133
26168
|
baseTransactionLocator?: string | undefined;
|
|
26134
26169
|
aggregateTransactionLocator?: string | undefined;
|
|
26135
26170
|
validationResult?: {
|
|
26136
|
-
success: boolean;
|
|
26137
26171
|
validationItems?: {
|
|
26138
26172
|
elementType?: string | undefined;
|
|
26139
26173
|
locator?: string | undefined;
|
|
26140
26174
|
errors?: string[] | undefined;
|
|
26141
26175
|
}[] | undefined;
|
|
26176
|
+
success?: boolean | undefined;
|
|
26142
26177
|
} | undefined;
|
|
26143
26178
|
changeInstructions?: any[] | undefined;
|
|
26144
26179
|
}[] | undefined;
|
|
@@ -26177,12 +26212,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26177
26212
|
baseTransactionLocator?: string | undefined;
|
|
26178
26213
|
aggregateTransactionLocator?: string | undefined;
|
|
26179
26214
|
validationResult?: {
|
|
26180
|
-
success: boolean;
|
|
26181
26215
|
validationItems?: {
|
|
26182
26216
|
elementType?: string | undefined;
|
|
26183
26217
|
locator?: string | undefined;
|
|
26184
26218
|
errors?: string[] | undefined;
|
|
26185
26219
|
}[] | undefined;
|
|
26220
|
+
success?: boolean | undefined;
|
|
26186
26221
|
} | undefined;
|
|
26187
26222
|
changeInstructions?: any[] | undefined;
|
|
26188
26223
|
aggregatedTransactions?: {
|
|
@@ -26220,12 +26255,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26220
26255
|
baseTransactionLocator?: string | undefined;
|
|
26221
26256
|
aggregateTransactionLocator?: string | undefined;
|
|
26222
26257
|
validationResult?: {
|
|
26223
|
-
success: boolean;
|
|
26224
26258
|
validationItems?: {
|
|
26225
26259
|
elementType?: string | undefined;
|
|
26226
26260
|
locator?: string | undefined;
|
|
26227
26261
|
errors?: string[] | undefined;
|
|
26228
26262
|
}[] | undefined;
|
|
26263
|
+
success?: boolean | undefined;
|
|
26229
26264
|
} | undefined;
|
|
26230
26265
|
changeInstructions?: any[] | undefined;
|
|
26231
26266
|
}[] | undefined;
|
|
@@ -27466,21 +27501,21 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27466
27501
|
locator?: string | undefined;
|
|
27467
27502
|
errors?: string[] | undefined;
|
|
27468
27503
|
}>, "many">>;
|
|
27469
|
-
success: z.ZodBoolean
|
|
27504
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
27470
27505
|
}, "strip", z.ZodTypeAny, {
|
|
27471
|
-
success: boolean;
|
|
27472
27506
|
validationItems?: {
|
|
27473
27507
|
elementType?: string | undefined;
|
|
27474
27508
|
locator?: string | undefined;
|
|
27475
27509
|
errors?: string[] | undefined;
|
|
27476
27510
|
}[] | undefined;
|
|
27511
|
+
success?: boolean | undefined;
|
|
27477
27512
|
}, {
|
|
27478
|
-
success: boolean;
|
|
27479
27513
|
validationItems?: {
|
|
27480
27514
|
elementType?: string | undefined;
|
|
27481
27515
|
locator?: string | undefined;
|
|
27482
27516
|
errors?: string[] | undefined;
|
|
27483
27517
|
}[] | undefined;
|
|
27518
|
+
success?: boolean | undefined;
|
|
27484
27519
|
}>>;
|
|
27485
27520
|
productName: z.ZodString;
|
|
27486
27521
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -27536,12 +27571,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27536
27571
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27537
27572
|
duration?: number | undefined;
|
|
27538
27573
|
validationResult?: {
|
|
27539
|
-
success: boolean;
|
|
27540
27574
|
validationItems?: {
|
|
27541
27575
|
elementType?: string | undefined;
|
|
27542
27576
|
locator?: string | undefined;
|
|
27543
27577
|
errors?: string[] | undefined;
|
|
27544
27578
|
}[] | undefined;
|
|
27579
|
+
success?: boolean | undefined;
|
|
27545
27580
|
} | undefined;
|
|
27546
27581
|
}, {
|
|
27547
27582
|
locator: string;
|
|
@@ -27582,12 +27617,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27582
27617
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27583
27618
|
duration?: number | undefined;
|
|
27584
27619
|
validationResult?: {
|
|
27585
|
-
success: boolean;
|
|
27586
27620
|
validationItems?: {
|
|
27587
27621
|
elementType?: string | undefined;
|
|
27588
27622
|
locator?: string | undefined;
|
|
27589
27623
|
errors?: string[] | undefined;
|
|
27590
27624
|
}[] | undefined;
|
|
27625
|
+
success?: boolean | undefined;
|
|
27591
27626
|
} | undefined;
|
|
27592
27627
|
}>, "many">;
|
|
27593
27628
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27630,12 +27665,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27630
27665
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27631
27666
|
duration?: number | undefined;
|
|
27632
27667
|
validationResult?: {
|
|
27633
|
-
success: boolean;
|
|
27634
27668
|
validationItems?: {
|
|
27635
27669
|
elementType?: string | undefined;
|
|
27636
27670
|
locator?: string | undefined;
|
|
27637
27671
|
errors?: string[] | undefined;
|
|
27638
27672
|
}[] | undefined;
|
|
27673
|
+
success?: boolean | undefined;
|
|
27639
27674
|
} | undefined;
|
|
27640
27675
|
}[];
|
|
27641
27676
|
listCompleted: boolean;
|
|
@@ -27679,12 +27714,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27679
27714
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27680
27715
|
duration?: number | undefined;
|
|
27681
27716
|
validationResult?: {
|
|
27682
|
-
success: boolean;
|
|
27683
27717
|
validationItems?: {
|
|
27684
27718
|
elementType?: string | undefined;
|
|
27685
27719
|
locator?: string | undefined;
|
|
27686
27720
|
errors?: string[] | undefined;
|
|
27687
27721
|
}[] | undefined;
|
|
27722
|
+
success?: boolean | undefined;
|
|
27688
27723
|
} | undefined;
|
|
27689
27724
|
}[];
|
|
27690
27725
|
listCompleted: boolean;
|
|
@@ -27717,21 +27752,21 @@ export declare const QuickQuotePriceResponseSchema: z.ZodObject<{
|
|
|
27717
27752
|
locator?: string | undefined;
|
|
27718
27753
|
errors?: string[] | undefined;
|
|
27719
27754
|
}>, "many">>;
|
|
27720
|
-
success: z.ZodBoolean
|
|
27755
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
27721
27756
|
}, "strip", z.ZodTypeAny, {
|
|
27722
|
-
success: boolean;
|
|
27723
27757
|
validationItems?: {
|
|
27724
27758
|
elementType?: string | undefined;
|
|
27725
27759
|
locator?: string | undefined;
|
|
27726
27760
|
errors?: string[] | undefined;
|
|
27727
27761
|
}[] | undefined;
|
|
27762
|
+
success?: boolean | undefined;
|
|
27728
27763
|
}, {
|
|
27729
|
-
success: boolean;
|
|
27730
27764
|
validationItems?: {
|
|
27731
27765
|
elementType?: string | undefined;
|
|
27732
27766
|
locator?: string | undefined;
|
|
27733
27767
|
errors?: string[] | undefined;
|
|
27734
27768
|
}[] | undefined;
|
|
27769
|
+
success?: boolean | undefined;
|
|
27735
27770
|
}>>;
|
|
27736
27771
|
productName: z.ZodString;
|
|
27737
27772
|
duration: z.ZodNumber;
|
|
@@ -27805,12 +27840,12 @@ export declare const QuickQuotePriceResponseSchema: z.ZodObject<{
|
|
|
27805
27840
|
tenantLocator: string;
|
|
27806
27841
|
accountLocator?: string | undefined;
|
|
27807
27842
|
validationResult?: {
|
|
27808
|
-
success: boolean;
|
|
27809
27843
|
validationItems?: {
|
|
27810
27844
|
elementType?: string | undefined;
|
|
27811
27845
|
locator?: string | undefined;
|
|
27812
27846
|
errors?: string[] | undefined;
|
|
27813
27847
|
}[] | undefined;
|
|
27848
|
+
success?: boolean | undefined;
|
|
27814
27849
|
} | undefined;
|
|
27815
27850
|
}, {
|
|
27816
27851
|
items: {
|
|
@@ -27839,12 +27874,12 @@ export declare const QuickQuotePriceResponseSchema: z.ZodObject<{
|
|
|
27839
27874
|
tenantLocator: string;
|
|
27840
27875
|
accountLocator?: string | undefined;
|
|
27841
27876
|
validationResult?: {
|
|
27842
|
-
success: boolean;
|
|
27843
27877
|
validationItems?: {
|
|
27844
27878
|
elementType?: string | undefined;
|
|
27845
27879
|
locator?: string | undefined;
|
|
27846
27880
|
errors?: string[] | undefined;
|
|
27847
27881
|
}[] | undefined;
|
|
27882
|
+
success?: boolean | undefined;
|
|
27848
27883
|
} | undefined;
|
|
27849
27884
|
}>;
|
|
27850
27885
|
|
|
@@ -27872,21 +27907,21 @@ export declare const QuickQuoteQuoteResponseSchema: z.ZodObject<{
|
|
|
27872
27907
|
locator?: string | undefined;
|
|
27873
27908
|
errors?: string[] | undefined;
|
|
27874
27909
|
}>, "many">>;
|
|
27875
|
-
success: z.ZodBoolean
|
|
27910
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
27876
27911
|
}, "strip", z.ZodTypeAny, {
|
|
27877
|
-
success: boolean;
|
|
27878
27912
|
validationItems?: {
|
|
27879
27913
|
elementType?: string | undefined;
|
|
27880
27914
|
locator?: string | undefined;
|
|
27881
27915
|
errors?: string[] | undefined;
|
|
27882
27916
|
}[] | undefined;
|
|
27917
|
+
success?: boolean | undefined;
|
|
27883
27918
|
}, {
|
|
27884
|
-
success: boolean;
|
|
27885
27919
|
validationItems?: {
|
|
27886
27920
|
elementType?: string | undefined;
|
|
27887
27921
|
locator?: string | undefined;
|
|
27888
27922
|
errors?: string[] | undefined;
|
|
27889
27923
|
}[] | undefined;
|
|
27924
|
+
success?: boolean | undefined;
|
|
27890
27925
|
}>>;
|
|
27891
27926
|
productName: z.ZodString;
|
|
27892
27927
|
duration: z.ZodNumber;
|
|
@@ -28237,12 +28272,12 @@ export declare const QuickQuoteQuoteResponseSchema: z.ZodObject<{
|
|
|
28237
28272
|
} | undefined;
|
|
28238
28273
|
accountLocator?: string | undefined;
|
|
28239
28274
|
validationResult?: {
|
|
28240
|
-
success: boolean;
|
|
28241
28275
|
validationItems?: {
|
|
28242
28276
|
elementType?: string | undefined;
|
|
28243
28277
|
locator?: string | undefined;
|
|
28244
28278
|
errors?: string[] | undefined;
|
|
28245
28279
|
}[] | undefined;
|
|
28280
|
+
success?: boolean | undefined;
|
|
28246
28281
|
} | undefined;
|
|
28247
28282
|
}, {
|
|
28248
28283
|
startTime: string;
|
|
@@ -28315,12 +28350,12 @@ export declare const QuickQuoteQuoteResponseSchema: z.ZodObject<{
|
|
|
28315
28350
|
} | undefined;
|
|
28316
28351
|
accountLocator?: string | undefined;
|
|
28317
28352
|
validationResult?: {
|
|
28318
|
-
success: boolean;
|
|
28319
28353
|
validationItems?: {
|
|
28320
28354
|
elementType?: string | undefined;
|
|
28321
28355
|
locator?: string | undefined;
|
|
28322
28356
|
errors?: string[] | undefined;
|
|
28323
28357
|
}[] | undefined;
|
|
28358
|
+
success?: boolean | undefined;
|
|
28324
28359
|
} | undefined;
|
|
28325
28360
|
}>;
|
|
28326
28361
|
|
|
@@ -28389,21 +28424,21 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
28389
28424
|
locator?: string | undefined;
|
|
28390
28425
|
errors?: string[] | undefined;
|
|
28391
28426
|
}>, "many">>;
|
|
28392
|
-
success: z.ZodBoolean
|
|
28427
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
28393
28428
|
}, "strip", z.ZodTypeAny, {
|
|
28394
|
-
success: boolean;
|
|
28395
28429
|
validationItems?: {
|
|
28396
28430
|
elementType?: string | undefined;
|
|
28397
28431
|
locator?: string | undefined;
|
|
28398
28432
|
errors?: string[] | undefined;
|
|
28399
28433
|
}[] | undefined;
|
|
28434
|
+
success?: boolean | undefined;
|
|
28400
28435
|
}, {
|
|
28401
|
-
success: boolean;
|
|
28402
28436
|
validationItems?: {
|
|
28403
28437
|
elementType?: string | undefined;
|
|
28404
28438
|
locator?: string | undefined;
|
|
28405
28439
|
errors?: string[] | undefined;
|
|
28406
28440
|
}[] | undefined;
|
|
28441
|
+
success?: boolean | undefined;
|
|
28407
28442
|
}>>;
|
|
28408
28443
|
productName: z.ZodString;
|
|
28409
28444
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -28459,12 +28494,12 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
28459
28494
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
28460
28495
|
duration?: number | undefined;
|
|
28461
28496
|
validationResult?: {
|
|
28462
|
-
success: boolean;
|
|
28463
28497
|
validationItems?: {
|
|
28464
28498
|
elementType?: string | undefined;
|
|
28465
28499
|
locator?: string | undefined;
|
|
28466
28500
|
errors?: string[] | undefined;
|
|
28467
28501
|
}[] | undefined;
|
|
28502
|
+
success?: boolean | undefined;
|
|
28468
28503
|
} | undefined;
|
|
28469
28504
|
}, {
|
|
28470
28505
|
locator: string;
|
|
@@ -28505,12 +28540,12 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
28505
28540
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
28506
28541
|
duration?: number | undefined;
|
|
28507
28542
|
validationResult?: {
|
|
28508
|
-
success: boolean;
|
|
28509
28543
|
validationItems?: {
|
|
28510
28544
|
elementType?: string | undefined;
|
|
28511
28545
|
locator?: string | undefined;
|
|
28512
28546
|
errors?: string[] | undefined;
|
|
28513
28547
|
}[] | undefined;
|
|
28548
|
+
success?: boolean | undefined;
|
|
28514
28549
|
} | undefined;
|
|
28515
28550
|
}>;
|
|
28516
28551
|
|
|
@@ -29137,21 +29172,21 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29137
29172
|
locator?: string | undefined;
|
|
29138
29173
|
errors?: string[] | undefined;
|
|
29139
29174
|
}>, "many">>;
|
|
29140
|
-
success: z.ZodBoolean
|
|
29175
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
29141
29176
|
}, "strip", z.ZodTypeAny, {
|
|
29142
|
-
success: boolean;
|
|
29143
29177
|
validationItems?: {
|
|
29144
29178
|
elementType?: string | undefined;
|
|
29145
29179
|
locator?: string | undefined;
|
|
29146
29180
|
errors?: string[] | undefined;
|
|
29147
29181
|
}[] | undefined;
|
|
29182
|
+
success?: boolean | undefined;
|
|
29148
29183
|
}, {
|
|
29149
|
-
success: boolean;
|
|
29150
29184
|
validationItems?: {
|
|
29151
29185
|
elementType?: string | undefined;
|
|
29152
29186
|
locator?: string | undefined;
|
|
29153
29187
|
errors?: string[] | undefined;
|
|
29154
29188
|
}[] | undefined;
|
|
29189
|
+
success?: boolean | undefined;
|
|
29155
29190
|
}>>;
|
|
29156
29191
|
static: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
29157
29192
|
issuedTime: z.ZodOptional<z.ZodString>;
|
|
@@ -29238,12 +29273,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29238
29273
|
duration?: number | undefined;
|
|
29239
29274
|
issuedTime?: string | undefined;
|
|
29240
29275
|
validationResult?: {
|
|
29241
|
-
success: boolean;
|
|
29242
29276
|
validationItems?: {
|
|
29243
29277
|
elementType?: string | undefined;
|
|
29244
29278
|
locator?: string | undefined;
|
|
29245
29279
|
errors?: string[] | undefined;
|
|
29246
29280
|
}[] | undefined;
|
|
29281
|
+
success?: boolean | undefined;
|
|
29247
29282
|
} | undefined;
|
|
29248
29283
|
acceptedTime?: string | undefined;
|
|
29249
29284
|
anonymizedAt?: string | undefined;
|
|
@@ -29322,12 +29357,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29322
29357
|
duration?: number | undefined;
|
|
29323
29358
|
issuedTime?: string | undefined;
|
|
29324
29359
|
validationResult?: {
|
|
29325
|
-
success: boolean;
|
|
29326
29360
|
validationItems?: {
|
|
29327
29361
|
elementType?: string | undefined;
|
|
29328
29362
|
locator?: string | undefined;
|
|
29329
29363
|
errors?: string[] | undefined;
|
|
29330
29364
|
}[] | undefined;
|
|
29365
|
+
success?: boolean | undefined;
|
|
29331
29366
|
} | undefined;
|
|
29332
29367
|
acceptedTime?: string | undefined;
|
|
29333
29368
|
anonymizedAt?: string | undefined;
|
|
@@ -29408,12 +29443,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29408
29443
|
duration?: number | undefined;
|
|
29409
29444
|
issuedTime?: string | undefined;
|
|
29410
29445
|
validationResult?: {
|
|
29411
|
-
success: boolean;
|
|
29412
29446
|
validationItems?: {
|
|
29413
29447
|
elementType?: string | undefined;
|
|
29414
29448
|
locator?: string | undefined;
|
|
29415
29449
|
errors?: string[] | undefined;
|
|
29416
29450
|
}[] | undefined;
|
|
29451
|
+
success?: boolean | undefined;
|
|
29417
29452
|
} | undefined;
|
|
29418
29453
|
acceptedTime?: string | undefined;
|
|
29419
29454
|
anonymizedAt?: string | undefined;
|
|
@@ -29495,12 +29530,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29495
29530
|
duration?: number | undefined;
|
|
29496
29531
|
issuedTime?: string | undefined;
|
|
29497
29532
|
validationResult?: {
|
|
29498
|
-
success: boolean;
|
|
29499
29533
|
validationItems?: {
|
|
29500
29534
|
elementType?: string | undefined;
|
|
29501
29535
|
locator?: string | undefined;
|
|
29502
29536
|
errors?: string[] | undefined;
|
|
29503
29537
|
}[] | undefined;
|
|
29538
|
+
success?: boolean | undefined;
|
|
29504
29539
|
} | undefined;
|
|
29505
29540
|
acceptedTime?: string | undefined;
|
|
29506
29541
|
anonymizedAt?: string | undefined;
|
|
@@ -29630,21 +29665,21 @@ export declare const QuotePriceResponseSchema: z.ZodObject<{
|
|
|
29630
29665
|
locator?: string | undefined;
|
|
29631
29666
|
errors?: string[] | undefined;
|
|
29632
29667
|
}>, "many">>;
|
|
29633
|
-
success: z.ZodBoolean
|
|
29668
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
29634
29669
|
}, "strip", z.ZodTypeAny, {
|
|
29635
|
-
success: boolean;
|
|
29636
29670
|
validationItems?: {
|
|
29637
29671
|
elementType?: string | undefined;
|
|
29638
29672
|
locator?: string | undefined;
|
|
29639
29673
|
errors?: string[] | undefined;
|
|
29640
29674
|
}[] | undefined;
|
|
29675
|
+
success?: boolean | undefined;
|
|
29641
29676
|
}, {
|
|
29642
|
-
success: boolean;
|
|
29643
29677
|
validationItems?: {
|
|
29644
29678
|
elementType?: string | undefined;
|
|
29645
29679
|
locator?: string | undefined;
|
|
29646
29680
|
errors?: string[] | undefined;
|
|
29647
29681
|
}[] | undefined;
|
|
29682
|
+
success?: boolean | undefined;
|
|
29648
29683
|
}>>;
|
|
29649
29684
|
productName: z.ZodString;
|
|
29650
29685
|
duration: z.ZodNumber;
|
|
@@ -29677,12 +29712,12 @@ export declare const QuotePriceResponseSchema: z.ZodObject<{
|
|
|
29677
29712
|
quoteNumber: string;
|
|
29678
29713
|
tenantLocator: string;
|
|
29679
29714
|
validationResult?: {
|
|
29680
|
-
success: boolean;
|
|
29681
29715
|
validationItems?: {
|
|
29682
29716
|
elementType?: string | undefined;
|
|
29683
29717
|
locator?: string | undefined;
|
|
29684
29718
|
errors?: string[] | undefined;
|
|
29685
29719
|
}[] | undefined;
|
|
29720
|
+
success?: boolean | undefined;
|
|
29686
29721
|
} | undefined;
|
|
29687
29722
|
}, {
|
|
29688
29723
|
items: {
|
|
@@ -29712,12 +29747,12 @@ export declare const QuotePriceResponseSchema: z.ZodObject<{
|
|
|
29712
29747
|
quoteNumber: string;
|
|
29713
29748
|
tenantLocator: string;
|
|
29714
29749
|
validationResult?: {
|
|
29715
|
-
success: boolean;
|
|
29716
29750
|
validationItems?: {
|
|
29717
29751
|
elementType?: string | undefined;
|
|
29718
29752
|
locator?: string | undefined;
|
|
29719
29753
|
errors?: string[] | undefined;
|
|
29720
29754
|
}[] | undefined;
|
|
29755
|
+
success?: boolean | undefined;
|
|
29721
29756
|
} | undefined;
|
|
29722
29757
|
}>;
|
|
29723
29758
|
|
|
@@ -29781,21 +29816,21 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
29781
29816
|
locator?: string | undefined;
|
|
29782
29817
|
errors?: string[] | undefined;
|
|
29783
29818
|
}>, "many">>;
|
|
29784
|
-
success: z.ZodBoolean
|
|
29819
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
29785
29820
|
}, "strip", z.ZodTypeAny, {
|
|
29786
|
-
success: boolean;
|
|
29787
29821
|
validationItems?: {
|
|
29788
29822
|
elementType?: string | undefined;
|
|
29789
29823
|
locator?: string | undefined;
|
|
29790
29824
|
errors?: string[] | undefined;
|
|
29791
29825
|
}[] | undefined;
|
|
29826
|
+
success?: boolean | undefined;
|
|
29792
29827
|
}, {
|
|
29793
|
-
success: boolean;
|
|
29794
29828
|
validationItems?: {
|
|
29795
29829
|
elementType?: string | undefined;
|
|
29796
29830
|
locator?: string | undefined;
|
|
29797
29831
|
errors?: string[] | undefined;
|
|
29798
29832
|
}[] | undefined;
|
|
29833
|
+
success?: boolean | undefined;
|
|
29799
29834
|
}>>;
|
|
29800
29835
|
}, "strip", z.ZodTypeAny, {
|
|
29801
29836
|
accountLocator: string;
|
|
@@ -29820,12 +29855,12 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
29820
29855
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
29821
29856
|
duration?: number | undefined;
|
|
29822
29857
|
validationResult?: {
|
|
29823
|
-
success: boolean;
|
|
29824
29858
|
validationItems?: {
|
|
29825
29859
|
elementType?: string | undefined;
|
|
29826
29860
|
locator?: string | undefined;
|
|
29827
29861
|
errors?: string[] | undefined;
|
|
29828
29862
|
}[] | undefined;
|
|
29863
|
+
success?: boolean | undefined;
|
|
29829
29864
|
} | undefined;
|
|
29830
29865
|
}, {
|
|
29831
29866
|
accountLocator: string;
|
|
@@ -29850,12 +29885,12 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
29850
29885
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
29851
29886
|
duration?: number | undefined;
|
|
29852
29887
|
validationResult?: {
|
|
29853
|
-
success: boolean;
|
|
29854
29888
|
validationItems?: {
|
|
29855
29889
|
elementType?: string | undefined;
|
|
29856
29890
|
locator?: string | undefined;
|
|
29857
29891
|
errors?: string[] | undefined;
|
|
29858
29892
|
}[] | undefined;
|
|
29893
|
+
success?: boolean | undefined;
|
|
29859
29894
|
} | undefined;
|
|
29860
29895
|
}>;
|
|
29861
29896
|
|
|
@@ -30308,21 +30343,21 @@ export declare const QuoteResponseSchema: z.ZodObject<{
|
|
|
30308
30343
|
locator?: string | undefined;
|
|
30309
30344
|
errors?: string[] | undefined;
|
|
30310
30345
|
}>, "many">>;
|
|
30311
|
-
success: z.ZodBoolean
|
|
30346
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
30312
30347
|
}, "strip", z.ZodTypeAny, {
|
|
30313
|
-
success: boolean;
|
|
30314
30348
|
validationItems?: {
|
|
30315
30349
|
elementType?: string | undefined;
|
|
30316
30350
|
locator?: string | undefined;
|
|
30317
30351
|
errors?: string[] | undefined;
|
|
30318
30352
|
}[] | undefined;
|
|
30353
|
+
success?: boolean | undefined;
|
|
30319
30354
|
}, {
|
|
30320
|
-
success: boolean;
|
|
30321
30355
|
validationItems?: {
|
|
30322
30356
|
elementType?: string | undefined;
|
|
30323
30357
|
locator?: string | undefined;
|
|
30324
30358
|
errors?: string[] | undefined;
|
|
30325
30359
|
}[] | undefined;
|
|
30360
|
+
success?: boolean | undefined;
|
|
30326
30361
|
}>>;
|
|
30327
30362
|
static: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30328
30363
|
issuedTime: z.ZodOptional<z.ZodString>;
|
|
@@ -30409,12 +30444,12 @@ export declare const QuoteResponseSchema: z.ZodObject<{
|
|
|
30409
30444
|
duration?: number | undefined;
|
|
30410
30445
|
issuedTime?: string | undefined;
|
|
30411
30446
|
validationResult?: {
|
|
30412
|
-
success: boolean;
|
|
30413
30447
|
validationItems?: {
|
|
30414
30448
|
elementType?: string | undefined;
|
|
30415
30449
|
locator?: string | undefined;
|
|
30416
30450
|
errors?: string[] | undefined;
|
|
30417
30451
|
}[] | undefined;
|
|
30452
|
+
success?: boolean | undefined;
|
|
30418
30453
|
} | undefined;
|
|
30419
30454
|
acceptedTime?: string | undefined;
|
|
30420
30455
|
anonymizedAt?: string | undefined;
|
|
@@ -30493,12 +30528,12 @@ export declare const QuoteResponseSchema: z.ZodObject<{
|
|
|
30493
30528
|
duration?: number | undefined;
|
|
30494
30529
|
issuedTime?: string | undefined;
|
|
30495
30530
|
validationResult?: {
|
|
30496
|
-
success: boolean;
|
|
30497
30531
|
validationItems?: {
|
|
30498
30532
|
elementType?: string | undefined;
|
|
30499
30533
|
locator?: string | undefined;
|
|
30500
30534
|
errors?: string[] | undefined;
|
|
30501
30535
|
}[] | undefined;
|
|
30536
|
+
success?: boolean | undefined;
|
|
30502
30537
|
} | undefined;
|
|
30503
30538
|
acceptedTime?: string | undefined;
|
|
30504
30539
|
anonymizedAt?: string | undefined;
|
|
@@ -30590,21 +30625,21 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
30590
30625
|
locator?: string | undefined;
|
|
30591
30626
|
errors?: string[] | undefined;
|
|
30592
30627
|
}>, "many">>;
|
|
30593
|
-
success: z.ZodBoolean
|
|
30628
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
30594
30629
|
}, "strip", z.ZodTypeAny, {
|
|
30595
|
-
success: boolean;
|
|
30596
30630
|
validationItems?: {
|
|
30597
30631
|
elementType?: string | undefined;
|
|
30598
30632
|
locator?: string | undefined;
|
|
30599
30633
|
errors?: string[] | undefined;
|
|
30600
30634
|
}[] | undefined;
|
|
30635
|
+
success?: boolean | undefined;
|
|
30601
30636
|
}, {
|
|
30602
|
-
success: boolean;
|
|
30603
30637
|
validationItems?: {
|
|
30604
30638
|
elementType?: string | undefined;
|
|
30605
30639
|
locator?: string | undefined;
|
|
30606
30640
|
errors?: string[] | undefined;
|
|
30607
30641
|
}[] | undefined;
|
|
30642
|
+
success?: boolean | undefined;
|
|
30608
30643
|
}>>;
|
|
30609
30644
|
}, "strip", z.ZodTypeAny, {
|
|
30610
30645
|
quoteLocator: string;
|
|
@@ -30629,12 +30664,12 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
30629
30664
|
note?: string | undefined;
|
|
30630
30665
|
}[] | undefined;
|
|
30631
30666
|
validationResult?: {
|
|
30632
|
-
success: boolean;
|
|
30633
30667
|
validationItems?: {
|
|
30634
30668
|
elementType?: string | undefined;
|
|
30635
30669
|
locator?: string | undefined;
|
|
30636
30670
|
errors?: string[] | undefined;
|
|
30637
30671
|
}[] | undefined;
|
|
30672
|
+
success?: boolean | undefined;
|
|
30638
30673
|
} | undefined;
|
|
30639
30674
|
}, {
|
|
30640
30675
|
quoteLocator: string;
|
|
@@ -30659,12 +30694,12 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
30659
30694
|
note?: string | undefined;
|
|
30660
30695
|
}[] | undefined;
|
|
30661
30696
|
validationResult?: {
|
|
30662
|
-
success: boolean;
|
|
30663
30697
|
validationItems?: {
|
|
30664
30698
|
elementType?: string | undefined;
|
|
30665
30699
|
locator?: string | undefined;
|
|
30666
30700
|
errors?: string[] | undefined;
|
|
30667
30701
|
}[] | undefined;
|
|
30702
|
+
success?: boolean | undefined;
|
|
30668
30703
|
} | undefined;
|
|
30669
30704
|
}>;
|
|
30670
30705
|
|
|
@@ -30970,21 +31005,21 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
30970
31005
|
locator?: string | undefined;
|
|
30971
31006
|
errors?: string[] | undefined;
|
|
30972
31007
|
}>, "many">>;
|
|
30973
|
-
success: z.ZodBoolean
|
|
31008
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
30974
31009
|
}, "strip", z.ZodTypeAny, {
|
|
30975
|
-
success: boolean;
|
|
30976
31010
|
validationItems?: {
|
|
30977
31011
|
elementType?: string | undefined;
|
|
30978
31012
|
locator?: string | undefined;
|
|
30979
31013
|
errors?: string[] | undefined;
|
|
30980
31014
|
}[] | undefined;
|
|
31015
|
+
success?: boolean | undefined;
|
|
30981
31016
|
}, {
|
|
30982
|
-
success: boolean;
|
|
30983
31017
|
validationItems?: {
|
|
30984
31018
|
elementType?: string | undefined;
|
|
30985
31019
|
locator?: string | undefined;
|
|
30986
31020
|
errors?: string[] | undefined;
|
|
30987
31021
|
}[] | undefined;
|
|
31022
|
+
success?: boolean | undefined;
|
|
30988
31023
|
}>>;
|
|
30989
31024
|
productName: z.ZodString;
|
|
30990
31025
|
duration: z.ZodNumber;
|
|
@@ -31015,12 +31050,12 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
31015
31050
|
elementLocator?: string | undefined;
|
|
31016
31051
|
}[];
|
|
31017
31052
|
validationResult?: {
|
|
31018
|
-
success: boolean;
|
|
31019
31053
|
validationItems?: {
|
|
31020
31054
|
elementType?: string | undefined;
|
|
31021
31055
|
locator?: string | undefined;
|
|
31022
31056
|
errors?: string[] | undefined;
|
|
31023
31057
|
}[] | undefined;
|
|
31058
|
+
success?: boolean | undefined;
|
|
31024
31059
|
} | undefined;
|
|
31025
31060
|
}, {
|
|
31026
31061
|
accountLocator: string;
|
|
@@ -31048,12 +31083,12 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
31048
31083
|
elementLocator?: string | undefined;
|
|
31049
31084
|
}[];
|
|
31050
31085
|
validationResult?: {
|
|
31051
|
-
success: boolean;
|
|
31052
31086
|
validationItems?: {
|
|
31053
31087
|
elementType?: string | undefined;
|
|
31054
31088
|
locator?: string | undefined;
|
|
31055
31089
|
errors?: string[] | undefined;
|
|
31056
31090
|
}[] | undefined;
|
|
31091
|
+
success?: boolean | undefined;
|
|
31057
31092
|
} | undefined;
|
|
31058
31093
|
}>;
|
|
31059
31094
|
|
|
@@ -32412,6 +32447,19 @@ export declare const StaticDataUpdateRequestSchema: z.ZodObject<z.objectUtil.ext
|
|
|
32412
32447
|
removeData: Record<string, any>;
|
|
32413
32448
|
}>;
|
|
32414
32449
|
|
|
32450
|
+
export declare type SubPayment = z.infer<typeof SubPaymentSchema>;
|
|
32451
|
+
|
|
32452
|
+
export declare const SubPaymentSchema: z.ZodObject<{
|
|
32453
|
+
subpaymentLocator: z.ZodString;
|
|
32454
|
+
amount: z.ZodNumber;
|
|
32455
|
+
}, "strip", z.ZodTypeAny, {
|
|
32456
|
+
amount: number;
|
|
32457
|
+
subpaymentLocator: string;
|
|
32458
|
+
}, {
|
|
32459
|
+
amount: number;
|
|
32460
|
+
subpaymentLocator: string;
|
|
32461
|
+
}>;
|
|
32462
|
+
|
|
32415
32463
|
export declare type SubsegmentSummary = z.infer<typeof subsegmentSummarySchema>;
|
|
32416
32464
|
|
|
32417
32465
|
export declare const subsegmentSummarySchema: z.ZodObject<{
|
|
@@ -32987,21 +33035,21 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
32987
33035
|
locator?: string | undefined;
|
|
32988
33036
|
errors?: string[] | undefined;
|
|
32989
33037
|
}>, "many">>;
|
|
32990
|
-
success: z.ZodBoolean
|
|
33038
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
32991
33039
|
}, "strip", z.ZodTypeAny, {
|
|
32992
|
-
success: boolean;
|
|
32993
33040
|
validationItems?: {
|
|
32994
33041
|
elementType?: string | undefined;
|
|
32995
33042
|
locator?: string | undefined;
|
|
32996
33043
|
errors?: string[] | undefined;
|
|
32997
33044
|
}[] | undefined;
|
|
33045
|
+
success?: boolean | undefined;
|
|
32998
33046
|
}, {
|
|
32999
|
-
success: boolean;
|
|
33000
33047
|
validationItems?: {
|
|
33001
33048
|
elementType?: string | undefined;
|
|
33002
33049
|
locator?: string | undefined;
|
|
33003
33050
|
errors?: string[] | undefined;
|
|
33004
33051
|
}[] | undefined;
|
|
33052
|
+
success?: boolean | undefined;
|
|
33005
33053
|
}>>;
|
|
33006
33054
|
}, {
|
|
33007
33055
|
aggregatedTransactions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33061,21 +33109,21 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33061
33109
|
locator?: string | undefined;
|
|
33062
33110
|
errors?: string[] | undefined;
|
|
33063
33111
|
}>, "many">>;
|
|
33064
|
-
success: z.ZodBoolean
|
|
33112
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
33065
33113
|
}, "strip", z.ZodTypeAny, {
|
|
33066
|
-
success: boolean;
|
|
33067
33114
|
validationItems?: {
|
|
33068
33115
|
elementType?: string | undefined;
|
|
33069
33116
|
locator?: string | undefined;
|
|
33070
33117
|
errors?: string[] | undefined;
|
|
33071
33118
|
}[] | undefined;
|
|
33119
|
+
success?: boolean | undefined;
|
|
33072
33120
|
}, {
|
|
33073
|
-
success: boolean;
|
|
33074
33121
|
validationItems?: {
|
|
33075
33122
|
elementType?: string | undefined;
|
|
33076
33123
|
locator?: string | undefined;
|
|
33077
33124
|
errors?: string[] | undefined;
|
|
33078
33125
|
}[] | undefined;
|
|
33126
|
+
success?: boolean | undefined;
|
|
33079
33127
|
}>>;
|
|
33080
33128
|
}, "strip", z.ZodTypeAny, {
|
|
33081
33129
|
locator: string;
|
|
@@ -33099,12 +33147,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33099
33147
|
termLocator?: string | undefined;
|
|
33100
33148
|
createdAt?: string | undefined;
|
|
33101
33149
|
validationResult?: {
|
|
33102
|
-
success: boolean;
|
|
33103
33150
|
validationItems?: {
|
|
33104
33151
|
elementType?: string | undefined;
|
|
33105
33152
|
locator?: string | undefined;
|
|
33106
33153
|
errors?: string[] | undefined;
|
|
33107
33154
|
}[] | undefined;
|
|
33155
|
+
success?: boolean | undefined;
|
|
33108
33156
|
} | undefined;
|
|
33109
33157
|
}, {
|
|
33110
33158
|
locator: string;
|
|
@@ -33128,12 +33176,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33128
33176
|
termLocator?: string | undefined;
|
|
33129
33177
|
createdAt?: string | undefined;
|
|
33130
33178
|
validationResult?: {
|
|
33131
|
-
success: boolean;
|
|
33132
33179
|
validationItems?: {
|
|
33133
33180
|
elementType?: string | undefined;
|
|
33134
33181
|
locator?: string | undefined;
|
|
33135
33182
|
errors?: string[] | undefined;
|
|
33136
33183
|
}[] | undefined;
|
|
33184
|
+
success?: boolean | undefined;
|
|
33137
33185
|
} | undefined;
|
|
33138
33186
|
}>, "many">>;
|
|
33139
33187
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -33158,12 +33206,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33158
33206
|
termLocator?: string | undefined;
|
|
33159
33207
|
createdAt?: string | undefined;
|
|
33160
33208
|
validationResult?: {
|
|
33161
|
-
success: boolean;
|
|
33162
33209
|
validationItems?: {
|
|
33163
33210
|
elementType?: string | undefined;
|
|
33164
33211
|
locator?: string | undefined;
|
|
33165
33212
|
errors?: string[] | undefined;
|
|
33166
33213
|
}[] | undefined;
|
|
33214
|
+
success?: boolean | undefined;
|
|
33167
33215
|
} | undefined;
|
|
33168
33216
|
aggregatedTransactions?: {
|
|
33169
33217
|
locator: string;
|
|
@@ -33187,12 +33235,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33187
33235
|
termLocator?: string | undefined;
|
|
33188
33236
|
createdAt?: string | undefined;
|
|
33189
33237
|
validationResult?: {
|
|
33190
|
-
success: boolean;
|
|
33191
33238
|
validationItems?: {
|
|
33192
33239
|
elementType?: string | undefined;
|
|
33193
33240
|
locator?: string | undefined;
|
|
33194
33241
|
errors?: string[] | undefined;
|
|
33195
33242
|
}[] | undefined;
|
|
33243
|
+
success?: boolean | undefined;
|
|
33196
33244
|
} | undefined;
|
|
33197
33245
|
}[] | undefined;
|
|
33198
33246
|
}, {
|
|
@@ -33217,12 +33265,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33217
33265
|
termLocator?: string | undefined;
|
|
33218
33266
|
createdAt?: string | undefined;
|
|
33219
33267
|
validationResult?: {
|
|
33220
|
-
success: boolean;
|
|
33221
33268
|
validationItems?: {
|
|
33222
33269
|
elementType?: string | undefined;
|
|
33223
33270
|
locator?: string | undefined;
|
|
33224
33271
|
errors?: string[] | undefined;
|
|
33225
33272
|
}[] | undefined;
|
|
33273
|
+
success?: boolean | undefined;
|
|
33226
33274
|
} | undefined;
|
|
33227
33275
|
aggregatedTransactions?: {
|
|
33228
33276
|
locator: string;
|
|
@@ -33246,12 +33294,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33246
33294
|
termLocator?: string | undefined;
|
|
33247
33295
|
createdAt?: string | undefined;
|
|
33248
33296
|
validationResult?: {
|
|
33249
|
-
success: boolean;
|
|
33250
33297
|
validationItems?: {
|
|
33251
33298
|
elementType?: string | undefined;
|
|
33252
33299
|
locator?: string | undefined;
|
|
33253
33300
|
errors?: string[] | undefined;
|
|
33254
33301
|
}[] | undefined;
|
|
33302
|
+
success?: boolean | undefined;
|
|
33255
33303
|
} | undefined;
|
|
33256
33304
|
}[] | undefined;
|
|
33257
33305
|
}>;
|
|
@@ -34192,21 +34240,21 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
34192
34240
|
locator?: string | undefined;
|
|
34193
34241
|
errors?: string[] | undefined;
|
|
34194
34242
|
}>, "many">>;
|
|
34195
|
-
success: z.ZodBoolean
|
|
34243
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
34196
34244
|
}, "strip", z.ZodTypeAny, {
|
|
34197
|
-
success: boolean;
|
|
34198
34245
|
validationItems?: {
|
|
34199
34246
|
elementType?: string | undefined;
|
|
34200
34247
|
locator?: string | undefined;
|
|
34201
34248
|
errors?: string[] | undefined;
|
|
34202
34249
|
}[] | undefined;
|
|
34250
|
+
success?: boolean | undefined;
|
|
34203
34251
|
}, {
|
|
34204
|
-
success: boolean;
|
|
34205
34252
|
validationItems?: {
|
|
34206
34253
|
elementType?: string | undefined;
|
|
34207
34254
|
locator?: string | undefined;
|
|
34208
34255
|
errors?: string[] | undefined;
|
|
34209
34256
|
}[] | undefined;
|
|
34257
|
+
success?: boolean | undefined;
|
|
34210
34258
|
}>>;
|
|
34211
34259
|
}, "strip", z.ZodTypeAny, {
|
|
34212
34260
|
transactionLocator: string;
|
|
@@ -34231,12 +34279,12 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
34231
34279
|
note?: string | undefined;
|
|
34232
34280
|
}[] | undefined;
|
|
34233
34281
|
validationResult?: {
|
|
34234
|
-
success: boolean;
|
|
34235
34282
|
validationItems?: {
|
|
34236
34283
|
elementType?: string | undefined;
|
|
34237
34284
|
locator?: string | undefined;
|
|
34238
34285
|
errors?: string[] | undefined;
|
|
34239
34286
|
}[] | undefined;
|
|
34287
|
+
success?: boolean | undefined;
|
|
34240
34288
|
} | undefined;
|
|
34241
34289
|
}, {
|
|
34242
34290
|
transactionLocator: string;
|
|
@@ -34261,12 +34309,12 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
34261
34309
|
note?: string | undefined;
|
|
34262
34310
|
}[] | undefined;
|
|
34263
34311
|
validationResult?: {
|
|
34264
|
-
success: boolean;
|
|
34265
34312
|
validationItems?: {
|
|
34266
34313
|
elementType?: string | undefined;
|
|
34267
34314
|
locator?: string | undefined;
|
|
34268
34315
|
errors?: string[] | undefined;
|
|
34269
34316
|
}[] | undefined;
|
|
34317
|
+
success?: boolean | undefined;
|
|
34270
34318
|
} | undefined;
|
|
34271
34319
|
}>;
|
|
34272
34320
|
|
|
@@ -34557,21 +34605,21 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34557
34605
|
locator?: string | undefined;
|
|
34558
34606
|
errors?: string[] | undefined;
|
|
34559
34607
|
}>, "many">>;
|
|
34560
|
-
success: z.ZodBoolean
|
|
34608
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
34561
34609
|
}, "strip", z.ZodTypeAny, {
|
|
34562
|
-
success: boolean;
|
|
34563
34610
|
validationItems?: {
|
|
34564
34611
|
elementType?: string | undefined;
|
|
34565
34612
|
locator?: string | undefined;
|
|
34566
34613
|
errors?: string[] | undefined;
|
|
34567
34614
|
}[] | undefined;
|
|
34615
|
+
success?: boolean | undefined;
|
|
34568
34616
|
}, {
|
|
34569
|
-
success: boolean;
|
|
34570
34617
|
validationItems?: {
|
|
34571
34618
|
elementType?: string | undefined;
|
|
34572
34619
|
locator?: string | undefined;
|
|
34573
34620
|
errors?: string[] | undefined;
|
|
34574
34621
|
}[] | undefined;
|
|
34622
|
+
success?: boolean | undefined;
|
|
34575
34623
|
}>>;
|
|
34576
34624
|
}, {
|
|
34577
34625
|
aggregatedTransactions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -34623,21 +34671,21 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34623
34671
|
locator?: string | undefined;
|
|
34624
34672
|
errors?: string[] | undefined;
|
|
34625
34673
|
}>, "many">>;
|
|
34626
|
-
success: z.ZodBoolean
|
|
34674
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
34627
34675
|
}, "strip", z.ZodTypeAny, {
|
|
34628
|
-
success: boolean;
|
|
34629
34676
|
validationItems?: {
|
|
34630
34677
|
elementType?: string | undefined;
|
|
34631
34678
|
locator?: string | undefined;
|
|
34632
34679
|
errors?: string[] | undefined;
|
|
34633
34680
|
}[] | undefined;
|
|
34681
|
+
success?: boolean | undefined;
|
|
34634
34682
|
}, {
|
|
34635
|
-
success: boolean;
|
|
34636
34683
|
validationItems?: {
|
|
34637
34684
|
elementType?: string | undefined;
|
|
34638
34685
|
locator?: string | undefined;
|
|
34639
34686
|
errors?: string[] | undefined;
|
|
34640
34687
|
}[] | undefined;
|
|
34688
|
+
success?: boolean | undefined;
|
|
34641
34689
|
}>>;
|
|
34642
34690
|
}, "strip", z.ZodTypeAny, {
|
|
34643
34691
|
locator: string;
|
|
@@ -34647,12 +34695,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34647
34695
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34648
34696
|
underwritingStatus?: string | undefined;
|
|
34649
34697
|
validationResult?: {
|
|
34650
|
-
success: boolean;
|
|
34651
34698
|
validationItems?: {
|
|
34652
34699
|
elementType?: string | undefined;
|
|
34653
34700
|
locator?: string | undefined;
|
|
34654
34701
|
errors?: string[] | undefined;
|
|
34655
34702
|
}[] | undefined;
|
|
34703
|
+
success?: boolean | undefined;
|
|
34656
34704
|
} | undefined;
|
|
34657
34705
|
underwritingFlags?: {
|
|
34658
34706
|
locator: string;
|
|
@@ -34672,12 +34720,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34672
34720
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34673
34721
|
underwritingStatus?: string | undefined;
|
|
34674
34722
|
validationResult?: {
|
|
34675
|
-
success: boolean;
|
|
34676
34723
|
validationItems?: {
|
|
34677
34724
|
elementType?: string | undefined;
|
|
34678
34725
|
locator?: string | undefined;
|
|
34679
34726
|
errors?: string[] | undefined;
|
|
34680
34727
|
}[] | undefined;
|
|
34728
|
+
success?: boolean | undefined;
|
|
34681
34729
|
} | undefined;
|
|
34682
34730
|
underwritingFlags?: {
|
|
34683
34731
|
locator: string;
|
|
@@ -34698,12 +34746,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34698
34746
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34699
34747
|
underwritingStatus?: string | undefined;
|
|
34700
34748
|
validationResult?: {
|
|
34701
|
-
success: boolean;
|
|
34702
34749
|
validationItems?: {
|
|
34703
34750
|
elementType?: string | undefined;
|
|
34704
34751
|
locator?: string | undefined;
|
|
34705
34752
|
errors?: string[] | undefined;
|
|
34706
34753
|
}[] | undefined;
|
|
34754
|
+
success?: boolean | undefined;
|
|
34707
34755
|
} | undefined;
|
|
34708
34756
|
aggregatedTransactions?: {
|
|
34709
34757
|
locator: string;
|
|
@@ -34713,12 +34761,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34713
34761
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34714
34762
|
underwritingStatus?: string | undefined;
|
|
34715
34763
|
validationResult?: {
|
|
34716
|
-
success: boolean;
|
|
34717
34764
|
validationItems?: {
|
|
34718
34765
|
elementType?: string | undefined;
|
|
34719
34766
|
locator?: string | undefined;
|
|
34720
34767
|
errors?: string[] | undefined;
|
|
34721
34768
|
}[] | undefined;
|
|
34769
|
+
success?: boolean | undefined;
|
|
34722
34770
|
} | undefined;
|
|
34723
34771
|
underwritingFlags?: {
|
|
34724
34772
|
locator: string;
|
|
@@ -34749,12 +34797,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34749
34797
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34750
34798
|
underwritingStatus?: string | undefined;
|
|
34751
34799
|
validationResult?: {
|
|
34752
|
-
success: boolean;
|
|
34753
34800
|
validationItems?: {
|
|
34754
34801
|
elementType?: string | undefined;
|
|
34755
34802
|
locator?: string | undefined;
|
|
34756
34803
|
errors?: string[] | undefined;
|
|
34757
34804
|
}[] | undefined;
|
|
34805
|
+
success?: boolean | undefined;
|
|
34758
34806
|
} | undefined;
|
|
34759
34807
|
aggregatedTransactions?: {
|
|
34760
34808
|
locator: string;
|
|
@@ -34764,12 +34812,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34764
34812
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34765
34813
|
underwritingStatus?: string | undefined;
|
|
34766
34814
|
validationResult?: {
|
|
34767
|
-
success: boolean;
|
|
34768
34815
|
validationItems?: {
|
|
34769
34816
|
elementType?: string | undefined;
|
|
34770
34817
|
locator?: string | undefined;
|
|
34771
34818
|
errors?: string[] | undefined;
|
|
34772
34819
|
}[] | undefined;
|
|
34820
|
+
success?: boolean | undefined;
|
|
34773
34821
|
} | undefined;
|
|
34774
34822
|
underwritingFlags?: {
|
|
34775
34823
|
locator: string;
|
|
@@ -35473,21 +35521,21 @@ export declare const ValidationResultSchema: z.ZodObject<{
|
|
|
35473
35521
|
locator?: string | undefined;
|
|
35474
35522
|
errors?: string[] | undefined;
|
|
35475
35523
|
}>, "many">>;
|
|
35476
|
-
success: z.ZodBoolean
|
|
35524
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
35477
35525
|
}, "strip", z.ZodTypeAny, {
|
|
35478
|
-
success: boolean;
|
|
35479
35526
|
validationItems?: {
|
|
35480
35527
|
elementType?: string | undefined;
|
|
35481
35528
|
locator?: string | undefined;
|
|
35482
35529
|
errors?: string[] | undefined;
|
|
35483
35530
|
}[] | undefined;
|
|
35531
|
+
success?: boolean | undefined;
|
|
35484
35532
|
}, {
|
|
35485
|
-
success: boolean;
|
|
35486
35533
|
validationItems?: {
|
|
35487
35534
|
elementType?: string | undefined;
|
|
35488
35535
|
locator?: string | undefined;
|
|
35489
35536
|
errors?: string[] | undefined;
|
|
35490
35537
|
}[] | undefined;
|
|
35538
|
+
success?: boolean | undefined;
|
|
35491
35539
|
}>;
|
|
35492
35540
|
|
|
35493
35541
|
export declare const validationResultSchema: z.ZodObject<{
|