Skip to content

Commit 2f9c332

Browse files
committed
address initial PR comments
1 parent b01ead8 commit 2f9c332

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

Diff for: packages/parser/package.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@
5959
"require": "./lib/cjs/schemas/apigwv2.js",
6060
"import": "./lib/esm/schemas/apigwv2.js"
6161
},
62+
"./schemas/appsync": {
63+
"require": "./lib/cjs/schemas/appsync.js",
64+
"import": "./lib/esm/schemas/appsync.js"
65+
},
6266
"./schemas/cloudformation-custom-resources": {
6367
"require": "./lib/cjs/schemas/cloudformation-custom-resources.js",
6468
"import": "./lib/esm/schemas/cloudformation-custom-resources.js"
@@ -235,7 +239,10 @@
235239
"./lib/cjs/schemas/lambda.d.ts",
236240
"./lib/esm/schemas/lambda.d.ts"
237241
],
238-
"schemas/s3": ["./lib/cjs/schemas/s3.d.ts", "./lib/esm/schemas/s3.d.ts"],
242+
"schemas/s3": [
243+
"./lib/cjs/schemas/s3.d.ts",
244+
"./lib/esm/schemas/s3.d.ts"
245+
],
239246
"schemas/ses": [
240247
"./lib/cjs/schemas/ses.d.ts",
241248
"./lib/esm/schemas/ses.d.ts"
@@ -312,7 +319,10 @@
312319
"./lib/cjs/envelopes/vpc-latticev2.d.ts",
313320
"./lib/esm/envelopes/vpc-latticev2.d.ts"
314321
],
315-
"helpers": ["./lib/cjs/helpers.d.ts", "./lib/esm/helpers.d.ts"]
322+
"helpers": [
323+
"./lib/cjs/helpers.d.ts",
324+
"./lib/esm/helpers.d.ts"
325+
]
316326
}
317327
},
318328
"main": "./lib/cjs/index.js",

Diff for: packages/parser/src/schemas/appsync.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const AppSyncResolverSchema = z.object({
131131
* A zod schema for a batch AppSync resolver event
132132
*
133133
* @example
134-
* /*
134+
* ```json
135135
* [{
136136
* "arguments": {
137137
* "id": "1973493"

0 commit comments

Comments
 (0)