envin 1.1.5 → 1.1.7
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/presets/arktype.d.ts +125 -126
- package/package.json +2 -2
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as arktype_internal_methods_object_ts from 'arktype/internal/methods/object.ts';
|
|
2
|
-
import * as arktype_internal_attributes_ts from 'arktype/internal/attributes.ts';
|
|
3
2
|
import * as arktype_internal_methods_string_ts from 'arktype/internal/methods/string.ts';
|
|
4
|
-
import * as
|
|
3
|
+
import * as arktype from 'arktype';
|
|
5
4
|
import { InferPresetOutput } from '../types.js';
|
|
6
5
|
|
|
7
6
|
/**
|
|
@@ -11,27 +10,27 @@ import { InferPresetOutput } from '../types.js';
|
|
|
11
10
|
declare const vercel: {
|
|
12
11
|
readonly id: "vercel";
|
|
13
12
|
readonly server: {
|
|
14
|
-
readonly VERCEL:
|
|
15
|
-
readonly CI:
|
|
16
|
-
readonly VERCEL_ENV:
|
|
17
|
-
readonly VERCEL_URL:
|
|
18
|
-
readonly VERCEL_PROJECT_PRODUCTION_URL:
|
|
19
|
-
readonly VERCEL_BRANCH_URL:
|
|
20
|
-
readonly VERCEL_REGION:
|
|
21
|
-
readonly VERCEL_DEPLOYMENT_ID:
|
|
22
|
-
readonly VERCEL_SKEW_PROTECTION_ENABLED:
|
|
23
|
-
readonly VERCEL_AUTOMATION_BYPASS_SECRET:
|
|
24
|
-
readonly VERCEL_GIT_PROVIDER:
|
|
25
|
-
readonly VERCEL_GIT_REPO_SLUG:
|
|
26
|
-
readonly VERCEL_GIT_REPO_OWNER:
|
|
27
|
-
readonly VERCEL_GIT_REPO_ID:
|
|
28
|
-
readonly VERCEL_GIT_COMMIT_REF:
|
|
29
|
-
readonly VERCEL_GIT_COMMIT_SHA:
|
|
30
|
-
readonly VERCEL_GIT_COMMIT_MESSAGE:
|
|
31
|
-
readonly VERCEL_GIT_COMMIT_AUTHOR_LOGIN:
|
|
32
|
-
readonly VERCEL_GIT_COMMIT_AUTHOR_NAME:
|
|
33
|
-
readonly VERCEL_GIT_PREVIOUS_SHA:
|
|
34
|
-
readonly VERCEL_GIT_PULL_REQUEST_ID:
|
|
13
|
+
readonly VERCEL: arktype.BaseType<string | undefined, {}>;
|
|
14
|
+
readonly CI: arktype.BaseType<string | undefined, {}>;
|
|
15
|
+
readonly VERCEL_ENV: arktype.BaseType<"development" | "preview" | "production" | undefined, {}>;
|
|
16
|
+
readonly VERCEL_URL: arktype.BaseType<string | undefined, {}>;
|
|
17
|
+
readonly VERCEL_PROJECT_PRODUCTION_URL: arktype.BaseType<string | undefined, {}>;
|
|
18
|
+
readonly VERCEL_BRANCH_URL: arktype.BaseType<string | undefined, {}>;
|
|
19
|
+
readonly VERCEL_REGION: arktype.BaseType<string | undefined, {}>;
|
|
20
|
+
readonly VERCEL_DEPLOYMENT_ID: arktype.BaseType<string | undefined, {}>;
|
|
21
|
+
readonly VERCEL_SKEW_PROTECTION_ENABLED: arktype.BaseType<string | undefined, {}>;
|
|
22
|
+
readonly VERCEL_AUTOMATION_BYPASS_SECRET: arktype.BaseType<string | undefined, {}>;
|
|
23
|
+
readonly VERCEL_GIT_PROVIDER: arktype.BaseType<string | undefined, {}>;
|
|
24
|
+
readonly VERCEL_GIT_REPO_SLUG: arktype.BaseType<string | undefined, {}>;
|
|
25
|
+
readonly VERCEL_GIT_REPO_OWNER: arktype.BaseType<string | undefined, {}>;
|
|
26
|
+
readonly VERCEL_GIT_REPO_ID: arktype.BaseType<string | undefined, {}>;
|
|
27
|
+
readonly VERCEL_GIT_COMMIT_REF: arktype.BaseType<string | undefined, {}>;
|
|
28
|
+
readonly VERCEL_GIT_COMMIT_SHA: arktype.BaseType<string | undefined, {}>;
|
|
29
|
+
readonly VERCEL_GIT_COMMIT_MESSAGE: arktype.BaseType<string | undefined, {}>;
|
|
30
|
+
readonly VERCEL_GIT_COMMIT_AUTHOR_LOGIN: arktype.BaseType<string | undefined, {}>;
|
|
31
|
+
readonly VERCEL_GIT_COMMIT_AUTHOR_NAME: arktype.BaseType<string | undefined, {}>;
|
|
32
|
+
readonly VERCEL_GIT_PREVIOUS_SHA: arktype.BaseType<string | undefined, {}>;
|
|
33
|
+
readonly VERCEL_GIT_PULL_REQUEST_ID: arktype.BaseType<string | undefined, {}>;
|
|
35
34
|
};
|
|
36
35
|
};
|
|
37
36
|
type VercelEnv = InferPresetOutput<typeof vercel>;
|
|
@@ -43,20 +42,20 @@ declare const neonVercel: {
|
|
|
43
42
|
readonly id: "neon-vercel";
|
|
44
43
|
readonly server: {
|
|
45
44
|
readonly DATABASE_URL: arktype_internal_methods_string_ts.StringType<string, {}>;
|
|
46
|
-
readonly DATABASE_URL_UNPOOLED:
|
|
47
|
-
readonly PGHOST:
|
|
48
|
-
readonly PGHOST_UNPOOLED:
|
|
49
|
-
readonly PGUSER:
|
|
50
|
-
readonly PGDATABASE:
|
|
51
|
-
readonly PGPASSWORD:
|
|
52
|
-
readonly POSTGRES_URL:
|
|
53
|
-
readonly POSTGRES_URL_NON_POOLING:
|
|
54
|
-
readonly POSTGRES_USER:
|
|
55
|
-
readonly POSTGRES_HOST:
|
|
56
|
-
readonly POSTGRES_PASSWORD:
|
|
57
|
-
readonly POSTGRES_DATABASE:
|
|
58
|
-
readonly POSTGRES_URL_NO_SSL:
|
|
59
|
-
readonly POSTGRES_PRISMA_URL:
|
|
45
|
+
readonly DATABASE_URL_UNPOOLED: arktype.BaseType<string | undefined, {}>;
|
|
46
|
+
readonly PGHOST: arktype.BaseType<string | undefined, {}>;
|
|
47
|
+
readonly PGHOST_UNPOOLED: arktype.BaseType<string | undefined, {}>;
|
|
48
|
+
readonly PGUSER: arktype.BaseType<string | undefined, {}>;
|
|
49
|
+
readonly PGDATABASE: arktype.BaseType<string | undefined, {}>;
|
|
50
|
+
readonly PGPASSWORD: arktype.BaseType<string | undefined, {}>;
|
|
51
|
+
readonly POSTGRES_URL: arktype.BaseType<string | undefined, {}>;
|
|
52
|
+
readonly POSTGRES_URL_NON_POOLING: arktype.BaseType<string | undefined, {}>;
|
|
53
|
+
readonly POSTGRES_USER: arktype.BaseType<string | undefined, {}>;
|
|
54
|
+
readonly POSTGRES_HOST: arktype.BaseType<string | undefined, {}>;
|
|
55
|
+
readonly POSTGRES_PASSWORD: arktype.BaseType<string | undefined, {}>;
|
|
56
|
+
readonly POSTGRES_DATABASE: arktype.BaseType<string | undefined, {}>;
|
|
57
|
+
readonly POSTGRES_URL_NO_SSL: arktype.BaseType<string | undefined, {}>;
|
|
58
|
+
readonly POSTGRES_PRISMA_URL: arktype.BaseType<string | undefined, {}>;
|
|
60
59
|
};
|
|
61
60
|
};
|
|
62
61
|
type NeonVercelEnv = InferPresetOutput<typeof neonVercel>;
|
|
@@ -77,18 +76,18 @@ type UploadthingEnv = InferPresetOutput<typeof uploadthing>;
|
|
|
77
76
|
declare const render: {
|
|
78
77
|
readonly id: "render";
|
|
79
78
|
readonly server: {
|
|
80
|
-
readonly IS_PULL_REQUEST:
|
|
81
|
-
readonly RENDER_DISCOVERY_SERVICE:
|
|
82
|
-
readonly RENDER_EXTERNAL_HOSTNAME:
|
|
83
|
-
readonly RENDER_EXTERNAL_URL:
|
|
84
|
-
readonly RENDER_GIT_BRANCH:
|
|
85
|
-
readonly RENDER_GIT_COMMIT:
|
|
86
|
-
readonly RENDER_GIT_REPO_SLUG:
|
|
87
|
-
readonly RENDER_INSTANCE_ID:
|
|
88
|
-
readonly RENDER_SERVICE_ID:
|
|
89
|
-
readonly RENDER_SERVICE_NAME:
|
|
90
|
-
readonly RENDER_SERVICE_TYPE:
|
|
91
|
-
readonly RENDER:
|
|
79
|
+
readonly IS_PULL_REQUEST: arktype.BaseType<string | undefined, {}>;
|
|
80
|
+
readonly RENDER_DISCOVERY_SERVICE: arktype.BaseType<string | undefined, {}>;
|
|
81
|
+
readonly RENDER_EXTERNAL_HOSTNAME: arktype.BaseType<string | undefined, {}>;
|
|
82
|
+
readonly RENDER_EXTERNAL_URL: arktype.BaseType<string | undefined, {}>;
|
|
83
|
+
readonly RENDER_GIT_BRANCH: arktype.BaseType<string | undefined, {}>;
|
|
84
|
+
readonly RENDER_GIT_COMMIT: arktype.BaseType<string | undefined, {}>;
|
|
85
|
+
readonly RENDER_GIT_REPO_SLUG: arktype.BaseType<string | undefined, {}>;
|
|
86
|
+
readonly RENDER_INSTANCE_ID: arktype.BaseType<string | undefined, {}>;
|
|
87
|
+
readonly RENDER_SERVICE_ID: arktype.BaseType<string | undefined, {}>;
|
|
88
|
+
readonly RENDER_SERVICE_NAME: arktype.BaseType<string | undefined, {}>;
|
|
89
|
+
readonly RENDER_SERVICE_TYPE: arktype.BaseType<"web" | "pserv" | "cron" | "worker" | "static" | undefined, {}>;
|
|
90
|
+
readonly RENDER: arktype.BaseType<string | undefined, {}>;
|
|
92
91
|
};
|
|
93
92
|
};
|
|
94
93
|
type RenderEnv = InferPresetOutput<typeof render>;
|
|
@@ -99,29 +98,29 @@ type RenderEnv = InferPresetOutput<typeof render>;
|
|
|
99
98
|
declare const railway: {
|
|
100
99
|
readonly id: "railway";
|
|
101
100
|
readonly server: {
|
|
102
|
-
readonly RAILWAY_PUBLIC_DOMAIN:
|
|
103
|
-
readonly RAILWAY_PRIVATE_DOMAIN:
|
|
104
|
-
readonly RAILWAY_TCP_PROXY_DOMAIN:
|
|
105
|
-
readonly RAILWAY_TCP_PROXY_PORT:
|
|
106
|
-
readonly RAILWAY_TCP_APPLICATION_PORT:
|
|
107
|
-
readonly RAILWAY_PROJECT_NAME:
|
|
108
|
-
readonly RAILWAY_PROJECT_ID:
|
|
109
|
-
readonly RAILWAY_ENVIRONMENT_NAME:
|
|
110
|
-
readonly RAILWAY_ENVIRONMENT_ID:
|
|
111
|
-
readonly RAILWAY_SERVICE_NAME:
|
|
112
|
-
readonly RAILWAY_SERVICE_ID:
|
|
113
|
-
readonly RAILWAY_REPLICA_ID:
|
|
114
|
-
readonly RAILWAY_DEPLOYMENT_ID:
|
|
115
|
-
readonly RAILWAY_SNAPSHOT_ID:
|
|
116
|
-
readonly RAILWAY_VOLUME_NAME:
|
|
117
|
-
readonly RAILWAY_VOLUME_MOUNT_PATH:
|
|
118
|
-
readonly RAILWAY_RUN_UID:
|
|
119
|
-
readonly RAILWAY_GIT_COMMIT_SHA:
|
|
120
|
-
readonly RAILWAY_GIT_AUTHOR_EMAIL:
|
|
121
|
-
readonly RAILWAY_GIT_BRANCH:
|
|
122
|
-
readonly RAILWAY_GIT_REPO_NAME:
|
|
123
|
-
readonly RAILWAY_GIT_REPO_OWNER:
|
|
124
|
-
readonly RAILWAY_GIT_COMMIT_MESSAGE:
|
|
101
|
+
readonly RAILWAY_PUBLIC_DOMAIN: arktype.BaseType<string | undefined, {}>;
|
|
102
|
+
readonly RAILWAY_PRIVATE_DOMAIN: arktype.BaseType<string | undefined, {}>;
|
|
103
|
+
readonly RAILWAY_TCP_PROXY_DOMAIN: arktype.BaseType<string | undefined, {}>;
|
|
104
|
+
readonly RAILWAY_TCP_PROXY_PORT: arktype.BaseType<string | undefined, {}>;
|
|
105
|
+
readonly RAILWAY_TCP_APPLICATION_PORT: arktype.BaseType<string | undefined, {}>;
|
|
106
|
+
readonly RAILWAY_PROJECT_NAME: arktype.BaseType<string | undefined, {}>;
|
|
107
|
+
readonly RAILWAY_PROJECT_ID: arktype.BaseType<string | undefined, {}>;
|
|
108
|
+
readonly RAILWAY_ENVIRONMENT_NAME: arktype.BaseType<string | undefined, {}>;
|
|
109
|
+
readonly RAILWAY_ENVIRONMENT_ID: arktype.BaseType<string | undefined, {}>;
|
|
110
|
+
readonly RAILWAY_SERVICE_NAME: arktype.BaseType<string | undefined, {}>;
|
|
111
|
+
readonly RAILWAY_SERVICE_ID: arktype.BaseType<string | undefined, {}>;
|
|
112
|
+
readonly RAILWAY_REPLICA_ID: arktype.BaseType<string | undefined, {}>;
|
|
113
|
+
readonly RAILWAY_DEPLOYMENT_ID: arktype.BaseType<string | undefined, {}>;
|
|
114
|
+
readonly RAILWAY_SNAPSHOT_ID: arktype.BaseType<string | undefined, {}>;
|
|
115
|
+
readonly RAILWAY_VOLUME_NAME: arktype.BaseType<string | undefined, {}>;
|
|
116
|
+
readonly RAILWAY_VOLUME_MOUNT_PATH: arktype.BaseType<string | undefined, {}>;
|
|
117
|
+
readonly RAILWAY_RUN_UID: arktype.BaseType<string | undefined, {}>;
|
|
118
|
+
readonly RAILWAY_GIT_COMMIT_SHA: arktype.BaseType<string | undefined, {}>;
|
|
119
|
+
readonly RAILWAY_GIT_AUTHOR_EMAIL: arktype.BaseType<string | undefined, {}>;
|
|
120
|
+
readonly RAILWAY_GIT_BRANCH: arktype.BaseType<string | undefined, {}>;
|
|
121
|
+
readonly RAILWAY_GIT_REPO_NAME: arktype.BaseType<string | undefined, {}>;
|
|
122
|
+
readonly RAILWAY_GIT_REPO_OWNER: arktype.BaseType<string | undefined, {}>;
|
|
123
|
+
readonly RAILWAY_GIT_COMMIT_MESSAGE: arktype.BaseType<string | undefined, {}>;
|
|
125
124
|
};
|
|
126
125
|
};
|
|
127
126
|
type RailwayEnv = InferPresetOutput<typeof railway>;
|
|
@@ -132,17 +131,17 @@ type RailwayEnv = InferPresetOutput<typeof railway>;
|
|
|
132
131
|
declare const fly: {
|
|
133
132
|
readonly id: "fly";
|
|
134
133
|
readonly server: {
|
|
135
|
-
readonly FLY_APP_NAME:
|
|
136
|
-
readonly FLY_MACHINE_ID:
|
|
137
|
-
readonly FLY_ALLOC_ID:
|
|
138
|
-
readonly FLY_REGION:
|
|
139
|
-
readonly FLY_PUBLIC_IP:
|
|
140
|
-
readonly FLY_IMAGE_REF:
|
|
141
|
-
readonly FLY_MACHINE_VERSION:
|
|
142
|
-
readonly FLY_PRIVATE_IP:
|
|
143
|
-
readonly FLY_PROCESS_GROUP:
|
|
144
|
-
readonly FLY_VM_MEMORY_MB:
|
|
145
|
-
readonly PRIMARY_REGION:
|
|
134
|
+
readonly FLY_APP_NAME: arktype.BaseType<string | undefined, {}>;
|
|
135
|
+
readonly FLY_MACHINE_ID: arktype.BaseType<string | undefined, {}>;
|
|
136
|
+
readonly FLY_ALLOC_ID: arktype.BaseType<string | undefined, {}>;
|
|
137
|
+
readonly FLY_REGION: arktype.BaseType<string | undefined, {}>;
|
|
138
|
+
readonly FLY_PUBLIC_IP: arktype.BaseType<string | undefined, {}>;
|
|
139
|
+
readonly FLY_IMAGE_REF: arktype.BaseType<string | undefined, {}>;
|
|
140
|
+
readonly FLY_MACHINE_VERSION: arktype.BaseType<string | undefined, {}>;
|
|
141
|
+
readonly FLY_PRIVATE_IP: arktype.BaseType<string | undefined, {}>;
|
|
142
|
+
readonly FLY_PROCESS_GROUP: arktype.BaseType<string | undefined, {}>;
|
|
143
|
+
readonly FLY_VM_MEMORY_MB: arktype.BaseType<string | undefined, {}>;
|
|
144
|
+
readonly PRIMARY_REGION: arktype.BaseType<string | undefined, {}>;
|
|
146
145
|
};
|
|
147
146
|
};
|
|
148
147
|
type FlyEnv = InferPresetOutput<typeof fly>;
|
|
@@ -153,17 +152,17 @@ type FlyEnv = InferPresetOutput<typeof fly>;
|
|
|
153
152
|
declare const netlify: {
|
|
154
153
|
readonly id: "netlify";
|
|
155
154
|
readonly server: {
|
|
156
|
-
readonly NETLIFY:
|
|
157
|
-
readonly BUILD_ID:
|
|
158
|
-
readonly CONTEXT:
|
|
159
|
-
readonly REPOSITORY_URL:
|
|
160
|
-
readonly BRANCH:
|
|
161
|
-
readonly URL:
|
|
162
|
-
readonly DEPLOY_URL:
|
|
163
|
-
readonly DEPLOY_PRIME_URL:
|
|
164
|
-
readonly DEPLOY_ID:
|
|
165
|
-
readonly SITE_NAME:
|
|
166
|
-
readonly SITE_ID:
|
|
155
|
+
readonly NETLIFY: arktype.BaseType<string | undefined, {}>;
|
|
156
|
+
readonly BUILD_ID: arktype.BaseType<string | undefined, {}>;
|
|
157
|
+
readonly CONTEXT: arktype.BaseType<"dev" | "production" | "deploy-preview" | "branch-deploy" | undefined, {}>;
|
|
158
|
+
readonly REPOSITORY_URL: arktype.BaseType<string | undefined, {}>;
|
|
159
|
+
readonly BRANCH: arktype.BaseType<string | undefined, {}>;
|
|
160
|
+
readonly URL: arktype.BaseType<string | undefined, {}>;
|
|
161
|
+
readonly DEPLOY_URL: arktype.BaseType<string | undefined, {}>;
|
|
162
|
+
readonly DEPLOY_PRIME_URL: arktype.BaseType<string | undefined, {}>;
|
|
163
|
+
readonly DEPLOY_ID: arktype.BaseType<string | undefined, {}>;
|
|
164
|
+
readonly SITE_NAME: arktype.BaseType<string | undefined, {}>;
|
|
165
|
+
readonly SITE_ID: arktype.BaseType<string | undefined, {}>;
|
|
167
166
|
};
|
|
168
167
|
};
|
|
169
168
|
type NetlifyEnv = InferPresetOutput<typeof netlify>;
|
|
@@ -186,14 +185,14 @@ type UpstashRedisEnv = InferPresetOutput<typeof upstashRedis>;
|
|
|
186
185
|
declare const coolify: {
|
|
187
186
|
readonly id: "coolify";
|
|
188
187
|
readonly server: {
|
|
189
|
-
readonly COOLIFY_FQDN:
|
|
190
|
-
readonly COOLIFY_URL:
|
|
191
|
-
readonly COOLIFY_BRANCH:
|
|
192
|
-
readonly COOLIFY_RESOURCE_UUID:
|
|
193
|
-
readonly COOLIFY_CONTAINER_NAME:
|
|
194
|
-
readonly SOURCE_COMMIT:
|
|
195
|
-
readonly PORT:
|
|
196
|
-
readonly HOST:
|
|
188
|
+
readonly COOLIFY_FQDN: arktype.BaseType<string | undefined, {}>;
|
|
189
|
+
readonly COOLIFY_URL: arktype.BaseType<string | undefined, {}>;
|
|
190
|
+
readonly COOLIFY_BRANCH: arktype.BaseType<string | undefined, {}>;
|
|
191
|
+
readonly COOLIFY_RESOURCE_UUID: arktype.BaseType<string | undefined, {}>;
|
|
192
|
+
readonly COOLIFY_CONTAINER_NAME: arktype.BaseType<string | undefined, {}>;
|
|
193
|
+
readonly SOURCE_COMMIT: arktype.BaseType<string | undefined, {}>;
|
|
194
|
+
readonly PORT: arktype.BaseType<string | undefined, {}>;
|
|
195
|
+
readonly HOST: arktype.BaseType<string | undefined, {}>;
|
|
197
196
|
};
|
|
198
197
|
};
|
|
199
198
|
type CoolifyEnv = InferPresetOutput<typeof coolify>;
|
|
@@ -206,20 +205,20 @@ declare const supabaseVercel: {
|
|
|
206
205
|
readonly clientPrefix: "NEXT_PUBLIC_";
|
|
207
206
|
readonly server: {
|
|
208
207
|
readonly POSTGRES_URL: arktype_internal_methods_string_ts.StringType<string, {}>;
|
|
209
|
-
readonly POSTGRES_PRISMA_URL:
|
|
210
|
-
readonly POSTGRES_URL_NON_POOLING:
|
|
211
|
-
readonly POSTGRES_USER:
|
|
212
|
-
readonly POSTGRES_HOST:
|
|
213
|
-
readonly POSTGRES_PASSWORD:
|
|
214
|
-
readonly POSTGRES_DATABASE:
|
|
215
|
-
readonly SUPABASE_SERVICE_ROLE_KEY:
|
|
216
|
-
readonly SUPABASE_ANON_KEY:
|
|
217
|
-
readonly SUPABASE_URL:
|
|
218
|
-
readonly SUPABASE_JWT_SECRET:
|
|
208
|
+
readonly POSTGRES_PRISMA_URL: arktype.BaseType<string | undefined, {}>;
|
|
209
|
+
readonly POSTGRES_URL_NON_POOLING: arktype.BaseType<string | undefined, {}>;
|
|
210
|
+
readonly POSTGRES_USER: arktype.BaseType<string | undefined, {}>;
|
|
211
|
+
readonly POSTGRES_HOST: arktype.BaseType<string | undefined, {}>;
|
|
212
|
+
readonly POSTGRES_PASSWORD: arktype.BaseType<string | undefined, {}>;
|
|
213
|
+
readonly POSTGRES_DATABASE: arktype.BaseType<string | undefined, {}>;
|
|
214
|
+
readonly SUPABASE_SERVICE_ROLE_KEY: arktype.BaseType<string | undefined, {}>;
|
|
215
|
+
readonly SUPABASE_ANON_KEY: arktype.BaseType<string | undefined, {}>;
|
|
216
|
+
readonly SUPABASE_URL: arktype.BaseType<string | undefined, {}>;
|
|
217
|
+
readonly SUPABASE_JWT_SECRET: arktype.BaseType<string | undefined, {}>;
|
|
219
218
|
};
|
|
220
219
|
readonly client: {
|
|
221
|
-
readonly NEXT_PUBLIC_SUPABASE_ANON_KEY:
|
|
222
|
-
readonly NEXT_PUBLIC_SUPABASE_URL:
|
|
220
|
+
readonly NEXT_PUBLIC_SUPABASE_ANON_KEY: arktype.BaseType<string | undefined, {}>;
|
|
221
|
+
readonly NEXT_PUBLIC_SUPABASE_URL: arktype.BaseType<string | undefined, {}>;
|
|
223
222
|
};
|
|
224
223
|
};
|
|
225
224
|
type SupabaseVercelEnv = InferPresetOutput<typeof supabaseVercel>;
|
|
@@ -230,11 +229,11 @@ type SupabaseVercelEnv = InferPresetOutput<typeof supabaseVercel>;
|
|
|
230
229
|
declare const vite: {
|
|
231
230
|
readonly id: "vite";
|
|
232
231
|
readonly shared: {
|
|
233
|
-
readonly BASE_URL:
|
|
234
|
-
readonly MODE:
|
|
235
|
-
readonly DEV:
|
|
236
|
-
readonly PROD:
|
|
237
|
-
readonly SSR:
|
|
232
|
+
readonly BASE_URL: arktype.BaseType<string | undefined, {}>;
|
|
233
|
+
readonly MODE: arktype.BaseType<string | undefined, {}>;
|
|
234
|
+
readonly DEV: arktype.BaseType<boolean | undefined, {}>;
|
|
235
|
+
readonly PROD: arktype.BaseType<boolean | undefined, {}>;
|
|
236
|
+
readonly SSR: arktype.BaseType<boolean | undefined, {}>;
|
|
238
237
|
};
|
|
239
238
|
};
|
|
240
239
|
type ViteEnv = InferPresetOutput<typeof vite>;
|
|
@@ -245,13 +244,13 @@ type ViteEnv = InferPresetOutput<typeof vite>;
|
|
|
245
244
|
declare const wxt: {
|
|
246
245
|
readonly id: "wxt";
|
|
247
246
|
readonly server: {
|
|
248
|
-
readonly MANIFEST_VERSION: arktype_internal_methods_object_ts.ObjectType<(In: "2" | "3" | undefined) =>
|
|
249
|
-
readonly BROWSER:
|
|
250
|
-
readonly CHROME:
|
|
251
|
-
readonly FIREFOX:
|
|
252
|
-
readonly SAFARI:
|
|
253
|
-
readonly EDGE:
|
|
254
|
-
readonly OPERA:
|
|
247
|
+
readonly MANIFEST_VERSION: arktype_internal_methods_object_ts.ObjectType<(In: "2" | "3" | undefined) => arktype.Out<number | undefined>, {}>;
|
|
248
|
+
readonly BROWSER: arktype.BaseType<"chrome" | "firefox" | "safari" | "edge" | "opera" | undefined, {}>;
|
|
249
|
+
readonly CHROME: arktype.BaseType<boolean | undefined, {}>;
|
|
250
|
+
readonly FIREFOX: arktype.BaseType<boolean | undefined, {}>;
|
|
251
|
+
readonly SAFARI: arktype.BaseType<boolean | undefined, {}>;
|
|
252
|
+
readonly EDGE: arktype.BaseType<boolean | undefined, {}>;
|
|
253
|
+
readonly OPERA: arktype.BaseType<boolean | undefined, {}>;
|
|
255
254
|
};
|
|
256
255
|
};
|
|
257
256
|
type WxtEnv = InferPresetOutput<typeof wxt>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Type-safe env validation with live previews",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"turbostarter",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"prepack": "bun run ../../scripts/populate-readme.ts"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"arktype": "2.1.
|
|
57
|
+
"arktype": "2.1.20",
|
|
58
58
|
"tsup": "^8.5.0",
|
|
59
59
|
"typescript": "5.8.3",
|
|
60
60
|
"valibot": "1.1.0",
|