@povio/openapi-codegen-cli 0.10.6 → 0.10.8

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.
@@ -1,4 +1,4 @@
1
- import { GenerateFile } from "../types/generate";
1
+ import { GenerateFile, Import } from "../types/generate";
2
2
  export declare const APP_REST_CLIENT_NAME = "AppRestClient";
3
3
  export declare const QUERY_OPTIONS_TYPES: {
4
4
  query: string;
@@ -11,6 +11,11 @@ export declare const TEMPLATE_IMPORTS: Record<string, {
11
11
  template: string;
12
12
  monorepoTemplate: string;
13
13
  }>;
14
+ export declare const ERROR_HANDLERS: {
15
+ ErrorHandler: string;
16
+ SharedErrorHandler: string;
17
+ };
18
+ export declare const ERROR_HANDLING_IMPORT: Import;
14
19
  export declare enum StandaloneAssetEnum {
15
20
  ReactQueryTypes = "reactQueryTypes",
16
21
  RestClient = "restClient",
@@ -29,6 +34,7 @@ export declare const ZOD_EXTENDED: {
29
34
  name: string;
30
35
  properties: {
31
36
  sortingString: string;
37
+ parse: string;
32
38
  };
33
39
  };
34
40
  export declare const ZOD_EXTENDED_FILE: GenerateFile;
@@ -0,0 +1,2 @@
1
+ import { SchemaResolver } from "../core/SchemaResolver.class";
2
+ export declare function generateZod(resolver: SchemaResolver): string;