@erp-galoper/types 1.0.74 → 1.0.76

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 +13 -5
  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 257f1e35-bb3f-4dee-9a9b-087193d63a8a
26465
+ * @example 7dd5b729-ed70-4e0a-a351-49676f0dd765
26454
26466
  */
26455
26467
  id: string;
26456
26468
  /**
@@ -28429,10 +28441,6 @@ export interface components {
28429
28441
  *
28430
28442
  */
28431
28443
  deferredSales?: number;
28432
- /** Usdrate */
28433
- usdRate: number;
28434
- /** Companyrate */
28435
- companyRate: number;
28436
28444
  };
28437
28445
  /** ListTaxes */
28438
28446
  ListTaxes: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],