@alpic-ai/api 0.0.0-staging.ea6b049 → 0.0.0-staging.ebd414b
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 +208 -3
- package/dist/index.mjs +185 -18
- package/package.json +10 -7
package/dist/index.d.mts
CHANGED
|
@@ -10,6 +10,12 @@ type ApiContext = {
|
|
|
10
10
|
awsCognitoUserSub: string | undefined;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
+
declare const deploymentStatusSchema: z.ZodEnum<{
|
|
14
|
+
ongoing: "ongoing";
|
|
15
|
+
deployed: "deployed";
|
|
16
|
+
failed: "failed";
|
|
17
|
+
canceled: "canceled";
|
|
18
|
+
}>;
|
|
13
19
|
declare const createEnvironmentContractV1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
14
20
|
projectId: z.ZodString;
|
|
15
21
|
name: z.ZodString;
|
|
@@ -96,6 +102,13 @@ declare const contract: {
|
|
|
96
102
|
list: {
|
|
97
103
|
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
98
104
|
projectId: z.ZodString;
|
|
105
|
+
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
106
|
+
ongoing: "ongoing";
|
|
107
|
+
deployed: "deployed";
|
|
108
|
+
failed: "failed";
|
|
109
|
+
canceled: "canceled";
|
|
110
|
+
}>>>;
|
|
111
|
+
environmentId: z.ZodOptional<z.ZodString>;
|
|
99
112
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
100
113
|
id: z.ZodString;
|
|
101
114
|
status: z.ZodEnum<{
|
|
@@ -111,8 +124,10 @@ declare const contract: {
|
|
|
111
124
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
112
125
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
113
126
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
114
|
-
isCurrent: z.ZodBoolean;
|
|
115
127
|
environmentId: z.ZodString;
|
|
128
|
+
environmentName: z.ZodString;
|
|
129
|
+
isCurrent: z.ZodBoolean;
|
|
130
|
+
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
116
131
|
}, z.core.$strip>>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
117
132
|
NOT_FOUND: {};
|
|
118
133
|
}>, Record<never, never>>;
|
|
@@ -135,6 +150,9 @@ declare const contract: {
|
|
|
135
150
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
136
151
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
137
152
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
153
|
+
environmentId: z.ZodString;
|
|
154
|
+
environmentName: z.ZodString;
|
|
155
|
+
isCurrent: z.ZodBoolean;
|
|
138
156
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
139
157
|
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
140
158
|
NOT_FOUND: {};
|
|
@@ -144,7 +162,7 @@ declare const contract: {
|
|
|
144
162
|
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
145
163
|
teamId: z.ZodOptional<z.ZodString>;
|
|
146
164
|
}, z.core.$strip>>, z.ZodObject<{
|
|
147
|
-
uploadUrl: z.
|
|
165
|
+
uploadUrl: z.ZodURL;
|
|
148
166
|
token: z.ZodString;
|
|
149
167
|
expiresAt: z.ZodCoercedDate<unknown>;
|
|
150
168
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -220,12 +238,103 @@ declare const contract: {
|
|
|
220
238
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
221
239
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
222
240
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
241
|
+
environmentId: z.ZodString;
|
|
242
|
+
environmentName: z.ZodString;
|
|
243
|
+
isCurrent: z.ZodBoolean;
|
|
223
244
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
224
245
|
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
225
246
|
NOT_FOUND: {};
|
|
226
247
|
BAD_REQUEST: {};
|
|
227
248
|
}>, Record<never, never>>;
|
|
228
249
|
};
|
|
250
|
+
getLogs: {
|
|
251
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
252
|
+
environmentId: z.ZodString;
|
|
253
|
+
since: z.ZodOptional<z.ZodString>;
|
|
254
|
+
until: z.ZodOptional<z.ZodString>;
|
|
255
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
256
|
+
level: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
257
|
+
INFO: "INFO";
|
|
258
|
+
ERROR: "ERROR";
|
|
259
|
+
WARNING: "WARNING";
|
|
260
|
+
DEBUG: "DEBUG";
|
|
261
|
+
}>>>;
|
|
262
|
+
search: z.ZodOptional<z.ZodString>;
|
|
263
|
+
nextToken: z.ZodOptional<z.ZodString>;
|
|
264
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
265
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
266
|
+
timestamp: z.ZodCoercedDate<unknown>;
|
|
267
|
+
type: z.ZodEnum<{
|
|
268
|
+
INFO: "INFO";
|
|
269
|
+
ERROR: "ERROR";
|
|
270
|
+
WARNING: "WARNING";
|
|
271
|
+
DEBUG: "DEBUG";
|
|
272
|
+
START: "START";
|
|
273
|
+
END: "END";
|
|
274
|
+
}>;
|
|
275
|
+
requestId: z.ZodString;
|
|
276
|
+
content: z.ZodOptional<z.ZodString>;
|
|
277
|
+
method: z.ZodOptional<z.ZodString>;
|
|
278
|
+
durationInMs: z.ZodOptional<z.ZodNumber>;
|
|
279
|
+
}, z.core.$strip>>;
|
|
280
|
+
nextToken: z.ZodNullable<z.ZodString>;
|
|
281
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
282
|
+
NOT_FOUND: {};
|
|
283
|
+
BAD_REQUEST: {};
|
|
284
|
+
}>, Record<never, never>>;
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
environmentVariables: {
|
|
288
|
+
list: {
|
|
289
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
290
|
+
environmentId: z.ZodString;
|
|
291
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
292
|
+
id: z.ZodString;
|
|
293
|
+
key: z.ZodString;
|
|
294
|
+
value: z.ZodString;
|
|
295
|
+
isSecret: z.ZodBoolean;
|
|
296
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
297
|
+
}, z.core.$strip>>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
298
|
+
NOT_FOUND: {};
|
|
299
|
+
}>, Record<never, never>>;
|
|
300
|
+
};
|
|
301
|
+
create: {
|
|
302
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
303
|
+
environmentId: z.ZodString;
|
|
304
|
+
environmentVariables: z.ZodArray<z.ZodObject<{
|
|
305
|
+
key: z.ZodString;
|
|
306
|
+
value: z.ZodString;
|
|
307
|
+
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
308
|
+
}, z.core.$strip>>;
|
|
309
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
310
|
+
success: z.ZodLiteral<true>;
|
|
311
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
312
|
+
NOT_FOUND: {};
|
|
313
|
+
BAD_REQUEST: {};
|
|
314
|
+
}>, Record<never, never>>;
|
|
315
|
+
};
|
|
316
|
+
update: {
|
|
317
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
318
|
+
environmentVariableId: z.ZodString;
|
|
319
|
+
key: z.ZodString;
|
|
320
|
+
value: z.ZodOptional<z.ZodString>;
|
|
321
|
+
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
322
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
323
|
+
success: z.ZodLiteral<true>;
|
|
324
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
325
|
+
NOT_FOUND: {};
|
|
326
|
+
BAD_REQUEST: {};
|
|
327
|
+
}>, Record<never, never>>;
|
|
328
|
+
};
|
|
329
|
+
delete: {
|
|
330
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
331
|
+
environmentVariableId: z.ZodString;
|
|
332
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
333
|
+
success: z.ZodLiteral<true>;
|
|
334
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
335
|
+
NOT_FOUND: {};
|
|
336
|
+
}>, Record<never, never>>;
|
|
337
|
+
};
|
|
229
338
|
};
|
|
230
339
|
projects: {
|
|
231
340
|
update: {
|
|
@@ -537,6 +646,79 @@ declare const contract: {
|
|
|
537
646
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
538
647
|
};
|
|
539
648
|
};
|
|
649
|
+
distribution: {
|
|
650
|
+
publish: {
|
|
651
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
652
|
+
projectId: z.ZodString;
|
|
653
|
+
domain: z.ZodString;
|
|
654
|
+
title: z.ZodString;
|
|
655
|
+
description: z.ZodString;
|
|
656
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
657
|
+
iconSrc: z.ZodOptional<z.ZodURL>;
|
|
658
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
659
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
660
|
+
serverFields: z.ZodObject<{
|
|
661
|
+
$schema: z.ZodString;
|
|
662
|
+
name: z.ZodString;
|
|
663
|
+
description: z.ZodString;
|
|
664
|
+
version: z.ZodOptional<z.ZodString>;
|
|
665
|
+
title: z.ZodOptional<z.ZodString>;
|
|
666
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
667
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
668
|
+
src: z.ZodURL;
|
|
669
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
670
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
671
|
+
}, z.core.$strip>>>;
|
|
672
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
673
|
+
type: z.ZodString;
|
|
674
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
675
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
676
|
+
name: z.ZodString;
|
|
677
|
+
description: z.ZodString;
|
|
678
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
679
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
680
|
+
}, z.core.$strip>>>;
|
|
681
|
+
}, z.core.$strip>>>;
|
|
682
|
+
}, z.core.$strip>;
|
|
683
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
684
|
+
NOT_FOUND: {};
|
|
685
|
+
BAD_REQUEST: {};
|
|
686
|
+
}>, Record<never, never>>;
|
|
687
|
+
};
|
|
688
|
+
get: {
|
|
689
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
690
|
+
projectId: z.ZodString;
|
|
691
|
+
domain: z.ZodString;
|
|
692
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
693
|
+
serverFields: z.ZodObject<{
|
|
694
|
+
$schema: z.ZodString;
|
|
695
|
+
name: z.ZodString;
|
|
696
|
+
description: z.ZodString;
|
|
697
|
+
version: z.ZodOptional<z.ZodString>;
|
|
698
|
+
title: z.ZodOptional<z.ZodString>;
|
|
699
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
700
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
701
|
+
src: z.ZodURL;
|
|
702
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
703
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
704
|
+
}, z.core.$strip>>>;
|
|
705
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
706
|
+
type: z.ZodString;
|
|
707
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
708
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
709
|
+
name: z.ZodString;
|
|
710
|
+
description: z.ZodString;
|
|
711
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
712
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
713
|
+
}, z.core.$strip>>>;
|
|
714
|
+
}, z.core.$strip>>>;
|
|
715
|
+
}, z.core.$strip>;
|
|
716
|
+
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
717
|
+
NOT_FOUND: {};
|
|
718
|
+
BAD_REQUEST: {};
|
|
719
|
+
}>, Record<never, never>>;
|
|
720
|
+
};
|
|
721
|
+
};
|
|
540
722
|
};
|
|
541
723
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
542
724
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
|
@@ -571,5 +753,28 @@ declare const transportSchema: z.ZodEnum<{
|
|
|
571
753
|
streamablehttp: "streamablehttp";
|
|
572
754
|
}>;
|
|
573
755
|
type Transport = z.infer<typeof transportSchema>;
|
|
756
|
+
declare const serverFieldsSchema: z.ZodObject<{
|
|
757
|
+
$schema: z.ZodString;
|
|
758
|
+
name: z.ZodString;
|
|
759
|
+
description: z.ZodString;
|
|
760
|
+
version: z.ZodOptional<z.ZodString>;
|
|
761
|
+
title: z.ZodOptional<z.ZodString>;
|
|
762
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
763
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
764
|
+
src: z.ZodURL;
|
|
765
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
766
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
767
|
+
}, z.core.$strip>>>;
|
|
768
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
769
|
+
type: z.ZodString;
|
|
770
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
771
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
772
|
+
name: z.ZodString;
|
|
773
|
+
description: z.ZodString;
|
|
774
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
775
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
776
|
+
}, z.core.$strip>>>;
|
|
777
|
+
}, z.core.$strip>>>;
|
|
778
|
+
}, z.core.$strip>;
|
|
574
779
|
//#endregion
|
|
575
|
-
export { ApiContext, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
780
|
+
export { ApiContext, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, serverFieldsSchema, transportSchema };
|
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,29 @@ const transportSchema = z.enum([
|
|
|
59
60
|
"sse",
|
|
60
61
|
"streamablehttp"
|
|
61
62
|
]);
|
|
62
|
-
|
|
63
|
+
const serverFieldsSchema = z.object({
|
|
64
|
+
$schema: z.string(),
|
|
65
|
+
name: z.string(),
|
|
66
|
+
description: z.string(),
|
|
67
|
+
version: z.string().optional(),
|
|
68
|
+
title: z.string().optional(),
|
|
69
|
+
websiteUrl: z.url().optional(),
|
|
70
|
+
icons: z.array(z.object({
|
|
71
|
+
src: z.url(),
|
|
72
|
+
mimeType: z.string().optional(),
|
|
73
|
+
sizes: z.array(z.string()).optional()
|
|
74
|
+
})).optional(),
|
|
75
|
+
remotes: z.array(z.object({
|
|
76
|
+
type: z.string(),
|
|
77
|
+
url: z.url().optional(),
|
|
78
|
+
headers: z.array(z.object({
|
|
79
|
+
name: z.string(),
|
|
80
|
+
description: z.string(),
|
|
81
|
+
isRequired: z.boolean().optional(),
|
|
82
|
+
isSecret: z.boolean().optional()
|
|
83
|
+
})).optional()
|
|
84
|
+
})).optional()
|
|
85
|
+
});
|
|
63
86
|
//#endregion
|
|
64
87
|
//#region src/api.contract.ts
|
|
65
88
|
const deploymentStatusSchema = z.enum([
|
|
@@ -84,9 +107,16 @@ const deploymentSchema = z.object({
|
|
|
84
107
|
authorUsername: z.string().nullable(),
|
|
85
108
|
authorAvatarUrl: z.string().nullable(),
|
|
86
109
|
startedAt: z.coerce.date().nullable(),
|
|
87
|
-
completedAt: z.coerce.date().nullable()
|
|
110
|
+
completedAt: z.coerce.date().nullable(),
|
|
111
|
+
environmentId: z.string(),
|
|
112
|
+
environmentName: z.string(),
|
|
113
|
+
isCurrent: z.boolean(),
|
|
114
|
+
deploymentPageUrl: z.url().nullable()
|
|
88
115
|
});
|
|
89
|
-
const
|
|
116
|
+
const isValidLogTimeInput = (value) => {
|
|
117
|
+
if (ms(value) !== void 0) return true;
|
|
118
|
+
return !Number.isNaN(new Date(value).getTime());
|
|
119
|
+
};
|
|
90
120
|
const createEnvironmentContractV1 = oc.route({
|
|
91
121
|
path: "/v1/environments",
|
|
92
122
|
method: "POST",
|
|
@@ -225,6 +255,59 @@ const createProjectContractV1 = oc.route({
|
|
|
225
255
|
startCommand: z.string().nullable(),
|
|
226
256
|
createdAt: z.coerce.date()
|
|
227
257
|
}));
|
|
258
|
+
const environmentVariableOutputSchema = z.object({
|
|
259
|
+
id: z.string(),
|
|
260
|
+
key: z.string(),
|
|
261
|
+
value: z.string(),
|
|
262
|
+
isSecret: z.boolean(),
|
|
263
|
+
createdAt: z.coerce.date()
|
|
264
|
+
});
|
|
265
|
+
const listEnvironmentVariablesContractV1 = oc.route({
|
|
266
|
+
path: "/v1/environments/{environmentId}/environment-variables",
|
|
267
|
+
method: "GET",
|
|
268
|
+
summary: "List environment variables",
|
|
269
|
+
description: "List all environment variables for an environment",
|
|
270
|
+
tags: ["environments"],
|
|
271
|
+
successDescription: "The list of environment variables"
|
|
272
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentId: z.string().describe("The ID of the environment") })).output(z.array(environmentVariableOutputSchema));
|
|
273
|
+
const createEnvironmentVariablesContractV1 = oc.route({
|
|
274
|
+
path: "/v1/environments/{environmentId}/environment-variables",
|
|
275
|
+
method: "POST",
|
|
276
|
+
summary: "Add environment variables",
|
|
277
|
+
description: "Add one or more environment variables to an environment",
|
|
278
|
+
tags: ["environments"],
|
|
279
|
+
successDescription: "The environment variables have been added successfully"
|
|
280
|
+
}).errors({
|
|
281
|
+
NOT_FOUND: {},
|
|
282
|
+
BAD_REQUEST: {}
|
|
283
|
+
}).input(z.object({
|
|
284
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
285
|
+
environmentVariables: environmentVariablesSchema
|
|
286
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
287
|
+
const updateEnvironmentVariableContractV1 = oc.route({
|
|
288
|
+
path: "/v1/environment-variables/{environmentVariableId}",
|
|
289
|
+
method: "PATCH",
|
|
290
|
+
summary: "Update an environment variable",
|
|
291
|
+
description: "Update an environment variable by ID",
|
|
292
|
+
tags: ["environments"],
|
|
293
|
+
successDescription: "The environment variable has been updated successfully"
|
|
294
|
+
}).errors({
|
|
295
|
+
NOT_FOUND: {},
|
|
296
|
+
BAD_REQUEST: {}
|
|
297
|
+
}).input(z.object({
|
|
298
|
+
environmentVariableId: z.string().describe("The ID of the environment variable"),
|
|
299
|
+
key: environmentVariableSchema.shape.key,
|
|
300
|
+
value: environmentVariableSchema.shape.value.optional(),
|
|
301
|
+
isSecret: environmentVariableSchema.shape.isSecret
|
|
302
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
303
|
+
const deleteEnvironmentVariableContractV1 = oc.route({
|
|
304
|
+
path: "/v1/environment-variables/{environmentVariableId}",
|
|
305
|
+
method: "DELETE",
|
|
306
|
+
summary: "Delete an environment variable",
|
|
307
|
+
description: "Delete an environment variable by ID",
|
|
308
|
+
tags: ["environments"],
|
|
309
|
+
successDescription: "The environment variable has been deleted successfully"
|
|
310
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentVariableId: z.string().describe("The ID of the environment variable") })).output(z.object({ success: z.literal(true) }));
|
|
228
311
|
const deleteProjectContractV1 = oc.route({
|
|
229
312
|
path: "/v1/projects/:projectId",
|
|
230
313
|
method: "DELETE",
|
|
@@ -261,7 +344,7 @@ const deployEnvironmentContractV1 = oc.route({
|
|
|
261
344
|
}).input(z.object({
|
|
262
345
|
environmentId: z.string().describe("The ID of the environment to deploy"),
|
|
263
346
|
token: z.string().describe("The token to identify the source archive").optional()
|
|
264
|
-
})).output(
|
|
347
|
+
})).output(deploymentSchema);
|
|
265
348
|
const uploadDeploymentArtifactContractV1 = oc.route({
|
|
266
349
|
path: "/v1/deployments/upload",
|
|
267
350
|
method: "POST",
|
|
@@ -270,21 +353,22 @@ const uploadDeploymentArtifactContractV1 = oc.route({
|
|
|
270
353
|
tags: ["deployments"],
|
|
271
354
|
successDescription: "The presigned upload URL has been generated successfully"
|
|
272
355
|
}).input(z.object({ teamId: z.string().optional() }).optional()).output(z.object({
|
|
273
|
-
uploadUrl: z.
|
|
356
|
+
uploadUrl: z.url().describe("Presigned S3 URL to upload the source archive with HTTP PUT"),
|
|
274
357
|
token: z.string().describe("Token to identify the source archive"),
|
|
275
358
|
expiresAt: z.coerce.date().describe("Expiration date of the presigned URL")
|
|
276
359
|
}));
|
|
277
|
-
const
|
|
360
|
+
const listDeploymentsContractV1 = oc.route({
|
|
278
361
|
path: "/v1/projects/{projectId}/deployments",
|
|
279
362
|
method: "GET",
|
|
280
363
|
summary: "List project deployments",
|
|
281
364
|
description: "List all deployments for a project",
|
|
282
365
|
tags: ["deployments"],
|
|
283
366
|
successDescription: "The list of deployments"
|
|
284
|
-
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
367
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
368
|
+
projectId: z.string().describe("The ID of the project"),
|
|
369
|
+
status: z.array(deploymentStatusSchema).optional().describe("Filter by one or more statuses"),
|
|
370
|
+
environmentId: z.string().optional().describe("Filter by environment ID")
|
|
371
|
+
})).output(z.array(deploymentSchema));
|
|
288
372
|
const getDeploymentContractV1 = oc.route({
|
|
289
373
|
path: "/v1/deployments/{deploymentId}",
|
|
290
374
|
method: "GET",
|
|
@@ -292,7 +376,48 @@ const getDeploymentContractV1 = oc.route({
|
|
|
292
376
|
description: "Get a deployment by ID",
|
|
293
377
|
tags: ["deployments"],
|
|
294
378
|
successDescription: "The deployment details"
|
|
295
|
-
}).errors({ NOT_FOUND: {} }).input(z.object({ deploymentId: z.string().describe("The ID of the deployment") })).output(
|
|
379
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ deploymentId: z.string().describe("The ID of the deployment") })).output(deploymentSchema);
|
|
380
|
+
const getLogsContractV1 = oc.route({
|
|
381
|
+
path: "/v1/environments/{environmentId}/logs",
|
|
382
|
+
method: "GET",
|
|
383
|
+
summary: "Get logs",
|
|
384
|
+
description: "Get logs for an environment",
|
|
385
|
+
tags: ["environments"],
|
|
386
|
+
successDescription: "The logs"
|
|
387
|
+
}).errors({
|
|
388
|
+
NOT_FOUND: {},
|
|
389
|
+
BAD_REQUEST: {}
|
|
390
|
+
}).input(z.object({
|
|
391
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
392
|
+
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)"),
|
|
393
|
+
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"),
|
|
394
|
+
limit: z.coerce.number().int().min(1).max(1e3).default(1e3).describe("Maximum number of log entries to return."),
|
|
395
|
+
level: z.array(z.enum([
|
|
396
|
+
"INFO",
|
|
397
|
+
"ERROR",
|
|
398
|
+
"WARNING",
|
|
399
|
+
"DEBUG"
|
|
400
|
+
])).optional().describe("Filter by log level"),
|
|
401
|
+
search: z.string().optional().describe("Filter pattern to search for in log content"),
|
|
402
|
+
nextToken: z.string().optional().describe("Pagination token from a previous response")
|
|
403
|
+
})).output(z.object({
|
|
404
|
+
logs: z.array(z.object({
|
|
405
|
+
timestamp: z.coerce.date(),
|
|
406
|
+
type: z.enum([
|
|
407
|
+
"START",
|
|
408
|
+
"END",
|
|
409
|
+
"INFO",
|
|
410
|
+
"ERROR",
|
|
411
|
+
"WARNING",
|
|
412
|
+
"DEBUG"
|
|
413
|
+
]),
|
|
414
|
+
requestId: z.string(),
|
|
415
|
+
content: z.string().optional(),
|
|
416
|
+
method: z.string().optional(),
|
|
417
|
+
durationInMs: z.number().optional()
|
|
418
|
+
})),
|
|
419
|
+
nextToken: z.string().nullable()
|
|
420
|
+
}));
|
|
296
421
|
const getDeploymentLogsContractV1 = oc.route({
|
|
297
422
|
path: "/v1/deployments/{deploymentId}/logs",
|
|
298
423
|
method: "GET",
|
|
@@ -370,11 +495,43 @@ const getTunnelTicketContractV1 = oc.route({
|
|
|
370
495
|
ticket: z.string().describe("The signed tunnel ticket"),
|
|
371
496
|
tunnelHost: z.string().describe("The tunnel host to connect to")
|
|
372
497
|
}));
|
|
498
|
+
const publishServerContractV1 = oc.route({
|
|
499
|
+
path: "/v1/distribution/publish",
|
|
500
|
+
method: "POST",
|
|
501
|
+
summary: "Publish a server to the MCP registry",
|
|
502
|
+
tags: ["distribution"],
|
|
503
|
+
successDescription: "The server has been published successfully"
|
|
504
|
+
}).errors({
|
|
505
|
+
NOT_FOUND: {},
|
|
506
|
+
BAD_REQUEST: {}
|
|
507
|
+
}).input(z.object({
|
|
508
|
+
projectId: z.string(),
|
|
509
|
+
domain: z.string(),
|
|
510
|
+
title: z.string().min(1).max(100),
|
|
511
|
+
description: z.string().min(1).max(100),
|
|
512
|
+
websiteUrl: z.url().max(255).optional(),
|
|
513
|
+
iconSrc: z.url().max(255).optional(),
|
|
514
|
+
dryRun: z.boolean().optional()
|
|
515
|
+
})).output(z.object({ serverFields: serverFieldsSchema }));
|
|
516
|
+
const getServerInfoContractV1 = oc.route({
|
|
517
|
+
path: "/v1/distribution/get",
|
|
518
|
+
method: "GET",
|
|
519
|
+
summary: "Get server info",
|
|
520
|
+
description: "Get info about a server",
|
|
521
|
+
tags: ["distribution"],
|
|
522
|
+
successDescription: "The server info"
|
|
523
|
+
}).errors({
|
|
524
|
+
NOT_FOUND: {},
|
|
525
|
+
BAD_REQUEST: {}
|
|
526
|
+
}).input(z.object({
|
|
527
|
+
projectId: z.string(),
|
|
528
|
+
domain: z.string()
|
|
529
|
+
})).output(z.object({ serverFields: serverFieldsSchema }));
|
|
373
530
|
const contract = {
|
|
374
531
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
375
532
|
analytics: { get: { v1: getProjectAnalyticsContractV1 } },
|
|
376
533
|
deployments: {
|
|
377
|
-
list: { v1:
|
|
534
|
+
list: { v1: listDeploymentsContractV1 },
|
|
378
535
|
get: { v1: getDeploymentContractV1 },
|
|
379
536
|
uploadArtifact: { v1: uploadDeploymentArtifactContractV1 },
|
|
380
537
|
getLogs: { v1: getDeploymentLogsContractV1 }
|
|
@@ -382,7 +539,14 @@ const contract = {
|
|
|
382
539
|
environments: {
|
|
383
540
|
create: { v1: createEnvironmentContractV1 },
|
|
384
541
|
get: { v1: getEnvironmentContractV1 },
|
|
385
|
-
deploy: { v1: deployEnvironmentContractV1 }
|
|
542
|
+
deploy: { v1: deployEnvironmentContractV1 },
|
|
543
|
+
getLogs: { v1: getLogsContractV1 }
|
|
544
|
+
},
|
|
545
|
+
environmentVariables: {
|
|
546
|
+
list: { v1: listEnvironmentVariablesContractV1 },
|
|
547
|
+
create: { v1: createEnvironmentVariablesContractV1 },
|
|
548
|
+
update: { v1: updateEnvironmentVariableContractV1 },
|
|
549
|
+
delete: { v1: deleteEnvironmentVariableContractV1 }
|
|
386
550
|
},
|
|
387
551
|
projects: {
|
|
388
552
|
update: { v1: updateProjectContractV1 },
|
|
@@ -391,8 +555,11 @@ const contract = {
|
|
|
391
555
|
create: { v1: createProjectContractV1 },
|
|
392
556
|
delete: { v1: deleteProjectContractV1 }
|
|
393
557
|
},
|
|
394
|
-
tunnels: { getTicket: { v1: getTunnelTicketContractV1 } }
|
|
558
|
+
tunnels: { getTicket: { v1: getTunnelTicketContractV1 } },
|
|
559
|
+
distribution: {
|
|
560
|
+
publish: { v1: publishServerContractV1 },
|
|
561
|
+
get: { v1: getServerInfoContractV1 }
|
|
562
|
+
}
|
|
395
563
|
};
|
|
396
|
-
|
|
397
564
|
//#endregion
|
|
398
|
-
export { buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
565
|
+
export { buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, serverFieldsSchema, 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.ebd414b",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -17,22 +17,25 @@
|
|
|
17
17
|
"author": "Alpic",
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@orpc/contract": "^1.13.
|
|
20
|
+
"@orpc/contract": "^1.13.8",
|
|
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.4",
|
|
27
29
|
"typescript": "^5.9.3",
|
|
28
|
-
"vitest": "^4.0
|
|
30
|
+
"vitest": "^4.1.0"
|
|
29
31
|
},
|
|
30
32
|
"scripts": {
|
|
31
33
|
"build": "shx rm -rf dist && tsdown",
|
|
32
|
-
"format": "biome check --write --error-on-warnings",
|
|
34
|
+
"format": "biome check --write --error-on-warnings .",
|
|
33
35
|
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
34
36
|
"test:unit": "vitest run",
|
|
35
|
-
"test:format": "
|
|
36
|
-
"test:type": "tsc --noEmit"
|
|
37
|
+
"test:format": "biome check --error-on-warnings .",
|
|
38
|
+
"test:type": "tsc --noEmit",
|
|
39
|
+
"publish:npm": "pnpm publish --tag \"${NPM_TAG}\" --access public --no-git-checks"
|
|
37
40
|
}
|
|
38
41
|
}
|