Skip to content

Commit

Permalink
address initial PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
svozza committed Nov 8, 2024
1 parent b01ead8 commit 2f9c332
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions packages/parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@
"require": "./lib/cjs/schemas/apigwv2.js",
"import": "./lib/esm/schemas/apigwv2.js"
},
"./schemas/appsync": {
"require": "./lib/cjs/schemas/appsync.js",
"import": "./lib/esm/schemas/appsync.js"
},
"./schemas/cloudformation-custom-resources": {
"require": "./lib/cjs/schemas/cloudformation-custom-resources.js",
"import": "./lib/esm/schemas/cloudformation-custom-resources.js"
Expand Down Expand Up @@ -235,7 +239,10 @@
"./lib/cjs/schemas/lambda.d.ts",
"./lib/esm/schemas/lambda.d.ts"
],
"schemas/s3": ["./lib/cjs/schemas/s3.d.ts", "./lib/esm/schemas/s3.d.ts"],
"schemas/s3": [
"./lib/cjs/schemas/s3.d.ts",
"./lib/esm/schemas/s3.d.ts"
],
"schemas/ses": [
"./lib/cjs/schemas/ses.d.ts",
"./lib/esm/schemas/ses.d.ts"
Expand Down Expand Up @@ -312,7 +319,10 @@
"./lib/cjs/envelopes/vpc-latticev2.d.ts",
"./lib/esm/envelopes/vpc-latticev2.d.ts"
],
"helpers": ["./lib/cjs/helpers.d.ts", "./lib/esm/helpers.d.ts"]
"helpers": [
"./lib/cjs/helpers.d.ts",
"./lib/esm/helpers.d.ts"
]
}
},
"main": "./lib/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/parser/src/schemas/appsync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const AppSyncResolverSchema = z.object({
* A zod schema for a batch AppSync resolver event
*
* @example
* /*
* ```json
* [{
* "arguments": {
* "id": "1973493"
Expand Down

0 comments on commit 2f9c332

Please sign in to comment.