@erp-galoper/types 1.0.1548 → 1.0.1550

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 +22 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -23565,7 +23565,7 @@ export interface components {
23565
23565
  * BasePermissionsSchema_Inventory_OpeningquantityEnum
23566
23566
  * @enum {string}
23567
23567
  */
23568
- BasePermissionsSchema_Inventory_OpeningquantityEnum: "add" | "approve" | "change" | "delete" | "resettodraft" | "view";
23568
+ BasePermissionsSchema_Inventory_OpeningquantityEnum: "add" | "approve" | "change" | "delete" | "export" | "print" | "resettodraft" | "view";
23569
23569
  /**
23570
23570
  * BasePermissionsSchema_Inventory_PackageEnum
23571
23571
  * @enum {string}
@@ -23590,7 +23590,7 @@ export interface components {
23590
23590
  * BasePermissionsSchema_Inventory_StockadjustmentEnum
23591
23591
  * @enum {string}
23592
23592
  */
23593
- BasePermissionsSchema_Inventory_StockadjustmentEnum: "add" | "approve" | "change" | "delete" | "resettodraft" | "view";
23593
+ BasePermissionsSchema_Inventory_StockadjustmentEnum: "add" | "approve" | "change" | "delete" | "export" | "print" | "resettodraft" | "view";
23594
23594
  /**
23595
23595
  * BasePermissionsSchema_Inventory_TransferrequestEnum
23596
23596
  * @enum {string}
@@ -49953,8 +49953,7 @@ export interface components {
49953
49953
  */
49954
49954
  id: string;
49955
49955
  appliesOn: components["schemas"]["PurchaseCreditNoteAppliesOn"];
49956
- /** Purchaseinvoiceitem */
49957
- purchaseInvoiceItem: string | null;
49956
+ purchaseInvoiceItem: components["schemas"]["PurchaseInvoiceItem"] | null;
49958
49957
  /** Unitprice */
49959
49958
  unitPrice: number | null;
49960
49959
  /** Discount */
@@ -50023,6 +50022,15 @@ export interface components {
50023
50022
  */
50024
50023
  entries: components["schemas"]["PostEntryDetailsSchema"][];
50025
50024
  };
50025
+ /** PurchaseInvoiceItem */
50026
+ PurchaseInvoiceItem: {
50027
+ /**
50028
+ * Id
50029
+ * Format: uuid
50030
+ */
50031
+ id: string;
50032
+ item: components["schemas"]["ItemMinimalSchema"] | null;
50033
+ };
50026
50034
  /** PurchaseCreditNoteCreateSchema */
50027
50035
  PurchaseCreditNoteCreateSchema: {
50028
50036
  /** Password */
@@ -53968,8 +53976,7 @@ export interface components {
53968
53976
  */
53969
53977
  id: string;
53970
53978
  appliesOn: components["schemas"]["SalesCreditNoteAppliesOn"];
53971
- /** Salesinvoiceitem */
53972
- salesInvoiceItem: string | null;
53979
+ salesInvoiceItem: components["schemas"]["SalesInvoiceItem"] | null;
53973
53980
  /** Unitprice */
53974
53981
  unitPrice: number | null;
53975
53982
  /** Discount */
@@ -54037,6 +54044,15 @@ export interface components {
54037
54044
  */
54038
54045
  entries: components["schemas"]["PostEntryDetailsSchema"][];
54039
54046
  };
54047
+ /** SalesInvoiceItem */
54048
+ SalesInvoiceItem: {
54049
+ /**
54050
+ * Id
54051
+ * Format: uuid
54052
+ */
54053
+ id: string;
54054
+ item: components["schemas"]["ItemMinimalSchema"] | null;
54055
+ };
54040
54056
  /** SalesCreditNoteCreateSchema */
54041
54057
  SalesCreditNoteCreateSchema: {
54042
54058
  /** Password */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1548",
3
+ "version": "1.0.1550",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],