@alpic-ai/api 0.0.0-staging.fc9821d → 0.0.0-staging.fdc7ec4
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 +610 -41
- package/dist/index.mjs +368 -22
- 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
|
|
|
@@ -6,9 +6,17 @@ import { z } from "zod";
|
|
|
6
6
|
type ApiContext = {
|
|
7
7
|
request: Request & {
|
|
8
8
|
teamIds: string[];
|
|
9
|
+
defaultTeamId: string | undefined;
|
|
10
|
+
awsCognitoUserSub: string | undefined;
|
|
9
11
|
};
|
|
10
12
|
};
|
|
11
|
-
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<{
|
|
12
20
|
projectId: z.ZodString;
|
|
13
21
|
name: z.ZodString;
|
|
14
22
|
sourceBranch: z.ZodString;
|
|
@@ -24,25 +32,24 @@ declare const createEnvironmentContractV1: _orpc_contract0.ContractProcedureBuil
|
|
|
24
32
|
urls: z.ZodArray<z.ZodString>;
|
|
25
33
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
26
34
|
projectId: z.ZodString;
|
|
27
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
35
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
28
36
|
NOT_FOUND: {};
|
|
29
37
|
BAD_REQUEST: {};
|
|
30
38
|
}>, Record<never, never>>;
|
|
31
39
|
declare const contract: {
|
|
32
40
|
teams: {
|
|
33
41
|
list: {
|
|
34
|
-
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<{
|
|
35
43
|
id: z.ZodString;
|
|
36
44
|
name: z.ZodString;
|
|
37
45
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
38
46
|
hasStripeAccount: z.ZodBoolean;
|
|
39
|
-
hasActiveSubscription: z.ZodBoolean;
|
|
40
47
|
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
41
48
|
};
|
|
42
49
|
};
|
|
43
50
|
analytics: {
|
|
44
51
|
get: {
|
|
45
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
52
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
46
53
|
projectId: z.ZodString;
|
|
47
54
|
startTimestamp: z.ZodCoercedNumber<unknown>;
|
|
48
55
|
endTimestamp: z.ZodCoercedNumber<unknown>;
|
|
@@ -85,7 +92,7 @@ declare const contract: {
|
|
|
85
92
|
categories: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
86
93
|
}, z.core.$strip>>;
|
|
87
94
|
}, z.core.$strip>;
|
|
88
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
95
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
89
96
|
NOT_FOUND: {};
|
|
90
97
|
BAD_REQUEST: {};
|
|
91
98
|
}>, Record<never, never>>;
|
|
@@ -93,14 +100,21 @@ declare const contract: {
|
|
|
93
100
|
};
|
|
94
101
|
deployments: {
|
|
95
102
|
list: {
|
|
96
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
103
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
97
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>;
|
|
98
112
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
99
113
|
id: z.ZodString;
|
|
100
114
|
status: z.ZodEnum<{
|
|
115
|
+
failed: "failed";
|
|
101
116
|
ongoing: "ongoing";
|
|
102
117
|
deployed: "deployed";
|
|
103
|
-
failed: "failed";
|
|
104
118
|
canceled: "canceled";
|
|
105
119
|
}>;
|
|
106
120
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -110,21 +124,23 @@ declare const contract: {
|
|
|
110
124
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
111
125
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
112
126
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
113
|
-
isCurrent: z.ZodBoolean;
|
|
114
127
|
environmentId: z.ZodString;
|
|
115
|
-
|
|
128
|
+
environmentName: z.ZodString;
|
|
129
|
+
isCurrent: z.ZodBoolean;
|
|
130
|
+
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
131
|
+
}, z.core.$strip>>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
116
132
|
NOT_FOUND: {};
|
|
117
133
|
}>, Record<never, never>>;
|
|
118
134
|
};
|
|
119
135
|
get: {
|
|
120
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
136
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
121
137
|
deploymentId: z.ZodString;
|
|
122
138
|
}, z.core.$strip>, z.ZodObject<{
|
|
123
139
|
id: z.ZodString;
|
|
124
140
|
status: z.ZodEnum<{
|
|
141
|
+
failed: "failed";
|
|
125
142
|
ongoing: "ongoing";
|
|
126
143
|
deployed: "deployed";
|
|
127
|
-
failed: "failed";
|
|
128
144
|
canceled: "canceled";
|
|
129
145
|
}>;
|
|
130
146
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -134,22 +150,25 @@ declare const contract: {
|
|
|
134
150
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
135
151
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
136
152
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
153
|
+
environmentId: z.ZodString;
|
|
154
|
+
environmentName: z.ZodString;
|
|
155
|
+
isCurrent: z.ZodBoolean;
|
|
137
156
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
138
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
157
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
139
158
|
NOT_FOUND: {};
|
|
140
159
|
}>, Record<never, never>>;
|
|
141
160
|
};
|
|
142
161
|
uploadArtifact: {
|
|
143
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
162
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
144
163
|
teamId: z.ZodOptional<z.ZodString>;
|
|
145
164
|
}, z.core.$strip>>, z.ZodObject<{
|
|
146
|
-
uploadUrl: z.
|
|
165
|
+
uploadUrl: z.ZodURL;
|
|
147
166
|
token: z.ZodString;
|
|
148
167
|
expiresAt: z.ZodCoercedDate<unknown>;
|
|
149
168
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
150
169
|
};
|
|
151
170
|
getLogs: {
|
|
152
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
171
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
153
172
|
deploymentId: z.ZodString;
|
|
154
173
|
}, z.core.$strip>, z.ZodObject<{
|
|
155
174
|
logs: z.ZodArray<z.ZodObject<{
|
|
@@ -157,14 +176,14 @@ declare const contract: {
|
|
|
157
176
|
content: z.ZodOptional<z.ZodString>;
|
|
158
177
|
}, z.core.$strip>>;
|
|
159
178
|
hasMoreLogs: z.ZodBoolean;
|
|
160
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
179
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
161
180
|
NOT_FOUND: {};
|
|
162
181
|
}>, Record<never, never>>;
|
|
163
182
|
};
|
|
164
183
|
};
|
|
165
184
|
environments: {
|
|
166
185
|
create: {
|
|
167
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
186
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
168
187
|
projectId: z.ZodString;
|
|
169
188
|
name: z.ZodString;
|
|
170
189
|
sourceBranch: z.ZodString;
|
|
@@ -180,13 +199,13 @@ declare const contract: {
|
|
|
180
199
|
urls: z.ZodArray<z.ZodString>;
|
|
181
200
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
182
201
|
projectId: z.ZodString;
|
|
183
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
202
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
184
203
|
NOT_FOUND: {};
|
|
185
204
|
BAD_REQUEST: {};
|
|
186
205
|
}>, Record<never, never>>;
|
|
187
206
|
};
|
|
188
207
|
get: {
|
|
189
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
208
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
190
209
|
environmentId: z.ZodString;
|
|
191
210
|
}, z.core.$strip>, z.ZodObject<{
|
|
192
211
|
id: z.ZodString;
|
|
@@ -196,20 +215,20 @@ declare const contract: {
|
|
|
196
215
|
domains: z.ZodArray<z.ZodURL>;
|
|
197
216
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
198
217
|
projectId: z.ZodString;
|
|
199
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
218
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
200
219
|
NOT_FOUND: {};
|
|
201
220
|
}>, Record<never, never>>;
|
|
202
221
|
};
|
|
203
222
|
deploy: {
|
|
204
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
223
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
205
224
|
environmentId: z.ZodString;
|
|
206
225
|
token: z.ZodOptional<z.ZodString>;
|
|
207
226
|
}, z.core.$strip>, z.ZodObject<{
|
|
208
227
|
id: z.ZodString;
|
|
209
228
|
status: z.ZodEnum<{
|
|
229
|
+
failed: "failed";
|
|
210
230
|
ongoing: "ongoing";
|
|
211
231
|
deployed: "deployed";
|
|
212
|
-
failed: "failed";
|
|
213
232
|
canceled: "canceled";
|
|
214
233
|
}>;
|
|
215
234
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -219,16 +238,107 @@ declare const contract: {
|
|
|
219
238
|
authorAvatarUrl: z.ZodNullable<z.ZodString>;
|
|
220
239
|
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
221
240
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
241
|
+
environmentId: z.ZodString;
|
|
242
|
+
environmentName: z.ZodString;
|
|
243
|
+
isCurrent: z.ZodBoolean;
|
|
222
244
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
223
|
-
}, 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>, {
|
|
224
282
|
NOT_FOUND: {};
|
|
225
283
|
BAD_REQUEST: {};
|
|
226
284
|
}>, Record<never, never>>;
|
|
227
285
|
};
|
|
228
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
|
+
};
|
|
229
339
|
projects: {
|
|
230
340
|
update: {
|
|
231
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
341
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
232
342
|
projectId: z.ZodString;
|
|
233
343
|
name: z.ZodOptional<z.ZodString>;
|
|
234
344
|
sourceRepository: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -258,12 +368,21 @@ declare const contract: {
|
|
|
258
368
|
id: z.ZodString;
|
|
259
369
|
name: z.ZodString;
|
|
260
370
|
mcpServerUrl: z.ZodString;
|
|
371
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
372
|
+
domain: z.ZodString;
|
|
373
|
+
status: z.ZodEnum<{
|
|
374
|
+
failed: "failed";
|
|
375
|
+
ongoing: "ongoing";
|
|
376
|
+
deployed: "deployed";
|
|
377
|
+
}>;
|
|
378
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
379
|
+
}, z.core.$strip>>;
|
|
261
380
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
262
381
|
id: z.ZodString;
|
|
263
382
|
status: z.ZodEnum<{
|
|
383
|
+
failed: "failed";
|
|
264
384
|
ongoing: "ongoing";
|
|
265
385
|
deployed: "deployed";
|
|
266
|
-
failed: "failed";
|
|
267
386
|
canceled: "canceled";
|
|
268
387
|
}>;
|
|
269
388
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -281,9 +400,9 @@ declare const contract: {
|
|
|
281
400
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
282
401
|
id: z.ZodString;
|
|
283
402
|
status: z.ZodEnum<{
|
|
403
|
+
failed: "failed";
|
|
284
404
|
ongoing: "ongoing";
|
|
285
405
|
deployed: "deployed";
|
|
286
|
-
failed: "failed";
|
|
287
406
|
canceled: "canceled";
|
|
288
407
|
}>;
|
|
289
408
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -291,13 +410,13 @@ declare const contract: {
|
|
|
291
410
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
292
411
|
}, z.core.$strip>>;
|
|
293
412
|
}, z.core.$strip>>;
|
|
294
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
413
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
295
414
|
NOT_FOUND: {};
|
|
296
415
|
BAD_REQUEST: {};
|
|
297
416
|
}>, Record<never, never>>;
|
|
298
417
|
};
|
|
299
418
|
get: {
|
|
300
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
419
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
301
420
|
projectId: z.ZodString;
|
|
302
421
|
}, z.core.$strip>, z.ZodObject<{
|
|
303
422
|
id: z.ZodString;
|
|
@@ -325,12 +444,21 @@ declare const contract: {
|
|
|
325
444
|
id: z.ZodString;
|
|
326
445
|
name: z.ZodString;
|
|
327
446
|
mcpServerUrl: z.ZodString;
|
|
447
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
448
|
+
domain: z.ZodString;
|
|
449
|
+
status: z.ZodEnum<{
|
|
450
|
+
failed: "failed";
|
|
451
|
+
ongoing: "ongoing";
|
|
452
|
+
deployed: "deployed";
|
|
453
|
+
}>;
|
|
454
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
455
|
+
}, z.core.$strip>>;
|
|
328
456
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
329
457
|
id: z.ZodString;
|
|
330
458
|
status: z.ZodEnum<{
|
|
459
|
+
failed: "failed";
|
|
331
460
|
ongoing: "ongoing";
|
|
332
461
|
deployed: "deployed";
|
|
333
|
-
failed: "failed";
|
|
334
462
|
canceled: "canceled";
|
|
335
463
|
}>;
|
|
336
464
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -348,9 +476,9 @@ declare const contract: {
|
|
|
348
476
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
349
477
|
id: z.ZodString;
|
|
350
478
|
status: z.ZodEnum<{
|
|
479
|
+
failed: "failed";
|
|
351
480
|
ongoing: "ongoing";
|
|
352
481
|
deployed: "deployed";
|
|
353
|
-
failed: "failed";
|
|
354
482
|
canceled: "canceled";
|
|
355
483
|
}>;
|
|
356
484
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -358,12 +486,14 @@ declare const contract: {
|
|
|
358
486
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
359
487
|
}, z.core.$strip>>;
|
|
360
488
|
}, z.core.$strip>>;
|
|
361
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
489
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
362
490
|
NOT_FOUND: {};
|
|
363
491
|
}>, Record<never, never>>;
|
|
364
492
|
};
|
|
365
493
|
list: {
|
|
366
|
-
v1: _orpc_contract0.
|
|
494
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
495
|
+
teamId: z.ZodOptional<z.ZodString>;
|
|
496
|
+
}, z.core.$strip>>, z.ZodArray<z.ZodObject<{
|
|
367
497
|
id: z.ZodString;
|
|
368
498
|
name: z.ZodString;
|
|
369
499
|
teamId: z.ZodString;
|
|
@@ -389,12 +519,21 @@ declare const contract: {
|
|
|
389
519
|
id: z.ZodString;
|
|
390
520
|
name: z.ZodString;
|
|
391
521
|
mcpServerUrl: z.ZodString;
|
|
522
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
523
|
+
domain: z.ZodString;
|
|
524
|
+
status: z.ZodEnum<{
|
|
525
|
+
failed: "failed";
|
|
526
|
+
ongoing: "ongoing";
|
|
527
|
+
deployed: "deployed";
|
|
528
|
+
}>;
|
|
529
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
530
|
+
}, z.core.$strip>>;
|
|
392
531
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
393
532
|
id: z.ZodString;
|
|
394
533
|
status: z.ZodEnum<{
|
|
534
|
+
failed: "failed";
|
|
395
535
|
ongoing: "ongoing";
|
|
396
536
|
deployed: "deployed";
|
|
397
|
-
failed: "failed";
|
|
398
537
|
canceled: "canceled";
|
|
399
538
|
}>;
|
|
400
539
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -412,9 +551,9 @@ declare const contract: {
|
|
|
412
551
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
413
552
|
id: z.ZodString;
|
|
414
553
|
status: z.ZodEnum<{
|
|
554
|
+
failed: "failed";
|
|
415
555
|
ongoing: "ongoing";
|
|
416
556
|
deployed: "deployed";
|
|
417
|
-
failed: "failed";
|
|
418
557
|
canceled: "canceled";
|
|
419
558
|
}>;
|
|
420
559
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -425,7 +564,7 @@ declare const contract: {
|
|
|
425
564
|
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
426
565
|
};
|
|
427
566
|
create: {
|
|
428
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
567
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
429
568
|
teamId: z.ZodOptional<z.ZodString>;
|
|
430
569
|
name: z.ZodString;
|
|
431
570
|
sourceRepository: z.ZodOptional<z.ZodString>;
|
|
@@ -483,17 +622,269 @@ declare const contract: {
|
|
|
483
622
|
installCommand: z.ZodNullable<z.ZodString>;
|
|
484
623
|
startCommand: z.ZodNullable<z.ZodString>;
|
|
485
624
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
486
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
625
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
487
626
|
NOT_FOUND: {};
|
|
488
627
|
BAD_REQUEST: {};
|
|
489
628
|
}>, Record<never, never>>;
|
|
490
629
|
};
|
|
491
630
|
delete: {
|
|
492
|
-
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
631
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
493
632
|
projectId: z.ZodString;
|
|
494
633
|
}, z.core.$strip>, z.ZodObject<{
|
|
495
634
|
success: z.ZodLiteral<true>;
|
|
496
|
-
}, z.core.$strip>, _orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
635
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
636
|
+
NOT_FOUND: {};
|
|
637
|
+
}>, Record<never, never>>;
|
|
638
|
+
};
|
|
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
|
+
};
|
|
702
|
+
tunnels: {
|
|
703
|
+
getTicket: {
|
|
704
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithOutput<_$_orpc_contract0.Schema<unknown, unknown>, z.ZodObject<{
|
|
705
|
+
subdomain: z.ZodString;
|
|
706
|
+
ticket: z.ZodString;
|
|
707
|
+
tunnelHost: z.ZodString;
|
|
708
|
+
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
709
|
+
};
|
|
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
|
+
excludeCategories: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
791
|
+
connectivity: "connectivity";
|
|
792
|
+
"tool-metadata": "tool-metadata";
|
|
793
|
+
"resource-metadata": "resource-metadata";
|
|
794
|
+
performance: "performance";
|
|
795
|
+
e2e: "e2e";
|
|
796
|
+
}>>>;
|
|
797
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
798
|
+
id: z.ZodString;
|
|
799
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
800
|
+
NOT_FOUND: {};
|
|
801
|
+
BAD_REQUEST: {};
|
|
802
|
+
}>, Record<never, never>>;
|
|
803
|
+
};
|
|
804
|
+
get: {
|
|
805
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
806
|
+
auditId: z.ZodString;
|
|
807
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
808
|
+
id: z.ZodString;
|
|
809
|
+
targetUrl: z.ZodString;
|
|
810
|
+
status: z.ZodEnum<{
|
|
811
|
+
pending: "pending";
|
|
812
|
+
partial: "partial";
|
|
813
|
+
completed: "completed";
|
|
814
|
+
failed: "failed";
|
|
815
|
+
}>;
|
|
816
|
+
durationMs: z.ZodNullable<z.ZodNumber>;
|
|
817
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
818
|
+
report: z.ZodNullable<z.ZodObject<{
|
|
819
|
+
schemaVersion: z.ZodString;
|
|
820
|
+
auditId: z.ZodString;
|
|
821
|
+
targetUrl: z.ZodString;
|
|
822
|
+
startedAt: z.ZodString;
|
|
823
|
+
completedAt: z.ZodString;
|
|
824
|
+
durationMs: z.ZodNumber;
|
|
825
|
+
results: z.ZodArray<z.ZodObject<{
|
|
826
|
+
checkId: z.ZodString;
|
|
827
|
+
status: z.ZodEnum<{
|
|
828
|
+
pending: "pending";
|
|
829
|
+
pass: "pass";
|
|
830
|
+
fail: "fail";
|
|
831
|
+
skip: "skip";
|
|
832
|
+
}>;
|
|
833
|
+
message: z.ZodString;
|
|
834
|
+
skipReason: z.ZodOptional<z.ZodString>;
|
|
835
|
+
severity: z.ZodEnum<{
|
|
836
|
+
error: "error";
|
|
837
|
+
warning: "warning";
|
|
838
|
+
info: "info";
|
|
839
|
+
}>;
|
|
840
|
+
category: z.ZodEnum<{
|
|
841
|
+
connectivity: "connectivity";
|
|
842
|
+
"tool-metadata": "tool-metadata";
|
|
843
|
+
"resource-metadata": "resource-metadata";
|
|
844
|
+
performance: "performance";
|
|
845
|
+
e2e: "e2e";
|
|
846
|
+
}>;
|
|
847
|
+
scope: z.ZodEnum<{
|
|
848
|
+
server: "server";
|
|
849
|
+
view: "view";
|
|
850
|
+
}>;
|
|
851
|
+
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
852
|
+
chatgpt: "chatgpt";
|
|
853
|
+
claudeai: "claudeai";
|
|
854
|
+
}>>>>;
|
|
855
|
+
durationMs: z.ZodNumber;
|
|
856
|
+
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
857
|
+
label: z.ZodString;
|
|
858
|
+
value: z.ZodOptional<z.ZodString>;
|
|
859
|
+
}, z.core.$strip>>>;
|
|
860
|
+
hint: z.ZodOptional<z.ZodObject<{
|
|
861
|
+
text: z.ZodString;
|
|
862
|
+
}, z.core.$strip>>;
|
|
863
|
+
}, z.core.$strip>>;
|
|
864
|
+
requiresAuth: z.ZodBoolean;
|
|
865
|
+
hasViewSupport: z.ZodBoolean;
|
|
866
|
+
viewPlatforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
867
|
+
chatgpt: "chatgpt";
|
|
868
|
+
claudeai: "claudeai";
|
|
869
|
+
}>>>>;
|
|
870
|
+
isReadyForPlatform: z.ZodRecord<z.ZodEnum<{
|
|
871
|
+
chatgpt: "chatgpt";
|
|
872
|
+
claudeai: "claudeai";
|
|
873
|
+
}>, z.ZodBoolean>;
|
|
874
|
+
widgetScreenshotKeys: z.ZodOptional<z.ZodObject<{
|
|
875
|
+
chatgpt: z.ZodOptional<z.ZodString>;
|
|
876
|
+
claudeai: z.ZodOptional<z.ZodString>;
|
|
877
|
+
}, z.core.$strip>>;
|
|
878
|
+
widgetScreenshots: z.ZodOptional<z.ZodObject<{
|
|
879
|
+
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
880
|
+
url: z.ZodString;
|
|
881
|
+
}, z.core.$strip>>;
|
|
882
|
+
claudeai: z.ZodOptional<z.ZodObject<{
|
|
883
|
+
url: z.ZodString;
|
|
884
|
+
}, z.core.$strip>>;
|
|
885
|
+
}, z.core.$strip>>;
|
|
886
|
+
}, z.core.$strip>>;
|
|
887
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
497
888
|
NOT_FOUND: {};
|
|
498
889
|
}>, Record<never, never>>;
|
|
499
890
|
};
|
|
@@ -532,5 +923,183 @@ declare const transportSchema: z.ZodEnum<{
|
|
|
532
923
|
streamablehttp: "streamablehttp";
|
|
533
924
|
}>;
|
|
534
925
|
type Transport = z.infer<typeof transportSchema>;
|
|
926
|
+
declare const auditStatusSchema: z.ZodEnum<{
|
|
927
|
+
pending: "pending";
|
|
928
|
+
partial: "partial";
|
|
929
|
+
completed: "completed";
|
|
930
|
+
failed: "failed";
|
|
931
|
+
}>;
|
|
932
|
+
declare const platformSchema: z.ZodEnum<{
|
|
933
|
+
chatgpt: "chatgpt";
|
|
934
|
+
claudeai: "claudeai";
|
|
935
|
+
}>;
|
|
936
|
+
type Platform = z.infer<typeof platformSchema>;
|
|
937
|
+
declare const checkSeveritySchema: z.ZodEnum<{
|
|
938
|
+
error: "error";
|
|
939
|
+
warning: "warning";
|
|
940
|
+
info: "info";
|
|
941
|
+
}>;
|
|
942
|
+
type CheckSeverity = z.infer<typeof checkSeveritySchema>;
|
|
943
|
+
declare const checkCategorySchema: z.ZodEnum<{
|
|
944
|
+
connectivity: "connectivity";
|
|
945
|
+
"tool-metadata": "tool-metadata";
|
|
946
|
+
"resource-metadata": "resource-metadata";
|
|
947
|
+
performance: "performance";
|
|
948
|
+
e2e: "e2e";
|
|
949
|
+
}>;
|
|
950
|
+
type CheckCategory = z.infer<typeof checkCategorySchema>;
|
|
951
|
+
declare const checkScopeSchema: z.ZodEnum<{
|
|
952
|
+
server: "server";
|
|
953
|
+
view: "view";
|
|
954
|
+
}>;
|
|
955
|
+
type CheckScope = z.infer<typeof checkScopeSchema>;
|
|
956
|
+
declare const checkDetailSchema: z.ZodObject<{
|
|
957
|
+
label: z.ZodString;
|
|
958
|
+
value: z.ZodOptional<z.ZodString>;
|
|
959
|
+
}, z.core.$strip>;
|
|
960
|
+
type CheckDetail = z.infer<typeof checkDetailSchema>;
|
|
961
|
+
declare const checkResultSchema: z.ZodObject<{
|
|
962
|
+
checkId: z.ZodString;
|
|
963
|
+
status: z.ZodEnum<{
|
|
964
|
+
pending: "pending";
|
|
965
|
+
pass: "pass";
|
|
966
|
+
fail: "fail";
|
|
967
|
+
skip: "skip";
|
|
968
|
+
}>;
|
|
969
|
+
message: z.ZodString;
|
|
970
|
+
skipReason: z.ZodOptional<z.ZodString>;
|
|
971
|
+
severity: z.ZodEnum<{
|
|
972
|
+
error: "error";
|
|
973
|
+
warning: "warning";
|
|
974
|
+
info: "info";
|
|
975
|
+
}>;
|
|
976
|
+
category: z.ZodEnum<{
|
|
977
|
+
connectivity: "connectivity";
|
|
978
|
+
"tool-metadata": "tool-metadata";
|
|
979
|
+
"resource-metadata": "resource-metadata";
|
|
980
|
+
performance: "performance";
|
|
981
|
+
e2e: "e2e";
|
|
982
|
+
}>;
|
|
983
|
+
scope: z.ZodEnum<{
|
|
984
|
+
server: "server";
|
|
985
|
+
view: "view";
|
|
986
|
+
}>;
|
|
987
|
+
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
988
|
+
chatgpt: "chatgpt";
|
|
989
|
+
claudeai: "claudeai";
|
|
990
|
+
}>>>>;
|
|
991
|
+
durationMs: z.ZodNumber;
|
|
992
|
+
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
993
|
+
label: z.ZodString;
|
|
994
|
+
value: z.ZodOptional<z.ZodString>;
|
|
995
|
+
}, z.core.$strip>>>;
|
|
996
|
+
hint: z.ZodOptional<z.ZodObject<{
|
|
997
|
+
text: z.ZodString;
|
|
998
|
+
}, z.core.$strip>>;
|
|
999
|
+
}, z.core.$strip>;
|
|
1000
|
+
type CheckResult = z.infer<typeof checkResultSchema>;
|
|
1001
|
+
declare const auditReportSchema: z.ZodObject<{
|
|
1002
|
+
schemaVersion: z.ZodString;
|
|
1003
|
+
auditId: z.ZodString;
|
|
1004
|
+
targetUrl: z.ZodString;
|
|
1005
|
+
startedAt: z.ZodString;
|
|
1006
|
+
completedAt: z.ZodString;
|
|
1007
|
+
durationMs: z.ZodNumber;
|
|
1008
|
+
results: z.ZodArray<z.ZodObject<{
|
|
1009
|
+
checkId: z.ZodString;
|
|
1010
|
+
status: z.ZodEnum<{
|
|
1011
|
+
pending: "pending";
|
|
1012
|
+
pass: "pass";
|
|
1013
|
+
fail: "fail";
|
|
1014
|
+
skip: "skip";
|
|
1015
|
+
}>;
|
|
1016
|
+
message: z.ZodString;
|
|
1017
|
+
skipReason: z.ZodOptional<z.ZodString>;
|
|
1018
|
+
severity: z.ZodEnum<{
|
|
1019
|
+
error: "error";
|
|
1020
|
+
warning: "warning";
|
|
1021
|
+
info: "info";
|
|
1022
|
+
}>;
|
|
1023
|
+
category: z.ZodEnum<{
|
|
1024
|
+
connectivity: "connectivity";
|
|
1025
|
+
"tool-metadata": "tool-metadata";
|
|
1026
|
+
"resource-metadata": "resource-metadata";
|
|
1027
|
+
performance: "performance";
|
|
1028
|
+
e2e: "e2e";
|
|
1029
|
+
}>;
|
|
1030
|
+
scope: z.ZodEnum<{
|
|
1031
|
+
server: "server";
|
|
1032
|
+
view: "view";
|
|
1033
|
+
}>;
|
|
1034
|
+
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1035
|
+
chatgpt: "chatgpt";
|
|
1036
|
+
claudeai: "claudeai";
|
|
1037
|
+
}>>>>;
|
|
1038
|
+
durationMs: z.ZodNumber;
|
|
1039
|
+
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1040
|
+
label: z.ZodString;
|
|
1041
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1042
|
+
}, z.core.$strip>>>;
|
|
1043
|
+
hint: z.ZodOptional<z.ZodObject<{
|
|
1044
|
+
text: z.ZodString;
|
|
1045
|
+
}, z.core.$strip>>;
|
|
1046
|
+
}, z.core.$strip>>;
|
|
1047
|
+
requiresAuth: z.ZodBoolean;
|
|
1048
|
+
hasViewSupport: z.ZodBoolean;
|
|
1049
|
+
viewPlatforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1050
|
+
chatgpt: "chatgpt";
|
|
1051
|
+
claudeai: "claudeai";
|
|
1052
|
+
}>>>>;
|
|
1053
|
+
isReadyForPlatform: z.ZodRecord<z.ZodEnum<{
|
|
1054
|
+
chatgpt: "chatgpt";
|
|
1055
|
+
claudeai: "claudeai";
|
|
1056
|
+
}>, z.ZodBoolean>;
|
|
1057
|
+
widgetScreenshotKeys: z.ZodOptional<z.ZodObject<{
|
|
1058
|
+
chatgpt: z.ZodOptional<z.ZodString>;
|
|
1059
|
+
claudeai: z.ZodOptional<z.ZodString>;
|
|
1060
|
+
}, z.core.$strip>>;
|
|
1061
|
+
widgetScreenshots: z.ZodOptional<z.ZodObject<{
|
|
1062
|
+
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
1063
|
+
url: z.ZodString;
|
|
1064
|
+
}, z.core.$strip>>;
|
|
1065
|
+
claudeai: z.ZodOptional<z.ZodObject<{
|
|
1066
|
+
url: z.ZodString;
|
|
1067
|
+
}, z.core.$strip>>;
|
|
1068
|
+
}, z.core.$strip>>;
|
|
1069
|
+
}, z.core.$strip>;
|
|
1070
|
+
type AuditReport = z.infer<typeof auditReportSchema>;
|
|
1071
|
+
declare const playgroundHeaderSchema: z.ZodObject<{
|
|
1072
|
+
name: z.ZodString;
|
|
1073
|
+
description: z.ZodString;
|
|
1074
|
+
isRequired: z.ZodDefault<z.ZodBoolean>;
|
|
1075
|
+
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
1076
|
+
}, z.core.$strip>;
|
|
1077
|
+
declare const playgroundExamplePromptSchema: z.ZodObject<{
|
|
1078
|
+
title: z.ZodString;
|
|
1079
|
+
prompt: z.ZodString;
|
|
1080
|
+
}, z.core.$strip>;
|
|
1081
|
+
declare const serverFieldsSchema: z.ZodObject<{
|
|
1082
|
+
$schema: z.ZodString;
|
|
1083
|
+
name: z.ZodString;
|
|
1084
|
+
description: z.ZodString;
|
|
1085
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1086
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1087
|
+
websiteUrl: z.ZodOptional<z.ZodURL>;
|
|
1088
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1089
|
+
src: z.ZodURL;
|
|
1090
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1091
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1092
|
+
}, z.core.$strip>>>;
|
|
1093
|
+
remotes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1094
|
+
type: z.ZodString;
|
|
1095
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
1096
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1097
|
+
name: z.ZodString;
|
|
1098
|
+
description: z.ZodString;
|
|
1099
|
+
isRequired: z.ZodOptional<z.ZodBoolean>;
|
|
1100
|
+
isSecret: z.ZodOptional<z.ZodBoolean>;
|
|
1101
|
+
}, z.core.$strip>>>;
|
|
1102
|
+
}, z.core.$strip>>>;
|
|
1103
|
+
}, z.core.$strip>;
|
|
535
1104
|
//#endregion
|
|
536
|
-
export { ApiContext, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
1105
|
+
export { ApiContext, AuditReport, CheckCategory, CheckDetail, CheckResult, CheckScope, CheckSeverity, Platform, RouterInput, RouterOutput, Runtime, Transport, auditReportSchema, auditStatusSchema, buildSettingsSchema, checkCategorySchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema };
|