@socotra/ec-react-schemas 2.27.0 → 2.27.1-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +1 -1
- 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
|
@@ -4438,7 +4438,7 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
4438
4438
|
approved: "approved";
|
|
4439
4439
|
executed: "executed";
|
|
4440
4440
|
}>;
|
|
4441
|
-
data: z.ZodRecord<z.ZodString, z.ZodAny
|
|
4441
|
+
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4442
4442
|
createdAt: z.ZodISODateTime;
|
|
4443
4443
|
createdBy: z.ZodGUID;
|
|
4444
4444
|
sources: z.ZodArray<z.ZodObject<{
|
|
@@ -4510,7 +4510,7 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
4510
4510
|
approved: "approved";
|
|
4511
4511
|
executed: "executed";
|
|
4512
4512
|
}>;
|
|
4513
|
-
data: z.ZodRecord<z.ZodString, z.ZodAny
|
|
4513
|
+
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4514
4514
|
createdAt: z.ZodISODateTime;
|
|
4515
4515
|
createdBy: z.ZodGUID;
|
|
4516
4516
|
sources: z.ZodArray<z.ZodObject<{
|
package/dist/index.es.js
CHANGED
|
@@ -21704,7 +21704,7 @@ const dw = a({
|
|
|
21704
21704
|
...Yn.shape,
|
|
21705
21705
|
locator: dv,
|
|
21706
21706
|
disbursementState: k$,
|
|
21707
|
-
data: F,
|
|
21707
|
+
data: F.optional(),
|
|
21708
21708
|
createdAt: A,
|
|
21709
21709
|
createdBy: Z,
|
|
21710
21710
|
sources: m(cn),
|