@socotra/ec-react-schemas 2.10.0-next.3 → 2.10.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 +10 -0
- package/dist/index.es.js +387 -376
- 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
|
@@ -3740,6 +3740,8 @@ export declare type CreditItem = z.infer<typeof creditItemSchema>;
|
|
|
3740
3740
|
|
|
3741
3741
|
export declare type CreditItemContainerTypeEnum = z.infer<typeof creditItemContainerTypeEnumSchema>;
|
|
3742
3742
|
|
|
3743
|
+
export declare const CreditItemContainerTypeEnumSchema: z.ZodEnum<["invoice", "account"]>;
|
|
3744
|
+
|
|
3743
3745
|
export declare const creditItemContainerTypeEnumSchema: z.ZodEnum<["invoice", "account"]>;
|
|
3744
3746
|
|
|
3745
3747
|
export declare const creditItemSchema: z.ZodObject<{
|
|
@@ -6920,6 +6922,12 @@ export declare const DeploymentMetadataSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
6920
6922
|
latestVersion: string;
|
|
6921
6923
|
}>;
|
|
6922
6924
|
|
|
6925
|
+
export declare type DisbursementId = z.infer<typeof DisbursementIdSchema>;
|
|
6926
|
+
|
|
6927
|
+
export declare const DisbursementIdSchema: z.ZodString;
|
|
6928
|
+
|
|
6929
|
+
export declare const DisbursementStateEnumSchema: z.ZodEnum<["draft", "validated", "approved", "executed", "reversed", "rejected", "discarded"]>;
|
|
6930
|
+
|
|
6923
6931
|
export declare type DocumentFormatEnum = z.infer<typeof DocumentFormatEnumSchema>;
|
|
6924
6932
|
|
|
6925
6933
|
export declare const DocumentFormatEnumSchema: z.ZodEnum<["text", "html", "pdf", "jpg", "jpeg", "doc", "docx", "xls", "xlsx", "csv", "txt", "zip"]>;
|
|
@@ -21330,6 +21338,8 @@ export declare const transactionCategoryEnumSchema: z.ZodEnum<["issuance", "chan
|
|
|
21330
21338
|
|
|
21331
21339
|
export declare type TransactionMethodEnum = z.infer<typeof transactionMethodEnumSchema>;
|
|
21332
21340
|
|
|
21341
|
+
export declare const TransactionMethodEnumSchema: z.ZodEnum<["ach", "cash", "eft", "standard", "wire"]>;
|
|
21342
|
+
|
|
21333
21343
|
export declare const transactionMethodEnumSchema: z.ZodEnum<["ach", "cash", "eft", "standard", "wire"]>;
|
|
21334
21344
|
|
|
21335
21345
|
export declare type TransactionPriceResponse = z.infer<typeof transactionPriceResponseSchema>;
|