@erp-galoper/types 1.0.618 → 1.0.620

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 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -16733,6 +16733,7 @@ export interface paths {
16733
16733
  * - "salesInvoiceItemDoesNotExist"
16734
16734
  * - SalesInvoicesShouldHaveSameGlobalTaxRate
16735
16735
  * - cannotReturnDeferredInvoice
16736
+ * - projectDoesNotExist
16736
16737
  *
16737
16738
  * - 403: - "permissionDenied"
16738
16739
  * - "noModuleAccess"
@@ -16810,6 +16811,8 @@ export interface paths {
16810
16811
  * - "SalesReturnInvoiceShouldBeDraft"
16811
16812
  * - SalesInvoicesShouldHaveSameGlobalTaxRate
16812
16813
  * - cannotReturnDeferredInvoice
16814
+ * - projectDoesNotExist
16815
+ *
16813
16816
  * - 403: - "permissionDenied"
16814
16817
  * - "noModuleAccess"
16815
16818
  * - "noBranchAccess"
@@ -27570,7 +27573,7 @@ export interface components {
27570
27573
  /**
27571
27574
  * Id
27572
27575
  * Format: uuid
27573
- * @example 95c59e48-b125-4a5d-b4b1-0ce4ad7f21bf
27576
+ * @example 43bf34c3-7e20-404b-8ea1-ebf3f567e14d
27574
27577
  */
27575
27578
  id: string;
27576
27579
  /**
@@ -44563,8 +44566,6 @@ export interface components {
44563
44566
  * @default 0
44564
44567
  */
44565
44568
  companyTotal: string;
44566
- /** @description visible when project module is active */
44567
- project: components["schemas"]["ProjectSummaryInfo"] | null;
44568
44569
  };
44569
44570
  /** SalesReturnInvoiceSchema */
44570
44571
  SalesReturnInvoiceSchema: {
@@ -44631,6 +44632,8 @@ export interface components {
44631
44632
  canDelete: boolean;
44632
44633
  /** @description visible when customer is not resident */
44633
44634
  tax: components["schemas"]["TaxSharedSchema"] | null;
44635
+ /** @description visible when project module is active */
44636
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
44634
44637
  /**
44635
44638
  * Items
44636
44639
  * @default []
@@ -44655,6 +44658,7 @@ export interface components {
44655
44658
  * @description This field is required when updating an existing item.
44656
44659
  */
44657
44660
  id?: string;
44661
+ /** @description sales invoices should be filtered by selected project */
44658
44662
  salesInvoice: components["schemas"]["SalesInvoiceForReturnInvoiceCreateSchema"];
44659
44663
  /**
44660
44664
  * Quantity
@@ -44679,6 +44683,11 @@ export interface components {
44679
44683
  customer?: number;
44680
44684
  /** Password */
44681
44685
  password?: string;
44686
+ /**
44687
+ * Project
44688
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
44689
+ */
44690
+ project?: number;
44682
44691
  /**
44683
44692
  * Date
44684
44693
  * Format: date
@@ -44814,6 +44823,8 @@ export interface components {
44814
44823
  canDelete: boolean;
44815
44824
  /** @description visible when customer is not resident */
44816
44825
  tax: components["schemas"]["TaxSharedSchema"] | null;
44826
+ /** @description visible when project module is active */
44827
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
44817
44828
  };
44818
44829
  /** SalesReturnInvoiceItemTotalCalculated */
44819
44830
  SalesReturnInvoiceItemTotalCalculated: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.618",
3
+ "version": "1.0.620",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],