@alpic-ai/api 0.0.0-staging.e2ffb8b → 0.0.0-staging.e35e195
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 +567 -44
- package/dist/index.mjs +336 -15
- package/package.json +11 -8
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as _orpc_contract0 from "@orpc/contract";
|
|
1
|
+
import * as _$_orpc_contract0 from "@orpc/contract";
|
|
2
2
|
import { InferContractRouterInputs, InferContractRouterOutputs } from "@orpc/contract";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
|
|
@@ -10,7 +10,13 @@ type ApiContext = {
|
|
|
10
10
|
awsCognitoUserSub: string | undefined;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
-
declare const
|
|
13
|
+
declare const deploymentStatusSchema: z.ZodEnum<{
|
|
14
|
+
failed: "failed";
|
|
15
|
+
ongoing: "ongoing";
|
|
16
|
+
deployed: "deployed";
|
|
17
|
+
canceled: "canceled";
|
|
18
|
+
}>;
|
|
19
|
+
declare const createEnvironmentContractV1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
14
20
|
projectId: z.ZodString;
|
|
15
21
|
name: z.ZodString;
|
|
16
22
|
sourceBranch: z.ZodString;
|
|
@@ -26,14 +32,14 @@ declare const createEnvironmentContractV1: _orpc_contract0.ContractProcedureBuil
|
|
|
26
32
|
urls: z.ZodArray<z.ZodString>;
|
|
27
33
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
28
34
|
projectId: z.ZodString;
|
|
29
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
35
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
30
36
|
NOT_FOUND: {};
|
|
31
37
|
BAD_REQUEST: {};
|
|
32
38
|
}>, Record<never, never>>;
|
|
33
39
|
declare const contract: {
|
|
34
40
|
teams: {
|
|
35
41
|
list: {
|
|
36
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithOutput<_orpc_contract0.Schema<unknown, unknown>, z.ZodArray<z.ZodObject<{
|
|
42
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithOutput<_$_orpc_contract0.Schema<unknown, unknown>, z.ZodArray<z.ZodObject<{
|
|
37
43
|
id: z.ZodString;
|
|
38
44
|
name: z.ZodString;
|
|
39
45
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
@@ -43,7 +49,7 @@ declare const contract: {
|
|
|
43
49
|
};
|
|
44
50
|
analytics: {
|
|
45
51
|
get: {
|
|
46
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
52
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
47
53
|
projectId: z.ZodString;
|
|
48
54
|
startTimestamp: z.ZodCoercedNumber<unknown>;
|
|
49
55
|
endTimestamp: z.ZodCoercedNumber<unknown>;
|
|
@@ -86,7 +92,7 @@ declare const contract: {
|
|
|
86
92
|
categories: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
87
93
|
}, z.core.$strip>>;
|
|
88
94
|
}, z.core.$strip>;
|
|
89
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
95
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
90
96
|
NOT_FOUND: {};
|
|
91
97
|
BAD_REQUEST: {};
|
|
92
98
|
}>, Record<never, never>>;
|
|
@@ -94,14 +100,21 @@ declare const contract: {
|
|
|
94
100
|
};
|
|
95
101
|
deployments: {
|
|
96
102
|
list: {
|
|
97
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
103
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
98
104
|
projectId: z.ZodString;
|
|
105
|
+
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
106
|
+
failed: "failed";
|
|
107
|
+
ongoing: "ongoing";
|
|
108
|
+
deployed: "deployed";
|
|
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<{
|
|
115
|
+
failed: "failed";
|
|
102
116
|
ongoing: "ongoing";
|
|
103
117
|
deployed: "deployed";
|
|
104
|
-
failed: "failed";
|
|
105
118
|
canceled: "canceled";
|
|
106
119
|
}>;
|
|
107
120
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -111,21 +124,23 @@ 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;
|
|
116
|
-
|
|
128
|
+
environmentName: z.ZodString;
|
|
129
|
+
isCurrent: z.ZodBoolean;
|
|
130
|
+
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
131
|
+
}, z.core.$strip>>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
117
132
|
NOT_FOUND: {};
|
|
118
133
|
}>, Record<never, never>>;
|
|
119
134
|
};
|
|
120
135
|
get: {
|
|
121
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
136
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
122
137
|
deploymentId: z.ZodString;
|
|
123
138
|
}, z.core.$strip>, z.ZodObject<{
|
|
124
139
|
id: z.ZodString;
|
|
125
140
|
status: z.ZodEnum<{
|
|
141
|
+
failed: "failed";
|
|
126
142
|
ongoing: "ongoing";
|
|
127
143
|
deployed: "deployed";
|
|
128
|
-
failed: "failed";
|
|
129
144
|
canceled: "canceled";
|
|
130
145
|
}>;
|
|
131
146
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -135,22 +150,25 @@ 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
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
157
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
140
158
|
NOT_FOUND: {};
|
|
141
159
|
}>, Record<never, never>>;
|
|
142
160
|
};
|
|
143
161
|
uploadArtifact: {
|
|
144
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
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>>;
|
|
151
169
|
};
|
|
152
170
|
getLogs: {
|
|
153
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
171
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
154
172
|
deploymentId: z.ZodString;
|
|
155
173
|
}, z.core.$strip>, z.ZodObject<{
|
|
156
174
|
logs: z.ZodArray<z.ZodObject<{
|
|
@@ -158,14 +176,14 @@ declare const contract: {
|
|
|
158
176
|
content: z.ZodOptional<z.ZodString>;
|
|
159
177
|
}, z.core.$strip>>;
|
|
160
178
|
hasMoreLogs: z.ZodBoolean;
|
|
161
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
179
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
162
180
|
NOT_FOUND: {};
|
|
163
181
|
}>, Record<never, never>>;
|
|
164
182
|
};
|
|
165
183
|
};
|
|
166
184
|
environments: {
|
|
167
185
|
create: {
|
|
168
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
186
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
169
187
|
projectId: z.ZodString;
|
|
170
188
|
name: z.ZodString;
|
|
171
189
|
sourceBranch: z.ZodString;
|
|
@@ -181,13 +199,13 @@ declare const contract: {
|
|
|
181
199
|
urls: z.ZodArray<z.ZodString>;
|
|
182
200
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
183
201
|
projectId: z.ZodString;
|
|
184
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
202
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
185
203
|
NOT_FOUND: {};
|
|
186
204
|
BAD_REQUEST: {};
|
|
187
205
|
}>, Record<never, never>>;
|
|
188
206
|
};
|
|
189
207
|
get: {
|
|
190
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
208
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
191
209
|
environmentId: z.ZodString;
|
|
192
210
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
211
|
id: z.ZodString;
|
|
@@ -197,20 +215,20 @@ declare const contract: {
|
|
|
197
215
|
domains: z.ZodArray<z.ZodURL>;
|
|
198
216
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
199
217
|
projectId: z.ZodString;
|
|
200
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
218
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
201
219
|
NOT_FOUND: {};
|
|
202
220
|
}>, Record<never, never>>;
|
|
203
221
|
};
|
|
204
222
|
deploy: {
|
|
205
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
223
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
206
224
|
environmentId: z.ZodString;
|
|
207
225
|
token: z.ZodOptional<z.ZodString>;
|
|
208
226
|
}, z.core.$strip>, z.ZodObject<{
|
|
209
227
|
id: z.ZodString;
|
|
210
228
|
status: z.ZodEnum<{
|
|
229
|
+
failed: "failed";
|
|
211
230
|
ongoing: "ongoing";
|
|
212
231
|
deployed: "deployed";
|
|
213
|
-
failed: "failed";
|
|
214
232
|
canceled: "canceled";
|
|
215
233
|
}>;
|
|
216
234
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -220,16 +238,107 @@ 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
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
245
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
246
|
+
NOT_FOUND: {};
|
|
247
|
+
BAD_REQUEST: {};
|
|
248
|
+
}>, Record<never, never>>;
|
|
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>, {
|
|
225
282
|
NOT_FOUND: {};
|
|
226
283
|
BAD_REQUEST: {};
|
|
227
284
|
}>, Record<never, never>>;
|
|
228
285
|
};
|
|
229
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
|
+
};
|
|
338
|
+
};
|
|
230
339
|
projects: {
|
|
231
340
|
update: {
|
|
232
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
341
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
233
342
|
projectId: z.ZodString;
|
|
234
343
|
name: z.ZodOptional<z.ZodString>;
|
|
235
344
|
sourceRepository: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -262,18 +371,18 @@ declare const contract: {
|
|
|
262
371
|
domains: z.ZodArray<z.ZodObject<{
|
|
263
372
|
domain: z.ZodString;
|
|
264
373
|
status: z.ZodEnum<{
|
|
374
|
+
failed: "failed";
|
|
265
375
|
ongoing: "ongoing";
|
|
266
376
|
deployed: "deployed";
|
|
267
|
-
failed: "failed";
|
|
268
377
|
}>;
|
|
269
378
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
270
379
|
}, z.core.$strip>>;
|
|
271
380
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
272
381
|
id: z.ZodString;
|
|
273
382
|
status: z.ZodEnum<{
|
|
383
|
+
failed: "failed";
|
|
274
384
|
ongoing: "ongoing";
|
|
275
385
|
deployed: "deployed";
|
|
276
|
-
failed: "failed";
|
|
277
386
|
canceled: "canceled";
|
|
278
387
|
}>;
|
|
279
388
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -291,9 +400,9 @@ declare const contract: {
|
|
|
291
400
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
292
401
|
id: z.ZodString;
|
|
293
402
|
status: z.ZodEnum<{
|
|
403
|
+
failed: "failed";
|
|
294
404
|
ongoing: "ongoing";
|
|
295
405
|
deployed: "deployed";
|
|
296
|
-
failed: "failed";
|
|
297
406
|
canceled: "canceled";
|
|
298
407
|
}>;
|
|
299
408
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -301,13 +410,13 @@ declare const contract: {
|
|
|
301
410
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
302
411
|
}, z.core.$strip>>;
|
|
303
412
|
}, z.core.$strip>>;
|
|
304
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
413
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
305
414
|
NOT_FOUND: {};
|
|
306
415
|
BAD_REQUEST: {};
|
|
307
416
|
}>, Record<never, never>>;
|
|
308
417
|
};
|
|
309
418
|
get: {
|
|
310
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
419
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
311
420
|
projectId: z.ZodString;
|
|
312
421
|
}, z.core.$strip>, z.ZodObject<{
|
|
313
422
|
id: z.ZodString;
|
|
@@ -338,18 +447,18 @@ declare const contract: {
|
|
|
338
447
|
domains: z.ZodArray<z.ZodObject<{
|
|
339
448
|
domain: z.ZodString;
|
|
340
449
|
status: z.ZodEnum<{
|
|
450
|
+
failed: "failed";
|
|
341
451
|
ongoing: "ongoing";
|
|
342
452
|
deployed: "deployed";
|
|
343
|
-
failed: "failed";
|
|
344
453
|
}>;
|
|
345
454
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
346
455
|
}, z.core.$strip>>;
|
|
347
456
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
348
457
|
id: z.ZodString;
|
|
349
458
|
status: z.ZodEnum<{
|
|
459
|
+
failed: "failed";
|
|
350
460
|
ongoing: "ongoing";
|
|
351
461
|
deployed: "deployed";
|
|
352
|
-
failed: "failed";
|
|
353
462
|
canceled: "canceled";
|
|
354
463
|
}>;
|
|
355
464
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -367,9 +476,9 @@ declare const contract: {
|
|
|
367
476
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
368
477
|
id: z.ZodString;
|
|
369
478
|
status: z.ZodEnum<{
|
|
479
|
+
failed: "failed";
|
|
370
480
|
ongoing: "ongoing";
|
|
371
481
|
deployed: "deployed";
|
|
372
|
-
failed: "failed";
|
|
373
482
|
canceled: "canceled";
|
|
374
483
|
}>;
|
|
375
484
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -377,12 +486,12 @@ declare const contract: {
|
|
|
377
486
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
378
487
|
}, z.core.$strip>>;
|
|
379
488
|
}, z.core.$strip>>;
|
|
380
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
489
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
381
490
|
NOT_FOUND: {};
|
|
382
491
|
}>, Record<never, never>>;
|
|
383
492
|
};
|
|
384
493
|
list: {
|
|
385
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
494
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
386
495
|
teamId: z.ZodOptional<z.ZodString>;
|
|
387
496
|
}, z.core.$strip>>, z.ZodArray<z.ZodObject<{
|
|
388
497
|
id: z.ZodString;
|
|
@@ -413,18 +522,18 @@ declare const contract: {
|
|
|
413
522
|
domains: z.ZodArray<z.ZodObject<{
|
|
414
523
|
domain: z.ZodString;
|
|
415
524
|
status: z.ZodEnum<{
|
|
525
|
+
failed: "failed";
|
|
416
526
|
ongoing: "ongoing";
|
|
417
527
|
deployed: "deployed";
|
|
418
|
-
failed: "failed";
|
|
419
528
|
}>;
|
|
420
529
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
421
530
|
}, z.core.$strip>>;
|
|
422
531
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
423
532
|
id: z.ZodString;
|
|
424
533
|
status: z.ZodEnum<{
|
|
534
|
+
failed: "failed";
|
|
425
535
|
ongoing: "ongoing";
|
|
426
536
|
deployed: "deployed";
|
|
427
|
-
failed: "failed";
|
|
428
537
|
canceled: "canceled";
|
|
429
538
|
}>;
|
|
430
539
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -442,9 +551,9 @@ declare const contract: {
|
|
|
442
551
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
443
552
|
id: z.ZodString;
|
|
444
553
|
status: z.ZodEnum<{
|
|
554
|
+
failed: "failed";
|
|
445
555
|
ongoing: "ongoing";
|
|
446
556
|
deployed: "deployed";
|
|
447
|
-
failed: "failed";
|
|
448
557
|
canceled: "canceled";
|
|
449
558
|
}>;
|
|
450
559
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -455,7 +564,7 @@ declare const contract: {
|
|
|
455
564
|
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
456
565
|
};
|
|
457
566
|
create: {
|
|
458
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
567
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
459
568
|
teamId: z.ZodOptional<z.ZodString>;
|
|
460
569
|
name: z.ZodString;
|
|
461
570
|
sourceRepository: z.ZodOptional<z.ZodString>;
|
|
@@ -513,30 +622,266 @@ declare const contract: {
|
|
|
513
622
|
installCommand: z.ZodNullable<z.ZodString>;
|
|
514
623
|
startCommand: z.ZodNullable<z.ZodString>;
|
|
515
624
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
516
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
625
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
517
626
|
NOT_FOUND: {};
|
|
518
627
|
BAD_REQUEST: {};
|
|
519
628
|
}>, Record<never, never>>;
|
|
520
629
|
};
|
|
521
630
|
delete: {
|
|
522
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
631
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
523
632
|
projectId: z.ZodString;
|
|
524
633
|
}, z.core.$strip>, z.ZodObject<{
|
|
525
634
|
success: z.ZodLiteral<true>;
|
|
526
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
635
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
527
636
|
NOT_FOUND: {};
|
|
528
637
|
}>, Record<never, never>>;
|
|
529
638
|
};
|
|
530
639
|
};
|
|
640
|
+
playground: {
|
|
641
|
+
get: {
|
|
642
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
643
|
+
environmentId: z.ZodString;
|
|
644
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
645
|
+
isPlaygroundEnabled: z.ZodBoolean;
|
|
646
|
+
serverMetadata: z.ZodNullable<z.ZodObject<{
|
|
647
|
+
name: z.ZodString;
|
|
648
|
+
description: z.ZodString;
|
|
649
|
+
headers: z.ZodArray<z.ZodObject<{
|
|
650
|
+
name: z.ZodString;
|
|
651
|
+
description: z.ZodString;
|
|
652
|
+
isRequired: z.ZodBoolean;
|
|
653
|
+
isSecret: z.ZodBoolean;
|
|
654
|
+
}, z.core.$strip>>;
|
|
655
|
+
examplePrompts: z.ZodArray<z.ZodObject<{
|
|
656
|
+
title: z.ZodString;
|
|
657
|
+
prompt: z.ZodString;
|
|
658
|
+
}, z.core.$strip>>;
|
|
659
|
+
}, z.core.$strip>>;
|
|
660
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
661
|
+
NOT_FOUND: {};
|
|
662
|
+
}>, Record<never, never>>;
|
|
663
|
+
};
|
|
664
|
+
upsert: {
|
|
665
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
666
|
+
environmentId: z.ZodString;
|
|
667
|
+
isPlaygroundEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
668
|
+
name: z.ZodOptional<z.ZodString>;
|
|
669
|
+
description: z.ZodOptional<z.ZodString>;
|
|
670
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
671
|
+
name: z.ZodString;
|
|
672
|
+
description: z.ZodString;
|
|
673
|
+
isRequired: z.ZodDefault<z.ZodBoolean>;
|
|
674
|
+
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
675
|
+
}, z.core.$strip>>>;
|
|
676
|
+
examplePrompts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
677
|
+
title: z.ZodString;
|
|
678
|
+
prompt: z.ZodString;
|
|
679
|
+
}, z.core.$strip>>>;
|
|
680
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
681
|
+
isPlaygroundEnabled: z.ZodBoolean;
|
|
682
|
+
serverMetadata: z.ZodNullable<z.ZodObject<{
|
|
683
|
+
name: z.ZodString;
|
|
684
|
+
description: z.ZodString;
|
|
685
|
+
headers: z.ZodArray<z.ZodObject<{
|
|
686
|
+
name: z.ZodString;
|
|
687
|
+
description: z.ZodString;
|
|
688
|
+
isRequired: z.ZodBoolean;
|
|
689
|
+
isSecret: z.ZodBoolean;
|
|
690
|
+
}, z.core.$strip>>;
|
|
691
|
+
examplePrompts: z.ZodArray<z.ZodObject<{
|
|
692
|
+
title: z.ZodString;
|
|
693
|
+
prompt: z.ZodString;
|
|
694
|
+
}, z.core.$strip>>;
|
|
695
|
+
}, z.core.$strip>>;
|
|
696
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
697
|
+
NOT_FOUND: {};
|
|
698
|
+
BAD_REQUEST: {};
|
|
699
|
+
}>, Record<never, never>>;
|
|
700
|
+
};
|
|
701
|
+
};
|
|
531
702
|
tunnels: {
|
|
532
703
|
getTicket: {
|
|
533
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithOutput<_orpc_contract0.Schema<unknown, unknown>, z.ZodObject<{
|
|
704
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithOutput<_$_orpc_contract0.Schema<unknown, unknown>, z.ZodObject<{
|
|
534
705
|
subdomain: z.ZodString;
|
|
535
706
|
ticket: z.ZodString;
|
|
536
707
|
tunnelHost: z.ZodString;
|
|
537
708
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
538
709
|
};
|
|
539
710
|
};
|
|
711
|
+
distribution: {
|
|
712
|
+
publish: {
|
|
713
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
714
|
+
projectId: z.ZodString;
|
|
715
|
+
domain: z.ZodString;
|
|
716
|
+
title: z.ZodString;
|
|
717
|
+
description: z.ZodString;
|
|
718
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
719
|
+
iconSrc: z.ZodOptional<z.ZodURL>;
|
|
720
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
721
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
722
|
+
serverFields: z.ZodObject<{
|
|
723
|
+
$schema: z.ZodString;
|
|
724
|
+
name: z.ZodString;
|
|
725
|
+
description: z.ZodString;
|
|
726
|
+
version: z.ZodOptional<z.ZodString>;
|
|
727
|
+
title: z.ZodOptional<z.ZodString>;
|
|
728
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
729
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
730
|
+
src: z.ZodURL;
|
|
731
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
732
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
733
|
+
}, z.core.$strip>>>;
|
|
734
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
735
|
+
type: z.ZodString;
|
|
736
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
737
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
738
|
+
name: z.ZodString;
|
|
739
|
+
description: z.ZodString;
|
|
740
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
741
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
742
|
+
}, z.core.$strip>>>;
|
|
743
|
+
}, z.core.$strip>>>;
|
|
744
|
+
}, z.core.$strip>;
|
|
745
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
746
|
+
NOT_FOUND: {};
|
|
747
|
+
BAD_REQUEST: {};
|
|
748
|
+
}>, Record<never, never>>;
|
|
749
|
+
};
|
|
750
|
+
get: {
|
|
751
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
752
|
+
projectId: z.ZodString;
|
|
753
|
+
domain: z.ZodString;
|
|
754
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
755
|
+
serverFields: z.ZodObject<{
|
|
756
|
+
$schema: z.ZodString;
|
|
757
|
+
name: z.ZodString;
|
|
758
|
+
description: z.ZodString;
|
|
759
|
+
version: z.ZodOptional<z.ZodString>;
|
|
760
|
+
title: z.ZodOptional<z.ZodString>;
|
|
761
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
762
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
763
|
+
src: z.ZodURL;
|
|
764
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
765
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
766
|
+
}, z.core.$strip>>>;
|
|
767
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
768
|
+
type: z.ZodString;
|
|
769
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
770
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
771
|
+
name: z.ZodString;
|
|
772
|
+
description: z.ZodString;
|
|
773
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
774
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
775
|
+
}, z.core.$strip>>>;
|
|
776
|
+
}, z.core.$strip>>>;
|
|
777
|
+
}, z.core.$strip>;
|
|
778
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
779
|
+
NOT_FOUND: {};
|
|
780
|
+
BAD_REQUEST: {};
|
|
781
|
+
}>, Record<never, never>>;
|
|
782
|
+
};
|
|
783
|
+
};
|
|
784
|
+
beacon: {
|
|
785
|
+
create: {
|
|
786
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
787
|
+
targetUrl: z.ZodString;
|
|
788
|
+
teamId: z.ZodOptional<z.ZodString>;
|
|
789
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
790
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
791
|
+
id: z.ZodString;
|
|
792
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
793
|
+
NOT_FOUND: {};
|
|
794
|
+
BAD_REQUEST: {};
|
|
795
|
+
}>, Record<never, never>>;
|
|
796
|
+
};
|
|
797
|
+
get: {
|
|
798
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
799
|
+
analysisId: z.ZodString;
|
|
800
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
801
|
+
id: z.ZodString;
|
|
802
|
+
targetUrl: z.ZodString;
|
|
803
|
+
status: z.ZodEnum<{
|
|
804
|
+
pending: "pending";
|
|
805
|
+
partial: "partial";
|
|
806
|
+
completed: "completed";
|
|
807
|
+
failed: "failed";
|
|
808
|
+
}>;
|
|
809
|
+
durationMs: z.ZodNullable<z.ZodNumber>;
|
|
810
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
811
|
+
report: z.ZodNullable<z.ZodObject<{
|
|
812
|
+
schemaVersion: z.ZodString;
|
|
813
|
+
auditId: z.ZodString;
|
|
814
|
+
targetUrl: z.ZodString;
|
|
815
|
+
startedAt: z.ZodString;
|
|
816
|
+
completedAt: z.ZodString;
|
|
817
|
+
durationMs: z.ZodNumber;
|
|
818
|
+
results: z.ZodArray<z.ZodObject<{
|
|
819
|
+
checkId: z.ZodString;
|
|
820
|
+
status: z.ZodEnum<{
|
|
821
|
+
pending: "pending";
|
|
822
|
+
pass: "pass";
|
|
823
|
+
fail: "fail";
|
|
824
|
+
skip: "skip";
|
|
825
|
+
}>;
|
|
826
|
+
message: z.ZodString;
|
|
827
|
+
skipReason: z.ZodOptional<z.ZodString>;
|
|
828
|
+
severity: z.ZodEnum<{
|
|
829
|
+
error: "error";
|
|
830
|
+
warning: "warning";
|
|
831
|
+
info: "info";
|
|
832
|
+
}>;
|
|
833
|
+
category: z.ZodEnum<{
|
|
834
|
+
connectivity: "connectivity";
|
|
835
|
+
"tool-metadata": "tool-metadata";
|
|
836
|
+
"resource-metadata": "resource-metadata";
|
|
837
|
+
performance: "performance";
|
|
838
|
+
e2e: "e2e";
|
|
839
|
+
}>;
|
|
840
|
+
scope: z.ZodEnum<{
|
|
841
|
+
server: "server";
|
|
842
|
+
view: "view";
|
|
843
|
+
}>;
|
|
844
|
+
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
845
|
+
chatgpt: "chatgpt";
|
|
846
|
+
claudeai: "claudeai";
|
|
847
|
+
}>>>>;
|
|
848
|
+
durationMs: z.ZodNumber;
|
|
849
|
+
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
850
|
+
label: z.ZodString;
|
|
851
|
+
value: z.ZodOptional<z.ZodString>;
|
|
852
|
+
}, z.core.$strip>>>;
|
|
853
|
+
hint: z.ZodOptional<z.ZodObject<{
|
|
854
|
+
text: z.ZodString;
|
|
855
|
+
}, z.core.$strip>>;
|
|
856
|
+
}, z.core.$strip>>;
|
|
857
|
+
requiresAuth: z.ZodBoolean;
|
|
858
|
+
hasViewSupport: z.ZodBoolean;
|
|
859
|
+
viewPlatforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
860
|
+
chatgpt: "chatgpt";
|
|
861
|
+
claudeai: "claudeai";
|
|
862
|
+
}>>>>;
|
|
863
|
+
isReadyForPlatform: z.ZodRecord<z.ZodEnum<{
|
|
864
|
+
chatgpt: "chatgpt";
|
|
865
|
+
claudeai: "claudeai";
|
|
866
|
+
}>, z.ZodBoolean>;
|
|
867
|
+
widgetScreenshotKeys: z.ZodOptional<z.ZodObject<{
|
|
868
|
+
chatgpt: z.ZodOptional<z.ZodString>;
|
|
869
|
+
claudeai: z.ZodOptional<z.ZodString>;
|
|
870
|
+
}, z.core.$strip>>;
|
|
871
|
+
widgetScreenshots: z.ZodOptional<z.ZodObject<{
|
|
872
|
+
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
873
|
+
url: z.ZodString;
|
|
874
|
+
}, z.core.$strip>>;
|
|
875
|
+
claudeai: z.ZodOptional<z.ZodObject<{
|
|
876
|
+
url: z.ZodString;
|
|
877
|
+
}, z.core.$strip>>;
|
|
878
|
+
}, z.core.$strip>>;
|
|
879
|
+
}, z.core.$strip>>;
|
|
880
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
881
|
+
NOT_FOUND: {};
|
|
882
|
+
}>, Record<never, never>>;
|
|
883
|
+
};
|
|
884
|
+
};
|
|
540
885
|
};
|
|
541
886
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
542
887
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
|
@@ -571,5 +916,183 @@ declare const transportSchema: z.ZodEnum<{
|
|
|
571
916
|
streamablehttp: "streamablehttp";
|
|
572
917
|
}>;
|
|
573
918
|
type Transport = z.infer<typeof transportSchema>;
|
|
919
|
+
declare const analysisStatusSchema: z.ZodEnum<{
|
|
920
|
+
pending: "pending";
|
|
921
|
+
partial: "partial";
|
|
922
|
+
completed: "completed";
|
|
923
|
+
failed: "failed";
|
|
924
|
+
}>;
|
|
925
|
+
declare const platformSchema: z.ZodEnum<{
|
|
926
|
+
chatgpt: "chatgpt";
|
|
927
|
+
claudeai: "claudeai";
|
|
928
|
+
}>;
|
|
929
|
+
type Platform = z.infer<typeof platformSchema>;
|
|
930
|
+
declare const checkSeveritySchema: z.ZodEnum<{
|
|
931
|
+
error: "error";
|
|
932
|
+
warning: "warning";
|
|
933
|
+
info: "info";
|
|
934
|
+
}>;
|
|
935
|
+
type CheckSeverity = z.infer<typeof checkSeveritySchema>;
|
|
936
|
+
declare const checkCategorySchema: z.ZodEnum<{
|
|
937
|
+
connectivity: "connectivity";
|
|
938
|
+
"tool-metadata": "tool-metadata";
|
|
939
|
+
"resource-metadata": "resource-metadata";
|
|
940
|
+
performance: "performance";
|
|
941
|
+
e2e: "e2e";
|
|
942
|
+
}>;
|
|
943
|
+
type CheckCategory = z.infer<typeof checkCategorySchema>;
|
|
944
|
+
declare const checkScopeSchema: z.ZodEnum<{
|
|
945
|
+
server: "server";
|
|
946
|
+
view: "view";
|
|
947
|
+
}>;
|
|
948
|
+
type CheckScope = z.infer<typeof checkScopeSchema>;
|
|
949
|
+
declare const checkDetailSchema: z.ZodObject<{
|
|
950
|
+
label: z.ZodString;
|
|
951
|
+
value: z.ZodOptional<z.ZodString>;
|
|
952
|
+
}, z.core.$strip>;
|
|
953
|
+
type CheckDetail = z.infer<typeof checkDetailSchema>;
|
|
954
|
+
declare const checkResultSchema: z.ZodObject<{
|
|
955
|
+
checkId: z.ZodString;
|
|
956
|
+
status: z.ZodEnum<{
|
|
957
|
+
pending: "pending";
|
|
958
|
+
pass: "pass";
|
|
959
|
+
fail: "fail";
|
|
960
|
+
skip: "skip";
|
|
961
|
+
}>;
|
|
962
|
+
message: z.ZodString;
|
|
963
|
+
skipReason: z.ZodOptional<z.ZodString>;
|
|
964
|
+
severity: z.ZodEnum<{
|
|
965
|
+
error: "error";
|
|
966
|
+
warning: "warning";
|
|
967
|
+
info: "info";
|
|
968
|
+
}>;
|
|
969
|
+
category: z.ZodEnum<{
|
|
970
|
+
connectivity: "connectivity";
|
|
971
|
+
"tool-metadata": "tool-metadata";
|
|
972
|
+
"resource-metadata": "resource-metadata";
|
|
973
|
+
performance: "performance";
|
|
974
|
+
e2e: "e2e";
|
|
975
|
+
}>;
|
|
976
|
+
scope: z.ZodEnum<{
|
|
977
|
+
server: "server";
|
|
978
|
+
view: "view";
|
|
979
|
+
}>;
|
|
980
|
+
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
981
|
+
chatgpt: "chatgpt";
|
|
982
|
+
claudeai: "claudeai";
|
|
983
|
+
}>>>>;
|
|
984
|
+
durationMs: z.ZodNumber;
|
|
985
|
+
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
986
|
+
label: z.ZodString;
|
|
987
|
+
value: z.ZodOptional<z.ZodString>;
|
|
988
|
+
}, z.core.$strip>>>;
|
|
989
|
+
hint: z.ZodOptional<z.ZodObject<{
|
|
990
|
+
text: z.ZodString;
|
|
991
|
+
}, z.core.$strip>>;
|
|
992
|
+
}, z.core.$strip>;
|
|
993
|
+
type CheckResult = z.infer<typeof checkResultSchema>;
|
|
994
|
+
declare const auditReportSchema: z.ZodObject<{
|
|
995
|
+
schemaVersion: z.ZodString;
|
|
996
|
+
auditId: z.ZodString;
|
|
997
|
+
targetUrl: z.ZodString;
|
|
998
|
+
startedAt: z.ZodString;
|
|
999
|
+
completedAt: z.ZodString;
|
|
1000
|
+
durationMs: z.ZodNumber;
|
|
1001
|
+
results: z.ZodArray<z.ZodObject<{
|
|
1002
|
+
checkId: z.ZodString;
|
|
1003
|
+
status: z.ZodEnum<{
|
|
1004
|
+
pending: "pending";
|
|
1005
|
+
pass: "pass";
|
|
1006
|
+
fail: "fail";
|
|
1007
|
+
skip: "skip";
|
|
1008
|
+
}>;
|
|
1009
|
+
message: z.ZodString;
|
|
1010
|
+
skipReason: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
severity: z.ZodEnum<{
|
|
1012
|
+
error: "error";
|
|
1013
|
+
warning: "warning";
|
|
1014
|
+
info: "info";
|
|
1015
|
+
}>;
|
|
1016
|
+
category: z.ZodEnum<{
|
|
1017
|
+
connectivity: "connectivity";
|
|
1018
|
+
"tool-metadata": "tool-metadata";
|
|
1019
|
+
"resource-metadata": "resource-metadata";
|
|
1020
|
+
performance: "performance";
|
|
1021
|
+
e2e: "e2e";
|
|
1022
|
+
}>;
|
|
1023
|
+
scope: z.ZodEnum<{
|
|
1024
|
+
server: "server";
|
|
1025
|
+
view: "view";
|
|
1026
|
+
}>;
|
|
1027
|
+
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1028
|
+
chatgpt: "chatgpt";
|
|
1029
|
+
claudeai: "claudeai";
|
|
1030
|
+
}>>>>;
|
|
1031
|
+
durationMs: z.ZodNumber;
|
|
1032
|
+
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1033
|
+
label: z.ZodString;
|
|
1034
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1035
|
+
}, z.core.$strip>>>;
|
|
1036
|
+
hint: z.ZodOptional<z.ZodObject<{
|
|
1037
|
+
text: z.ZodString;
|
|
1038
|
+
}, z.core.$strip>>;
|
|
1039
|
+
}, z.core.$strip>>;
|
|
1040
|
+
requiresAuth: z.ZodBoolean;
|
|
1041
|
+
hasViewSupport: z.ZodBoolean;
|
|
1042
|
+
viewPlatforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1043
|
+
chatgpt: "chatgpt";
|
|
1044
|
+
claudeai: "claudeai";
|
|
1045
|
+
}>>>>;
|
|
1046
|
+
isReadyForPlatform: z.ZodRecord<z.ZodEnum<{
|
|
1047
|
+
chatgpt: "chatgpt";
|
|
1048
|
+
claudeai: "claudeai";
|
|
1049
|
+
}>, z.ZodBoolean>;
|
|
1050
|
+
widgetScreenshotKeys: z.ZodOptional<z.ZodObject<{
|
|
1051
|
+
chatgpt: z.ZodOptional<z.ZodString>;
|
|
1052
|
+
claudeai: z.ZodOptional<z.ZodString>;
|
|
1053
|
+
}, z.core.$strip>>;
|
|
1054
|
+
widgetScreenshots: z.ZodOptional<z.ZodObject<{
|
|
1055
|
+
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
1056
|
+
url: z.ZodString;
|
|
1057
|
+
}, z.core.$strip>>;
|
|
1058
|
+
claudeai: z.ZodOptional<z.ZodObject<{
|
|
1059
|
+
url: z.ZodString;
|
|
1060
|
+
}, z.core.$strip>>;
|
|
1061
|
+
}, z.core.$strip>>;
|
|
1062
|
+
}, z.core.$strip>;
|
|
1063
|
+
type AuditReport = z.infer<typeof auditReportSchema>;
|
|
1064
|
+
declare const playgroundHeaderSchema: z.ZodObject<{
|
|
1065
|
+
name: z.ZodString;
|
|
1066
|
+
description: z.ZodString;
|
|
1067
|
+
isRequired: z.ZodDefault<z.ZodBoolean>;
|
|
1068
|
+
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
1069
|
+
}, z.core.$strip>;
|
|
1070
|
+
declare const playgroundExamplePromptSchema: z.ZodObject<{
|
|
1071
|
+
title: z.ZodString;
|
|
1072
|
+
prompt: z.ZodString;
|
|
1073
|
+
}, z.core.$strip>;
|
|
1074
|
+
declare const serverFieldsSchema: z.ZodObject<{
|
|
1075
|
+
$schema: z.ZodString;
|
|
1076
|
+
name: z.ZodString;
|
|
1077
|
+
description: z.ZodString;
|
|
1078
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1079
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1080
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
1081
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1082
|
+
src: z.ZodURL;
|
|
1083
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1084
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1085
|
+
}, z.core.$strip>>>;
|
|
1086
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1087
|
+
type: z.ZodString;
|
|
1088
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
1089
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1090
|
+
name: z.ZodString;
|
|
1091
|
+
description: z.ZodString;
|
|
1092
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
1093
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
1094
|
+
}, z.core.$strip>>>;
|
|
1095
|
+
}, z.core.$strip>>>;
|
|
1096
|
+
}, z.core.$strip>;
|
|
574
1097
|
//#endregion
|
|
575
|
-
export { ApiContext, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
1098
|
+
export { ApiContext, AuditReport, CheckCategory, CheckDetail, CheckResult, CheckScope, CheckSeverity, Platform, RouterInput, RouterOutput, Runtime, Transport, analysisStatusSchema, auditReportSchema, buildSettingsSchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema };
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { oc } from "@orpc/contract";
|
|
2
|
+
import ms from "ms";
|
|
2
3
|
import { z } from "zod";
|
|
3
4
|
//#region src/schemas.ts
|
|
4
5
|
const RESERVED_KEYS = [
|
|
@@ -59,6 +60,102 @@ const transportSchema = z.enum([
|
|
|
59
60
|
"sse",
|
|
60
61
|
"streamablehttp"
|
|
61
62
|
]);
|
|
63
|
+
const analysisStatusSchema = z.enum([
|
|
64
|
+
"pending",
|
|
65
|
+
"partial",
|
|
66
|
+
"completed",
|
|
67
|
+
"failed"
|
|
68
|
+
]);
|
|
69
|
+
const platformSchema = z.enum(["chatgpt", "claudeai"]);
|
|
70
|
+
const checkSeveritySchema = z.enum([
|
|
71
|
+
"error",
|
|
72
|
+
"warning",
|
|
73
|
+
"info"
|
|
74
|
+
]);
|
|
75
|
+
const checkCategorySchema = z.enum([
|
|
76
|
+
"connectivity",
|
|
77
|
+
"tool-metadata",
|
|
78
|
+
"resource-metadata",
|
|
79
|
+
"performance",
|
|
80
|
+
"e2e"
|
|
81
|
+
]);
|
|
82
|
+
const checkScopeSchema = z.enum(["server", "view"]);
|
|
83
|
+
const checkDetailSchema = z.object({
|
|
84
|
+
label: z.string(),
|
|
85
|
+
value: z.string().optional()
|
|
86
|
+
});
|
|
87
|
+
const checkResultSchema = z.object({
|
|
88
|
+
checkId: z.string(),
|
|
89
|
+
status: z.enum([
|
|
90
|
+
"pass",
|
|
91
|
+
"fail",
|
|
92
|
+
"skip",
|
|
93
|
+
"pending"
|
|
94
|
+
]),
|
|
95
|
+
message: z.string(),
|
|
96
|
+
skipReason: z.string().optional(),
|
|
97
|
+
severity: checkSeveritySchema,
|
|
98
|
+
category: checkCategorySchema,
|
|
99
|
+
scope: checkScopeSchema,
|
|
100
|
+
platforms: z.array(platformSchema).readonly().optional(),
|
|
101
|
+
durationMs: z.number(),
|
|
102
|
+
details: z.array(checkDetailSchema).optional(),
|
|
103
|
+
hint: z.object({ text: z.string() }).optional()
|
|
104
|
+
});
|
|
105
|
+
const auditReportSchema = z.object({
|
|
106
|
+
schemaVersion: z.string(),
|
|
107
|
+
auditId: z.string(),
|
|
108
|
+
targetUrl: z.string(),
|
|
109
|
+
startedAt: z.string(),
|
|
110
|
+
completedAt: z.string(),
|
|
111
|
+
durationMs: z.number(),
|
|
112
|
+
results: z.array(checkResultSchema),
|
|
113
|
+
requiresAuth: z.boolean(),
|
|
114
|
+
hasViewSupport: z.boolean(),
|
|
115
|
+
viewPlatforms: z.array(platformSchema).readonly().optional(),
|
|
116
|
+
isReadyForPlatform: z.record(platformSchema, z.boolean()),
|
|
117
|
+
widgetScreenshotKeys: z.object({
|
|
118
|
+
chatgpt: z.string().optional(),
|
|
119
|
+
claudeai: z.string().optional()
|
|
120
|
+
}).optional(),
|
|
121
|
+
widgetScreenshots: z.object({
|
|
122
|
+
chatgpt: z.object({ url: z.string() }).optional(),
|
|
123
|
+
claudeai: z.object({ url: z.string() }).optional()
|
|
124
|
+
}).optional()
|
|
125
|
+
});
|
|
126
|
+
const playgroundHeaderSchema = z.object({
|
|
127
|
+
name: z.string().min(1).max(100),
|
|
128
|
+
description: z.string().max(200),
|
|
129
|
+
isRequired: z.boolean().default(false),
|
|
130
|
+
isSecret: z.boolean().default(false)
|
|
131
|
+
});
|
|
132
|
+
const playgroundExamplePromptSchema = z.object({
|
|
133
|
+
title: z.string().min(1).max(100),
|
|
134
|
+
prompt: z.string().min(1).max(500)
|
|
135
|
+
});
|
|
136
|
+
const serverFieldsSchema = z.object({
|
|
137
|
+
$schema: z.string(),
|
|
138
|
+
name: z.string(),
|
|
139
|
+
description: z.string(),
|
|
140
|
+
version: z.string().optional(),
|
|
141
|
+
title: z.string().optional(),
|
|
142
|
+
websiteUrl: z.url().optional(),
|
|
143
|
+
icons: z.array(z.object({
|
|
144
|
+
src: z.url(),
|
|
145
|
+
mimeType: z.string().optional(),
|
|
146
|
+
sizes: z.array(z.string()).optional()
|
|
147
|
+
})).optional(),
|
|
148
|
+
remotes: z.array(z.object({
|
|
149
|
+
type: z.string(),
|
|
150
|
+
url: z.url().optional(),
|
|
151
|
+
headers: z.array(z.object({
|
|
152
|
+
name: z.string(),
|
|
153
|
+
description: z.string(),
|
|
154
|
+
isRequired: z.boolean().optional(),
|
|
155
|
+
isSecret: z.boolean().optional()
|
|
156
|
+
})).optional()
|
|
157
|
+
})).optional()
|
|
158
|
+
});
|
|
62
159
|
//#endregion
|
|
63
160
|
//#region src/api.contract.ts
|
|
64
161
|
const deploymentStatusSchema = z.enum([
|
|
@@ -83,9 +180,16 @@ const deploymentSchema = z.object({
|
|
|
83
180
|
authorUsername: z.string().nullable(),
|
|
84
181
|
authorAvatarUrl: z.string().nullable(),
|
|
85
182
|
startedAt: z.coerce.date().nullable(),
|
|
86
|
-
completedAt: z.coerce.date().nullable()
|
|
183
|
+
completedAt: z.coerce.date().nullable(),
|
|
184
|
+
environmentId: z.string(),
|
|
185
|
+
environmentName: z.string(),
|
|
186
|
+
isCurrent: z.boolean(),
|
|
187
|
+
deploymentPageUrl: z.url().nullable()
|
|
87
188
|
});
|
|
88
|
-
const
|
|
189
|
+
const isValidLogTimeInput = (value) => {
|
|
190
|
+
if (ms(value) !== void 0) return true;
|
|
191
|
+
return !Number.isNaN(new Date(value).getTime());
|
|
192
|
+
};
|
|
89
193
|
const createEnvironmentContractV1 = oc.route({
|
|
90
194
|
path: "/v1/environments",
|
|
91
195
|
method: "POST",
|
|
@@ -224,8 +328,61 @@ const createProjectContractV1 = oc.route({
|
|
|
224
328
|
startCommand: z.string().nullable(),
|
|
225
329
|
createdAt: z.coerce.date()
|
|
226
330
|
}));
|
|
331
|
+
const environmentVariableOutputSchema = z.object({
|
|
332
|
+
id: z.string(),
|
|
333
|
+
key: z.string(),
|
|
334
|
+
value: z.string(),
|
|
335
|
+
isSecret: z.boolean(),
|
|
336
|
+
createdAt: z.coerce.date()
|
|
337
|
+
});
|
|
338
|
+
const listEnvironmentVariablesContractV1 = oc.route({
|
|
339
|
+
path: "/v1/environments/{environmentId}/environment-variables",
|
|
340
|
+
method: "GET",
|
|
341
|
+
summary: "List environment variables",
|
|
342
|
+
description: "List all environment variables for an environment",
|
|
343
|
+
tags: ["environments"],
|
|
344
|
+
successDescription: "The list of environment variables"
|
|
345
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentId: z.string().describe("The ID of the environment") })).output(z.array(environmentVariableOutputSchema));
|
|
346
|
+
const createEnvironmentVariablesContractV1 = oc.route({
|
|
347
|
+
path: "/v1/environments/{environmentId}/environment-variables",
|
|
348
|
+
method: "POST",
|
|
349
|
+
summary: "Add environment variables",
|
|
350
|
+
description: "Add one or more environment variables to an environment",
|
|
351
|
+
tags: ["environments"],
|
|
352
|
+
successDescription: "The environment variables have been added successfully"
|
|
353
|
+
}).errors({
|
|
354
|
+
NOT_FOUND: {},
|
|
355
|
+
BAD_REQUEST: {}
|
|
356
|
+
}).input(z.object({
|
|
357
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
358
|
+
environmentVariables: environmentVariablesSchema
|
|
359
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
360
|
+
const updateEnvironmentVariableContractV1 = oc.route({
|
|
361
|
+
path: "/v1/environment-variables/{environmentVariableId}",
|
|
362
|
+
method: "PATCH",
|
|
363
|
+
summary: "Update an environment variable",
|
|
364
|
+
description: "Update an environment variable by ID",
|
|
365
|
+
tags: ["environments"],
|
|
366
|
+
successDescription: "The environment variable has been updated successfully"
|
|
367
|
+
}).errors({
|
|
368
|
+
NOT_FOUND: {},
|
|
369
|
+
BAD_REQUEST: {}
|
|
370
|
+
}).input(z.object({
|
|
371
|
+
environmentVariableId: z.string().describe("The ID of the environment variable"),
|
|
372
|
+
key: environmentVariableSchema.shape.key,
|
|
373
|
+
value: environmentVariableSchema.shape.value.optional(),
|
|
374
|
+
isSecret: environmentVariableSchema.shape.isSecret
|
|
375
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
376
|
+
const deleteEnvironmentVariableContractV1 = oc.route({
|
|
377
|
+
path: "/v1/environment-variables/{environmentVariableId}",
|
|
378
|
+
method: "DELETE",
|
|
379
|
+
summary: "Delete an environment variable",
|
|
380
|
+
description: "Delete an environment variable by ID",
|
|
381
|
+
tags: ["environments"],
|
|
382
|
+
successDescription: "The environment variable has been deleted successfully"
|
|
383
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentVariableId: z.string().describe("The ID of the environment variable") })).output(z.object({ success: z.literal(true) }));
|
|
227
384
|
const deleteProjectContractV1 = oc.route({
|
|
228
|
-
path: "/v1/projects
|
|
385
|
+
path: "/v1/projects/{projectId}",
|
|
229
386
|
method: "DELETE",
|
|
230
387
|
summary: "Delete a project",
|
|
231
388
|
description: "Delete a project and all its environments",
|
|
@@ -260,7 +417,7 @@ const deployEnvironmentContractV1 = oc.route({
|
|
|
260
417
|
}).input(z.object({
|
|
261
418
|
environmentId: z.string().describe("The ID of the environment to deploy"),
|
|
262
419
|
token: z.string().describe("The token to identify the source archive").optional()
|
|
263
|
-
})).output(
|
|
420
|
+
})).output(deploymentSchema);
|
|
264
421
|
const uploadDeploymentArtifactContractV1 = oc.route({
|
|
265
422
|
path: "/v1/deployments/upload",
|
|
266
423
|
method: "POST",
|
|
@@ -269,21 +426,22 @@ const uploadDeploymentArtifactContractV1 = oc.route({
|
|
|
269
426
|
tags: ["deployments"],
|
|
270
427
|
successDescription: "The presigned upload URL has been generated successfully"
|
|
271
428
|
}).input(z.object({ teamId: z.string().optional() }).optional()).output(z.object({
|
|
272
|
-
uploadUrl: z.
|
|
429
|
+
uploadUrl: z.url().describe("Presigned S3 URL to upload the source archive with HTTP PUT"),
|
|
273
430
|
token: z.string().describe("Token to identify the source archive"),
|
|
274
431
|
expiresAt: z.coerce.date().describe("Expiration date of the presigned URL")
|
|
275
432
|
}));
|
|
276
|
-
const
|
|
433
|
+
const listDeploymentsContractV1 = oc.route({
|
|
277
434
|
path: "/v1/projects/{projectId}/deployments",
|
|
278
435
|
method: "GET",
|
|
279
436
|
summary: "List project deployments",
|
|
280
437
|
description: "List all deployments for a project",
|
|
281
438
|
tags: ["deployments"],
|
|
282
439
|
successDescription: "The list of deployments"
|
|
283
|
-
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
440
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
441
|
+
projectId: z.string().describe("The ID of the project"),
|
|
442
|
+
status: z.array(deploymentStatusSchema).optional().describe("Filter by one or more statuses"),
|
|
443
|
+
environmentId: z.string().optional().describe("Filter by environment ID")
|
|
444
|
+
})).output(z.array(deploymentSchema));
|
|
287
445
|
const getDeploymentContractV1 = oc.route({
|
|
288
446
|
path: "/v1/deployments/{deploymentId}",
|
|
289
447
|
method: "GET",
|
|
@@ -291,7 +449,48 @@ const getDeploymentContractV1 = oc.route({
|
|
|
291
449
|
description: "Get a deployment by ID",
|
|
292
450
|
tags: ["deployments"],
|
|
293
451
|
successDescription: "The deployment details"
|
|
294
|
-
}).errors({ NOT_FOUND: {} }).input(z.object({ deploymentId: z.string().describe("The ID of the deployment") })).output(
|
|
452
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ deploymentId: z.string().describe("The ID of the deployment") })).output(deploymentSchema);
|
|
453
|
+
const getLogsContractV1 = oc.route({
|
|
454
|
+
path: "/v1/environments/{environmentId}/logs",
|
|
455
|
+
method: "GET",
|
|
456
|
+
summary: "Get logs",
|
|
457
|
+
description: "Get logs for an environment",
|
|
458
|
+
tags: ["environments"],
|
|
459
|
+
successDescription: "The logs"
|
|
460
|
+
}).errors({
|
|
461
|
+
NOT_FOUND: {},
|
|
462
|
+
BAD_REQUEST: {}
|
|
463
|
+
}).input(z.object({
|
|
464
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
465
|
+
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)"),
|
|
466
|
+
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"),
|
|
467
|
+
limit: z.coerce.number().int().min(1).max(1e3).default(1e3).describe("Maximum number of log entries to return."),
|
|
468
|
+
level: z.array(z.enum([
|
|
469
|
+
"INFO",
|
|
470
|
+
"ERROR",
|
|
471
|
+
"WARNING",
|
|
472
|
+
"DEBUG"
|
|
473
|
+
])).optional().describe("Filter by log level"),
|
|
474
|
+
search: z.string().optional().describe("Filter pattern to search for in log content"),
|
|
475
|
+
nextToken: z.string().optional().describe("Pagination token from a previous response")
|
|
476
|
+
})).output(z.object({
|
|
477
|
+
logs: z.array(z.object({
|
|
478
|
+
timestamp: z.coerce.date(),
|
|
479
|
+
type: z.enum([
|
|
480
|
+
"START",
|
|
481
|
+
"END",
|
|
482
|
+
"INFO",
|
|
483
|
+
"ERROR",
|
|
484
|
+
"WARNING",
|
|
485
|
+
"DEBUG"
|
|
486
|
+
]),
|
|
487
|
+
requestId: z.string(),
|
|
488
|
+
content: z.string().optional(),
|
|
489
|
+
method: z.string().optional(),
|
|
490
|
+
durationInMs: z.number().optional()
|
|
491
|
+
})),
|
|
492
|
+
nextToken: z.string().nullable()
|
|
493
|
+
}));
|
|
295
494
|
const getDeploymentLogsContractV1 = oc.route({
|
|
296
495
|
path: "/v1/deployments/{deploymentId}/logs",
|
|
297
496
|
method: "GET",
|
|
@@ -369,11 +568,114 @@ const getTunnelTicketContractV1 = oc.route({
|
|
|
369
568
|
ticket: z.string().describe("The signed tunnel ticket"),
|
|
370
569
|
tunnelHost: z.string().describe("The tunnel host to connect to")
|
|
371
570
|
}));
|
|
571
|
+
const publishServerContractV1 = oc.route({
|
|
572
|
+
path: "/v1/distribution/publish",
|
|
573
|
+
method: "POST",
|
|
574
|
+
summary: "Publish a server to the MCP registry",
|
|
575
|
+
tags: ["distribution"],
|
|
576
|
+
successDescription: "The server has been published successfully"
|
|
577
|
+
}).errors({
|
|
578
|
+
NOT_FOUND: {},
|
|
579
|
+
BAD_REQUEST: {}
|
|
580
|
+
}).input(z.object({
|
|
581
|
+
projectId: z.string(),
|
|
582
|
+
domain: z.string(),
|
|
583
|
+
title: z.string().min(1).max(100),
|
|
584
|
+
description: z.string().min(1).max(100),
|
|
585
|
+
websiteUrl: z.url().max(255).optional(),
|
|
586
|
+
iconSrc: z.url().max(255).optional(),
|
|
587
|
+
dryRun: z.boolean().optional()
|
|
588
|
+
})).output(z.object({ serverFields: serverFieldsSchema }));
|
|
589
|
+
const getServerInfoContractV1 = oc.route({
|
|
590
|
+
path: "/v1/distribution/get",
|
|
591
|
+
method: "GET",
|
|
592
|
+
summary: "Get server info",
|
|
593
|
+
description: "Get info about a server",
|
|
594
|
+
tags: ["distribution"],
|
|
595
|
+
successDescription: "The server info"
|
|
596
|
+
}).errors({
|
|
597
|
+
NOT_FOUND: {},
|
|
598
|
+
BAD_REQUEST: {}
|
|
599
|
+
}).input(z.object({
|
|
600
|
+
projectId: z.string(),
|
|
601
|
+
domain: z.string()
|
|
602
|
+
})).output(z.object({ serverFields: serverFieldsSchema }));
|
|
603
|
+
const playgroundServerMetadataOutputSchema = z.object({
|
|
604
|
+
name: z.string(),
|
|
605
|
+
description: z.string(),
|
|
606
|
+
headers: z.array(z.object({
|
|
607
|
+
name: z.string(),
|
|
608
|
+
description: z.string(),
|
|
609
|
+
isRequired: z.boolean(),
|
|
610
|
+
isSecret: z.boolean()
|
|
611
|
+
})),
|
|
612
|
+
examplePrompts: z.array(playgroundExamplePromptSchema)
|
|
613
|
+
});
|
|
614
|
+
const playgroundOutputSchema = z.object({
|
|
615
|
+
isPlaygroundEnabled: z.boolean(),
|
|
616
|
+
serverMetadata: playgroundServerMetadataOutputSchema.nullable()
|
|
617
|
+
});
|
|
618
|
+
const getPlaygroundContractV1 = oc.route({
|
|
619
|
+
path: "/v1/environments/{environmentId}/playground",
|
|
620
|
+
method: "GET",
|
|
621
|
+
summary: "Get playground configuration",
|
|
622
|
+
description: "Get the playground configuration for an environment",
|
|
623
|
+
tags: ["environments"],
|
|
624
|
+
successDescription: "The playground configuration"
|
|
625
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentId: z.string().describe("The ID of the environment") })).output(playgroundOutputSchema);
|
|
626
|
+
const upsertPlaygroundContractV1 = oc.route({
|
|
627
|
+
path: "/v1/environments/{environmentId}/playground",
|
|
628
|
+
method: "PUT",
|
|
629
|
+
summary: "Update playground configuration",
|
|
630
|
+
description: "Update the playground configuration for an environment. All fields are optional — only provided fields are updated.",
|
|
631
|
+
tags: ["environments"],
|
|
632
|
+
successDescription: "The updated playground configuration"
|
|
633
|
+
}).errors({
|
|
634
|
+
NOT_FOUND: {},
|
|
635
|
+
BAD_REQUEST: {}
|
|
636
|
+
}).input(z.object({
|
|
637
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
638
|
+
isPlaygroundEnabled: z.boolean().optional(),
|
|
639
|
+
name: z.string().min(1).max(100).optional(),
|
|
640
|
+
description: z.string().min(1).max(500).optional(),
|
|
641
|
+
headers: z.array(playgroundHeaderSchema).optional(),
|
|
642
|
+
examplePrompts: z.array(playgroundExamplePromptSchema).max(3).optional()
|
|
643
|
+
})).output(playgroundOutputSchema);
|
|
644
|
+
const createBeaconContractV1 = oc.route({
|
|
645
|
+
path: "/v1/beacon/analyses",
|
|
646
|
+
method: "POST",
|
|
647
|
+
summary: "Create a beacon analysis",
|
|
648
|
+
description: "Analyze an MCP server for spec compliance and AI client compatibility",
|
|
649
|
+
tags: ["beacon"],
|
|
650
|
+
successDescription: "The analysis has been created"
|
|
651
|
+
}).errors({
|
|
652
|
+
NOT_FOUND: {},
|
|
653
|
+
BAD_REQUEST: {}
|
|
654
|
+
}).input(z.object({
|
|
655
|
+
targetUrl: z.string().url().describe("The HTTPS URL of the MCP server to analyze"),
|
|
656
|
+
teamId: z.string().optional().describe("The team ID to associate the analysis with"),
|
|
657
|
+
projectId: z.string().optional().describe("The project ID to associate the analysis with")
|
|
658
|
+
})).output(z.object({ id: z.string() }));
|
|
659
|
+
const getBeaconContractV1 = oc.route({
|
|
660
|
+
path: "/v1/beacon/analyses/{analysisId}",
|
|
661
|
+
method: "GET",
|
|
662
|
+
summary: "Get a beacon analysis",
|
|
663
|
+
description: "Get a beacon analysis by ID, including the report if completed",
|
|
664
|
+
tags: ["beacon"],
|
|
665
|
+
successDescription: "The analysis details"
|
|
666
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ analysisId: z.string().describe("The ID of the analysis") })).output(z.object({
|
|
667
|
+
id: z.string(),
|
|
668
|
+
targetUrl: z.string(),
|
|
669
|
+
status: analysisStatusSchema,
|
|
670
|
+
durationMs: z.number().nullable(),
|
|
671
|
+
createdAt: z.coerce.date(),
|
|
672
|
+
report: auditReportSchema.nullable()
|
|
673
|
+
}));
|
|
372
674
|
const contract = {
|
|
373
675
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
374
676
|
analytics: { get: { v1: getProjectAnalyticsContractV1 } },
|
|
375
677
|
deployments: {
|
|
376
|
-
list: { v1:
|
|
678
|
+
list: { v1: listDeploymentsContractV1 },
|
|
377
679
|
get: { v1: getDeploymentContractV1 },
|
|
378
680
|
uploadArtifact: { v1: uploadDeploymentArtifactContractV1 },
|
|
379
681
|
getLogs: { v1: getDeploymentLogsContractV1 }
|
|
@@ -381,7 +683,14 @@ const contract = {
|
|
|
381
683
|
environments: {
|
|
382
684
|
create: { v1: createEnvironmentContractV1 },
|
|
383
685
|
get: { v1: getEnvironmentContractV1 },
|
|
384
|
-
deploy: { v1: deployEnvironmentContractV1 }
|
|
686
|
+
deploy: { v1: deployEnvironmentContractV1 },
|
|
687
|
+
getLogs: { v1: getLogsContractV1 }
|
|
688
|
+
},
|
|
689
|
+
environmentVariables: {
|
|
690
|
+
list: { v1: listEnvironmentVariablesContractV1 },
|
|
691
|
+
create: { v1: createEnvironmentVariablesContractV1 },
|
|
692
|
+
update: { v1: updateEnvironmentVariableContractV1 },
|
|
693
|
+
delete: { v1: deleteEnvironmentVariableContractV1 }
|
|
385
694
|
},
|
|
386
695
|
projects: {
|
|
387
696
|
update: { v1: updateProjectContractV1 },
|
|
@@ -390,7 +699,19 @@ const contract = {
|
|
|
390
699
|
create: { v1: createProjectContractV1 },
|
|
391
700
|
delete: { v1: deleteProjectContractV1 }
|
|
392
701
|
},
|
|
393
|
-
|
|
702
|
+
playground: {
|
|
703
|
+
get: { v1: getPlaygroundContractV1 },
|
|
704
|
+
upsert: { v1: upsertPlaygroundContractV1 }
|
|
705
|
+
},
|
|
706
|
+
tunnels: { getTicket: { v1: getTunnelTicketContractV1 } },
|
|
707
|
+
distribution: {
|
|
708
|
+
publish: { v1: publishServerContractV1 },
|
|
709
|
+
get: { v1: getServerInfoContractV1 }
|
|
710
|
+
},
|
|
711
|
+
beacon: {
|
|
712
|
+
create: { v1: createBeaconContractV1 },
|
|
713
|
+
get: { v1: getBeaconContractV1 }
|
|
714
|
+
}
|
|
394
715
|
};
|
|
395
716
|
//#endregion
|
|
396
|
-
export { buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
717
|
+
export { analysisStatusSchema, auditReportSchema, buildSettingsSchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, 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.e35e195",
|
|
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.13",
|
|
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.21.
|
|
27
|
-
"typescript": "^
|
|
28
|
-
"vitest": "^4.
|
|
28
|
+
"tsdown": "^0.21.7",
|
|
29
|
+
"typescript": "^6.0.2",
|
|
30
|
+
"vitest": "^4.1.2"
|
|
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
|
}
|