@flatfile/blueprint
Advanced tools
Comparing version 0.0.6 to 0.0.7
# @flatfile/blueprint | ||
## 0.0.7 | ||
### Patch Changes | ||
- 1fb50abb: Add readonly flag | ||
## 0.0.6 | ||
@@ -4,0 +10,0 @@ |
@@ -6,2 +6,3 @@ declare type Action = { | ||
description?: string; | ||
primary?: boolean; | ||
}; | ||
@@ -53,2 +54,6 @@ | ||
constraints?: Array<Constraint>; | ||
/** | ||
* Prevent user input into this field | ||
*/ | ||
readonly?: boolean; | ||
}; | ||
@@ -150,2 +155,6 @@ | ||
slug?: string; | ||
/** | ||
* Prevent user input in this sheet | ||
*/ | ||
readonly?: boolean; | ||
fields: Array<Property>; | ||
@@ -152,0 +161,0 @@ actions?: Array<Action>; |
{ | ||
"name": "@flatfile/blueprint", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "The universal DDL for defining data structures across Flatfile.", | ||
@@ -9,7 +9,5 @@ "main": "./dist/index.js", | ||
"private": false, | ||
"scripts": { | ||
"prebuild": "npx openapi-typescript-codegen --input ./properties.yaml --output src --exportCore=0 --exportServices=0 --useUnionTypes --indent=2", | ||
"build": "tsup", | ||
"dev": "npm run build", | ||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" | ||
"engines": { | ||
"node": ">=16 || >=18", | ||
"pnpm": ">=7" | ||
}, | ||
@@ -28,3 +26,9 @@ "tsup": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"generate": "pnpm dlx openapi-typescript-codegen --input ./properties.yaml --output src --exportCore=0 --exportServices=0 --useUnionTypes --indent=2", | ||
"build": "pnpm run generate && tsup", | ||
"dev": "pnpm run build", | ||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
26070
160