@socotra/ec-react-schemas 2.26.1-next.6 → 2.26.1-next.8
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 +96 -69
- package/dist/index.es.js +3063 -3062
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1614,6 +1614,12 @@ export declare type ClaimId = z.infer<typeof ClaimIdSchema>;
|
|
|
1614
1614
|
|
|
1615
1615
|
export declare const ClaimIdSchema: z.ZodULID;
|
|
1616
1616
|
|
|
1617
|
+
export declare const ConditionValueSchema: z.ZodObject<{
|
|
1618
|
+
staticLocator: z.ZodString;
|
|
1619
|
+
fieldName: z.ZodString;
|
|
1620
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1621
|
+
}, z.core.$strip>;
|
|
1622
|
+
|
|
1617
1623
|
export declare type ConfigBuilderResult = z.infer<typeof ConfigBuilderResultSchema>;
|
|
1618
1624
|
|
|
1619
1625
|
export declare const ConfigBuilderResultSchema: z.ZodObject<{
|
|
@@ -1665,6 +1671,18 @@ export declare const constraintConfigSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1665
1671
|
}, z.core.$strip>>>;
|
|
1666
1672
|
}, z.core.$strip>>;
|
|
1667
1673
|
|
|
1674
|
+
export declare type ConstraintDependency = z.infer<typeof ConstraintDependencySchema>;
|
|
1675
|
+
|
|
1676
|
+
export declare const ConstraintDependencySchema: z.ZodObject<{
|
|
1677
|
+
table: z.ZodString;
|
|
1678
|
+
column: z.ZodString;
|
|
1679
|
+
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1680
|
+
staticLocator: z.ZodString;
|
|
1681
|
+
fieldName: z.ZodString;
|
|
1682
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1683
|
+
}, z.core.$strip>>>;
|
|
1684
|
+
}, z.core.$strip>;
|
|
1685
|
+
|
|
1668
1686
|
export declare type Contact = z.infer<typeof ContactSchema>;
|
|
1669
1687
|
|
|
1670
1688
|
export declare type ContactCreateRequest = z.infer<typeof ContactCreateRequestSchema>;
|
|
@@ -4115,11 +4133,11 @@ export declare const delinquencyStateEnumSchema: z.ZodEnum<{
|
|
|
4115
4133
|
export declare type DependencyMapResponse = z.infer<typeof dependencyMapResponseSchema>;
|
|
4116
4134
|
|
|
4117
4135
|
export declare const dependencyMapResponseSchema: z.ZodRecord<z.ZodULID, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4118
|
-
column: z.ZodString;
|
|
4119
4136
|
table: z.ZodString;
|
|
4137
|
+
column: z.ZodString;
|
|
4120
4138
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4121
|
-
staticLocator: z.
|
|
4122
|
-
fieldName: z.
|
|
4139
|
+
staticLocator: z.ZodString;
|
|
4140
|
+
fieldName: z.ZodString;
|
|
4123
4141
|
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4124
4142
|
}, z.core.$strip>>>;
|
|
4125
4143
|
}, z.core.$strip>>>;
|
|
@@ -13921,6 +13939,15 @@ export declare type TransactionUnderwritingResponse = z.infer<typeof Transaction
|
|
|
13921
13939
|
export declare const TransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
13922
13940
|
locator: z.ZodString;
|
|
13923
13941
|
policyLocator: z.ZodString;
|
|
13942
|
+
transactionCategory: z.ZodEnum<{
|
|
13943
|
+
issuance: "issuance";
|
|
13944
|
+
change: "change";
|
|
13945
|
+
renewal: "renewal";
|
|
13946
|
+
cancellation: "cancellation";
|
|
13947
|
+
reinstatement: "reinstatement";
|
|
13948
|
+
reversal: "reversal";
|
|
13949
|
+
aggregate: "aggregate";
|
|
13950
|
+
}>;
|
|
13924
13951
|
transactionState: z.ZodEnum<{
|
|
13925
13952
|
draft: "draft";
|
|
13926
13953
|
validated: "validated";
|
|
@@ -13938,19 +13965,9 @@ export declare const TransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
13938
13965
|
invalidated: "invalidated";
|
|
13939
13966
|
reversed: "reversed";
|
|
13940
13967
|
}>;
|
|
13941
|
-
effectiveTime: z.
|
|
13942
|
-
transactionCategory: z.ZodEnum<{
|
|
13943
|
-
issuance: "issuance";
|
|
13944
|
-
change: "change";
|
|
13945
|
-
renewal: "renewal";
|
|
13946
|
-
cancellation: "cancellation";
|
|
13947
|
-
reinstatement: "reinstatement";
|
|
13948
|
-
reversal: "reversal";
|
|
13949
|
-
aggregate: "aggregate";
|
|
13950
|
-
}>;
|
|
13951
|
-
underwritingStatus: z.ZodString;
|
|
13968
|
+
effectiveTime: z.ZodISODateTime;
|
|
13952
13969
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13953
|
-
locator: z.
|
|
13970
|
+
locator: z.ZodString;
|
|
13954
13971
|
level: z.ZodEnum<{
|
|
13955
13972
|
none: "none";
|
|
13956
13973
|
info: "info";
|
|
@@ -13959,37 +13976,45 @@ export declare const TransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
13959
13976
|
reject: "reject";
|
|
13960
13977
|
approve: "approve";
|
|
13961
13978
|
}>;
|
|
13962
|
-
referenceType: z.
|
|
13979
|
+
referenceType: z.ZodEnum<{
|
|
13963
13980
|
quote: "quote";
|
|
13964
13981
|
transaction: "transaction";
|
|
13965
|
-
}
|
|
13966
|
-
referenceLocator: z.
|
|
13967
|
-
note: z.
|
|
13968
|
-
tag: z.
|
|
13969
|
-
elementLocator: z.ZodOptional<z.
|
|
13970
|
-
createdBy: z.
|
|
13971
|
-
createdTime: z.
|
|
13972
|
-
clearedBy: z.
|
|
13973
|
-
clearedTime: z.
|
|
13974
|
-
taskCreationResponse: z.
|
|
13982
|
+
}>;
|
|
13983
|
+
referenceLocator: z.ZodString;
|
|
13984
|
+
note: z.ZodString;
|
|
13985
|
+
tag: z.ZodString;
|
|
13986
|
+
elementLocator: z.ZodOptional<z.ZodString>;
|
|
13987
|
+
createdBy: z.ZodUUID;
|
|
13988
|
+
createdTime: z.ZodISODateTime;
|
|
13989
|
+
clearedBy: z.ZodUUID;
|
|
13990
|
+
clearedTime: z.ZodISODateTime;
|
|
13991
|
+
taskCreationResponse: z.ZodObject<{
|
|
13975
13992
|
taskLocator: z.ZodString;
|
|
13976
13993
|
status: z.ZodEnum<{
|
|
13977
13994
|
succeeded: "succeeded";
|
|
13978
13995
|
failed: "failed";
|
|
13979
13996
|
}>;
|
|
13980
|
-
}, z.core.$strip
|
|
13997
|
+
}, z.core.$strip>;
|
|
13981
13998
|
}, z.core.$strip>>>;
|
|
13982
|
-
|
|
13983
|
-
|
|
13984
|
-
|
|
13985
|
-
|
|
13986
|
-
|
|
13987
|
-
|
|
13988
|
-
|
|
13989
|
-
}, z.core.$strip>>;
|
|
13999
|
+
underwritingStatus: z.ZodOptional<z.ZodEnum<{
|
|
14000
|
+
none: "none";
|
|
14001
|
+
declined: "declined";
|
|
14002
|
+
rejected: "rejected";
|
|
14003
|
+
approved: "approved";
|
|
14004
|
+
blocked: "blocked";
|
|
14005
|
+
}>>;
|
|
13990
14006
|
aggregatedTransactions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13991
14007
|
locator: z.ZodString;
|
|
13992
14008
|
policyLocator: z.ZodString;
|
|
14009
|
+
transactionCategory: z.ZodEnum<{
|
|
14010
|
+
issuance: "issuance";
|
|
14011
|
+
change: "change";
|
|
14012
|
+
renewal: "renewal";
|
|
14013
|
+
cancellation: "cancellation";
|
|
14014
|
+
reinstatement: "reinstatement";
|
|
14015
|
+
reversal: "reversal";
|
|
14016
|
+
aggregate: "aggregate";
|
|
14017
|
+
}>;
|
|
13993
14018
|
transactionState: z.ZodEnum<{
|
|
13994
14019
|
draft: "draft";
|
|
13995
14020
|
validated: "validated";
|
|
@@ -14007,19 +14032,9 @@ export declare const TransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14007
14032
|
invalidated: "invalidated";
|
|
14008
14033
|
reversed: "reversed";
|
|
14009
14034
|
}>;
|
|
14010
|
-
effectiveTime: z.
|
|
14011
|
-
transactionCategory: z.ZodEnum<{
|
|
14012
|
-
issuance: "issuance";
|
|
14013
|
-
change: "change";
|
|
14014
|
-
renewal: "renewal";
|
|
14015
|
-
cancellation: "cancellation";
|
|
14016
|
-
reinstatement: "reinstatement";
|
|
14017
|
-
reversal: "reversal";
|
|
14018
|
-
aggregate: "aggregate";
|
|
14019
|
-
}>;
|
|
14020
|
-
underwritingStatus: z.ZodString;
|
|
14035
|
+
effectiveTime: z.ZodISODateTime;
|
|
14021
14036
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14022
|
-
locator: z.
|
|
14037
|
+
locator: z.ZodString;
|
|
14023
14038
|
level: z.ZodEnum<{
|
|
14024
14039
|
none: "none";
|
|
14025
14040
|
info: "info";
|
|
@@ -14028,35 +14043,35 @@ export declare const TransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14028
14043
|
reject: "reject";
|
|
14029
14044
|
approve: "approve";
|
|
14030
14045
|
}>;
|
|
14031
|
-
referenceType: z.
|
|
14046
|
+
referenceType: z.ZodEnum<{
|
|
14032
14047
|
quote: "quote";
|
|
14033
14048
|
transaction: "transaction";
|
|
14034
|
-
}
|
|
14035
|
-
referenceLocator: z.
|
|
14036
|
-
note: z.
|
|
14037
|
-
tag: z.
|
|
14038
|
-
elementLocator: z.ZodOptional<z.
|
|
14039
|
-
createdBy: z.
|
|
14040
|
-
createdTime: z.
|
|
14041
|
-
clearedBy: z.
|
|
14042
|
-
clearedTime: z.
|
|
14043
|
-
taskCreationResponse: z.
|
|
14049
|
+
}>;
|
|
14050
|
+
referenceLocator: z.ZodString;
|
|
14051
|
+
note: z.ZodString;
|
|
14052
|
+
tag: z.ZodString;
|
|
14053
|
+
elementLocator: z.ZodOptional<z.ZodString>;
|
|
14054
|
+
createdBy: z.ZodUUID;
|
|
14055
|
+
createdTime: z.ZodISODateTime;
|
|
14056
|
+
clearedBy: z.ZodUUID;
|
|
14057
|
+
clearedTime: z.ZodISODateTime;
|
|
14058
|
+
taskCreationResponse: z.ZodObject<{
|
|
14044
14059
|
taskLocator: z.ZodString;
|
|
14045
14060
|
status: z.ZodEnum<{
|
|
14046
14061
|
succeeded: "succeeded";
|
|
14047
14062
|
failed: "failed";
|
|
14048
14063
|
}>;
|
|
14049
|
-
}, z.core.$strip
|
|
14064
|
+
}, z.core.$strip>;
|
|
14050
14065
|
}, z.core.$strip>>>;
|
|
14051
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14052
|
-
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14053
|
-
locator: z.ZodOptional<z.ZodULID>;
|
|
14054
|
-
elementType: z.ZodOptional<z.ZodString>;
|
|
14055
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14056
|
-
}, z.core.$strip>>>;
|
|
14057
|
-
success: z.ZodOptional<z.ZodBoolean>;
|
|
14058
|
-
}, z.core.$strip>>;
|
|
14059
14066
|
}, z.core.$strip>>>;
|
|
14067
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14068
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14069
|
+
locator: z.ZodOptional<z.ZodULID>;
|
|
14070
|
+
elementType: z.ZodOptional<z.ZodString>;
|
|
14071
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14072
|
+
}, z.core.$strip>>>;
|
|
14073
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
14074
|
+
}, z.core.$strip>>;
|
|
14060
14075
|
}, z.core.$strip>;
|
|
14061
14076
|
|
|
14062
14077
|
/** @deprecated - use TransactionUnderwritingResponseSchema */
|
|
@@ -14090,7 +14105,13 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14090
14105
|
reversal: "reversal";
|
|
14091
14106
|
aggregate: "aggregate";
|
|
14092
14107
|
}>;
|
|
14093
|
-
underwritingStatus: z.
|
|
14108
|
+
underwritingStatus: z.ZodOptional<z.ZodEnum<{
|
|
14109
|
+
none: "none";
|
|
14110
|
+
declined: "declined";
|
|
14111
|
+
rejected: "rejected";
|
|
14112
|
+
approved: "approved";
|
|
14113
|
+
blocked: "blocked";
|
|
14114
|
+
}>>;
|
|
14094
14115
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14095
14116
|
locator: z.ZodULID;
|
|
14096
14117
|
level: z.ZodEnum<{
|
|
@@ -14159,7 +14180,13 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14159
14180
|
reversal: "reversal";
|
|
14160
14181
|
aggregate: "aggregate";
|
|
14161
14182
|
}>;
|
|
14162
|
-
underwritingStatus: z.
|
|
14183
|
+
underwritingStatus: z.ZodOptional<z.ZodEnum<{
|
|
14184
|
+
none: "none";
|
|
14185
|
+
declined: "declined";
|
|
14186
|
+
rejected: "rejected";
|
|
14187
|
+
approved: "approved";
|
|
14188
|
+
blocked: "blocked";
|
|
14189
|
+
}>>;
|
|
14163
14190
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14164
14191
|
locator: z.ZodULID;
|
|
14165
14192
|
level: z.ZodEnum<{
|