Skip to content

Commit 78faf37

Browse files
committed
address initial PR comments
1 parent b01ead8 commit 78faf37

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

Diff for: packages/parser/package.json

+16-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"
@@ -203,6 +207,10 @@
203207
"./lib/cjs/schemas/apigwv2.d.ts",
204208
"./lib/esm/schemas/apigwv2.d.ts"
205209
],
210+
"schemas/appsync": [
211+
"./lib/cjs/schemas/appsync.d.ts",
212+
"./lib/esm/schemas/appsync.d.ts"
213+
],
206214
"schemas/cloudformation-custom-resources": [
207215
"./lib/cjs/schemas/cloudformation-custom-resources.d.ts",
208216
"./lib/esm/schemas/cloudformation-custom-resources.d.ts"
@@ -235,7 +243,10 @@
235243
"./lib/cjs/schemas/lambda.d.ts",
236244
"./lib/esm/schemas/lambda.d.ts"
237245
],
238-
"schemas/s3": ["./lib/cjs/schemas/s3.d.ts", "./lib/esm/schemas/s3.d.ts"],
246+
"schemas/s3": [
247+
"./lib/cjs/schemas/s3.d.ts",
248+
"./lib/esm/schemas/s3.d.ts"
249+
],
239250
"schemas/ses": [
240251
"./lib/cjs/schemas/ses.d.ts",
241252
"./lib/esm/schemas/ses.d.ts"
@@ -312,7 +323,10 @@
312323
"./lib/cjs/envelopes/vpc-latticev2.d.ts",
313324
"./lib/esm/envelopes/vpc-latticev2.d.ts"
314325
],
315-
"helpers": ["./lib/cjs/helpers.d.ts", "./lib/esm/helpers.d.ts"]
326+
"helpers": [
327+
"./lib/cjs/helpers.d.ts",
328+
"./lib/esm/helpers.d.ts"
329+
]
316330
}
317331
},
318332
"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)