@erp-galoper/types 1.0.924 → 1.0.926

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 +40 -8
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -33693,7 +33693,11 @@ export interface components {
33693
33693
  discount: number;
33694
33694
  /**
33695
33695
  * Taxes
33696
- * @description visible when supplier is resident
33696
+ * @description
33697
+ * - visible when supplier is resident
33698
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
33699
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
33700
+ *
33697
33701
  */
33698
33702
  taxes?: number[] | null;
33699
33703
  };
@@ -33750,7 +33754,11 @@ export interface components {
33750
33754
  notes: string | null;
33751
33755
  /**
33752
33756
  * Tax
33753
- * @description tax id, visible when supplier is not resident
33757
+ * @description
33758
+ * - tax id
33759
+ * - visible when supplier is not resident
33760
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
33761
+ *
33754
33762
  */
33755
33763
  tax?: number;
33756
33764
  /**
@@ -34235,7 +34243,11 @@ export interface components {
34235
34243
  discount: number;
34236
34244
  /**
34237
34245
  * Taxes
34238
- * @description visible when supplier is resident
34246
+ * @description
34247
+ * - visible when supplier is resident
34248
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
34249
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
34250
+ *
34239
34251
  */
34240
34252
  taxes?: number[] | null;
34241
34253
  };
@@ -34297,7 +34309,11 @@ export interface components {
34297
34309
  notes: string | null;
34298
34310
  /**
34299
34311
  * Tax
34300
- * @description tax id, visible when supplier is not resident
34312
+ * @description
34313
+ * - tax id
34314
+ * - visible when supplier is not resident
34315
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
34316
+ *
34301
34317
  */
34302
34318
  tax?: number;
34303
34319
  /**
@@ -35243,7 +35259,11 @@ export interface components {
35243
35259
  warehouse: number | null;
35244
35260
  /**
35245
35261
  * Tax
35246
- * @description tax id, visible when supplier is not resident
35262
+ * @description
35263
+ * - tax id
35264
+ * - visible when supplier is not resident
35265
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
35266
+ *
35247
35267
  */
35248
35268
  tax?: number;
35249
35269
  /**
@@ -35306,7 +35326,11 @@ export interface components {
35306
35326
  discount: number;
35307
35327
  /**
35308
35328
  * Taxes
35309
- * @description visible when supplier is resident, Call the taxes endpoint to get a list of taxes. Filter for taxes with type `purchase.` The default taxes should come from the item taxes in each row.
35329
+ * @description
35330
+ * - visible when supplier is resident
35331
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
35332
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
35333
+ *
35310
35334
  */
35311
35335
  taxes: number[];
35312
35336
  };
@@ -35362,7 +35386,11 @@ export interface components {
35362
35386
  discount: number;
35363
35387
  /**
35364
35388
  * Taxes
35365
- * @description visible when supplier is resident', List of tax IDs, hit the taxes endpoint to get the list of taxes
35389
+ * @description
35390
+ * - visible when supplier is resident
35391
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
35392
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
35393
+ *
35366
35394
  */
35367
35395
  taxes: number[];
35368
35396
  };
@@ -35427,7 +35455,11 @@ export interface components {
35427
35455
  warehouse: number | null;
35428
35456
  /**
35429
35457
  * Tax
35430
- * @description tax id, visible when supplier is not resident
35458
+ * @description
35459
+ * - tax id
35460
+ * - visible when supplier is not resident
35461
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals purchase
35462
+ *
35431
35463
  */
35432
35464
  tax?: number;
35433
35465
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.924",
3
+ "version": "1.0.926",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],