@scalar/hono-api-reference 0.2.10 → 0.3.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/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -12,7 +12,7 @@ declare const customThemeCSS = "\n:root {\n --theme-font: 'Inter', var(--system
|
|
|
12
12
|
/**
|
|
13
13
|
* The HTML to load the @scalar/api-reference JavaScript package.
|
|
14
14
|
*/
|
|
15
|
-
declare const javascript: (configuration: ReferenceConfiguration) => hono_utils_html.HtmlEscapedString
|
|
15
|
+
declare const javascript: (configuration: ReferenceConfiguration) => hono_utils_html.HtmlEscapedString | Promise<hono_utils_html.HtmlEscapedString>;
|
|
16
16
|
/**
|
|
17
17
|
* The middleware for the API Reference.
|
|
18
18
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ declare const customThemeCSS = "\n:root {\n --theme-font: 'Inter', var(--system
|
|
|
12
12
|
/**
|
|
13
13
|
* The HTML to load the @scalar/api-reference JavaScript package.
|
|
14
14
|
*/
|
|
15
|
-
declare const javascript: (configuration: ReferenceConfiguration) => hono_utils_html.HtmlEscapedString
|
|
15
|
+
declare const javascript: (configuration: ReferenceConfiguration) => hono_utils_html.HtmlEscapedString | Promise<hono_utils_html.HtmlEscapedString>;
|
|
16
16
|
/**
|
|
17
17
|
* The middleware for the API Reference.
|
|
18
18
|
*/
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"author": "Scalar (https://github.com/scalar)",
|
|
6
6
|
"homepage": "https://github.com/scalar/scalar",
|
|
7
7
|
"bugs": "https://github.com/scalar/scalar/issues/new/choose",
|
|
8
|
-
"version": "0.
|
|
8
|
+
"version": "0.3.0",
|
|
9
9
|
"engines": {
|
|
10
10
|
"node": ">=20"
|
|
11
11
|
},
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"directory": "packages/hono-api-reference"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@scalar/api-reference": "1.
|
|
37
|
+
"@scalar/api-reference": "1.11.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"hono": "^3.
|
|
40
|
+
"hono": "^3.11.7",
|
|
41
41
|
"tsup": "^7.2.0",
|
|
42
42
|
"vite": "^4.4.12",
|
|
43
43
|
"vitest": "^0.34.4"
|