@socotra/ec-react-schemas 2.10.0-next.3 → 2.10.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1483 -226
- package/dist/index.es.js +2814 -1258
- 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
|
@@ -660,15 +660,15 @@ export declare const AttachDocumentParamsSchema: z.ZodObject<{
|
|
|
660
660
|
export declare type AttachDocumentQuery = z.infer<typeof AttachDocumentQuerySchema>;
|
|
661
661
|
|
|
662
662
|
export declare const AttachDocumentQuerySchema: z.ZodObject<{
|
|
663
|
+
category: z.ZodOptional<z.ZodString>;
|
|
664
|
+
documentFormat: z.ZodEnum<["text", "html", "pdf", "jpg", "jpeg", "doc", "docx", "xls", "xlsx", "csv", "txt", "zip"]>;
|
|
665
|
+
metadata: z.ZodOptional<z.ZodString>;
|
|
666
|
+
name: z.ZodString;
|
|
663
667
|
referenceLocator: z.ZodString;
|
|
664
668
|
referenceType: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
|
|
665
|
-
|
|
669
|
+
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
666
670
|
staticName: z.ZodOptional<z.ZodString>;
|
|
667
|
-
documentFormat: z.ZodEnum<["text", "html", "pdf", "jpg", "jpeg", "doc", "docx", "xls", "xlsx", "csv", "txt", "zip"]>;
|
|
668
|
-
metadata: z.ZodOptional<z.ZodString>;
|
|
669
671
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
670
|
-
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
671
|
-
category: z.ZodOptional<z.ZodString>;
|
|
672
672
|
}, "strip", z.ZodTypeAny, {
|
|
673
673
|
name: string;
|
|
674
674
|
referenceType: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term";
|
|
@@ -734,18 +734,19 @@ export declare const AttachDocumentRequestBodySchema: z.ZodObject<{
|
|
|
734
734
|
|
|
735
735
|
export declare type AttachDocumentRequestParams = z.infer<typeof AttachDocumentRequestParamsSchema>;
|
|
736
736
|
|
|
737
|
-
export declare const AttachDocumentRequestParamsSchema: z.ZodObject<{
|
|
737
|
+
export declare const AttachDocumentRequestParamsSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
738
738
|
tenantLocator: z.ZodString;
|
|
739
|
+
}, {
|
|
740
|
+
category: z.ZodOptional<z.ZodString>;
|
|
741
|
+
documentFormat: z.ZodEnum<["text", "html", "pdf", "jpg", "jpeg", "doc", "docx", "xls", "xlsx", "csv", "txt", "zip"]>;
|
|
742
|
+
metadata: z.ZodOptional<z.ZodString>;
|
|
743
|
+
name: z.ZodString;
|
|
739
744
|
referenceLocator: z.ZodString;
|
|
740
745
|
referenceType: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
|
|
741
|
-
|
|
746
|
+
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
742
747
|
staticName: z.ZodOptional<z.ZodString>;
|
|
743
|
-
documentFormat: z.ZodEnum<["text", "html", "pdf", "jpg", "jpeg", "doc", "docx", "xls", "xlsx", "csv", "txt", "zip"]>;
|
|
744
|
-
metadata: z.ZodOptional<z.ZodString>;
|
|
745
748
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
746
|
-
|
|
747
|
-
category: z.ZodOptional<z.ZodString>;
|
|
748
|
-
}, "strip", z.ZodTypeAny, {
|
|
749
|
+
}>, "strip", z.ZodTypeAny, {
|
|
749
750
|
tenantLocator: string;
|
|
750
751
|
name: string;
|
|
751
752
|
referenceType: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term";
|
|
@@ -1124,7 +1125,7 @@ export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
1124
1125
|
} | undefined;
|
|
1125
1126
|
}>>;
|
|
1126
1127
|
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
1127
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
1128
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1128
1129
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
1129
1130
|
elementType: z.ZodString;
|
|
1130
1131
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -1139,20 +1140,36 @@ export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
1139
1140
|
locator?: string | undefined;
|
|
1140
1141
|
}>, "many">;
|
|
1141
1142
|
success: z.ZodBoolean;
|
|
1142
|
-
},
|
|
1143
|
-
validationItems: {
|
|
1143
|
+
}, {
|
|
1144
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1145
|
+
elementType: z.ZodString;
|
|
1146
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
1147
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
1148
|
+
}, {
|
|
1149
|
+
locator: z.ZodString;
|
|
1150
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1144
1151
|
elementType: string;
|
|
1152
|
+
locator: string;
|
|
1145
1153
|
errors: string[];
|
|
1146
|
-
|
|
1147
|
-
|
|
1154
|
+
}, {
|
|
1155
|
+
elementType: string;
|
|
1156
|
+
locator: string;
|
|
1157
|
+
errors: string[];
|
|
1158
|
+
}>, "many">>;
|
|
1159
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1148
1160
|
success: boolean;
|
|
1149
|
-
|
|
1150
|
-
validationItems: {
|
|
1161
|
+
validationItems?: {
|
|
1151
1162
|
elementType: string;
|
|
1163
|
+
locator: string;
|
|
1152
1164
|
errors: string[];
|
|
1153
|
-
|
|
1154
|
-
|
|
1165
|
+
}[] | undefined;
|
|
1166
|
+
}, {
|
|
1155
1167
|
success: boolean;
|
|
1168
|
+
validationItems?: {
|
|
1169
|
+
elementType: string;
|
|
1170
|
+
locator: string;
|
|
1171
|
+
errors: string[];
|
|
1172
|
+
}[] | undefined;
|
|
1156
1173
|
}>>;
|
|
1157
1174
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1158
1175
|
action: z.ZodString;
|
|
@@ -1516,12 +1533,12 @@ export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
1516
1533
|
underwritingStatus?: string | undefined;
|
|
1517
1534
|
issuedTime?: string | undefined;
|
|
1518
1535
|
validationResult?: {
|
|
1519
|
-
|
|
1536
|
+
success: boolean;
|
|
1537
|
+
validationItems?: {
|
|
1520
1538
|
elementType: string;
|
|
1539
|
+
locator: string;
|
|
1521
1540
|
errors: string[];
|
|
1522
|
-
|
|
1523
|
-
}[];
|
|
1524
|
-
success: boolean;
|
|
1541
|
+
}[] | undefined;
|
|
1525
1542
|
} | undefined;
|
|
1526
1543
|
changeInstructions?: ({
|
|
1527
1544
|
locator: string;
|
|
@@ -1618,12 +1635,12 @@ export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
1618
1635
|
underwritingStatus?: string | undefined;
|
|
1619
1636
|
issuedTime?: string | undefined;
|
|
1620
1637
|
validationResult?: {
|
|
1621
|
-
|
|
1638
|
+
success: boolean;
|
|
1639
|
+
validationItems?: {
|
|
1622
1640
|
elementType: string;
|
|
1641
|
+
locator: string;
|
|
1623
1642
|
errors: string[];
|
|
1624
|
-
|
|
1625
|
-
}[];
|
|
1626
|
-
success: boolean;
|
|
1643
|
+
}[] | undefined;
|
|
1627
1644
|
} | undefined;
|
|
1628
1645
|
changeInstructions?: ({
|
|
1629
1646
|
locator: string;
|
|
@@ -3740,8 +3757,26 @@ export declare type CreditItem = z.infer<typeof creditItemSchema>;
|
|
|
3740
3757
|
|
|
3741
3758
|
export declare type CreditItemContainerTypeEnum = z.infer<typeof creditItemContainerTypeEnumSchema>;
|
|
3742
3759
|
|
|
3760
|
+
export declare const CreditItemContainerTypeEnumSchema: z.ZodEnum<["invoice", "account"]>;
|
|
3761
|
+
|
|
3743
3762
|
export declare const creditItemContainerTypeEnumSchema: z.ZodEnum<["invoice", "account"]>;
|
|
3744
3763
|
|
|
3764
|
+
export declare const CreditItemSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
3765
|
+
containerLocator: z.ZodString;
|
|
3766
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
3767
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
3768
|
+
}, {
|
|
3769
|
+
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
3770
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3771
|
+
containerLocator: string;
|
|
3772
|
+
containerType: "account" | "invoice";
|
|
3773
|
+
amount?: number | undefined;
|
|
3774
|
+
}, {
|
|
3775
|
+
containerLocator: string;
|
|
3776
|
+
containerType: "account" | "invoice";
|
|
3777
|
+
amount?: number | undefined;
|
|
3778
|
+
}>;
|
|
3779
|
+
|
|
3745
3780
|
export declare const creditItemSchema: z.ZodObject<{
|
|
3746
3781
|
containerLocator: z.ZodString;
|
|
3747
3782
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
@@ -6886,38 +6921,1128 @@ export declare const delinquencySettingsSchema: z.ZodObject<{
|
|
|
6886
6921
|
lapseTransactionType: string;
|
|
6887
6922
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
6888
6923
|
}, {
|
|
6889
|
-
gracePeriodDays: number;
|
|
6890
|
-
advanceLapseTo: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued";
|
|
6891
|
-
lapseTransactionType: string;
|
|
6892
|
-
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
6924
|
+
gracePeriodDays: number;
|
|
6925
|
+
advanceLapseTo: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued";
|
|
6926
|
+
lapseTransactionType: string;
|
|
6927
|
+
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
6928
|
+
}>;
|
|
6929
|
+
|
|
6930
|
+
export declare type DelinquencyState = z.infer<typeof delinquencyStateEnumSchema>;
|
|
6931
|
+
|
|
6932
|
+
export declare const delinquencyStateEnumSchema: z.ZodEnum<["preGrace", "inGrace", "lapseTriggered", "settled"]>;
|
|
6933
|
+
|
|
6934
|
+
export declare type DeploymentMetadata = z.infer<typeof DeploymentMetadataSchema>;
|
|
6935
|
+
|
|
6936
|
+
export declare const DeploymentMetadataSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
6937
|
+
version1: z.ZodString;
|
|
6938
|
+
version2: z.ZodString;
|
|
6939
|
+
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6940
|
+
latestVersion: z.ZodString;
|
|
6941
|
+
}, {
|
|
6942
|
+
version1: z.ZodString;
|
|
6943
|
+
version2: z.ZodString;
|
|
6944
|
+
latestVersion: z.ZodString;
|
|
6945
|
+
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6946
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6947
|
+
plugins: Record<string, Record<string, string>>;
|
|
6948
|
+
version1: string;
|
|
6949
|
+
version2: string;
|
|
6950
|
+
latestVersion: string;
|
|
6951
|
+
}, {
|
|
6952
|
+
plugins: Record<string, Record<string, string>>;
|
|
6953
|
+
version1: string;
|
|
6954
|
+
version2: string;
|
|
6955
|
+
latestVersion: string;
|
|
6956
|
+
}>;
|
|
6957
|
+
|
|
6958
|
+
export declare type DisbursementCreateRequest = z.infer<typeof DisbursementCreateRequestSchema>;
|
|
6959
|
+
|
|
6960
|
+
export declare const DisbursementCreateRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
6961
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
6962
|
+
type: z.ZodString;
|
|
6963
|
+
amount: z.ZodNumber;
|
|
6964
|
+
data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6965
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
6966
|
+
containerLocator: z.ZodString;
|
|
6967
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
6968
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
6969
|
+
}, "strip", z.ZodTypeAny, {
|
|
6970
|
+
containerLocator: string;
|
|
6971
|
+
containerType: "account" | "invoice";
|
|
6972
|
+
amount?: number | undefined;
|
|
6973
|
+
}, {
|
|
6974
|
+
containerLocator: string;
|
|
6975
|
+
containerType: "account" | "invoice";
|
|
6976
|
+
amount?: number | undefined;
|
|
6977
|
+
}>, "many">;
|
|
6978
|
+
useDefaultFinancialInstrument: z.ZodBoolean;
|
|
6979
|
+
financialInstrumentLocator: z.ZodOptional<z.ZodString>;
|
|
6980
|
+
transactionMethod: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ach">, z.ZodLiteral<"cash">, z.ZodLiteral<"eft">, z.ZodLiteral<"standard">, z.ZodLiteral<"wire">]>>;
|
|
6981
|
+
transactionNumber: z.ZodOptional<z.ZodString>;
|
|
6982
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
6983
|
+
}, {
|
|
6984
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
6985
|
+
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
6986
|
+
containerLocator: z.ZodString;
|
|
6987
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
6988
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
6989
|
+
}, {
|
|
6990
|
+
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
6991
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6992
|
+
containerLocator: string;
|
|
6993
|
+
containerType: "account" | "invoice";
|
|
6994
|
+
amount?: number | undefined;
|
|
6995
|
+
}, {
|
|
6996
|
+
containerLocator: string;
|
|
6997
|
+
containerType: "account" | "invoice";
|
|
6998
|
+
amount?: number | undefined;
|
|
6999
|
+
}>, "many">;
|
|
7000
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7001
|
+
transactionMethod: z.ZodOptional<z.ZodEnum<["ach", "cash", "eft", "standard", "wire"]>>;
|
|
7002
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7003
|
+
type: string;
|
|
7004
|
+
data: Record<string, any>;
|
|
7005
|
+
amount: number;
|
|
7006
|
+
useDefaultFinancialInstrument: boolean;
|
|
7007
|
+
sources: {
|
|
7008
|
+
containerLocator: string;
|
|
7009
|
+
containerType: "account" | "invoice";
|
|
7010
|
+
amount?: number | undefined;
|
|
7011
|
+
}[];
|
|
7012
|
+
currency?: string | undefined;
|
|
7013
|
+
accountLocator?: string | undefined;
|
|
7014
|
+
financialInstrumentLocator?: string | undefined;
|
|
7015
|
+
transactionMethod?: "ach" | "cash" | "eft" | "standard" | "wire" | undefined;
|
|
7016
|
+
transactionNumber?: string | undefined;
|
|
7017
|
+
}, {
|
|
7018
|
+
type: string;
|
|
7019
|
+
data: Record<string, any>;
|
|
7020
|
+
amount: number;
|
|
7021
|
+
useDefaultFinancialInstrument: boolean;
|
|
7022
|
+
sources: {
|
|
7023
|
+
containerLocator: string;
|
|
7024
|
+
containerType: "account" | "invoice";
|
|
7025
|
+
amount?: number | undefined;
|
|
7026
|
+
}[];
|
|
7027
|
+
currency?: string | undefined;
|
|
7028
|
+
accountLocator?: string | undefined;
|
|
7029
|
+
financialInstrumentLocator?: string | undefined;
|
|
7030
|
+
transactionMethod?: "ach" | "cash" | "eft" | "standard" | "wire" | undefined;
|
|
7031
|
+
transactionNumber?: string | undefined;
|
|
7032
|
+
}>;
|
|
7033
|
+
|
|
7034
|
+
export declare type DisbursementId = z.infer<typeof DisbursementIdSchema>;
|
|
7035
|
+
|
|
7036
|
+
export declare const DisbursementIdSchema: z.ZodString;
|
|
7037
|
+
|
|
7038
|
+
export declare type DisbursementListResponse = z.infer<typeof DisbursementListResponseSchema>;
|
|
7039
|
+
|
|
7040
|
+
export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
7041
|
+
listCompleted: z.ZodBoolean;
|
|
7042
|
+
items: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7043
|
+
locator: z.ZodString;
|
|
7044
|
+
disbursementState: z.ZodUnion<[z.ZodLiteral<"draft">, z.ZodLiteral<"validated">, z.ZodLiteral<"approved">, z.ZodLiteral<"executed">, z.ZodLiteral<"reversed">, z.ZodLiteral<"rejected">, z.ZodLiteral<"discarded">]>;
|
|
7045
|
+
type: z.ZodString;
|
|
7046
|
+
currency: z.ZodString;
|
|
7047
|
+
amount: z.ZodNumber;
|
|
7048
|
+
data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7049
|
+
createdAt: z.ZodString;
|
|
7050
|
+
createdBy: z.ZodString;
|
|
7051
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7052
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
7053
|
+
containerLocator: z.ZodString;
|
|
7054
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7055
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7056
|
+
}, "strip", z.ZodTypeAny, {
|
|
7057
|
+
containerLocator: string;
|
|
7058
|
+
containerType: "account" | "invoice";
|
|
7059
|
+
amount?: number | undefined;
|
|
7060
|
+
}, {
|
|
7061
|
+
containerLocator: string;
|
|
7062
|
+
containerType: "account" | "invoice";
|
|
7063
|
+
amount?: number | undefined;
|
|
7064
|
+
}>, "many">;
|
|
7065
|
+
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
7066
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
7067
|
+
validationItems: z.ZodArray<z.ZodObject<{
|
|
7068
|
+
elementType: z.ZodString;
|
|
7069
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
7070
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
7071
|
+
}, "strip", z.ZodTypeAny, {
|
|
7072
|
+
elementType: string;
|
|
7073
|
+
errors: string[];
|
|
7074
|
+
locator?: string | undefined;
|
|
7075
|
+
}, {
|
|
7076
|
+
elementType: string;
|
|
7077
|
+
errors: string[];
|
|
7078
|
+
locator?: string | undefined;
|
|
7079
|
+
}>, "many">;
|
|
7080
|
+
success: z.ZodBoolean;
|
|
7081
|
+
}, "strip", z.ZodTypeAny, {
|
|
7082
|
+
validationItems: {
|
|
7083
|
+
elementType: string;
|
|
7084
|
+
errors: string[];
|
|
7085
|
+
locator?: string | undefined;
|
|
7086
|
+
}[];
|
|
7087
|
+
success: boolean;
|
|
7088
|
+
}, {
|
|
7089
|
+
validationItems: {
|
|
7090
|
+
elementType: string;
|
|
7091
|
+
errors: string[];
|
|
7092
|
+
locator?: string | undefined;
|
|
7093
|
+
}[];
|
|
7094
|
+
success: boolean;
|
|
7095
|
+
}>>;
|
|
7096
|
+
disbursementNumber: z.ZodOptional<z.ZodString>;
|
|
7097
|
+
}, {
|
|
7098
|
+
locator: z.ZodString;
|
|
7099
|
+
disbursementState: z.ZodEnum<["draft", "validated", "approved", "executed", "reversed", "rejected", "discarded"]>;
|
|
7100
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7101
|
+
createdAt: z.ZodString;
|
|
7102
|
+
createdBy: z.ZodString;
|
|
7103
|
+
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7104
|
+
containerLocator: z.ZodString;
|
|
7105
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7106
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7107
|
+
}, {
|
|
7108
|
+
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
7109
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7110
|
+
containerLocator: string;
|
|
7111
|
+
containerType: "account" | "invoice";
|
|
7112
|
+
amount?: number | undefined;
|
|
7113
|
+
}, {
|
|
7114
|
+
containerLocator: string;
|
|
7115
|
+
containerType: "account" | "invoice";
|
|
7116
|
+
amount?: number | undefined;
|
|
7117
|
+
}>, "many">;
|
|
7118
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7119
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
7120
|
+
validationItems: z.ZodArray<z.ZodObject<{
|
|
7121
|
+
elementType: z.ZodString;
|
|
7122
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
7123
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
7124
|
+
}, "strip", z.ZodTypeAny, {
|
|
7125
|
+
elementType: string;
|
|
7126
|
+
errors: string[];
|
|
7127
|
+
locator?: string | undefined;
|
|
7128
|
+
}, {
|
|
7129
|
+
elementType: string;
|
|
7130
|
+
errors: string[];
|
|
7131
|
+
locator?: string | undefined;
|
|
7132
|
+
}>, "many">;
|
|
7133
|
+
success: z.ZodBoolean;
|
|
7134
|
+
}, {
|
|
7135
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7136
|
+
elementType: z.ZodString;
|
|
7137
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
7138
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
7139
|
+
}, {
|
|
7140
|
+
locator: z.ZodString;
|
|
7141
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7142
|
+
elementType: string;
|
|
7143
|
+
locator: string;
|
|
7144
|
+
errors: string[];
|
|
7145
|
+
}, {
|
|
7146
|
+
elementType: string;
|
|
7147
|
+
locator: string;
|
|
7148
|
+
errors: string[];
|
|
7149
|
+
}>, "many">>;
|
|
7150
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7151
|
+
success: boolean;
|
|
7152
|
+
validationItems?: {
|
|
7153
|
+
elementType: string;
|
|
7154
|
+
locator: string;
|
|
7155
|
+
errors: string[];
|
|
7156
|
+
}[] | undefined;
|
|
7157
|
+
}, {
|
|
7158
|
+
success: boolean;
|
|
7159
|
+
validationItems?: {
|
|
7160
|
+
elementType: string;
|
|
7161
|
+
locator: string;
|
|
7162
|
+
errors: string[];
|
|
7163
|
+
}[] | undefined;
|
|
7164
|
+
}>>;
|
|
7165
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7166
|
+
locator: string;
|
|
7167
|
+
type: string;
|
|
7168
|
+
createdBy: string;
|
|
7169
|
+
data: Record<string, any>;
|
|
7170
|
+
currency: string;
|
|
7171
|
+
amount: number;
|
|
7172
|
+
createdAt: string;
|
|
7173
|
+
sources: {
|
|
7174
|
+
containerLocator: string;
|
|
7175
|
+
containerType: "account" | "invoice";
|
|
7176
|
+
amount?: number | undefined;
|
|
7177
|
+
}[];
|
|
7178
|
+
disbursementState: "draft" | "rejected" | "approved" | "validated" | "discarded" | "reversed" | "executed";
|
|
7179
|
+
accountLocator?: string | undefined;
|
|
7180
|
+
validationResult?: {
|
|
7181
|
+
success: boolean;
|
|
7182
|
+
validationItems?: {
|
|
7183
|
+
elementType: string;
|
|
7184
|
+
locator: string;
|
|
7185
|
+
errors: string[];
|
|
7186
|
+
}[] | undefined;
|
|
7187
|
+
} | undefined;
|
|
7188
|
+
externalCashTransactionLocator?: string | undefined;
|
|
7189
|
+
disbursementNumber?: string | undefined;
|
|
7190
|
+
}, {
|
|
7191
|
+
locator: string;
|
|
7192
|
+
type: string;
|
|
7193
|
+
createdBy: string;
|
|
7194
|
+
data: Record<string, any>;
|
|
7195
|
+
currency: string;
|
|
7196
|
+
amount: number;
|
|
7197
|
+
createdAt: string;
|
|
7198
|
+
sources: {
|
|
7199
|
+
containerLocator: string;
|
|
7200
|
+
containerType: "account" | "invoice";
|
|
7201
|
+
amount?: number | undefined;
|
|
7202
|
+
}[];
|
|
7203
|
+
disbursementState: "draft" | "rejected" | "approved" | "validated" | "discarded" | "reversed" | "executed";
|
|
7204
|
+
accountLocator?: string | undefined;
|
|
7205
|
+
validationResult?: {
|
|
7206
|
+
success: boolean;
|
|
7207
|
+
validationItems?: {
|
|
7208
|
+
elementType: string;
|
|
7209
|
+
locator: string;
|
|
7210
|
+
errors: string[];
|
|
7211
|
+
}[] | undefined;
|
|
7212
|
+
} | undefined;
|
|
7213
|
+
externalCashTransactionLocator?: string | undefined;
|
|
7214
|
+
disbursementNumber?: string | undefined;
|
|
7215
|
+
}>, "many">;
|
|
7216
|
+
}, "strip", z.ZodTypeAny, {
|
|
7217
|
+
items: {
|
|
7218
|
+
locator: string;
|
|
7219
|
+
type: string;
|
|
7220
|
+
createdBy: string;
|
|
7221
|
+
data: Record<string, any>;
|
|
7222
|
+
currency: string;
|
|
7223
|
+
amount: number;
|
|
7224
|
+
createdAt: string;
|
|
7225
|
+
sources: {
|
|
7226
|
+
containerLocator: string;
|
|
7227
|
+
containerType: "account" | "invoice";
|
|
7228
|
+
amount?: number | undefined;
|
|
7229
|
+
}[];
|
|
7230
|
+
disbursementState: "draft" | "rejected" | "approved" | "validated" | "discarded" | "reversed" | "executed";
|
|
7231
|
+
accountLocator?: string | undefined;
|
|
7232
|
+
validationResult?: {
|
|
7233
|
+
success: boolean;
|
|
7234
|
+
validationItems?: {
|
|
7235
|
+
elementType: string;
|
|
7236
|
+
locator: string;
|
|
7237
|
+
errors: string[];
|
|
7238
|
+
}[] | undefined;
|
|
7239
|
+
} | undefined;
|
|
7240
|
+
externalCashTransactionLocator?: string | undefined;
|
|
7241
|
+
disbursementNumber?: string | undefined;
|
|
7242
|
+
}[];
|
|
7243
|
+
listCompleted: boolean;
|
|
7244
|
+
}, {
|
|
7245
|
+
items: {
|
|
7246
|
+
locator: string;
|
|
7247
|
+
type: string;
|
|
7248
|
+
createdBy: string;
|
|
7249
|
+
data: Record<string, any>;
|
|
7250
|
+
currency: string;
|
|
7251
|
+
amount: number;
|
|
7252
|
+
createdAt: string;
|
|
7253
|
+
sources: {
|
|
7254
|
+
containerLocator: string;
|
|
7255
|
+
containerType: "account" | "invoice";
|
|
7256
|
+
amount?: number | undefined;
|
|
7257
|
+
}[];
|
|
7258
|
+
disbursementState: "draft" | "rejected" | "approved" | "validated" | "discarded" | "reversed" | "executed";
|
|
7259
|
+
accountLocator?: string | undefined;
|
|
7260
|
+
validationResult?: {
|
|
7261
|
+
success: boolean;
|
|
7262
|
+
validationItems?: {
|
|
7263
|
+
elementType: string;
|
|
7264
|
+
locator: string;
|
|
7265
|
+
errors: string[];
|
|
7266
|
+
}[] | undefined;
|
|
7267
|
+
} | undefined;
|
|
7268
|
+
externalCashTransactionLocator?: string | undefined;
|
|
7269
|
+
disbursementNumber?: string | undefined;
|
|
7270
|
+
}[];
|
|
7271
|
+
listCompleted: boolean;
|
|
7272
|
+
}>;
|
|
7273
|
+
|
|
7274
|
+
export declare type DisbursementRef = z.infer<typeof DisbursementRefSchema>;
|
|
7275
|
+
|
|
7276
|
+
export declare type DisbursementRefRecord = z.infer<typeof DisbursementRefRecordSchema>;
|
|
7277
|
+
|
|
7278
|
+
export declare const DisbursementRefRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
7279
|
+
displayName: z.ZodString;
|
|
7280
|
+
extend: z.ZodString;
|
|
7281
|
+
data: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7282
|
+
displayName: z.ZodString;
|
|
7283
|
+
type: z.ZodString;
|
|
7284
|
+
scope: z.ZodString;
|
|
7285
|
+
defaultValue: z.ZodString;
|
|
7286
|
+
min: z.ZodString;
|
|
7287
|
+
max: z.ZodString;
|
|
7288
|
+
minLength: z.ZodNumber;
|
|
7289
|
+
maxLength: z.ZodNumber;
|
|
7290
|
+
precision: z.ZodNumber;
|
|
7291
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
7292
|
+
regex: z.ZodString;
|
|
7293
|
+
roundingMode: z.ZodUnion<[z.ZodLiteral<"ceiling">, z.ZodLiteral<"down">, z.ZodLiteral<"floor">, z.ZodLiteral<"halfDown">, z.ZodLiteral<"halfEven">, z.ZodLiteral<"halfUp">, z.ZodLiteral<"up">]>;
|
|
7294
|
+
tag: z.ZodArray<z.ZodString, "many">;
|
|
7295
|
+
constraint: z.ZodObject<{
|
|
7296
|
+
table: z.ZodString;
|
|
7297
|
+
column: z.ZodString;
|
|
7298
|
+
where: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7299
|
+
key: z.ZodString;
|
|
7300
|
+
values: z.ZodArray<z.ZodString, "many">;
|
|
7301
|
+
}, "strip", z.ZodTypeAny, {
|
|
7302
|
+
values: string[];
|
|
7303
|
+
key: string;
|
|
7304
|
+
}, {
|
|
7305
|
+
values: string[];
|
|
7306
|
+
key: string;
|
|
7307
|
+
}>>;
|
|
7308
|
+
}, "strip", z.ZodTypeAny, {
|
|
7309
|
+
column: string;
|
|
7310
|
+
table: string;
|
|
7311
|
+
where: Record<string, {
|
|
7312
|
+
values: string[];
|
|
7313
|
+
key: string;
|
|
7314
|
+
}>;
|
|
7315
|
+
}, {
|
|
7316
|
+
column: string;
|
|
7317
|
+
table: string;
|
|
7318
|
+
where: Record<string, {
|
|
7319
|
+
values: string[];
|
|
7320
|
+
key: string;
|
|
7321
|
+
}>;
|
|
7322
|
+
}>;
|
|
7323
|
+
searchable: z.ZodBoolean;
|
|
7324
|
+
availability: z.ZodOptional<z.ZodObject<{
|
|
7325
|
+
availableAfter: z.ZodString;
|
|
7326
|
+
availabilityTimeBasis: z.ZodString;
|
|
7327
|
+
retireAfter: z.ZodString;
|
|
7328
|
+
retire: z.ZodBoolean;
|
|
7329
|
+
retirementTimeBasis: z.ZodString;
|
|
7330
|
+
removeOnRenewalAfter: z.ZodString;
|
|
7331
|
+
removeOnRenewal: z.ZodBoolean;
|
|
7332
|
+
}, "strip", z.ZodTypeAny, {
|
|
7333
|
+
availableAfter: string;
|
|
7334
|
+
availabilityTimeBasis: string;
|
|
7335
|
+
retireAfter: string;
|
|
7336
|
+
retire: boolean;
|
|
7337
|
+
retirementTimeBasis: string;
|
|
7338
|
+
removeOnRenewalAfter: string;
|
|
7339
|
+
removeOnRenewal: boolean;
|
|
7340
|
+
}, {
|
|
7341
|
+
availableAfter: string;
|
|
7342
|
+
availabilityTimeBasis: string;
|
|
7343
|
+
retireAfter: string;
|
|
7344
|
+
retire: boolean;
|
|
7345
|
+
retirementTimeBasis: string;
|
|
7346
|
+
removeOnRenewalAfter: string;
|
|
7347
|
+
removeOnRenewal: boolean;
|
|
7348
|
+
}>>;
|
|
7349
|
+
}, "strip", z.ZodTypeAny, {
|
|
7350
|
+
options: string[];
|
|
7351
|
+
type: string;
|
|
7352
|
+
displayName: string;
|
|
7353
|
+
defaultValue: string;
|
|
7354
|
+
minLength: number;
|
|
7355
|
+
maxLength: number;
|
|
7356
|
+
regex: string;
|
|
7357
|
+
min: string;
|
|
7358
|
+
max: string;
|
|
7359
|
+
scope: string;
|
|
7360
|
+
precision: number;
|
|
7361
|
+
searchable: boolean;
|
|
7362
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7363
|
+
constraint: {
|
|
7364
|
+
column: string;
|
|
7365
|
+
table: string;
|
|
7366
|
+
where: Record<string, {
|
|
7367
|
+
values: string[];
|
|
7368
|
+
key: string;
|
|
7369
|
+
}>;
|
|
7370
|
+
};
|
|
7371
|
+
tag: string[];
|
|
7372
|
+
availability?: {
|
|
7373
|
+
availableAfter: string;
|
|
7374
|
+
availabilityTimeBasis: string;
|
|
7375
|
+
retireAfter: string;
|
|
7376
|
+
retire: boolean;
|
|
7377
|
+
retirementTimeBasis: string;
|
|
7378
|
+
removeOnRenewalAfter: string;
|
|
7379
|
+
removeOnRenewal: boolean;
|
|
7380
|
+
} | undefined;
|
|
7381
|
+
}, {
|
|
7382
|
+
options: string[];
|
|
7383
|
+
type: string;
|
|
7384
|
+
displayName: string;
|
|
7385
|
+
defaultValue: string;
|
|
7386
|
+
minLength: number;
|
|
7387
|
+
maxLength: number;
|
|
7388
|
+
regex: string;
|
|
7389
|
+
min: string;
|
|
7390
|
+
max: string;
|
|
7391
|
+
scope: string;
|
|
7392
|
+
precision: number;
|
|
7393
|
+
searchable: boolean;
|
|
7394
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7395
|
+
constraint: {
|
|
7396
|
+
column: string;
|
|
7397
|
+
table: string;
|
|
7398
|
+
where: Record<string, {
|
|
7399
|
+
values: string[];
|
|
7400
|
+
key: string;
|
|
7401
|
+
}>;
|
|
7402
|
+
};
|
|
7403
|
+
tag: string[];
|
|
7404
|
+
availability?: {
|
|
7405
|
+
availableAfter: string;
|
|
7406
|
+
availabilityTimeBasis: string;
|
|
7407
|
+
retireAfter: string;
|
|
7408
|
+
retire: boolean;
|
|
7409
|
+
retirementTimeBasis: string;
|
|
7410
|
+
removeOnRenewalAfter: string;
|
|
7411
|
+
removeOnRenewal: boolean;
|
|
7412
|
+
} | undefined;
|
|
7413
|
+
}>>;
|
|
7414
|
+
numberingPlan: z.ZodString;
|
|
7415
|
+
abstract: z.ZodBoolean;
|
|
7416
|
+
}, {}>, "strip", z.ZodTypeAny, {
|
|
7417
|
+
displayName: string;
|
|
7418
|
+
abstract: boolean;
|
|
7419
|
+
extend: string;
|
|
7420
|
+
data: Record<string, {
|
|
7421
|
+
options: string[];
|
|
7422
|
+
type: string;
|
|
7423
|
+
displayName: string;
|
|
7424
|
+
defaultValue: string;
|
|
7425
|
+
minLength: number;
|
|
7426
|
+
maxLength: number;
|
|
7427
|
+
regex: string;
|
|
7428
|
+
min: string;
|
|
7429
|
+
max: string;
|
|
7430
|
+
scope: string;
|
|
7431
|
+
precision: number;
|
|
7432
|
+
searchable: boolean;
|
|
7433
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7434
|
+
constraint: {
|
|
7435
|
+
column: string;
|
|
7436
|
+
table: string;
|
|
7437
|
+
where: Record<string, {
|
|
7438
|
+
values: string[];
|
|
7439
|
+
key: string;
|
|
7440
|
+
}>;
|
|
7441
|
+
};
|
|
7442
|
+
tag: string[];
|
|
7443
|
+
availability?: {
|
|
7444
|
+
availableAfter: string;
|
|
7445
|
+
availabilityTimeBasis: string;
|
|
7446
|
+
retireAfter: string;
|
|
7447
|
+
retire: boolean;
|
|
7448
|
+
retirementTimeBasis: string;
|
|
7449
|
+
removeOnRenewalAfter: string;
|
|
7450
|
+
removeOnRenewal: boolean;
|
|
7451
|
+
} | undefined;
|
|
7452
|
+
}>;
|
|
7453
|
+
numberingPlan: string;
|
|
7454
|
+
}, {
|
|
7455
|
+
displayName: string;
|
|
7456
|
+
abstract: boolean;
|
|
7457
|
+
extend: string;
|
|
7458
|
+
data: Record<string, {
|
|
7459
|
+
options: string[];
|
|
7460
|
+
type: string;
|
|
7461
|
+
displayName: string;
|
|
7462
|
+
defaultValue: string;
|
|
7463
|
+
minLength: number;
|
|
7464
|
+
maxLength: number;
|
|
7465
|
+
regex: string;
|
|
7466
|
+
min: string;
|
|
7467
|
+
max: string;
|
|
7468
|
+
scope: string;
|
|
7469
|
+
precision: number;
|
|
7470
|
+
searchable: boolean;
|
|
7471
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7472
|
+
constraint: {
|
|
7473
|
+
column: string;
|
|
7474
|
+
table: string;
|
|
7475
|
+
where: Record<string, {
|
|
7476
|
+
values: string[];
|
|
7477
|
+
key: string;
|
|
7478
|
+
}>;
|
|
7479
|
+
};
|
|
7480
|
+
tag: string[];
|
|
7481
|
+
availability?: {
|
|
7482
|
+
availableAfter: string;
|
|
7483
|
+
availabilityTimeBasis: string;
|
|
7484
|
+
retireAfter: string;
|
|
7485
|
+
retire: boolean;
|
|
7486
|
+
retirementTimeBasis: string;
|
|
7487
|
+
removeOnRenewalAfter: string;
|
|
7488
|
+
removeOnRenewal: boolean;
|
|
7489
|
+
} | undefined;
|
|
7490
|
+
}>;
|
|
7491
|
+
numberingPlan: string;
|
|
7492
|
+
}>>;
|
|
7493
|
+
|
|
7494
|
+
export declare const DisbursementRefSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
7495
|
+
displayName: z.ZodString;
|
|
7496
|
+
extend: z.ZodString;
|
|
7497
|
+
data: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7498
|
+
displayName: z.ZodString;
|
|
7499
|
+
type: z.ZodString;
|
|
7500
|
+
scope: z.ZodString;
|
|
7501
|
+
defaultValue: z.ZodString;
|
|
7502
|
+
min: z.ZodString;
|
|
7503
|
+
max: z.ZodString;
|
|
7504
|
+
minLength: z.ZodNumber;
|
|
7505
|
+
maxLength: z.ZodNumber;
|
|
7506
|
+
precision: z.ZodNumber;
|
|
7507
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
7508
|
+
regex: z.ZodString;
|
|
7509
|
+
roundingMode: z.ZodUnion<[z.ZodLiteral<"ceiling">, z.ZodLiteral<"down">, z.ZodLiteral<"floor">, z.ZodLiteral<"halfDown">, z.ZodLiteral<"halfEven">, z.ZodLiteral<"halfUp">, z.ZodLiteral<"up">]>;
|
|
7510
|
+
tag: z.ZodArray<z.ZodString, "many">;
|
|
7511
|
+
constraint: z.ZodObject<{
|
|
7512
|
+
table: z.ZodString;
|
|
7513
|
+
column: z.ZodString;
|
|
7514
|
+
where: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7515
|
+
key: z.ZodString;
|
|
7516
|
+
values: z.ZodArray<z.ZodString, "many">;
|
|
7517
|
+
}, "strip", z.ZodTypeAny, {
|
|
7518
|
+
values: string[];
|
|
7519
|
+
key: string;
|
|
7520
|
+
}, {
|
|
7521
|
+
values: string[];
|
|
7522
|
+
key: string;
|
|
7523
|
+
}>>;
|
|
7524
|
+
}, "strip", z.ZodTypeAny, {
|
|
7525
|
+
column: string;
|
|
7526
|
+
table: string;
|
|
7527
|
+
where: Record<string, {
|
|
7528
|
+
values: string[];
|
|
7529
|
+
key: string;
|
|
7530
|
+
}>;
|
|
7531
|
+
}, {
|
|
7532
|
+
column: string;
|
|
7533
|
+
table: string;
|
|
7534
|
+
where: Record<string, {
|
|
7535
|
+
values: string[];
|
|
7536
|
+
key: string;
|
|
7537
|
+
}>;
|
|
7538
|
+
}>;
|
|
7539
|
+
searchable: z.ZodBoolean;
|
|
7540
|
+
availability: z.ZodOptional<z.ZodObject<{
|
|
7541
|
+
availableAfter: z.ZodString;
|
|
7542
|
+
availabilityTimeBasis: z.ZodString;
|
|
7543
|
+
retireAfter: z.ZodString;
|
|
7544
|
+
retire: z.ZodBoolean;
|
|
7545
|
+
retirementTimeBasis: z.ZodString;
|
|
7546
|
+
removeOnRenewalAfter: z.ZodString;
|
|
7547
|
+
removeOnRenewal: z.ZodBoolean;
|
|
7548
|
+
}, "strip", z.ZodTypeAny, {
|
|
7549
|
+
availableAfter: string;
|
|
7550
|
+
availabilityTimeBasis: string;
|
|
7551
|
+
retireAfter: string;
|
|
7552
|
+
retire: boolean;
|
|
7553
|
+
retirementTimeBasis: string;
|
|
7554
|
+
removeOnRenewalAfter: string;
|
|
7555
|
+
removeOnRenewal: boolean;
|
|
7556
|
+
}, {
|
|
7557
|
+
availableAfter: string;
|
|
7558
|
+
availabilityTimeBasis: string;
|
|
7559
|
+
retireAfter: string;
|
|
7560
|
+
retire: boolean;
|
|
7561
|
+
retirementTimeBasis: string;
|
|
7562
|
+
removeOnRenewalAfter: string;
|
|
7563
|
+
removeOnRenewal: boolean;
|
|
7564
|
+
}>>;
|
|
7565
|
+
}, "strip", z.ZodTypeAny, {
|
|
7566
|
+
options: string[];
|
|
7567
|
+
type: string;
|
|
7568
|
+
displayName: string;
|
|
7569
|
+
defaultValue: string;
|
|
7570
|
+
minLength: number;
|
|
7571
|
+
maxLength: number;
|
|
7572
|
+
regex: string;
|
|
7573
|
+
min: string;
|
|
7574
|
+
max: string;
|
|
7575
|
+
scope: string;
|
|
7576
|
+
precision: number;
|
|
7577
|
+
searchable: boolean;
|
|
7578
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7579
|
+
constraint: {
|
|
7580
|
+
column: string;
|
|
7581
|
+
table: string;
|
|
7582
|
+
where: Record<string, {
|
|
7583
|
+
values: string[];
|
|
7584
|
+
key: string;
|
|
7585
|
+
}>;
|
|
7586
|
+
};
|
|
7587
|
+
tag: string[];
|
|
7588
|
+
availability?: {
|
|
7589
|
+
availableAfter: string;
|
|
7590
|
+
availabilityTimeBasis: string;
|
|
7591
|
+
retireAfter: string;
|
|
7592
|
+
retire: boolean;
|
|
7593
|
+
retirementTimeBasis: string;
|
|
7594
|
+
removeOnRenewalAfter: string;
|
|
7595
|
+
removeOnRenewal: boolean;
|
|
7596
|
+
} | undefined;
|
|
7597
|
+
}, {
|
|
7598
|
+
options: string[];
|
|
7599
|
+
type: string;
|
|
7600
|
+
displayName: string;
|
|
7601
|
+
defaultValue: string;
|
|
7602
|
+
minLength: number;
|
|
7603
|
+
maxLength: number;
|
|
7604
|
+
regex: string;
|
|
7605
|
+
min: string;
|
|
7606
|
+
max: string;
|
|
7607
|
+
scope: string;
|
|
7608
|
+
precision: number;
|
|
7609
|
+
searchable: boolean;
|
|
7610
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7611
|
+
constraint: {
|
|
7612
|
+
column: string;
|
|
7613
|
+
table: string;
|
|
7614
|
+
where: Record<string, {
|
|
7615
|
+
values: string[];
|
|
7616
|
+
key: string;
|
|
7617
|
+
}>;
|
|
7618
|
+
};
|
|
7619
|
+
tag: string[];
|
|
7620
|
+
availability?: {
|
|
7621
|
+
availableAfter: string;
|
|
7622
|
+
availabilityTimeBasis: string;
|
|
7623
|
+
retireAfter: string;
|
|
7624
|
+
retire: boolean;
|
|
7625
|
+
retirementTimeBasis: string;
|
|
7626
|
+
removeOnRenewalAfter: string;
|
|
7627
|
+
removeOnRenewal: boolean;
|
|
7628
|
+
} | undefined;
|
|
7629
|
+
}>>;
|
|
7630
|
+
numberingPlan: z.ZodString;
|
|
7631
|
+
abstract: z.ZodBoolean;
|
|
7632
|
+
}, {}>, "strip", z.ZodTypeAny, {
|
|
7633
|
+
displayName: string;
|
|
7634
|
+
abstract: boolean;
|
|
7635
|
+
extend: string;
|
|
7636
|
+
data: Record<string, {
|
|
7637
|
+
options: string[];
|
|
7638
|
+
type: string;
|
|
7639
|
+
displayName: string;
|
|
7640
|
+
defaultValue: string;
|
|
7641
|
+
minLength: number;
|
|
7642
|
+
maxLength: number;
|
|
7643
|
+
regex: string;
|
|
7644
|
+
min: string;
|
|
7645
|
+
max: string;
|
|
7646
|
+
scope: string;
|
|
7647
|
+
precision: number;
|
|
7648
|
+
searchable: boolean;
|
|
7649
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7650
|
+
constraint: {
|
|
7651
|
+
column: string;
|
|
7652
|
+
table: string;
|
|
7653
|
+
where: Record<string, {
|
|
7654
|
+
values: string[];
|
|
7655
|
+
key: string;
|
|
7656
|
+
}>;
|
|
7657
|
+
};
|
|
7658
|
+
tag: string[];
|
|
7659
|
+
availability?: {
|
|
7660
|
+
availableAfter: string;
|
|
7661
|
+
availabilityTimeBasis: string;
|
|
7662
|
+
retireAfter: string;
|
|
7663
|
+
retire: boolean;
|
|
7664
|
+
retirementTimeBasis: string;
|
|
7665
|
+
removeOnRenewalAfter: string;
|
|
7666
|
+
removeOnRenewal: boolean;
|
|
7667
|
+
} | undefined;
|
|
7668
|
+
}>;
|
|
7669
|
+
numberingPlan: string;
|
|
7670
|
+
}, {
|
|
7671
|
+
displayName: string;
|
|
7672
|
+
abstract: boolean;
|
|
7673
|
+
extend: string;
|
|
7674
|
+
data: Record<string, {
|
|
7675
|
+
options: string[];
|
|
7676
|
+
type: string;
|
|
7677
|
+
displayName: string;
|
|
7678
|
+
defaultValue: string;
|
|
7679
|
+
minLength: number;
|
|
7680
|
+
maxLength: number;
|
|
7681
|
+
regex: string;
|
|
7682
|
+
min: string;
|
|
7683
|
+
max: string;
|
|
7684
|
+
scope: string;
|
|
7685
|
+
precision: number;
|
|
7686
|
+
searchable: boolean;
|
|
7687
|
+
roundingMode: "ceiling" | "down" | "floor" | "halfDown" | "halfEven" | "halfUp" | "up";
|
|
7688
|
+
constraint: {
|
|
7689
|
+
column: string;
|
|
7690
|
+
table: string;
|
|
7691
|
+
where: Record<string, {
|
|
7692
|
+
values: string[];
|
|
7693
|
+
key: string;
|
|
7694
|
+
}>;
|
|
7695
|
+
};
|
|
7696
|
+
tag: string[];
|
|
7697
|
+
availability?: {
|
|
7698
|
+
availableAfter: string;
|
|
7699
|
+
availabilityTimeBasis: string;
|
|
7700
|
+
retireAfter: string;
|
|
7701
|
+
retire: boolean;
|
|
7702
|
+
retirementTimeBasis: string;
|
|
7703
|
+
removeOnRenewalAfter: string;
|
|
7704
|
+
removeOnRenewal: boolean;
|
|
7705
|
+
} | undefined;
|
|
7706
|
+
}>;
|
|
7707
|
+
numberingPlan: string;
|
|
7708
|
+
}>;
|
|
7709
|
+
|
|
7710
|
+
export declare type DisbursementResponse = z.infer<typeof DisbursementResponseSchema>;
|
|
7711
|
+
|
|
7712
|
+
export declare const DisbursementResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
7713
|
+
locator: z.ZodString;
|
|
7714
|
+
disbursementState: z.ZodUnion<[z.ZodLiteral<"draft">, z.ZodLiteral<"validated">, z.ZodLiteral<"approved">, z.ZodLiteral<"executed">, z.ZodLiteral<"reversed">, z.ZodLiteral<"rejected">, z.ZodLiteral<"discarded">]>;
|
|
7715
|
+
type: z.ZodString;
|
|
7716
|
+
currency: z.ZodString;
|
|
7717
|
+
amount: z.ZodNumber;
|
|
7718
|
+
data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7719
|
+
createdAt: z.ZodString;
|
|
7720
|
+
createdBy: z.ZodString;
|
|
7721
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7722
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
7723
|
+
containerLocator: z.ZodString;
|
|
7724
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7725
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7726
|
+
}, "strip", z.ZodTypeAny, {
|
|
7727
|
+
containerLocator: string;
|
|
7728
|
+
containerType: "account" | "invoice";
|
|
7729
|
+
amount?: number | undefined;
|
|
7730
|
+
}, {
|
|
7731
|
+
containerLocator: string;
|
|
7732
|
+
containerType: "account" | "invoice";
|
|
7733
|
+
amount?: number | undefined;
|
|
7734
|
+
}>, "many">;
|
|
7735
|
+
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
7736
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
7737
|
+
validationItems: z.ZodArray<z.ZodObject<{
|
|
7738
|
+
elementType: z.ZodString;
|
|
7739
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
7740
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
7741
|
+
}, "strip", z.ZodTypeAny, {
|
|
7742
|
+
elementType: string;
|
|
7743
|
+
errors: string[];
|
|
7744
|
+
locator?: string | undefined;
|
|
7745
|
+
}, {
|
|
7746
|
+
elementType: string;
|
|
7747
|
+
errors: string[];
|
|
7748
|
+
locator?: string | undefined;
|
|
7749
|
+
}>, "many">;
|
|
7750
|
+
success: z.ZodBoolean;
|
|
7751
|
+
}, "strip", z.ZodTypeAny, {
|
|
7752
|
+
validationItems: {
|
|
7753
|
+
elementType: string;
|
|
7754
|
+
errors: string[];
|
|
7755
|
+
locator?: string | undefined;
|
|
7756
|
+
}[];
|
|
7757
|
+
success: boolean;
|
|
7758
|
+
}, {
|
|
7759
|
+
validationItems: {
|
|
7760
|
+
elementType: string;
|
|
7761
|
+
errors: string[];
|
|
7762
|
+
locator?: string | undefined;
|
|
7763
|
+
}[];
|
|
7764
|
+
success: boolean;
|
|
7765
|
+
}>>;
|
|
7766
|
+
disbursementNumber: z.ZodOptional<z.ZodString>;
|
|
7767
|
+
}, {
|
|
7768
|
+
locator: z.ZodString;
|
|
7769
|
+
disbursementState: z.ZodEnum<["draft", "validated", "approved", "executed", "reversed", "rejected", "discarded"]>;
|
|
7770
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7771
|
+
createdAt: z.ZodString;
|
|
7772
|
+
createdBy: z.ZodString;
|
|
7773
|
+
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7774
|
+
containerLocator: z.ZodString;
|
|
7775
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7776
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7777
|
+
}, {
|
|
7778
|
+
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
7779
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7780
|
+
containerLocator: string;
|
|
7781
|
+
containerType: "account" | "invoice";
|
|
7782
|
+
amount?: number | undefined;
|
|
7783
|
+
}, {
|
|
7784
|
+
containerLocator: string;
|
|
7785
|
+
containerType: "account" | "invoice";
|
|
7786
|
+
amount?: number | undefined;
|
|
7787
|
+
}>, "many">;
|
|
7788
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7789
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
7790
|
+
validationItems: z.ZodArray<z.ZodObject<{
|
|
7791
|
+
elementType: z.ZodString;
|
|
7792
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
7793
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
7794
|
+
}, "strip", z.ZodTypeAny, {
|
|
7795
|
+
elementType: string;
|
|
7796
|
+
errors: string[];
|
|
7797
|
+
locator?: string | undefined;
|
|
7798
|
+
}, {
|
|
7799
|
+
elementType: string;
|
|
7800
|
+
errors: string[];
|
|
7801
|
+
locator?: string | undefined;
|
|
7802
|
+
}>, "many">;
|
|
7803
|
+
success: z.ZodBoolean;
|
|
7804
|
+
}, {
|
|
7805
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7806
|
+
elementType: z.ZodString;
|
|
7807
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
7808
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
7809
|
+
}, {
|
|
7810
|
+
locator: z.ZodString;
|
|
7811
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7812
|
+
elementType: string;
|
|
7813
|
+
locator: string;
|
|
7814
|
+
errors: string[];
|
|
7815
|
+
}, {
|
|
7816
|
+
elementType: string;
|
|
7817
|
+
locator: string;
|
|
7818
|
+
errors: string[];
|
|
7819
|
+
}>, "many">>;
|
|
7820
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7821
|
+
success: boolean;
|
|
7822
|
+
validationItems?: {
|
|
7823
|
+
elementType: string;
|
|
7824
|
+
locator: string;
|
|
7825
|
+
errors: string[];
|
|
7826
|
+
}[] | undefined;
|
|
7827
|
+
}, {
|
|
7828
|
+
success: boolean;
|
|
7829
|
+
validationItems?: {
|
|
7830
|
+
elementType: string;
|
|
7831
|
+
locator: string;
|
|
7832
|
+
errors: string[];
|
|
7833
|
+
}[] | undefined;
|
|
7834
|
+
}>>;
|
|
7835
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7836
|
+
locator: string;
|
|
7837
|
+
type: string;
|
|
7838
|
+
createdBy: string;
|
|
7839
|
+
data: Record<string, any>;
|
|
7840
|
+
currency: string;
|
|
7841
|
+
amount: number;
|
|
7842
|
+
createdAt: string;
|
|
7843
|
+
sources: {
|
|
7844
|
+
containerLocator: string;
|
|
7845
|
+
containerType: "account" | "invoice";
|
|
7846
|
+
amount?: number | undefined;
|
|
7847
|
+
}[];
|
|
7848
|
+
disbursementState: "draft" | "rejected" | "approved" | "validated" | "discarded" | "reversed" | "executed";
|
|
7849
|
+
accountLocator?: string | undefined;
|
|
7850
|
+
validationResult?: {
|
|
7851
|
+
success: boolean;
|
|
7852
|
+
validationItems?: {
|
|
7853
|
+
elementType: string;
|
|
7854
|
+
locator: string;
|
|
7855
|
+
errors: string[];
|
|
7856
|
+
}[] | undefined;
|
|
7857
|
+
} | undefined;
|
|
7858
|
+
externalCashTransactionLocator?: string | undefined;
|
|
7859
|
+
disbursementNumber?: string | undefined;
|
|
7860
|
+
}, {
|
|
7861
|
+
locator: string;
|
|
7862
|
+
type: string;
|
|
7863
|
+
createdBy: string;
|
|
7864
|
+
data: Record<string, any>;
|
|
7865
|
+
currency: string;
|
|
7866
|
+
amount: number;
|
|
7867
|
+
createdAt: string;
|
|
7868
|
+
sources: {
|
|
7869
|
+
containerLocator: string;
|
|
7870
|
+
containerType: "account" | "invoice";
|
|
7871
|
+
amount?: number | undefined;
|
|
7872
|
+
}[];
|
|
7873
|
+
disbursementState: "draft" | "rejected" | "approved" | "validated" | "discarded" | "reversed" | "executed";
|
|
7874
|
+
accountLocator?: string | undefined;
|
|
7875
|
+
validationResult?: {
|
|
7876
|
+
success: boolean;
|
|
7877
|
+
validationItems?: {
|
|
7878
|
+
elementType: string;
|
|
7879
|
+
locator: string;
|
|
7880
|
+
errors: string[];
|
|
7881
|
+
}[] | undefined;
|
|
7882
|
+
} | undefined;
|
|
7883
|
+
externalCashTransactionLocator?: string | undefined;
|
|
7884
|
+
disbursementNumber?: string | undefined;
|
|
7885
|
+
}>;
|
|
7886
|
+
|
|
7887
|
+
export declare const DisbursementStateEnumSchema: z.ZodEnum<["draft", "validated", "approved", "executed", "reversed", "rejected", "discarded"]>;
|
|
7888
|
+
|
|
7889
|
+
export declare type DisbursementUpdateReplaceDataRequest = z.infer<typeof DisbursementUpdateReplaceDataRequestSchema>;
|
|
7890
|
+
|
|
7891
|
+
export declare const DisbursementUpdateReplaceDataRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
7892
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7893
|
+
type: z.ZodString;
|
|
7894
|
+
amount: z.ZodNumber;
|
|
7895
|
+
data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7896
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
7897
|
+
containerLocator: z.ZodString;
|
|
7898
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7899
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7900
|
+
}, "strip", z.ZodTypeAny, {
|
|
7901
|
+
containerLocator: string;
|
|
7902
|
+
containerType: "account" | "invoice";
|
|
7903
|
+
amount?: number | undefined;
|
|
7904
|
+
}, {
|
|
7905
|
+
containerLocator: string;
|
|
7906
|
+
containerType: "account" | "invoice";
|
|
7907
|
+
amount?: number | undefined;
|
|
7908
|
+
}>, "many">;
|
|
7909
|
+
useDefaultFinancialInstrument: z.ZodBoolean;
|
|
7910
|
+
financialInstrumentLocator: z.ZodOptional<z.ZodString>;
|
|
7911
|
+
transactionMethod: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ach">, z.ZodLiteral<"cash">, z.ZodLiteral<"eft">, z.ZodLiteral<"standard">, z.ZodLiteral<"wire">]>>;
|
|
7912
|
+
transactionNumber: z.ZodOptional<z.ZodString>;
|
|
7913
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
7914
|
+
}, {
|
|
7915
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7916
|
+
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7917
|
+
containerLocator: z.ZodString;
|
|
7918
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7919
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7920
|
+
}, {
|
|
7921
|
+
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
7922
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7923
|
+
containerLocator: string;
|
|
7924
|
+
containerType: "account" | "invoice";
|
|
7925
|
+
amount?: number | undefined;
|
|
7926
|
+
}, {
|
|
7927
|
+
containerLocator: string;
|
|
7928
|
+
containerType: "account" | "invoice";
|
|
7929
|
+
amount?: number | undefined;
|
|
7930
|
+
}>, "many">;
|
|
7931
|
+
transactionMethod: z.ZodEnum<["ach", "cash", "eft", "standard", "wire"]>;
|
|
7932
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7933
|
+
type: string;
|
|
7934
|
+
data: Record<string, any>;
|
|
7935
|
+
amount: number;
|
|
7936
|
+
useDefaultFinancialInstrument: boolean;
|
|
7937
|
+
transactionMethod: "ach" | "cash" | "eft" | "standard" | "wire";
|
|
7938
|
+
sources: {
|
|
7939
|
+
containerLocator: string;
|
|
7940
|
+
containerType: "account" | "invoice";
|
|
7941
|
+
amount?: number | undefined;
|
|
7942
|
+
}[];
|
|
7943
|
+
currency?: string | undefined;
|
|
7944
|
+
accountLocator?: string | undefined;
|
|
7945
|
+
financialInstrumentLocator?: string | undefined;
|
|
7946
|
+
transactionNumber?: string | undefined;
|
|
7947
|
+
}, {
|
|
7948
|
+
type: string;
|
|
7949
|
+
data: Record<string, any>;
|
|
7950
|
+
amount: number;
|
|
7951
|
+
useDefaultFinancialInstrument: boolean;
|
|
7952
|
+
transactionMethod: "ach" | "cash" | "eft" | "standard" | "wire";
|
|
7953
|
+
sources: {
|
|
7954
|
+
containerLocator: string;
|
|
7955
|
+
containerType: "account" | "invoice";
|
|
7956
|
+
amount?: number | undefined;
|
|
7957
|
+
}[];
|
|
7958
|
+
currency?: string | undefined;
|
|
7959
|
+
accountLocator?: string | undefined;
|
|
7960
|
+
financialInstrumentLocator?: string | undefined;
|
|
7961
|
+
transactionNumber?: string | undefined;
|
|
6893
7962
|
}>;
|
|
6894
7963
|
|
|
6895
|
-
export declare type
|
|
6896
|
-
|
|
6897
|
-
export declare const delinquencyStateEnumSchema: z.ZodEnum<["preGrace", "inGrace", "lapseTriggered", "settled"]>;
|
|
6898
|
-
|
|
6899
|
-
export declare type DeploymentMetadata = z.infer<typeof DeploymentMetadataSchema>;
|
|
7964
|
+
export declare type DisbursementUpdateRequest = z.infer<typeof DisbursementUpdateRequestSchema>;
|
|
6900
7965
|
|
|
6901
|
-
export declare const
|
|
6902
|
-
|
|
6903
|
-
|
|
6904
|
-
|
|
6905
|
-
|
|
7966
|
+
export declare const DisbursementUpdateRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
7967
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7968
|
+
type: z.ZodOptional<z.ZodString>;
|
|
7969
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7970
|
+
setData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7971
|
+
removeData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7972
|
+
addSources: z.ZodArray<z.ZodObject<{
|
|
7973
|
+
containerLocator: z.ZodString;
|
|
7974
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7975
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7976
|
+
}, "strip", z.ZodTypeAny, {
|
|
7977
|
+
containerLocator: string;
|
|
7978
|
+
containerType: "account" | "invoice";
|
|
7979
|
+
amount?: number | undefined;
|
|
7980
|
+
}, {
|
|
7981
|
+
containerLocator: string;
|
|
7982
|
+
containerType: "account" | "invoice";
|
|
7983
|
+
amount?: number | undefined;
|
|
7984
|
+
}>, "many">;
|
|
7985
|
+
removeSources: z.ZodArray<z.ZodString, "many">;
|
|
7986
|
+
useDefaultFinancialInstrument: z.ZodOptional<z.ZodBoolean>;
|
|
7987
|
+
financialInstrumentLocator: z.ZodOptional<z.ZodString>;
|
|
7988
|
+
transactionMethod: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ach">, z.ZodLiteral<"cash">, z.ZodLiteral<"eft">, z.ZodLiteral<"standard">, z.ZodLiteral<"wire">]>>;
|
|
7989
|
+
transactionNumber: z.ZodOptional<z.ZodString>;
|
|
7990
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
6906
7991
|
}, {
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
7992
|
+
setData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7993
|
+
removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7994
|
+
addSources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7995
|
+
containerLocator: z.ZodString;
|
|
7996
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7997
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
7998
|
+
}, {
|
|
7999
|
+
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
8000
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8001
|
+
containerLocator: string;
|
|
8002
|
+
containerType: "account" | "invoice";
|
|
8003
|
+
amount?: number | undefined;
|
|
8004
|
+
}, {
|
|
8005
|
+
containerLocator: string;
|
|
8006
|
+
containerType: "account" | "invoice";
|
|
8007
|
+
amount?: number | undefined;
|
|
8008
|
+
}>, "many">;
|
|
8009
|
+
removeSources: z.ZodArray<z.ZodString, "many">;
|
|
8010
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
8011
|
+
transactionMethod: z.ZodEnum<["ach", "cash", "eft", "standard", "wire"]>;
|
|
6911
8012
|
}>, "strip", z.ZodTypeAny, {
|
|
6912
|
-
|
|
6913
|
-
|
|
6914
|
-
|
|
6915
|
-
|
|
8013
|
+
removeData: Record<string, any>;
|
|
8014
|
+
setData: Record<string, any>;
|
|
8015
|
+
transactionMethod: "ach" | "cash" | "eft" | "standard" | "wire";
|
|
8016
|
+
addSources: {
|
|
8017
|
+
containerLocator: string;
|
|
8018
|
+
containerType: "account" | "invoice";
|
|
8019
|
+
amount?: number | undefined;
|
|
8020
|
+
}[];
|
|
8021
|
+
removeSources: string[];
|
|
8022
|
+
type?: string | undefined;
|
|
8023
|
+
currency?: string | undefined;
|
|
8024
|
+
accountLocator?: string | undefined;
|
|
8025
|
+
amount?: number | undefined;
|
|
8026
|
+
useDefaultFinancialInstrument?: boolean | undefined;
|
|
8027
|
+
financialInstrumentLocator?: string | undefined;
|
|
8028
|
+
transactionNumber?: string | undefined;
|
|
6916
8029
|
}, {
|
|
6917
|
-
|
|
6918
|
-
|
|
6919
|
-
|
|
6920
|
-
|
|
8030
|
+
removeData: Record<string, any>;
|
|
8031
|
+
setData: Record<string, any>;
|
|
8032
|
+
transactionMethod: "ach" | "cash" | "eft" | "standard" | "wire";
|
|
8033
|
+
addSources: {
|
|
8034
|
+
containerLocator: string;
|
|
8035
|
+
containerType: "account" | "invoice";
|
|
8036
|
+
amount?: number | undefined;
|
|
8037
|
+
}[];
|
|
8038
|
+
removeSources: string[];
|
|
8039
|
+
type?: string | undefined;
|
|
8040
|
+
currency?: string | undefined;
|
|
8041
|
+
accountLocator?: string | undefined;
|
|
8042
|
+
amount?: number | undefined;
|
|
8043
|
+
useDefaultFinancialInstrument?: boolean | undefined;
|
|
8044
|
+
financialInstrumentLocator?: string | undefined;
|
|
8045
|
+
transactionNumber?: string | undefined;
|
|
6921
8046
|
}>;
|
|
6922
8047
|
|
|
6923
8048
|
export declare type DocumentFormatEnum = z.infer<typeof DocumentFormatEnumSchema>;
|
|
@@ -6928,10 +8053,12 @@ export declare type DocumentId = z.infer<typeof DocumentIdSchema>;
|
|
|
6928
8053
|
|
|
6929
8054
|
export declare const DocumentIdSchema: z.ZodString;
|
|
6930
8055
|
|
|
6931
|
-
export declare type DocumentInstance =
|
|
8056
|
+
export declare type DocumentInstance = DocumentInstanceResponse_2;
|
|
6932
8057
|
|
|
6933
8058
|
export declare type DocumentInstanceResponse = z.infer<typeof documentInstanceResponseSchema>;
|
|
6934
8059
|
|
|
8060
|
+
declare type DocumentInstanceResponse_2 = z.infer<typeof DocumentInstanceResponseSchema>;
|
|
8061
|
+
|
|
6935
8062
|
export declare const DocumentInstanceResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
6936
8063
|
locator: z.ZodString;
|
|
6937
8064
|
referenceLocator: z.ZodString;
|
|
@@ -7072,10 +8199,10 @@ export declare const documentInstanceResponseSchema: z.ZodObject<{
|
|
|
7072
8199
|
readyAt?: string | undefined;
|
|
7073
8200
|
}>;
|
|
7074
8201
|
|
|
7075
|
-
export declare const DocumentInstanceSchema: z.ZodObject<{
|
|
8202
|
+
export declare const DocumentInstanceSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
7076
8203
|
locator: z.ZodString;
|
|
7077
8204
|
referenceLocator: z.ZodString;
|
|
7078
|
-
referenceType: z.
|
|
8205
|
+
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"policy">, z.ZodLiteral<"invoice">, z.ZodLiteral<"transaction">, z.ZodLiteral<"segment">, z.ZodLiteral<"term">]>;
|
|
7079
8206
|
referenceDocumentLocator: z.ZodOptional<z.ZodString>;
|
|
7080
8207
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
7081
8208
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -7083,29 +8210,46 @@ export declare const DocumentInstanceSchema: z.ZodObject<{
|
|
|
7083
8210
|
policyLocator: z.ZodOptional<z.ZodString>;
|
|
7084
8211
|
name: z.ZodOptional<z.ZodString>;
|
|
7085
8212
|
staticName: z.ZodOptional<z.ZodString>;
|
|
7086
|
-
documentInstanceState: z.
|
|
7087
|
-
documentFormat: z.ZodOptional<z.
|
|
7088
|
-
metadata: z.
|
|
8213
|
+
documentInstanceState: z.ZodUnion<[z.ZodLiteral<"draft">, z.ZodLiteral<"dataReady">, z.ZodLiteral<"ready">, z.ZodLiteral<"dataError">, z.ZodLiteral<"renderError">, z.ZodLiteral<"conversionError">]>;
|
|
8214
|
+
documentFormat: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"html">, z.ZodLiteral<"pdf">, z.ZodLiteral<"jpg">, z.ZodLiteral<"jpeg">, z.ZodLiteral<"doc">, z.ZodLiteral<"docx">, z.ZodLiteral<"xls">, z.ZodLiteral<"xlsx">, z.ZodLiteral<"csv">, z.ZodLiteral<"txt">, z.ZodLiteral<"zip">]>>;
|
|
8215
|
+
metadata: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7089
8216
|
createdAt: z.ZodString;
|
|
7090
8217
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
7091
8218
|
readyAt: z.ZodOptional<z.ZodString>;
|
|
7092
|
-
renderingData: z.
|
|
8219
|
+
renderingData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7093
8220
|
processingErrors: z.ZodOptional<z.ZodString>;
|
|
7094
|
-
external: z.
|
|
8221
|
+
external: z.ZodBoolean;
|
|
7095
8222
|
category: z.ZodOptional<z.ZodString>;
|
|
7096
|
-
},
|
|
8223
|
+
}, {
|
|
8224
|
+
locator: z.ZodString;
|
|
8225
|
+
referenceLocator: z.ZodString;
|
|
8226
|
+
referenceType: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
|
|
8227
|
+
referenceDocumentLocator: z.ZodOptional<z.ZodString>;
|
|
8228
|
+
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
8229
|
+
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
8230
|
+
termLocator: z.ZodOptional<z.ZodString>;
|
|
8231
|
+
policyLocator: z.ZodOptional<z.ZodString>;
|
|
8232
|
+
documentInstanceState: z.ZodEnum<["draft", "dataReady", "ready", "dataError", "renderError", "conversionError"]>;
|
|
8233
|
+
documentFormat: z.ZodOptional<z.ZodEnum<["text", "html", "pdf", "jpg", "jpeg", "doc", "docx", "xls", "xlsx", "csv", "txt", "zip"]>>;
|
|
8234
|
+
metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
8235
|
+
createdAt: z.ZodString;
|
|
8236
|
+
createdBy: z.ZodString;
|
|
8237
|
+
readyAt: z.ZodOptional<z.ZodString>;
|
|
8238
|
+
renderingData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
8239
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7097
8240
|
locator: string;
|
|
8241
|
+
createdBy: string;
|
|
7098
8242
|
createdAt: string;
|
|
7099
8243
|
documentInstanceState: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
|
|
8244
|
+
referenceType: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term";
|
|
7100
8245
|
referenceLocator: string;
|
|
7101
|
-
|
|
8246
|
+
metadata: Record<string, any>;
|
|
8247
|
+
renderingData: Record<string, any>;
|
|
8248
|
+
external: boolean;
|
|
7102
8249
|
staticName?: string | undefined;
|
|
7103
8250
|
category?: string | undefined;
|
|
7104
8251
|
policyLocator?: string | undefined;
|
|
7105
8252
|
name?: string | undefined;
|
|
7106
|
-
referenceType?: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term" | undefined;
|
|
7107
|
-
metadata?: Record<string, any> | undefined;
|
|
7108
|
-
renderingData?: Record<string, any> | undefined;
|
|
7109
8253
|
referenceDocumentLocator?: string | undefined;
|
|
7110
8254
|
segmentLocator?: string | undefined;
|
|
7111
8255
|
termLocator?: string | undefined;
|
|
@@ -7113,20 +8257,20 @@ export declare const DocumentInstanceSchema: z.ZodObject<{
|
|
|
7113
8257
|
documentFormat?: "text" | "html" | "pdf" | "jpg" | "jpeg" | "doc" | "docx" | "xls" | "xlsx" | "csv" | "txt" | "zip" | undefined;
|
|
7114
8258
|
processingErrors?: string | undefined;
|
|
7115
8259
|
readyAt?: string | undefined;
|
|
7116
|
-
external?: boolean | undefined;
|
|
7117
8260
|
}, {
|
|
7118
8261
|
locator: string;
|
|
8262
|
+
createdBy: string;
|
|
7119
8263
|
createdAt: string;
|
|
7120
8264
|
documentInstanceState: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
|
|
8265
|
+
referenceType: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term";
|
|
7121
8266
|
referenceLocator: string;
|
|
7122
|
-
|
|
8267
|
+
metadata: Record<string, any>;
|
|
8268
|
+
renderingData: Record<string, any>;
|
|
8269
|
+
external: boolean;
|
|
7123
8270
|
staticName?: string | undefined;
|
|
7124
8271
|
category?: string | undefined;
|
|
7125
8272
|
policyLocator?: string | undefined;
|
|
7126
8273
|
name?: string | undefined;
|
|
7127
|
-
referenceType?: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term" | undefined;
|
|
7128
|
-
metadata?: Record<string, any> | undefined;
|
|
7129
|
-
renderingData?: Record<string, any> | undefined;
|
|
7130
8274
|
referenceDocumentLocator?: string | undefined;
|
|
7131
8275
|
segmentLocator?: string | undefined;
|
|
7132
8276
|
termLocator?: string | undefined;
|
|
@@ -7134,7 +8278,6 @@ export declare const DocumentInstanceSchema: z.ZodObject<{
|
|
|
7134
8278
|
documentFormat?: "text" | "html" | "pdf" | "jpg" | "jpeg" | "doc" | "docx" | "xls" | "xlsx" | "csv" | "txt" | "zip" | undefined;
|
|
7135
8279
|
processingErrors?: string | undefined;
|
|
7136
8280
|
readyAt?: string | undefined;
|
|
7137
|
-
external?: boolean | undefined;
|
|
7138
8281
|
}>;
|
|
7139
8282
|
|
|
7140
8283
|
export declare const DocumentInstanceStateEnumSchema: z.ZodEnum<["draft", "dataReady", "ready", "dataError", "renderError", "conversionError"]>;
|
|
@@ -12092,7 +13235,7 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
12092
13235
|
} | undefined;
|
|
12093
13236
|
}>>;
|
|
12094
13237
|
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
12095
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
13238
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
12096
13239
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
12097
13240
|
elementType: z.ZodString;
|
|
12098
13241
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -12107,20 +13250,36 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
12107
13250
|
locator?: string | undefined;
|
|
12108
13251
|
}>, "many">;
|
|
12109
13252
|
success: z.ZodBoolean;
|
|
12110
|
-
},
|
|
12111
|
-
validationItems: {
|
|
13253
|
+
}, {
|
|
13254
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
13255
|
+
elementType: z.ZodString;
|
|
13256
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
13257
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
13258
|
+
}, {
|
|
13259
|
+
locator: z.ZodString;
|
|
13260
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12112
13261
|
elementType: string;
|
|
13262
|
+
locator: string;
|
|
12113
13263
|
errors: string[];
|
|
12114
|
-
|
|
12115
|
-
|
|
13264
|
+
}, {
|
|
13265
|
+
elementType: string;
|
|
13266
|
+
locator: string;
|
|
13267
|
+
errors: string[];
|
|
13268
|
+
}>, "many">>;
|
|
13269
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12116
13270
|
success: boolean;
|
|
12117
|
-
|
|
12118
|
-
validationItems: {
|
|
13271
|
+
validationItems?: {
|
|
12119
13272
|
elementType: string;
|
|
13273
|
+
locator: string;
|
|
12120
13274
|
errors: string[];
|
|
12121
|
-
|
|
12122
|
-
|
|
13275
|
+
}[] | undefined;
|
|
13276
|
+
}, {
|
|
12123
13277
|
success: boolean;
|
|
13278
|
+
validationItems?: {
|
|
13279
|
+
elementType: string;
|
|
13280
|
+
locator: string;
|
|
13281
|
+
errors: string[];
|
|
13282
|
+
}[] | undefined;
|
|
12124
13283
|
}>>;
|
|
12125
13284
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
12126
13285
|
action: z.ZodString;
|
|
@@ -12615,7 +13774,7 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
12615
13774
|
} | undefined;
|
|
12616
13775
|
}>>;
|
|
12617
13776
|
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
12618
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
13777
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
12619
13778
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
12620
13779
|
elementType: z.ZodString;
|
|
12621
13780
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -12630,20 +13789,36 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
12630
13789
|
locator?: string | undefined;
|
|
12631
13790
|
}>, "many">;
|
|
12632
13791
|
success: z.ZodBoolean;
|
|
12633
|
-
},
|
|
12634
|
-
validationItems: {
|
|
13792
|
+
}, {
|
|
13793
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
13794
|
+
elementType: z.ZodString;
|
|
13795
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
13796
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
13797
|
+
}, {
|
|
13798
|
+
locator: z.ZodString;
|
|
13799
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12635
13800
|
elementType: string;
|
|
13801
|
+
locator: string;
|
|
12636
13802
|
errors: string[];
|
|
12637
|
-
|
|
12638
|
-
|
|
13803
|
+
}, {
|
|
13804
|
+
elementType: string;
|
|
13805
|
+
locator: string;
|
|
13806
|
+
errors: string[];
|
|
13807
|
+
}>, "many">>;
|
|
13808
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12639
13809
|
success: boolean;
|
|
12640
|
-
|
|
12641
|
-
validationItems: {
|
|
13810
|
+
validationItems?: {
|
|
12642
13811
|
elementType: string;
|
|
13812
|
+
locator: string;
|
|
12643
13813
|
errors: string[];
|
|
12644
|
-
|
|
12645
|
-
|
|
13814
|
+
}[] | undefined;
|
|
13815
|
+
}, {
|
|
12646
13816
|
success: boolean;
|
|
13817
|
+
validationItems?: {
|
|
13818
|
+
elementType: string;
|
|
13819
|
+
locator: string;
|
|
13820
|
+
errors: string[];
|
|
13821
|
+
}[] | undefined;
|
|
12647
13822
|
}>>;
|
|
12648
13823
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
12649
13824
|
action: z.ZodString;
|
|
@@ -13007,12 +14182,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13007
14182
|
underwritingStatus?: string | undefined;
|
|
13008
14183
|
issuedTime?: string | undefined;
|
|
13009
14184
|
validationResult?: {
|
|
13010
|
-
|
|
14185
|
+
success: boolean;
|
|
14186
|
+
validationItems?: {
|
|
13011
14187
|
elementType: string;
|
|
14188
|
+
locator: string;
|
|
13012
14189
|
errors: string[];
|
|
13013
|
-
|
|
13014
|
-
}[];
|
|
13015
|
-
success: boolean;
|
|
14190
|
+
}[] | undefined;
|
|
13016
14191
|
} | undefined;
|
|
13017
14192
|
changeInstructions?: ({
|
|
13018
14193
|
locator: string;
|
|
@@ -13109,12 +14284,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13109
14284
|
underwritingStatus?: string | undefined;
|
|
13110
14285
|
issuedTime?: string | undefined;
|
|
13111
14286
|
validationResult?: {
|
|
13112
|
-
|
|
14287
|
+
success: boolean;
|
|
14288
|
+
validationItems?: {
|
|
13113
14289
|
elementType: string;
|
|
14290
|
+
locator: string;
|
|
13114
14291
|
errors: string[];
|
|
13115
|
-
|
|
13116
|
-
}[];
|
|
13117
|
-
success: boolean;
|
|
14292
|
+
}[] | undefined;
|
|
13118
14293
|
} | undefined;
|
|
13119
14294
|
changeInstructions?: ({
|
|
13120
14295
|
locator: string;
|
|
@@ -13223,12 +14398,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13223
14398
|
underwritingStatus?: string | undefined;
|
|
13224
14399
|
issuedTime?: string | undefined;
|
|
13225
14400
|
validationResult?: {
|
|
13226
|
-
|
|
14401
|
+
success: boolean;
|
|
14402
|
+
validationItems?: {
|
|
13227
14403
|
elementType: string;
|
|
14404
|
+
locator: string;
|
|
13228
14405
|
errors: string[];
|
|
13229
|
-
|
|
13230
|
-
}[];
|
|
13231
|
-
success: boolean;
|
|
14406
|
+
}[] | undefined;
|
|
13232
14407
|
} | undefined;
|
|
13233
14408
|
changeInstructions?: ({
|
|
13234
14409
|
locator: string;
|
|
@@ -13315,12 +14490,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13315
14490
|
underwritingStatus?: string | undefined;
|
|
13316
14491
|
issuedTime?: string | undefined;
|
|
13317
14492
|
validationResult?: {
|
|
13318
|
-
|
|
14493
|
+
success: boolean;
|
|
14494
|
+
validationItems?: {
|
|
13319
14495
|
elementType: string;
|
|
14496
|
+
locator: string;
|
|
13320
14497
|
errors: string[];
|
|
13321
|
-
|
|
13322
|
-
}[];
|
|
13323
|
-
success: boolean;
|
|
14498
|
+
}[] | undefined;
|
|
13324
14499
|
} | undefined;
|
|
13325
14500
|
changeInstructions?: ({
|
|
13326
14501
|
locator: string;
|
|
@@ -13428,12 +14603,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13428
14603
|
underwritingStatus?: string | undefined;
|
|
13429
14604
|
issuedTime?: string | undefined;
|
|
13430
14605
|
validationResult?: {
|
|
13431
|
-
|
|
14606
|
+
success: boolean;
|
|
14607
|
+
validationItems?: {
|
|
13432
14608
|
elementType: string;
|
|
14609
|
+
locator: string;
|
|
13433
14610
|
errors: string[];
|
|
13434
|
-
|
|
13435
|
-
}[];
|
|
13436
|
-
success: boolean;
|
|
14611
|
+
}[] | undefined;
|
|
13437
14612
|
} | undefined;
|
|
13438
14613
|
changeInstructions?: ({
|
|
13439
14614
|
locator: string;
|
|
@@ -13520,12 +14695,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13520
14695
|
underwritingStatus?: string | undefined;
|
|
13521
14696
|
issuedTime?: string | undefined;
|
|
13522
14697
|
validationResult?: {
|
|
13523
|
-
|
|
14698
|
+
success: boolean;
|
|
14699
|
+
validationItems?: {
|
|
13524
14700
|
elementType: string;
|
|
14701
|
+
locator: string;
|
|
13525
14702
|
errors: string[];
|
|
13526
|
-
|
|
13527
|
-
}[];
|
|
13528
|
-
success: boolean;
|
|
14703
|
+
}[] | undefined;
|
|
13529
14704
|
} | undefined;
|
|
13530
14705
|
changeInstructions?: ({
|
|
13531
14706
|
locator: string;
|
|
@@ -13635,12 +14810,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13635
14810
|
underwritingStatus?: string | undefined;
|
|
13636
14811
|
issuedTime?: string | undefined;
|
|
13637
14812
|
validationResult?: {
|
|
13638
|
-
|
|
14813
|
+
success: boolean;
|
|
14814
|
+
validationItems?: {
|
|
13639
14815
|
elementType: string;
|
|
14816
|
+
locator: string;
|
|
13640
14817
|
errors: string[];
|
|
13641
|
-
|
|
13642
|
-
}[];
|
|
13643
|
-
success: boolean;
|
|
14818
|
+
}[] | undefined;
|
|
13644
14819
|
} | undefined;
|
|
13645
14820
|
changeInstructions?: ({
|
|
13646
14821
|
locator: string;
|
|
@@ -13727,12 +14902,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13727
14902
|
underwritingStatus?: string | undefined;
|
|
13728
14903
|
issuedTime?: string | undefined;
|
|
13729
14904
|
validationResult?: {
|
|
13730
|
-
|
|
14905
|
+
success: boolean;
|
|
14906
|
+
validationItems?: {
|
|
13731
14907
|
elementType: string;
|
|
14908
|
+
locator: string;
|
|
13732
14909
|
errors: string[];
|
|
13733
|
-
|
|
13734
|
-
}[];
|
|
13735
|
-
success: boolean;
|
|
14910
|
+
}[] | undefined;
|
|
13736
14911
|
} | undefined;
|
|
13737
14912
|
changeInstructions?: ({
|
|
13738
14913
|
locator: string;
|
|
@@ -13843,12 +15018,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13843
15018
|
underwritingStatus?: string | undefined;
|
|
13844
15019
|
issuedTime?: string | undefined;
|
|
13845
15020
|
validationResult?: {
|
|
13846
|
-
|
|
15021
|
+
success: boolean;
|
|
15022
|
+
validationItems?: {
|
|
13847
15023
|
elementType: string;
|
|
15024
|
+
locator: string;
|
|
13848
15025
|
errors: string[];
|
|
13849
|
-
|
|
13850
|
-
}[];
|
|
13851
|
-
success: boolean;
|
|
15026
|
+
}[] | undefined;
|
|
13852
15027
|
} | undefined;
|
|
13853
15028
|
changeInstructions?: ({
|
|
13854
15029
|
locator: string;
|
|
@@ -13935,12 +15110,12 @@ export declare const PolicyTransactionListResponseSchema: z.ZodObject<{
|
|
|
13935
15110
|
underwritingStatus?: string | undefined;
|
|
13936
15111
|
issuedTime?: string | undefined;
|
|
13937
15112
|
validationResult?: {
|
|
13938
|
-
validationItems: {
|
|
13939
|
-
elementType: string;
|
|
13940
|
-
errors: string[];
|
|
13941
|
-
locator?: string | undefined;
|
|
13942
|
-
}[];
|
|
13943
15113
|
success: boolean;
|
|
15114
|
+
validationItems?: {
|
|
15115
|
+
elementType: string;
|
|
15116
|
+
locator: string;
|
|
15117
|
+
errors: string[];
|
|
15118
|
+
}[] | undefined;
|
|
13944
15119
|
} | undefined;
|
|
13945
15120
|
changeInstructions?: ({
|
|
13946
15121
|
locator: string;
|
|
@@ -14173,7 +15348,7 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
14173
15348
|
} | undefined;
|
|
14174
15349
|
}>>;
|
|
14175
15350
|
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
14176
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
15351
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
14177
15352
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
14178
15353
|
elementType: z.ZodString;
|
|
14179
15354
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -14188,20 +15363,36 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
14188
15363
|
locator?: string | undefined;
|
|
14189
15364
|
}>, "many">;
|
|
14190
15365
|
success: z.ZodBoolean;
|
|
14191
|
-
},
|
|
14192
|
-
validationItems: {
|
|
15366
|
+
}, {
|
|
15367
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
15368
|
+
elementType: z.ZodString;
|
|
15369
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
15370
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
15371
|
+
}, {
|
|
15372
|
+
locator: z.ZodString;
|
|
15373
|
+
}>, "strip", z.ZodTypeAny, {
|
|
14193
15374
|
elementType: string;
|
|
15375
|
+
locator: string;
|
|
14194
15376
|
errors: string[];
|
|
14195
|
-
|
|
14196
|
-
|
|
15377
|
+
}, {
|
|
15378
|
+
elementType: string;
|
|
15379
|
+
locator: string;
|
|
15380
|
+
errors: string[];
|
|
15381
|
+
}>, "many">>;
|
|
15382
|
+
}>, "strip", z.ZodTypeAny, {
|
|
14197
15383
|
success: boolean;
|
|
14198
|
-
|
|
14199
|
-
validationItems: {
|
|
15384
|
+
validationItems?: {
|
|
14200
15385
|
elementType: string;
|
|
15386
|
+
locator: string;
|
|
14201
15387
|
errors: string[];
|
|
14202
|
-
|
|
14203
|
-
|
|
15388
|
+
}[] | undefined;
|
|
15389
|
+
}, {
|
|
14204
15390
|
success: boolean;
|
|
15391
|
+
validationItems?: {
|
|
15392
|
+
elementType: string;
|
|
15393
|
+
locator: string;
|
|
15394
|
+
errors: string[];
|
|
15395
|
+
}[] | undefined;
|
|
14205
15396
|
}>>;
|
|
14206
15397
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
14207
15398
|
action: z.ZodString;
|
|
@@ -14696,7 +15887,7 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
14696
15887
|
} | undefined;
|
|
14697
15888
|
}>>;
|
|
14698
15889
|
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
14699
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
15890
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
14700
15891
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
14701
15892
|
elementType: z.ZodString;
|
|
14702
15893
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -14711,20 +15902,36 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
14711
15902
|
locator?: string | undefined;
|
|
14712
15903
|
}>, "many">;
|
|
14713
15904
|
success: z.ZodBoolean;
|
|
14714
|
-
},
|
|
14715
|
-
validationItems: {
|
|
15905
|
+
}, {
|
|
15906
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
15907
|
+
elementType: z.ZodString;
|
|
15908
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
15909
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
15910
|
+
}, {
|
|
15911
|
+
locator: z.ZodString;
|
|
15912
|
+
}>, "strip", z.ZodTypeAny, {
|
|
14716
15913
|
elementType: string;
|
|
15914
|
+
locator: string;
|
|
14717
15915
|
errors: string[];
|
|
14718
|
-
|
|
14719
|
-
|
|
15916
|
+
}, {
|
|
15917
|
+
elementType: string;
|
|
15918
|
+
locator: string;
|
|
15919
|
+
errors: string[];
|
|
15920
|
+
}>, "many">>;
|
|
15921
|
+
}>, "strip", z.ZodTypeAny, {
|
|
14720
15922
|
success: boolean;
|
|
14721
|
-
|
|
14722
|
-
validationItems: {
|
|
15923
|
+
validationItems?: {
|
|
14723
15924
|
elementType: string;
|
|
15925
|
+
locator: string;
|
|
14724
15926
|
errors: string[];
|
|
14725
|
-
|
|
14726
|
-
|
|
15927
|
+
}[] | undefined;
|
|
15928
|
+
}, {
|
|
14727
15929
|
success: boolean;
|
|
15930
|
+
validationItems?: {
|
|
15931
|
+
elementType: string;
|
|
15932
|
+
locator: string;
|
|
15933
|
+
errors: string[];
|
|
15934
|
+
}[] | undefined;
|
|
14728
15935
|
}>>;
|
|
14729
15936
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
14730
15937
|
action: z.ZodString;
|
|
@@ -15088,12 +16295,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
15088
16295
|
underwritingStatus?: string | undefined;
|
|
15089
16296
|
issuedTime?: string | undefined;
|
|
15090
16297
|
validationResult?: {
|
|
15091
|
-
|
|
16298
|
+
success: boolean;
|
|
16299
|
+
validationItems?: {
|
|
15092
16300
|
elementType: string;
|
|
16301
|
+
locator: string;
|
|
15093
16302
|
errors: string[];
|
|
15094
|
-
|
|
15095
|
-
}[];
|
|
15096
|
-
success: boolean;
|
|
16303
|
+
}[] | undefined;
|
|
15097
16304
|
} | undefined;
|
|
15098
16305
|
changeInstructions?: ({
|
|
15099
16306
|
locator: string;
|
|
@@ -15190,12 +16397,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
15190
16397
|
underwritingStatus?: string | undefined;
|
|
15191
16398
|
issuedTime?: string | undefined;
|
|
15192
16399
|
validationResult?: {
|
|
15193
|
-
|
|
16400
|
+
success: boolean;
|
|
16401
|
+
validationItems?: {
|
|
15194
16402
|
elementType: string;
|
|
16403
|
+
locator: string;
|
|
15195
16404
|
errors: string[];
|
|
15196
|
-
|
|
15197
|
-
}[];
|
|
15198
|
-
success: boolean;
|
|
16405
|
+
}[] | undefined;
|
|
15199
16406
|
} | undefined;
|
|
15200
16407
|
changeInstructions?: ({
|
|
15201
16408
|
locator: string;
|
|
@@ -15304,12 +16511,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
15304
16511
|
underwritingStatus?: string | undefined;
|
|
15305
16512
|
issuedTime?: string | undefined;
|
|
15306
16513
|
validationResult?: {
|
|
15307
|
-
|
|
16514
|
+
success: boolean;
|
|
16515
|
+
validationItems?: {
|
|
15308
16516
|
elementType: string;
|
|
16517
|
+
locator: string;
|
|
15309
16518
|
errors: string[];
|
|
15310
|
-
|
|
15311
|
-
}[];
|
|
15312
|
-
success: boolean;
|
|
16519
|
+
}[] | undefined;
|
|
15313
16520
|
} | undefined;
|
|
15314
16521
|
changeInstructions?: ({
|
|
15315
16522
|
locator: string;
|
|
@@ -15396,12 +16603,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
15396
16603
|
underwritingStatus?: string | undefined;
|
|
15397
16604
|
issuedTime?: string | undefined;
|
|
15398
16605
|
validationResult?: {
|
|
15399
|
-
|
|
16606
|
+
success: boolean;
|
|
16607
|
+
validationItems?: {
|
|
15400
16608
|
elementType: string;
|
|
16609
|
+
locator: string;
|
|
15401
16610
|
errors: string[];
|
|
15402
|
-
|
|
15403
|
-
}[];
|
|
15404
|
-
success: boolean;
|
|
16611
|
+
}[] | undefined;
|
|
15405
16612
|
} | undefined;
|
|
15406
16613
|
changeInstructions?: ({
|
|
15407
16614
|
locator: string;
|
|
@@ -15509,12 +16716,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
15509
16716
|
underwritingStatus?: string | undefined;
|
|
15510
16717
|
issuedTime?: string | undefined;
|
|
15511
16718
|
validationResult?: {
|
|
15512
|
-
|
|
16719
|
+
success: boolean;
|
|
16720
|
+
validationItems?: {
|
|
15513
16721
|
elementType: string;
|
|
16722
|
+
locator: string;
|
|
15514
16723
|
errors: string[];
|
|
15515
|
-
|
|
15516
|
-
}[];
|
|
15517
|
-
success: boolean;
|
|
16724
|
+
}[] | undefined;
|
|
15518
16725
|
} | undefined;
|
|
15519
16726
|
changeInstructions?: ({
|
|
15520
16727
|
locator: string;
|
|
@@ -15601,12 +16808,12 @@ export declare const PolicyTransactionResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
15601
16808
|
underwritingStatus?: string | undefined;
|
|
15602
16809
|
issuedTime?: string | undefined;
|
|
15603
16810
|
validationResult?: {
|
|
15604
|
-
|
|
16811
|
+
success: boolean;
|
|
16812
|
+
validationItems?: {
|
|
15605
16813
|
elementType: string;
|
|
16814
|
+
locator: string;
|
|
15606
16815
|
errors: string[];
|
|
15607
|
-
|
|
15608
|
-
}[];
|
|
15609
|
-
success: boolean;
|
|
16816
|
+
}[] | undefined;
|
|
15610
16817
|
} | undefined;
|
|
15611
16818
|
changeInstructions?: ({
|
|
15612
16819
|
locator: string;
|
|
@@ -17832,7 +19039,7 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
17832
19039
|
maxInstallmentsPerTerm?: number | undefined;
|
|
17833
19040
|
} | undefined;
|
|
17834
19041
|
}>>;
|
|
17835
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
19042
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
17836
19043
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
17837
19044
|
elementType: z.ZodString;
|
|
17838
19045
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -17847,20 +19054,36 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
17847
19054
|
locator?: string | undefined;
|
|
17848
19055
|
}>, "many">;
|
|
17849
19056
|
success: z.ZodBoolean;
|
|
17850
|
-
},
|
|
17851
|
-
validationItems: {
|
|
19057
|
+
}, {
|
|
19058
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
19059
|
+
elementType: z.ZodString;
|
|
19060
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
19061
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
19062
|
+
}, {
|
|
19063
|
+
locator: z.ZodString;
|
|
19064
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17852
19065
|
elementType: string;
|
|
19066
|
+
locator: string;
|
|
17853
19067
|
errors: string[];
|
|
17854
|
-
|
|
17855
|
-
|
|
19068
|
+
}, {
|
|
19069
|
+
elementType: string;
|
|
19070
|
+
locator: string;
|
|
19071
|
+
errors: string[];
|
|
19072
|
+
}>, "many">>;
|
|
19073
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17856
19074
|
success: boolean;
|
|
17857
|
-
|
|
17858
|
-
validationItems: {
|
|
19075
|
+
validationItems?: {
|
|
17859
19076
|
elementType: string;
|
|
19077
|
+
locator: string;
|
|
17860
19078
|
errors: string[];
|
|
17861
|
-
|
|
17862
|
-
|
|
19079
|
+
}[] | undefined;
|
|
19080
|
+
}, {
|
|
17863
19081
|
success: boolean;
|
|
19082
|
+
validationItems?: {
|
|
19083
|
+
elementType: string;
|
|
19084
|
+
locator: string;
|
|
19085
|
+
errors: string[];
|
|
19086
|
+
}[] | undefined;
|
|
17864
19087
|
}>>;
|
|
17865
19088
|
static: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
17866
19089
|
issuedTime: z.ZodOptional<z.ZodString>;
|
|
@@ -17911,12 +19134,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
17911
19134
|
duration?: number | undefined;
|
|
17912
19135
|
issuedTime?: string | undefined;
|
|
17913
19136
|
validationResult?: {
|
|
17914
|
-
|
|
19137
|
+
success: boolean;
|
|
19138
|
+
validationItems?: {
|
|
17915
19139
|
elementType: string;
|
|
19140
|
+
locator: string;
|
|
17916
19141
|
errors: string[];
|
|
17917
|
-
|
|
17918
|
-
}[];
|
|
17919
|
-
success: boolean;
|
|
19142
|
+
}[] | undefined;
|
|
17920
19143
|
} | undefined;
|
|
17921
19144
|
autoRenewalPlanName?: string | undefined;
|
|
17922
19145
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
@@ -17966,12 +19189,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
17966
19189
|
duration?: number | undefined;
|
|
17967
19190
|
issuedTime?: string | undefined;
|
|
17968
19191
|
validationResult?: {
|
|
17969
|
-
|
|
19192
|
+
success: boolean;
|
|
19193
|
+
validationItems?: {
|
|
17970
19194
|
elementType: string;
|
|
19195
|
+
locator: string;
|
|
17971
19196
|
errors: string[];
|
|
17972
|
-
|
|
17973
|
-
}[];
|
|
17974
|
-
success: boolean;
|
|
19197
|
+
}[] | undefined;
|
|
17975
19198
|
} | undefined;
|
|
17976
19199
|
autoRenewalPlanName?: string | undefined;
|
|
17977
19200
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
@@ -18023,12 +19246,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
18023
19246
|
duration?: number | undefined;
|
|
18024
19247
|
issuedTime?: string | undefined;
|
|
18025
19248
|
validationResult?: {
|
|
18026
|
-
|
|
19249
|
+
success: boolean;
|
|
19250
|
+
validationItems?: {
|
|
18027
19251
|
elementType: string;
|
|
19252
|
+
locator: string;
|
|
18028
19253
|
errors: string[];
|
|
18029
|
-
|
|
18030
|
-
}[];
|
|
18031
|
-
success: boolean;
|
|
19254
|
+
}[] | undefined;
|
|
18032
19255
|
} | undefined;
|
|
18033
19256
|
autoRenewalPlanName?: string | undefined;
|
|
18034
19257
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
@@ -18081,12 +19304,12 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
18081
19304
|
duration?: number | undefined;
|
|
18082
19305
|
issuedTime?: string | undefined;
|
|
18083
19306
|
validationResult?: {
|
|
18084
|
-
|
|
19307
|
+
success: boolean;
|
|
19308
|
+
validationItems?: {
|
|
18085
19309
|
elementType: string;
|
|
19310
|
+
locator: string;
|
|
18086
19311
|
errors: string[];
|
|
18087
|
-
|
|
18088
|
-
}[];
|
|
18089
|
-
success: boolean;
|
|
19312
|
+
}[] | undefined;
|
|
18090
19313
|
} | undefined;
|
|
18091
19314
|
autoRenewalPlanName?: string | undefined;
|
|
18092
19315
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
@@ -18902,7 +20125,7 @@ export declare const QuoteResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18902
20125
|
maxInstallmentsPerTerm?: number | undefined;
|
|
18903
20126
|
} | undefined;
|
|
18904
20127
|
}>>;
|
|
18905
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
20128
|
+
validationResult: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
18906
20129
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
18907
20130
|
elementType: z.ZodString;
|
|
18908
20131
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -18917,20 +20140,36 @@ export declare const QuoteResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18917
20140
|
locator?: string | undefined;
|
|
18918
20141
|
}>, "many">;
|
|
18919
20142
|
success: z.ZodBoolean;
|
|
18920
|
-
},
|
|
18921
|
-
validationItems: {
|
|
20143
|
+
}, {
|
|
20144
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
20145
|
+
elementType: z.ZodString;
|
|
20146
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
20147
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
20148
|
+
}, {
|
|
20149
|
+
locator: z.ZodString;
|
|
20150
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18922
20151
|
elementType: string;
|
|
20152
|
+
locator: string;
|
|
18923
20153
|
errors: string[];
|
|
18924
|
-
|
|
18925
|
-
|
|
20154
|
+
}, {
|
|
20155
|
+
elementType: string;
|
|
20156
|
+
locator: string;
|
|
20157
|
+
errors: string[];
|
|
20158
|
+
}>, "many">>;
|
|
20159
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18926
20160
|
success: boolean;
|
|
18927
|
-
|
|
18928
|
-
validationItems: {
|
|
20161
|
+
validationItems?: {
|
|
18929
20162
|
elementType: string;
|
|
20163
|
+
locator: string;
|
|
18930
20164
|
errors: string[];
|
|
18931
|
-
|
|
18932
|
-
|
|
20165
|
+
}[] | undefined;
|
|
20166
|
+
}, {
|
|
18933
20167
|
success: boolean;
|
|
20168
|
+
validationItems?: {
|
|
20169
|
+
elementType: string;
|
|
20170
|
+
locator: string;
|
|
20171
|
+
errors: string[];
|
|
20172
|
+
}[] | undefined;
|
|
18934
20173
|
}>>;
|
|
18935
20174
|
static: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
18936
20175
|
issuedTime: z.ZodOptional<z.ZodString>;
|
|
@@ -18981,12 +20220,12 @@ export declare const QuoteResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18981
20220
|
duration?: number | undefined;
|
|
18982
20221
|
issuedTime?: string | undefined;
|
|
18983
20222
|
validationResult?: {
|
|
18984
|
-
|
|
20223
|
+
success: boolean;
|
|
20224
|
+
validationItems?: {
|
|
18985
20225
|
elementType: string;
|
|
20226
|
+
locator: string;
|
|
18986
20227
|
errors: string[];
|
|
18987
|
-
|
|
18988
|
-
}[];
|
|
18989
|
-
success: boolean;
|
|
20228
|
+
}[] | undefined;
|
|
18990
20229
|
} | undefined;
|
|
18991
20230
|
autoRenewalPlanName?: string | undefined;
|
|
18992
20231
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
@@ -19036,12 +20275,12 @@ export declare const QuoteResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19036
20275
|
duration?: number | undefined;
|
|
19037
20276
|
issuedTime?: string | undefined;
|
|
19038
20277
|
validationResult?: {
|
|
19039
|
-
|
|
20278
|
+
success: boolean;
|
|
20279
|
+
validationItems?: {
|
|
19040
20280
|
elementType: string;
|
|
20281
|
+
locator: string;
|
|
19041
20282
|
errors: string[];
|
|
19042
|
-
|
|
19043
|
-
}[];
|
|
19044
|
-
success: boolean;
|
|
20283
|
+
}[] | undefined;
|
|
19045
20284
|
} | undefined;
|
|
19046
20285
|
autoRenewalPlanName?: string | undefined;
|
|
19047
20286
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
@@ -21330,6 +22569,8 @@ export declare const transactionCategoryEnumSchema: z.ZodEnum<["issuance", "chan
|
|
|
21330
22569
|
|
|
21331
22570
|
export declare type TransactionMethodEnum = z.infer<typeof transactionMethodEnumSchema>;
|
|
21332
22571
|
|
|
22572
|
+
export declare const TransactionMethodEnumSchema: z.ZodEnum<["ach", "cash", "eft", "standard", "wire"]>;
|
|
22573
|
+
|
|
21333
22574
|
export declare const transactionMethodEnumSchema: z.ZodEnum<["ach", "cash", "eft", "standard", "wire"]>;
|
|
21334
22575
|
|
|
21335
22576
|
export declare type TransactionPriceResponse = z.infer<typeof transactionPriceResponseSchema>;
|
|
@@ -23296,7 +24537,7 @@ declare const validationItemSchema: z.ZodObject<{
|
|
|
23296
24537
|
|
|
23297
24538
|
export declare type ValidationResult = z.infer<typeof validationResultSchema>;
|
|
23298
24539
|
|
|
23299
|
-
export declare const ValidationResultSchema: z.ZodObject<{
|
|
24540
|
+
export declare const ValidationResultSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
23300
24541
|
validationItems: z.ZodArray<z.ZodObject<{
|
|
23301
24542
|
elementType: z.ZodString;
|
|
23302
24543
|
locator: z.ZodOptional<z.ZodString>;
|
|
@@ -23311,20 +24552,36 @@ export declare const ValidationResultSchema: z.ZodObject<{
|
|
|
23311
24552
|
locator?: string | undefined;
|
|
23312
24553
|
}>, "many">;
|
|
23313
24554
|
success: z.ZodBoolean;
|
|
23314
|
-
},
|
|
23315
|
-
validationItems: {
|
|
24555
|
+
}, {
|
|
24556
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
24557
|
+
elementType: z.ZodString;
|
|
24558
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
24559
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
24560
|
+
}, {
|
|
24561
|
+
locator: z.ZodString;
|
|
24562
|
+
}>, "strip", z.ZodTypeAny, {
|
|
23316
24563
|
elementType: string;
|
|
24564
|
+
locator: string;
|
|
23317
24565
|
errors: string[];
|
|
23318
|
-
|
|
23319
|
-
|
|
24566
|
+
}, {
|
|
24567
|
+
elementType: string;
|
|
24568
|
+
locator: string;
|
|
24569
|
+
errors: string[];
|
|
24570
|
+
}>, "many">>;
|
|
24571
|
+
}>, "strip", z.ZodTypeAny, {
|
|
23320
24572
|
success: boolean;
|
|
23321
|
-
|
|
23322
|
-
validationItems: {
|
|
24573
|
+
validationItems?: {
|
|
23323
24574
|
elementType: string;
|
|
24575
|
+
locator: string;
|
|
23324
24576
|
errors: string[];
|
|
23325
|
-
|
|
23326
|
-
|
|
24577
|
+
}[] | undefined;
|
|
24578
|
+
}, {
|
|
23327
24579
|
success: boolean;
|
|
24580
|
+
validationItems?: {
|
|
24581
|
+
elementType: string;
|
|
24582
|
+
locator: string;
|
|
24583
|
+
errors: string[];
|
|
24584
|
+
}[] | undefined;
|
|
23328
24585
|
}>;
|
|
23329
24586
|
|
|
23330
24587
|
export declare const validationResultSchema: z.ZodObject<{
|