@mintlify/common 1.0.903 → 1.0.905
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/asyncapi/parser/extractSchemaProperties.js +93 -1
- package/dist/mdx/getMDXOptions.d.ts +2 -1
- package/dist/mdx/getMDXOptions.js +2 -2
- package/dist/mdx/plugins/remark/remarkMdxRemoveUnknownJsx/index.d.ts +3 -1
- package/dist/mdx/plugins/remark/remarkMdxRemoveUnknownJsx/index.js +3 -2
- package/dist/mdx/server-only/getMdx.d.ts +2 -1
- package/dist/mdx/server-only/getMdx.js +3 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/asyncapi.d.ts +2 -0
- package/package.json +2 -2
package/dist/types/asyncapi.d.ts
CHANGED
|
@@ -113,8 +113,10 @@ export type ChannelData = {
|
|
|
113
113
|
export type SchemaProperty = {
|
|
114
114
|
name: string;
|
|
115
115
|
type: string | undefined;
|
|
116
|
+
title?: string | undefined;
|
|
116
117
|
description?: string | undefined;
|
|
117
118
|
enumValues?: Array<string | number | boolean>;
|
|
119
|
+
examples?: unknown[];
|
|
118
120
|
properties?: SchemaProperty[];
|
|
119
121
|
required?: boolean;
|
|
120
122
|
deprecated?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/common",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.905",
|
|
4
4
|
"description": "Commonly shared code within Mintlify",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"typescript": "5.5.3",
|
|
129
129
|
"vitest": "2.1.9"
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "19930aa21e2e76263907ec80db211fcb507ffb7c"
|
|
132
132
|
}
|