@zuplo/graphql 5.2341.0 → 5.2343.0
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/out/types/index.d.ts +1 -9
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -39,10 +39,6 @@ declare type CorsPolicy = string | "anything-goes" | "none";
|
|
|
39
39
|
/**
|
|
40
40
|
* Limits the complexity of a GraphQL query
|
|
41
41
|
*
|
|
42
|
-
* @remarks
|
|
43
|
-
* This policy allows you to add a limit for the depth and a limit for the
|
|
44
|
-
* complexity of a GraphQL query.
|
|
45
|
-
*
|
|
46
42
|
* @title GraphQL Complexity Limit
|
|
47
43
|
* @public
|
|
48
44
|
* @param request - The ZuploRequest
|
|
@@ -80,11 +76,7 @@ export declare interface GraphQLComplexityLimitInboundPolicyOptions {
|
|
|
80
76
|
}
|
|
81
77
|
|
|
82
78
|
/**
|
|
83
|
-
* Disables introspection queries on your API.
|
|
84
|
-
*
|
|
85
|
-
* @remarks
|
|
86
|
-
* This policy allows you to disable introspection queries on your API. Any
|
|
87
|
-
* introspection query will be blocked with a `403 Forbidden` response.
|
|
79
|
+
* Disables introspection queries on your API.
|
|
88
80
|
*
|
|
89
81
|
* @title GraphQL Disable Introspection
|
|
90
82
|
* @public
|