@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.
@@ -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.903",
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": "fe76ec467879bfa2232e77a5b71a3862f44cc677"
131
+ "gitHead": "19930aa21e2e76263907ec80db211fcb507ffb7c"
132
132
  }