@mintlify/common 1.0.306 → 1.0.308
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/asyncApiCheck.d.ts +2 -2
- package/dist/asyncapi/asyncApiCheck.js +4 -2
- package/dist/asyncapi/validate.d.ts +7 -0
- package/dist/asyncapi/validate.js +20 -0
- package/dist/asyncapi.d.ts +1 -0
- package/dist/asyncapi.js +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/asyncapi.d.ts +8 -2
- package/package.json +4 -4
package/dist/types/asyncapi.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
import { AsyncAPIDocumentV3, AsyncAPIDocumentInterface } from '@asyncapi/parser';
|
|
1
|
+
import { AsyncAPIDocumentV3, AsyncAPIDocumentInterface, AsyncAPISchema, Input } from '@asyncapi/parser';
|
|
2
2
|
export type AsyncAPIDocument = AsyncAPIDocumentV3;
|
|
3
|
-
export type { AsyncAPIDocumentInterface };
|
|
3
|
+
export type { AsyncAPIDocumentInterface, AsyncAPISchema };
|
|
4
|
+
export type AsyncAPIParserInput = Input;
|
|
5
|
+
export type AsyncAPIFile = {
|
|
6
|
+
filename: string;
|
|
7
|
+
originalFileLocation: string;
|
|
8
|
+
spec: AsyncAPIDocument;
|
|
9
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/common",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.308",
|
|
4
4
|
"description": "Commonly shared code within Mintlify",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@asyncapi/parser": "^3.4.0",
|
|
36
36
|
"@mintlify/mdx": "^1.0.1",
|
|
37
|
-
"@mintlify/models": "0.0.
|
|
37
|
+
"@mintlify/models": "0.0.178",
|
|
38
38
|
"@mintlify/openapi-parser": "^0.0.7",
|
|
39
|
-
"@mintlify/validation": "0.1.
|
|
39
|
+
"@mintlify/validation": "0.1.321",
|
|
40
40
|
"@sindresorhus/slugify": "^2.1.1",
|
|
41
41
|
"acorn": "^8.11.2",
|
|
42
42
|
"estree-util-to-js": "^2.0.0",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"typescript": "^5.5.3",
|
|
85
85
|
"vitest": "^2.0.4"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "2a5389a9b6e037da6ac5b3a6580e9660fb2b784c"
|
|
88
88
|
}
|