@kaapi/kaapi 0.0.38 → 0.0.39
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.
|
@@ -36,7 +36,7 @@ export declare class APIKeyAuthDesign extends AuthDesign {
|
|
|
36
36
|
inCookie(): this;
|
|
37
37
|
inHeader(): this;
|
|
38
38
|
inQuery(): this;
|
|
39
|
-
docs(): ApiKeyUtil;
|
|
39
|
+
docs(): ApiKeyUtil | undefined;
|
|
40
40
|
integrateStrategy(t: KaapiTools): void | Promise<void>;
|
|
41
41
|
toString(): string;
|
|
42
42
|
}
|
|
@@ -23,7 +23,7 @@ export declare class BasicAuthDesign extends AuthDesign {
|
|
|
23
23
|
setDescription(description: string): this;
|
|
24
24
|
getStrategyName(): string;
|
|
25
25
|
getDescription(): string | undefined;
|
|
26
|
-
docs(): BasicAuthUtil;
|
|
26
|
+
docs(): BasicAuthUtil | undefined;
|
|
27
27
|
integrateStrategy(t: KaapiTools): void | Promise<void>;
|
|
28
28
|
toString(): string;
|
|
29
29
|
}
|
|
@@ -23,7 +23,7 @@ export declare class BearerAuthDesign extends AuthDesign {
|
|
|
23
23
|
setDescription(description: string): this;
|
|
24
24
|
getStrategyName(): string;
|
|
25
25
|
getDescription(): string | undefined;
|
|
26
|
-
docs(): BearerUtil;
|
|
26
|
+
docs(): BearerUtil | undefined;
|
|
27
27
|
integrateStrategy(t: KaapiTools): void | Promise<void>;
|
|
28
28
|
toString(): string;
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaapi/kaapi",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.39",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "TypeScript-based framework",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"swagger-ui-dist": "^5.31.0",
|
|
35
35
|
"tslib": "^2.8.1",
|
|
36
36
|
"winston": "^3.19.0",
|
|
37
|
-
"@kaapi/server": "^0.0.
|
|
37
|
+
"@kaapi/server": "^0.0.39"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"lint": "eslint .",
|