Skip to content

Commit

Permalink
merge latest main
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewuu committed Sep 11, 2024
2 parents 344a34c + 08692e3 commit 462fd18
Show file tree
Hide file tree
Showing 14 changed files with 3,773 additions and 332 deletions.
13 changes: 7 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seamapi/blueprint",
"version": "0.16.0",
"version": "0.17.1",
"description": "Build tools for the Seam API using this blueprint.",
"type": "module",
"main": "index.js",
Expand Down Expand Up @@ -73,7 +73,7 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@seamapi/types": "1.228.0",
"@seamapi/types": "1.240.0",
"@types/node": "^20.8.10",
"ava": "^6.0.1",
"c8": "^10.1.2",
Expand Down
2 changes: 2 additions & 0 deletions src/lib/blueprint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ test('createProperties: assigns appropriate default values', (t) => {

const properties = createProperties(
minimalProperties as Record<string, OpenapiSchema>,
['foo'],
)

t.is(properties.length, 1, 'Should create one property')
Expand Down Expand Up @@ -49,6 +50,7 @@ test('createProperties: uses provided values', (t) => {

const properties = createProperties(
fullProperties as Record<string, OpenapiSchema>,
['foo'],
)

t.is(properties.length, 1, 'Should create one property')
Expand Down
Loading

0 comments on commit 462fd18

Please sign in to comment.