@awsless/awsless 0.0.183 → 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.
@@ -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";