@mintlify/common 1.0.447 → 1.0.449

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.
@@ -13,3 +13,9 @@ export type SavedRssFile = {
13
13
  title?: string;
14
14
  description?: string;
15
15
  };
16
+ export type RSSItemV2 = RSSItem & {
17
+ content?: string;
18
+ };
19
+ export type SavedRssFileV2 = SavedRssFile & {
20
+ updates: RSSItemV2[];
21
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mintlify/common",
3
- "version": "1.0.447",
3
+ "version": "1.0.449",
4
4
  "description": "Commonly shared code within Mintlify",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -32,7 +32,7 @@
32
32
  "@mintlify/mdx": "^2.0.3",
33
33
  "@mintlify/models": "0.0.206",
34
34
  "@mintlify/openapi-parser": "^0.0.7",
35
- "@mintlify/validation": "0.1.411",
35
+ "@mintlify/validation": "0.1.412",
36
36
  "@sindresorhus/slugify": "^2.1.1",
37
37
  "acorn": "^8.11.2",
38
38
  "acorn-jsx": "^5.3.2",
@@ -83,5 +83,5 @@
83
83
  "typescript": "^5.5.3",
84
84
  "vitest": "^2.0.4"
85
85
  },
86
- "gitHead": "24f7182cf10ccb93e1e457eccf3f8004e830936d"
86
+ "gitHead": "8cc0aee21a52af6f3feb84b52241344851d18e98"
87
87
  }