@ng-openapi/http-resource 0.0.34-pr-92-feature-single-request-parameter-0b340a2.0 → 0.0.34-pr-85-testing-25e3627.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 +2 -2
- package/index.d.ts +11 -0
- package/index.js +2 -2
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -40,11 +40,11 @@ var import_ts_morph = require("ts-morph");
|
|
|
40
40
|
|
|
41
41
|
// ../../shared/src/utils/string.utils.ts
|
|
42
42
|
function camelCase(str2) {
|
|
43
|
-
return str2.replace(/[-_
|
|
43
|
+
return str2.replace(/[-_.\s]+(.)?/g, (_, char) => char ? char.toUpperCase() : "").replace(/^./, (char) => char.toLowerCase());
|
|
44
44
|
}
|
|
45
45
|
__name(camelCase, "camelCase");
|
|
46
46
|
function pascalCase(str2) {
|
|
47
|
-
return str2.replace(/[-_
|
|
47
|
+
return str2.replace(/[-_.\s]+(.)?/g, (_, char) => char ? char.toUpperCase() : "").replace(/^./, (char) => char.toUpperCase());
|
|
48
48
|
}
|
|
49
49
|
__name(pascalCase, "pascalCase");
|
|
50
50
|
function pascalCaseForEnums(str2) {
|
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
|
|
package/index.js
CHANGED
|
@@ -6,11 +6,11 @@ import { Scope } from "ts-morph";
|
|
|
6
6
|
|
|
7
7
|
// ../../shared/src/utils/string.utils.ts
|
|
8
8
|
function camelCase(str2) {
|
|
9
|
-
return str2.replace(/[-_
|
|
9
|
+
return str2.replace(/[-_.\s]+(.)?/g, (_, char) => char ? char.toUpperCase() : "").replace(/^./, (char) => char.toLowerCase());
|
|
10
10
|
}
|
|
11
11
|
__name(camelCase, "camelCase");
|
|
12
12
|
function pascalCase(str2) {
|
|
13
|
-
return str2.replace(/[-_
|
|
13
|
+
return str2.replace(/[-_.\s]+(.)?/g, (_, char) => char ? char.toUpperCase() : "").replace(/^./, (char) => char.toUpperCase());
|
|
14
14
|
}
|
|
15
15
|
__name(pascalCase, "pascalCase");
|
|
16
16
|
function pascalCaseForEnums(str2) {
|
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-25e3627.0",
|
|
4
4
|
"description": "HTTP Resource plugin for ng-openapi - Angular HTTP utilities with caching and state management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|