@povio/openapi-codegen-cli 0.3.2 → 0.3.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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RESERVED_WORDS: string[];
|
|
@@ -4,3 +4,4 @@ export declare const ALLOWED_PARAM_MEDIA_TYPES: string[];
|
|
|
4
4
|
export declare const ALLOWED_PATH_IN: string[];
|
|
5
5
|
export declare const ALLOWED_METHODS: OpenAPIV3.HttpMethods[];
|
|
6
6
|
export declare const PRIMITIVE_TYPE_LIST: string[];
|
|
7
|
+
export declare const COMPOSITE_KEYWORDS: ("required" | "type" | "default" | "title" | "pattern" | "description" | "externalDocs" | "deprecated" | "enum" | "nullable" | "format" | "multipleOf" | "maximum" | "exclusiveMaximum" | "minimum" | "exclusiveMinimum" | "maxLength" | "minLength" | "additionalProperties" | "maxItems" | "minItems" | "uniqueItems" | "maxProperties" | "minProperties" | "properties" | "allOf" | "oneOf" | "anyOf" | "not" | "discriminator" | "readOnly" | "writeOnly" | "xml" | "example")[];
|