@scalar/openapi-to-markdown 0.4.15 → 0.5.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/CHANGELOG.md +13 -0
- package/README.md +22 -0
- package/dist/components/MarkdownReference.vue.d.ts +3 -2
- package/dist/components/MarkdownReference.vue.d.ts.map +1 -1
- package/dist/components/Schema.vue.d.ts +2 -2
- package/dist/components/Schema.vue.d.ts.map +1 -1
- package/dist/components/XmlOrJson.vue.d.ts +2 -2
- package/dist/components/XmlOrJson.vue.d.ts.map +1 -1
- package/dist/create-markdown-from-openapi.d.ts +17 -4
- package/dist/create-markdown-from-openapi.d.ts.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +329 -95
- package/dist/index.js.map +1 -1
- package/package.json +11 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @scalar/openapi-to-markdown
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#8710](https://github.com/scalar/scalar/pull/8710): feat(openapi-to-markdown): support rendering single operations by selector (operationId, path+method, and JSON pointer), including full `#/...` pointer support.
|
|
8
|
+
- [#8638](https://github.com/scalar/scalar/pull/8638): refactor openapi-to-markdown to use workspace-store and json-magic bundling instead of openapi-parser, while preserving the existing public API and adding file/url reference bundling support.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- [#8710](https://github.com/scalar/scalar/pull/8710): Reject unsupported `connect` operation selectors so markdown generation fails with a clear error instead of silently producing an empty operations section.
|
|
13
|
+
|
|
14
|
+
## 0.4.16
|
|
15
|
+
|
|
3
16
|
## 0.4.15
|
|
4
17
|
|
|
5
18
|
## 0.4.14
|
package/README.md
CHANGED
|
@@ -31,6 +31,28 @@ const content = {
|
|
|
31
31
|
|
|
32
32
|
// Generate Markdown from an OpenAPI document
|
|
33
33
|
const markdown = await createMarkdownFromOpenApi(content)
|
|
34
|
+
|
|
35
|
+
// Generate Markdown for a single operation
|
|
36
|
+
const operationMarkdown = await createMarkdownFromOpenApi(content, {
|
|
37
|
+
operation: {
|
|
38
|
+
operationId: 'getUser',
|
|
39
|
+
},
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
// You can also select by path + method
|
|
43
|
+
const operationMarkdownByPath = await createMarkdownFromOpenApi(content, {
|
|
44
|
+
operation: {
|
|
45
|
+
path: '/users/{id}',
|
|
46
|
+
method: 'get',
|
|
47
|
+
},
|
|
48
|
+
})
|
|
49
|
+
|
|
50
|
+
// Or use a full JSON pointer to the operation object
|
|
51
|
+
const operationMarkdownByPointer = await createMarkdownFromOpenApi(content, {
|
|
52
|
+
operation: {
|
|
53
|
+
pointer: '#/paths/~1users~1{id}/get',
|
|
54
|
+
},
|
|
55
|
+
})
|
|
34
56
|
```
|
|
35
57
|
|
|
36
58
|
### With Hono
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { OpenApiDocument } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document';
|
|
2
|
+
type MarkdownDocument = Partial<OpenApiDocument> & Pick<OpenApiDocument, 'openapi' | 'info'>;
|
|
2
3
|
type __VLS_Props = {
|
|
3
|
-
content:
|
|
4
|
+
content: MarkdownDocument;
|
|
4
5
|
};
|
|
5
6
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
7
|
declare const _default: typeof __VLS_export;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarkdownReference.vue.d.ts","sourceRoot":"","sources":["../../src/components/MarkdownReference.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MarkdownReference.vue.d.ts","sourceRoot":"","sources":["../../src/components/MarkdownReference.vue"],"names":[],"mappings":"AA2dA,OAAO,KAAK,EACV,eAAe,EAKhB,MAAM,8DAA8D,CAAA;AAQrE,KAAK,gBAAgB,GAAG,OAAO,CAAC,eAAe,CAAC,GAC9C,IAAI,CAAC,eAAe,EAAE,SAAS,GAAG,MAAM,CAAC,CAAA;AAyB3C,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,gBAAgB,CAAA;CAC1B,CAAC;AA0kBF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { MaybeRefSchemaObject } from '@scalar/workspace-store/schemas/v3.1/strict/schema';
|
|
2
2
|
type __VLS_Props = {
|
|
3
|
-
schema:
|
|
3
|
+
schema: MaybeRefSchemaObject;
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
6
|
declare const _default: typeof __VLS_export;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Schema.vue.d.ts","sourceRoot":"","sources":["../../src/components/Schema.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Schema.vue.d.ts","sourceRoot":"","sources":["../../src/components/Schema.vue"],"names":[],"mappings":"AA8XA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAA;AAE9F,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,oBAAoB,CAAA;CAC7B,CAAC;AA4fF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { MaybeRefSchemaObject } from '@scalar/workspace-store/schemas/v3.1/strict/schema';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
xml?: boolean;
|
|
4
|
-
modelValue:
|
|
4
|
+
modelValue: MaybeRefSchemaObject;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
7
|
xml: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"XmlOrJson.vue.d.ts","sourceRoot":"","sources":["../../src/components/XmlOrJson.vue"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"XmlOrJson.vue.d.ts","sourceRoot":"","sources":["../../src/components/XmlOrJson.vue"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAA;AAE9F,KAAK,WAAW,GAAG;IACf,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,UAAU,EAAE,oBAAoB,CAAA;CACjC,CAAC;AAkDJ,QAAA,MAAM,YAAY;SApDR,OAAO;6EAuDf,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
type AnyDocument =
|
|
3
|
-
|
|
4
|
-
export
|
|
1
|
+
import type { OpenApiDocument, PathItemObject } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document';
|
|
2
|
+
type AnyDocument = OpenApiDocument | Record<string, unknown> | string;
|
|
3
|
+
type HttpMethodKeys = Exclude<keyof PathItemObject, '$ref' | 'summary' | 'description' | 'servers' | 'parameters'>;
|
|
4
|
+
export type HttpMethod = Extract<HttpMethodKeys, string>;
|
|
5
|
+
export type OperationSelector = {
|
|
6
|
+
path: string;
|
|
7
|
+
method: HttpMethod | Uppercase<HttpMethod>;
|
|
8
|
+
} | {
|
|
9
|
+
operationId: string;
|
|
10
|
+
} | {
|
|
11
|
+
pointer: string;
|
|
12
|
+
};
|
|
13
|
+
export type OpenApiRenderOptions = {
|
|
14
|
+
operation?: OperationSelector;
|
|
15
|
+
};
|
|
16
|
+
export declare function createHtmlFromOpenApi(input: AnyDocument, options?: OpenApiRenderOptions): Promise<string>;
|
|
17
|
+
export declare function createMarkdownFromOpenApi(content: AnyDocument, options?: OpenApiRenderOptions): Promise<string>;
|
|
5
18
|
export {};
|
|
6
19
|
//# sourceMappingURL=create-markdown-from-openapi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-markdown-from-openapi.d.ts","sourceRoot":"","sources":["../src/create-markdown-from-openapi.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-markdown-from-openapi.d.ts","sourceRoot":"","sources":["../src/create-markdown-from-openapi.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,8DAA8D,CAAA;AAcnH,KAAK,WAAW,GAAG,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAA;AACrE,KAAK,cAAc,GAAG,OAAO,CAAC,MAAM,cAAc,EAAE,MAAM,GAAG,SAAS,GAAG,aAAa,GAAG,SAAS,GAAG,YAAY,CAAC,CAAA;AAClH,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,cAAc,EAAE,MAAM,CAAC,CAAA;AACxD,MAAM,MAAM,iBAAiB,GACzB;IACE,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,UAAU,GAAG,SAAS,CAAC,UAAU,CAAC,CAAA;CAC3C,GACD;IACE,WAAW,EAAE,MAAM,CAAA;CACpB,GACD;IACE,OAAO,EAAE,MAAM,CAAA;CAChB,CAAA;AACL,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,CAAC,EAAE,iBAAiB,CAAA;CAC9B,CAAA;AAuMD,wBAAsB,qBAAqB,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,oBAAoB,mBA8C7F;AAED,wBAAsB,yBAAyB,CAAC,OAAO,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,oBAAoB,mBAEnG"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export { createHtmlFromOpenApi, createMarkdownFromOpenApi } from './create-markdown-from-openapi';
|
|
1
|
+
export { createHtmlFromOpenApi, createMarkdownFromOpenApi, } from './create-markdown-from-openapi';
|
|
2
|
+
export type { HttpMethod, OpenApiRenderOptions, OperationSelector, } from './create-markdown-from-openapi';
|
|
2
3
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,yBAAyB,GAC1B,MAAM,gCAAgC,CAAA;AACvC,YAAY,EACV,UAAU,EACV,oBAAoB,EACpB,iBAAiB,GAClB,MAAM,gCAAgC,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { isObject } from "@scalar/helpers/object/is-object";
|
|
2
|
+
import { readFiles } from "@scalar/json-magic/bundle/plugins/node";
|
|
3
|
+
import { normalize } from "@scalar/json-magic/helpers/normalize";
|
|
4
|
+
import { createWorkspaceStore } from "@scalar/workspace-store/client";
|
|
3
5
|
import { minify } from "html-minifier-terser";
|
|
4
6
|
import rehypeParse from "rehype-parse";
|
|
5
7
|
import rehypeRemark from "rehype-remark";
|
|
@@ -7,10 +9,12 @@ import rehypeSanitize from "rehype-sanitize";
|
|
|
7
9
|
import remarkGfm from "remark-gfm";
|
|
8
10
|
import remarkStringify from "remark-stringify";
|
|
9
11
|
import { unified } from "unified";
|
|
10
|
-
import { Fragment, createBlock, createCommentVNode, createElementBlock, createElementVNode, createSSRApp, createTextVNode, createVNode, defineComponent, openBlock, renderList, resolveComponent, toDisplayString, unref } from "vue";
|
|
12
|
+
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createElementVNode, createSSRApp, createTextVNode, createVNode, defineComponent, openBlock, renderList, resolveComponent, toDisplayString, unref } from "vue";
|
|
11
13
|
import { renderToString } from "vue/server-renderer";
|
|
12
14
|
import { ScalarMarkdown } from "@scalar/components";
|
|
13
15
|
import { getExampleFromSchema } from "@scalar/oas-utils/spec-getters";
|
|
16
|
+
import { getResolvedRef } from "@scalar/workspace-store/helpers/get-resolved-ref";
|
|
17
|
+
import { resolve } from "@scalar/workspace-store/resolve";
|
|
14
18
|
import { json2xml } from "@scalar/helpers/file/json2xml";
|
|
15
19
|
//#region src/components/Schema.vue?vue&type=script&setup=true&lang.ts
|
|
16
20
|
var _hoisted_1$2 = { key: 0 };
|
|
@@ -39,8 +43,64 @@ var _hoisted_22 = { key: 3 };
|
|
|
39
43
|
//#region src/components/Schema.vue
|
|
40
44
|
var Schema_default = /* @__PURE__ */ defineComponent({
|
|
41
45
|
__name: "Schema",
|
|
42
|
-
props: { schema: {
|
|
46
|
+
props: { schema: {} },
|
|
43
47
|
setup(__props) {
|
|
48
|
+
const resolvedSchema = resolve.schema(__props.schema);
|
|
49
|
+
const resolveNestedSchema = (value) => resolve.schema(value);
|
|
50
|
+
const asObject = (value) => value !== null && typeof value === "object" ? value : void 0;
|
|
51
|
+
const getSchemaType = (value) => {
|
|
52
|
+
const schemaType = asObject(value)?.type;
|
|
53
|
+
if (typeof schemaType === "string") return schemaType;
|
|
54
|
+
if (Array.isArray(schemaType) && schemaType.every((entry) => typeof entry === "string")) return schemaType;
|
|
55
|
+
};
|
|
56
|
+
const getSchemaArray = (value, key) => {
|
|
57
|
+
const collection = asObject(value)?.[key];
|
|
58
|
+
if (!Array.isArray(collection)) return;
|
|
59
|
+
return collection.filter((entry) => entry !== null && typeof entry === "object");
|
|
60
|
+
};
|
|
61
|
+
const getSchemaNot = (value) => {
|
|
62
|
+
const notSchema = asObject(value)?.not;
|
|
63
|
+
return notSchema !== null && typeof notSchema === "object" ? notSchema : void 0;
|
|
64
|
+
};
|
|
65
|
+
const getSchemaProperties = (value) => {
|
|
66
|
+
const properties = asObject(value)?.properties;
|
|
67
|
+
if (!properties || typeof properties !== "object") return {};
|
|
68
|
+
return Object.entries(properties).reduce((acc, [name, prop]) => {
|
|
69
|
+
if (prop !== null && typeof prop === "object") acc[name] = prop;
|
|
70
|
+
return acc;
|
|
71
|
+
}, {});
|
|
72
|
+
};
|
|
73
|
+
const getSchemaRequired = (value) => {
|
|
74
|
+
const required = asObject(value)?.required;
|
|
75
|
+
if (!Array.isArray(required)) return [];
|
|
76
|
+
return required.filter((item) => typeof item === "string");
|
|
77
|
+
};
|
|
78
|
+
const getSchemaItems = (value) => {
|
|
79
|
+
const items = asObject(value)?.items;
|
|
80
|
+
return items !== null && typeof items === "object" ? items : void 0;
|
|
81
|
+
};
|
|
82
|
+
const getSchemaFormat = (value) => typeof asObject(value)?.format === "string" ? asObject(value)?.format : void 0;
|
|
83
|
+
const getSchemaEnum = (value) => {
|
|
84
|
+
const enumValues = asObject(value)?.enum;
|
|
85
|
+
return Array.isArray(enumValues) ? enumValues : void 0;
|
|
86
|
+
};
|
|
87
|
+
const getSchemaDefault = (value) => asObject(value)?.default;
|
|
88
|
+
const getSchemaDescription = (value) => typeof asObject(value)?.description === "string" ? asObject(value)?.description : void 0;
|
|
89
|
+
const getSchemaMinItems = (value) => typeof asObject(value)?.minItems === "number" ? asObject(value)?.minItems : void 0;
|
|
90
|
+
const getSchemaMaxItems = (value) => typeof asObject(value)?.maxItems === "number" ? asObject(value)?.maxItems : void 0;
|
|
91
|
+
const getSchemaUniqueItems = (value) => typeof asObject(value)?.uniqueItems === "boolean" ? asObject(value)?.uniqueItems : void 0;
|
|
92
|
+
const getResolvedSchemaType = (value) => getSchemaType(resolveNestedSchema(value));
|
|
93
|
+
const getResolvedSchemaFormat = (value) => getSchemaFormat(resolveNestedSchema(value));
|
|
94
|
+
const getResolvedSchemaEnum = (value) => getSchemaEnum(resolveNestedSchema(value));
|
|
95
|
+
const getResolvedSchemaDefault = (value) => getSchemaDefault(resolveNestedSchema(value));
|
|
96
|
+
const getResolvedSchemaDescription = (value) => getSchemaDescription(resolveNestedSchema(value));
|
|
97
|
+
const getResolvedSchemaProperties = (value) => getSchemaProperties(resolveNestedSchema(value));
|
|
98
|
+
const getResolvedSchemaItems = (value) => getSchemaItems(resolveNestedSchema(value));
|
|
99
|
+
const formatSchemaType = (value) => {
|
|
100
|
+
const schemaType = getResolvedSchemaType(value);
|
|
101
|
+
return Array.isArray(schemaType) ? schemaType.join(" | ") : schemaType || "object";
|
|
102
|
+
};
|
|
103
|
+
const formatEnumValues = (value) => value?.map((entry) => JSON.stringify(entry)).join(", ") || "";
|
|
44
104
|
const sortProperties = (properties, required) => {
|
|
45
105
|
const sorted = Object.entries(properties).sort(([a], [b]) => {
|
|
46
106
|
const aRequired = required?.includes(a);
|
|
@@ -53,42 +113,42 @@ var Schema_default = /* @__PURE__ */ defineComponent({
|
|
|
53
113
|
};
|
|
54
114
|
return (_ctx, _cache) => {
|
|
55
115
|
const _component_Schema = resolveComponent("Schema", true);
|
|
56
|
-
return
|
|
116
|
+
return unref(resolvedSchema) ? (openBlock(), createElementBlock("section", _hoisted_1$2, [getSchemaArray(unref(resolvedSchema), "allOf") ? (openBlock(), createElementBlock("section", _hoisted_2$2, [_cache[0] || (_cache[0] = createElementVNode("header", null, [createElementVNode("strong", null, "All of:")], -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(getSchemaArray(unref(resolvedSchema), "allOf"), (subSchema, index) => {
|
|
57
117
|
return openBlock(), createElementBlock("section", { key: index }, [createVNode(_component_Schema, { schema: subSchema }, null, 8, ["schema"])]);
|
|
58
|
-
}), 128))])) :
|
|
118
|
+
}), 128))])) : getSchemaArray(unref(resolvedSchema), "anyOf") ? (openBlock(), createElementBlock("section", _hoisted_3$2, [_cache[1] || (_cache[1] = createElementVNode("header", null, [createElementVNode("strong", null, "Any of:")], -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(getSchemaArray(unref(resolvedSchema), "anyOf"), (subSchema, index) => {
|
|
59
119
|
return openBlock(), createElementBlock("section", { key: index }, [createVNode(_component_Schema, { schema: subSchema }, null, 8, ["schema"])]);
|
|
60
|
-
}), 128))])) :
|
|
120
|
+
}), 128))])) : getSchemaArray(unref(resolvedSchema), "oneOf") ? (openBlock(), createElementBlock("section", _hoisted_4$2, [_cache[2] || (_cache[2] = createElementVNode("header", null, [createElementVNode("strong", null, "One of:")], -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(getSchemaArray(unref(resolvedSchema), "oneOf"), (subSchema, index) => {
|
|
61
121
|
return openBlock(), createElementBlock("section", { key: index }, [createVNode(_component_Schema, { schema: subSchema }, null, 8, ["schema"])]);
|
|
62
|
-
}), 128))])) :
|
|
122
|
+
}), 128))])) : getSchemaNot(unref(resolvedSchema)) ? (openBlock(), createElementBlock("section", _hoisted_5$1, [_cache[3] || (_cache[3] = createElementVNode("header", null, [createElementVNode("strong", null, "Not:")], -1)), createElementVNode("section", null, [createVNode(_component_Schema, { schema: getSchemaNot(unref(resolvedSchema)) }, null, 8, ["schema"])])])) : getSchemaType(unref(resolvedSchema)) === "object" || Object.keys(getSchemaProperties(unref(resolvedSchema))).length ? (openBlock(), createElementBlock("section", _hoisted_6$1, [createElementVNode("ul", null, [(openBlock(true), createElementBlock(Fragment, null, renderList(sortProperties(getSchemaProperties(unref(resolvedSchema)), getSchemaRequired(unref(resolvedSchema))), (propSchema, propName) => {
|
|
63
123
|
return openBlock(), createElementBlock("li", { key: propName }, [
|
|
64
|
-
createElementVNode("strong", null, [createElementVNode("code", null, toDisplayString(propName), 1),
|
|
124
|
+
createElementVNode("strong", null, [createElementVNode("code", null, toDisplayString(propName), 1), getSchemaRequired(unref(resolvedSchema)).includes(propName) ? (openBlock(), createElementBlock("span", _hoisted_7$1, " (required) ")) : createCommentVNode("", true)]),
|
|
65
125
|
createElementVNode("p", null, [
|
|
66
|
-
createElementVNode("code", null, toDisplayString(
|
|
67
|
-
propSchema
|
|
68
|
-
propSchema
|
|
69
|
-
propSchema
|
|
70
|
-
propSchema
|
|
126
|
+
createElementVNode("code", null, toDisplayString(formatSchemaType(propSchema)), 1),
|
|
127
|
+
getResolvedSchemaFormat(propSchema) ? (openBlock(), createElementBlock("span", _hoisted_8$1, [_cache[4] || (_cache[4] = createTextVNode(", format: ", -1)), createElementVNode("code", null, toDisplayString(getResolvedSchemaFormat(propSchema)), 1)])) : createCommentVNode("", true),
|
|
128
|
+
getResolvedSchemaEnum(propSchema) ? (openBlock(), createElementBlock("span", _hoisted_9$1, [_cache[5] || (_cache[5] = createTextVNode(", possible values: ", -1)), createElementVNode("code", null, toDisplayString(formatEnumValues(getResolvedSchemaEnum(propSchema))), 1)])) : createCommentVNode("", true),
|
|
129
|
+
getResolvedSchemaDefault(propSchema) !== void 0 ? (openBlock(), createElementBlock("span", _hoisted_10$1, [_cache[6] || (_cache[6] = createTextVNode(", default: ", -1)), createElementVNode("code", null, toDisplayString(JSON.stringify(getResolvedSchemaDefault(propSchema))), 1)])) : createCommentVNode("", true),
|
|
130
|
+
getResolvedSchemaDescription(propSchema) ? (openBlock(), createElementBlock("span", _hoisted_11$1, " — " + toDisplayString(getResolvedSchemaDescription(propSchema)), 1)) : createCommentVNode("", true)
|
|
71
131
|
]),
|
|
72
|
-
propSchema
|
|
132
|
+
getResolvedSchemaType(propSchema) === "object" || Object.keys(getResolvedSchemaProperties(propSchema)).length ? (openBlock(), createBlock(_component_Schema, {
|
|
73
133
|
key: 0,
|
|
74
134
|
schema: propSchema
|
|
75
135
|
}, null, 8, ["schema"])) : createCommentVNode("", true),
|
|
76
|
-
propSchema
|
|
136
|
+
getResolvedSchemaType(propSchema) === "array" && getResolvedSchemaItems(propSchema) ? (openBlock(), createElementBlock("section", _hoisted_12$1, [_cache[7] || (_cache[7] = createElementVNode("header", null, [createElementVNode("strong", null, "Items:")], -1)), createVNode(_component_Schema, { schema: getResolvedSchemaItems(propSchema) }, null, 8, ["schema"])])) : createCommentVNode("", true)
|
|
77
137
|
]);
|
|
78
|
-
}), 128))])])) :
|
|
138
|
+
}), 128))])])) : getSchemaType(unref(resolvedSchema)) === "array" && getSchemaItems(unref(resolvedSchema)) ? (openBlock(), createElementBlock("section", _hoisted_13$1, [
|
|
79
139
|
_cache[11] || (_cache[11] = createElementVNode("header", null, [createElementVNode("strong", null, "Array of:")], -1)),
|
|
80
|
-
createElementVNode("section", null, [createVNode(_component_Schema, { schema:
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
140
|
+
createElementVNode("section", null, [createVNode(_component_Schema, { schema: getSchemaItems(unref(resolvedSchema)) }, null, 8, ["schema"])]),
|
|
141
|
+
getSchemaMinItems(unref(resolvedSchema)) !== void 0 || getSchemaMaxItems(unref(resolvedSchema)) !== void 0 || getSchemaUniqueItems(unref(resolvedSchema)) ? (openBlock(), createElementBlock("ul", _hoisted_14$1, [
|
|
142
|
+
getSchemaMinItems(unref(resolvedSchema)) !== void 0 ? (openBlock(), createElementBlock("li", _hoisted_15, [_cache[8] || (_cache[8] = createTextVNode(" Min items: ", -1)), createElementVNode("code", null, toDisplayString(getSchemaMinItems(unref(resolvedSchema))), 1)])) : createCommentVNode("", true),
|
|
143
|
+
getSchemaMaxItems(unref(resolvedSchema)) !== void 0 ? (openBlock(), createElementBlock("li", _hoisted_16, [_cache[9] || (_cache[9] = createTextVNode(" Max items: ", -1)), createElementVNode("code", null, toDisplayString(getSchemaMaxItems(unref(resolvedSchema))), 1)])) : createCommentVNode("", true),
|
|
144
|
+
getSchemaUniqueItems(unref(resolvedSchema)) ? (openBlock(), createElementBlock("li", _hoisted_17, [..._cache[10] || (_cache[10] = [createTextVNode(" Unique items: ", -1), createElementVNode("code", null, "true", -1)])])) : createCommentVNode("", true)
|
|
85
145
|
])) : createCommentVNode("", true)
|
|
86
146
|
])) : (openBlock(), createElementBlock("section", _hoisted_18, [createElementVNode("p", null, [
|
|
87
|
-
createElementVNode("code", null, toDisplayString(
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
147
|
+
createElementVNode("code", null, toDisplayString(getSchemaType(unref(resolvedSchema))), 1),
|
|
148
|
+
getSchemaFormat(unref(resolvedSchema)) ? (openBlock(), createElementBlock("span", _hoisted_19, [_cache[12] || (_cache[12] = createTextVNode(", format: ", -1)), createElementVNode("code", null, toDisplayString(getSchemaFormat(unref(resolvedSchema))), 1)])) : createCommentVNode("", true),
|
|
149
|
+
getSchemaEnum(unref(resolvedSchema)) ? (openBlock(), createElementBlock("span", _hoisted_20, [_cache[13] || (_cache[13] = createTextVNode(", possible values: ", -1)), createElementVNode("code", null, toDisplayString(formatEnumValues(getSchemaEnum(unref(resolvedSchema)))), 1)])) : createCommentVNode("", true),
|
|
150
|
+
getSchemaDefault(unref(resolvedSchema)) !== void 0 ? (openBlock(), createElementBlock("span", _hoisted_21, [_cache[14] || (_cache[14] = createTextVNode(", default: ", -1)), createElementVNode("code", null, toDisplayString(JSON.stringify(getSchemaDefault(unref(resolvedSchema)))), 1)])) : createCommentVNode("", true),
|
|
151
|
+
getSchemaDescription(unref(resolvedSchema)) ? (openBlock(), createElementBlock("span", _hoisted_22, " — " + toDisplayString(getSchemaDescription(unref(resolvedSchema))), 1)) : createCommentVNode("", true)
|
|
92
152
|
])]))])) : createCommentVNode("", true);
|
|
93
153
|
};
|
|
94
154
|
}
|
|
@@ -108,7 +168,7 @@ var XmlOrJson_default = /* @__PURE__ */ defineComponent({
|
|
|
108
168
|
type: Boolean,
|
|
109
169
|
default: false
|
|
110
170
|
},
|
|
111
|
-
modelValue: {
|
|
171
|
+
modelValue: {}
|
|
112
172
|
},
|
|
113
173
|
setup(__props) {
|
|
114
174
|
return (_ctx, _cache) => {
|
|
@@ -138,6 +198,79 @@ var MarkdownReference_default = /* @__PURE__ */ defineComponent({
|
|
|
138
198
|
__name: "MarkdownReference",
|
|
139
199
|
props: { content: {} },
|
|
140
200
|
setup(__props) {
|
|
201
|
+
const resolveRefAs = (reference) => {
|
|
202
|
+
const resolved = getResolvedRef(reference);
|
|
203
|
+
return resolved && typeof resolved === "object" ? resolved : null;
|
|
204
|
+
};
|
|
205
|
+
const resolveOperation = (operation) => resolveRefAs(operation);
|
|
206
|
+
const resolveSchema = (schema) => resolveRefAs(schema);
|
|
207
|
+
const resolveRequestBody = (body) => resolveRefAs(body);
|
|
208
|
+
const resolveResponse = (response) => resolveRefAs(response);
|
|
209
|
+
const toRequestBodyView = (body) => resolveRequestBody(body);
|
|
210
|
+
const toResponseView = (response) => resolveResponse(response);
|
|
211
|
+
const HTTP_METHODS = new Set([
|
|
212
|
+
"get",
|
|
213
|
+
"put",
|
|
214
|
+
"post",
|
|
215
|
+
"delete",
|
|
216
|
+
"options",
|
|
217
|
+
"head",
|
|
218
|
+
"patch",
|
|
219
|
+
"trace"
|
|
220
|
+
]);
|
|
221
|
+
const operations = computed(() => {
|
|
222
|
+
const paths = __props.content?.paths ?? {};
|
|
223
|
+
return Object.entries(paths).flatMap(([path, pathItem]) => {
|
|
224
|
+
if (!pathItem || typeof pathItem !== "object") return [];
|
|
225
|
+
return Object.entries(pathItem).flatMap(([method, operation]) => {
|
|
226
|
+
if (!HTTP_METHODS.has(method)) return [];
|
|
227
|
+
const resolvedOperation = resolveOperation(operation);
|
|
228
|
+
if (!resolvedOperation) return [];
|
|
229
|
+
return [{
|
|
230
|
+
path,
|
|
231
|
+
method,
|
|
232
|
+
operation: resolvedOperation,
|
|
233
|
+
requestBody: toRequestBodyView(resolvedOperation.requestBody),
|
|
234
|
+
responses: Object.entries(resolvedOperation.responses ?? {}).flatMap(([statusCode, response]) => {
|
|
235
|
+
const resolvedResponse = toResponseView(response);
|
|
236
|
+
if (!resolvedResponse) return [];
|
|
237
|
+
return [{
|
|
238
|
+
statusCode,
|
|
239
|
+
response: resolvedResponse
|
|
240
|
+
}];
|
|
241
|
+
})
|
|
242
|
+
}];
|
|
243
|
+
});
|
|
244
|
+
});
|
|
245
|
+
});
|
|
246
|
+
const webhooks = computed(() => {
|
|
247
|
+
const webhookItems = __props.content?.webhooks ?? {};
|
|
248
|
+
return Object.entries(webhookItems).flatMap(([name, pathItem]) => {
|
|
249
|
+
if (!pathItem || typeof pathItem !== "object") return [];
|
|
250
|
+
return Object.entries(pathItem).flatMap(([method, operation]) => {
|
|
251
|
+
if (!HTTP_METHODS.has(method)) return [];
|
|
252
|
+
const resolvedOperation = resolveOperation(operation);
|
|
253
|
+
if (!resolvedOperation) return [];
|
|
254
|
+
return [{
|
|
255
|
+
name,
|
|
256
|
+
method,
|
|
257
|
+
operation: resolvedOperation
|
|
258
|
+
}];
|
|
259
|
+
});
|
|
260
|
+
});
|
|
261
|
+
});
|
|
262
|
+
const componentSchemas = computed(() => {
|
|
263
|
+
const schemas = __props.content?.components?.schemas ?? {};
|
|
264
|
+
return Object.entries(schemas).flatMap(([name, schema]) => {
|
|
265
|
+
const resolvedSchema = resolveSchema(schema);
|
|
266
|
+
if (!resolvedSchema) return [];
|
|
267
|
+
return [{
|
|
268
|
+
name,
|
|
269
|
+
schema: resolvedSchema
|
|
270
|
+
}];
|
|
271
|
+
});
|
|
272
|
+
});
|
|
273
|
+
const getSchemaView = (schema) => schema;
|
|
141
274
|
return (_ctx, _cache) => {
|
|
142
275
|
return openBlock(), createElementBlock("section", null, [
|
|
143
276
|
createElementVNode("header", null, [createElementVNode("h1", null, toDisplayString(__props.content?.info?.title), 1), createElementVNode("ul", null, [createElementVNode("li", null, [
|
|
@@ -169,80 +302,76 @@ var MarkdownReference_default = /* @__PURE__ */ defineComponent({
|
|
|
169
302
|
}), 128))])])) : createCommentVNode("", true)])
|
|
170
303
|
]);
|
|
171
304
|
}), 128))])])) : createCommentVNode("", true),
|
|
172
|
-
|
|
173
|
-
return openBlock(), createElementBlock(
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
createElementVNode("
|
|
177
|
-
createElementVNode("
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
createElementVNode("code", null, toDisplayString(method.toString().toUpperCase()), 1)
|
|
181
|
-
]),
|
|
182
|
-
createElementVNode("li", null, [
|
|
183
|
-
_cache[13] || (_cache[13] = createElementVNode("strong", null, "Path:", -1)),
|
|
184
|
-
_cache[14] || (_cache[14] = createTextVNode("\xA0", -1)),
|
|
185
|
-
createElementVNode("code", null, toDisplayString(path), 1)
|
|
186
|
-
]),
|
|
187
|
-
operation.tags ? (openBlock(), createElementBlock("li", _hoisted_5, [_cache[15] || (_cache[15] = createElementVNode("strong", null, "Tags:", -1)), createTextVNode("\xA0" + toDisplayString(operation.tags.join(", ")), 1)])) : createCommentVNode("", true),
|
|
188
|
-
operation["x-scalar-stability"] ? (openBlock(), createElementBlock("li", _hoisted_6, [_cache[16] || (_cache[16] = createElementVNode("strong", null, "Stability:", -1)), createTextVNode("\xA0" + toDisplayString(operation["x-scalar-stability"]), 1)])) : createCommentVNode("", true)
|
|
305
|
+
operations.value.length ? (openBlock(), createElementBlock("section", _hoisted_4, [_cache[21] || (_cache[21] = createElementVNode("h2", null, "Operations", -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(operations.value, (entry) => {
|
|
306
|
+
return openBlock(), createElementBlock("section", { key: `${entry.method}:${entry.path}` }, [
|
|
307
|
+
createElementVNode("header", null, [createElementVNode("h3", null, [entry.operation.summary ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [createTextVNode(toDisplayString(entry.operation.summary), 1)], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [createTextVNode(toDisplayString(entry.method.toString().toUpperCase()) + " " + toDisplayString(entry.path), 1)], 64)), entry.operation["x-scalar-stability"] ? (openBlock(), createElementBlock(Fragment, { key: 2 }, [createTextVNode(" (" + toDisplayString(entry.operation["x-scalar-stability"]) + ") ", 1)], 64)) : entry.operation.deprecated ? (openBlock(), createElementBlock(Fragment, { key: 3 }, [createTextVNode(" ⚠️ Deprecated ")], 64)) : createCommentVNode("", true)])]),
|
|
308
|
+
createElementVNode("ul", null, [
|
|
309
|
+
createElementVNode("li", null, [
|
|
310
|
+
_cache[11] || (_cache[11] = createElementVNode("strong", null, "Method:", -1)),
|
|
311
|
+
_cache[12] || (_cache[12] = createTextVNode("\xA0", -1)),
|
|
312
|
+
createElementVNode("code", null, toDisplayString(entry.method.toString().toUpperCase()), 1)
|
|
189
313
|
]),
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
314
|
+
createElementVNode("li", null, [
|
|
315
|
+
_cache[13] || (_cache[13] = createElementVNode("strong", null, "Path:", -1)),
|
|
316
|
+
_cache[14] || (_cache[14] = createTextVNode("\xA0", -1)),
|
|
317
|
+
createElementVNode("code", null, toDisplayString(entry.path), 1)
|
|
318
|
+
]),
|
|
319
|
+
entry.operation.tags ? (openBlock(), createElementBlock("li", _hoisted_5, [_cache[15] || (_cache[15] = createElementVNode("strong", null, "Tags:", -1)), createTextVNode("\xA0" + toDisplayString(entry.operation.tags.join(", ")), 1)])) : createCommentVNode("", true),
|
|
320
|
+
entry.operation["x-scalar-stability"] ? (openBlock(), createElementBlock("li", _hoisted_6, [_cache[16] || (_cache[16] = createElementVNode("strong", null, "Stability:", -1)), createTextVNode("\xA0" + toDisplayString(entry.operation["x-scalar-stability"]), 1)])) : createCommentVNode("", true)
|
|
321
|
+
]),
|
|
322
|
+
createVNode(unref(ScalarMarkdown), { value: entry.operation.description }, null, 8, ["value"]),
|
|
323
|
+
entry.requestBody?.content ? (openBlock(), createElementBlock("section", _hoisted_7, [_cache[18] || (_cache[18] = createElementVNode("h4", null, "Request Body", -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(entry.requestBody.content, (bodyContent, mediaType) => {
|
|
324
|
+
return openBlock(), createElementBlock(Fragment, { key: mediaType }, [createElementVNode("h5", null, "Content-Type: " + toDisplayString(mediaType), 1), resolveSchema(bodyContent.schema) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
325
|
+
createVNode(Schema_default, { schema: resolveSchema(bodyContent.schema) }, null, 8, ["schema"]),
|
|
326
|
+
_cache[17] || (_cache[17] = createElementVNode("p", null, [createElementVNode("strong", null, "Example:")], -1)),
|
|
327
|
+
createVNode(XmlOrJson_default, {
|
|
328
|
+
xml: mediaType?.toString().includes("xml"),
|
|
329
|
+
"model-value": unref(getExampleFromSchema)(resolveSchema(bodyContent.schema), { xml: mediaType?.toString().includes("xml") })
|
|
330
|
+
}, null, 8, ["xml", "model-value"])
|
|
331
|
+
], 64)) : createCommentVNode("", true)], 64);
|
|
332
|
+
}), 128))])) : createCommentVNode("", true),
|
|
333
|
+
entry.responses.length ? (openBlock(), createElementBlock("section", _hoisted_8, [_cache[20] || (_cache[20] = createElementVNode("h4", null, "Responses", -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(entry.responses, (entryResponse) => {
|
|
334
|
+
return openBlock(), createElementBlock("section", { key: entryResponse.statusCode }, [createElementVNode("header", null, [createElementVNode("h5", null, [createTextVNode(" Status: " + toDisplayString(entryResponse.statusCode) + " ", 1), entryResponse.response.description ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [createTextVNode(toDisplayString(entryResponse.response.description), 1)], 64)) : createCommentVNode("", true)])]), entryResponse.response.content ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(entryResponse.response.content, (responseContent, mediaType) => {
|
|
335
|
+
return openBlock(), createElementBlock("section", { key: mediaType }, [createElementVNode("h6", null, "Content-Type: " + toDisplayString(mediaType), 1), resolveSchema(responseContent.schema) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
336
|
+
createVNode(Schema_default, { schema: resolveSchema(responseContent.schema) }, null, 8, ["schema"]),
|
|
337
|
+
_cache[19] || (_cache[19] = createElementVNode("p", null, [createElementVNode("strong", null, "Example:")], -1)),
|
|
195
338
|
createVNode(XmlOrJson_default, {
|
|
196
339
|
xml: mediaType?.toString().includes("xml"),
|
|
197
|
-
"model-value": unref(getExampleFromSchema)(
|
|
340
|
+
"model-value": unref(getExampleFromSchema)(resolveSchema(responseContent.schema), { xml: mediaType?.toString().includes("xml") })
|
|
198
341
|
}, null, 8, ["xml", "model-value"])
|
|
199
|
-
], 64)) : createCommentVNode("", true)]
|
|
200
|
-
}), 128))
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
return openBlock(), createElementBlock("section", { key: mediaType }, [createElementVNode("h6", null, "Content-Type: " + toDisplayString(mediaType), 1), content.schema ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
204
|
-
createVNode(Schema_default, { schema: content.schema }, null, 8, ["schema"]),
|
|
205
|
-
_cache[19] || (_cache[19] = createElementVNode("p", null, [createElementVNode("strong", null, "Example:")], -1)),
|
|
206
|
-
createVNode(XmlOrJson_default, {
|
|
207
|
-
xml: mediaType?.toString().includes("xml"),
|
|
208
|
-
"model-value": unref(getExampleFromSchema)(content.schema, { xml: mediaType?.toString().includes("xml") })
|
|
209
|
-
}, null, 8, ["xml", "model-value"])
|
|
210
|
-
], 64)) : createCommentVNode("", true)]);
|
|
211
|
-
}), 128))]);
|
|
212
|
-
}), 128))])) : createCommentVNode("", true)
|
|
213
|
-
]);
|
|
214
|
-
}), 128))], 64);
|
|
342
|
+
], 64)) : createCommentVNode("", true)]);
|
|
343
|
+
}), 128)) : createCommentVNode("", true)]);
|
|
344
|
+
}), 128))])) : createCommentVNode("", true)
|
|
345
|
+
]);
|
|
215
346
|
}), 128))])) : createCommentVNode("", true),
|
|
216
|
-
|
|
217
|
-
return openBlock(), createElementBlock(
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
createElementVNode("
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
]);
|
|
228
|
-
}), 128))], 64);
|
|
347
|
+
webhooks.value.length ? (openBlock(), createElementBlock("section", _hoisted_9, [_cache[26] || (_cache[26] = createElementVNode("h2", null, "Webhooks", -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(webhooks.value, (webhook) => {
|
|
348
|
+
return openBlock(), createElementBlock("section", { key: `${webhook.name}:${webhook.method}` }, [
|
|
349
|
+
createElementVNode("header", null, [createElementVNode("h3", null, [webhook.operation.summary ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [createTextVNode(toDisplayString(webhook.operation.summary), 1)], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [createTextVNode(toDisplayString(webhook.name), 1)], 64)), webhook.operation["x-scalar-stability"] ? (openBlock(), createElementBlock("span", _hoisted_10, "(" + toDisplayString(webhook.operation["x-scalar-stability"]) + ")", 1)) : webhook.operation.deprecated ? (openBlock(), createElementBlock("span", _hoisted_11, "⚠️ Deprecated")) : createCommentVNode("", true)])]),
|
|
350
|
+
createElementVNode("ul", null, [
|
|
351
|
+
createElementVNode("li", null, [_cache[22] || (_cache[22] = createElementVNode("strong", null, "Method:", -1)), createElementVNode("code", null, toDisplayString(webhook.method.toString().toUpperCase()), 1)]),
|
|
352
|
+
createElementVNode("li", null, [_cache[23] || (_cache[23] = createElementVNode("strong", null, "Path:", -1)), createElementVNode("code", null, "/webhooks/" + toDisplayString(webhook.name), 1)]),
|
|
353
|
+
webhook.operation.tags ? (openBlock(), createElementBlock("li", _hoisted_12, [_cache[24] || (_cache[24] = createElementVNode("strong", null, "Tags:", -1)), createTextVNode(" " + toDisplayString(webhook.operation.tags.join(", ")), 1)])) : createCommentVNode("", true),
|
|
354
|
+
webhook.operation.deprecated ? (openBlock(), createElementBlock("li", _hoisted_13, [..._cache[25] || (_cache[25] = [createElementVNode("strong", null, "Deprecated", -1)])])) : createCommentVNode("", true)
|
|
355
|
+
]),
|
|
356
|
+
createVNode(unref(ScalarMarkdown), { value: webhook.operation.description }, null, 8, ["value"])
|
|
357
|
+
]);
|
|
229
358
|
}), 128))])) : createCommentVNode("", true),
|
|
230
|
-
|
|
231
|
-
return openBlock(), createElementBlock("section", { key: name }, [
|
|
232
|
-
createElementVNode("header", null, [createElementVNode("h3", null, toDisplayString(schema.title ?? name), 1)]),
|
|
233
|
-
createElementVNode("ul", null, [createElementVNode("li", null, [_cache[27] || (_cache[27] = createElementVNode("strong", null, "Type:", -1)), createElementVNode("code", null, toDisplayString(schema.type), 1)])]),
|
|
234
|
-
schema.description ? (openBlock(), createBlock(unref(ScalarMarkdown), {
|
|
359
|
+
componentSchemas.value.length ? (openBlock(), createElementBlock("section", _hoisted_14, [_cache[29] || (_cache[29] = createElementVNode("h2", null, "Schemas", -1)), (openBlock(true), createElementBlock(Fragment, null, renderList(componentSchemas.value, (entry) => {
|
|
360
|
+
return openBlock(), createElementBlock("section", { key: entry.name }, [
|
|
361
|
+
createElementVNode("header", null, [createElementVNode("h3", null, toDisplayString(getSchemaView(entry.schema).title ?? entry.name), 1)]),
|
|
362
|
+
createElementVNode("ul", null, [createElementVNode("li", null, [_cache[27] || (_cache[27] = createElementVNode("strong", null, "Type:", -1)), createElementVNode("code", null, toDisplayString(getSchemaView(entry.schema).type), 1)])]),
|
|
363
|
+
getSchemaView(entry.schema).description ? (openBlock(), createBlock(unref(ScalarMarkdown), {
|
|
235
364
|
key: 0,
|
|
236
|
-
value: schema.description
|
|
365
|
+
value: getSchemaView(entry.schema).description
|
|
237
366
|
}, null, 8, ["value"])) : createCommentVNode("", true),
|
|
238
|
-
schema.type === "object" ? (openBlock(), createBlock(Schema_default, {
|
|
367
|
+
getSchemaView(entry.schema).type === "object" ? (openBlock(), createBlock(Schema_default, {
|
|
239
368
|
key: 1,
|
|
240
|
-
schema
|
|
369
|
+
schema: entry.schema
|
|
241
370
|
}, null, 8, ["schema"])) : createCommentVNode("", true),
|
|
242
371
|
_cache[28] || (_cache[28] = createElementVNode("p", null, [createElementVNode("strong", null, "Example:")], -1)),
|
|
243
|
-
schema.type === "object" ? (openBlock(), createBlock(XmlOrJson_default, {
|
|
372
|
+
getSchemaView(entry.schema).type === "object" ? (openBlock(), createBlock(XmlOrJson_default, {
|
|
244
373
|
key: 2,
|
|
245
|
-
"model-value": unref(getExampleFromSchema)(schema)
|
|
374
|
+
"model-value": unref(getExampleFromSchema)(entry.schema)
|
|
246
375
|
}, null, 8, ["model-value"])) : createCommentVNode("", true)
|
|
247
376
|
]);
|
|
248
377
|
}), 128))])) : createCommentVNode("", true)
|
|
@@ -252,9 +381,114 @@ var MarkdownReference_default = /* @__PURE__ */ defineComponent({
|
|
|
252
381
|
});
|
|
253
382
|
//#endregion
|
|
254
383
|
//#region src/create-markdown-from-openapi.ts
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
384
|
+
var HTTP_METHODS = [
|
|
385
|
+
"get",
|
|
386
|
+
"put",
|
|
387
|
+
"post",
|
|
388
|
+
"delete",
|
|
389
|
+
"options",
|
|
390
|
+
"head",
|
|
391
|
+
"patch",
|
|
392
|
+
"trace"
|
|
393
|
+
];
|
|
394
|
+
var HTTP_METHOD_SET = new Set(HTTP_METHODS);
|
|
395
|
+
var isHttpUrl = (value) => {
|
|
396
|
+
try {
|
|
397
|
+
const url = new URL(value);
|
|
398
|
+
return url.protocol === "http:" || url.protocol === "https:";
|
|
399
|
+
} catch {
|
|
400
|
+
return false;
|
|
401
|
+
}
|
|
402
|
+
};
|
|
403
|
+
var toWorkspaceInput = (input) => {
|
|
404
|
+
if (typeof input !== "string") return { document: input };
|
|
405
|
+
const normalized = normalize(input);
|
|
406
|
+
if (isObject(normalized)) return { document: normalized };
|
|
407
|
+
if (isHttpUrl(input)) return { url: input };
|
|
408
|
+
return { path: input };
|
|
409
|
+
};
|
|
410
|
+
var normalizeHttpMethod = (method) => {
|
|
411
|
+
const normalized = method.toLowerCase();
|
|
412
|
+
if (HTTP_METHOD_SET.has(normalized)) return normalized;
|
|
413
|
+
return null;
|
|
414
|
+
};
|
|
415
|
+
var normalizeJsonPointer = (pointer) => {
|
|
416
|
+
if (pointer.startsWith("#/")) return pointer.slice(1);
|
|
417
|
+
if (pointer.startsWith("/")) return pointer;
|
|
418
|
+
throw new Error(`Invalid JSON pointer "${pointer}". JSON pointers must start with "#/"`);
|
|
419
|
+
};
|
|
420
|
+
var parseJsonPointer = (pointer) => normalizeJsonPointer(pointer).slice(1).split("/").map((segment) => segment.replaceAll("~1", "/").replaceAll("~0", "~"));
|
|
421
|
+
var getOperationSelectorFromPointer = (pointer) => {
|
|
422
|
+
const segments = parseJsonPointer(pointer);
|
|
423
|
+
if (segments.length !== 3 || segments[0] !== "paths") throw new Error(`JSON pointer "${pointer}" must target an operation object under "/paths/{path}/{method}"`);
|
|
424
|
+
const path = segments[1];
|
|
425
|
+
const method = segments[2];
|
|
426
|
+
if (!path || !method) throw new Error(`JSON pointer "${pointer}" must target an operation object under "/paths/{path}/{method}"`);
|
|
427
|
+
return {
|
|
428
|
+
path,
|
|
429
|
+
method
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
var getPathEntries = (document) => {
|
|
433
|
+
const paths = document.paths;
|
|
434
|
+
if (!isObject(paths)) return [];
|
|
435
|
+
return Object.entries(paths).flatMap(([path, pathItem]) => isObject(pathItem) ? [[path, pathItem]] : []);
|
|
436
|
+
};
|
|
437
|
+
var filterPathItemToSingleOperation = (pathItem, selectedMethod) => Object.fromEntries(Object.entries(pathItem).filter(([key]) => {
|
|
438
|
+
const method = normalizeHttpMethod(key);
|
|
439
|
+
return !method || method === selectedMethod;
|
|
440
|
+
}));
|
|
441
|
+
var findOperationByPathAndMethod = (document, selector) => {
|
|
442
|
+
const method = normalizeHttpMethod(selector.method);
|
|
443
|
+
if (!method) throw new Error(`Invalid HTTP method "${selector.method}". Supported methods: ${HTTP_METHODS.join(", ")}`);
|
|
444
|
+
const pathItem = getPathEntries(document).find(([path]) => path === selector.path)?.[1];
|
|
445
|
+
if (!pathItem || !(method in pathItem)) throw new Error(`Operation not found for path "${selector.path}" and method "${method.toUpperCase()}"`);
|
|
446
|
+
return {
|
|
447
|
+
path: selector.path,
|
|
448
|
+
method
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
var findOperationsByOperationId = (document, operationId) => getPathEntries(document).flatMap(([path, pathItem]) => Object.entries(pathItem).flatMap(([methodKey, operation]) => {
|
|
452
|
+
const method = normalizeHttpMethod(methodKey);
|
|
453
|
+
if (!method || !isObject(operation)) return [];
|
|
454
|
+
if (("operationId" in operation && typeof operation.operationId === "string" ? operation.operationId : void 0) !== operationId) return [];
|
|
455
|
+
return [{
|
|
456
|
+
path,
|
|
457
|
+
method
|
|
458
|
+
}];
|
|
459
|
+
}));
|
|
460
|
+
var resolveOperationMatch = (document, selector) => {
|
|
461
|
+
if ("pointer" in selector) return findOperationByPathAndMethod(document, getOperationSelectorFromPointer(selector.pointer));
|
|
462
|
+
if ("operationId" in selector) {
|
|
463
|
+
const matches = findOperationsByOperationId(document, selector.operationId);
|
|
464
|
+
if (!matches.length) throw new Error(`Operation with operationId "${selector.operationId}" was not found`);
|
|
465
|
+
if (matches.length > 1) {
|
|
466
|
+
const uniqueCandidates = matches.map(({ path, method }) => `"${method.toUpperCase()} ${path}"`);
|
|
467
|
+
throw new Error(`Multiple operations found for operationId "${selector.operationId}". Use { path, method } instead. Matches: ${uniqueCandidates.join(", ")}`);
|
|
468
|
+
}
|
|
469
|
+
return matches[0];
|
|
470
|
+
}
|
|
471
|
+
return findOperationByPathAndMethod(document, selector);
|
|
472
|
+
};
|
|
473
|
+
var filterDocumentByOperation = (document, selector) => {
|
|
474
|
+
const match = resolveOperationMatch(document, selector);
|
|
475
|
+
const pathItem = getPathEntries(document).find(([path]) => path === match.path)?.[1];
|
|
476
|
+
if (!pathItem) throw new Error(`Operation not found for path "${match.path}" and method "${match.method.toUpperCase()}"`);
|
|
477
|
+
return {
|
|
478
|
+
...document,
|
|
479
|
+
paths: { [match.path]: filterPathItemToSingleOperation(pathItem, match.method) }
|
|
480
|
+
};
|
|
481
|
+
};
|
|
482
|
+
async function createHtmlFromOpenApi(input, options) {
|
|
483
|
+
const workspaceStore = createWorkspaceStore({ fileLoader: readFiles() });
|
|
484
|
+
const name = "openapi-to-markdown";
|
|
485
|
+
if (!await workspaceStore.addDocument({
|
|
486
|
+
name,
|
|
487
|
+
...toWorkspaceInput(input)
|
|
488
|
+
})) throw new Error("Failed to load OpenAPI document");
|
|
489
|
+
const content = workspaceStore.workspace.documents[name];
|
|
490
|
+
if (!content) throw new Error("OpenAPI document could not be resolved");
|
|
491
|
+
return minify(await renderToString(createSSRApp(MarkdownReference_default, { content: options?.operation && isObject(content) ? filterDocumentByOperation(content, options.operation) : content })), {
|
|
258
492
|
removeComments: true,
|
|
259
493
|
removeEmptyElements: true,
|
|
260
494
|
collapseWhitespace: true,
|
|
@@ -266,8 +500,8 @@ async function createHtmlFromOpenApi(input) {
|
|
|
266
500
|
useShortDoctype: true
|
|
267
501
|
});
|
|
268
502
|
}
|
|
269
|
-
async function createMarkdownFromOpenApi(content) {
|
|
270
|
-
return markdownFromHtml(await createHtmlFromOpenApi(content));
|
|
503
|
+
async function createMarkdownFromOpenApi(content, options) {
|
|
504
|
+
return markdownFromHtml(await createHtmlFromOpenApi(content, options));
|
|
271
505
|
}
|
|
272
506
|
async function markdownFromHtml(html) {
|
|
273
507
|
const file = await unified().use(rehypeParse, { fragment: true }).use(remarkGfm).use(rehypeSanitize).use(rehypeRemark).use(remarkStringify, { bullet: "-" }).process(html);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../src/components/Schema.vue","../src/components/Schema.vue","../src/components/XmlOrJson.vue","../src/components/XmlOrJson.vue","../src/components/MarkdownReference.vue","../src/components/MarkdownReference.vue","../src/create-markdown-from-openapi.ts"],"sourcesContent":["<script setup lang=\"ts\">\nimport type { OpenAPIV3_1 } from '@scalar/openapi-types'\n\ndefineProps<{\n schema: OpenAPIV3_1.SchemaObject\n}>()\n\n// Sort properties to show required fields first, then optional, then metadata\nconst sortProperties = (\n properties: Record<string, OpenAPIV3_1.SchemaObject>,\n required?: string[],\n) => {\n const sorted = Object.entries(properties).sort(([a], [b]) => {\n const aRequired = required?.includes(a)\n const bRequired = required?.includes(b)\n if (aRequired && !bRequired) return -1\n if (!aRequired && bRequired) return 1\n return a.localeCompare(b)\n })\n return Object.fromEntries(sorted)\n}\n</script>\n\n<template>\n <section v-if=\"schema\">\n <!-- Composition keywords -->\n <template v-if=\"schema.allOf\">\n <section>\n <header>\n <strong>All of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in schema.allOf\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"schema.anyOf\">\n <section>\n <header>\n <strong>Any of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in schema.anyOf\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"schema.oneOf\">\n <section>\n <header>\n <strong>One of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in schema.oneOf\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"schema.not\">\n <section>\n <header>\n <strong>Not:</strong>\n </header>\n <section>\n <Schema :schema=\"schema.not\" />\n </section>\n </section>\n </template>\n\n <!-- Object type -->\n <template v-else-if=\"schema.type === 'object' || schema.properties\">\n <section>\n <ul>\n <template\n v-for=\"(propSchema, propName) in sortProperties(\n schema.properties || {},\n schema.required,\n )\"\n :key=\"propName\">\n <li>\n <strong>\n <code>{{ propName }}</code>\n <span v-if=\"schema.required?.includes(propName)\">\n (required)\n </span>\n </strong>\n <p>\n <code>\n {{\n Array.isArray(propSchema.type)\n ? propSchema.type.join(' | ')\n : propSchema.type || 'object'\n }}\n </code>\n <template v-if=\"propSchema.format\">\n <span\n >, format: <code>{{ propSchema.format }}</code></span\n >\n </template>\n <template v-if=\"propSchema.enum\">\n <span\n >, possible values:\n <code>{{\n (propSchema.enum as unknown[])\n .map((e: unknown) => JSON.stringify(e))\n .join(', ')\n }}</code>\n </span>\n </template>\n <template v-if=\"propSchema.default !== undefined\">\n <span\n >, default:\n <code>{{ JSON.stringify(propSchema.default) }}</code></span\n >\n </template>\n <template v-if=\"propSchema.description\">\n <span> — {{ propSchema.description }}</span>\n </template>\n </p>\n <Schema\n v-if=\"propSchema.type === 'object' || propSchema.properties\"\n :schema=\"propSchema\" />\n <template v-if=\"propSchema.type === 'array' && propSchema.items\">\n <section>\n <header>\n <strong>Items:</strong>\n </header>\n <Schema :schema=\"propSchema.items\" />\n </section>\n </template>\n </li>\n </template>\n </ul>\n </section>\n </template>\n\n <!-- Array type -->\n <template v-else-if=\"schema.type === 'array' && schema.items\">\n <section>\n <header>\n <strong>Array of:</strong>\n </header>\n <section>\n <Schema :schema=\"schema.items\" />\n </section>\n <ul\n v-if=\"\n schema.minItems !== undefined ||\n schema.maxItems !== undefined ||\n schema.uniqueItems\n \">\n <li v-if=\"schema.minItems !== undefined\">\n Min items: <code>{{ schema.minItems }}</code>\n </li>\n <li v-if=\"schema.maxItems !== undefined\">\n Max items: <code>{{ schema.maxItems }}</code>\n </li>\n <li v-if=\"schema.uniqueItems\">Unique items: <code>true</code></li>\n </ul>\n </section>\n </template>\n\n <!-- Primitive types -->\n <template v-else>\n <section>\n <p>\n <code>{{ schema.type }}</code>\n <template v-if=\"schema.format\">\n <span\n >, format: <code>{{ schema.format }}</code></span\n >\n </template>\n <template v-if=\"schema.enum\">\n <span\n >, possible values:\n <code>{{\n (schema.enum as unknown[])\n .map((e: unknown) => JSON.stringify(e))\n .join(', ')\n }}</code>\n </span>\n </template>\n <template v-if=\"schema.default !== undefined\">\n <span\n >, default:\n <code>{{ JSON.stringify(schema.default) }}</code></span\n >\n </template>\n <template v-if=\"schema.description\">\n <span> — {{ schema.description }}</span>\n </template>\n </p>\n </section>\n </template>\n </section>\n</template>\n","<script setup lang=\"ts\">\nimport type { OpenAPIV3_1 } from '@scalar/openapi-types'\n\ndefineProps<{\n schema: OpenAPIV3_1.SchemaObject\n}>()\n\n// Sort properties to show required fields first, then optional, then metadata\nconst sortProperties = (\n properties: Record<string, OpenAPIV3_1.SchemaObject>,\n required?: string[],\n) => {\n const sorted = Object.entries(properties).sort(([a], [b]) => {\n const aRequired = required?.includes(a)\n const bRequired = required?.includes(b)\n if (aRequired && !bRequired) return -1\n if (!aRequired && bRequired) return 1\n return a.localeCompare(b)\n })\n return Object.fromEntries(sorted)\n}\n</script>\n\n<template>\n <section v-if=\"schema\">\n <!-- Composition keywords -->\n <template v-if=\"schema.allOf\">\n <section>\n <header>\n <strong>All of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in schema.allOf\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"schema.anyOf\">\n <section>\n <header>\n <strong>Any of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in schema.anyOf\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"schema.oneOf\">\n <section>\n <header>\n <strong>One of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in schema.oneOf\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"schema.not\">\n <section>\n <header>\n <strong>Not:</strong>\n </header>\n <section>\n <Schema :schema=\"schema.not\" />\n </section>\n </section>\n </template>\n\n <!-- Object type -->\n <template v-else-if=\"schema.type === 'object' || schema.properties\">\n <section>\n <ul>\n <template\n v-for=\"(propSchema, propName) in sortProperties(\n schema.properties || {},\n schema.required,\n )\"\n :key=\"propName\">\n <li>\n <strong>\n <code>{{ propName }}</code>\n <span v-if=\"schema.required?.includes(propName)\">\n (required)\n </span>\n </strong>\n <p>\n <code>\n {{\n Array.isArray(propSchema.type)\n ? propSchema.type.join(' | ')\n : propSchema.type || 'object'\n }}\n </code>\n <template v-if=\"propSchema.format\">\n <span\n >, format: <code>{{ propSchema.format }}</code></span\n >\n </template>\n <template v-if=\"propSchema.enum\">\n <span\n >, possible values:\n <code>{{\n (propSchema.enum as unknown[])\n .map((e: unknown) => JSON.stringify(e))\n .join(', ')\n }}</code>\n </span>\n </template>\n <template v-if=\"propSchema.default !== undefined\">\n <span\n >, default:\n <code>{{ JSON.stringify(propSchema.default) }}</code></span\n >\n </template>\n <template v-if=\"propSchema.description\">\n <span> — {{ propSchema.description }}</span>\n </template>\n </p>\n <Schema\n v-if=\"propSchema.type === 'object' || propSchema.properties\"\n :schema=\"propSchema\" />\n <template v-if=\"propSchema.type === 'array' && propSchema.items\">\n <section>\n <header>\n <strong>Items:</strong>\n </header>\n <Schema :schema=\"propSchema.items\" />\n </section>\n </template>\n </li>\n </template>\n </ul>\n </section>\n </template>\n\n <!-- Array type -->\n <template v-else-if=\"schema.type === 'array' && schema.items\">\n <section>\n <header>\n <strong>Array of:</strong>\n </header>\n <section>\n <Schema :schema=\"schema.items\" />\n </section>\n <ul\n v-if=\"\n schema.minItems !== undefined ||\n schema.maxItems !== undefined ||\n schema.uniqueItems\n \">\n <li v-if=\"schema.minItems !== undefined\">\n Min items: <code>{{ schema.minItems }}</code>\n </li>\n <li v-if=\"schema.maxItems !== undefined\">\n Max items: <code>{{ schema.maxItems }}</code>\n </li>\n <li v-if=\"schema.uniqueItems\">Unique items: <code>true</code></li>\n </ul>\n </section>\n </template>\n\n <!-- Primitive types -->\n <template v-else>\n <section>\n <p>\n <code>{{ schema.type }}</code>\n <template v-if=\"schema.format\">\n <span\n >, format: <code>{{ schema.format }}</code></span\n >\n </template>\n <template v-if=\"schema.enum\">\n <span\n >, possible values:\n <code>{{\n (schema.enum as unknown[])\n .map((e: unknown) => JSON.stringify(e))\n .join(', ')\n }}</code>\n </span>\n </template>\n <template v-if=\"schema.default !== undefined\">\n <span\n >, default:\n <code>{{ JSON.stringify(schema.default) }}</code></span\n >\n </template>\n <template v-if=\"schema.description\">\n <span> — {{ schema.description }}</span>\n </template>\n </p>\n </section>\n </template>\n </section>\n</template>\n","<script setup lang=\"ts\">\nimport { json2xml } from '@scalar/helpers/file/json2xml'\nimport type { OpenAPIV3_1 } from '@scalar/openapi-types'\n\nwithDefaults(\n defineProps<{\n xml?: boolean\n modelValue: OpenAPIV3_1.SchemaObject\n }>(),\n {\n xml: false,\n },\n)\n</script>\n<template>\n <template v-if=\"xml\">\n <pre><code class=\"language-xml\">{{ json2xml(modelValue) }}</code></pre>\n </template>\n <template v-else>\n <pre><code class=\"language-json\">{{ JSON.stringify(modelValue, null, 2) }}</code></pre>\n </template>\n</template>\n","<script setup lang=\"ts\">\nimport { json2xml } from '@scalar/helpers/file/json2xml'\nimport type { OpenAPIV3_1 } from '@scalar/openapi-types'\n\nwithDefaults(\n defineProps<{\n xml?: boolean\n modelValue: OpenAPIV3_1.SchemaObject\n }>(),\n {\n xml: false,\n },\n)\n</script>\n<template>\n <template v-if=\"xml\">\n <pre><code class=\"language-xml\">{{ json2xml(modelValue) }}</code></pre>\n </template>\n <template v-else>\n <pre><code class=\"language-json\">{{ JSON.stringify(modelValue, null, 2) }}</code></pre>\n </template>\n</template>\n","<script setup lang=\"ts\">\nimport { ScalarMarkdown } from '@scalar/components'\nimport { getExampleFromSchema } from '@scalar/oas-utils/spec-getters'\nimport type { OpenAPIV3_1 } from '@scalar/openapi-types'\n\n// import { snippetz, type HarRequest } from '@scalar/snippetz'\n\nimport Schema from './Schema.vue'\nimport XmlOrJson from './XmlOrJson.vue'\n\nconst { content } = defineProps<{\n content: OpenAPIV3_1.Document\n}>()\n\n// const getRequestExample = (harRequest: Partial<HarRequest>) => {\n// const snippet = snippetz().print('shell', 'curl', {\n// httpVersion: 'HTTP/1.1',\n// headers: [],\n// queryString: [],\n// cookies: [],\n// headersSize: -1,\n// bodySize: -1,\n// method: 'get',\n// ...harRequest,\n// })\n\n// return snippet\n// }\n</script>\n\n<template>\n <section>\n <header>\n <h1>{{ content?.info?.title }}</h1>\n <ul>\n <li>\n <strong>OpenAPI Version:</strong> <code>{{\n content?.openapi\n }}</code>\n </li>\n <li>\n <strong>API Version:</strong> <code>{{\n content?.info?.version\n }}</code>\n </li>\n </ul>\n </header>\n\n <ScalarMarkdown\n :value=\"content?.info?.description\"\n v-if=\"content?.info?.description\" />\n\n <section v-if=\"content?.servers?.length\">\n <h2>Servers</h2>\n <ul>\n <template\n v-for=\"server in content.servers\"\n :key=\"server.url\">\n <li>\n <strong>URL:</strong> <code>{{ server.url }}</code>\n <ul>\n <template v-if=\"server.description\">\n <li>\n <strong>Description:</strong> {{ server.description }}\n </li>\n </template>\n <template\n v-if=\"server.variables && Object.keys(server.variables).length\">\n <li>\n <strong>Variables:</strong>\n <ul>\n <template\n v-for=\"(variable, name) in server.variables\"\n :key=\"name\">\n <li>\n <code>{{ name }}</code> (default:\n <code>{{ variable.default }}</code\n >)<template v-if=\"variable.description\"\n >: {{ variable.description }}\n </template>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </section>\n\n <section v-if=\"Object.keys(content?.paths ?? {}).length\">\n <h2>Operations</h2>\n\n <template\n v-for=\"path in Object.keys(content?.paths ?? {})\"\n :key=\"path\">\n <template\n v-for=\"(operation, method) in content?.paths?.[path]\"\n :key=\"operation\">\n <section>\n <header>\n <h3>\n <template v-if=\"operation.summary\">\n {{ operation.summary }}\n </template>\n <template v-else>\n {{ method.toString().toUpperCase() }} {{ path }}\n </template>\n <template v-if=\"operation['x-scalar-stability']\">\n ({{ operation['x-scalar-stability'] }})\n </template>\n <template v-else-if=\"operation.deprecated\">\n ⚠️ Deprecated\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong> <code>{{\n method.toString().toUpperCase()\n }}</code>\n </li>\n <li>\n <strong>Path:</strong> <code>{{ path }}</code>\n </li>\n <template v-if=\"operation.tags\">\n <li>\n <strong>Tags:</strong> {{ operation.tags.join(', ') }}\n </li>\n </template>\n <template v-if=\"operation['x-scalar-stability']\">\n <li>\n <strong>Stability:</strong> {{\n operation['x-scalar-stability']\n }}\n </li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + path,\n }) }}</code></pre>\n </section> -->\n\n <template v-if=\"operation.requestBody?.content\">\n <section>\n <h4>Request Body</h4>\n <template\n v-for=\"(content, mediaType) in operation.requestBody.content\"\n :key=\"mediaType\">\n <h5>Content-Type: {{ mediaType }}</h5>\n <template v-if=\"content.schema\">\n <Schema :schema=\"content.schema\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(content.schema, {\n xml: mediaType?.toString().includes('xml'),\n })\n \" />\n </template>\n </template>\n </section>\n </template>\n\n <template v-if=\"operation.responses\">\n <section>\n <h4>Responses</h4>\n\n <template\n v-for=\"(response, statusCode) in operation.responses\"\n :key=\"statusCode\">\n <section>\n <header>\n <h5>\n Status: {{ statusCode }}\n <template v-if=\"response.description\">\n {{ response.description }}\n </template>\n </h5>\n </header>\n <template\n v-for=\"(content, mediaType) in response.content\"\n :key=\"mediaType\">\n <section>\n <h6>Content-Type: {{ mediaType }}</h6>\n <template v-if=\"content.schema\">\n <Schema :schema=\"content.schema\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(content.schema, {\n xml: mediaType?.toString().includes('xml'),\n })\n \" />\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n </template>\n </template>\n </section>\n\n <section v-if=\"Object.keys(content?.webhooks ?? {}).length\">\n <h2>Webhooks</h2>\n\n <template\n v-for=\"(webhook, name) in content?.webhooks\"\n :key=\"name\">\n <template\n v-for=\"(operation, method) in webhook\"\n :key=\"operation\">\n <section>\n <header>\n <h3>\n <template v-if=\"operation.summary\">\n {{ operation.summary }}\n </template>\n <template v-else>\n {{ name }}\n </template>\n <template v-if=\"operation['x-scalar-stability']\">\n <span>({{ operation['x-scalar-stability'] }})</span>\n </template>\n <template v-else-if=\"operation.deprecated\">\n <span>⚠️ Deprecated</span>\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong>\n <code>{{ method.toString().toUpperCase() }}</code>\n </li>\n <li>\n <strong>Path:</strong>\n <code>/webhooks/{{ name }}</code>\n </li>\n <template v-if=\"operation.tags\">\n <li>\n <strong>Tags:</strong>\n {{ operation.tags.join(', ') }}\n </li>\n </template>\n <template v-if=\"operation.deprecated\">\n <li><strong>Deprecated</strong></li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + '/webhooks/' + name,\n }) }}</code></pre>\n </section> -->\n </section>\n </template>\n </template>\n </section>\n\n <section\n v-if=\"\n content?.components?.schemas &&\n Object.keys(content.components.schemas).length\n \">\n <h2>Schemas</h2>\n <template\n v-for=\"(schema, name) in content.components.schemas\"\n :key=\"name\">\n <section>\n <header>\n <h3>{{ schema.title ?? name }}</h3>\n </header>\n <ul>\n <li>\n <strong>Type:</strong>\n <code>{{ schema.type }}</code>\n </li>\n </ul>\n <template v-if=\"schema.description\">\n <ScalarMarkdown :value=\"schema.description\" />\n </template>\n <Schema\n v-if=\"schema.type === 'object'\"\n :schema=\"schema\" />\n <p><strong>Example:</strong></p>\n <template v-if=\"schema.type === 'object'\">\n <XmlOrJson :model-value=\"getExampleFromSchema(schema)\" />\n </template>\n </section>\n </template>\n </section>\n </section>\n</template>\n","<script setup lang=\"ts\">\nimport { ScalarMarkdown } from '@scalar/components'\nimport { getExampleFromSchema } from '@scalar/oas-utils/spec-getters'\nimport type { OpenAPIV3_1 } from '@scalar/openapi-types'\n\n// import { snippetz, type HarRequest } from '@scalar/snippetz'\n\nimport Schema from './Schema.vue'\nimport XmlOrJson from './XmlOrJson.vue'\n\nconst { content } = defineProps<{\n content: OpenAPIV3_1.Document\n}>()\n\n// const getRequestExample = (harRequest: Partial<HarRequest>) => {\n// const snippet = snippetz().print('shell', 'curl', {\n// httpVersion: 'HTTP/1.1',\n// headers: [],\n// queryString: [],\n// cookies: [],\n// headersSize: -1,\n// bodySize: -1,\n// method: 'get',\n// ...harRequest,\n// })\n\n// return snippet\n// }\n</script>\n\n<template>\n <section>\n <header>\n <h1>{{ content?.info?.title }}</h1>\n <ul>\n <li>\n <strong>OpenAPI Version:</strong> <code>{{\n content?.openapi\n }}</code>\n </li>\n <li>\n <strong>API Version:</strong> <code>{{\n content?.info?.version\n }}</code>\n </li>\n </ul>\n </header>\n\n <ScalarMarkdown\n :value=\"content?.info?.description\"\n v-if=\"content?.info?.description\" />\n\n <section v-if=\"content?.servers?.length\">\n <h2>Servers</h2>\n <ul>\n <template\n v-for=\"server in content.servers\"\n :key=\"server.url\">\n <li>\n <strong>URL:</strong> <code>{{ server.url }}</code>\n <ul>\n <template v-if=\"server.description\">\n <li>\n <strong>Description:</strong> {{ server.description }}\n </li>\n </template>\n <template\n v-if=\"server.variables && Object.keys(server.variables).length\">\n <li>\n <strong>Variables:</strong>\n <ul>\n <template\n v-for=\"(variable, name) in server.variables\"\n :key=\"name\">\n <li>\n <code>{{ name }}</code> (default:\n <code>{{ variable.default }}</code\n >)<template v-if=\"variable.description\"\n >: {{ variable.description }}\n </template>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </section>\n\n <section v-if=\"Object.keys(content?.paths ?? {}).length\">\n <h2>Operations</h2>\n\n <template\n v-for=\"path in Object.keys(content?.paths ?? {})\"\n :key=\"path\">\n <template\n v-for=\"(operation, method) in content?.paths?.[path]\"\n :key=\"operation\">\n <section>\n <header>\n <h3>\n <template v-if=\"operation.summary\">\n {{ operation.summary }}\n </template>\n <template v-else>\n {{ method.toString().toUpperCase() }} {{ path }}\n </template>\n <template v-if=\"operation['x-scalar-stability']\">\n ({{ operation['x-scalar-stability'] }})\n </template>\n <template v-else-if=\"operation.deprecated\">\n ⚠️ Deprecated\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong> <code>{{\n method.toString().toUpperCase()\n }}</code>\n </li>\n <li>\n <strong>Path:</strong> <code>{{ path }}</code>\n </li>\n <template v-if=\"operation.tags\">\n <li>\n <strong>Tags:</strong> {{ operation.tags.join(', ') }}\n </li>\n </template>\n <template v-if=\"operation['x-scalar-stability']\">\n <li>\n <strong>Stability:</strong> {{\n operation['x-scalar-stability']\n }}\n </li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + path,\n }) }}</code></pre>\n </section> -->\n\n <template v-if=\"operation.requestBody?.content\">\n <section>\n <h4>Request Body</h4>\n <template\n v-for=\"(content, mediaType) in operation.requestBody.content\"\n :key=\"mediaType\">\n <h5>Content-Type: {{ mediaType }}</h5>\n <template v-if=\"content.schema\">\n <Schema :schema=\"content.schema\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(content.schema, {\n xml: mediaType?.toString().includes('xml'),\n })\n \" />\n </template>\n </template>\n </section>\n </template>\n\n <template v-if=\"operation.responses\">\n <section>\n <h4>Responses</h4>\n\n <template\n v-for=\"(response, statusCode) in operation.responses\"\n :key=\"statusCode\">\n <section>\n <header>\n <h5>\n Status: {{ statusCode }}\n <template v-if=\"response.description\">\n {{ response.description }}\n </template>\n </h5>\n </header>\n <template\n v-for=\"(content, mediaType) in response.content\"\n :key=\"mediaType\">\n <section>\n <h6>Content-Type: {{ mediaType }}</h6>\n <template v-if=\"content.schema\">\n <Schema :schema=\"content.schema\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(content.schema, {\n xml: mediaType?.toString().includes('xml'),\n })\n \" />\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n </template>\n </template>\n </section>\n\n <section v-if=\"Object.keys(content?.webhooks ?? {}).length\">\n <h2>Webhooks</h2>\n\n <template\n v-for=\"(webhook, name) in content?.webhooks\"\n :key=\"name\">\n <template\n v-for=\"(operation, method) in webhook\"\n :key=\"operation\">\n <section>\n <header>\n <h3>\n <template v-if=\"operation.summary\">\n {{ operation.summary }}\n </template>\n <template v-else>\n {{ name }}\n </template>\n <template v-if=\"operation['x-scalar-stability']\">\n <span>({{ operation['x-scalar-stability'] }})</span>\n </template>\n <template v-else-if=\"operation.deprecated\">\n <span>⚠️ Deprecated</span>\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong>\n <code>{{ method.toString().toUpperCase() }}</code>\n </li>\n <li>\n <strong>Path:</strong>\n <code>/webhooks/{{ name }}</code>\n </li>\n <template v-if=\"operation.tags\">\n <li>\n <strong>Tags:</strong>\n {{ operation.tags.join(', ') }}\n </li>\n </template>\n <template v-if=\"operation.deprecated\">\n <li><strong>Deprecated</strong></li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + '/webhooks/' + name,\n }) }}</code></pre>\n </section> -->\n </section>\n </template>\n </template>\n </section>\n\n <section\n v-if=\"\n content?.components?.schemas &&\n Object.keys(content.components.schemas).length\n \">\n <h2>Schemas</h2>\n <template\n v-for=\"(schema, name) in content.components.schemas\"\n :key=\"name\">\n <section>\n <header>\n <h3>{{ schema.title ?? name }}</h3>\n </header>\n <ul>\n <li>\n <strong>Type:</strong>\n <code>{{ schema.type }}</code>\n </li>\n </ul>\n <template v-if=\"schema.description\">\n <ScalarMarkdown :value=\"schema.description\" />\n </template>\n <Schema\n v-if=\"schema.type === 'object'\"\n :schema=\"schema\" />\n <p><strong>Example:</strong></p>\n <template v-if=\"schema.type === 'object'\">\n <XmlOrJson :model-value=\"getExampleFromSchema(schema)\" />\n </template>\n </section>\n </template>\n </section>\n </section>\n</template>\n","import { dereference, normalize } from '@scalar/openapi-parser'\nimport type { OpenAPI } from '@scalar/openapi-types'\nimport { upgrade } from '@scalar/openapi-upgrader'\nimport type { UnknownObject } from '@scalar/types/utils'\nimport { minify } from 'html-minifier-terser'\nimport rehypeParse from 'rehype-parse'\nimport rehypeRemark from 'rehype-remark'\nimport rehypeSanitize from 'rehype-sanitize'\nimport remarkGfm from 'remark-gfm'\nimport remarkStringify from 'remark-stringify'\nimport { unified } from 'unified'\nimport { createSSRApp } from 'vue'\nimport { renderToString } from 'vue/server-renderer'\n\nimport MarkdownReference from './components/MarkdownReference.vue'\n\ntype AnyDocument = OpenAPI.Document | Record<string, unknown> | string\n\nexport async function createHtmlFromOpenApi(input: AnyDocument) {\n // TODO: Use the new store here.\n const upgraded = upgrade(normalize(input) as UnknownObject, '3.1')\n const { schema: content } = dereference(upgraded)\n\n // Create and configure a server-side rendered Vue app\n const app = createSSRApp(MarkdownReference, {\n content,\n })\n\n // Get static HTML\n const html = await renderToString(app)\n\n // Clean the output\n return minify(html, {\n removeComments: true,\n removeEmptyElements: true,\n collapseWhitespace: true,\n continueOnParseError: true,\n noNewlinesBeforeTagClose: true,\n preserveLineBreaks: true,\n removeEmptyAttributes: true,\n decodeEntities: true,\n useShortDoctype: true,\n })\n}\n\nexport async function createMarkdownFromOpenApi(content: AnyDocument) {\n return markdownFromHtml(await createHtmlFromOpenApi(content))\n}\n\nasync function markdownFromHtml(html: string): Promise<string> {\n const file = await unified()\n .use(rehypeParse, { fragment: true })\n .use(remarkGfm)\n .use(rehypeSanitize)\n .use(rehypeRemark)\n .use(remarkStringify, {\n bullet: '-',\n })\n .process(html)\n\n return String(file)\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/components/Schema.vue","../src/components/Schema.vue","../src/components/XmlOrJson.vue","../src/components/XmlOrJson.vue","../src/components/MarkdownReference.vue","../src/components/MarkdownReference.vue","../src/create-markdown-from-openapi.ts"],"sourcesContent":["<script setup lang=\"ts\">\nimport { resolve } from '@scalar/workspace-store/resolve'\nimport type { MaybeRefSchemaObject } from '@scalar/workspace-store/schemas/v3.1/strict/schema'\n\nconst { schema } = defineProps<{\n schema: MaybeRefSchemaObject\n}>()\n\ntype ResolvedSchema = NonNullable<\n ReturnType<typeof resolve.schema<MaybeRefSchemaObject>>\n>\n\nconst resolvedSchema = resolve.schema(schema)\n\nconst resolveNestedSchema = (\n value: MaybeRefSchemaObject | undefined,\n): ResolvedSchema | undefined => resolve.schema(value)\n\nconst asObject = (value: unknown): Record<string, unknown> | undefined =>\n value !== null && typeof value === 'object'\n ? (value as Record<string, unknown>)\n : undefined\n\nconst getSchemaType = (\n value: ResolvedSchema | undefined,\n): string | string[] | undefined => {\n const schemaType = asObject(value)?.type\n if (typeof schemaType === 'string') {\n return schemaType\n }\n if (\n Array.isArray(schemaType) &&\n schemaType.every((entry) => typeof entry === 'string')\n ) {\n return schemaType\n }\n return undefined\n}\n\nconst getSchemaArray = (\n value: ResolvedSchema | undefined,\n key: 'allOf' | 'anyOf' | 'oneOf',\n): MaybeRefSchemaObject[] | undefined => {\n const collection = asObject(value)?.[key]\n if (!Array.isArray(collection)) {\n return undefined\n }\n return collection.filter(\n (entry): entry is MaybeRefSchemaObject =>\n entry !== null && typeof entry === 'object',\n )\n}\n\nconst getSchemaNot = (\n value: ResolvedSchema | undefined,\n): MaybeRefSchemaObject | undefined => {\n const notSchema = asObject(value)?.not\n return notSchema !== null && typeof notSchema === 'object'\n ? (notSchema as MaybeRefSchemaObject)\n : undefined\n}\n\nconst getSchemaProperties = (\n value: ResolvedSchema | undefined,\n): Record<string, MaybeRefSchemaObject> => {\n const properties = asObject(value)?.properties\n if (!properties || typeof properties !== 'object') {\n return {}\n }\n return Object.entries(properties).reduce<\n Record<string, MaybeRefSchemaObject>\n >((acc, [name, prop]) => {\n if (prop !== null && typeof prop === 'object') {\n acc[name] = prop as MaybeRefSchemaObject\n }\n return acc\n }, {})\n}\n\nconst getSchemaRequired = (value: ResolvedSchema | undefined): string[] => {\n const required = asObject(value)?.required\n if (!Array.isArray(required)) {\n return []\n }\n return required.filter((item): item is string => typeof item === 'string')\n}\n\nconst getSchemaItems = (\n value: ResolvedSchema | undefined,\n): MaybeRefSchemaObject | undefined => {\n const items = asObject(value)?.items\n return items !== null && typeof items === 'object'\n ? (items as MaybeRefSchemaObject)\n : undefined\n}\n\nconst getSchemaFormat = (\n value: ResolvedSchema | undefined,\n): string | undefined =>\n typeof asObject(value)?.format === 'string'\n ? (asObject(value)?.format as string)\n : undefined\n\nconst getSchemaEnum = (\n value: ResolvedSchema | undefined,\n): unknown[] | undefined => {\n const enumValues = asObject(value)?.enum\n return Array.isArray(enumValues) ? enumValues : undefined\n}\n\nconst getSchemaDefault = (value: ResolvedSchema | undefined): unknown =>\n asObject(value)?.default\n\nconst getSchemaDescription = (\n value: ResolvedSchema | undefined,\n): string | undefined =>\n typeof asObject(value)?.description === 'string'\n ? (asObject(value)?.description as string)\n : undefined\n\nconst getSchemaMinItems = (\n value: ResolvedSchema | undefined,\n): number | undefined =>\n typeof asObject(value)?.minItems === 'number'\n ? (asObject(value)?.minItems as number)\n : undefined\n\nconst getSchemaMaxItems = (\n value: ResolvedSchema | undefined,\n): number | undefined =>\n typeof asObject(value)?.maxItems === 'number'\n ? (asObject(value)?.maxItems as number)\n : undefined\n\nconst getSchemaUniqueItems = (\n value: ResolvedSchema | undefined,\n): boolean | undefined =>\n typeof asObject(value)?.uniqueItems === 'boolean'\n ? (asObject(value)?.uniqueItems as boolean)\n : undefined\n\nconst getResolvedSchemaType = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaType(resolveNestedSchema(value))\nconst getResolvedSchemaFormat = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaFormat(resolveNestedSchema(value))\nconst getResolvedSchemaEnum = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaEnum(resolveNestedSchema(value))\nconst getResolvedSchemaDefault = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaDefault(resolveNestedSchema(value))\nconst getResolvedSchemaDescription = (\n value: MaybeRefSchemaObject | undefined,\n) => getSchemaDescription(resolveNestedSchema(value))\nconst getResolvedSchemaProperties = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaProperties(resolveNestedSchema(value))\nconst getResolvedSchemaItems = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaItems(resolveNestedSchema(value))\n\nconst formatSchemaType = (value: MaybeRefSchemaObject | undefined): string => {\n const schemaType = getResolvedSchemaType(value)\n return Array.isArray(schemaType)\n ? schemaType.join(' | ')\n : schemaType || 'object'\n}\n\nconst formatEnumValues = (value: unknown[] | undefined): string =>\n value?.map((entry: unknown) => JSON.stringify(entry)).join(', ') || ''\n\n// Sort properties to show required fields first, then optional, then metadata\nconst sortProperties = (\n properties: Record<string, MaybeRefSchemaObject>,\n required?: string[],\n) => {\n const sorted = Object.entries(properties).sort(([a], [b]) => {\n const aRequired = required?.includes(a)\n const bRequired = required?.includes(b)\n if (aRequired && !bRequired) return -1\n if (!aRequired && bRequired) return 1\n return a.localeCompare(b)\n })\n return Object.fromEntries(sorted)\n}\n</script>\n\n<template>\n <section v-if=\"resolvedSchema\">\n <!-- Composition keywords -->\n <template v-if=\"getSchemaArray(resolvedSchema, 'allOf')\">\n <section>\n <header>\n <strong>All of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in getSchemaArray(resolvedSchema, 'allOf')\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"getSchemaArray(resolvedSchema, 'anyOf')\">\n <section>\n <header>\n <strong>Any of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in getSchemaArray(resolvedSchema, 'anyOf')\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"getSchemaArray(resolvedSchema, 'oneOf')\">\n <section>\n <header>\n <strong>One of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in getSchemaArray(resolvedSchema, 'oneOf')\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"getSchemaNot(resolvedSchema)\">\n <section>\n <header>\n <strong>Not:</strong>\n </header>\n <section>\n <Schema :schema=\"getSchemaNot(resolvedSchema)!\" />\n </section>\n </section>\n </template>\n\n <!-- Object type -->\n <template\n v-else-if=\"\n getSchemaType(resolvedSchema) === 'object' ||\n Object.keys(getSchemaProperties(resolvedSchema)).length\n \">\n <section>\n <ul>\n <template\n v-for=\"(propSchema, propName) in sortProperties(\n getSchemaProperties(resolvedSchema),\n getSchemaRequired(resolvedSchema),\n )\"\n :key=\"propName\">\n <li>\n <strong>\n <code>{{ propName }}</code>\n <span\n v-if=\"getSchemaRequired(resolvedSchema).includes(propName)\">\n (required)\n </span>\n </strong>\n <p>\n <code>\n {{ formatSchemaType(propSchema) }}\n </code>\n <template v-if=\"getResolvedSchemaFormat(propSchema)\">\n <span\n >, format:\n <code>{{ getResolvedSchemaFormat(propSchema) }}</code></span\n >\n </template>\n <template v-if=\"getResolvedSchemaEnum(propSchema)\">\n <span\n >, possible values:\n <code>{{\n formatEnumValues(getResolvedSchemaEnum(propSchema))\n }}</code>\n </span>\n </template>\n <template\n v-if=\"getResolvedSchemaDefault(propSchema) !== undefined\">\n <span\n >, default:\n <code>{{\n JSON.stringify(getResolvedSchemaDefault(propSchema))\n }}</code></span\n >\n </template>\n <template v-if=\"getResolvedSchemaDescription(propSchema)\">\n <span> — {{ getResolvedSchemaDescription(propSchema) }}</span>\n </template>\n </p>\n <Schema\n v-if=\"\n getResolvedSchemaType(propSchema) === 'object' ||\n Object.keys(getResolvedSchemaProperties(propSchema)).length\n \"\n :schema=\"propSchema\" />\n <template\n v-if=\"\n getResolvedSchemaType(propSchema) === 'array' &&\n getResolvedSchemaItems(propSchema)\n \">\n <section>\n <header>\n <strong>Items:</strong>\n </header>\n <Schema :schema=\"getResolvedSchemaItems(propSchema)!\" />\n </section>\n </template>\n </li>\n </template>\n </ul>\n </section>\n </template>\n\n <!-- Array type -->\n <template\n v-else-if=\"\n getSchemaType(resolvedSchema) === 'array' &&\n getSchemaItems(resolvedSchema)\n \">\n <section>\n <header>\n <strong>Array of:</strong>\n </header>\n <section>\n <Schema :schema=\"getSchemaItems(resolvedSchema)!\" />\n </section>\n <ul\n v-if=\"\n getSchemaMinItems(resolvedSchema) !== undefined ||\n getSchemaMaxItems(resolvedSchema) !== undefined ||\n getSchemaUniqueItems(resolvedSchema)\n \">\n <li v-if=\"getSchemaMinItems(resolvedSchema) !== undefined\">\n Min items: <code>{{ getSchemaMinItems(resolvedSchema) }}</code>\n </li>\n <li v-if=\"getSchemaMaxItems(resolvedSchema) !== undefined\">\n Max items: <code>{{ getSchemaMaxItems(resolvedSchema) }}</code>\n </li>\n <li v-if=\"getSchemaUniqueItems(resolvedSchema)\">\n Unique items: <code>true</code>\n </li>\n </ul>\n </section>\n </template>\n\n <!-- Primitive types -->\n <template v-else>\n <section>\n <p>\n <code>{{ getSchemaType(resolvedSchema) }}</code>\n <template v-if=\"getSchemaFormat(resolvedSchema)\">\n <span\n >, format:\n <code>{{ getSchemaFormat(resolvedSchema) }}</code></span\n >\n </template>\n <template v-if=\"getSchemaEnum(resolvedSchema)\">\n <span\n >, possible values:\n <code>{{ formatEnumValues(getSchemaEnum(resolvedSchema)) }}</code>\n </span>\n </template>\n <template v-if=\"getSchemaDefault(resolvedSchema) !== undefined\">\n <span\n >, default:\n <code>{{\n JSON.stringify(getSchemaDefault(resolvedSchema))\n }}</code></span\n >\n </template>\n <template v-if=\"getSchemaDescription(resolvedSchema)\">\n <span> — {{ getSchemaDescription(resolvedSchema) }}</span>\n </template>\n </p>\n </section>\n </template>\n </section>\n</template>\n","<script setup lang=\"ts\">\nimport { resolve } from '@scalar/workspace-store/resolve'\nimport type { MaybeRefSchemaObject } from '@scalar/workspace-store/schemas/v3.1/strict/schema'\n\nconst { schema } = defineProps<{\n schema: MaybeRefSchemaObject\n}>()\n\ntype ResolvedSchema = NonNullable<\n ReturnType<typeof resolve.schema<MaybeRefSchemaObject>>\n>\n\nconst resolvedSchema = resolve.schema(schema)\n\nconst resolveNestedSchema = (\n value: MaybeRefSchemaObject | undefined,\n): ResolvedSchema | undefined => resolve.schema(value)\n\nconst asObject = (value: unknown): Record<string, unknown> | undefined =>\n value !== null && typeof value === 'object'\n ? (value as Record<string, unknown>)\n : undefined\n\nconst getSchemaType = (\n value: ResolvedSchema | undefined,\n): string | string[] | undefined => {\n const schemaType = asObject(value)?.type\n if (typeof schemaType === 'string') {\n return schemaType\n }\n if (\n Array.isArray(schemaType) &&\n schemaType.every((entry) => typeof entry === 'string')\n ) {\n return schemaType\n }\n return undefined\n}\n\nconst getSchemaArray = (\n value: ResolvedSchema | undefined,\n key: 'allOf' | 'anyOf' | 'oneOf',\n): MaybeRefSchemaObject[] | undefined => {\n const collection = asObject(value)?.[key]\n if (!Array.isArray(collection)) {\n return undefined\n }\n return collection.filter(\n (entry): entry is MaybeRefSchemaObject =>\n entry !== null && typeof entry === 'object',\n )\n}\n\nconst getSchemaNot = (\n value: ResolvedSchema | undefined,\n): MaybeRefSchemaObject | undefined => {\n const notSchema = asObject(value)?.not\n return notSchema !== null && typeof notSchema === 'object'\n ? (notSchema as MaybeRefSchemaObject)\n : undefined\n}\n\nconst getSchemaProperties = (\n value: ResolvedSchema | undefined,\n): Record<string, MaybeRefSchemaObject> => {\n const properties = asObject(value)?.properties\n if (!properties || typeof properties !== 'object') {\n return {}\n }\n return Object.entries(properties).reduce<\n Record<string, MaybeRefSchemaObject>\n >((acc, [name, prop]) => {\n if (prop !== null && typeof prop === 'object') {\n acc[name] = prop as MaybeRefSchemaObject\n }\n return acc\n }, {})\n}\n\nconst getSchemaRequired = (value: ResolvedSchema | undefined): string[] => {\n const required = asObject(value)?.required\n if (!Array.isArray(required)) {\n return []\n }\n return required.filter((item): item is string => typeof item === 'string')\n}\n\nconst getSchemaItems = (\n value: ResolvedSchema | undefined,\n): MaybeRefSchemaObject | undefined => {\n const items = asObject(value)?.items\n return items !== null && typeof items === 'object'\n ? (items as MaybeRefSchemaObject)\n : undefined\n}\n\nconst getSchemaFormat = (\n value: ResolvedSchema | undefined,\n): string | undefined =>\n typeof asObject(value)?.format === 'string'\n ? (asObject(value)?.format as string)\n : undefined\n\nconst getSchemaEnum = (\n value: ResolvedSchema | undefined,\n): unknown[] | undefined => {\n const enumValues = asObject(value)?.enum\n return Array.isArray(enumValues) ? enumValues : undefined\n}\n\nconst getSchemaDefault = (value: ResolvedSchema | undefined): unknown =>\n asObject(value)?.default\n\nconst getSchemaDescription = (\n value: ResolvedSchema | undefined,\n): string | undefined =>\n typeof asObject(value)?.description === 'string'\n ? (asObject(value)?.description as string)\n : undefined\n\nconst getSchemaMinItems = (\n value: ResolvedSchema | undefined,\n): number | undefined =>\n typeof asObject(value)?.minItems === 'number'\n ? (asObject(value)?.minItems as number)\n : undefined\n\nconst getSchemaMaxItems = (\n value: ResolvedSchema | undefined,\n): number | undefined =>\n typeof asObject(value)?.maxItems === 'number'\n ? (asObject(value)?.maxItems as number)\n : undefined\n\nconst getSchemaUniqueItems = (\n value: ResolvedSchema | undefined,\n): boolean | undefined =>\n typeof asObject(value)?.uniqueItems === 'boolean'\n ? (asObject(value)?.uniqueItems as boolean)\n : undefined\n\nconst getResolvedSchemaType = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaType(resolveNestedSchema(value))\nconst getResolvedSchemaFormat = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaFormat(resolveNestedSchema(value))\nconst getResolvedSchemaEnum = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaEnum(resolveNestedSchema(value))\nconst getResolvedSchemaDefault = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaDefault(resolveNestedSchema(value))\nconst getResolvedSchemaDescription = (\n value: MaybeRefSchemaObject | undefined,\n) => getSchemaDescription(resolveNestedSchema(value))\nconst getResolvedSchemaProperties = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaProperties(resolveNestedSchema(value))\nconst getResolvedSchemaItems = (value: MaybeRefSchemaObject | undefined) =>\n getSchemaItems(resolveNestedSchema(value))\n\nconst formatSchemaType = (value: MaybeRefSchemaObject | undefined): string => {\n const schemaType = getResolvedSchemaType(value)\n return Array.isArray(schemaType)\n ? schemaType.join(' | ')\n : schemaType || 'object'\n}\n\nconst formatEnumValues = (value: unknown[] | undefined): string =>\n value?.map((entry: unknown) => JSON.stringify(entry)).join(', ') || ''\n\n// Sort properties to show required fields first, then optional, then metadata\nconst sortProperties = (\n properties: Record<string, MaybeRefSchemaObject>,\n required?: string[],\n) => {\n const sorted = Object.entries(properties).sort(([a], [b]) => {\n const aRequired = required?.includes(a)\n const bRequired = required?.includes(b)\n if (aRequired && !bRequired) return -1\n if (!aRequired && bRequired) return 1\n return a.localeCompare(b)\n })\n return Object.fromEntries(sorted)\n}\n</script>\n\n<template>\n <section v-if=\"resolvedSchema\">\n <!-- Composition keywords -->\n <template v-if=\"getSchemaArray(resolvedSchema, 'allOf')\">\n <section>\n <header>\n <strong>All of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in getSchemaArray(resolvedSchema, 'allOf')\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"getSchemaArray(resolvedSchema, 'anyOf')\">\n <section>\n <header>\n <strong>Any of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in getSchemaArray(resolvedSchema, 'anyOf')\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"getSchemaArray(resolvedSchema, 'oneOf')\">\n <section>\n <header>\n <strong>One of:</strong>\n </header>\n <section\n v-for=\"(subSchema, index) in getSchemaArray(resolvedSchema, 'oneOf')\"\n :key=\"index\">\n <Schema :schema=\"subSchema\" />\n </section>\n </section>\n </template>\n\n <template v-else-if=\"getSchemaNot(resolvedSchema)\">\n <section>\n <header>\n <strong>Not:</strong>\n </header>\n <section>\n <Schema :schema=\"getSchemaNot(resolvedSchema)!\" />\n </section>\n </section>\n </template>\n\n <!-- Object type -->\n <template\n v-else-if=\"\n getSchemaType(resolvedSchema) === 'object' ||\n Object.keys(getSchemaProperties(resolvedSchema)).length\n \">\n <section>\n <ul>\n <template\n v-for=\"(propSchema, propName) in sortProperties(\n getSchemaProperties(resolvedSchema),\n getSchemaRequired(resolvedSchema),\n )\"\n :key=\"propName\">\n <li>\n <strong>\n <code>{{ propName }}</code>\n <span\n v-if=\"getSchemaRequired(resolvedSchema).includes(propName)\">\n (required)\n </span>\n </strong>\n <p>\n <code>\n {{ formatSchemaType(propSchema) }}\n </code>\n <template v-if=\"getResolvedSchemaFormat(propSchema)\">\n <span\n >, format:\n <code>{{ getResolvedSchemaFormat(propSchema) }}</code></span\n >\n </template>\n <template v-if=\"getResolvedSchemaEnum(propSchema)\">\n <span\n >, possible values:\n <code>{{\n formatEnumValues(getResolvedSchemaEnum(propSchema))\n }}</code>\n </span>\n </template>\n <template\n v-if=\"getResolvedSchemaDefault(propSchema) !== undefined\">\n <span\n >, default:\n <code>{{\n JSON.stringify(getResolvedSchemaDefault(propSchema))\n }}</code></span\n >\n </template>\n <template v-if=\"getResolvedSchemaDescription(propSchema)\">\n <span> — {{ getResolvedSchemaDescription(propSchema) }}</span>\n </template>\n </p>\n <Schema\n v-if=\"\n getResolvedSchemaType(propSchema) === 'object' ||\n Object.keys(getResolvedSchemaProperties(propSchema)).length\n \"\n :schema=\"propSchema\" />\n <template\n v-if=\"\n getResolvedSchemaType(propSchema) === 'array' &&\n getResolvedSchemaItems(propSchema)\n \">\n <section>\n <header>\n <strong>Items:</strong>\n </header>\n <Schema :schema=\"getResolvedSchemaItems(propSchema)!\" />\n </section>\n </template>\n </li>\n </template>\n </ul>\n </section>\n </template>\n\n <!-- Array type -->\n <template\n v-else-if=\"\n getSchemaType(resolvedSchema) === 'array' &&\n getSchemaItems(resolvedSchema)\n \">\n <section>\n <header>\n <strong>Array of:</strong>\n </header>\n <section>\n <Schema :schema=\"getSchemaItems(resolvedSchema)!\" />\n </section>\n <ul\n v-if=\"\n getSchemaMinItems(resolvedSchema) !== undefined ||\n getSchemaMaxItems(resolvedSchema) !== undefined ||\n getSchemaUniqueItems(resolvedSchema)\n \">\n <li v-if=\"getSchemaMinItems(resolvedSchema) !== undefined\">\n Min items: <code>{{ getSchemaMinItems(resolvedSchema) }}</code>\n </li>\n <li v-if=\"getSchemaMaxItems(resolvedSchema) !== undefined\">\n Max items: <code>{{ getSchemaMaxItems(resolvedSchema) }}</code>\n </li>\n <li v-if=\"getSchemaUniqueItems(resolvedSchema)\">\n Unique items: <code>true</code>\n </li>\n </ul>\n </section>\n </template>\n\n <!-- Primitive types -->\n <template v-else>\n <section>\n <p>\n <code>{{ getSchemaType(resolvedSchema) }}</code>\n <template v-if=\"getSchemaFormat(resolvedSchema)\">\n <span\n >, format:\n <code>{{ getSchemaFormat(resolvedSchema) }}</code></span\n >\n </template>\n <template v-if=\"getSchemaEnum(resolvedSchema)\">\n <span\n >, possible values:\n <code>{{ formatEnumValues(getSchemaEnum(resolvedSchema)) }}</code>\n </span>\n </template>\n <template v-if=\"getSchemaDefault(resolvedSchema) !== undefined\">\n <span\n >, default:\n <code>{{\n JSON.stringify(getSchemaDefault(resolvedSchema))\n }}</code></span\n >\n </template>\n <template v-if=\"getSchemaDescription(resolvedSchema)\">\n <span> — {{ getSchemaDescription(resolvedSchema) }}</span>\n </template>\n </p>\n </section>\n </template>\n </section>\n</template>\n","<script setup lang=\"ts\">\nimport { json2xml } from '@scalar/helpers/file/json2xml'\nimport type { MaybeRefSchemaObject } from '@scalar/workspace-store/schemas/v3.1/strict/schema'\n\nwithDefaults(\n defineProps<{\n xml?: boolean\n modelValue: MaybeRefSchemaObject\n }>(),\n {\n xml: false,\n },\n)\n</script>\n<template>\n <template v-if=\"xml\">\n <pre><code class=\"language-xml\">{{ json2xml(modelValue) }}</code></pre>\n </template>\n <template v-else>\n <pre><code class=\"language-json\">{{ JSON.stringify(modelValue, null, 2) }}</code></pre>\n </template>\n</template>\n","<script setup lang=\"ts\">\nimport { json2xml } from '@scalar/helpers/file/json2xml'\nimport type { MaybeRefSchemaObject } from '@scalar/workspace-store/schemas/v3.1/strict/schema'\n\nwithDefaults(\n defineProps<{\n xml?: boolean\n modelValue: MaybeRefSchemaObject\n }>(),\n {\n xml: false,\n },\n)\n</script>\n<template>\n <template v-if=\"xml\">\n <pre><code class=\"language-xml\">{{ json2xml(modelValue) }}</code></pre>\n </template>\n <template v-else>\n <pre><code class=\"language-json\">{{ JSON.stringify(modelValue, null, 2) }}</code></pre>\n </template>\n</template>\n","<script setup lang=\"ts\">\nimport { ScalarMarkdown } from '@scalar/components'\nimport { getExampleFromSchema } from '@scalar/oas-utils/spec-getters'\nimport { getResolvedRef } from '@scalar/workspace-store/helpers/get-resolved-ref'\nimport type {\n OpenApiDocument,\n OperationObject,\n RequestBodyObject,\n ResponseObject,\n SchemaObject,\n} from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document'\nimport { computed } from 'vue'\n\n// import { snippetz, type HarRequest } from '@scalar/snippetz'\n\nimport Schema from './Schema.vue'\nimport XmlOrJson from './XmlOrJson.vue'\n\ntype MarkdownDocument = Partial<OpenApiDocument> &\n Pick<OpenApiDocument, 'openapi' | 'info'>\ntype SchemaView = {\n description?: string\n title?: string\n type?: string | string[]\n}\ntype RequestBodyView = {\n content?: Record<string, { schema?: unknown }>\n}\ntype ResponseView = {\n description?: string\n content?: Record<string, { schema?: unknown }>\n}\n\ntype OperationEntry = {\n path: string\n method: string\n operation: OperationObject\n requestBody: RequestBodyView | null\n responses: Array<{\n statusCode: string\n response: ResponseView\n }>\n}\n\nconst { content } = defineProps<{\n content: MarkdownDocument\n}>()\n\n// const getRequestExample = (harRequest: Partial<HarRequest>) => {\n// const snippet = snippetz().print('shell', 'curl', {\n// httpVersion: 'HTTP/1.1',\n// headers: [],\n// queryString: [],\n// cookies: [],\n// headersSize: -1,\n// bodySize: -1,\n// method: 'get',\n// ...harRequest,\n// })\n\n// return snippet\n// }\n\nconst resolveRefAs = <TResolved extends object>(\n reference: unknown,\n): TResolved | null => {\n const resolved = getResolvedRef(reference as never)\n\n return resolved && typeof resolved === 'object'\n ? (resolved as TResolved)\n : null\n}\n\nconst resolveOperation = (operation: unknown): OperationObject | null =>\n resolveRefAs<OperationObject>(operation)\n\nconst resolveSchema = (schema: unknown): SchemaObject | null =>\n resolveRefAs<SchemaObject>(schema)\n\nconst resolveRequestBody = (body: unknown): RequestBodyObject | null =>\n resolveRefAs<RequestBodyObject>(body)\n\nconst resolveResponse = (response: unknown): ResponseObject | null =>\n resolveRefAs<ResponseObject>(response)\n\nconst toRequestBodyView = (body: unknown): RequestBodyView | null =>\n resolveRequestBody(body) as unknown as RequestBodyView | null\n\nconst toResponseView = (response: unknown): ResponseView | null =>\n resolveResponse(response) as unknown as ResponseView | null\n\nconst HTTP_METHODS = new Set([\n 'get',\n 'put',\n 'post',\n 'delete',\n 'options',\n 'head',\n 'patch',\n 'trace',\n])\n\nconst operations = computed<OperationEntry[]>(() => {\n const paths = content?.paths ?? {}\n\n return Object.entries(paths).flatMap(([path, pathItem]) => {\n if (!pathItem || typeof pathItem !== 'object') {\n return []\n }\n\n return Object.entries(pathItem).flatMap(([method, operation]) => {\n if (!HTTP_METHODS.has(method)) {\n return []\n }\n\n const resolvedOperation = resolveOperation(operation)\n\n if (!resolvedOperation) {\n return []\n }\n\n const requestBody = toRequestBodyView(resolvedOperation.requestBody)\n const responses = Object.entries(\n resolvedOperation.responses ?? {},\n ).flatMap(([statusCode, response]) => {\n const resolvedResponse = toResponseView(response)\n\n if (!resolvedResponse) {\n return []\n }\n\n return [{ statusCode, response: resolvedResponse }]\n })\n\n return [\n {\n path,\n method,\n operation: resolvedOperation,\n requestBody,\n responses,\n },\n ]\n })\n })\n})\n\nconst webhooks = computed(() => {\n const webhookItems = content?.webhooks ?? {}\n\n return Object.entries(webhookItems).flatMap(([name, pathItem]) => {\n if (!pathItem || typeof pathItem !== 'object') {\n return []\n }\n\n return Object.entries(pathItem).flatMap(([method, operation]) => {\n if (!HTTP_METHODS.has(method)) {\n return []\n }\n\n const resolvedOperation = resolveOperation(operation)\n\n if (!resolvedOperation) {\n return []\n }\n\n return [{ name, method, operation: resolvedOperation }]\n })\n })\n})\n\nconst componentSchemas = computed(() => {\n const schemas = content?.components?.schemas ?? {}\n\n return Object.entries(schemas).flatMap(([name, schema]) => {\n const resolvedSchema = resolveSchema(schema)\n\n if (!resolvedSchema) {\n return []\n }\n\n return [{ name, schema: resolvedSchema }]\n })\n})\n\nconst getSchemaView = (schema: SchemaObject): SchemaView =>\n schema as unknown as SchemaView\n</script>\n\n<template>\n <section>\n <header>\n <h1>{{ content?.info?.title }}</h1>\n <ul>\n <li>\n <strong>OpenAPI Version:</strong> <code>{{\n content?.openapi\n }}</code>\n </li>\n <li>\n <strong>API Version:</strong> <code>{{\n content?.info?.version\n }}</code>\n </li>\n </ul>\n </header>\n\n <ScalarMarkdown\n :value=\"content?.info?.description\"\n v-if=\"content?.info?.description\" />\n\n <section v-if=\"content?.servers?.length\">\n <h2>Servers</h2>\n <ul>\n <template\n v-for=\"server in content.servers\"\n :key=\"server.url\">\n <li>\n <strong>URL:</strong> <code>{{ server.url }}</code>\n <ul>\n <template v-if=\"server.description\">\n <li>\n <strong>Description:</strong> {{ server.description }}\n </li>\n </template>\n <template\n v-if=\"server.variables && Object.keys(server.variables).length\">\n <li>\n <strong>Variables:</strong>\n <ul>\n <template\n v-for=\"(variable, name) in server.variables\"\n :key=\"name\">\n <li>\n <code>{{ name }}</code> (default:\n <code>{{ variable.default }}</code\n >)<template v-if=\"variable.description\"\n >: {{ variable.description }}\n </template>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </section>\n\n <section v-if=\"operations.length\">\n <h2>Operations</h2>\n\n <template\n v-for=\"entry in operations\"\n :key=\"`${entry.method}:${entry.path}`\">\n <section>\n <header>\n <h3>\n <template v-if=\"entry.operation.summary\">\n {{ entry.operation.summary }}\n </template>\n <template v-else>\n {{ entry.method.toString().toUpperCase() }} {{ entry.path }}\n </template>\n <template v-if=\"entry.operation['x-scalar-stability']\">\n ({{ entry.operation['x-scalar-stability'] }})\n </template>\n <template v-else-if=\"entry.operation.deprecated\">\n ⚠️ Deprecated\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong> <code>{{\n entry.method.toString().toUpperCase()\n }}</code>\n </li>\n <li>\n <strong>Path:</strong> <code>{{ entry.path }}</code>\n </li>\n <template v-if=\"entry.operation.tags\">\n <li>\n <strong>Tags:</strong> {{\n entry.operation.tags.join(', ')\n }}\n </li>\n </template>\n <template v-if=\"entry.operation['x-scalar-stability']\">\n <li>\n <strong>Stability:</strong> {{\n entry.operation['x-scalar-stability']\n }}\n </li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"entry.operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + path,\n }) }}</code></pre>\n </section> -->\n\n <template v-if=\"entry.requestBody?.content\">\n <section>\n <h4>Request Body</h4>\n <template\n v-for=\"(bodyContent, mediaType) in entry.requestBody.content\"\n :key=\"mediaType\">\n <h5>Content-Type: {{ mediaType }}</h5>\n <template v-if=\"resolveSchema(bodyContent.schema)\">\n <Schema :schema=\"resolveSchema(bodyContent.schema)!\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(resolveSchema(bodyContent.schema)!, {\n xml: mediaType?.toString().includes('xml'),\n })\n \" />\n </template>\n </template>\n </section>\n </template>\n\n <template v-if=\"entry.responses.length\">\n <section>\n <h4>Responses</h4>\n\n <template\n v-for=\"entryResponse in entry.responses\"\n :key=\"entryResponse.statusCode\">\n <section>\n <header>\n <h5>\n Status: {{ entryResponse.statusCode }}\n <template v-if=\"entryResponse.response.description\">\n {{ entryResponse.response.description }}\n </template>\n </h5>\n </header>\n <template v-if=\"entryResponse.response.content\">\n <template\n v-for=\"(responseContent, mediaType) in entryResponse\n .response.content\"\n :key=\"mediaType\">\n <section>\n <h6>Content-Type: {{ mediaType }}</h6>\n <template v-if=\"resolveSchema(responseContent.schema)\">\n <Schema\n :schema=\"resolveSchema(responseContent.schema)!\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(\n resolveSchema(responseContent.schema)!,\n {\n xml: mediaType?.toString().includes('xml'),\n },\n )\n \" />\n </template>\n </section>\n </template>\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n\n <section v-if=\"webhooks.length\">\n <h2>Webhooks</h2>\n\n <template\n v-for=\"webhook in webhooks\"\n :key=\"`${webhook.name}:${webhook.method}`\">\n <section>\n <header>\n <h3>\n <template v-if=\"webhook.operation.summary\">\n {{ webhook.operation.summary }}\n </template>\n <template v-else>\n {{ webhook.name }}\n </template>\n <template v-if=\"webhook.operation['x-scalar-stability']\">\n <span>({{ webhook.operation['x-scalar-stability'] }})</span>\n </template>\n <template v-else-if=\"webhook.operation.deprecated\">\n <span>⚠️ Deprecated</span>\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong>\n <code>{{ webhook.method.toString().toUpperCase() }}</code>\n </li>\n <li>\n <strong>Path:</strong>\n <code>/webhooks/{{ webhook.name }}</code>\n </li>\n <template v-if=\"webhook.operation.tags\">\n <li>\n <strong>Tags:</strong>\n {{ webhook.operation.tags.join(', ') }}\n </li>\n </template>\n <template v-if=\"webhook.operation.deprecated\">\n <li><strong>Deprecated</strong></li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"webhook.operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + '/webhooks/' + name,\n }) }}</code></pre>\n </section> -->\n </section>\n </template>\n </section>\n\n <section v-if=\"componentSchemas.length\">\n <h2>Schemas</h2>\n <template\n v-for=\"entry in componentSchemas\"\n :key=\"entry.name\">\n <section>\n <header>\n <h3>{{ getSchemaView(entry.schema).title ?? entry.name }}</h3>\n </header>\n <ul>\n <li>\n <strong>Type:</strong>\n <code>{{ getSchemaView(entry.schema).type }}</code>\n </li>\n </ul>\n <template v-if=\"getSchemaView(entry.schema).description\">\n <ScalarMarkdown :value=\"getSchemaView(entry.schema).description\" />\n </template>\n <Schema\n v-if=\"getSchemaView(entry.schema).type === 'object'\"\n :schema=\"entry.schema\" />\n <p><strong>Example:</strong></p>\n <template v-if=\"getSchemaView(entry.schema).type === 'object'\">\n <XmlOrJson :model-value=\"getExampleFromSchema(entry.schema)\" />\n </template>\n </section>\n </template>\n </section>\n </section>\n</template>\n","<script setup lang=\"ts\">\nimport { ScalarMarkdown } from '@scalar/components'\nimport { getExampleFromSchema } from '@scalar/oas-utils/spec-getters'\nimport { getResolvedRef } from '@scalar/workspace-store/helpers/get-resolved-ref'\nimport type {\n OpenApiDocument,\n OperationObject,\n RequestBodyObject,\n ResponseObject,\n SchemaObject,\n} from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document'\nimport { computed } from 'vue'\n\n// import { snippetz, type HarRequest } from '@scalar/snippetz'\n\nimport Schema from './Schema.vue'\nimport XmlOrJson from './XmlOrJson.vue'\n\ntype MarkdownDocument = Partial<OpenApiDocument> &\n Pick<OpenApiDocument, 'openapi' | 'info'>\ntype SchemaView = {\n description?: string\n title?: string\n type?: string | string[]\n}\ntype RequestBodyView = {\n content?: Record<string, { schema?: unknown }>\n}\ntype ResponseView = {\n description?: string\n content?: Record<string, { schema?: unknown }>\n}\n\ntype OperationEntry = {\n path: string\n method: string\n operation: OperationObject\n requestBody: RequestBodyView | null\n responses: Array<{\n statusCode: string\n response: ResponseView\n }>\n}\n\nconst { content } = defineProps<{\n content: MarkdownDocument\n}>()\n\n// const getRequestExample = (harRequest: Partial<HarRequest>) => {\n// const snippet = snippetz().print('shell', 'curl', {\n// httpVersion: 'HTTP/1.1',\n// headers: [],\n// queryString: [],\n// cookies: [],\n// headersSize: -1,\n// bodySize: -1,\n// method: 'get',\n// ...harRequest,\n// })\n\n// return snippet\n// }\n\nconst resolveRefAs = <TResolved extends object>(\n reference: unknown,\n): TResolved | null => {\n const resolved = getResolvedRef(reference as never)\n\n return resolved && typeof resolved === 'object'\n ? (resolved as TResolved)\n : null\n}\n\nconst resolveOperation = (operation: unknown): OperationObject | null =>\n resolveRefAs<OperationObject>(operation)\n\nconst resolveSchema = (schema: unknown): SchemaObject | null =>\n resolveRefAs<SchemaObject>(schema)\n\nconst resolveRequestBody = (body: unknown): RequestBodyObject | null =>\n resolveRefAs<RequestBodyObject>(body)\n\nconst resolveResponse = (response: unknown): ResponseObject | null =>\n resolveRefAs<ResponseObject>(response)\n\nconst toRequestBodyView = (body: unknown): RequestBodyView | null =>\n resolveRequestBody(body) as unknown as RequestBodyView | null\n\nconst toResponseView = (response: unknown): ResponseView | null =>\n resolveResponse(response) as unknown as ResponseView | null\n\nconst HTTP_METHODS = new Set([\n 'get',\n 'put',\n 'post',\n 'delete',\n 'options',\n 'head',\n 'patch',\n 'trace',\n])\n\nconst operations = computed<OperationEntry[]>(() => {\n const paths = content?.paths ?? {}\n\n return Object.entries(paths).flatMap(([path, pathItem]) => {\n if (!pathItem || typeof pathItem !== 'object') {\n return []\n }\n\n return Object.entries(pathItem).flatMap(([method, operation]) => {\n if (!HTTP_METHODS.has(method)) {\n return []\n }\n\n const resolvedOperation = resolveOperation(operation)\n\n if (!resolvedOperation) {\n return []\n }\n\n const requestBody = toRequestBodyView(resolvedOperation.requestBody)\n const responses = Object.entries(\n resolvedOperation.responses ?? {},\n ).flatMap(([statusCode, response]) => {\n const resolvedResponse = toResponseView(response)\n\n if (!resolvedResponse) {\n return []\n }\n\n return [{ statusCode, response: resolvedResponse }]\n })\n\n return [\n {\n path,\n method,\n operation: resolvedOperation,\n requestBody,\n responses,\n },\n ]\n })\n })\n})\n\nconst webhooks = computed(() => {\n const webhookItems = content?.webhooks ?? {}\n\n return Object.entries(webhookItems).flatMap(([name, pathItem]) => {\n if (!pathItem || typeof pathItem !== 'object') {\n return []\n }\n\n return Object.entries(pathItem).flatMap(([method, operation]) => {\n if (!HTTP_METHODS.has(method)) {\n return []\n }\n\n const resolvedOperation = resolveOperation(operation)\n\n if (!resolvedOperation) {\n return []\n }\n\n return [{ name, method, operation: resolvedOperation }]\n })\n })\n})\n\nconst componentSchemas = computed(() => {\n const schemas = content?.components?.schemas ?? {}\n\n return Object.entries(schemas).flatMap(([name, schema]) => {\n const resolvedSchema = resolveSchema(schema)\n\n if (!resolvedSchema) {\n return []\n }\n\n return [{ name, schema: resolvedSchema }]\n })\n})\n\nconst getSchemaView = (schema: SchemaObject): SchemaView =>\n schema as unknown as SchemaView\n</script>\n\n<template>\n <section>\n <header>\n <h1>{{ content?.info?.title }}</h1>\n <ul>\n <li>\n <strong>OpenAPI Version:</strong> <code>{{\n content?.openapi\n }}</code>\n </li>\n <li>\n <strong>API Version:</strong> <code>{{\n content?.info?.version\n }}</code>\n </li>\n </ul>\n </header>\n\n <ScalarMarkdown\n :value=\"content?.info?.description\"\n v-if=\"content?.info?.description\" />\n\n <section v-if=\"content?.servers?.length\">\n <h2>Servers</h2>\n <ul>\n <template\n v-for=\"server in content.servers\"\n :key=\"server.url\">\n <li>\n <strong>URL:</strong> <code>{{ server.url }}</code>\n <ul>\n <template v-if=\"server.description\">\n <li>\n <strong>Description:</strong> {{ server.description }}\n </li>\n </template>\n <template\n v-if=\"server.variables && Object.keys(server.variables).length\">\n <li>\n <strong>Variables:</strong>\n <ul>\n <template\n v-for=\"(variable, name) in server.variables\"\n :key=\"name\">\n <li>\n <code>{{ name }}</code> (default:\n <code>{{ variable.default }}</code\n >)<template v-if=\"variable.description\"\n >: {{ variable.description }}\n </template>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </li>\n </template>\n </ul>\n </section>\n\n <section v-if=\"operations.length\">\n <h2>Operations</h2>\n\n <template\n v-for=\"entry in operations\"\n :key=\"`${entry.method}:${entry.path}`\">\n <section>\n <header>\n <h3>\n <template v-if=\"entry.operation.summary\">\n {{ entry.operation.summary }}\n </template>\n <template v-else>\n {{ entry.method.toString().toUpperCase() }} {{ entry.path }}\n </template>\n <template v-if=\"entry.operation['x-scalar-stability']\">\n ({{ entry.operation['x-scalar-stability'] }})\n </template>\n <template v-else-if=\"entry.operation.deprecated\">\n ⚠️ Deprecated\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong> <code>{{\n entry.method.toString().toUpperCase()\n }}</code>\n </li>\n <li>\n <strong>Path:</strong> <code>{{ entry.path }}</code>\n </li>\n <template v-if=\"entry.operation.tags\">\n <li>\n <strong>Tags:</strong> {{\n entry.operation.tags.join(', ')\n }}\n </li>\n </template>\n <template v-if=\"entry.operation['x-scalar-stability']\">\n <li>\n <strong>Stability:</strong> {{\n entry.operation['x-scalar-stability']\n }}\n </li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"entry.operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + path,\n }) }}</code></pre>\n </section> -->\n\n <template v-if=\"entry.requestBody?.content\">\n <section>\n <h4>Request Body</h4>\n <template\n v-for=\"(bodyContent, mediaType) in entry.requestBody.content\"\n :key=\"mediaType\">\n <h5>Content-Type: {{ mediaType }}</h5>\n <template v-if=\"resolveSchema(bodyContent.schema)\">\n <Schema :schema=\"resolveSchema(bodyContent.schema)!\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(resolveSchema(bodyContent.schema)!, {\n xml: mediaType?.toString().includes('xml'),\n })\n \" />\n </template>\n </template>\n </section>\n </template>\n\n <template v-if=\"entry.responses.length\">\n <section>\n <h4>Responses</h4>\n\n <template\n v-for=\"entryResponse in entry.responses\"\n :key=\"entryResponse.statusCode\">\n <section>\n <header>\n <h5>\n Status: {{ entryResponse.statusCode }}\n <template v-if=\"entryResponse.response.description\">\n {{ entryResponse.response.description }}\n </template>\n </h5>\n </header>\n <template v-if=\"entryResponse.response.content\">\n <template\n v-for=\"(responseContent, mediaType) in entryResponse\n .response.content\"\n :key=\"mediaType\">\n <section>\n <h6>Content-Type: {{ mediaType }}</h6>\n <template v-if=\"resolveSchema(responseContent.schema)\">\n <Schema\n :schema=\"resolveSchema(responseContent.schema)!\" />\n <p><strong>Example:</strong></p>\n <XmlOrJson\n :xml=\"mediaType?.toString().includes('xml')\"\n :model-value=\"\n getExampleFromSchema(\n resolveSchema(responseContent.schema)!,\n {\n xml: mediaType?.toString().includes('xml'),\n },\n )\n \" />\n </template>\n </section>\n </template>\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n </template>\n </section>\n\n <section v-if=\"webhooks.length\">\n <h2>Webhooks</h2>\n\n <template\n v-for=\"webhook in webhooks\"\n :key=\"`${webhook.name}:${webhook.method}`\">\n <section>\n <header>\n <h3>\n <template v-if=\"webhook.operation.summary\">\n {{ webhook.operation.summary }}\n </template>\n <template v-else>\n {{ webhook.name }}\n </template>\n <template v-if=\"webhook.operation['x-scalar-stability']\">\n <span>({{ webhook.operation['x-scalar-stability'] }})</span>\n </template>\n <template v-else-if=\"webhook.operation.deprecated\">\n <span>⚠️ Deprecated</span>\n </template>\n </h3>\n </header>\n\n <ul>\n <li>\n <strong>Method:</strong>\n <code>{{ webhook.method.toString().toUpperCase() }}</code>\n </li>\n <li>\n <strong>Path:</strong>\n <code>/webhooks/{{ webhook.name }}</code>\n </li>\n <template v-if=\"webhook.operation.tags\">\n <li>\n <strong>Tags:</strong>\n {{ webhook.operation.tags.join(', ') }}\n </li>\n </template>\n <template v-if=\"webhook.operation.deprecated\">\n <li><strong>Deprecated</strong></li>\n </template>\n </ul>\n\n <ScalarMarkdown :value=\"webhook.operation.description\" />\n\n <!-- TODO: We need way more context to generate proper request examples -->\n <!-- <section>\n <h4>Request Example</h4>\n <pre><code>{{ getRequestExample({\n method: method.toString(),\n url: content.servers?.[0]?.url + '/webhooks/' + name,\n }) }}</code></pre>\n </section> -->\n </section>\n </template>\n </section>\n\n <section v-if=\"componentSchemas.length\">\n <h2>Schemas</h2>\n <template\n v-for=\"entry in componentSchemas\"\n :key=\"entry.name\">\n <section>\n <header>\n <h3>{{ getSchemaView(entry.schema).title ?? entry.name }}</h3>\n </header>\n <ul>\n <li>\n <strong>Type:</strong>\n <code>{{ getSchemaView(entry.schema).type }}</code>\n </li>\n </ul>\n <template v-if=\"getSchemaView(entry.schema).description\">\n <ScalarMarkdown :value=\"getSchemaView(entry.schema).description\" />\n </template>\n <Schema\n v-if=\"getSchemaView(entry.schema).type === 'object'\"\n :schema=\"entry.schema\" />\n <p><strong>Example:</strong></p>\n <template v-if=\"getSchemaView(entry.schema).type === 'object'\">\n <XmlOrJson :model-value=\"getExampleFromSchema(entry.schema)\" />\n </template>\n </section>\n </template>\n </section>\n </section>\n</template>\n","import { isObject } from '@scalar/helpers/object/is-object'\nimport { readFiles } from '@scalar/json-magic/bundle/plugins/node'\nimport { normalize } from '@scalar/json-magic/helpers/normalize'\nimport type { OpenApiDocument, PathItemObject } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document'\nimport { createWorkspaceStore } from '@scalar/workspace-store/client'\nimport { minify } from 'html-minifier-terser'\nimport rehypeParse from 'rehype-parse'\nimport rehypeRemark from 'rehype-remark'\nimport rehypeSanitize from 'rehype-sanitize'\nimport remarkGfm from 'remark-gfm'\nimport remarkStringify from 'remark-stringify'\nimport { unified } from 'unified'\nimport { createSSRApp } from 'vue'\nimport { renderToString } from 'vue/server-renderer'\n\nimport MarkdownReference from './components/MarkdownReference.vue'\n\ntype AnyDocument = OpenApiDocument | Record<string, unknown> | string\ntype HttpMethodKeys = Exclude<keyof PathItemObject, '$ref' | 'summary' | 'description' | 'servers' | 'parameters'>\nexport type HttpMethod = Extract<HttpMethodKeys, string>\nexport type OperationSelector =\n | {\n path: string\n method: HttpMethod | Uppercase<HttpMethod>\n }\n | {\n operationId: string\n }\n | {\n pointer: string\n }\nexport type OpenApiRenderOptions = {\n operation?: OperationSelector\n}\ntype WorkspaceInput =\n | {\n document: Record<string, unknown>\n }\n | {\n url: string\n }\n | {\n path: string\n }\ntype OperationMatch = {\n path: string\n method: HttpMethod\n}\n\nconst HTTP_METHODS: HttpMethod[] = ['get', 'put', 'post', 'delete', 'options', 'head', 'patch', 'trace']\nconst HTTP_METHOD_SET = new Set<string>(HTTP_METHODS)\n\nconst isHttpUrl = (value: string): boolean => {\n try {\n const url = new URL(value)\n return url.protocol === 'http:' || url.protocol === 'https:'\n } catch {\n return false\n }\n}\n\nconst toWorkspaceInput = (input: AnyDocument): WorkspaceInput => {\n if (typeof input !== 'string') {\n return { document: input as Record<string, unknown> }\n }\n\n const normalized = normalize(input)\n\n if (isObject(normalized)) {\n return { document: normalized as Record<string, unknown> }\n }\n\n if (isHttpUrl(input)) {\n return { url: input }\n }\n\n return { path: input }\n}\n\nconst normalizeHttpMethod = (method: string): HttpMethod | null => {\n const normalized = method.toLowerCase()\n\n if (HTTP_METHOD_SET.has(normalized)) {\n return normalized as HttpMethod\n }\n\n return null\n}\n\nconst normalizeJsonPointer = (pointer: string): string => {\n if (pointer.startsWith('#/')) {\n return pointer.slice(1)\n }\n\n if (pointer.startsWith('/')) {\n return pointer\n }\n\n throw new Error(`Invalid JSON pointer \"${pointer}\". JSON pointers must start with \"#/\"`)\n}\n\nconst parseJsonPointer = (pointer: string): string[] =>\n normalizeJsonPointer(pointer)\n .slice(1)\n .split('/')\n .map((segment) => segment.replaceAll('~1', '/').replaceAll('~0', '~'))\n\nconst getOperationSelectorFromPointer = (pointer: string): Extract<OperationSelector, { path: string }> => {\n const segments = parseJsonPointer(pointer)\n\n if (segments.length !== 3 || segments[0] !== 'paths') {\n throw new Error(`JSON pointer \"${pointer}\" must target an operation object under \"/paths/{path}/{method}\"`)\n }\n\n const path = segments[1]\n const method = segments[2]\n\n if (!path || !method) {\n throw new Error(`JSON pointer \"${pointer}\" must target an operation object under \"/paths/{path}/{method}\"`)\n }\n\n return {\n path,\n method: method as HttpMethod,\n }\n}\n\nconst getPathEntries = (document: OpenApiDocument): Array<[string, PathItemObject]> => {\n const paths = document.paths\n\n if (!isObject(paths)) {\n return []\n }\n\n return Object.entries(paths).flatMap(([path, pathItem]) =>\n isObject(pathItem) ? [[path, pathItem as PathItemObject]] : [],\n )\n}\n\nconst filterPathItemToSingleOperation = (pathItem: PathItemObject, selectedMethod: HttpMethod): PathItemObject =>\n Object.fromEntries(\n Object.entries(pathItem).filter(([key]) => {\n const method = normalizeHttpMethod(key)\n return !method || method === selectedMethod\n }),\n )\n\nconst findOperationByPathAndMethod = (\n document: OpenApiDocument,\n selector: Extract<OperationSelector, { path: string }>,\n): OperationMatch => {\n const method = normalizeHttpMethod(selector.method)\n\n if (!method) {\n throw new Error(`Invalid HTTP method \"${selector.method}\". Supported methods: ${HTTP_METHODS.join(', ')}`)\n }\n\n const pathEntries = getPathEntries(document)\n const pathItem = pathEntries.find(([path]) => path === selector.path)?.[1]\n\n if (!pathItem || !(method in pathItem)) {\n throw new Error(`Operation not found for path \"${selector.path}\" and method \"${method.toUpperCase()}\"`)\n }\n\n return {\n path: selector.path,\n method,\n }\n}\n\nconst findOperationsByOperationId = (document: OpenApiDocument, operationId: string): OperationMatch[] =>\n getPathEntries(document).flatMap(([path, pathItem]) =>\n Object.entries(pathItem).flatMap(([methodKey, operation]) => {\n const method = normalizeHttpMethod(methodKey)\n\n if (!method || !isObject(operation)) {\n return []\n }\n\n const candidateOperationId =\n 'operationId' in operation && typeof operation.operationId === 'string' ? operation.operationId : undefined\n\n if (candidateOperationId !== operationId) {\n return []\n }\n\n return [{ path, method }]\n }),\n )\n\nconst resolveOperationMatch = (document: OpenApiDocument, selector: OperationSelector): OperationMatch => {\n if ('pointer' in selector) {\n return findOperationByPathAndMethod(document, getOperationSelectorFromPointer(selector.pointer))\n }\n\n if ('operationId' in selector) {\n const matches = findOperationsByOperationId(document, selector.operationId)\n\n if (!matches.length) {\n throw new Error(`Operation with operationId \"${selector.operationId}\" was not found`)\n }\n\n if (matches.length > 1) {\n const uniqueCandidates = matches.map(({ path, method }) => `\"${method.toUpperCase()} ${path}\"`)\n\n throw new Error(\n `Multiple operations found for operationId \"${selector.operationId}\". Use { path, method } instead. Matches: ${uniqueCandidates.join(', ')}`,\n )\n }\n\n return matches[0] as OperationMatch\n }\n\n return findOperationByPathAndMethod(document, selector)\n}\n\nconst filterDocumentByOperation = (document: OpenApiDocument, selector: OperationSelector): OpenApiDocument => {\n const match = resolveOperationMatch(document, selector)\n const pathItem = getPathEntries(document).find(([path]) => path === match.path)?.[1]\n\n if (!pathItem) {\n throw new Error(`Operation not found for path \"${match.path}\" and method \"${match.method.toUpperCase()}\"`)\n }\n\n return {\n ...document,\n paths: {\n [match.path]: filterPathItemToSingleOperation(pathItem, match.method),\n },\n }\n}\n\nexport async function createHtmlFromOpenApi(input: AnyDocument, options?: OpenApiRenderOptions) {\n const workspaceStore = createWorkspaceStore({\n fileLoader: readFiles(),\n })\n\n const name = 'openapi-to-markdown'\n const loaded = await workspaceStore.addDocument({\n name,\n ...toWorkspaceInput(input),\n })\n\n if (!loaded) {\n throw new Error('Failed to load OpenAPI document')\n }\n\n const content = workspaceStore.workspace.documents[name]\n\n if (!content) {\n throw new Error('OpenAPI document could not be resolved')\n }\n\n const renderedContent =\n options?.operation && isObject(content)\n ? filterDocumentByOperation(content as OpenApiDocument, options.operation)\n : content\n\n // Create and configure a server-side rendered Vue app\n const app = createSSRApp(MarkdownReference, {\n content: renderedContent,\n })\n\n // Get static HTML\n const html = await renderToString(app)\n\n // Clean the output\n return minify(html, {\n removeComments: true,\n removeEmptyElements: true,\n collapseWhitespace: true,\n continueOnParseError: true,\n noNewlinesBeforeTagClose: true,\n preserveLineBreaks: true,\n removeEmptyAttributes: true,\n decodeEntities: true,\n useShortDoctype: true,\n })\n}\n\nexport async function createMarkdownFromOpenApi(content: AnyDocument, options?: OpenApiRenderOptions) {\n return markdownFromHtml(await createHtmlFromOpenApi(content, options))\n}\n\nasync function markdownFromHtml(html: string): Promise<string> {\n const file = await unified()\n .use(rehypeParse, { fragment: true })\n .use(remarkGfm)\n .use(rehypeSanitize)\n .use(rehypeRemark)\n .use(remarkStringify, {\n bullet: '-',\n })\n .process(html)\n\n return String(file)\n}\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"llm",
|
|
17
17
|
"swagger"
|
|
18
18
|
],
|
|
19
|
-
"version": "0.
|
|
19
|
+
"version": "0.5.0",
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=22"
|
|
22
22
|
},
|
|
@@ -52,25 +52,23 @@
|
|
|
52
52
|
"remark-gfm": "^4.0.1",
|
|
53
53
|
"remark-stringify": "^11.0.0",
|
|
54
54
|
"unified": "^11.0.5",
|
|
55
|
-
"vue": "^3.5.
|
|
56
|
-
"@scalar/components": "0.21.
|
|
57
|
-
"@scalar/
|
|
58
|
-
"@scalar/
|
|
59
|
-
"@scalar/
|
|
60
|
-
"@scalar/
|
|
61
|
-
"@scalar/types": "0.7.5",
|
|
62
|
-
"@scalar/openapi-types": "0.6.1"
|
|
55
|
+
"vue": "^3.5.30",
|
|
56
|
+
"@scalar/components": "0.21.3",
|
|
57
|
+
"@scalar/json-magic": "0.12.5",
|
|
58
|
+
"@scalar/helpers": "0.4.3",
|
|
59
|
+
"@scalar/oas-utils": "0.10.15",
|
|
60
|
+
"@scalar/workspace-store": "0.43.0"
|
|
63
61
|
},
|
|
64
62
|
"devDependencies": {
|
|
65
|
-
"@hono/node-server": "^1.19.
|
|
63
|
+
"@hono/node-server": "^1.19.10",
|
|
66
64
|
"@types/html-minifier-terser": "^7.0.2",
|
|
67
65
|
"@vitejs/plugin-vue": "^6.0.3",
|
|
68
66
|
"@vue/test-utils": "2.4.6",
|
|
69
|
-
"hono": "4.12.
|
|
67
|
+
"hono": "^4.12.7",
|
|
70
68
|
"vite": "8.0.0",
|
|
71
69
|
"vitest": "4.1.0",
|
|
72
|
-
"vue": "^3.5.
|
|
73
|
-
"@scalar/galaxy": "0.6.
|
|
70
|
+
"vue": "^3.5.30",
|
|
71
|
+
"@scalar/galaxy": "0.6.2"
|
|
74
72
|
},
|
|
75
73
|
"scripts": {
|
|
76
74
|
"build": "vite build && vue-tsc -p tsconfig.build.json",
|