stellate 2.15.1 → 2.16.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.
package/dist/index.d.ts CHANGED
@@ -106,6 +106,7 @@ declare const inputSchema: z.ZodObject<{
106
106
  enabled: boolean;
107
107
  }>>>;
108
108
  cacheIntrospection: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
109
+ blockIntrospection: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
109
110
  injectHeaders: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
110
111
  devPortal: z.ZodNullable<z.ZodOptional<z.ZodObject<{
111
112
  enabled: z.ZodBoolean;
@@ -180,7 +181,7 @@ declare const inputSchema: z.ZodObject<{
180
181
  ignoreOriginCacheControl: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
181
182
  queryDepthLimit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
182
183
  passThroughOnly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
183
- mutationPolicy: z.ZodNullable<z.ZodOptional<z.ZodEnum<["Type", "List", "Entity"]>>>;
184
+ mutationPolicy: z.ZodNullable<z.ZodOptional<z.ZodEnum<["Type", "List", "Entity", "None"]>>>;
184
185
  bypassCacheHeaders: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
185
186
  name: z.ZodString;
186
187
  }, "strip", z.ZodTypeAny, {
@@ -979,6 +980,7 @@ declare const inputSchema: z.ZodObject<{
979
980
  enabled: boolean;
980
981
  } | null | undefined;
981
982
  cacheIntrospection?: boolean | null | undefined;
983
+ blockIntrospection?: boolean | null | undefined;
982
984
  injectHeaders?: boolean | null | undefined;
983
985
  devPortal?: {
984
986
  enabled: boolean;
@@ -1003,7 +1005,7 @@ declare const inputSchema: z.ZodObject<{
1003
1005
  ignoreOriginCacheControl?: boolean | null | undefined;
1004
1006
  queryDepthLimit?: number | null | undefined;
1005
1007
  passThroughOnly?: boolean | null | undefined;
1006
- mutationPolicy?: "Type" | "List" | "Entity" | null | undefined;
1008
+ mutationPolicy?: "Type" | "List" | "Entity" | "None" | null | undefined;
1007
1009
  bypassCacheHeaders?: {
1008
1010
  name: string;
1009
1011
  }[] | null | undefined;
@@ -1215,6 +1217,7 @@ declare const inputSchema: z.ZodObject<{
1215
1217
  enabled: boolean;
1216
1218
  } | null | undefined;
1217
1219
  cacheIntrospection?: boolean | null | undefined;
1220
+ blockIntrospection?: boolean | null | undefined;
1218
1221
  injectHeaders?: boolean | null | undefined;
1219
1222
  devPortal?: {
1220
1223
  enabled: boolean;
@@ -1239,7 +1242,7 @@ declare const inputSchema: z.ZodObject<{
1239
1242
  ignoreOriginCacheControl?: boolean | null | undefined;
1240
1243
  queryDepthLimit?: number | null | undefined;
1241
1244
  passThroughOnly?: boolean | null | undefined;
1242
- mutationPolicy?: "Type" | "List" | "Entity" | null | undefined;
1245
+ mutationPolicy?: "Type" | "List" | "Entity" | "None" | null | undefined;
1243
1246
  bypassCacheHeaders?: {
1244
1247
  name: string;
1245
1248
  }[] | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stellate",
3
- "version": "2.15.1",
3
+ "version": "2.16.3",
4
4
  "engines": {
5
5
  "node": ">=16"
6
6
  },
@@ -44,7 +44,7 @@
44
44
  "vitest": "^1.4.0",
45
45
  "ws": "8.11.0",
46
46
  "yaml": "^1.10.2",
47
- "@gcdn/configuration": "1.36.1"
47
+ "@gcdn/configuration": "1.39.0"
48
48
  },
49
49
  "bin": {
50
50
  "stellate": "dist/bin.js",