stellate 2.13.0 → 2.14.1

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
@@ -959,6 +959,13 @@ declare const inputSchema: z.ZodObject<{
959
959
  } | null | undefined;
960
960
  }>>>;
961
961
  removeCookies: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
962
+ variableLogging: z.ZodNullable<z.ZodOptional<z.ZodObject<{
963
+ enabled: z.ZodBoolean;
964
+ }, "strip", z.ZodTypeAny, {
965
+ enabled: boolean;
966
+ }, {
967
+ enabled: boolean;
968
+ }>>>;
962
969
  }, "strip", z.ZodTypeAny, {
963
970
  app?: string | undefined;
964
971
  name?: string | undefined;
@@ -1191,6 +1198,9 @@ declare const inputSchema: z.ZodObject<{
1191
1198
  } | null | undefined;
1192
1199
  } | null | undefined;
1193
1200
  removeCookies?: string[] | null | undefined;
1201
+ variableLogging?: {
1202
+ enabled: boolean;
1203
+ } | null | undefined;
1194
1204
  }, {
1195
1205
  app?: string | undefined;
1196
1206
  name?: string | undefined;
@@ -1423,6 +1433,9 @@ declare const inputSchema: z.ZodObject<{
1423
1433
  } | null | undefined;
1424
1434
  } | null | undefined;
1425
1435
  removeCookies?: string[] | null | undefined;
1436
+ variableLogging?: {
1437
+ enabled: boolean;
1438
+ } | null | undefined;
1426
1439
  }>;
1427
1440
  type Input$1 = Readonly<z.infer<typeof inputSchema>>;
1428
1441
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stellate",
3
- "version": "2.13.0",
3
+ "version": "2.14.1",
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.33.0"
47
+ "@gcdn/configuration": "1.35.0"
48
48
  },
49
49
  "bin": {
50
50
  "stellate": "dist/bin.js",