@erp-galoper/types 1.0.73 → 1.0.75

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 +14 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20296,8 +20296,20 @@ export interface components {
20296
20296
  modifiedBy: components["schemas"]["RecordUserSchema"] | null;
20297
20297
  /** Id */
20298
20298
  id: number;
20299
+ user: components["schemas"]["UserSharedSchema"];
20299
20300
  dateFiltration: components["schemas"]["DateFiltration"] | null;
20300
20301
  };
20302
+ /** UserSharedSchema */
20303
+ UserSharedSchema: {
20304
+ /** Id */
20305
+ id: number;
20306
+ /** Firstname */
20307
+ firstName: string;
20308
+ /** Lastname */
20309
+ lastName: string;
20310
+ /** Username */
20311
+ username: string;
20312
+ };
20301
20313
  /**
20302
20314
  * BarcodeType
20303
20315
  * @enum {string}
@@ -26450,7 +26462,7 @@ export interface components {
26450
26462
  /**
26451
26463
  * Id
26452
26464
  * Format: uuid
26453
- * @example 55bd8d2b-4abc-4d1d-8507-1c54a4783cf1
26465
+ * @example 45bf3350-43e1-4af2-9286-a0c950a7ff36
26454
26466
  */
26455
26467
  id: string;
26456
26468
  /**
@@ -65455,7 +65467,7 @@ export interface operations {
65455
65467
  [name: string]: unknown;
65456
65468
  };
65457
65469
  content: {
65458
- "application/json": components["schemas"]["MessageResponse"];
65470
+ "application/json": components["schemas"]["ErrorMessages"];
65459
65471
  };
65460
65472
  };
65461
65473
  /** @description Forbidden */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.73",
3
+ "version": "1.0.75",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],