zudoku 0.3.0-dev.127 → 0.3.0-dev.129

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.3.0-dev.127",
3
+ "version": "0.3.0-dev.129",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
package/src/app/demo.tsx CHANGED
@@ -33,7 +33,7 @@ if (!root) {
33
33
 
34
34
  const config = {
35
35
  page: {
36
- pageTitle: "Zudoku Demo",
36
+ pageTitle: "Demo",
37
37
  },
38
38
  topNavigation: [
39
39
  {
@@ -265,7 +265,7 @@ const RequestBodyObject = builder
265
265
  const ResponseItem = builder
266
266
  .objectRef<{
267
267
  statusCode: string;
268
- description: string;
268
+ description?: string;
269
269
  content: Array<{
270
270
  mediaType: string;
271
271
  schema: any;
@@ -277,7 +277,7 @@ const ResponseItem = builder
277
277
  .implement({
278
278
  fields: (t) => ({
279
279
  statusCode: t.exposeString("statusCode"),
280
- description: t.exposeString("description"),
280
+ description: t.exposeString("description", { nullable: true }),
281
281
  content: t.expose("content", { type: [MediaTypeItem], nullable: true }),
282
282
  headers: t.expose("headers", { type: JSONScalar, nullable: true }),
283
283
  links: t.expose("links", { type: JSONScalar, nullable: true }),