@erp-galoper/types 1.0.189 → 1.0.190

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 +4 -4
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26500,7 +26500,7 @@ export interface components {
26500
26500
  /**
26501
26501
  * Id
26502
26502
  * Format: uuid
26503
- * @example 15ed135e-e74a-453c-a0dd-76d9442363bb
26503
+ * @example 64db5466-f93a-4cb0-a652-ae87a9fb0ecf
26504
26504
  */
26505
26505
  id: string;
26506
26506
  /**
@@ -32271,7 +32271,7 @@ export interface components {
32271
32271
  /** Companytotal */
32272
32272
  companyTotal: number;
32273
32273
  /** Quantityreturned */
32274
- quantityReturned: number;
32274
+ quantityReturned?: number;
32275
32275
  /** Quantityreceived */
32276
32276
  quantityReceived?: number;
32277
32277
  };
@@ -32384,7 +32384,7 @@ export interface components {
32384
32384
  * Remaining
32385
32385
  * @description this field is number
32386
32386
  */
32387
- remaining: string;
32387
+ remaining?: string | null;
32388
32388
  /** Linkeddocuments */
32389
32389
  linkedDocuments?: {
32390
32390
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
@@ -40870,7 +40870,7 @@ export interface components {
40870
40870
  * Remaining
40871
40871
  * @description this field is number
40872
40872
  */
40873
- remaining?: string;
40873
+ remaining?: string | null;
40874
40874
  /**
40875
40875
  * Items
40876
40876
  * @default []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.189",
3
+ "version": "1.0.190",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],