@erp-galoper/types 1.0.927 → 1.0.928

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 +12 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -33974,7 +33974,10 @@ export interface components {
33974
33974
  discount: number;
33975
33975
  /**
33976
33976
  * Tax
33977
- * @description visible when entity is not resident
33977
+ * @description
33978
+ * - visible when entity is not resident
33979
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase or sale with respect to document
33980
+ *
33978
33981
  */
33979
33982
  tax?: number;
33980
33983
  /** Items */
@@ -40146,6 +40149,10 @@ export interface components {
40146
40149
  promotionsAndOffers?: string[];
40147
40150
  /**
40148
40151
  * Taxes
40152
+ * @description
40153
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
40154
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals sales
40155
+ *
40149
40156
  * @default []
40150
40157
  */
40151
40158
  taxes: number[];
@@ -40176,7 +40183,10 @@ export interface components {
40176
40183
  discount: number;
40177
40184
  /**
40178
40185
  * Tax
40179
- * @description tax id
40186
+ * @description
40187
+ * - tax id
40188
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
40189
+ *
40180
40190
  */
40181
40191
  tax?: number;
40182
40192
  /** Items */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.927",
3
+ "version": "1.0.928",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],