@erp-galoper/types 1.0.1546 → 1.0.1547

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 +42 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -39726,6 +39726,12 @@ export interface components {
39726
39726
  /** Unitprice */
39727
39727
  unitPrice: number;
39728
39728
  itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
39729
+ /**
39730
+ * Includetaxinunitprice
39731
+ * @description If true, the unit price includes tax and will be extracted to calculate the base price
39732
+ * @default false
39733
+ */
39734
+ includeTaxInUnitPrice: boolean;
39729
39735
  /** Discount */
39730
39736
  discount?: number | null;
39731
39737
  /** Subtotal */
@@ -40333,6 +40339,12 @@ export interface components {
40333
40339
  /** Unitprice */
40334
40340
  unitPrice: number;
40335
40341
  itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
40342
+ /**
40343
+ * Includetaxinunitprice
40344
+ * @description If true, the unit price includes tax and will be extracted to calculate the base price
40345
+ * @default false
40346
+ */
40347
+ includeTaxInUnitPrice: boolean;
40336
40348
  /** Discount */
40337
40349
  discount?: number | null;
40338
40350
  /** Subtotal */
@@ -41411,6 +41423,12 @@ export interface components {
41411
41423
  /** Unitprice */
41412
41424
  unitPrice: number;
41413
41425
  itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
41426
+ /**
41427
+ * Includetaxinunitprice
41428
+ * @description If true, the unit price includes tax and will be extracted to calculate the base price
41429
+ * @default false
41430
+ */
41431
+ includeTaxInUnitPrice: boolean;
41414
41432
  /** Discount */
41415
41433
  discount: number;
41416
41434
  /** Taxes */
@@ -41831,6 +41849,12 @@ export interface components {
41831
41849
  * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
41832
41850
  */
41833
41851
  taxes: number[];
41852
+ /**
41853
+ * Includetaxinunitprice
41854
+ * @description If true, the unit price includes tax and will be extracted to calculate the base price
41855
+ * @default false
41856
+ */
41857
+ includeTaxInUnitPrice: boolean;
41834
41858
  };
41835
41859
  /** PurchaseInvoiceUpdateSchema */
41836
41860
  PurchaseInvoiceUpdateSchema: {
@@ -46716,6 +46740,12 @@ export interface components {
46716
46740
  * @description - This field is a number.
46717
46741
  */
46718
46742
  packageDepositCharge: string | null;
46743
+ /**
46744
+ * Includetaxinunitprice
46745
+ * @description If true, the unit price includes tax and will be extracted to calculate the base price
46746
+ * @default false
46747
+ */
46748
+ includeTaxInUnitPrice: boolean;
46719
46749
  /**
46720
46750
  * Discount
46721
46751
  * @default 0
@@ -48917,6 +48947,12 @@ export interface components {
48917
48947
  * @description This field is a number representing the deposit charge for the selected package, if applicable.
48918
48948
  */
48919
48949
  packageDepositCharge: string | null;
48950
+ /**
48951
+ * Includetaxinunitprice
48952
+ * @description If true, the unit price includes tax and will be extracted to calculate the base price
48953
+ * @default false
48954
+ */
48955
+ includeTaxInUnitPrice: boolean;
48920
48956
  /**
48921
48957
  * Discount
48922
48958
  * @description The discount percentage applied to the item.
@@ -50798,6 +50834,12 @@ export interface components {
50798
50834
  * @description This field is a number representing the deposit charge for the selected package, if applicable.
50799
50835
  */
50800
50836
  packageDepositCharge?: string | null;
50837
+ /**
50838
+ * Includetaxinunitprice
50839
+ * @description If true, the unit price includes tax and will be extracted to calculate the base price
50840
+ * @default false
50841
+ */
50842
+ includeTaxInUnitPrice: boolean;
50801
50843
  /**
50802
50844
  * Discount
50803
50845
  * @description The discount percentage applied to the item.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1546",
3
+ "version": "1.0.1547",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],