@alpic-ai/api 0.0.0-staging.ec72735 → 0.0.0-staging.f15fb91
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.mts +125 -1
- package/dist/index.mjs +135 -9
- package/package.json +7 -4
package/dist/index.d.mts
CHANGED
|
@@ -7,6 +7,7 @@ type ApiContext = {
|
|
|
7
7
|
request: Request & {
|
|
8
8
|
teamIds: string[];
|
|
9
9
|
defaultTeamId: string | undefined;
|
|
10
|
+
awsCognitoUserSub: string | undefined;
|
|
10
11
|
};
|
|
11
12
|
};
|
|
12
13
|
declare const createEnvironmentContractV1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -37,7 +38,6 @@ declare const contract: {
|
|
|
37
38
|
name: z.ZodString;
|
|
38
39
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
39
40
|
hasStripeAccount: z.ZodBoolean;
|
|
40
|
-
hasActiveSubscription: z.ZodBoolean;
|
|
41
41
|
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
42
42
|
};
|
|
43
43
|
};
|
|
@@ -226,6 +226,94 @@ declare const contract: {
|
|
|
226
226
|
BAD_REQUEST: {};
|
|
227
227
|
}>, Record<never, never>>;
|
|
228
228
|
};
|
|
229
|
+
getLogs: {
|
|
230
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
231
|
+
environmentId: z.ZodString;
|
|
232
|
+
since: z.ZodOptional<z.ZodString>;
|
|
233
|
+
until: z.ZodOptional<z.ZodString>;
|
|
234
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
235
|
+
level: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
236
|
+
INFO: "INFO";
|
|
237
|
+
ERROR: "ERROR";
|
|
238
|
+
WARNING: "WARNING";
|
|
239
|
+
DEBUG: "DEBUG";
|
|
240
|
+
}>>>;
|
|
241
|
+
search: z.ZodOptional<z.ZodString>;
|
|
242
|
+
nextToken: z.ZodOptional<z.ZodString>;
|
|
243
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
244
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
245
|
+
timestamp: z.ZodCoercedDate<unknown>;
|
|
246
|
+
type: z.ZodEnum<{
|
|
247
|
+
INFO: "INFO";
|
|
248
|
+
ERROR: "ERROR";
|
|
249
|
+
WARNING: "WARNING";
|
|
250
|
+
DEBUG: "DEBUG";
|
|
251
|
+
START: "START";
|
|
252
|
+
END: "END";
|
|
253
|
+
}>;
|
|
254
|
+
requestId: z.ZodString;
|
|
255
|
+
content: z.ZodOptional<z.ZodString>;
|
|
256
|
+
method: z.ZodOptional<z.ZodString>;
|
|
257
|
+
durationInMs: z.ZodOptional<z.ZodNumber>;
|
|
258
|
+
}, z.core.$strip>>;
|
|
259
|
+
nextToken: z.ZodNullable<z.ZodString>;
|
|
260
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
261
|
+
NOT_FOUND: {};
|
|
262
|
+
BAD_REQUEST: {};
|
|
263
|
+
}>, Record<never, never>>;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
environmentVariables: {
|
|
267
|
+
list: {
|
|
268
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
269
|
+
environmentId: z.ZodString;
|
|
270
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
271
|
+
id: z.ZodString;
|
|
272
|
+
key: z.ZodString;
|
|
273
|
+
value: z.ZodString;
|
|
274
|
+
isSecret: z.ZodBoolean;
|
|
275
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
276
|
+
}, z.core.$strip>>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
277
|
+
NOT_FOUND: {};
|
|
278
|
+
}>, Record<never, never>>;
|
|
279
|
+
};
|
|
280
|
+
create: {
|
|
281
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
282
|
+
environmentId: z.ZodString;
|
|
283
|
+
environmentVariables: z.ZodArray<z.ZodObject<{
|
|
284
|
+
key: z.ZodString;
|
|
285
|
+
value: z.ZodString;
|
|
286
|
+
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
287
|
+
}, z.core.$strip>>;
|
|
288
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
289
|
+
success: z.ZodLiteral<true>;
|
|
290
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
291
|
+
NOT_FOUND: {};
|
|
292
|
+
BAD_REQUEST: {};
|
|
293
|
+
}>, Record<never, never>>;
|
|
294
|
+
};
|
|
295
|
+
update: {
|
|
296
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
297
|
+
environmentVariableId: z.ZodString;
|
|
298
|
+
key: z.ZodString;
|
|
299
|
+
value: z.ZodOptional<z.ZodString>;
|
|
300
|
+
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
301
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
302
|
+
success: z.ZodLiteral<true>;
|
|
303
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
304
|
+
NOT_FOUND: {};
|
|
305
|
+
BAD_REQUEST: {};
|
|
306
|
+
}>, Record<never, never>>;
|
|
307
|
+
};
|
|
308
|
+
delete: {
|
|
309
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
310
|
+
environmentVariableId: z.ZodString;
|
|
311
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
312
|
+
success: z.ZodLiteral<true>;
|
|
313
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
314
|
+
NOT_FOUND: {};
|
|
315
|
+
}>, Record<never, never>>;
|
|
316
|
+
};
|
|
229
317
|
};
|
|
230
318
|
projects: {
|
|
231
319
|
update: {
|
|
@@ -259,6 +347,15 @@ declare const contract: {
|
|
|
259
347
|
id: z.ZodString;
|
|
260
348
|
name: z.ZodString;
|
|
261
349
|
mcpServerUrl: z.ZodString;
|
|
350
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
351
|
+
domain: z.ZodString;
|
|
352
|
+
status: z.ZodEnum<{
|
|
353
|
+
ongoing: "ongoing";
|
|
354
|
+
deployed: "deployed";
|
|
355
|
+
failed: "failed";
|
|
356
|
+
}>;
|
|
357
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
358
|
+
}, z.core.$strip>>;
|
|
262
359
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
263
360
|
id: z.ZodString;
|
|
264
361
|
status: z.ZodEnum<{
|
|
@@ -326,6 +423,15 @@ declare const contract: {
|
|
|
326
423
|
id: z.ZodString;
|
|
327
424
|
name: z.ZodString;
|
|
328
425
|
mcpServerUrl: z.ZodString;
|
|
426
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
427
|
+
domain: z.ZodString;
|
|
428
|
+
status: z.ZodEnum<{
|
|
429
|
+
ongoing: "ongoing";
|
|
430
|
+
deployed: "deployed";
|
|
431
|
+
failed: "failed";
|
|
432
|
+
}>;
|
|
433
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
434
|
+
}, z.core.$strip>>;
|
|
329
435
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
330
436
|
id: z.ZodString;
|
|
331
437
|
status: z.ZodEnum<{
|
|
@@ -392,6 +498,15 @@ declare const contract: {
|
|
|
392
498
|
id: z.ZodString;
|
|
393
499
|
name: z.ZodString;
|
|
394
500
|
mcpServerUrl: z.ZodString;
|
|
501
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
502
|
+
domain: z.ZodString;
|
|
503
|
+
status: z.ZodEnum<{
|
|
504
|
+
ongoing: "ongoing";
|
|
505
|
+
deployed: "deployed";
|
|
506
|
+
failed: "failed";
|
|
507
|
+
}>;
|
|
508
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
509
|
+
}, z.core.$strip>>;
|
|
395
510
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
396
511
|
id: z.ZodString;
|
|
397
512
|
status: z.ZodEnum<{
|
|
@@ -501,6 +616,15 @@ declare const contract: {
|
|
|
501
616
|
}>, Record<never, never>>;
|
|
502
617
|
};
|
|
503
618
|
};
|
|
619
|
+
tunnels: {
|
|
620
|
+
getTicket: {
|
|
621
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithOutput<_orpc_contract0.Schema<unknown, unknown>, z.ZodObject<{
|
|
622
|
+
subdomain: z.ZodString;
|
|
623
|
+
ticket: z.ZodString;
|
|
624
|
+
tunnelHost: z.ZodString;
|
|
625
|
+
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
626
|
+
};
|
|
627
|
+
};
|
|
504
628
|
};
|
|
505
629
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
506
630
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { oc } from "@orpc/contract";
|
|
2
|
+
import ms from "ms";
|
|
2
3
|
import { z } from "zod";
|
|
3
|
-
|
|
4
4
|
//#region src/schemas.ts
|
|
5
5
|
const RESERVED_KEYS = [
|
|
6
6
|
"_HANDLER",
|
|
@@ -34,7 +34,8 @@ const RESERVED_KEYS = [
|
|
|
34
34
|
"BUILD_ARG_BUILD_COMMAND",
|
|
35
35
|
"BUILD_ARG_BUILD_OUTPUT_DIR",
|
|
36
36
|
"BUILD_ARG_START_COMMAND",
|
|
37
|
-
"ALPIC_HOST"
|
|
37
|
+
"ALPIC_HOST",
|
|
38
|
+
"ALPIC_CUSTOM_DOMAINS"
|
|
38
39
|
];
|
|
39
40
|
const environmentVariableSchema = z.object({
|
|
40
41
|
key: z.string().min(2, "Key must be at least 2 characters").regex(/^[a-zA-Z]([a-zA-Z0-9_])+$/, "Key must start with a letter and contain only letters, numbers, and underscores").refine((key) => !RESERVED_KEYS.includes(key), "This key is reserved and cannot be used as an environment variable key"),
|
|
@@ -59,7 +60,6 @@ const transportSchema = z.enum([
|
|
|
59
60
|
"sse",
|
|
60
61
|
"streamablehttp"
|
|
61
62
|
]);
|
|
62
|
-
|
|
63
63
|
//#endregion
|
|
64
64
|
//#region src/api.contract.ts
|
|
65
65
|
const deploymentStatusSchema = z.enum([
|
|
@@ -87,6 +87,10 @@ const deploymentSchema = z.object({
|
|
|
87
87
|
completedAt: z.coerce.date().nullable()
|
|
88
88
|
});
|
|
89
89
|
const deploymentWithPageUrlSchema = deploymentSchema.extend({ deploymentPageUrl: z.url().nullable() });
|
|
90
|
+
const isValidLogTimeInput = (value) => {
|
|
91
|
+
if (ms(value) !== void 0) return true;
|
|
92
|
+
return !Number.isNaN(new Date(value).getTime());
|
|
93
|
+
};
|
|
90
94
|
const createEnvironmentContractV1 = oc.route({
|
|
91
95
|
path: "/v1/environments",
|
|
92
96
|
method: "POST",
|
|
@@ -126,10 +130,20 @@ const getEnvironmentContractV1 = oc.route({
|
|
|
126
130
|
createdAt: z.coerce.date(),
|
|
127
131
|
projectId: z.string()
|
|
128
132
|
}));
|
|
133
|
+
const domainSchema = z.object({
|
|
134
|
+
domain: z.string(),
|
|
135
|
+
status: z.enum([
|
|
136
|
+
"ongoing",
|
|
137
|
+
"deployed",
|
|
138
|
+
"failed"
|
|
139
|
+
]),
|
|
140
|
+
createdAt: z.coerce.date()
|
|
141
|
+
});
|
|
129
142
|
const productionEnvironmentSchema = z.object({
|
|
130
143
|
id: z.string(),
|
|
131
144
|
name: z.string(),
|
|
132
145
|
mcpServerUrl: z.string(),
|
|
146
|
+
domains: z.array(domainSchema),
|
|
133
147
|
latestDeployment: latestDeploymentSchema.nullable()
|
|
134
148
|
});
|
|
135
149
|
const environmentSchema = z.object({
|
|
@@ -215,6 +229,59 @@ const createProjectContractV1 = oc.route({
|
|
|
215
229
|
startCommand: z.string().nullable(),
|
|
216
230
|
createdAt: z.coerce.date()
|
|
217
231
|
}));
|
|
232
|
+
const environmentVariableOutputSchema = z.object({
|
|
233
|
+
id: z.string(),
|
|
234
|
+
key: z.string(),
|
|
235
|
+
value: z.string(),
|
|
236
|
+
isSecret: z.boolean(),
|
|
237
|
+
createdAt: z.coerce.date()
|
|
238
|
+
});
|
|
239
|
+
const listEnvironmentVariablesContractV1 = oc.route({
|
|
240
|
+
path: "/v1/environments/{environmentId}/environment-variables",
|
|
241
|
+
method: "GET",
|
|
242
|
+
summary: "List environment variables",
|
|
243
|
+
description: "List all environment variables for an environment",
|
|
244
|
+
tags: ["environments"],
|
|
245
|
+
successDescription: "The list of environment variables"
|
|
246
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentId: z.string().describe("The ID of the environment") })).output(z.array(environmentVariableOutputSchema));
|
|
247
|
+
const createEnvironmentVariablesContractV1 = oc.route({
|
|
248
|
+
path: "/v1/environments/{environmentId}/environment-variables",
|
|
249
|
+
method: "POST",
|
|
250
|
+
summary: "Add environment variables",
|
|
251
|
+
description: "Add one or more environment variables to an environment",
|
|
252
|
+
tags: ["environments"],
|
|
253
|
+
successDescription: "The environment variables have been added successfully"
|
|
254
|
+
}).errors({
|
|
255
|
+
NOT_FOUND: {},
|
|
256
|
+
BAD_REQUEST: {}
|
|
257
|
+
}).input(z.object({
|
|
258
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
259
|
+
environmentVariables: environmentVariablesSchema
|
|
260
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
261
|
+
const updateEnvironmentVariableContractV1 = oc.route({
|
|
262
|
+
path: "/v1/environment-variables/{environmentVariableId}",
|
|
263
|
+
method: "PATCH",
|
|
264
|
+
summary: "Update an environment variable",
|
|
265
|
+
description: "Update an environment variable by ID",
|
|
266
|
+
tags: ["environments"],
|
|
267
|
+
successDescription: "The environment variable has been updated successfully"
|
|
268
|
+
}).errors({
|
|
269
|
+
NOT_FOUND: {},
|
|
270
|
+
BAD_REQUEST: {}
|
|
271
|
+
}).input(z.object({
|
|
272
|
+
environmentVariableId: z.string().describe("The ID of the environment variable"),
|
|
273
|
+
key: environmentVariableSchema.shape.key,
|
|
274
|
+
value: environmentVariableSchema.shape.value.optional(),
|
|
275
|
+
isSecret: environmentVariableSchema.shape.isSecret
|
|
276
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
277
|
+
const deleteEnvironmentVariableContractV1 = oc.route({
|
|
278
|
+
path: "/v1/environment-variables/{environmentVariableId}",
|
|
279
|
+
method: "DELETE",
|
|
280
|
+
summary: "Delete an environment variable",
|
|
281
|
+
description: "Delete an environment variable by ID",
|
|
282
|
+
tags: ["environments"],
|
|
283
|
+
successDescription: "The environment variable has been deleted successfully"
|
|
284
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentVariableId: z.string().describe("The ID of the environment variable") })).output(z.object({ success: z.literal(true) }));
|
|
218
285
|
const deleteProjectContractV1 = oc.route({
|
|
219
286
|
path: "/v1/projects/:projectId",
|
|
220
287
|
method: "DELETE",
|
|
@@ -283,6 +350,47 @@ const getDeploymentContractV1 = oc.route({
|
|
|
283
350
|
tags: ["deployments"],
|
|
284
351
|
successDescription: "The deployment details"
|
|
285
352
|
}).errors({ NOT_FOUND: {} }).input(z.object({ deploymentId: z.string().describe("The ID of the deployment") })).output(deploymentWithPageUrlSchema);
|
|
353
|
+
const getLogsContractV1 = oc.route({
|
|
354
|
+
path: "/v1/environments/{environmentId}/logs",
|
|
355
|
+
method: "GET",
|
|
356
|
+
summary: "Get logs",
|
|
357
|
+
description: "Get logs for an environment",
|
|
358
|
+
tags: ["environments"],
|
|
359
|
+
successDescription: "The logs"
|
|
360
|
+
}).errors({
|
|
361
|
+
NOT_FOUND: {},
|
|
362
|
+
BAD_REQUEST: {}
|
|
363
|
+
}).input(z.object({
|
|
364
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
365
|
+
since: z.string().refine(isValidLogTimeInput, { message: "Invalid time. Use relative (1h, 30m, 2d) or ISO 8601 format." }).optional().describe("Start time — ISO 8601 (2024-01-01T00:00:00Z) or relative (1h, 30m, 2d)"),
|
|
366
|
+
until: z.string().refine(isValidLogTimeInput, { message: "Invalid time. Use relative (1h, 30m, 2d) or ISO 8601 format." }).optional().describe("End time — ISO 8601 or relative"),
|
|
367
|
+
limit: z.coerce.number().int().min(1).max(1e3).default(1e3).describe("Maximum number of log entries to return."),
|
|
368
|
+
level: z.array(z.enum([
|
|
369
|
+
"INFO",
|
|
370
|
+
"ERROR",
|
|
371
|
+
"WARNING",
|
|
372
|
+
"DEBUG"
|
|
373
|
+
])).optional().describe("Filter by log level"),
|
|
374
|
+
search: z.string().optional().describe("Filter pattern to search for in log content"),
|
|
375
|
+
nextToken: z.string().optional().describe("Pagination token from a previous response")
|
|
376
|
+
})).output(z.object({
|
|
377
|
+
logs: z.array(z.object({
|
|
378
|
+
timestamp: z.coerce.date(),
|
|
379
|
+
type: z.enum([
|
|
380
|
+
"START",
|
|
381
|
+
"END",
|
|
382
|
+
"INFO",
|
|
383
|
+
"ERROR",
|
|
384
|
+
"WARNING",
|
|
385
|
+
"DEBUG"
|
|
386
|
+
]),
|
|
387
|
+
requestId: z.string(),
|
|
388
|
+
content: z.string().optional(),
|
|
389
|
+
method: z.string().optional(),
|
|
390
|
+
durationInMs: z.number().optional()
|
|
391
|
+
})),
|
|
392
|
+
nextToken: z.string().nullable()
|
|
393
|
+
}));
|
|
286
394
|
const getDeploymentLogsContractV1 = oc.route({
|
|
287
395
|
path: "/v1/deployments/{deploymentId}/logs",
|
|
288
396
|
method: "GET",
|
|
@@ -346,9 +454,20 @@ const listTeamsContractV1 = oc.route({
|
|
|
346
454
|
id: z.string(),
|
|
347
455
|
name: z.string(),
|
|
348
456
|
createdAt: z.coerce.date(),
|
|
349
|
-
hasStripeAccount: z.boolean()
|
|
350
|
-
hasActiveSubscription: z.boolean()
|
|
457
|
+
hasStripeAccount: z.boolean()
|
|
351
458
|
})));
|
|
459
|
+
const getTunnelTicketContractV1 = oc.route({
|
|
460
|
+
path: "/v1/tunnels/ticket",
|
|
461
|
+
method: "GET",
|
|
462
|
+
summary: "Get a tunnel ticket",
|
|
463
|
+
description: "Get a signed ticket for establishing a tunnel connection. Requires user authentication (API keys are not supported).",
|
|
464
|
+
tags: ["tunnels"],
|
|
465
|
+
successDescription: "The tunnel ticket"
|
|
466
|
+
}).output(z.object({
|
|
467
|
+
subdomain: z.string().describe("The subdomain assigned to the user"),
|
|
468
|
+
ticket: z.string().describe("The signed tunnel ticket"),
|
|
469
|
+
tunnelHost: z.string().describe("The tunnel host to connect to")
|
|
470
|
+
}));
|
|
352
471
|
const contract = {
|
|
353
472
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
354
473
|
analytics: { get: { v1: getProjectAnalyticsContractV1 } },
|
|
@@ -361,7 +480,14 @@ const contract = {
|
|
|
361
480
|
environments: {
|
|
362
481
|
create: { v1: createEnvironmentContractV1 },
|
|
363
482
|
get: { v1: getEnvironmentContractV1 },
|
|
364
|
-
deploy: { v1: deployEnvironmentContractV1 }
|
|
483
|
+
deploy: { v1: deployEnvironmentContractV1 },
|
|
484
|
+
getLogs: { v1: getLogsContractV1 }
|
|
485
|
+
},
|
|
486
|
+
environmentVariables: {
|
|
487
|
+
list: { v1: listEnvironmentVariablesContractV1 },
|
|
488
|
+
create: { v1: createEnvironmentVariablesContractV1 },
|
|
489
|
+
update: { v1: updateEnvironmentVariableContractV1 },
|
|
490
|
+
delete: { v1: deleteEnvironmentVariableContractV1 }
|
|
365
491
|
},
|
|
366
492
|
projects: {
|
|
367
493
|
update: { v1: updateProjectContractV1 },
|
|
@@ -369,8 +495,8 @@ const contract = {
|
|
|
369
495
|
list: { v1: listProjectsContractV1 },
|
|
370
496
|
create: { v1: createProjectContractV1 },
|
|
371
497
|
delete: { v1: deleteProjectContractV1 }
|
|
372
|
-
}
|
|
498
|
+
},
|
|
499
|
+
tunnels: { getTicket: { v1: getTunnelTicketContractV1 } }
|
|
373
500
|
};
|
|
374
|
-
|
|
375
501
|
//#endregion
|
|
376
|
-
export { buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
502
|
+
export { buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpic-ai/api",
|
|
3
|
-
"version": "0.0.0-staging.
|
|
3
|
+
"version": "0.0.0-staging.f15fb91",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -17,13 +17,15 @@
|
|
|
17
17
|
"author": "Alpic",
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@orpc/contract": "^1.13.
|
|
20
|
+
"@orpc/contract": "^1.13.6",
|
|
21
|
+
"ms": "^2.1.3",
|
|
21
22
|
"zod": "^4.3.6"
|
|
22
23
|
},
|
|
23
24
|
"devDependencies": {
|
|
24
25
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
26
|
+
"@types/ms": "^2.1.0",
|
|
25
27
|
"shx": "^0.4.0",
|
|
26
|
-
"tsdown": "^0.
|
|
28
|
+
"tsdown": "^0.21.1",
|
|
27
29
|
"typescript": "^5.9.3",
|
|
28
30
|
"vitest": "^4.0.18"
|
|
29
31
|
},
|
|
@@ -33,6 +35,7 @@
|
|
|
33
35
|
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
34
36
|
"test:unit": "vitest run",
|
|
35
37
|
"test:format": "prettier --check .",
|
|
36
|
-
"test:type": "tsc --noEmit"
|
|
38
|
+
"test:type": "tsc --noEmit",
|
|
39
|
+
"publish:npm": "pnpm publish --tag \"${NPM_TAG}\" --access public --no-git-checks"
|
|
37
40
|
}
|
|
38
41
|
}
|