@erp-galoper/types 1.0.1881 → 1.0.1883
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/openapi.ts +18 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -62044,6 +62044,15 @@ export interface components {
|
|
|
62044
62044
|
ExpensePaidByEnum: "employee" | "company";
|
|
62045
62045
|
/** ExpenseVoucherDetailWithItemResponseSchema */
|
|
62046
62046
|
ExpenseVoucherDetailWithItemResponseSchema: {
|
|
62047
|
+
/**
|
|
62048
|
+
* Datecreated
|
|
62049
|
+
* Format: date-time
|
|
62050
|
+
*/
|
|
62051
|
+
dateCreated: string;
|
|
62052
|
+
/** Datemodified */
|
|
62053
|
+
dateModified: string | null;
|
|
62054
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
62055
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
62047
62056
|
/**
|
|
62048
62057
|
* Id
|
|
62049
62058
|
* Format: uuid
|
|
@@ -62495,6 +62504,15 @@ export interface components {
|
|
|
62495
62504
|
};
|
|
62496
62505
|
/** ExpenseVoucherDetailSchema */
|
|
62497
62506
|
ExpenseVoucherDetailSchema: {
|
|
62507
|
+
/**
|
|
62508
|
+
* Datecreated
|
|
62509
|
+
* Format: date-time
|
|
62510
|
+
*/
|
|
62511
|
+
dateCreated: string;
|
|
62512
|
+
/** Datemodified */
|
|
62513
|
+
dateModified: string | null;
|
|
62514
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
62515
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
62498
62516
|
/**
|
|
62499
62517
|
* Id
|
|
62500
62518
|
* Format: uuid
|