@socotra/ec-react-schemas 2.26.1-next.7 → 2.26.1-next.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +21 -3
- package/dist/index.es.js +2168 -2066
- 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
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1619
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
1620
|
+
staticLocator: z.ZodOptional<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
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1681
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
1682
|
+
staticLocator: z.ZodOptional<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,12 +4133,12 @@ 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.ZodOptional<z.ZodString>;
|
|
4122
|
-
fieldName: z.ZodOptional<z.ZodString>;
|
|
4123
4139
|
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4140
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
4141
|
+
staticLocator: z.ZodOptional<z.ZodString>;
|
|
4124
4142
|
}, z.core.$strip>>>;
|
|
4125
4143
|
}, z.core.$strip>>>;
|
|
4126
4144
|
|