@erp-galoper/types 1.0.1877 → 1.0.1879

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.
Files changed (2) hide show
  1. package/openapi.ts +27 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -33395,6 +33395,15 @@ export interface components {
33395
33395
  CustomerForListSchema: {
33396
33396
  /** Isactive */
33397
33397
  isActive: boolean;
33398
+ /**
33399
+ * Datecreated
33400
+ * Format: date-time
33401
+ */
33402
+ dateCreated: string;
33403
+ /** Datemodified */
33404
+ dateModified: string | null;
33405
+ createdBy: components["schemas"]["RecordUserSchema"];
33406
+ modifiedBy: components["schemas"]["RecordUserSchema"] | null;
33398
33407
  /**
33399
33408
  * Id
33400
33409
  * Format: uuid
@@ -34382,6 +34391,15 @@ export interface components {
34382
34391
  isActive: boolean;
34383
34392
  /** Currencies */
34384
34393
  currencies: components["schemas"]["CommonCurrency"][];
34394
+ /**
34395
+ * Datecreated
34396
+ * Format: date-time
34397
+ */
34398
+ dateCreated: string;
34399
+ /** Datemodified */
34400
+ dateModified: string | null;
34401
+ createdBy: components["schemas"]["RecordUserSchema"];
34402
+ modifiedBy: components["schemas"]["RecordUserSchema"] | null;
34385
34403
  /**
34386
34404
  * Id
34387
34405
  * Format: uuid
@@ -39808,6 +39826,15 @@ export interface components {
39808
39826
  BanksOptions: "default" | "bankTransfer";
39809
39827
  /** GetBankForListSchema */
39810
39828
  GetBankForListSchema: {
39829
+ /**
39830
+ * Datecreated
39831
+ * Format: date-time
39832
+ */
39833
+ dateCreated: string;
39834
+ /** Datemodified */
39835
+ dateModified: string | null;
39836
+ createdBy: components["schemas"]["RecordUserSchema"];
39837
+ modifiedBy: components["schemas"]["RecordUserSchema"] | null;
39811
39838
  /** Id */
39812
39839
  id: number;
39813
39840
  /** Bankname */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1877",
3
+ "version": "1.0.1879",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],