create-zuplo-api 6.71.1 → 6.71.3

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.
@@ -1,6 +1,9 @@
1
1
  // Uncomment the import below to enable Zuplo monetization (pricing, checkout,
2
2
  // subscriptions). See: https://zuplo.com/docs/articles/monetization
3
3
  // import { zuploMonetizationPlugin } from "@zuplo/zudoku-plugin-monetization";
4
+ // Uncomment the import below to document a GraphQL API (schema reference docs
5
+ // and an interactive playground).
6
+ // import { graphqlPlugin } from "@zudoku/plugin-graphql";
4
7
  import type { ZudokuConfig } from "zudoku";
5
8
 
6
9
  /**
@@ -94,6 +97,21 @@ const config: ZudokuConfig = {
94
97
  // Uncomment to enable monetization. Don't forget to also uncomment the
95
98
  // `zuploMonetizationPlugin` import at the top of this file.
96
99
  // plugins: [zuploMonetizationPlugin()],
100
+ //
101
+ // Uncomment to document a GraphQL API. Don't forget to also uncomment the
102
+ // `graphqlPlugin` import at the top of this file. To enable this alongside
103
+ // another plugin, place both inside a single `plugins: [...]` array.
104
+ // plugins: [
105
+ // graphqlPlugin({
106
+ // type: "url",
107
+ // input: "https://api.example.com/graphql",
108
+ // path: "graphql",
109
+ // options: {
110
+ // title: "My GraphQL API",
111
+ // description: "Explore the schema and try queries in the playground.",
112
+ // },
113
+ // }),
114
+ // ],
97
115
  };
98
116
 
99
117
  export default config;
@@ -1,6 +1,9 @@
1
1
  // Uncomment the import below to enable Zuplo monetization (pricing, checkout,
2
2
  // subscriptions). See: https://zuplo.com/docs/articles/monetization
3
3
  // import { zuploMonetizationPlugin } from "@zuplo/zudoku-plugin-monetization";
4
+ // Uncomment the import below to document a GraphQL API (schema reference docs
5
+ // and an interactive playground).
6
+ // import { graphqlPlugin } from "@zudoku/plugin-graphql";
4
7
  import type { ZudokuConfig } from "zudoku";
5
8
 
6
9
  /**
@@ -94,6 +97,21 @@ const config: ZudokuConfig = {
94
97
  // Uncomment to enable monetization. Don't forget to also uncomment the
95
98
  // `zuploMonetizationPlugin` import at the top of this file.
96
99
  // plugins: [zuploMonetizationPlugin()],
100
+ //
101
+ // Uncomment to document a GraphQL API. Don't forget to also uncomment the
102
+ // `graphqlPlugin` import at the top of this file. To enable this alongside
103
+ // another plugin, place both inside a single `plugins: [...]` array.
104
+ // plugins: [
105
+ // graphqlPlugin({
106
+ // type: "url",
107
+ // input: "https://api.example.com/graphql",
108
+ // path: "graphql",
109
+ // options: {
110
+ // title: "My GraphQL API",
111
+ // description: "Explore the schema and try queries in the playground.",
112
+ // },
113
+ // }),
114
+ // ],
97
115
  };
98
116
 
99
117
  export default config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zuplo-api",
3
- "version": "6.71.1",
3
+ "version": "6.71.3",
4
4
  "keywords": [
5
5
  "api",
6
6
  "openapi",