@erp-galoper/types 1.0.103 → 1.0.104

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 +19 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -10428,6 +10428,9 @@ export interface paths {
10428
10428
  /**
10429
10429
  * Calculate Totals Endpoint
10430
10430
  * @description Endpoint for calculating the totals of a purchase return order (per item and total)
10431
+ * Responses:
10432
+ * -400:
10433
+ * - supplierDoesNotExist
10431
10434
  */
10432
10435
  post: operations["purchase_return_order_views_calculate_totals_endpoint"];
10433
10436
  delete?: never;
@@ -11430,6 +11433,9 @@ export interface paths {
11430
11433
  /**
11431
11434
  * Calculate Totals Endpoint
11432
11435
  * @description Endpoint for calculating the totals of a purchase return order (per item and total)
11436
+ * Responses:
11437
+ * - 400 :
11438
+ * - supplierDoesNotExist
11433
11439
  */
11434
11440
  post: operations["purchase_return_invoice_views_calculate_totals_endpoint"];
11435
11441
  delete?: never;
@@ -26483,7 +26489,7 @@ export interface components {
26483
26489
  /**
26484
26490
  * Id
26485
26491
  * Format: uuid
26486
- * @example cace6a38-012f-46a0-8abc-278e730c25c2
26492
+ * @example b6762932-03c2-42f6-9e08-963ed5020d1d
26487
26493
  */
26488
26494
  id: string;
26489
26495
  /**
@@ -31689,6 +31695,8 @@ export interface components {
31689
31695
  linkedDocuments?: {
31690
31696
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
31691
31697
  }[];
31698
+ /** @description visible when supplier is not resident */
31699
+ tax: components["schemas"]["TaxSharedSchema"] | null;
31692
31700
  /**
31693
31701
  * Items
31694
31702
  * @default []
@@ -31878,6 +31886,8 @@ export interface components {
31878
31886
  usdTotal: number;
31879
31887
  /** Companytotal */
31880
31888
  companyTotal?: number | null;
31889
+ /** @description visible when supplier is not resident */
31890
+ tax?: components["schemas"]["TaxSharedSchema"];
31881
31891
  /** Items */
31882
31892
  items: components["schemas"]["ReturnPurchaseOrderItemTotalCalculated"][];
31883
31893
  };
@@ -33142,6 +33152,8 @@ export interface components {
33142
33152
  /** Candelete */
33143
33153
  canDelete: boolean;
33144
33154
  reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
33155
+ /** @description visible when supplier is not resident */
33156
+ tax: components["schemas"]["TaxSharedSchema"] | null;
33145
33157
  /** Linkeddocuments */
33146
33158
  linkedDocuments?: {
33147
33159
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
@@ -33313,6 +33325,8 @@ export interface components {
33313
33325
  /** Candelete */
33314
33326
  canDelete: boolean;
33315
33327
  reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
33328
+ /** @description visible when supplier is not resident */
33329
+ tax: components["schemas"]["TaxSharedSchema"] | null;
33316
33330
  };
33317
33331
  /** ReturnPurchaseInvoiceItemTotalCalculated */
33318
33332
  ReturnPurchaseInvoiceItemTotalCalculated: {
@@ -33345,6 +33359,8 @@ export interface components {
33345
33359
  usdTotal: number;
33346
33360
  /** Companytotal */
33347
33361
  companyTotal?: number | null;
33362
+ /** @description visible when supplier is not resident */
33363
+ tax?: components["schemas"]["TaxSharedSchema"];
33348
33364
  /** Items */
33349
33365
  items: components["schemas"]["ReturnPurchaseInvoiceItemTotalCalculated"][];
33350
33366
  };
@@ -65110,7 +65126,7 @@ export interface operations {
65110
65126
  [name: string]: unknown;
65111
65127
  };
65112
65128
  content: {
65113
- "application/json": components["schemas"]["MessageWithCode"];
65129
+ "application/json": components["schemas"]["ErrorMessages"];
65114
65130
  };
65115
65131
  };
65116
65132
  /** @description Internal Server Error */
@@ -67077,7 +67093,7 @@ export interface operations {
67077
67093
  [name: string]: unknown;
67078
67094
  };
67079
67095
  content: {
67080
- "application/json": components["schemas"]["MessageWithCode"];
67096
+ "application/json": components["schemas"]["ErrorMessages"];
67081
67097
  };
67082
67098
  };
67083
67099
  /** @description Internal Server Error */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.103",
3
+ "version": "1.0.104",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],