@erp-galoper/types 1.0.102 → 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 +33 -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;
@@ -16425,6 +16431,7 @@ export interface paths {
16425
16431
  * Responses:
16426
16432
  * - 200: SalesReturnOrderTotalCalculationResponse
16427
16433
  * - 400: - "salesInvoiceItemDoesNotExist"
16434
+ * - customerDoesNotExist
16428
16435
  * - "calculationError"
16429
16436
  * - 500: "internalServerError"
16430
16437
  */
@@ -16659,6 +16666,7 @@ export interface paths {
16659
16666
  * Responses:
16660
16667
  * - 200: SalesReturnInvoiceTotalCalculationResponse
16661
16668
  * - 400: - "salesInvoiceItemDoesNotExist"
16669
+ * - customerDoesNotExist
16662
16670
  * - "calculationError"
16663
16671
  * - 500: "internalServerError"
16664
16672
  */
@@ -26481,7 +26489,7 @@ export interface components {
26481
26489
  /**
26482
26490
  * Id
26483
26491
  * Format: uuid
26484
- * @example f4c0ba67-3c58-4e67-921f-0b7f43c201bb
26492
+ * @example b6762932-03c2-42f6-9e08-963ed5020d1d
26485
26493
  */
26486
26494
  id: string;
26487
26495
  /**
@@ -31687,6 +31695,8 @@ export interface components {
31687
31695
  linkedDocuments?: {
31688
31696
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
31689
31697
  }[];
31698
+ /** @description visible when supplier is not resident */
31699
+ tax: components["schemas"]["TaxSharedSchema"] | null;
31690
31700
  /**
31691
31701
  * Items
31692
31702
  * @default []
@@ -31876,6 +31886,8 @@ export interface components {
31876
31886
  usdTotal: number;
31877
31887
  /** Companytotal */
31878
31888
  companyTotal?: number | null;
31889
+ /** @description visible when supplier is not resident */
31890
+ tax?: components["schemas"]["TaxSharedSchema"];
31879
31891
  /** Items */
31880
31892
  items: components["schemas"]["ReturnPurchaseOrderItemTotalCalculated"][];
31881
31893
  };
@@ -33140,6 +33152,8 @@ export interface components {
33140
33152
  /** Candelete */
33141
33153
  canDelete: boolean;
33142
33154
  reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
33155
+ /** @description visible when supplier is not resident */
33156
+ tax: components["schemas"]["TaxSharedSchema"] | null;
33143
33157
  /** Linkeddocuments */
33144
33158
  linkedDocuments?: {
33145
33159
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
@@ -33311,6 +33325,8 @@ export interface components {
33311
33325
  /** Candelete */
33312
33326
  canDelete: boolean;
33313
33327
  reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
33328
+ /** @description visible when supplier is not resident */
33329
+ tax: components["schemas"]["TaxSharedSchema"] | null;
33314
33330
  };
33315
33331
  /** ReturnPurchaseInvoiceItemTotalCalculated */
33316
33332
  ReturnPurchaseInvoiceItemTotalCalculated: {
@@ -33343,6 +33359,8 @@ export interface components {
33343
33359
  usdTotal: number;
33344
33360
  /** Companytotal */
33345
33361
  companyTotal?: number | null;
33362
+ /** @description visible when supplier is not resident */
33363
+ tax?: components["schemas"]["TaxSharedSchema"];
33346
33364
  /** Items */
33347
33365
  items: components["schemas"]["ReturnPurchaseInvoiceItemTotalCalculated"][];
33348
33366
  };
@@ -40769,6 +40787,8 @@ export interface components {
40769
40787
  canDelete: boolean;
40770
40788
  /** Canconvert */
40771
40789
  canConvert: boolean;
40790
+ /** @description visible when customer is not resident */
40791
+ tax: components["schemas"]["TaxSharedSchema"] | null;
40772
40792
  /**
40773
40793
  * Items
40774
40794
  * @default []
@@ -40928,6 +40948,8 @@ export interface components {
40928
40948
  canDelete: boolean;
40929
40949
  /** Canconvert */
40930
40950
  canConvert: boolean;
40951
+ /** @description visible when customer is not resident */
40952
+ tax: components["schemas"]["TaxSharedSchema"] | null;
40931
40953
  };
40932
40954
  /** SalesReturnOrderItemTotalCalculated */
40933
40955
  SalesReturnOrderItemTotalCalculated: {
@@ -40960,6 +40982,8 @@ export interface components {
40960
40982
  secondaryTotal: string;
40961
40983
  /** Companytotal */
40962
40984
  companyTotal?: string | null;
40985
+ /** @description visible when customer is not resident */
40986
+ tax?: components["schemas"]["TaxSharedSchema"];
40963
40987
  /** Items */
40964
40988
  items: components["schemas"]["SalesReturnOrderItemTotalCalculated"][];
40965
40989
  };
@@ -41129,6 +41153,8 @@ export interface components {
41129
41153
  companyTotal: string;
41130
41154
  /** Candelete */
41131
41155
  canDelete: boolean;
41156
+ /** @description visible when customer is not resident */
41157
+ tax: components["schemas"]["TaxSharedSchema"] | null;
41132
41158
  /**
41133
41159
  * Items
41134
41160
  * @default []
@@ -41286,6 +41312,8 @@ export interface components {
41286
41312
  companyTotal: string;
41287
41313
  /** Candelete */
41288
41314
  canDelete: boolean;
41315
+ /** @description visible when customer is not resident */
41316
+ tax: components["schemas"]["TaxSharedSchema"] | null;
41289
41317
  };
41290
41318
  /** SalesReturnInvoiceItemTotalCalculated */
41291
41319
  SalesReturnInvoiceItemTotalCalculated: {
@@ -41318,6 +41346,8 @@ export interface components {
41318
41346
  secondaryTotal: string;
41319
41347
  /** Companytotal */
41320
41348
  companyTotal?: string | null;
41349
+ /** @description visible when customer is not resident */
41350
+ tax?: components["schemas"]["TaxSharedSchema"];
41321
41351
  /** Items */
41322
41352
  items: components["schemas"]["SalesReturnInvoiceItemTotalCalculated"][];
41323
41353
  };
@@ -65096,7 +65126,7 @@ export interface operations {
65096
65126
  [name: string]: unknown;
65097
65127
  };
65098
65128
  content: {
65099
- "application/json": components["schemas"]["MessageWithCode"];
65129
+ "application/json": components["schemas"]["ErrorMessages"];
65100
65130
  };
65101
65131
  };
65102
65132
  /** @description Internal Server Error */
@@ -67063,7 +67093,7 @@ export interface operations {
67063
67093
  [name: string]: unknown;
67064
67094
  };
67065
67095
  content: {
67066
- "application/json": components["schemas"]["MessageWithCode"];
67096
+ "application/json": components["schemas"]["ErrorMessages"];
67067
67097
  };
67068
67098
  };
67069
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.102",
3
+ "version": "1.0.104",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],