@ng-openapi/http-resource 0.0.34-pr-91-bugfix-nested-objects-parameter-fb5e988.0 → 0.0.34-pr-85-testing-f0cd6ab.0
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.
- package/index.cjs +4 -0
- package/index.d.ts +12 -0
- package/index.js +4 -0
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -340,6 +340,10 @@ var SERVICE_INDEX_GENERATOR_HEADER_COMMENT = defaultHeaderComment + `* Generated
|
|
|
340
340
|
* Do not edit this file manually
|
|
341
341
|
*/
|
|
342
342
|
`;
|
|
343
|
+
var REQUEST_PARAMS_GENERATOR_HEADER_COMMENT = defaultHeaderComment + `* Generated request parameter interfaces
|
|
344
|
+
* Do not edit this file manually
|
|
345
|
+
*/
|
|
346
|
+
`;
|
|
343
347
|
var MAIN_INDEX_GENERATOR_HEADER_COMMENT = defaultHeaderComment + `* Entrypoint for the client
|
|
344
348
|
* Do not edit this file manually
|
|
345
349
|
*/
|
package/index.d.ts
CHANGED
|
@@ -7,6 +7,16 @@ interface SwaggerResponse {
|
|
|
7
7
|
schema?: any;
|
|
8
8
|
}>;
|
|
9
9
|
}
|
|
10
|
+
interface OpenApiSecurityScheme {
|
|
11
|
+
type?: "apiKey" | "http" | "oauth2" | "openIdConnect";
|
|
12
|
+
description?: string;
|
|
13
|
+
name?: string;
|
|
14
|
+
in?: "query" | "header" | "cookie";
|
|
15
|
+
scheme?: string;
|
|
16
|
+
bearerFormat?: string;
|
|
17
|
+
flows?: Record<string, any>;
|
|
18
|
+
openIdConnectUrl?: string;
|
|
19
|
+
}
|
|
10
20
|
interface SwaggerDefinition {
|
|
11
21
|
type?: ParameterType | undefined;
|
|
12
22
|
format?: string | undefined;
|
|
@@ -75,6 +85,7 @@ interface SwaggerSpec {
|
|
|
75
85
|
tags?: Tag[] | undefined;
|
|
76
86
|
components?: {
|
|
77
87
|
schemas?: Record<string, SwaggerDefinition>;
|
|
88
|
+
securitySchemes?: Record<string, OpenApiSecurityScheme | Security>;
|
|
78
89
|
};
|
|
79
90
|
}
|
|
80
91
|
|
|
@@ -127,6 +138,7 @@ interface GeneratorConfig {
|
|
|
127
138
|
[contentType: string]: "json" | "blob" | "arraybuffer" | "text";
|
|
128
139
|
};
|
|
129
140
|
customizeMethodName?: (operationId: string) => string;
|
|
141
|
+
useSingleRequestParameter?: boolean;
|
|
130
142
|
};
|
|
131
143
|
compilerOptions?: {
|
|
132
144
|
declaration?: boolean;
|
package/index.js
CHANGED
|
@@ -306,6 +306,10 @@ var SERVICE_INDEX_GENERATOR_HEADER_COMMENT = defaultHeaderComment + `* Generated
|
|
|
306
306
|
* Do not edit this file manually
|
|
307
307
|
*/
|
|
308
308
|
`;
|
|
309
|
+
var REQUEST_PARAMS_GENERATOR_HEADER_COMMENT = defaultHeaderComment + `* Generated request parameter interfaces
|
|
310
|
+
* Do not edit this file manually
|
|
311
|
+
*/
|
|
312
|
+
`;
|
|
309
313
|
var MAIN_INDEX_GENERATOR_HEADER_COMMENT = defaultHeaderComment + `* Entrypoint for the client
|
|
310
314
|
* Do not edit this file manually
|
|
311
315
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-openapi/http-resource",
|
|
3
|
-
"version": "0.0.34-pr-
|
|
3
|
+
"version": "0.0.34-pr-85-testing-f0cd6ab.0",
|
|
4
4
|
"description": "HTTP Resource plugin for ng-openapi - Angular HTTP utilities with caching and state management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|