@erp-galoper/types 1.0.1430 → 1.0.1431

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
@@ -31275,7 +31275,7 @@ export interface components {
31275
31275
  approvalStatus: components["schemas"]["ApprovalValueChoices"];
31276
31276
  /** Serialnumber */
31277
31277
  serialNumber: string;
31278
- warehouse: components["schemas"]["WarehouseSummaryInfo"];
31278
+ warehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31279
31279
  branch: components["schemas"]["BranchSummaryInfo"];
31280
31280
  /** Description */
31281
31281
  description?: string | null;
@@ -31287,6 +31287,18 @@ export interface components {
31287
31287
  */
31288
31288
  details: components["schemas"]["OpeningQuantityDetailsSchema"][];
31289
31289
  };
31290
+ /** RetrieveWarehouseForOpeningQuantity */
31291
+ RetrieveWarehouseForOpeningQuantity: {
31292
+ /** Id */
31293
+ id: number;
31294
+ /** Name */
31295
+ name: string;
31296
+ /** Country */
31297
+ country: string;
31298
+ cityId: components["schemas"]["RetrieveCity"];
31299
+ /** Address */
31300
+ address: string;
31301
+ };
31290
31302
  /** CreateOpeningQuantityItemSchema */
31291
31303
  CreateOpeningQuantityItemSchema: {
31292
31304
  /**
@@ -31381,7 +31393,7 @@ export interface components {
31381
31393
  approvalStatus: components["schemas"]["ApprovalValueChoices"];
31382
31394
  /** Serialnumber */
31383
31395
  serialNumber: string;
31384
- warehouse: components["schemas"]["WarehouseSummaryInfo"];
31396
+ warehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31385
31397
  branch: components["schemas"]["BranchSummaryInfo"];
31386
31398
  /** Description */
31387
31399
  description?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1430",
3
+ "version": "1.0.1431",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],