@erp-galoper/types 1.0.926 → 1.0.927

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 +30 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -40596,7 +40596,11 @@ export interface components {
40596
40596
  discount: number;
40597
40597
  /**
40598
40598
  * Taxes
40599
- * @description visible when customer is resident
40599
+ * @description
40600
+ * - visible when customer is resident
40601
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
40602
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals sales
40603
+ *
40600
40604
  * @default []
40601
40605
  */
40602
40606
  taxes: number[];
@@ -40708,7 +40712,11 @@ export interface components {
40708
40712
  notes?: string;
40709
40713
  /**
40710
40714
  * Tax
40711
- * @description tax id, visible when customer is not resident
40715
+ * @description
40716
+ * - tax id
40717
+ * - visible when customer is not resident
40718
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
40719
+ *
40712
40720
  */
40713
40721
  tax?: number;
40714
40722
  /** Items */
@@ -42835,7 +42843,11 @@ export interface components {
42835
42843
  discount: number;
42836
42844
  /**
42837
42845
  * Taxes
42838
- * @description visible when customer is resident
42846
+ * @description
42847
+ * - visible when customer is resident
42848
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
42849
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals sales
42850
+ *
42839
42851
  * @default []
42840
42852
  */
42841
42853
  taxes: number[];
@@ -42966,7 +42978,11 @@ export interface components {
42966
42978
  notes?: string;
42967
42979
  /**
42968
42980
  * Tax
42969
- * @description tax id, visible when customer is not resident
42981
+ * @description
42982
+ * - tax id
42983
+ * - visible when customer is not resident
42984
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
42985
+ *
42970
42986
  */
42971
42987
  tax?: number;
42972
42988
  /**
@@ -44518,7 +44534,11 @@ export interface components {
44518
44534
  discount: number;
44519
44535
  /**
44520
44536
  * Taxes
44521
- * @description visible when customer is resident
44537
+ * @description
44538
+ * - visible when customer is resident
44539
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
44540
+ * - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals sales
44541
+ *
44522
44542
  * @default []
44523
44543
  */
44524
44544
  taxes: number[];
@@ -44691,7 +44711,11 @@ export interface components {
44691
44711
  items: components["schemas"]["CreateUpdateSalesInvoiceItemSchema"][];
44692
44712
  /**
44693
44713
  * Tax
44694
- * @description tax id, visible when customer is not resident
44714
+ * @description
44715
+ * - tax id
44716
+ * - visible when customer is not resident
44717
+ * - get taxes from /api/v1/settings/accounting/taxes/ and filter by type equals sales
44718
+ *
44695
44719
  */
44696
44720
  tax?: number;
44697
44721
  paymentTerms: components["schemas"]["PaymentTermsCreateSchema"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.926",
3
+ "version": "1.0.927",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],