@socotra/ec-react-schemas 2.19.1 → 2.19.2-next.1
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 +487 -210
- package/dist/index.es.js +1368 -1361
- 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;
|
|
@@ -16861,6 +16861,235 @@ export declare const ListBasicUserResponseSchema: z.ZodObject<{
|
|
|
16861
16861
|
listCompleted: boolean;
|
|
16862
16862
|
}>;
|
|
16863
16863
|
|
|
16864
|
+
export declare type ListPaymentResponse = z.infer<typeof ListPaymentResponseSchema>;
|
|
16865
|
+
|
|
16866
|
+
export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
16867
|
+
listCompleted: z.ZodBoolean;
|
|
16868
|
+
items: z.ZodArray<z.ZodObject<{
|
|
16869
|
+
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"]>;
|
|
16870
|
+
paymentState: z.ZodEnum<["draft", "validated", "posted", "reversed", "discarded"]>;
|
|
16871
|
+
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16872
|
+
targets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16873
|
+
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
16874
|
+
containerLocator: z.ZodString;
|
|
16875
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
16876
|
+
}, "strip", z.ZodTypeAny, {
|
|
16877
|
+
containerLocator: string;
|
|
16878
|
+
containerType: "account" | "invoice";
|
|
16879
|
+
amount?: number | undefined;
|
|
16880
|
+
}, {
|
|
16881
|
+
containerLocator: string;
|
|
16882
|
+
containerType: "account" | "invoice";
|
|
16883
|
+
amount?: number | undefined;
|
|
16884
|
+
}>, "many">>;
|
|
16885
|
+
shortfallCreditLocators: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16886
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
16887
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16888
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
16889
|
+
elementType: z.ZodOptional<z.ZodString>;
|
|
16890
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16891
|
+
}, "strip", z.ZodTypeAny, {
|
|
16892
|
+
elementType?: string | undefined;
|
|
16893
|
+
locator?: string | undefined;
|
|
16894
|
+
errors?: string[] | undefined;
|
|
16895
|
+
}, {
|
|
16896
|
+
elementType?: string | undefined;
|
|
16897
|
+
locator?: string | undefined;
|
|
16898
|
+
errors?: string[] | undefined;
|
|
16899
|
+
}>, "many">>;
|
|
16900
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
16901
|
+
}, "strip", z.ZodTypeAny, {
|
|
16902
|
+
validationItems?: {
|
|
16903
|
+
elementType?: string | undefined;
|
|
16904
|
+
locator?: string | undefined;
|
|
16905
|
+
errors?: string[] | undefined;
|
|
16906
|
+
}[] | undefined;
|
|
16907
|
+
success?: boolean | undefined;
|
|
16908
|
+
}, {
|
|
16909
|
+
validationItems?: {
|
|
16910
|
+
elementType?: string | undefined;
|
|
16911
|
+
locator?: string | undefined;
|
|
16912
|
+
errors?: string[] | undefined;
|
|
16913
|
+
}[] | undefined;
|
|
16914
|
+
success?: boolean | undefined;
|
|
16915
|
+
}>>;
|
|
16916
|
+
subpayments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16917
|
+
subpaymentLocator: z.ZodString;
|
|
16918
|
+
amount: z.ZodNumber;
|
|
16919
|
+
}, "strip", z.ZodTypeAny, {
|
|
16920
|
+
amount: number;
|
|
16921
|
+
subpaymentLocator: string;
|
|
16922
|
+
}, {
|
|
16923
|
+
amount: number;
|
|
16924
|
+
subpaymentLocator: string;
|
|
16925
|
+
}>, "many">>;
|
|
16926
|
+
paymentMode: z.ZodOptional<z.ZodEnum<["normal", "aggregate"]>>;
|
|
16927
|
+
locator: z.ZodString;
|
|
16928
|
+
type: z.ZodString;
|
|
16929
|
+
amount: z.ZodNumber;
|
|
16930
|
+
remainingAmount: z.ZodOptional<z.ZodNumber>;
|
|
16931
|
+
createdAt: z.ZodString;
|
|
16932
|
+
createdBy: z.ZodString;
|
|
16933
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
16934
|
+
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
16935
|
+
postedAt: z.ZodOptional<z.ZodString>;
|
|
16936
|
+
reversalReason: z.ZodOptional<z.ZodString>;
|
|
16937
|
+
reversedAt: z.ZodOptional<z.ZodString>;
|
|
16938
|
+
reversedBy: z.ZodOptional<z.ZodString>;
|
|
16939
|
+
aggregatePaymentLocator: z.ZodOptional<z.ZodString>;
|
|
16940
|
+
}, "strip", z.ZodTypeAny, {
|
|
16941
|
+
locator: string;
|
|
16942
|
+
type: string;
|
|
16943
|
+
createdBy: string;
|
|
16944
|
+
amount: number;
|
|
16945
|
+
currency: "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";
|
|
16946
|
+
createdAt: string;
|
|
16947
|
+
paymentState: "draft" | "validated" | "discarded" | "reversed" | "posted";
|
|
16948
|
+
data?: Record<string, any> | undefined;
|
|
16949
|
+
accountLocator?: string | undefined;
|
|
16950
|
+
validationResult?: {
|
|
16951
|
+
validationItems?: {
|
|
16952
|
+
elementType?: string | undefined;
|
|
16953
|
+
locator?: string | undefined;
|
|
16954
|
+
errors?: string[] | undefined;
|
|
16955
|
+
}[] | undefined;
|
|
16956
|
+
success?: boolean | undefined;
|
|
16957
|
+
} | undefined;
|
|
16958
|
+
remainingAmount?: number | undefined;
|
|
16959
|
+
targets?: {
|
|
16960
|
+
containerLocator: string;
|
|
16961
|
+
containerType: "account" | "invoice";
|
|
16962
|
+
amount?: number | undefined;
|
|
16963
|
+
}[] | undefined;
|
|
16964
|
+
shortfallCreditLocators?: string[] | undefined;
|
|
16965
|
+
reversalReason?: string | undefined;
|
|
16966
|
+
reversedAt?: string | undefined;
|
|
16967
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
16968
|
+
externalCashTransactionLocator?: string | undefined;
|
|
16969
|
+
postedAt?: string | undefined;
|
|
16970
|
+
reversedBy?: string | undefined;
|
|
16971
|
+
subpayments?: {
|
|
16972
|
+
amount: number;
|
|
16973
|
+
subpaymentLocator: string;
|
|
16974
|
+
}[] | undefined;
|
|
16975
|
+
aggregatePaymentLocator?: string | undefined;
|
|
16976
|
+
}, {
|
|
16977
|
+
locator: string;
|
|
16978
|
+
type: string;
|
|
16979
|
+
createdBy: string;
|
|
16980
|
+
amount: number;
|
|
16981
|
+
currency: "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";
|
|
16982
|
+
createdAt: string;
|
|
16983
|
+
paymentState: "draft" | "validated" | "discarded" | "reversed" | "posted";
|
|
16984
|
+
data?: Record<string, any> | undefined;
|
|
16985
|
+
accountLocator?: string | undefined;
|
|
16986
|
+
validationResult?: {
|
|
16987
|
+
validationItems?: {
|
|
16988
|
+
elementType?: string | undefined;
|
|
16989
|
+
locator?: string | undefined;
|
|
16990
|
+
errors?: string[] | undefined;
|
|
16991
|
+
}[] | undefined;
|
|
16992
|
+
success?: boolean | undefined;
|
|
16993
|
+
} | undefined;
|
|
16994
|
+
remainingAmount?: number | undefined;
|
|
16995
|
+
targets?: {
|
|
16996
|
+
containerLocator: string;
|
|
16997
|
+
containerType: "account" | "invoice";
|
|
16998
|
+
amount?: number | undefined;
|
|
16999
|
+
}[] | undefined;
|
|
17000
|
+
shortfallCreditLocators?: string[] | undefined;
|
|
17001
|
+
reversalReason?: string | undefined;
|
|
17002
|
+
reversedAt?: string | undefined;
|
|
17003
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
17004
|
+
externalCashTransactionLocator?: string | undefined;
|
|
17005
|
+
postedAt?: string | undefined;
|
|
17006
|
+
reversedBy?: string | undefined;
|
|
17007
|
+
subpayments?: {
|
|
17008
|
+
amount: number;
|
|
17009
|
+
subpaymentLocator: string;
|
|
17010
|
+
}[] | undefined;
|
|
17011
|
+
aggregatePaymentLocator?: string | undefined;
|
|
17012
|
+
}>, "many">;
|
|
17013
|
+
}, "strip", z.ZodTypeAny, {
|
|
17014
|
+
items: {
|
|
17015
|
+
locator: string;
|
|
17016
|
+
type: string;
|
|
17017
|
+
createdBy: string;
|
|
17018
|
+
amount: number;
|
|
17019
|
+
currency: "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";
|
|
17020
|
+
createdAt: string;
|
|
17021
|
+
paymentState: "draft" | "validated" | "discarded" | "reversed" | "posted";
|
|
17022
|
+
data?: Record<string, any> | undefined;
|
|
17023
|
+
accountLocator?: string | undefined;
|
|
17024
|
+
validationResult?: {
|
|
17025
|
+
validationItems?: {
|
|
17026
|
+
elementType?: string | undefined;
|
|
17027
|
+
locator?: string | undefined;
|
|
17028
|
+
errors?: string[] | undefined;
|
|
17029
|
+
}[] | undefined;
|
|
17030
|
+
success?: boolean | undefined;
|
|
17031
|
+
} | undefined;
|
|
17032
|
+
remainingAmount?: number | undefined;
|
|
17033
|
+
targets?: {
|
|
17034
|
+
containerLocator: string;
|
|
17035
|
+
containerType: "account" | "invoice";
|
|
17036
|
+
amount?: number | undefined;
|
|
17037
|
+
}[] | undefined;
|
|
17038
|
+
shortfallCreditLocators?: string[] | undefined;
|
|
17039
|
+
reversalReason?: string | undefined;
|
|
17040
|
+
reversedAt?: string | undefined;
|
|
17041
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
17042
|
+
externalCashTransactionLocator?: string | undefined;
|
|
17043
|
+
postedAt?: string | undefined;
|
|
17044
|
+
reversedBy?: string | undefined;
|
|
17045
|
+
subpayments?: {
|
|
17046
|
+
amount: number;
|
|
17047
|
+
subpaymentLocator: string;
|
|
17048
|
+
}[] | undefined;
|
|
17049
|
+
aggregatePaymentLocator?: string | undefined;
|
|
17050
|
+
}[];
|
|
17051
|
+
listCompleted: boolean;
|
|
17052
|
+
}, {
|
|
17053
|
+
items: {
|
|
17054
|
+
locator: string;
|
|
17055
|
+
type: string;
|
|
17056
|
+
createdBy: string;
|
|
17057
|
+
amount: number;
|
|
17058
|
+
currency: "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";
|
|
17059
|
+
createdAt: string;
|
|
17060
|
+
paymentState: "draft" | "validated" | "discarded" | "reversed" | "posted";
|
|
17061
|
+
data?: Record<string, any> | undefined;
|
|
17062
|
+
accountLocator?: string | undefined;
|
|
17063
|
+
validationResult?: {
|
|
17064
|
+
validationItems?: {
|
|
17065
|
+
elementType?: string | undefined;
|
|
17066
|
+
locator?: string | undefined;
|
|
17067
|
+
errors?: string[] | undefined;
|
|
17068
|
+
}[] | undefined;
|
|
17069
|
+
success?: boolean | undefined;
|
|
17070
|
+
} | undefined;
|
|
17071
|
+
remainingAmount?: number | undefined;
|
|
17072
|
+
targets?: {
|
|
17073
|
+
containerLocator: string;
|
|
17074
|
+
containerType: "account" | "invoice";
|
|
17075
|
+
amount?: number | undefined;
|
|
17076
|
+
}[] | undefined;
|
|
17077
|
+
shortfallCreditLocators?: string[] | undefined;
|
|
17078
|
+
reversalReason?: string | undefined;
|
|
17079
|
+
reversedAt?: string | undefined;
|
|
17080
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
17081
|
+
externalCashTransactionLocator?: string | undefined;
|
|
17082
|
+
postedAt?: string | undefined;
|
|
17083
|
+
reversedBy?: string | undefined;
|
|
17084
|
+
subpayments?: {
|
|
17085
|
+
amount: number;
|
|
17086
|
+
subpaymentLocator: string;
|
|
17087
|
+
}[] | undefined;
|
|
17088
|
+
aggregatePaymentLocator?: string | undefined;
|
|
17089
|
+
}[];
|
|
17090
|
+
listCompleted: boolean;
|
|
17091
|
+
}>;
|
|
17092
|
+
|
|
16864
17093
|
export declare type ListPolicyResponse = PolicyListResponse;
|
|
16865
17094
|
|
|
16866
17095
|
export declare type ListQualifiedUser = z.infer<typeof ListQualifiedUserSchema>;
|
|
@@ -19572,6 +19801,10 @@ export declare const paymentConfigSchema: z.ZodObject<{
|
|
|
19572
19801
|
}> | undefined;
|
|
19573
19802
|
}>;
|
|
19574
19803
|
|
|
19804
|
+
export declare type PaymentModeEnum = z.infer<typeof PaymentModeEnumSchema>;
|
|
19805
|
+
|
|
19806
|
+
export declare const PaymentModeEnumSchema: z.ZodEnum<["normal", "aggregate"]>;
|
|
19807
|
+
|
|
19575
19808
|
declare type PaymentRequest_2 = z.infer<typeof PaymentRequestSchema>;
|
|
19576
19809
|
export { PaymentRequest_2 as PaymentRequest }
|
|
19577
19810
|
|
|
@@ -19630,21 +19863,16 @@ export declare const PaymentRequestSchema: z.ZodObject<{
|
|
|
19630
19863
|
transactionNumber?: string | undefined;
|
|
19631
19864
|
}>;
|
|
19632
19865
|
|
|
19633
|
-
declare type PaymentResponse_2 = z.infer<typeof
|
|
19866
|
+
declare type PaymentResponse_2 = z.infer<typeof PaymentResponseSchema>;
|
|
19634
19867
|
export { PaymentResponse_2 as PaymentResponse }
|
|
19635
19868
|
|
|
19636
|
-
export declare const
|
|
19637
|
-
locator: z.ZodString;
|
|
19869
|
+
export declare const PaymentResponseSchema: z.ZodObject<{
|
|
19638
19870
|
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
19871
|
paymentState: z.ZodEnum<["draft", "validated", "posted", "reversed", "discarded"]>;
|
|
19640
|
-
amount: z.ZodNumber;
|
|
19641
|
-
type: z.ZodString;
|
|
19642
19872
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19643
|
-
|
|
19644
|
-
createdBy: z.ZodString;
|
|
19645
|
-
targets: z.ZodArray<z.ZodObject<{
|
|
19646
|
-
containerLocator: z.ZodString;
|
|
19873
|
+
targets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19647
19874
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
19875
|
+
containerLocator: z.ZodString;
|
|
19648
19876
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
19649
19877
|
}, "strip", z.ZodTypeAny, {
|
|
19650
19878
|
containerLocator: string;
|
|
@@ -19654,18 +19882,12 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19654
19882
|
containerLocator: string;
|
|
19655
19883
|
containerType: "account" | "invoice";
|
|
19656
19884
|
amount?: number | undefined;
|
|
19657
|
-
}>, "many"
|
|
19885
|
+
}>, "many">>;
|
|
19658
19886
|
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
19887
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
19666
19888
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19667
|
-
elementType: z.ZodOptional<z.ZodString>;
|
|
19668
19889
|
locator: z.ZodOptional<z.ZodString>;
|
|
19890
|
+
elementType: z.ZodOptional<z.ZodString>;
|
|
19669
19891
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19670
19892
|
}, "strip", z.ZodTypeAny, {
|
|
19671
19893
|
elementType?: string | undefined;
|
|
@@ -19692,6 +19914,30 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19692
19914
|
}[] | undefined;
|
|
19693
19915
|
success?: boolean | undefined;
|
|
19694
19916
|
}>>;
|
|
19917
|
+
subpayments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19918
|
+
subpaymentLocator: z.ZodString;
|
|
19919
|
+
amount: z.ZodNumber;
|
|
19920
|
+
}, "strip", z.ZodTypeAny, {
|
|
19921
|
+
amount: number;
|
|
19922
|
+
subpaymentLocator: string;
|
|
19923
|
+
}, {
|
|
19924
|
+
amount: number;
|
|
19925
|
+
subpaymentLocator: string;
|
|
19926
|
+
}>, "many">>;
|
|
19927
|
+
paymentMode: z.ZodOptional<z.ZodEnum<["normal", "aggregate"]>>;
|
|
19928
|
+
locator: z.ZodString;
|
|
19929
|
+
type: z.ZodString;
|
|
19930
|
+
amount: z.ZodNumber;
|
|
19931
|
+
remainingAmount: z.ZodOptional<z.ZodNumber>;
|
|
19932
|
+
createdAt: z.ZodString;
|
|
19933
|
+
createdBy: z.ZodString;
|
|
19934
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
19935
|
+
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
19936
|
+
postedAt: z.ZodOptional<z.ZodString>;
|
|
19937
|
+
reversalReason: z.ZodOptional<z.ZodString>;
|
|
19938
|
+
reversedAt: z.ZodOptional<z.ZodString>;
|
|
19939
|
+
reversedBy: z.ZodOptional<z.ZodString>;
|
|
19940
|
+
aggregatePaymentLocator: z.ZodOptional<z.ZodString>;
|
|
19695
19941
|
}, "strip", z.ZodTypeAny, {
|
|
19696
19942
|
locator: string;
|
|
19697
19943
|
type: string;
|
|
@@ -19699,11 +19945,6 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19699
19945
|
amount: number;
|
|
19700
19946
|
currency: "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";
|
|
19701
19947
|
createdAt: string;
|
|
19702
|
-
targets: {
|
|
19703
|
-
containerLocator: string;
|
|
19704
|
-
containerType: "account" | "invoice";
|
|
19705
|
-
amount?: number | undefined;
|
|
19706
|
-
}[];
|
|
19707
19948
|
paymentState: "draft" | "validated" | "discarded" | "reversed" | "posted";
|
|
19708
19949
|
data?: Record<string, any> | undefined;
|
|
19709
19950
|
accountLocator?: string | undefined;
|
|
@@ -19716,11 +19957,23 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19716
19957
|
success?: boolean | undefined;
|
|
19717
19958
|
} | undefined;
|
|
19718
19959
|
remainingAmount?: number | undefined;
|
|
19960
|
+
targets?: {
|
|
19961
|
+
containerLocator: string;
|
|
19962
|
+
containerType: "account" | "invoice";
|
|
19963
|
+
amount?: number | undefined;
|
|
19964
|
+
}[] | undefined;
|
|
19719
19965
|
shortfallCreditLocators?: string[] | undefined;
|
|
19720
|
-
externalCashTransactionLocator?: string | undefined;
|
|
19721
|
-
postedAt?: string | undefined;
|
|
19722
19966
|
reversalReason?: string | undefined;
|
|
19723
19967
|
reversedAt?: string | undefined;
|
|
19968
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
19969
|
+
externalCashTransactionLocator?: string | undefined;
|
|
19970
|
+
postedAt?: string | undefined;
|
|
19971
|
+
reversedBy?: string | undefined;
|
|
19972
|
+
subpayments?: {
|
|
19973
|
+
amount: number;
|
|
19974
|
+
subpaymentLocator: string;
|
|
19975
|
+
}[] | undefined;
|
|
19976
|
+
aggregatePaymentLocator?: string | undefined;
|
|
19724
19977
|
}, {
|
|
19725
19978
|
locator: string;
|
|
19726
19979
|
type: string;
|
|
@@ -19728,11 +19981,6 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19728
19981
|
amount: number;
|
|
19729
19982
|
currency: "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";
|
|
19730
19983
|
createdAt: string;
|
|
19731
|
-
targets: {
|
|
19732
|
-
containerLocator: string;
|
|
19733
|
-
containerType: "account" | "invoice";
|
|
19734
|
-
amount?: number | undefined;
|
|
19735
|
-
}[];
|
|
19736
19984
|
paymentState: "draft" | "validated" | "discarded" | "reversed" | "posted";
|
|
19737
19985
|
data?: Record<string, any> | undefined;
|
|
19738
19986
|
accountLocator?: string | undefined;
|
|
@@ -19745,13 +19993,29 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
19745
19993
|
success?: boolean | undefined;
|
|
19746
19994
|
} | undefined;
|
|
19747
19995
|
remainingAmount?: number | undefined;
|
|
19996
|
+
targets?: {
|
|
19997
|
+
containerLocator: string;
|
|
19998
|
+
containerType: "account" | "invoice";
|
|
19999
|
+
amount?: number | undefined;
|
|
20000
|
+
}[] | undefined;
|
|
19748
20001
|
shortfallCreditLocators?: string[] | undefined;
|
|
19749
|
-
externalCashTransactionLocator?: string | undefined;
|
|
19750
|
-
postedAt?: string | undefined;
|
|
19751
20002
|
reversalReason?: string | undefined;
|
|
19752
20003
|
reversedAt?: string | undefined;
|
|
20004
|
+
paymentMode?: "aggregate" | "normal" | undefined;
|
|
20005
|
+
externalCashTransactionLocator?: string | undefined;
|
|
20006
|
+
postedAt?: string | undefined;
|
|
20007
|
+
reversedBy?: string | undefined;
|
|
20008
|
+
subpayments?: {
|
|
20009
|
+
amount: number;
|
|
20010
|
+
subpaymentLocator: string;
|
|
20011
|
+
}[] | undefined;
|
|
20012
|
+
aggregatePaymentLocator?: string | undefined;
|
|
19753
20013
|
}>;
|
|
19754
20014
|
|
|
20015
|
+
export declare type PaymentStateEnum = z.infer<typeof PaymentStateEnumSchema>;
|
|
20016
|
+
|
|
20017
|
+
export declare const PaymentStateEnumSchema: z.ZodEnum<["draft", "validated", "posted", "reversed", "discarded"]>;
|
|
20018
|
+
|
|
19755
20019
|
export declare type PolicyBillingLevel = z.infer<typeof policyBillingLevelEnumSchema>;
|
|
19756
20020
|
|
|
19757
20021
|
export declare const policyBillingLevelEnumSchema: z.ZodEnum<["account", "inherit", "policy"]>;
|
|
@@ -19799,21 +20063,21 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19799
20063
|
locator?: string | undefined;
|
|
19800
20064
|
errors?: string[] | undefined;
|
|
19801
20065
|
}>, "many">>;
|
|
19802
|
-
success: z.ZodBoolean
|
|
20066
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
19803
20067
|
}, "strip", z.ZodTypeAny, {
|
|
19804
|
-
success: boolean;
|
|
19805
20068
|
validationItems?: {
|
|
19806
20069
|
elementType?: string | undefined;
|
|
19807
20070
|
locator?: string | undefined;
|
|
19808
20071
|
errors?: string[] | undefined;
|
|
19809
20072
|
}[] | undefined;
|
|
20073
|
+
success?: boolean | undefined;
|
|
19810
20074
|
}, {
|
|
19811
|
-
success: boolean;
|
|
19812
20075
|
validationItems?: {
|
|
19813
20076
|
elementType?: string | undefined;
|
|
19814
20077
|
locator?: string | undefined;
|
|
19815
20078
|
errors?: string[] | undefined;
|
|
19816
20079
|
}[] | undefined;
|
|
20080
|
+
success?: boolean | undefined;
|
|
19817
20081
|
}>>;
|
|
19818
20082
|
contacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19819
20083
|
contactLocator: z.ZodString;
|
|
@@ -19858,12 +20122,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19858
20122
|
static?: Record<string, any> | undefined;
|
|
19859
20123
|
createdAt?: string | undefined;
|
|
19860
20124
|
validationResult?: {
|
|
19861
|
-
success: boolean;
|
|
19862
20125
|
validationItems?: {
|
|
19863
20126
|
elementType?: string | undefined;
|
|
19864
20127
|
locator?: string | undefined;
|
|
19865
20128
|
errors?: string[] | undefined;
|
|
19866
20129
|
}[] | undefined;
|
|
20130
|
+
success?: boolean | undefined;
|
|
19867
20131
|
} | undefined;
|
|
19868
20132
|
anonymizedAt?: string | undefined;
|
|
19869
20133
|
policyNumber?: string | undefined;
|
|
@@ -19895,12 +20159,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19895
20159
|
static?: Record<string, any> | undefined;
|
|
19896
20160
|
createdAt?: string | undefined;
|
|
19897
20161
|
validationResult?: {
|
|
19898
|
-
success: boolean;
|
|
19899
20162
|
validationItems?: {
|
|
19900
20163
|
elementType?: string | undefined;
|
|
19901
20164
|
locator?: string | undefined;
|
|
19902
20165
|
errors?: string[] | undefined;
|
|
19903
20166
|
}[] | undefined;
|
|
20167
|
+
success?: boolean | undefined;
|
|
19904
20168
|
} | undefined;
|
|
19905
20169
|
anonymizedAt?: string | undefined;
|
|
19906
20170
|
policyNumber?: string | undefined;
|
|
@@ -19934,12 +20198,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19934
20198
|
static?: Record<string, any> | undefined;
|
|
19935
20199
|
createdAt?: string | undefined;
|
|
19936
20200
|
validationResult?: {
|
|
19937
|
-
success: boolean;
|
|
19938
20201
|
validationItems?: {
|
|
19939
20202
|
elementType?: string | undefined;
|
|
19940
20203
|
locator?: string | undefined;
|
|
19941
20204
|
errors?: string[] | undefined;
|
|
19942
20205
|
}[] | undefined;
|
|
20206
|
+
success?: boolean | undefined;
|
|
19943
20207
|
} | undefined;
|
|
19944
20208
|
anonymizedAt?: string | undefined;
|
|
19945
20209
|
policyNumber?: string | undefined;
|
|
@@ -19974,12 +20238,12 @@ export declare const PolicyListResponseSchema: z.ZodObject<{
|
|
|
19974
20238
|
static?: Record<string, any> | undefined;
|
|
19975
20239
|
createdAt?: string | undefined;
|
|
19976
20240
|
validationResult?: {
|
|
19977
|
-
success: boolean;
|
|
19978
20241
|
validationItems?: {
|
|
19979
20242
|
elementType?: string | undefined;
|
|
19980
20243
|
locator?: string | undefined;
|
|
19981
20244
|
errors?: string[] | undefined;
|
|
19982
20245
|
}[] | undefined;
|
|
20246
|
+
success?: boolean | undefined;
|
|
19983
20247
|
} | undefined;
|
|
19984
20248
|
anonymizedAt?: string | undefined;
|
|
19985
20249
|
policyNumber?: string | undefined;
|
|
@@ -20182,21 +20446,21 @@ export declare const PolicyResponseArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20182
20446
|
locator?: string | undefined;
|
|
20183
20447
|
errors?: string[] | undefined;
|
|
20184
20448
|
}>, "many">>;
|
|
20185
|
-
success: z.ZodBoolean
|
|
20449
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
20186
20450
|
}, "strip", z.ZodTypeAny, {
|
|
20187
|
-
success: boolean;
|
|
20188
20451
|
validationItems?: {
|
|
20189
20452
|
elementType?: string | undefined;
|
|
20190
20453
|
locator?: string | undefined;
|
|
20191
20454
|
errors?: string[] | undefined;
|
|
20192
20455
|
}[] | undefined;
|
|
20456
|
+
success?: boolean | undefined;
|
|
20193
20457
|
}, {
|
|
20194
|
-
success: boolean;
|
|
20195
20458
|
validationItems?: {
|
|
20196
20459
|
elementType?: string | undefined;
|
|
20197
20460
|
locator?: string | undefined;
|
|
20198
20461
|
errors?: string[] | undefined;
|
|
20199
20462
|
}[] | undefined;
|
|
20463
|
+
success?: boolean | undefined;
|
|
20200
20464
|
}>>;
|
|
20201
20465
|
contacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20202
20466
|
contactLocator: z.ZodString;
|
|
@@ -20241,12 +20505,12 @@ export declare const PolicyResponseArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20241
20505
|
static?: Record<string, any> | undefined;
|
|
20242
20506
|
createdAt?: string | undefined;
|
|
20243
20507
|
validationResult?: {
|
|
20244
|
-
success: boolean;
|
|
20245
20508
|
validationItems?: {
|
|
20246
20509
|
elementType?: string | undefined;
|
|
20247
20510
|
locator?: string | undefined;
|
|
20248
20511
|
errors?: string[] | undefined;
|
|
20249
20512
|
}[] | undefined;
|
|
20513
|
+
success?: boolean | undefined;
|
|
20250
20514
|
} | undefined;
|
|
20251
20515
|
anonymizedAt?: string | undefined;
|
|
20252
20516
|
policyNumber?: string | undefined;
|
|
@@ -20278,12 +20542,12 @@ export declare const PolicyResponseArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20278
20542
|
static?: Record<string, any> | undefined;
|
|
20279
20543
|
createdAt?: string | undefined;
|
|
20280
20544
|
validationResult?: {
|
|
20281
|
-
success: boolean;
|
|
20282
20545
|
validationItems?: {
|
|
20283
20546
|
elementType?: string | undefined;
|
|
20284
20547
|
locator?: string | undefined;
|
|
20285
20548
|
errors?: string[] | undefined;
|
|
20286
20549
|
}[] | undefined;
|
|
20550
|
+
success?: boolean | undefined;
|
|
20287
20551
|
} | undefined;
|
|
20288
20552
|
anonymizedAt?: string | undefined;
|
|
20289
20553
|
policyNumber?: string | undefined;
|
|
@@ -20323,21 +20587,21 @@ export declare const PolicyResponseSchema: z.ZodObject<{
|
|
|
20323
20587
|
locator?: string | undefined;
|
|
20324
20588
|
errors?: string[] | undefined;
|
|
20325
20589
|
}>, "many">>;
|
|
20326
|
-
success: z.ZodBoolean
|
|
20590
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
20327
20591
|
}, "strip", z.ZodTypeAny, {
|
|
20328
|
-
success: boolean;
|
|
20329
20592
|
validationItems?: {
|
|
20330
20593
|
elementType?: string | undefined;
|
|
20331
20594
|
locator?: string | undefined;
|
|
20332
20595
|
errors?: string[] | undefined;
|
|
20333
20596
|
}[] | undefined;
|
|
20597
|
+
success?: boolean | undefined;
|
|
20334
20598
|
}, {
|
|
20335
|
-
success: boolean;
|
|
20336
20599
|
validationItems?: {
|
|
20337
20600
|
elementType?: string | undefined;
|
|
20338
20601
|
locator?: string | undefined;
|
|
20339
20602
|
errors?: string[] | undefined;
|
|
20340
20603
|
}[] | undefined;
|
|
20604
|
+
success?: boolean | undefined;
|
|
20341
20605
|
}>>;
|
|
20342
20606
|
contacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20343
20607
|
contactLocator: z.ZodString;
|
|
@@ -20382,12 +20646,12 @@ export declare const PolicyResponseSchema: z.ZodObject<{
|
|
|
20382
20646
|
static?: Record<string, any> | undefined;
|
|
20383
20647
|
createdAt?: string | undefined;
|
|
20384
20648
|
validationResult?: {
|
|
20385
|
-
success: boolean;
|
|
20386
20649
|
validationItems?: {
|
|
20387
20650
|
elementType?: string | undefined;
|
|
20388
20651
|
locator?: string | undefined;
|
|
20389
20652
|
errors?: string[] | undefined;
|
|
20390
20653
|
}[] | undefined;
|
|
20654
|
+
success?: boolean | undefined;
|
|
20391
20655
|
} | undefined;
|
|
20392
20656
|
anonymizedAt?: string | undefined;
|
|
20393
20657
|
policyNumber?: string | undefined;
|
|
@@ -20419,12 +20683,12 @@ export declare const PolicyResponseSchema: z.ZodObject<{
|
|
|
20419
20683
|
static?: Record<string, any> | undefined;
|
|
20420
20684
|
createdAt?: string | undefined;
|
|
20421
20685
|
validationResult?: {
|
|
20422
|
-
success: boolean;
|
|
20423
20686
|
validationItems?: {
|
|
20424
20687
|
elementType?: string | undefined;
|
|
20425
20688
|
locator?: string | undefined;
|
|
20426
20689
|
errors?: string[] | undefined;
|
|
20427
20690
|
}[] | undefined;
|
|
20691
|
+
success?: boolean | undefined;
|
|
20428
20692
|
} | undefined;
|
|
20429
20693
|
anonymizedAt?: string | undefined;
|
|
20430
20694
|
policyNumber?: string | undefined;
|
|
@@ -22133,21 +22397,21 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
22133
22397
|
locator?: string | undefined;
|
|
22134
22398
|
errors?: string[] | undefined;
|
|
22135
22399
|
}>, "many">>;
|
|
22136
|
-
success: z.ZodBoolean
|
|
22400
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
22137
22401
|
}, "strip", z.ZodTypeAny, {
|
|
22138
|
-
success: boolean;
|
|
22139
22402
|
validationItems?: {
|
|
22140
22403
|
elementType?: string | undefined;
|
|
22141
22404
|
locator?: string | undefined;
|
|
22142
22405
|
errors?: string[] | undefined;
|
|
22143
22406
|
}[] | undefined;
|
|
22407
|
+
success?: boolean | undefined;
|
|
22144
22408
|
}, {
|
|
22145
|
-
success: boolean;
|
|
22146
22409
|
validationItems?: {
|
|
22147
22410
|
elementType?: string | undefined;
|
|
22148
22411
|
locator?: string | undefined;
|
|
22149
22412
|
errors?: string[] | undefined;
|
|
22150
22413
|
}[] | undefined;
|
|
22414
|
+
success?: boolean | undefined;
|
|
22151
22415
|
}>>;
|
|
22152
22416
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
22153
22417
|
action: z.ZodString;
|
|
@@ -22658,21 +22922,21 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
22658
22922
|
locator?: string | undefined;
|
|
22659
22923
|
errors?: string[] | undefined;
|
|
22660
22924
|
}>, "many">>;
|
|
22661
|
-
success: z.ZodBoolean
|
|
22925
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
22662
22926
|
}, "strip", z.ZodTypeAny, {
|
|
22663
|
-
success: boolean;
|
|
22664
22927
|
validationItems?: {
|
|
22665
22928
|
elementType?: string | undefined;
|
|
22666
22929
|
locator?: string | undefined;
|
|
22667
22930
|
errors?: string[] | undefined;
|
|
22668
22931
|
}[] | undefined;
|
|
22932
|
+
success?: boolean | undefined;
|
|
22669
22933
|
}, {
|
|
22670
|
-
success: boolean;
|
|
22671
22934
|
validationItems?: {
|
|
22672
22935
|
elementType?: string | undefined;
|
|
22673
22936
|
locator?: string | undefined;
|
|
22674
22937
|
errors?: string[] | undefined;
|
|
22675
22938
|
}[] | undefined;
|
|
22939
|
+
success?: boolean | undefined;
|
|
22676
22940
|
}>>;
|
|
22677
22941
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
22678
22942
|
action: z.ZodString;
|
|
@@ -23039,12 +23303,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23039
23303
|
baseTransactionLocator?: string | undefined;
|
|
23040
23304
|
aggregateTransactionLocator?: string | undefined;
|
|
23041
23305
|
validationResult?: {
|
|
23042
|
-
success: boolean;
|
|
23043
23306
|
validationItems?: {
|
|
23044
23307
|
elementType?: string | undefined;
|
|
23045
23308
|
locator?: string | undefined;
|
|
23046
23309
|
errors?: string[] | undefined;
|
|
23047
23310
|
}[] | undefined;
|
|
23311
|
+
success?: boolean | undefined;
|
|
23048
23312
|
} | undefined;
|
|
23049
23313
|
changeInstructions?: ({
|
|
23050
23314
|
locator: string;
|
|
@@ -23141,12 +23405,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23141
23405
|
baseTransactionLocator?: string | undefined;
|
|
23142
23406
|
aggregateTransactionLocator?: string | undefined;
|
|
23143
23407
|
validationResult?: {
|
|
23144
|
-
success: boolean;
|
|
23145
23408
|
validationItems?: {
|
|
23146
23409
|
elementType?: string | undefined;
|
|
23147
23410
|
locator?: string | undefined;
|
|
23148
23411
|
errors?: string[] | undefined;
|
|
23149
23412
|
}[] | undefined;
|
|
23413
|
+
success?: boolean | undefined;
|
|
23150
23414
|
} | undefined;
|
|
23151
23415
|
changeInstructions?: ({
|
|
23152
23416
|
locator: string;
|
|
@@ -23255,12 +23519,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23255
23519
|
baseTransactionLocator?: string | undefined;
|
|
23256
23520
|
aggregateTransactionLocator?: string | undefined;
|
|
23257
23521
|
validationResult?: {
|
|
23258
|
-
success: boolean;
|
|
23259
23522
|
validationItems?: {
|
|
23260
23523
|
elementType?: string | undefined;
|
|
23261
23524
|
locator?: string | undefined;
|
|
23262
23525
|
errors?: string[] | undefined;
|
|
23263
23526
|
}[] | undefined;
|
|
23527
|
+
success?: boolean | undefined;
|
|
23264
23528
|
} | undefined;
|
|
23265
23529
|
changeInstructions?: ({
|
|
23266
23530
|
locator: string;
|
|
@@ -23347,12 +23611,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23347
23611
|
baseTransactionLocator?: string | undefined;
|
|
23348
23612
|
aggregateTransactionLocator?: string | undefined;
|
|
23349
23613
|
validationResult?: {
|
|
23350
|
-
success: boolean;
|
|
23351
23614
|
validationItems?: {
|
|
23352
23615
|
elementType?: string | undefined;
|
|
23353
23616
|
locator?: string | undefined;
|
|
23354
23617
|
errors?: string[] | undefined;
|
|
23355
23618
|
}[] | undefined;
|
|
23619
|
+
success?: boolean | undefined;
|
|
23356
23620
|
} | undefined;
|
|
23357
23621
|
changeInstructions?: ({
|
|
23358
23622
|
locator: string;
|
|
@@ -23460,12 +23724,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23460
23724
|
baseTransactionLocator?: string | undefined;
|
|
23461
23725
|
aggregateTransactionLocator?: string | undefined;
|
|
23462
23726
|
validationResult?: {
|
|
23463
|
-
success: boolean;
|
|
23464
23727
|
validationItems?: {
|
|
23465
23728
|
elementType?: string | undefined;
|
|
23466
23729
|
locator?: string | undefined;
|
|
23467
23730
|
errors?: string[] | undefined;
|
|
23468
23731
|
}[] | undefined;
|
|
23732
|
+
success?: boolean | undefined;
|
|
23469
23733
|
} | undefined;
|
|
23470
23734
|
changeInstructions?: ({
|
|
23471
23735
|
locator: string;
|
|
@@ -23552,12 +23816,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23552
23816
|
baseTransactionLocator?: string | undefined;
|
|
23553
23817
|
aggregateTransactionLocator?: string | undefined;
|
|
23554
23818
|
validationResult?: {
|
|
23555
|
-
success: boolean;
|
|
23556
23819
|
validationItems?: {
|
|
23557
23820
|
elementType?: string | undefined;
|
|
23558
23821
|
locator?: string | undefined;
|
|
23559
23822
|
errors?: string[] | undefined;
|
|
23560
23823
|
}[] | undefined;
|
|
23824
|
+
success?: boolean | undefined;
|
|
23561
23825
|
} | undefined;
|
|
23562
23826
|
changeInstructions?: ({
|
|
23563
23827
|
locator: string;
|
|
@@ -23667,12 +23931,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23667
23931
|
baseTransactionLocator?: string | undefined;
|
|
23668
23932
|
aggregateTransactionLocator?: string | undefined;
|
|
23669
23933
|
validationResult?: {
|
|
23670
|
-
success: boolean;
|
|
23671
23934
|
validationItems?: {
|
|
23672
23935
|
elementType?: string | undefined;
|
|
23673
23936
|
locator?: string | undefined;
|
|
23674
23937
|
errors?: string[] | undefined;
|
|
23675
23938
|
}[] | undefined;
|
|
23939
|
+
success?: boolean | undefined;
|
|
23676
23940
|
} | undefined;
|
|
23677
23941
|
changeInstructions?: ({
|
|
23678
23942
|
locator: string;
|
|
@@ -23759,12 +24023,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23759
24023
|
baseTransactionLocator?: string | undefined;
|
|
23760
24024
|
aggregateTransactionLocator?: string | undefined;
|
|
23761
24025
|
validationResult?: {
|
|
23762
|
-
success: boolean;
|
|
23763
24026
|
validationItems?: {
|
|
23764
24027
|
elementType?: string | undefined;
|
|
23765
24028
|
locator?: string | undefined;
|
|
23766
24029
|
errors?: string[] | undefined;
|
|
23767
24030
|
}[] | undefined;
|
|
24031
|
+
success?: boolean | undefined;
|
|
23768
24032
|
} | undefined;
|
|
23769
24033
|
changeInstructions?: ({
|
|
23770
24034
|
locator: string;
|
|
@@ -23875,12 +24139,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23875
24139
|
baseTransactionLocator?: string | undefined;
|
|
23876
24140
|
aggregateTransactionLocator?: string | undefined;
|
|
23877
24141
|
validationResult?: {
|
|
23878
|
-
success: boolean;
|
|
23879
24142
|
validationItems?: {
|
|
23880
24143
|
elementType?: string | undefined;
|
|
23881
24144
|
locator?: string | undefined;
|
|
23882
24145
|
errors?: string[] | undefined;
|
|
23883
24146
|
}[] | undefined;
|
|
24147
|
+
success?: boolean | undefined;
|
|
23884
24148
|
} | undefined;
|
|
23885
24149
|
changeInstructions?: ({
|
|
23886
24150
|
locator: string;
|
|
@@ -23967,12 +24231,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
23967
24231
|
baseTransactionLocator?: string | undefined;
|
|
23968
24232
|
aggregateTransactionLocator?: string | undefined;
|
|
23969
24233
|
validationResult?: {
|
|
23970
|
-
success: boolean;
|
|
23971
24234
|
validationItems?: {
|
|
23972
24235
|
elementType?: string | undefined;
|
|
23973
24236
|
locator?: string | undefined;
|
|
23974
24237
|
errors?: string[] | undefined;
|
|
23975
24238
|
}[] | undefined;
|
|
24239
|
+
success?: boolean | undefined;
|
|
23976
24240
|
} | undefined;
|
|
23977
24241
|
changeInstructions?: ({
|
|
23978
24242
|
locator: string;
|
|
@@ -24218,21 +24482,21 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
24218
24482
|
locator?: string | undefined;
|
|
24219
24483
|
errors?: string[] | undefined;
|
|
24220
24484
|
}>, "many">>;
|
|
24221
|
-
success: z.ZodBoolean
|
|
24485
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
24222
24486
|
}, "strip", z.ZodTypeAny, {
|
|
24223
|
-
success: boolean;
|
|
24224
24487
|
validationItems?: {
|
|
24225
24488
|
elementType?: string | undefined;
|
|
24226
24489
|
locator?: string | undefined;
|
|
24227
24490
|
errors?: string[] | undefined;
|
|
24228
24491
|
}[] | undefined;
|
|
24492
|
+
success?: boolean | undefined;
|
|
24229
24493
|
}, {
|
|
24230
|
-
success: boolean;
|
|
24231
24494
|
validationItems?: {
|
|
24232
24495
|
elementType?: string | undefined;
|
|
24233
24496
|
locator?: string | undefined;
|
|
24234
24497
|
errors?: string[] | undefined;
|
|
24235
24498
|
}[] | undefined;
|
|
24499
|
+
success?: boolean | undefined;
|
|
24236
24500
|
}>>;
|
|
24237
24501
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
24238
24502
|
action: z.ZodString;
|
|
@@ -24743,21 +25007,21 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
24743
25007
|
locator?: string | undefined;
|
|
24744
25008
|
errors?: string[] | undefined;
|
|
24745
25009
|
}>, "many">>;
|
|
24746
|
-
success: z.ZodBoolean
|
|
25010
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
24747
25011
|
}, "strip", z.ZodTypeAny, {
|
|
24748
|
-
success: boolean;
|
|
24749
25012
|
validationItems?: {
|
|
24750
25013
|
elementType?: string | undefined;
|
|
24751
25014
|
locator?: string | undefined;
|
|
24752
25015
|
errors?: string[] | undefined;
|
|
24753
25016
|
}[] | undefined;
|
|
25017
|
+
success?: boolean | undefined;
|
|
24754
25018
|
}, {
|
|
24755
|
-
success: boolean;
|
|
24756
25019
|
validationItems?: {
|
|
24757
25020
|
elementType?: string | undefined;
|
|
24758
25021
|
locator?: string | undefined;
|
|
24759
25022
|
errors?: string[] | undefined;
|
|
24760
25023
|
}[] | undefined;
|
|
25024
|
+
success?: boolean | undefined;
|
|
24761
25025
|
}>>;
|
|
24762
25026
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
24763
25027
|
action: z.ZodString;
|
|
@@ -25124,12 +25388,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25124
25388
|
baseTransactionLocator?: string | undefined;
|
|
25125
25389
|
aggregateTransactionLocator?: string | undefined;
|
|
25126
25390
|
validationResult?: {
|
|
25127
|
-
success: boolean;
|
|
25128
25391
|
validationItems?: {
|
|
25129
25392
|
elementType?: string | undefined;
|
|
25130
25393
|
locator?: string | undefined;
|
|
25131
25394
|
errors?: string[] | undefined;
|
|
25132
25395
|
}[] | undefined;
|
|
25396
|
+
success?: boolean | undefined;
|
|
25133
25397
|
} | undefined;
|
|
25134
25398
|
changeInstructions?: ({
|
|
25135
25399
|
locator: string;
|
|
@@ -25226,12 +25490,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25226
25490
|
baseTransactionLocator?: string | undefined;
|
|
25227
25491
|
aggregateTransactionLocator?: string | undefined;
|
|
25228
25492
|
validationResult?: {
|
|
25229
|
-
success: boolean;
|
|
25230
25493
|
validationItems?: {
|
|
25231
25494
|
elementType?: string | undefined;
|
|
25232
25495
|
locator?: string | undefined;
|
|
25233
25496
|
errors?: string[] | undefined;
|
|
25234
25497
|
}[] | undefined;
|
|
25498
|
+
success?: boolean | undefined;
|
|
25235
25499
|
} | undefined;
|
|
25236
25500
|
changeInstructions?: ({
|
|
25237
25501
|
locator: string;
|
|
@@ -25340,12 +25604,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25340
25604
|
baseTransactionLocator?: string | undefined;
|
|
25341
25605
|
aggregateTransactionLocator?: string | undefined;
|
|
25342
25606
|
validationResult?: {
|
|
25343
|
-
success: boolean;
|
|
25344
25607
|
validationItems?: {
|
|
25345
25608
|
elementType?: string | undefined;
|
|
25346
25609
|
locator?: string | undefined;
|
|
25347
25610
|
errors?: string[] | undefined;
|
|
25348
25611
|
}[] | undefined;
|
|
25612
|
+
success?: boolean | undefined;
|
|
25349
25613
|
} | undefined;
|
|
25350
25614
|
changeInstructions?: ({
|
|
25351
25615
|
locator: string;
|
|
@@ -25432,12 +25696,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25432
25696
|
baseTransactionLocator?: string | undefined;
|
|
25433
25697
|
aggregateTransactionLocator?: string | undefined;
|
|
25434
25698
|
validationResult?: {
|
|
25435
|
-
success: boolean;
|
|
25436
25699
|
validationItems?: {
|
|
25437
25700
|
elementType?: string | undefined;
|
|
25438
25701
|
locator?: string | undefined;
|
|
25439
25702
|
errors?: string[] | undefined;
|
|
25440
25703
|
}[] | undefined;
|
|
25704
|
+
success?: boolean | undefined;
|
|
25441
25705
|
} | undefined;
|
|
25442
25706
|
changeInstructions?: ({
|
|
25443
25707
|
locator: string;
|
|
@@ -25545,12 +25809,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25545
25809
|
baseTransactionLocator?: string | undefined;
|
|
25546
25810
|
aggregateTransactionLocator?: string | undefined;
|
|
25547
25811
|
validationResult?: {
|
|
25548
|
-
success: boolean;
|
|
25549
25812
|
validationItems?: {
|
|
25550
25813
|
elementType?: string | undefined;
|
|
25551
25814
|
locator?: string | undefined;
|
|
25552
25815
|
errors?: string[] | undefined;
|
|
25553
25816
|
}[] | undefined;
|
|
25817
|
+
success?: boolean | undefined;
|
|
25554
25818
|
} | undefined;
|
|
25555
25819
|
changeInstructions?: ({
|
|
25556
25820
|
locator: string;
|
|
@@ -25637,12 +25901,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25637
25901
|
baseTransactionLocator?: string | undefined;
|
|
25638
25902
|
aggregateTransactionLocator?: string | undefined;
|
|
25639
25903
|
validationResult?: {
|
|
25640
|
-
success: boolean;
|
|
25641
25904
|
validationItems?: {
|
|
25642
25905
|
elementType?: string | undefined;
|
|
25643
25906
|
locator?: string | undefined;
|
|
25644
25907
|
errors?: string[] | undefined;
|
|
25645
25908
|
}[] | undefined;
|
|
25909
|
+
success?: boolean | undefined;
|
|
25646
25910
|
} | undefined;
|
|
25647
25911
|
changeInstructions?: ({
|
|
25648
25912
|
locator: string;
|
|
@@ -25820,21 +26084,21 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25820
26084
|
locator?: string | undefined;
|
|
25821
26085
|
errors?: string[] | undefined;
|
|
25822
26086
|
}>, "many">>;
|
|
25823
|
-
success: z.ZodBoolean
|
|
26087
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
25824
26088
|
}, "strip", z.ZodTypeAny, {
|
|
25825
|
-
success: boolean;
|
|
25826
26089
|
validationItems?: {
|
|
25827
26090
|
elementType?: string | undefined;
|
|
25828
26091
|
locator?: string | undefined;
|
|
25829
26092
|
errors?: string[] | undefined;
|
|
25830
26093
|
}[] | undefined;
|
|
26094
|
+
success?: boolean | undefined;
|
|
25831
26095
|
}, {
|
|
25832
|
-
success: boolean;
|
|
25833
26096
|
validationItems?: {
|
|
25834
26097
|
elementType?: string | undefined;
|
|
25835
26098
|
locator?: string | undefined;
|
|
25836
26099
|
errors?: string[] | undefined;
|
|
25837
26100
|
}[] | undefined;
|
|
26101
|
+
success?: boolean | undefined;
|
|
25838
26102
|
}>>;
|
|
25839
26103
|
}, {
|
|
25840
26104
|
aggregatedTransactions: z.ZodLazy<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -25952,21 +26216,21 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
25952
26216
|
locator?: string | undefined;
|
|
25953
26217
|
errors?: string[] | undefined;
|
|
25954
26218
|
}>, "many">>;
|
|
25955
|
-
success: z.ZodBoolean
|
|
26219
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
25956
26220
|
}, "strip", z.ZodTypeAny, {
|
|
25957
|
-
success: boolean;
|
|
25958
26221
|
validationItems?: {
|
|
25959
26222
|
elementType?: string | undefined;
|
|
25960
26223
|
locator?: string | undefined;
|
|
25961
26224
|
errors?: string[] | undefined;
|
|
25962
26225
|
}[] | undefined;
|
|
26226
|
+
success?: boolean | undefined;
|
|
25963
26227
|
}, {
|
|
25964
|
-
success: boolean;
|
|
25965
26228
|
validationItems?: {
|
|
25966
26229
|
elementType?: string | undefined;
|
|
25967
26230
|
locator?: string | undefined;
|
|
25968
26231
|
errors?: string[] | undefined;
|
|
25969
26232
|
}[] | undefined;
|
|
26233
|
+
success?: boolean | undefined;
|
|
25970
26234
|
}>>;
|
|
25971
26235
|
}, "strip", z.ZodTypeAny, {
|
|
25972
26236
|
locator: string;
|
|
@@ -26003,12 +26267,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26003
26267
|
baseTransactionLocator?: string | undefined;
|
|
26004
26268
|
aggregateTransactionLocator?: string | undefined;
|
|
26005
26269
|
validationResult?: {
|
|
26006
|
-
success: boolean;
|
|
26007
26270
|
validationItems?: {
|
|
26008
26271
|
elementType?: string | undefined;
|
|
26009
26272
|
locator?: string | undefined;
|
|
26010
26273
|
errors?: string[] | undefined;
|
|
26011
26274
|
}[] | undefined;
|
|
26275
|
+
success?: boolean | undefined;
|
|
26012
26276
|
} | undefined;
|
|
26013
26277
|
changeInstructions?: any[] | undefined;
|
|
26014
26278
|
}, {
|
|
@@ -26046,12 +26310,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26046
26310
|
baseTransactionLocator?: string | undefined;
|
|
26047
26311
|
aggregateTransactionLocator?: string | undefined;
|
|
26048
26312
|
validationResult?: {
|
|
26049
|
-
success: boolean;
|
|
26050
26313
|
validationItems?: {
|
|
26051
26314
|
elementType?: string | undefined;
|
|
26052
26315
|
locator?: string | undefined;
|
|
26053
26316
|
errors?: string[] | undefined;
|
|
26054
26317
|
}[] | undefined;
|
|
26318
|
+
success?: boolean | undefined;
|
|
26055
26319
|
} | undefined;
|
|
26056
26320
|
changeInstructions?: any[] | undefined;
|
|
26057
26321
|
}>, "many">>>;
|
|
@@ -26090,12 +26354,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26090
26354
|
baseTransactionLocator?: string | undefined;
|
|
26091
26355
|
aggregateTransactionLocator?: string | undefined;
|
|
26092
26356
|
validationResult?: {
|
|
26093
|
-
success: boolean;
|
|
26094
26357
|
validationItems?: {
|
|
26095
26358
|
elementType?: string | undefined;
|
|
26096
26359
|
locator?: string | undefined;
|
|
26097
26360
|
errors?: string[] | undefined;
|
|
26098
26361
|
}[] | undefined;
|
|
26362
|
+
success?: boolean | undefined;
|
|
26099
26363
|
} | undefined;
|
|
26100
26364
|
changeInstructions?: any[] | undefined;
|
|
26101
26365
|
aggregatedTransactions?: {
|
|
@@ -26133,12 +26397,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26133
26397
|
baseTransactionLocator?: string | undefined;
|
|
26134
26398
|
aggregateTransactionLocator?: string | undefined;
|
|
26135
26399
|
validationResult?: {
|
|
26136
|
-
success: boolean;
|
|
26137
26400
|
validationItems?: {
|
|
26138
26401
|
elementType?: string | undefined;
|
|
26139
26402
|
locator?: string | undefined;
|
|
26140
26403
|
errors?: string[] | undefined;
|
|
26141
26404
|
}[] | undefined;
|
|
26405
|
+
success?: boolean | undefined;
|
|
26142
26406
|
} | undefined;
|
|
26143
26407
|
changeInstructions?: any[] | undefined;
|
|
26144
26408
|
}[] | undefined;
|
|
@@ -26177,12 +26441,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26177
26441
|
baseTransactionLocator?: string | undefined;
|
|
26178
26442
|
aggregateTransactionLocator?: string | undefined;
|
|
26179
26443
|
validationResult?: {
|
|
26180
|
-
success: boolean;
|
|
26181
26444
|
validationItems?: {
|
|
26182
26445
|
elementType?: string | undefined;
|
|
26183
26446
|
locator?: string | undefined;
|
|
26184
26447
|
errors?: string[] | undefined;
|
|
26185
26448
|
}[] | undefined;
|
|
26449
|
+
success?: boolean | undefined;
|
|
26186
26450
|
} | undefined;
|
|
26187
26451
|
changeInstructions?: any[] | undefined;
|
|
26188
26452
|
aggregatedTransactions?: {
|
|
@@ -26220,12 +26484,12 @@ export declare const policyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
26220
26484
|
baseTransactionLocator?: string | undefined;
|
|
26221
26485
|
aggregateTransactionLocator?: string | undefined;
|
|
26222
26486
|
validationResult?: {
|
|
26223
|
-
success: boolean;
|
|
26224
26487
|
validationItems?: {
|
|
26225
26488
|
elementType?: string | undefined;
|
|
26226
26489
|
locator?: string | undefined;
|
|
26227
26490
|
errors?: string[] | undefined;
|
|
26228
26491
|
}[] | undefined;
|
|
26492
|
+
success?: boolean | undefined;
|
|
26229
26493
|
} | undefined;
|
|
26230
26494
|
changeInstructions?: any[] | undefined;
|
|
26231
26495
|
}[] | undefined;
|
|
@@ -27466,21 +27730,21 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27466
27730
|
locator?: string | undefined;
|
|
27467
27731
|
errors?: string[] | undefined;
|
|
27468
27732
|
}>, "many">>;
|
|
27469
|
-
success: z.ZodBoolean
|
|
27733
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
27470
27734
|
}, "strip", z.ZodTypeAny, {
|
|
27471
|
-
success: boolean;
|
|
27472
27735
|
validationItems?: {
|
|
27473
27736
|
elementType?: string | undefined;
|
|
27474
27737
|
locator?: string | undefined;
|
|
27475
27738
|
errors?: string[] | undefined;
|
|
27476
27739
|
}[] | undefined;
|
|
27740
|
+
success?: boolean | undefined;
|
|
27477
27741
|
}, {
|
|
27478
|
-
success: boolean;
|
|
27479
27742
|
validationItems?: {
|
|
27480
27743
|
elementType?: string | undefined;
|
|
27481
27744
|
locator?: string | undefined;
|
|
27482
27745
|
errors?: string[] | undefined;
|
|
27483
27746
|
}[] | undefined;
|
|
27747
|
+
success?: boolean | undefined;
|
|
27484
27748
|
}>>;
|
|
27485
27749
|
productName: z.ZodString;
|
|
27486
27750
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -27536,12 +27800,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27536
27800
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27537
27801
|
duration?: number | undefined;
|
|
27538
27802
|
validationResult?: {
|
|
27539
|
-
success: boolean;
|
|
27540
27803
|
validationItems?: {
|
|
27541
27804
|
elementType?: string | undefined;
|
|
27542
27805
|
locator?: string | undefined;
|
|
27543
27806
|
errors?: string[] | undefined;
|
|
27544
27807
|
}[] | undefined;
|
|
27808
|
+
success?: boolean | undefined;
|
|
27545
27809
|
} | undefined;
|
|
27546
27810
|
}, {
|
|
27547
27811
|
locator: string;
|
|
@@ -27582,12 +27846,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27582
27846
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27583
27847
|
duration?: number | undefined;
|
|
27584
27848
|
validationResult?: {
|
|
27585
|
-
success: boolean;
|
|
27586
27849
|
validationItems?: {
|
|
27587
27850
|
elementType?: string | undefined;
|
|
27588
27851
|
locator?: string | undefined;
|
|
27589
27852
|
errors?: string[] | undefined;
|
|
27590
27853
|
}[] | undefined;
|
|
27854
|
+
success?: boolean | undefined;
|
|
27591
27855
|
} | undefined;
|
|
27592
27856
|
}>, "many">;
|
|
27593
27857
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27630,12 +27894,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27630
27894
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27631
27895
|
duration?: number | undefined;
|
|
27632
27896
|
validationResult?: {
|
|
27633
|
-
success: boolean;
|
|
27634
27897
|
validationItems?: {
|
|
27635
27898
|
elementType?: string | undefined;
|
|
27636
27899
|
locator?: string | undefined;
|
|
27637
27900
|
errors?: string[] | undefined;
|
|
27638
27901
|
}[] | undefined;
|
|
27902
|
+
success?: boolean | undefined;
|
|
27639
27903
|
} | undefined;
|
|
27640
27904
|
}[];
|
|
27641
27905
|
listCompleted: boolean;
|
|
@@ -27679,12 +27943,12 @@ export declare const QuickQuoteListResponseSchema: z.ZodObject<{
|
|
|
27679
27943
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
27680
27944
|
duration?: number | undefined;
|
|
27681
27945
|
validationResult?: {
|
|
27682
|
-
success: boolean;
|
|
27683
27946
|
validationItems?: {
|
|
27684
27947
|
elementType?: string | undefined;
|
|
27685
27948
|
locator?: string | undefined;
|
|
27686
27949
|
errors?: string[] | undefined;
|
|
27687
27950
|
}[] | undefined;
|
|
27951
|
+
success?: boolean | undefined;
|
|
27688
27952
|
} | undefined;
|
|
27689
27953
|
}[];
|
|
27690
27954
|
listCompleted: boolean;
|
|
@@ -27717,21 +27981,21 @@ export declare const QuickQuotePriceResponseSchema: z.ZodObject<{
|
|
|
27717
27981
|
locator?: string | undefined;
|
|
27718
27982
|
errors?: string[] | undefined;
|
|
27719
27983
|
}>, "many">>;
|
|
27720
|
-
success: z.ZodBoolean
|
|
27984
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
27721
27985
|
}, "strip", z.ZodTypeAny, {
|
|
27722
|
-
success: boolean;
|
|
27723
27986
|
validationItems?: {
|
|
27724
27987
|
elementType?: string | undefined;
|
|
27725
27988
|
locator?: string | undefined;
|
|
27726
27989
|
errors?: string[] | undefined;
|
|
27727
27990
|
}[] | undefined;
|
|
27991
|
+
success?: boolean | undefined;
|
|
27728
27992
|
}, {
|
|
27729
|
-
success: boolean;
|
|
27730
27993
|
validationItems?: {
|
|
27731
27994
|
elementType?: string | undefined;
|
|
27732
27995
|
locator?: string | undefined;
|
|
27733
27996
|
errors?: string[] | undefined;
|
|
27734
27997
|
}[] | undefined;
|
|
27998
|
+
success?: boolean | undefined;
|
|
27735
27999
|
}>>;
|
|
27736
28000
|
productName: z.ZodString;
|
|
27737
28001
|
duration: z.ZodNumber;
|
|
@@ -27805,12 +28069,12 @@ export declare const QuickQuotePriceResponseSchema: z.ZodObject<{
|
|
|
27805
28069
|
tenantLocator: string;
|
|
27806
28070
|
accountLocator?: string | undefined;
|
|
27807
28071
|
validationResult?: {
|
|
27808
|
-
success: boolean;
|
|
27809
28072
|
validationItems?: {
|
|
27810
28073
|
elementType?: string | undefined;
|
|
27811
28074
|
locator?: string | undefined;
|
|
27812
28075
|
errors?: string[] | undefined;
|
|
27813
28076
|
}[] | undefined;
|
|
28077
|
+
success?: boolean | undefined;
|
|
27814
28078
|
} | undefined;
|
|
27815
28079
|
}, {
|
|
27816
28080
|
items: {
|
|
@@ -27839,12 +28103,12 @@ export declare const QuickQuotePriceResponseSchema: z.ZodObject<{
|
|
|
27839
28103
|
tenantLocator: string;
|
|
27840
28104
|
accountLocator?: string | undefined;
|
|
27841
28105
|
validationResult?: {
|
|
27842
|
-
success: boolean;
|
|
27843
28106
|
validationItems?: {
|
|
27844
28107
|
elementType?: string | undefined;
|
|
27845
28108
|
locator?: string | undefined;
|
|
27846
28109
|
errors?: string[] | undefined;
|
|
27847
28110
|
}[] | undefined;
|
|
28111
|
+
success?: boolean | undefined;
|
|
27848
28112
|
} | undefined;
|
|
27849
28113
|
}>;
|
|
27850
28114
|
|
|
@@ -27872,21 +28136,21 @@ export declare const QuickQuoteQuoteResponseSchema: z.ZodObject<{
|
|
|
27872
28136
|
locator?: string | undefined;
|
|
27873
28137
|
errors?: string[] | undefined;
|
|
27874
28138
|
}>, "many">>;
|
|
27875
|
-
success: z.ZodBoolean
|
|
28139
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
27876
28140
|
}, "strip", z.ZodTypeAny, {
|
|
27877
|
-
success: boolean;
|
|
27878
28141
|
validationItems?: {
|
|
27879
28142
|
elementType?: string | undefined;
|
|
27880
28143
|
locator?: string | undefined;
|
|
27881
28144
|
errors?: string[] | undefined;
|
|
27882
28145
|
}[] | undefined;
|
|
28146
|
+
success?: boolean | undefined;
|
|
27883
28147
|
}, {
|
|
27884
|
-
success: boolean;
|
|
27885
28148
|
validationItems?: {
|
|
27886
28149
|
elementType?: string | undefined;
|
|
27887
28150
|
locator?: string | undefined;
|
|
27888
28151
|
errors?: string[] | undefined;
|
|
27889
28152
|
}[] | undefined;
|
|
28153
|
+
success?: boolean | undefined;
|
|
27890
28154
|
}>>;
|
|
27891
28155
|
productName: z.ZodString;
|
|
27892
28156
|
duration: z.ZodNumber;
|
|
@@ -28237,12 +28501,12 @@ export declare const QuickQuoteQuoteResponseSchema: z.ZodObject<{
|
|
|
28237
28501
|
} | undefined;
|
|
28238
28502
|
accountLocator?: string | undefined;
|
|
28239
28503
|
validationResult?: {
|
|
28240
|
-
success: boolean;
|
|
28241
28504
|
validationItems?: {
|
|
28242
28505
|
elementType?: string | undefined;
|
|
28243
28506
|
locator?: string | undefined;
|
|
28244
28507
|
errors?: string[] | undefined;
|
|
28245
28508
|
}[] | undefined;
|
|
28509
|
+
success?: boolean | undefined;
|
|
28246
28510
|
} | undefined;
|
|
28247
28511
|
}, {
|
|
28248
28512
|
startTime: string;
|
|
@@ -28315,12 +28579,12 @@ export declare const QuickQuoteQuoteResponseSchema: z.ZodObject<{
|
|
|
28315
28579
|
} | undefined;
|
|
28316
28580
|
accountLocator?: string | undefined;
|
|
28317
28581
|
validationResult?: {
|
|
28318
|
-
success: boolean;
|
|
28319
28582
|
validationItems?: {
|
|
28320
28583
|
elementType?: string | undefined;
|
|
28321
28584
|
locator?: string | undefined;
|
|
28322
28585
|
errors?: string[] | undefined;
|
|
28323
28586
|
}[] | undefined;
|
|
28587
|
+
success?: boolean | undefined;
|
|
28324
28588
|
} | undefined;
|
|
28325
28589
|
}>;
|
|
28326
28590
|
|
|
@@ -28389,21 +28653,21 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
28389
28653
|
locator?: string | undefined;
|
|
28390
28654
|
errors?: string[] | undefined;
|
|
28391
28655
|
}>, "many">>;
|
|
28392
|
-
success: z.ZodBoolean
|
|
28656
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
28393
28657
|
}, "strip", z.ZodTypeAny, {
|
|
28394
|
-
success: boolean;
|
|
28395
28658
|
validationItems?: {
|
|
28396
28659
|
elementType?: string | undefined;
|
|
28397
28660
|
locator?: string | undefined;
|
|
28398
28661
|
errors?: string[] | undefined;
|
|
28399
28662
|
}[] | undefined;
|
|
28663
|
+
success?: boolean | undefined;
|
|
28400
28664
|
}, {
|
|
28401
|
-
success: boolean;
|
|
28402
28665
|
validationItems?: {
|
|
28403
28666
|
elementType?: string | undefined;
|
|
28404
28667
|
locator?: string | undefined;
|
|
28405
28668
|
errors?: string[] | undefined;
|
|
28406
28669
|
}[] | undefined;
|
|
28670
|
+
success?: boolean | undefined;
|
|
28407
28671
|
}>>;
|
|
28408
28672
|
productName: z.ZodString;
|
|
28409
28673
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -28459,12 +28723,12 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
28459
28723
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
28460
28724
|
duration?: number | undefined;
|
|
28461
28725
|
validationResult?: {
|
|
28462
|
-
success: boolean;
|
|
28463
28726
|
validationItems?: {
|
|
28464
28727
|
elementType?: string | undefined;
|
|
28465
28728
|
locator?: string | undefined;
|
|
28466
28729
|
errors?: string[] | undefined;
|
|
28467
28730
|
}[] | undefined;
|
|
28731
|
+
success?: boolean | undefined;
|
|
28468
28732
|
} | undefined;
|
|
28469
28733
|
}, {
|
|
28470
28734
|
locator: string;
|
|
@@ -28505,12 +28769,12 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
28505
28769
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
28506
28770
|
duration?: number | undefined;
|
|
28507
28771
|
validationResult?: {
|
|
28508
|
-
success: boolean;
|
|
28509
28772
|
validationItems?: {
|
|
28510
28773
|
elementType?: string | undefined;
|
|
28511
28774
|
locator?: string | undefined;
|
|
28512
28775
|
errors?: string[] | undefined;
|
|
28513
28776
|
}[] | undefined;
|
|
28777
|
+
success?: boolean | undefined;
|
|
28514
28778
|
} | undefined;
|
|
28515
28779
|
}>;
|
|
28516
28780
|
|
|
@@ -29137,21 +29401,21 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29137
29401
|
locator?: string | undefined;
|
|
29138
29402
|
errors?: string[] | undefined;
|
|
29139
29403
|
}>, "many">>;
|
|
29140
|
-
success: z.ZodBoolean
|
|
29404
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
29141
29405
|
}, "strip", z.ZodTypeAny, {
|
|
29142
|
-
success: boolean;
|
|
29143
29406
|
validationItems?: {
|
|
29144
29407
|
elementType?: string | undefined;
|
|
29145
29408
|
locator?: string | undefined;
|
|
29146
29409
|
errors?: string[] | undefined;
|
|
29147
29410
|
}[] | undefined;
|
|
29411
|
+
success?: boolean | undefined;
|
|
29148
29412
|
}, {
|
|
29149
|
-
success: boolean;
|
|
29150
29413
|
validationItems?: {
|
|
29151
29414
|
elementType?: string | undefined;
|
|
29152
29415
|
locator?: string | undefined;
|
|
29153
29416
|
errors?: string[] | undefined;
|
|
29154
29417
|
}[] | undefined;
|
|
29418
|
+
success?: boolean | undefined;
|
|
29155
29419
|
}>>;
|
|
29156
29420
|
static: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
29157
29421
|
issuedTime: z.ZodOptional<z.ZodString>;
|
|
@@ -29238,12 +29502,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29238
29502
|
duration?: number | undefined;
|
|
29239
29503
|
issuedTime?: string | undefined;
|
|
29240
29504
|
validationResult?: {
|
|
29241
|
-
success: boolean;
|
|
29242
29505
|
validationItems?: {
|
|
29243
29506
|
elementType?: string | undefined;
|
|
29244
29507
|
locator?: string | undefined;
|
|
29245
29508
|
errors?: string[] | undefined;
|
|
29246
29509
|
}[] | undefined;
|
|
29510
|
+
success?: boolean | undefined;
|
|
29247
29511
|
} | undefined;
|
|
29248
29512
|
acceptedTime?: string | undefined;
|
|
29249
29513
|
anonymizedAt?: string | undefined;
|
|
@@ -29322,12 +29586,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29322
29586
|
duration?: number | undefined;
|
|
29323
29587
|
issuedTime?: string | undefined;
|
|
29324
29588
|
validationResult?: {
|
|
29325
|
-
success: boolean;
|
|
29326
29589
|
validationItems?: {
|
|
29327
29590
|
elementType?: string | undefined;
|
|
29328
29591
|
locator?: string | undefined;
|
|
29329
29592
|
errors?: string[] | undefined;
|
|
29330
29593
|
}[] | undefined;
|
|
29594
|
+
success?: boolean | undefined;
|
|
29331
29595
|
} | undefined;
|
|
29332
29596
|
acceptedTime?: string | undefined;
|
|
29333
29597
|
anonymizedAt?: string | undefined;
|
|
@@ -29408,12 +29672,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29408
29672
|
duration?: number | undefined;
|
|
29409
29673
|
issuedTime?: string | undefined;
|
|
29410
29674
|
validationResult?: {
|
|
29411
|
-
success: boolean;
|
|
29412
29675
|
validationItems?: {
|
|
29413
29676
|
elementType?: string | undefined;
|
|
29414
29677
|
locator?: string | undefined;
|
|
29415
29678
|
errors?: string[] | undefined;
|
|
29416
29679
|
}[] | undefined;
|
|
29680
|
+
success?: boolean | undefined;
|
|
29417
29681
|
} | undefined;
|
|
29418
29682
|
acceptedTime?: string | undefined;
|
|
29419
29683
|
anonymizedAt?: string | undefined;
|
|
@@ -29495,12 +29759,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
29495
29759
|
duration?: number | undefined;
|
|
29496
29760
|
issuedTime?: string | undefined;
|
|
29497
29761
|
validationResult?: {
|
|
29498
|
-
success: boolean;
|
|
29499
29762
|
validationItems?: {
|
|
29500
29763
|
elementType?: string | undefined;
|
|
29501
29764
|
locator?: string | undefined;
|
|
29502
29765
|
errors?: string[] | undefined;
|
|
29503
29766
|
}[] | undefined;
|
|
29767
|
+
success?: boolean | undefined;
|
|
29504
29768
|
} | undefined;
|
|
29505
29769
|
acceptedTime?: string | undefined;
|
|
29506
29770
|
anonymizedAt?: string | undefined;
|
|
@@ -29630,21 +29894,21 @@ export declare const QuotePriceResponseSchema: z.ZodObject<{
|
|
|
29630
29894
|
locator?: string | undefined;
|
|
29631
29895
|
errors?: string[] | undefined;
|
|
29632
29896
|
}>, "many">>;
|
|
29633
|
-
success: z.ZodBoolean
|
|
29897
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
29634
29898
|
}, "strip", z.ZodTypeAny, {
|
|
29635
|
-
success: boolean;
|
|
29636
29899
|
validationItems?: {
|
|
29637
29900
|
elementType?: string | undefined;
|
|
29638
29901
|
locator?: string | undefined;
|
|
29639
29902
|
errors?: string[] | undefined;
|
|
29640
29903
|
}[] | undefined;
|
|
29904
|
+
success?: boolean | undefined;
|
|
29641
29905
|
}, {
|
|
29642
|
-
success: boolean;
|
|
29643
29906
|
validationItems?: {
|
|
29644
29907
|
elementType?: string | undefined;
|
|
29645
29908
|
locator?: string | undefined;
|
|
29646
29909
|
errors?: string[] | undefined;
|
|
29647
29910
|
}[] | undefined;
|
|
29911
|
+
success?: boolean | undefined;
|
|
29648
29912
|
}>>;
|
|
29649
29913
|
productName: z.ZodString;
|
|
29650
29914
|
duration: z.ZodNumber;
|
|
@@ -29677,12 +29941,12 @@ export declare const QuotePriceResponseSchema: z.ZodObject<{
|
|
|
29677
29941
|
quoteNumber: string;
|
|
29678
29942
|
tenantLocator: string;
|
|
29679
29943
|
validationResult?: {
|
|
29680
|
-
success: boolean;
|
|
29681
29944
|
validationItems?: {
|
|
29682
29945
|
elementType?: string | undefined;
|
|
29683
29946
|
locator?: string | undefined;
|
|
29684
29947
|
errors?: string[] | undefined;
|
|
29685
29948
|
}[] | undefined;
|
|
29949
|
+
success?: boolean | undefined;
|
|
29686
29950
|
} | undefined;
|
|
29687
29951
|
}, {
|
|
29688
29952
|
items: {
|
|
@@ -29712,12 +29976,12 @@ export declare const QuotePriceResponseSchema: z.ZodObject<{
|
|
|
29712
29976
|
quoteNumber: string;
|
|
29713
29977
|
tenantLocator: string;
|
|
29714
29978
|
validationResult?: {
|
|
29715
|
-
success: boolean;
|
|
29716
29979
|
validationItems?: {
|
|
29717
29980
|
elementType?: string | undefined;
|
|
29718
29981
|
locator?: string | undefined;
|
|
29719
29982
|
errors?: string[] | undefined;
|
|
29720
29983
|
}[] | undefined;
|
|
29984
|
+
success?: boolean | undefined;
|
|
29721
29985
|
} | undefined;
|
|
29722
29986
|
}>;
|
|
29723
29987
|
|
|
@@ -29781,21 +30045,21 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
29781
30045
|
locator?: string | undefined;
|
|
29782
30046
|
errors?: string[] | undefined;
|
|
29783
30047
|
}>, "many">>;
|
|
29784
|
-
success: z.ZodBoolean
|
|
30048
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
29785
30049
|
}, "strip", z.ZodTypeAny, {
|
|
29786
|
-
success: boolean;
|
|
29787
30050
|
validationItems?: {
|
|
29788
30051
|
elementType?: string | undefined;
|
|
29789
30052
|
locator?: string | undefined;
|
|
29790
30053
|
errors?: string[] | undefined;
|
|
29791
30054
|
}[] | undefined;
|
|
30055
|
+
success?: boolean | undefined;
|
|
29792
30056
|
}, {
|
|
29793
|
-
success: boolean;
|
|
29794
30057
|
validationItems?: {
|
|
29795
30058
|
elementType?: string | undefined;
|
|
29796
30059
|
locator?: string | undefined;
|
|
29797
30060
|
errors?: string[] | undefined;
|
|
29798
30061
|
}[] | undefined;
|
|
30062
|
+
success?: boolean | undefined;
|
|
29799
30063
|
}>>;
|
|
29800
30064
|
}, "strip", z.ZodTypeAny, {
|
|
29801
30065
|
accountLocator: string;
|
|
@@ -29820,12 +30084,12 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
29820
30084
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
29821
30085
|
duration?: number | undefined;
|
|
29822
30086
|
validationResult?: {
|
|
29823
|
-
success: boolean;
|
|
29824
30087
|
validationItems?: {
|
|
29825
30088
|
elementType?: string | undefined;
|
|
29826
30089
|
locator?: string | undefined;
|
|
29827
30090
|
errors?: string[] | undefined;
|
|
29828
30091
|
}[] | undefined;
|
|
30092
|
+
success?: boolean | undefined;
|
|
29829
30093
|
} | undefined;
|
|
29830
30094
|
}, {
|
|
29831
30095
|
accountLocator: string;
|
|
@@ -29850,12 +30114,12 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
29850
30114
|
durationBasis?: "none" | "years" | "months" | "monthsE360" | "weeks" | "days" | "hours" | undefined;
|
|
29851
30115
|
duration?: number | undefined;
|
|
29852
30116
|
validationResult?: {
|
|
29853
|
-
success: boolean;
|
|
29854
30117
|
validationItems?: {
|
|
29855
30118
|
elementType?: string | undefined;
|
|
29856
30119
|
locator?: string | undefined;
|
|
29857
30120
|
errors?: string[] | undefined;
|
|
29858
30121
|
}[] | undefined;
|
|
30122
|
+
success?: boolean | undefined;
|
|
29859
30123
|
} | undefined;
|
|
29860
30124
|
}>;
|
|
29861
30125
|
|
|
@@ -30308,21 +30572,21 @@ export declare const QuoteResponseSchema: z.ZodObject<{
|
|
|
30308
30572
|
locator?: string | undefined;
|
|
30309
30573
|
errors?: string[] | undefined;
|
|
30310
30574
|
}>, "many">>;
|
|
30311
|
-
success: z.ZodBoolean
|
|
30575
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
30312
30576
|
}, "strip", z.ZodTypeAny, {
|
|
30313
|
-
success: boolean;
|
|
30314
30577
|
validationItems?: {
|
|
30315
30578
|
elementType?: string | undefined;
|
|
30316
30579
|
locator?: string | undefined;
|
|
30317
30580
|
errors?: string[] | undefined;
|
|
30318
30581
|
}[] | undefined;
|
|
30582
|
+
success?: boolean | undefined;
|
|
30319
30583
|
}, {
|
|
30320
|
-
success: boolean;
|
|
30321
30584
|
validationItems?: {
|
|
30322
30585
|
elementType?: string | undefined;
|
|
30323
30586
|
locator?: string | undefined;
|
|
30324
30587
|
errors?: string[] | undefined;
|
|
30325
30588
|
}[] | undefined;
|
|
30589
|
+
success?: boolean | undefined;
|
|
30326
30590
|
}>>;
|
|
30327
30591
|
static: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30328
30592
|
issuedTime: z.ZodOptional<z.ZodString>;
|
|
@@ -30409,12 +30673,12 @@ export declare const QuoteResponseSchema: z.ZodObject<{
|
|
|
30409
30673
|
duration?: number | undefined;
|
|
30410
30674
|
issuedTime?: string | undefined;
|
|
30411
30675
|
validationResult?: {
|
|
30412
|
-
success: boolean;
|
|
30413
30676
|
validationItems?: {
|
|
30414
30677
|
elementType?: string | undefined;
|
|
30415
30678
|
locator?: string | undefined;
|
|
30416
30679
|
errors?: string[] | undefined;
|
|
30417
30680
|
}[] | undefined;
|
|
30681
|
+
success?: boolean | undefined;
|
|
30418
30682
|
} | undefined;
|
|
30419
30683
|
acceptedTime?: string | undefined;
|
|
30420
30684
|
anonymizedAt?: string | undefined;
|
|
@@ -30493,12 +30757,12 @@ export declare const QuoteResponseSchema: z.ZodObject<{
|
|
|
30493
30757
|
duration?: number | undefined;
|
|
30494
30758
|
issuedTime?: string | undefined;
|
|
30495
30759
|
validationResult?: {
|
|
30496
|
-
success: boolean;
|
|
30497
30760
|
validationItems?: {
|
|
30498
30761
|
elementType?: string | undefined;
|
|
30499
30762
|
locator?: string | undefined;
|
|
30500
30763
|
errors?: string[] | undefined;
|
|
30501
30764
|
}[] | undefined;
|
|
30765
|
+
success?: boolean | undefined;
|
|
30502
30766
|
} | undefined;
|
|
30503
30767
|
acceptedTime?: string | undefined;
|
|
30504
30768
|
anonymizedAt?: string | undefined;
|
|
@@ -30590,21 +30854,21 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
30590
30854
|
locator?: string | undefined;
|
|
30591
30855
|
errors?: string[] | undefined;
|
|
30592
30856
|
}>, "many">>;
|
|
30593
|
-
success: z.ZodBoolean
|
|
30857
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
30594
30858
|
}, "strip", z.ZodTypeAny, {
|
|
30595
|
-
success: boolean;
|
|
30596
30859
|
validationItems?: {
|
|
30597
30860
|
elementType?: string | undefined;
|
|
30598
30861
|
locator?: string | undefined;
|
|
30599
30862
|
errors?: string[] | undefined;
|
|
30600
30863
|
}[] | undefined;
|
|
30864
|
+
success?: boolean | undefined;
|
|
30601
30865
|
}, {
|
|
30602
|
-
success: boolean;
|
|
30603
30866
|
validationItems?: {
|
|
30604
30867
|
elementType?: string | undefined;
|
|
30605
30868
|
locator?: string | undefined;
|
|
30606
30869
|
errors?: string[] | undefined;
|
|
30607
30870
|
}[] | undefined;
|
|
30871
|
+
success?: boolean | undefined;
|
|
30608
30872
|
}>>;
|
|
30609
30873
|
}, "strip", z.ZodTypeAny, {
|
|
30610
30874
|
quoteLocator: string;
|
|
@@ -30629,12 +30893,12 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
30629
30893
|
note?: string | undefined;
|
|
30630
30894
|
}[] | undefined;
|
|
30631
30895
|
validationResult?: {
|
|
30632
|
-
success: boolean;
|
|
30633
30896
|
validationItems?: {
|
|
30634
30897
|
elementType?: string | undefined;
|
|
30635
30898
|
locator?: string | undefined;
|
|
30636
30899
|
errors?: string[] | undefined;
|
|
30637
30900
|
}[] | undefined;
|
|
30901
|
+
success?: boolean | undefined;
|
|
30638
30902
|
} | undefined;
|
|
30639
30903
|
}, {
|
|
30640
30904
|
quoteLocator: string;
|
|
@@ -30659,12 +30923,12 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
30659
30923
|
note?: string | undefined;
|
|
30660
30924
|
}[] | undefined;
|
|
30661
30925
|
validationResult?: {
|
|
30662
|
-
success: boolean;
|
|
30663
30926
|
validationItems?: {
|
|
30664
30927
|
elementType?: string | undefined;
|
|
30665
30928
|
locator?: string | undefined;
|
|
30666
30929
|
errors?: string[] | undefined;
|
|
30667
30930
|
}[] | undefined;
|
|
30931
|
+
success?: boolean | undefined;
|
|
30668
30932
|
} | undefined;
|
|
30669
30933
|
}>;
|
|
30670
30934
|
|
|
@@ -30970,21 +31234,21 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
30970
31234
|
locator?: string | undefined;
|
|
30971
31235
|
errors?: string[] | undefined;
|
|
30972
31236
|
}>, "many">>;
|
|
30973
|
-
success: z.ZodBoolean
|
|
31237
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
30974
31238
|
}, "strip", z.ZodTypeAny, {
|
|
30975
|
-
success: boolean;
|
|
30976
31239
|
validationItems?: {
|
|
30977
31240
|
elementType?: string | undefined;
|
|
30978
31241
|
locator?: string | undefined;
|
|
30979
31242
|
errors?: string[] | undefined;
|
|
30980
31243
|
}[] | undefined;
|
|
31244
|
+
success?: boolean | undefined;
|
|
30981
31245
|
}, {
|
|
30982
|
-
success: boolean;
|
|
30983
31246
|
validationItems?: {
|
|
30984
31247
|
elementType?: string | undefined;
|
|
30985
31248
|
locator?: string | undefined;
|
|
30986
31249
|
errors?: string[] | undefined;
|
|
30987
31250
|
}[] | undefined;
|
|
31251
|
+
success?: boolean | undefined;
|
|
30988
31252
|
}>>;
|
|
30989
31253
|
productName: z.ZodString;
|
|
30990
31254
|
duration: z.ZodNumber;
|
|
@@ -31015,12 +31279,12 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
31015
31279
|
elementLocator?: string | undefined;
|
|
31016
31280
|
}[];
|
|
31017
31281
|
validationResult?: {
|
|
31018
|
-
success: boolean;
|
|
31019
31282
|
validationItems?: {
|
|
31020
31283
|
elementType?: string | undefined;
|
|
31021
31284
|
locator?: string | undefined;
|
|
31022
31285
|
errors?: string[] | undefined;
|
|
31023
31286
|
}[] | undefined;
|
|
31287
|
+
success?: boolean | undefined;
|
|
31024
31288
|
} | undefined;
|
|
31025
31289
|
}, {
|
|
31026
31290
|
accountLocator: string;
|
|
@@ -31048,12 +31312,12 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
31048
31312
|
elementLocator?: string | undefined;
|
|
31049
31313
|
}[];
|
|
31050
31314
|
validationResult?: {
|
|
31051
|
-
success: boolean;
|
|
31052
31315
|
validationItems?: {
|
|
31053
31316
|
elementType?: string | undefined;
|
|
31054
31317
|
locator?: string | undefined;
|
|
31055
31318
|
errors?: string[] | undefined;
|
|
31056
31319
|
}[] | undefined;
|
|
31320
|
+
success?: boolean | undefined;
|
|
31057
31321
|
} | undefined;
|
|
31058
31322
|
}>;
|
|
31059
31323
|
|
|
@@ -32412,6 +32676,19 @@ export declare const StaticDataUpdateRequestSchema: z.ZodObject<z.objectUtil.ext
|
|
|
32412
32676
|
removeData: Record<string, any>;
|
|
32413
32677
|
}>;
|
|
32414
32678
|
|
|
32679
|
+
export declare type SubPayment = z.infer<typeof SubPaymentSchema>;
|
|
32680
|
+
|
|
32681
|
+
export declare const SubPaymentSchema: z.ZodObject<{
|
|
32682
|
+
subpaymentLocator: z.ZodString;
|
|
32683
|
+
amount: z.ZodNumber;
|
|
32684
|
+
}, "strip", z.ZodTypeAny, {
|
|
32685
|
+
amount: number;
|
|
32686
|
+
subpaymentLocator: string;
|
|
32687
|
+
}, {
|
|
32688
|
+
amount: number;
|
|
32689
|
+
subpaymentLocator: string;
|
|
32690
|
+
}>;
|
|
32691
|
+
|
|
32415
32692
|
export declare type SubsegmentSummary = z.infer<typeof subsegmentSummarySchema>;
|
|
32416
32693
|
|
|
32417
32694
|
export declare const subsegmentSummarySchema: z.ZodObject<{
|
|
@@ -32987,21 +33264,21 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
32987
33264
|
locator?: string | undefined;
|
|
32988
33265
|
errors?: string[] | undefined;
|
|
32989
33266
|
}>, "many">>;
|
|
32990
|
-
success: z.ZodBoolean
|
|
33267
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
32991
33268
|
}, "strip", z.ZodTypeAny, {
|
|
32992
|
-
success: boolean;
|
|
32993
33269
|
validationItems?: {
|
|
32994
33270
|
elementType?: string | undefined;
|
|
32995
33271
|
locator?: string | undefined;
|
|
32996
33272
|
errors?: string[] | undefined;
|
|
32997
33273
|
}[] | undefined;
|
|
33274
|
+
success?: boolean | undefined;
|
|
32998
33275
|
}, {
|
|
32999
|
-
success: boolean;
|
|
33000
33276
|
validationItems?: {
|
|
33001
33277
|
elementType?: string | undefined;
|
|
33002
33278
|
locator?: string | undefined;
|
|
33003
33279
|
errors?: string[] | undefined;
|
|
33004
33280
|
}[] | undefined;
|
|
33281
|
+
success?: boolean | undefined;
|
|
33005
33282
|
}>>;
|
|
33006
33283
|
}, {
|
|
33007
33284
|
aggregatedTransactions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33061,21 +33338,21 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33061
33338
|
locator?: string | undefined;
|
|
33062
33339
|
errors?: string[] | undefined;
|
|
33063
33340
|
}>, "many">>;
|
|
33064
|
-
success: z.ZodBoolean
|
|
33341
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
33065
33342
|
}, "strip", z.ZodTypeAny, {
|
|
33066
|
-
success: boolean;
|
|
33067
33343
|
validationItems?: {
|
|
33068
33344
|
elementType?: string | undefined;
|
|
33069
33345
|
locator?: string | undefined;
|
|
33070
33346
|
errors?: string[] | undefined;
|
|
33071
33347
|
}[] | undefined;
|
|
33348
|
+
success?: boolean | undefined;
|
|
33072
33349
|
}, {
|
|
33073
|
-
success: boolean;
|
|
33074
33350
|
validationItems?: {
|
|
33075
33351
|
elementType?: string | undefined;
|
|
33076
33352
|
locator?: string | undefined;
|
|
33077
33353
|
errors?: string[] | undefined;
|
|
33078
33354
|
}[] | undefined;
|
|
33355
|
+
success?: boolean | undefined;
|
|
33079
33356
|
}>>;
|
|
33080
33357
|
}, "strip", z.ZodTypeAny, {
|
|
33081
33358
|
locator: string;
|
|
@@ -33099,12 +33376,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33099
33376
|
termLocator?: string | undefined;
|
|
33100
33377
|
createdAt?: string | undefined;
|
|
33101
33378
|
validationResult?: {
|
|
33102
|
-
success: boolean;
|
|
33103
33379
|
validationItems?: {
|
|
33104
33380
|
elementType?: string | undefined;
|
|
33105
33381
|
locator?: string | undefined;
|
|
33106
33382
|
errors?: string[] | undefined;
|
|
33107
33383
|
}[] | undefined;
|
|
33384
|
+
success?: boolean | undefined;
|
|
33108
33385
|
} | undefined;
|
|
33109
33386
|
}, {
|
|
33110
33387
|
locator: string;
|
|
@@ -33128,12 +33405,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33128
33405
|
termLocator?: string | undefined;
|
|
33129
33406
|
createdAt?: string | undefined;
|
|
33130
33407
|
validationResult?: {
|
|
33131
|
-
success: boolean;
|
|
33132
33408
|
validationItems?: {
|
|
33133
33409
|
elementType?: string | undefined;
|
|
33134
33410
|
locator?: string | undefined;
|
|
33135
33411
|
errors?: string[] | undefined;
|
|
33136
33412
|
}[] | undefined;
|
|
33413
|
+
success?: boolean | undefined;
|
|
33137
33414
|
} | undefined;
|
|
33138
33415
|
}>, "many">>;
|
|
33139
33416
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -33158,12 +33435,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33158
33435
|
termLocator?: string | undefined;
|
|
33159
33436
|
createdAt?: string | undefined;
|
|
33160
33437
|
validationResult?: {
|
|
33161
|
-
success: boolean;
|
|
33162
33438
|
validationItems?: {
|
|
33163
33439
|
elementType?: string | undefined;
|
|
33164
33440
|
locator?: string | undefined;
|
|
33165
33441
|
errors?: string[] | undefined;
|
|
33166
33442
|
}[] | undefined;
|
|
33443
|
+
success?: boolean | undefined;
|
|
33167
33444
|
} | undefined;
|
|
33168
33445
|
aggregatedTransactions?: {
|
|
33169
33446
|
locator: string;
|
|
@@ -33187,12 +33464,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33187
33464
|
termLocator?: string | undefined;
|
|
33188
33465
|
createdAt?: string | undefined;
|
|
33189
33466
|
validationResult?: {
|
|
33190
|
-
success: boolean;
|
|
33191
33467
|
validationItems?: {
|
|
33192
33468
|
elementType?: string | undefined;
|
|
33193
33469
|
locator?: string | undefined;
|
|
33194
33470
|
errors?: string[] | undefined;
|
|
33195
33471
|
}[] | undefined;
|
|
33472
|
+
success?: boolean | undefined;
|
|
33196
33473
|
} | undefined;
|
|
33197
33474
|
}[] | undefined;
|
|
33198
33475
|
}, {
|
|
@@ -33217,12 +33494,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33217
33494
|
termLocator?: string | undefined;
|
|
33218
33495
|
createdAt?: string | undefined;
|
|
33219
33496
|
validationResult?: {
|
|
33220
|
-
success: boolean;
|
|
33221
33497
|
validationItems?: {
|
|
33222
33498
|
elementType?: string | undefined;
|
|
33223
33499
|
locator?: string | undefined;
|
|
33224
33500
|
errors?: string[] | undefined;
|
|
33225
33501
|
}[] | undefined;
|
|
33502
|
+
success?: boolean | undefined;
|
|
33226
33503
|
} | undefined;
|
|
33227
33504
|
aggregatedTransactions?: {
|
|
33228
33505
|
locator: string;
|
|
@@ -33246,12 +33523,12 @@ export declare const transactionPriceResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
33246
33523
|
termLocator?: string | undefined;
|
|
33247
33524
|
createdAt?: string | undefined;
|
|
33248
33525
|
validationResult?: {
|
|
33249
|
-
success: boolean;
|
|
33250
33526
|
validationItems?: {
|
|
33251
33527
|
elementType?: string | undefined;
|
|
33252
33528
|
locator?: string | undefined;
|
|
33253
33529
|
errors?: string[] | undefined;
|
|
33254
33530
|
}[] | undefined;
|
|
33531
|
+
success?: boolean | undefined;
|
|
33255
33532
|
} | undefined;
|
|
33256
33533
|
}[] | undefined;
|
|
33257
33534
|
}>;
|
|
@@ -34192,21 +34469,21 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
34192
34469
|
locator?: string | undefined;
|
|
34193
34470
|
errors?: string[] | undefined;
|
|
34194
34471
|
}>, "many">>;
|
|
34195
|
-
success: z.ZodBoolean
|
|
34472
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
34196
34473
|
}, "strip", z.ZodTypeAny, {
|
|
34197
|
-
success: boolean;
|
|
34198
34474
|
validationItems?: {
|
|
34199
34475
|
elementType?: string | undefined;
|
|
34200
34476
|
locator?: string | undefined;
|
|
34201
34477
|
errors?: string[] | undefined;
|
|
34202
34478
|
}[] | undefined;
|
|
34479
|
+
success?: boolean | undefined;
|
|
34203
34480
|
}, {
|
|
34204
|
-
success: boolean;
|
|
34205
34481
|
validationItems?: {
|
|
34206
34482
|
elementType?: string | undefined;
|
|
34207
34483
|
locator?: string | undefined;
|
|
34208
34484
|
errors?: string[] | undefined;
|
|
34209
34485
|
}[] | undefined;
|
|
34486
|
+
success?: boolean | undefined;
|
|
34210
34487
|
}>>;
|
|
34211
34488
|
}, "strip", z.ZodTypeAny, {
|
|
34212
34489
|
transactionLocator: string;
|
|
@@ -34231,12 +34508,12 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
34231
34508
|
note?: string | undefined;
|
|
34232
34509
|
}[] | undefined;
|
|
34233
34510
|
validationResult?: {
|
|
34234
|
-
success: boolean;
|
|
34235
34511
|
validationItems?: {
|
|
34236
34512
|
elementType?: string | undefined;
|
|
34237
34513
|
locator?: string | undefined;
|
|
34238
34514
|
errors?: string[] | undefined;
|
|
34239
34515
|
}[] | undefined;
|
|
34516
|
+
success?: boolean | undefined;
|
|
34240
34517
|
} | undefined;
|
|
34241
34518
|
}, {
|
|
34242
34519
|
transactionLocator: string;
|
|
@@ -34261,12 +34538,12 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
34261
34538
|
note?: string | undefined;
|
|
34262
34539
|
}[] | undefined;
|
|
34263
34540
|
validationResult?: {
|
|
34264
|
-
success: boolean;
|
|
34265
34541
|
validationItems?: {
|
|
34266
34542
|
elementType?: string | undefined;
|
|
34267
34543
|
locator?: string | undefined;
|
|
34268
34544
|
errors?: string[] | undefined;
|
|
34269
34545
|
}[] | undefined;
|
|
34546
|
+
success?: boolean | undefined;
|
|
34270
34547
|
} | undefined;
|
|
34271
34548
|
}>;
|
|
34272
34549
|
|
|
@@ -34557,21 +34834,21 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34557
34834
|
locator?: string | undefined;
|
|
34558
34835
|
errors?: string[] | undefined;
|
|
34559
34836
|
}>, "many">>;
|
|
34560
|
-
success: z.ZodBoolean
|
|
34837
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
34561
34838
|
}, "strip", z.ZodTypeAny, {
|
|
34562
|
-
success: boolean;
|
|
34563
34839
|
validationItems?: {
|
|
34564
34840
|
elementType?: string | undefined;
|
|
34565
34841
|
locator?: string | undefined;
|
|
34566
34842
|
errors?: string[] | undefined;
|
|
34567
34843
|
}[] | undefined;
|
|
34844
|
+
success?: boolean | undefined;
|
|
34568
34845
|
}, {
|
|
34569
|
-
success: boolean;
|
|
34570
34846
|
validationItems?: {
|
|
34571
34847
|
elementType?: string | undefined;
|
|
34572
34848
|
locator?: string | undefined;
|
|
34573
34849
|
errors?: string[] | undefined;
|
|
34574
34850
|
}[] | undefined;
|
|
34851
|
+
success?: boolean | undefined;
|
|
34575
34852
|
}>>;
|
|
34576
34853
|
}, {
|
|
34577
34854
|
aggregatedTransactions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -34623,21 +34900,21 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34623
34900
|
locator?: string | undefined;
|
|
34624
34901
|
errors?: string[] | undefined;
|
|
34625
34902
|
}>, "many">>;
|
|
34626
|
-
success: z.ZodBoolean
|
|
34903
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
34627
34904
|
}, "strip", z.ZodTypeAny, {
|
|
34628
|
-
success: boolean;
|
|
34629
34905
|
validationItems?: {
|
|
34630
34906
|
elementType?: string | undefined;
|
|
34631
34907
|
locator?: string | undefined;
|
|
34632
34908
|
errors?: string[] | undefined;
|
|
34633
34909
|
}[] | undefined;
|
|
34910
|
+
success?: boolean | undefined;
|
|
34634
34911
|
}, {
|
|
34635
|
-
success: boolean;
|
|
34636
34912
|
validationItems?: {
|
|
34637
34913
|
elementType?: string | undefined;
|
|
34638
34914
|
locator?: string | undefined;
|
|
34639
34915
|
errors?: string[] | undefined;
|
|
34640
34916
|
}[] | undefined;
|
|
34917
|
+
success?: boolean | undefined;
|
|
34641
34918
|
}>>;
|
|
34642
34919
|
}, "strip", z.ZodTypeAny, {
|
|
34643
34920
|
locator: string;
|
|
@@ -34647,12 +34924,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34647
34924
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34648
34925
|
underwritingStatus?: string | undefined;
|
|
34649
34926
|
validationResult?: {
|
|
34650
|
-
success: boolean;
|
|
34651
34927
|
validationItems?: {
|
|
34652
34928
|
elementType?: string | undefined;
|
|
34653
34929
|
locator?: string | undefined;
|
|
34654
34930
|
errors?: string[] | undefined;
|
|
34655
34931
|
}[] | undefined;
|
|
34932
|
+
success?: boolean | undefined;
|
|
34656
34933
|
} | undefined;
|
|
34657
34934
|
underwritingFlags?: {
|
|
34658
34935
|
locator: string;
|
|
@@ -34672,12 +34949,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34672
34949
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34673
34950
|
underwritingStatus?: string | undefined;
|
|
34674
34951
|
validationResult?: {
|
|
34675
|
-
success: boolean;
|
|
34676
34952
|
validationItems?: {
|
|
34677
34953
|
elementType?: string | undefined;
|
|
34678
34954
|
locator?: string | undefined;
|
|
34679
34955
|
errors?: string[] | undefined;
|
|
34680
34956
|
}[] | undefined;
|
|
34957
|
+
success?: boolean | undefined;
|
|
34681
34958
|
} | undefined;
|
|
34682
34959
|
underwritingFlags?: {
|
|
34683
34960
|
locator: string;
|
|
@@ -34698,12 +34975,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34698
34975
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34699
34976
|
underwritingStatus?: string | undefined;
|
|
34700
34977
|
validationResult?: {
|
|
34701
|
-
success: boolean;
|
|
34702
34978
|
validationItems?: {
|
|
34703
34979
|
elementType?: string | undefined;
|
|
34704
34980
|
locator?: string | undefined;
|
|
34705
34981
|
errors?: string[] | undefined;
|
|
34706
34982
|
}[] | undefined;
|
|
34983
|
+
success?: boolean | undefined;
|
|
34707
34984
|
} | undefined;
|
|
34708
34985
|
aggregatedTransactions?: {
|
|
34709
34986
|
locator: string;
|
|
@@ -34713,12 +34990,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34713
34990
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34714
34991
|
underwritingStatus?: string | undefined;
|
|
34715
34992
|
validationResult?: {
|
|
34716
|
-
success: boolean;
|
|
34717
34993
|
validationItems?: {
|
|
34718
34994
|
elementType?: string | undefined;
|
|
34719
34995
|
locator?: string | undefined;
|
|
34720
34996
|
errors?: string[] | undefined;
|
|
34721
34997
|
}[] | undefined;
|
|
34998
|
+
success?: boolean | undefined;
|
|
34722
34999
|
} | undefined;
|
|
34723
35000
|
underwritingFlags?: {
|
|
34724
35001
|
locator: string;
|
|
@@ -34749,12 +35026,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34749
35026
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34750
35027
|
underwritingStatus?: string | undefined;
|
|
34751
35028
|
validationResult?: {
|
|
34752
|
-
success: boolean;
|
|
34753
35029
|
validationItems?: {
|
|
34754
35030
|
elementType?: string | undefined;
|
|
34755
35031
|
locator?: string | undefined;
|
|
34756
35032
|
errors?: string[] | undefined;
|
|
34757
35033
|
}[] | undefined;
|
|
35034
|
+
success?: boolean | undefined;
|
|
34758
35035
|
} | undefined;
|
|
34759
35036
|
aggregatedTransactions?: {
|
|
34760
35037
|
locator: string;
|
|
@@ -34764,12 +35041,12 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<z.object
|
|
|
34764
35041
|
transactionState: "draft" | "initialized" | "validated" | "earlyUnderwritten" | "priced" | "underwritten" | "accepted" | "issued" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded" | "invalidated" | "reversed";
|
|
34765
35042
|
underwritingStatus?: string | undefined;
|
|
34766
35043
|
validationResult?: {
|
|
34767
|
-
success: boolean;
|
|
34768
35044
|
validationItems?: {
|
|
34769
35045
|
elementType?: string | undefined;
|
|
34770
35046
|
locator?: string | undefined;
|
|
34771
35047
|
errors?: string[] | undefined;
|
|
34772
35048
|
}[] | undefined;
|
|
35049
|
+
success?: boolean | undefined;
|
|
34773
35050
|
} | undefined;
|
|
34774
35051
|
underwritingFlags?: {
|
|
34775
35052
|
locator: string;
|
|
@@ -35473,21 +35750,21 @@ export declare const ValidationResultSchema: z.ZodObject<{
|
|
|
35473
35750
|
locator?: string | undefined;
|
|
35474
35751
|
errors?: string[] | undefined;
|
|
35475
35752
|
}>, "many">>;
|
|
35476
|
-
success: z.ZodBoolean
|
|
35753
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
35477
35754
|
}, "strip", z.ZodTypeAny, {
|
|
35478
|
-
success: boolean;
|
|
35479
35755
|
validationItems?: {
|
|
35480
35756
|
elementType?: string | undefined;
|
|
35481
35757
|
locator?: string | undefined;
|
|
35482
35758
|
errors?: string[] | undefined;
|
|
35483
35759
|
}[] | undefined;
|
|
35760
|
+
success?: boolean | undefined;
|
|
35484
35761
|
}, {
|
|
35485
|
-
success: boolean;
|
|
35486
35762
|
validationItems?: {
|
|
35487
35763
|
elementType?: string | undefined;
|
|
35488
35764
|
locator?: string | undefined;
|
|
35489
35765
|
errors?: string[] | undefined;
|
|
35490
35766
|
}[] | undefined;
|
|
35767
|
+
success?: boolean | undefined;
|
|
35491
35768
|
}>;
|
|
35492
35769
|
|
|
35493
35770
|
export declare const validationResultSchema: z.ZodObject<{
|