@makehq/forman-schema 1.2.3 → 1.2.5
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/index.cjs +1 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -170,6 +170,7 @@ function toJSONSchemaInternal(field, context = createDefaultContext()) {
|
|
|
170
170
|
case "datastore":
|
|
171
171
|
case "aiagent":
|
|
172
172
|
case "file":
|
|
173
|
+
case "folder":
|
|
173
174
|
return handleSelectType(normalizedField, result, context);
|
|
174
175
|
default:
|
|
175
176
|
return handlePrimitiveType(normalizedField, result);
|
package/dist/index.d.cts
CHANGED
|
@@ -150,4 +150,4 @@ declare function toFormanSchema(field: JSONSchema7): FormanSchemaField;
|
|
|
150
150
|
*/
|
|
151
151
|
declare function toJSONSchema(field: FormanSchemaField): JSONSchema7;
|
|
152
152
|
|
|
153
|
-
export { type FormanSchemaExtendedNested, type FormanSchemaExtendedOptions, type FormanSchemaField, type FormanSchemaFieldType, type FormanSchemaNested, type FormanSchemaOption, type FormanSchemaValue, toFormanSchema, toJSONSchema };
|
|
153
|
+
export { type FormanSchemaExtendedNested, type FormanSchemaExtendedOptions, type FormanSchemaField, type FormanSchemaFieldType, type FormanSchemaNested, type FormanSchemaOption, type FormanSchemaOptionGroup, type FormanSchemaRPCButton, type FormanSchemaValue, toFormanSchema, toJSONSchema };
|
package/dist/index.d.ts
CHANGED
|
@@ -150,4 +150,4 @@ declare function toFormanSchema(field: JSONSchema7): FormanSchemaField;
|
|
|
150
150
|
*/
|
|
151
151
|
declare function toJSONSchema(field: FormanSchemaField): JSONSchema7;
|
|
152
152
|
|
|
153
|
-
export { type FormanSchemaExtendedNested, type FormanSchemaExtendedOptions, type FormanSchemaField, type FormanSchemaFieldType, type FormanSchemaNested, type FormanSchemaOption, type FormanSchemaValue, toFormanSchema, toJSONSchema };
|
|
153
|
+
export { type FormanSchemaExtendedNested, type FormanSchemaExtendedOptions, type FormanSchemaField, type FormanSchemaFieldType, type FormanSchemaNested, type FormanSchemaOption, type FormanSchemaOptionGroup, type FormanSchemaRPCButton, type FormanSchemaValue, toFormanSchema, toJSONSchema };
|
package/dist/index.js
CHANGED
|
@@ -143,6 +143,7 @@ function toJSONSchemaInternal(field, context = createDefaultContext()) {
|
|
|
143
143
|
case "datastore":
|
|
144
144
|
case "aiagent":
|
|
145
145
|
case "file":
|
|
146
|
+
case "folder":
|
|
146
147
|
return handleSelectType(normalizedField, result, context);
|
|
147
148
|
default:
|
|
148
149
|
return handlePrimitiveType(normalizedField, result);
|