@povio/openapi-codegen-cli 0.15.2 → 0.15.4

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.
@@ -4,6 +4,9 @@ import { GenerateOptions } from "src/generators/types/options";
4
4
  import { Endpoint } from "src/generators/types/endpoint";
5
5
  export declare const getEndpointName: (endpoint: Endpoint) => string;
6
6
  export declare function getImportedEndpointName(endpoint: Endpoint, options: GenerateOptions): string;
7
+ export declare const requiresBody: (endpoint: Endpoint) => boolean;
8
+ export declare const getEndpointBody: (endpoint: Endpoint) => import("src/generators/types/endpoint").EndpointParameter | undefined;
9
+ export declare const hasEndpointConfig: (endpoint: Endpoint, resolver: SchemaResolver) => boolean | undefined;
7
10
  export declare const getEndpointPath: (endpoint: Endpoint) => string;
8
11
  export declare function getEndpointTag(endpoint: Endpoint, options: GenerateOptions): string;
9
12
  export declare function mapEndpointParamsToFunctionParams(resolver: SchemaResolver, endpoint: Endpoint, options?: {