@erp-galoper/types 1.0.1127 → 1.0.1128

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 +11 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -2190,6 +2190,8 @@ export interface paths {
2190
2190
  * Possible Responses:
2191
2191
  * - 200:
2192
2192
  * - list[DocumentTrackResponse]
2193
+ * - 400:
2194
+ * - invalidDocumentName
2193
2195
  * - 500:
2194
2196
  * - internalServerError
2195
2197
  */
@@ -53794,6 +53796,15 @@ export interface operations {
53794
53796
  "application/json": components["schemas"]["DocumentTrackResponse"][];
53795
53797
  };
53796
53798
  };
53799
+ /** @description Bad Request */
53800
+ 400: {
53801
+ headers: {
53802
+ [name: string]: unknown;
53803
+ };
53804
+ content: {
53805
+ "application/json": components["schemas"]["ErrorMessages"];
53806
+ };
53807
+ };
53797
53808
  /** @description Internal Server Error */
53798
53809
  500: {
53799
53810
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1127",
3
+ "version": "1.0.1128",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],