@socotra/ec-react-schemas 2.19.2 → 2.19.3-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 +8 -0
- package/dist/index.es.js +2 -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
|
@@ -16924,6 +16924,7 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
16924
16924
|
subpaymentLocator: string;
|
|
16925
16925
|
}>, "many">>;
|
|
16926
16926
|
paymentMode: z.ZodOptional<z.ZodEnum<["normal", "aggregate"]>>;
|
|
16927
|
+
paymentNumber: z.ZodOptional<z.ZodString>;
|
|
16927
16928
|
locator: z.ZodString;
|
|
16928
16929
|
type: z.ZodString;
|
|
16929
16930
|
amount: z.ZodNumber;
|
|
@@ -16973,6 +16974,7 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
16973
16974
|
subpaymentLocator: string;
|
|
16974
16975
|
}[] | undefined;
|
|
16975
16976
|
aggregatePaymentLocator?: string | undefined;
|
|
16977
|
+
paymentNumber?: string | undefined;
|
|
16976
16978
|
}, {
|
|
16977
16979
|
locator: string;
|
|
16978
16980
|
type: string;
|
|
@@ -17009,6 +17011,7 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
17009
17011
|
subpaymentLocator: string;
|
|
17010
17012
|
}[] | undefined;
|
|
17011
17013
|
aggregatePaymentLocator?: string | undefined;
|
|
17014
|
+
paymentNumber?: string | undefined;
|
|
17012
17015
|
}>, "many">;
|
|
17013
17016
|
}, "strip", z.ZodTypeAny, {
|
|
17014
17017
|
items: {
|
|
@@ -17047,6 +17050,7 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
17047
17050
|
subpaymentLocator: string;
|
|
17048
17051
|
}[] | undefined;
|
|
17049
17052
|
aggregatePaymentLocator?: string | undefined;
|
|
17053
|
+
paymentNumber?: string | undefined;
|
|
17050
17054
|
}[];
|
|
17051
17055
|
listCompleted: boolean;
|
|
17052
17056
|
}, {
|
|
@@ -17086,6 +17090,7 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
17086
17090
|
subpaymentLocator: string;
|
|
17087
17091
|
}[] | undefined;
|
|
17088
17092
|
aggregatePaymentLocator?: string | undefined;
|
|
17093
|
+
paymentNumber?: string | undefined;
|
|
17089
17094
|
}[];
|
|
17090
17095
|
listCompleted: boolean;
|
|
17091
17096
|
}>;
|
|
@@ -19925,6 +19930,7 @@ export declare const PaymentResponseSchema: z.ZodObject<{
|
|
|
19925
19930
|
subpaymentLocator: string;
|
|
19926
19931
|
}>, "many">>;
|
|
19927
19932
|
paymentMode: z.ZodOptional<z.ZodEnum<["normal", "aggregate"]>>;
|
|
19933
|
+
paymentNumber: z.ZodOptional<z.ZodString>;
|
|
19928
19934
|
locator: z.ZodString;
|
|
19929
19935
|
type: z.ZodString;
|
|
19930
19936
|
amount: z.ZodNumber;
|
|
@@ -19974,6 +19980,7 @@ export declare const PaymentResponseSchema: z.ZodObject<{
|
|
|
19974
19980
|
subpaymentLocator: string;
|
|
19975
19981
|
}[] | undefined;
|
|
19976
19982
|
aggregatePaymentLocator?: string | undefined;
|
|
19983
|
+
paymentNumber?: string | undefined;
|
|
19977
19984
|
}, {
|
|
19978
19985
|
locator: string;
|
|
19979
19986
|
type: string;
|
|
@@ -20010,6 +20017,7 @@ export declare const PaymentResponseSchema: z.ZodObject<{
|
|
|
20010
20017
|
subpaymentLocator: string;
|
|
20011
20018
|
}[] | undefined;
|
|
20012
20019
|
aggregatePaymentLocator?: string | undefined;
|
|
20020
|
+
paymentNumber?: string | undefined;
|
|
20013
20021
|
}>;
|
|
20014
20022
|
|
|
20015
20023
|
export declare type PaymentStateEnum = z.infer<typeof PaymentStateEnumSchema>;
|
package/dist/index.es.js
CHANGED
|
@@ -12199,7 +12199,8 @@ const Bg = e.object({
|
|
|
12199
12199
|
shortfallCreditLocators: e.string().array().optional(),
|
|
12200
12200
|
validationResult: x.optional(),
|
|
12201
12201
|
subpayments: e.array(Wu).optional(),
|
|
12202
|
-
paymentMode: Bi.optional()
|
|
12202
|
+
paymentMode: Bi.optional(),
|
|
12203
|
+
paymentNumber: e.string().optional()
|
|
12203
12204
|
}), Ug = _(Qu);
|
|
12204
12205
|
export {
|
|
12205
12206
|
di as AbsoluteEnum,
|