@awsless/awsless 0.0.182 → 0.0.184
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.json +1 -1
- package/dist/bin.js +5 -4
- package/dist/build-json-schema.js +3 -3
- package/dist/stack.json +1 -1
- package/package.json +6 -6
|
@@ -223,7 +223,7 @@ var GraphQLDefaultSchema = z7.record(
|
|
|
223
223
|
// }).optional(),
|
|
224
224
|
resolver: LocalFileSchema.optional()
|
|
225
225
|
})
|
|
226
|
-
).optional();
|
|
226
|
+
).describe(`Define the global GraphQL API's.`).optional();
|
|
227
227
|
var GraphQLSchema = z7.record(
|
|
228
228
|
ResourceIdSchema,
|
|
229
229
|
z7.object({
|
|
@@ -245,9 +245,9 @@ var GraphQLSchema = z7.record(
|
|
|
245
245
|
})
|
|
246
246
|
])
|
|
247
247
|
)
|
|
248
|
-
).optional()
|
|
248
|
+
).describe("The resolvers for your global GraphQL API.").optional()
|
|
249
249
|
})
|
|
250
|
-
).optional();
|
|
250
|
+
).describe("Define the schema & resolvers in your stack for your global GraphQL API.").optional();
|
|
251
251
|
|
|
252
252
|
// src/feature/table/schema.ts
|
|
253
253
|
import { z as z8 } from "zod";
|