theokit 0.8.2 → 0.9.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -4
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -52,8 +52,8 @@ declare const theoConfigSchema: z.ZodObject<{
52
52
  unhandledErrors: z.ZodOptional<z.ZodBoolean>;
53
53
  logLevels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
54
54
  error: "error";
55
- info: "info";
56
55
  warn: "warn";
56
+ info: "info";
57
57
  debug: "debug";
58
58
  log: "log";
59
59
  }>>>;
@@ -91,24 +91,24 @@ declare const theoConfigSchema: z.ZodObject<{
91
91
  logging: z.ZodOptional<z.ZodObject<{
92
92
  level: z.ZodDefault<z.ZodEnum<{
93
93
  error: "error";
94
- info: "info";
95
94
  warn: "warn";
95
+ info: "info";
96
96
  debug: "debug";
97
97
  silent: "silent";
98
98
  }>>;
99
99
  }, z.core.$strip>>;
100
100
  security: z.ZodOptional<z.ZodObject<{
101
101
  csrf: z.ZodDefault<z.ZodEnum<{
102
- warn: "warn";
103
102
  off: "off";
103
+ warn: "warn";
104
104
  strict: "strict";
105
105
  }>>;
106
106
  headers: z.ZodOptional<z.ZodObject<{
107
107
  csp: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<false>]>>;
108
108
  cspMode: z.ZodDefault<z.ZodEnum<{
109
+ off: "off";
109
110
  enforce: "enforce";
110
111
  "report-only": "report-only";
111
- off: "off";
112
112
  }>>;
113
113
  hsts: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<false>]>>;
114
114
  frameOptions: z.ZodDefault<z.ZodEnum<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "theokit",
3
- "version": "0.8.2",
3
+ "version": "0.9.0",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "license": "Apache-2.0",
@@ -109,7 +109,7 @@
109
109
  "dist"
110
110
  ],
111
111
  "dependencies": {
112
- "@theokit/agents": "^0.6.0",
112
+ "@theokit/agents": "^0.7.0",
113
113
  "@theokit/http": "^0.5.4",
114
114
  "@vitejs/plugin-react": "^4.7.0",
115
115
  "busboy": "^1.6.0",
@@ -127,7 +127,7 @@
127
127
  "vite": "^6.4.3"
128
128
  },
129
129
  "peerDependencies": {
130
- "@theokit/ui": "^0.14.0",
130
+ "@theokit/ui": "^0.14.0 || ^0.18.0",
131
131
  "db0": "^0.3.0",
132
132
  "react": "^19.0.0",
133
133
  "react-dom": "^19.0.0",