stellate 2.15.1 → 2.16.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/dist/bin.js +13 -13
- package/dist/index.d.ts +3 -0
- package/package.json +2 -2
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;
|
|
@@ -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;
|
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stellate",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
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.
|
|
47
|
+
"@gcdn/configuration": "1.38.0"
|
|
48
48
|
},
|
|
49
49
|
"bin": {
|
|
50
50
|
"stellate": "dist/bin.js",
|