@erp-galoper/types 1.0.1046 → 1.0.1047

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 +10 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -11529,6 +11529,7 @@ export interface paths {
11529
11529
  * - purchaseInvoiceItemDoesNotHaveUnitPackage
11530
11530
  * - purchaseInvoiceItemDoesNotExist
11531
11531
  * - returnedPurchaseInvoicesShouldBelongsToSameProject
11532
+ * - purchaseInvoiceWarehouseMismatchWithReturnInvoiceWarehouse
11532
11533
  *
11533
11534
  * - 403: - permissionDenied
11534
11535
  * - noBranchAccess
@@ -11613,6 +11614,7 @@ export interface paths {
11613
11614
  * - quantityIsRequired
11614
11615
  * - unitPackageIsRequired
11615
11616
  * - purchaseInvoiceItemDoesNotHaveUnitPackage
11617
+ * - purchaseInvoiceWarehouseMismatchWithReturnInvoiceWarehouse
11616
11618
  *
11617
11619
  * - 403: - permissionDenied
11618
11620
  * - noBranchAccess
@@ -37106,6 +37108,7 @@ export interface components {
37106
37108
  /** Referencenumber */
37107
37109
  referenceNumber?: string | null;
37108
37110
  department: components["schemas"]["DepartmentCommonSchema"];
37111
+ warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
37109
37112
  /** Usdrate */
37110
37113
  usdRate: number;
37111
37114
  /** Companyrate */
@@ -37180,7 +37183,7 @@ export interface components {
37180
37183
  * @description This field is required when updating an existing item
37181
37184
  */
37182
37185
  id?: string | null;
37183
- /** @description purchase invoices should be filtered by selected project, invoice approval status should be approved or not_required */
37186
+ /** @description purchase invoices should be filtered by selected project, invoice approval status should be approved or not_required and warehouse equals to {warehouse-id} if exist */
37184
37187
  purchaseInvoice: components["schemas"]["PurchaseInvoiceForReturnInvoiceCreateSchema"];
37185
37188
  /**
37186
37189
  * Quantity
@@ -37212,6 +37215,11 @@ export interface components {
37212
37215
  * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
37213
37216
  */
37214
37217
  project?: number;
37218
+ /**
37219
+ * Warehouse
37220
+ * @description This field is required if inventory settings require a warehouse.
37221
+ */
37222
+ warehouse?: number;
37215
37223
  /** Purchasereturnorder */
37216
37224
  purchaseReturnOrder?: string | null;
37217
37225
  /** Referencenumber */
@@ -37302,6 +37310,7 @@ export interface components {
37302
37310
  /** Referencenumber */
37303
37311
  referenceNumber?: string | null;
37304
37312
  department: components["schemas"]["DepartmentCommonSchema"];
37313
+ warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
37305
37314
  /** Usdrate */
37306
37315
  usdRate: number;
37307
37316
  /** Companyrate */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1046",
3
+ "version": "1.0.1047",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],