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 12, 2024
1 parent a0c8791 commit 5425f45
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 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 @@ -203,6 +207,10 @@
"./lib/cjs/schemas/apigwv2.d.ts",
"./lib/esm/schemas/apigwv2.d.ts"
],
"schemas/appsync": [
"./lib/cjs/schemas/appsync.d.ts",
"./lib/esm/schemas/appsync.d.ts"
],
"schemas/cloudformation-custom-resources": [
"./lib/cjs/schemas/cloudformation-custom-resources.d.ts",
"./lib/esm/schemas/cloudformation-custom-resources.d.ts"
Expand Down Expand Up @@ -235,7 +243,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 +323,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 5425f45

Please sign in to comment.