Skip to content

Commit

Permalink
Merge branch 'main' of github.com:seamapi/blueprint into fix-php-code…
Browse files Browse the repository at this point in the history
…-sample-response
  • Loading branch information
andrii-balitskyi committed Sep 16, 2024
2 parents d1257bb + 7913ed6 commit 08ad3dc
Show file tree
Hide file tree
Showing 14 changed files with 5,200 additions and 478 deletions.
12 changes: 6 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.1",
"version": "0.19.0",
"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.242.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 08ad3dc

Please sign in to comment.