@scalar/api-reference 1.25.1 → 1.25.2
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/CHANGELOG.md +11 -0
- package/dist/browser/standalone.js +5914 -5912
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/hooks/useReactiveSpec.d.ts +5 -5
- package/dist/index.js +1 -1
- package/dist/legacy/stores/useOpenApiStore.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -125,8 +125,8 @@ export declare function useReactiveSpec({ specConfig, proxy, }: {
|
|
|
125
125
|
} | undefined;
|
|
126
126
|
version?: string;
|
|
127
127
|
} | {
|
|
128
|
-
title?: string;
|
|
129
128
|
description?: string;
|
|
129
|
+
title?: string;
|
|
130
130
|
termsOfService?: string;
|
|
131
131
|
contact?: {
|
|
132
132
|
name?: string;
|
|
@@ -149,15 +149,15 @@ export declare function useReactiveSpec({ specConfig, proxy, }: {
|
|
|
149
149
|
description?: string;
|
|
150
150
|
} | undefined;
|
|
151
151
|
servers?: {
|
|
152
|
-
url?: string;
|
|
153
|
-
description?: string;
|
|
154
|
-
variables?: Record<string, import("@scalar/types/legacy").OpenAPIV3_1.ServerVariableObject>;
|
|
155
|
-
}[] | {
|
|
156
152
|
url?: string;
|
|
157
153
|
description?: string;
|
|
158
154
|
variables?: {
|
|
159
155
|
[variable: string]: import("@scalar/types/legacy").OpenAPIV3.ServerVariableObject;
|
|
160
156
|
};
|
|
157
|
+
}[] | {
|
|
158
|
+
url?: string;
|
|
159
|
+
description?: string;
|
|
160
|
+
variables?: Record<string, import("@scalar/types/legacy").OpenAPIV3_1.ServerVariableObject>;
|
|
161
161
|
}[] | undefined;
|
|
162
162
|
components?: {
|
|
163
163
|
schemas?: {
|