@alpic-ai/api 0.0.0-staging.g1c7818f → 0.0.0-staging.g1d699ea
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 +66 -58
- package/dist/index.mjs +615 -40
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import * as _$_orpc_contract0 from "@orpc/contract";
|
|
3
2
|
import { InferContractRouterInputs, InferContractRouterOutputs } from "@orpc/contract";
|
|
4
3
|
|
|
5
4
|
//#region src/api.contract.d.ts
|
|
@@ -16,7 +15,7 @@ declare const deploymentStatusSchema: z.ZodEnum<{
|
|
|
16
15
|
failed: "failed";
|
|
17
16
|
canceled: "canceled";
|
|
18
17
|
}>;
|
|
19
|
-
declare const createEnvironmentContractV1:
|
|
18
|
+
declare const createEnvironmentContractV1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
20
19
|
projectId: z.ZodString;
|
|
21
20
|
name: z.ZodString;
|
|
22
21
|
sourceBranch: z.ZodString;
|
|
@@ -29,17 +28,17 @@ declare const createEnvironmentContractV1: _$_orpc_contract0.ContractProcedureBu
|
|
|
29
28
|
id: z.ZodString;
|
|
30
29
|
name: z.ZodString;
|
|
31
30
|
sourceBranch: z.ZodNullable<z.ZodString>;
|
|
32
|
-
urls: z.ZodArray<z.
|
|
31
|
+
urls: z.ZodArray<z.ZodURL>;
|
|
33
32
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
34
33
|
projectId: z.ZodString;
|
|
35
|
-
}, z.core.$strip>,
|
|
34
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
36
35
|
NOT_FOUND: {};
|
|
37
36
|
BAD_REQUEST: {};
|
|
38
37
|
}>, Record<never, never>>;
|
|
39
38
|
declare const contract: {
|
|
40
39
|
teams: {
|
|
41
40
|
list: {
|
|
42
|
-
v1:
|
|
41
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, z.ZodArray<z.ZodObject<{
|
|
43
42
|
id: z.ZodString;
|
|
44
43
|
name: z.ZodString;
|
|
45
44
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
@@ -49,7 +48,7 @@ declare const contract: {
|
|
|
49
48
|
};
|
|
50
49
|
analytics: {
|
|
51
50
|
get: {
|
|
52
|
-
v1:
|
|
51
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
53
52
|
projectId: z.ZodString;
|
|
54
53
|
startTimestamp: z.ZodCoercedNumber<unknown>;
|
|
55
54
|
endTimestamp: z.ZodCoercedNumber<unknown>;
|
|
@@ -92,7 +91,7 @@ declare const contract: {
|
|
|
92
91
|
categories: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
93
92
|
}, z.core.$strip>>;
|
|
94
93
|
}, z.core.$strip>;
|
|
95
|
-
}, z.core.$strip>,
|
|
94
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
96
95
|
NOT_FOUND: {};
|
|
97
96
|
BAD_REQUEST: {};
|
|
98
97
|
}>, Record<never, never>>;
|
|
@@ -100,7 +99,7 @@ declare const contract: {
|
|
|
100
99
|
};
|
|
101
100
|
deployments: {
|
|
102
101
|
list: {
|
|
103
|
-
v1:
|
|
102
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
104
103
|
projectId: z.ZodString;
|
|
105
104
|
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
106
105
|
ongoing: "ongoing";
|
|
@@ -128,12 +127,12 @@ declare const contract: {
|
|
|
128
127
|
environmentName: z.ZodString;
|
|
129
128
|
isCurrent: z.ZodBoolean;
|
|
130
129
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
131
|
-
}, z.core.$strip>>,
|
|
130
|
+
}, z.core.$strip>>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
132
131
|
NOT_FOUND: {};
|
|
133
132
|
}>, Record<never, never>>;
|
|
134
133
|
};
|
|
135
134
|
get: {
|
|
136
|
-
v1:
|
|
135
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
137
136
|
deploymentId: z.ZodString;
|
|
138
137
|
}, z.core.$strip>, z.ZodObject<{
|
|
139
138
|
id: z.ZodString;
|
|
@@ -154,21 +153,24 @@ declare const contract: {
|
|
|
154
153
|
environmentName: z.ZodString;
|
|
155
154
|
isCurrent: z.ZodBoolean;
|
|
156
155
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
157
|
-
}, z.core.$strip>,
|
|
156
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
158
157
|
NOT_FOUND: {};
|
|
159
158
|
}>, Record<never, never>>;
|
|
160
159
|
};
|
|
161
160
|
uploadArtifact: {
|
|
162
|
-
v1:
|
|
161
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
163
162
|
teamId: z.ZodOptional<z.ZodString>;
|
|
164
163
|
}, z.core.$strip>>, z.ZodObject<{
|
|
165
164
|
uploadUrl: z.ZodURL;
|
|
166
165
|
token: z.ZodString;
|
|
167
166
|
expiresAt: z.ZodCoercedDate<unknown>;
|
|
168
|
-
}, z.core.$strip>, Record<never, never>,
|
|
167
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
168
|
+
NOT_FOUND: {};
|
|
169
|
+
BAD_REQUEST: {};
|
|
170
|
+
}>, Record<never, never>>;
|
|
169
171
|
};
|
|
170
172
|
getLogs: {
|
|
171
|
-
v1:
|
|
173
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
172
174
|
deploymentId: z.ZodString;
|
|
173
175
|
}, z.core.$strip>, z.ZodObject<{
|
|
174
176
|
logs: z.ZodArray<z.ZodObject<{
|
|
@@ -176,14 +178,14 @@ declare const contract: {
|
|
|
176
178
|
content: z.ZodOptional<z.ZodString>;
|
|
177
179
|
}, z.core.$strip>>;
|
|
178
180
|
hasMoreLogs: z.ZodBoolean;
|
|
179
|
-
}, z.core.$strip>,
|
|
181
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
180
182
|
NOT_FOUND: {};
|
|
181
183
|
}>, Record<never, never>>;
|
|
182
184
|
};
|
|
183
185
|
};
|
|
184
186
|
environments: {
|
|
185
187
|
create: {
|
|
186
|
-
v1:
|
|
188
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
187
189
|
projectId: z.ZodString;
|
|
188
190
|
name: z.ZodString;
|
|
189
191
|
sourceBranch: z.ZodString;
|
|
@@ -196,16 +198,16 @@ declare const contract: {
|
|
|
196
198
|
id: z.ZodString;
|
|
197
199
|
name: z.ZodString;
|
|
198
200
|
sourceBranch: z.ZodNullable<z.ZodString>;
|
|
199
|
-
urls: z.ZodArray<z.
|
|
201
|
+
urls: z.ZodArray<z.ZodURL>;
|
|
200
202
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
201
203
|
projectId: z.ZodString;
|
|
202
|
-
}, z.core.$strip>,
|
|
204
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
203
205
|
NOT_FOUND: {};
|
|
204
206
|
BAD_REQUEST: {};
|
|
205
207
|
}>, Record<never, never>>;
|
|
206
208
|
};
|
|
207
209
|
get: {
|
|
208
|
-
v1:
|
|
210
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
209
211
|
environmentId: z.ZodString;
|
|
210
212
|
}, z.core.$strip>, z.ZodObject<{
|
|
211
213
|
id: z.ZodString;
|
|
@@ -215,12 +217,12 @@ declare const contract: {
|
|
|
215
217
|
domains: z.ZodArray<z.ZodCustomStringFormat<"hostname">>;
|
|
216
218
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
217
219
|
projectId: z.ZodString;
|
|
218
|
-
}, z.core.$strip>,
|
|
220
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
219
221
|
NOT_FOUND: {};
|
|
220
222
|
}>, Record<never, never>>;
|
|
221
223
|
};
|
|
222
224
|
deploy: {
|
|
223
|
-
v1:
|
|
225
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
224
226
|
environmentId: z.ZodString;
|
|
225
227
|
token: z.ZodOptional<z.ZodString>;
|
|
226
228
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -242,13 +244,13 @@ declare const contract: {
|
|
|
242
244
|
environmentName: z.ZodString;
|
|
243
245
|
isCurrent: z.ZodBoolean;
|
|
244
246
|
deploymentPageUrl: z.ZodNullable<z.ZodURL>;
|
|
245
|
-
}, z.core.$strip>,
|
|
247
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
246
248
|
NOT_FOUND: {};
|
|
247
249
|
BAD_REQUEST: {};
|
|
248
250
|
}>, Record<never, never>>;
|
|
249
251
|
};
|
|
250
252
|
getLogs: {
|
|
251
|
-
v1:
|
|
253
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
252
254
|
environmentId: z.ZodString;
|
|
253
255
|
since: z.ZodOptional<z.ZodString>;
|
|
254
256
|
until: z.ZodOptional<z.ZodString>;
|
|
@@ -278,13 +280,13 @@ declare const contract: {
|
|
|
278
280
|
durationInMs: z.ZodOptional<z.ZodNumber>;
|
|
279
281
|
}, z.core.$strip>>;
|
|
280
282
|
nextToken: z.ZodNullable<z.ZodString>;
|
|
281
|
-
}, z.core.$strip>,
|
|
283
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
282
284
|
NOT_FOUND: {};
|
|
283
285
|
BAD_REQUEST: {};
|
|
284
286
|
}>, Record<never, never>>;
|
|
285
287
|
};
|
|
286
288
|
getLatestLogs: {
|
|
287
|
-
v1:
|
|
289
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
288
290
|
environmentId: z.ZodString;
|
|
289
291
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
290
292
|
level: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -310,7 +312,7 @@ declare const contract: {
|
|
|
310
312
|
method: z.ZodOptional<z.ZodString>;
|
|
311
313
|
durationInMs: z.ZodOptional<z.ZodNumber>;
|
|
312
314
|
}, z.core.$strip>>;
|
|
313
|
-
}, z.core.$strip>,
|
|
315
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
314
316
|
NOT_FOUND: {};
|
|
315
317
|
BAD_REQUEST: {};
|
|
316
318
|
}>, Record<never, never>>;
|
|
@@ -318,7 +320,7 @@ declare const contract: {
|
|
|
318
320
|
};
|
|
319
321
|
environmentVariables: {
|
|
320
322
|
list: {
|
|
321
|
-
v1:
|
|
323
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
322
324
|
environmentId: z.ZodString;
|
|
323
325
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
324
326
|
id: z.ZodString;
|
|
@@ -326,12 +328,12 @@ declare const contract: {
|
|
|
326
328
|
value: z.ZodString;
|
|
327
329
|
isSecret: z.ZodBoolean;
|
|
328
330
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
329
|
-
}, z.core.$strip>>,
|
|
331
|
+
}, z.core.$strip>>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
330
332
|
NOT_FOUND: {};
|
|
331
333
|
}>, Record<never, never>>;
|
|
332
334
|
};
|
|
333
335
|
create: {
|
|
334
|
-
v1:
|
|
336
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
335
337
|
environmentId: z.ZodString;
|
|
336
338
|
environmentVariables: z.ZodArray<z.ZodObject<{
|
|
337
339
|
key: z.ZodString;
|
|
@@ -340,37 +342,38 @@ declare const contract: {
|
|
|
340
342
|
}, z.core.$strip>>;
|
|
341
343
|
}, z.core.$strip>, z.ZodObject<{
|
|
342
344
|
success: z.ZodLiteral<true>;
|
|
343
|
-
}, z.core.$strip>,
|
|
345
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
344
346
|
NOT_FOUND: {};
|
|
345
347
|
BAD_REQUEST: {};
|
|
346
348
|
}>, Record<never, never>>;
|
|
347
349
|
};
|
|
348
350
|
update: {
|
|
349
|
-
v1:
|
|
351
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
350
352
|
environmentVariableId: z.ZodString;
|
|
351
353
|
key: z.ZodString;
|
|
352
354
|
value: z.ZodOptional<z.ZodString>;
|
|
353
355
|
isSecret: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
354
356
|
}, z.core.$strip>, z.ZodObject<{
|
|
355
357
|
success: z.ZodLiteral<true>;
|
|
356
|
-
}, z.core.$strip>,
|
|
358
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
357
359
|
NOT_FOUND: {};
|
|
358
360
|
BAD_REQUEST: {};
|
|
359
361
|
}>, Record<never, never>>;
|
|
360
362
|
};
|
|
361
363
|
delete: {
|
|
362
|
-
v1:
|
|
364
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
363
365
|
environmentVariableId: z.ZodString;
|
|
364
366
|
}, z.core.$strip>, z.ZodObject<{
|
|
365
367
|
success: z.ZodLiteral<true>;
|
|
366
|
-
}, z.core.$strip>,
|
|
368
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
367
369
|
NOT_FOUND: {};
|
|
370
|
+
BAD_REQUEST: {};
|
|
368
371
|
}>, Record<never, never>>;
|
|
369
372
|
};
|
|
370
373
|
};
|
|
371
374
|
projects: {
|
|
372
375
|
update: {
|
|
373
|
-
v1:
|
|
376
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
374
377
|
projectId: z.ZodString;
|
|
375
378
|
name: z.ZodOptional<z.ZodString>;
|
|
376
379
|
sourceRepository: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -442,13 +445,13 @@ declare const contract: {
|
|
|
442
445
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
443
446
|
}, z.core.$strip>>;
|
|
444
447
|
}, z.core.$strip>>;
|
|
445
|
-
}, z.core.$strip>,
|
|
448
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
446
449
|
NOT_FOUND: {};
|
|
447
450
|
BAD_REQUEST: {};
|
|
448
451
|
}>, Record<never, never>>;
|
|
449
452
|
};
|
|
450
453
|
get: {
|
|
451
|
-
v1:
|
|
454
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
452
455
|
projectId: z.ZodString;
|
|
453
456
|
}, z.core.$strip>, z.ZodObject<{
|
|
454
457
|
id: z.ZodString;
|
|
@@ -518,12 +521,12 @@ declare const contract: {
|
|
|
518
521
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
519
522
|
}, z.core.$strip>>;
|
|
520
523
|
}, z.core.$strip>>;
|
|
521
|
-
}, z.core.$strip>,
|
|
524
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
522
525
|
NOT_FOUND: {};
|
|
523
526
|
}>, Record<never, never>>;
|
|
524
527
|
};
|
|
525
528
|
list: {
|
|
526
|
-
v1:
|
|
529
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodOptional<z.ZodObject<{
|
|
527
530
|
teamId: z.ZodOptional<z.ZodString>;
|
|
528
531
|
}, z.core.$strip>>, z.ZodArray<z.ZodObject<{
|
|
529
532
|
id: z.ZodString;
|
|
@@ -593,10 +596,13 @@ declare const contract: {
|
|
|
593
596
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
594
597
|
}, z.core.$strip>>;
|
|
595
598
|
}, z.core.$strip>>;
|
|
596
|
-
}, z.core.$strip>>, Record<never, never>,
|
|
599
|
+
}, z.core.$strip>>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
600
|
+
NOT_FOUND: {};
|
|
601
|
+
BAD_REQUEST: {};
|
|
602
|
+
}>, Record<never, never>>;
|
|
597
603
|
};
|
|
598
604
|
create: {
|
|
599
|
-
v1:
|
|
605
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
600
606
|
teamId: z.ZodOptional<z.ZodString>;
|
|
601
607
|
name: z.ZodString;
|
|
602
608
|
sourceRepository: z.ZodOptional<z.ZodString>;
|
|
@@ -654,24 +660,24 @@ declare const contract: {
|
|
|
654
660
|
installCommand: z.ZodNullable<z.ZodString>;
|
|
655
661
|
startCommand: z.ZodNullable<z.ZodString>;
|
|
656
662
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
657
|
-
}, z.core.$strip>,
|
|
663
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
658
664
|
NOT_FOUND: {};
|
|
659
665
|
BAD_REQUEST: {};
|
|
660
666
|
}>, Record<never, never>>;
|
|
661
667
|
};
|
|
662
668
|
delete: {
|
|
663
|
-
v1:
|
|
669
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
664
670
|
projectId: z.ZodString;
|
|
665
671
|
}, z.core.$strip>, z.ZodObject<{
|
|
666
672
|
success: z.ZodLiteral<true>;
|
|
667
|
-
}, z.core.$strip>,
|
|
673
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
668
674
|
NOT_FOUND: {};
|
|
669
675
|
}>, Record<never, never>>;
|
|
670
676
|
};
|
|
671
677
|
};
|
|
672
678
|
playground: {
|
|
673
679
|
get: {
|
|
674
|
-
v1:
|
|
680
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
675
681
|
environmentId: z.ZodString;
|
|
676
682
|
}, z.core.$strip>, z.ZodObject<{
|
|
677
683
|
isPlaygroundEnabled: z.ZodBoolean;
|
|
@@ -689,12 +695,12 @@ declare const contract: {
|
|
|
689
695
|
prompt: z.ZodString;
|
|
690
696
|
}, z.core.$strip>>;
|
|
691
697
|
}, z.core.$strip>>;
|
|
692
|
-
}, z.core.$strip>,
|
|
698
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
693
699
|
NOT_FOUND: {};
|
|
694
700
|
}>, Record<never, never>>;
|
|
695
701
|
};
|
|
696
702
|
upsert: {
|
|
697
|
-
v1:
|
|
703
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
698
704
|
environmentId: z.ZodString;
|
|
699
705
|
isPlaygroundEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
700
706
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -725,7 +731,7 @@ declare const contract: {
|
|
|
725
731
|
prompt: z.ZodString;
|
|
726
732
|
}, z.core.$strip>>;
|
|
727
733
|
}, z.core.$strip>>;
|
|
728
|
-
}, z.core.$strip>,
|
|
734
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
729
735
|
NOT_FOUND: {};
|
|
730
736
|
BAD_REQUEST: {};
|
|
731
737
|
}>, Record<never, never>>;
|
|
@@ -733,16 +739,18 @@ declare const contract: {
|
|
|
733
739
|
};
|
|
734
740
|
tunnels: {
|
|
735
741
|
getTicket: {
|
|
736
|
-
v1:
|
|
742
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, z.ZodObject<{
|
|
737
743
|
subdomain: z.ZodString;
|
|
738
744
|
ticket: z.ZodString;
|
|
739
745
|
tunnelHost: z.ZodString;
|
|
740
|
-
}, z.core.$strip>, Record<never, never>,
|
|
746
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
747
|
+
FORBIDDEN: {};
|
|
748
|
+
}>, Record<never, never>>;
|
|
741
749
|
};
|
|
742
750
|
};
|
|
743
751
|
distribution: {
|
|
744
752
|
publish: {
|
|
745
|
-
v1:
|
|
753
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
746
754
|
projectId: z.ZodString;
|
|
747
755
|
domain: z.ZodString;
|
|
748
756
|
title: z.ZodString;
|
|
@@ -774,13 +782,13 @@ declare const contract: {
|
|
|
774
782
|
}, z.core.$strip>>>;
|
|
775
783
|
}, z.core.$strip>>>;
|
|
776
784
|
}, z.core.$strip>;
|
|
777
|
-
}, z.core.$strip>,
|
|
785
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
778
786
|
NOT_FOUND: {};
|
|
779
787
|
BAD_REQUEST: {};
|
|
780
788
|
}>, Record<never, never>>;
|
|
781
789
|
};
|
|
782
790
|
get: {
|
|
783
|
-
v1:
|
|
791
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
784
792
|
projectId: z.ZodString;
|
|
785
793
|
domain: z.ZodString;
|
|
786
794
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -807,7 +815,7 @@ declare const contract: {
|
|
|
807
815
|
}, z.core.$strip>>>;
|
|
808
816
|
}, z.core.$strip>>>;
|
|
809
817
|
}, z.core.$strip>;
|
|
810
|
-
}, z.core.$strip>,
|
|
818
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
811
819
|
NOT_FOUND: {};
|
|
812
820
|
BAD_REQUEST: {};
|
|
813
821
|
}>, Record<never, never>>;
|
|
@@ -815,7 +823,7 @@ declare const contract: {
|
|
|
815
823
|
};
|
|
816
824
|
beacon: {
|
|
817
825
|
create: {
|
|
818
|
-
v1:
|
|
826
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
819
827
|
targetUrl: z.ZodURL;
|
|
820
828
|
teamId: z.ZodOptional<z.ZodString>;
|
|
821
829
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -828,7 +836,7 @@ declare const contract: {
|
|
|
828
836
|
}>>>;
|
|
829
837
|
}, z.core.$strip>, z.ZodObject<{
|
|
830
838
|
id: z.ZodString;
|
|
831
|
-
}, z.core.$strip>,
|
|
839
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
832
840
|
NOT_FOUND: {};
|
|
833
841
|
BAD_REQUEST: {};
|
|
834
842
|
DNS_RESOLUTION_FAILED: {
|
|
@@ -837,7 +845,7 @@ declare const contract: {
|
|
|
837
845
|
}>, Record<never, never>>;
|
|
838
846
|
};
|
|
839
847
|
get: {
|
|
840
|
-
v1:
|
|
848
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
841
849
|
auditId: z.ZodString;
|
|
842
850
|
}, z.core.$strip>, z.ZodObject<{
|
|
843
851
|
id: z.ZodString;
|
|
@@ -921,7 +929,7 @@ declare const contract: {
|
|
|
921
929
|
}, z.core.$strip>>;
|
|
922
930
|
}, z.core.$strip>;
|
|
923
931
|
}, z.core.$strip>>;
|
|
924
|
-
}, z.core.$strip>,
|
|
932
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
925
933
|
NOT_FOUND: {};
|
|
926
934
|
}>, Record<never, never>>;
|
|
927
935
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,174 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
import * as z$1 from "zod/v4";
|
|
2
3
|
import { oc } from "@orpc/contract";
|
|
3
4
|
import ms from "ms";
|
|
5
|
+
//#region ../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.29.0_@cfworker+json-schema@4.1.1_zod@4.4.3/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js
|
|
6
|
+
/**
|
|
7
|
+
* Reusable URL validation that disallows javascript: scheme
|
|
8
|
+
*/
|
|
9
|
+
const SafeUrlSchema = z$1.url().superRefine((val, ctx) => {
|
|
10
|
+
if (!URL.canParse(val)) {
|
|
11
|
+
ctx.addIssue({
|
|
12
|
+
code: z$1.ZodIssueCode.custom,
|
|
13
|
+
message: "URL must be parseable",
|
|
14
|
+
fatal: true
|
|
15
|
+
});
|
|
16
|
+
return z$1.NEVER;
|
|
17
|
+
}
|
|
18
|
+
}).refine((url) => {
|
|
19
|
+
const u = new URL(url);
|
|
20
|
+
return u.protocol !== "javascript:" && u.protocol !== "data:" && u.protocol !== "vbscript:";
|
|
21
|
+
}, { message: "URL cannot use javascript:, data:, or vbscript: scheme" });
|
|
22
|
+
/**
|
|
23
|
+
* RFC 9728 OAuth Protected Resource Metadata
|
|
24
|
+
*/
|
|
25
|
+
const OAuthProtectedResourceMetadataSchema = z$1.looseObject({
|
|
26
|
+
resource: z$1.string().url(),
|
|
27
|
+
authorization_servers: z$1.array(SafeUrlSchema).optional(),
|
|
28
|
+
jwks_uri: z$1.string().url().optional(),
|
|
29
|
+
scopes_supported: z$1.array(z$1.string()).optional(),
|
|
30
|
+
bearer_methods_supported: z$1.array(z$1.string()).optional(),
|
|
31
|
+
resource_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
32
|
+
resource_name: z$1.string().optional(),
|
|
33
|
+
resource_documentation: z$1.string().optional(),
|
|
34
|
+
resource_policy_uri: z$1.string().url().optional(),
|
|
35
|
+
resource_tos_uri: z$1.string().url().optional(),
|
|
36
|
+
tls_client_certificate_bound_access_tokens: z$1.boolean().optional(),
|
|
37
|
+
authorization_details_types_supported: z$1.array(z$1.string()).optional(),
|
|
38
|
+
dpop_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
39
|
+
dpop_bound_access_tokens_required: z$1.boolean().optional()
|
|
40
|
+
});
|
|
41
|
+
/**
|
|
42
|
+
* RFC 8414 OAuth 2.0 Authorization Server Metadata
|
|
43
|
+
*/
|
|
44
|
+
const OAuthMetadataSchema = z$1.looseObject({
|
|
45
|
+
issuer: z$1.string(),
|
|
46
|
+
authorization_endpoint: SafeUrlSchema,
|
|
47
|
+
token_endpoint: SafeUrlSchema,
|
|
48
|
+
registration_endpoint: SafeUrlSchema.optional(),
|
|
49
|
+
scopes_supported: z$1.array(z$1.string()).optional(),
|
|
50
|
+
response_types_supported: z$1.array(z$1.string()),
|
|
51
|
+
response_modes_supported: z$1.array(z$1.string()).optional(),
|
|
52
|
+
grant_types_supported: z$1.array(z$1.string()).optional(),
|
|
53
|
+
token_endpoint_auth_methods_supported: z$1.array(z$1.string()).optional(),
|
|
54
|
+
token_endpoint_auth_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
55
|
+
service_documentation: SafeUrlSchema.optional(),
|
|
56
|
+
revocation_endpoint: SafeUrlSchema.optional(),
|
|
57
|
+
revocation_endpoint_auth_methods_supported: z$1.array(z$1.string()).optional(),
|
|
58
|
+
revocation_endpoint_auth_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
59
|
+
introspection_endpoint: z$1.string().optional(),
|
|
60
|
+
introspection_endpoint_auth_methods_supported: z$1.array(z$1.string()).optional(),
|
|
61
|
+
introspection_endpoint_auth_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
62
|
+
code_challenge_methods_supported: z$1.array(z$1.string()).optional(),
|
|
63
|
+
client_id_metadata_document_supported: z$1.boolean().optional()
|
|
64
|
+
});
|
|
65
|
+
/**
|
|
66
|
+
* OpenID Connect Discovery 1.0 Provider Metadata
|
|
67
|
+
* see: https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
|
|
68
|
+
*/
|
|
69
|
+
const OpenIdProviderMetadataSchema = z$1.looseObject({
|
|
70
|
+
issuer: z$1.string(),
|
|
71
|
+
authorization_endpoint: SafeUrlSchema,
|
|
72
|
+
token_endpoint: SafeUrlSchema,
|
|
73
|
+
userinfo_endpoint: SafeUrlSchema.optional(),
|
|
74
|
+
jwks_uri: SafeUrlSchema,
|
|
75
|
+
registration_endpoint: SafeUrlSchema.optional(),
|
|
76
|
+
scopes_supported: z$1.array(z$1.string()).optional(),
|
|
77
|
+
response_types_supported: z$1.array(z$1.string()),
|
|
78
|
+
response_modes_supported: z$1.array(z$1.string()).optional(),
|
|
79
|
+
grant_types_supported: z$1.array(z$1.string()).optional(),
|
|
80
|
+
acr_values_supported: z$1.array(z$1.string()).optional(),
|
|
81
|
+
subject_types_supported: z$1.array(z$1.string()),
|
|
82
|
+
id_token_signing_alg_values_supported: z$1.array(z$1.string()),
|
|
83
|
+
id_token_encryption_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
84
|
+
id_token_encryption_enc_values_supported: z$1.array(z$1.string()).optional(),
|
|
85
|
+
userinfo_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
86
|
+
userinfo_encryption_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
87
|
+
userinfo_encryption_enc_values_supported: z$1.array(z$1.string()).optional(),
|
|
88
|
+
request_object_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
89
|
+
request_object_encryption_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
90
|
+
request_object_encryption_enc_values_supported: z$1.array(z$1.string()).optional(),
|
|
91
|
+
token_endpoint_auth_methods_supported: z$1.array(z$1.string()).optional(),
|
|
92
|
+
token_endpoint_auth_signing_alg_values_supported: z$1.array(z$1.string()).optional(),
|
|
93
|
+
display_values_supported: z$1.array(z$1.string()).optional(),
|
|
94
|
+
claim_types_supported: z$1.array(z$1.string()).optional(),
|
|
95
|
+
claims_supported: z$1.array(z$1.string()).optional(),
|
|
96
|
+
service_documentation: z$1.string().optional(),
|
|
97
|
+
claims_locales_supported: z$1.array(z$1.string()).optional(),
|
|
98
|
+
ui_locales_supported: z$1.array(z$1.string()).optional(),
|
|
99
|
+
claims_parameter_supported: z$1.boolean().optional(),
|
|
100
|
+
request_parameter_supported: z$1.boolean().optional(),
|
|
101
|
+
request_uri_parameter_supported: z$1.boolean().optional(),
|
|
102
|
+
require_request_uri_registration: z$1.boolean().optional(),
|
|
103
|
+
op_policy_uri: SafeUrlSchema.optional(),
|
|
104
|
+
op_tos_uri: SafeUrlSchema.optional(),
|
|
105
|
+
client_id_metadata_document_supported: z$1.boolean().optional()
|
|
106
|
+
});
|
|
107
|
+
/**
|
|
108
|
+
* OpenID Connect Discovery metadata that may include OAuth 2.0 fields
|
|
109
|
+
* This schema represents the real-world scenario where OIDC providers
|
|
110
|
+
* return a mix of OpenID Connect and OAuth 2.0 metadata fields
|
|
111
|
+
*/
|
|
112
|
+
const OpenIdProviderDiscoveryMetadataSchema = z$1.object({
|
|
113
|
+
...OpenIdProviderMetadataSchema.shape,
|
|
114
|
+
...OAuthMetadataSchema.pick({ code_challenge_methods_supported: true }).shape
|
|
115
|
+
});
|
|
116
|
+
z$1.object({
|
|
117
|
+
access_token: z$1.string(),
|
|
118
|
+
id_token: z$1.string().optional(),
|
|
119
|
+
token_type: z$1.string(),
|
|
120
|
+
expires_in: z$1.coerce.number().optional(),
|
|
121
|
+
scope: z$1.string().optional(),
|
|
122
|
+
refresh_token: z$1.string().optional()
|
|
123
|
+
}).strip();
|
|
124
|
+
z$1.object({
|
|
125
|
+
error: z$1.string(),
|
|
126
|
+
error_description: z$1.string().optional(),
|
|
127
|
+
error_uri: z$1.string().optional()
|
|
128
|
+
});
|
|
129
|
+
/**
|
|
130
|
+
* Optional version of SafeUrlSchema that allows empty string for retrocompatibility on tos_uri and logo_uri
|
|
131
|
+
*/
|
|
132
|
+
const OptionalSafeUrlSchema = SafeUrlSchema.optional().or(z$1.literal("").transform(() => void 0));
|
|
133
|
+
/**
|
|
134
|
+
* RFC 7591 OAuth 2.0 Dynamic Client Registration metadata
|
|
135
|
+
*/
|
|
136
|
+
const OAuthClientMetadataSchema = z$1.object({
|
|
137
|
+
redirect_uris: z$1.array(SafeUrlSchema),
|
|
138
|
+
token_endpoint_auth_method: z$1.string().optional(),
|
|
139
|
+
grant_types: z$1.array(z$1.string()).optional(),
|
|
140
|
+
response_types: z$1.array(z$1.string()).optional(),
|
|
141
|
+
client_name: z$1.string().optional(),
|
|
142
|
+
client_uri: SafeUrlSchema.optional(),
|
|
143
|
+
logo_uri: OptionalSafeUrlSchema,
|
|
144
|
+
scope: z$1.string().optional(),
|
|
145
|
+
contacts: z$1.array(z$1.string()).optional(),
|
|
146
|
+
tos_uri: OptionalSafeUrlSchema,
|
|
147
|
+
policy_uri: z$1.string().optional(),
|
|
148
|
+
jwks_uri: SafeUrlSchema.optional(),
|
|
149
|
+
jwks: z$1.any().optional(),
|
|
150
|
+
software_id: z$1.string().optional(),
|
|
151
|
+
software_version: z$1.string().optional(),
|
|
152
|
+
software_statement: z$1.string().optional()
|
|
153
|
+
}).strip();
|
|
154
|
+
/**
|
|
155
|
+
* RFC 7591 OAuth 2.0 Dynamic Client Registration client information
|
|
156
|
+
*/
|
|
157
|
+
const OAuthClientInformationSchema = z$1.object({
|
|
158
|
+
client_id: z$1.string(),
|
|
159
|
+
client_secret: z$1.string().optional(),
|
|
160
|
+
client_id_issued_at: z$1.number().optional(),
|
|
161
|
+
client_secret_expires_at: z$1.number().optional()
|
|
162
|
+
}).strip();
|
|
163
|
+
OAuthClientMetadataSchema.merge(OAuthClientInformationSchema);
|
|
164
|
+
z$1.object({
|
|
165
|
+
error: z$1.string(),
|
|
166
|
+
error_description: z$1.string().optional()
|
|
167
|
+
}).strip();
|
|
168
|
+
z$1.object({
|
|
169
|
+
token: z$1.string(),
|
|
170
|
+
token_type_hint: z$1.string().optional()
|
|
171
|
+
}).strip();
|
|
4
172
|
const platformSchema = z.enum(["chatgpt", "claudeai"]);
|
|
5
173
|
const PLATFORM_LABELS = {
|
|
6
174
|
chatgpt: "ChatGPT",
|
|
@@ -71,6 +239,13 @@ const auditReportWithScreenshotsSchema = auditReportSchema.extend({ widgetScreen
|
|
|
71
239
|
chatgpt: widgetScreenshotSchema.optional(),
|
|
72
240
|
claudeai: widgetScreenshotSchema.optional()
|
|
73
241
|
}) });
|
|
242
|
+
z.object({
|
|
243
|
+
id: z.string(),
|
|
244
|
+
environmentId: z.string(),
|
|
245
|
+
clientId: z.string(),
|
|
246
|
+
clientSecret: z.string(),
|
|
247
|
+
clientScopes: z.array(z.string())
|
|
248
|
+
});
|
|
74
249
|
const deploymentStatusSchema$1 = z.enum([
|
|
75
250
|
"ongoing",
|
|
76
251
|
"deployed",
|
|
@@ -98,6 +273,74 @@ const deploymentSummarySchema = z.object({
|
|
|
98
273
|
createdAt: z.coerce.date(),
|
|
99
274
|
updatedAt: z.coerce.date()
|
|
100
275
|
});
|
|
276
|
+
/**
|
|
277
|
+
* Public environment
|
|
278
|
+
*
|
|
279
|
+
* No OAuth metadata exposed.
|
|
280
|
+
*/
|
|
281
|
+
const publicEnvironmentSchema = z.object({
|
|
282
|
+
isPublic: z.literal(true),
|
|
283
|
+
oAuthMetadata: z.undefined().optional()
|
|
284
|
+
});
|
|
285
|
+
/**
|
|
286
|
+
* Protected environment with an external resource metadata URL
|
|
287
|
+
*
|
|
288
|
+
* An external resource metadata URL is returned in the WWW-Authenticate header during the first 401 response.
|
|
289
|
+
* Everything that follows is handled outside of the MCP server scope.
|
|
290
|
+
*/
|
|
291
|
+
const externalResourceMetadataEnvironmentSchema = z.object({
|
|
292
|
+
isPublic: z.literal(false),
|
|
293
|
+
oAuthMetadata: z.object({ externalResourceMetadataUrl: z.url() }),
|
|
294
|
+
scope: z.string().optional()
|
|
295
|
+
});
|
|
296
|
+
/**
|
|
297
|
+
* Protected environment with an external authorization server URL
|
|
298
|
+
*
|
|
299
|
+
* The server itself exposes the /.well-known/oauth-protected-resource endpoint.
|
|
300
|
+
* An external authorization server URL is returned when requesting the endpoint.
|
|
301
|
+
* Everything that follows is handled outside of the MCP server scope.
|
|
302
|
+
*/
|
|
303
|
+
const externalAuthorizationServerEnvironmentSchema = z.object({
|
|
304
|
+
isPublic: z.literal(false),
|
|
305
|
+
oAuthMetadata: z.object({
|
|
306
|
+
externalAuthorizationServerUrl: z.url(),
|
|
307
|
+
resourceMetadata: OAuthProtectedResourceMetadataSchema.optional()
|
|
308
|
+
}),
|
|
309
|
+
scope: z.string().optional()
|
|
310
|
+
});
|
|
311
|
+
/**
|
|
312
|
+
* Standalone protected environment
|
|
313
|
+
*
|
|
314
|
+
* The server itself exposes the /.well-known/oauth-protected-resource endpoint.
|
|
315
|
+
* The server itself exposes the /.well-known/oauth-authorization-server endpoint.
|
|
316
|
+
*/
|
|
317
|
+
const standaloneEnvironmentSchema = z.object({
|
|
318
|
+
isPublic: z.literal(false),
|
|
319
|
+
oAuthMetadata: z.object({
|
|
320
|
+
authorizationServerMetadata: z.union([OAuthMetadataSchema, OpenIdProviderDiscoveryMetadataSchema]),
|
|
321
|
+
resourceMetadata: OAuthProtectedResourceMetadataSchema.optional()
|
|
322
|
+
}),
|
|
323
|
+
scope: z.string().optional()
|
|
324
|
+
});
|
|
325
|
+
/**
|
|
326
|
+
* Protected environment without OAuth discovery
|
|
327
|
+
*
|
|
328
|
+
* The server enforces authentication but exposes no OAuth discovery metadata.
|
|
329
|
+
* Neither /.well-known/oauth-protected-resource nor /.well-known/oauth-authorization-server
|
|
330
|
+
* are advertised. Clients must obtain credentials out-of-band.
|
|
331
|
+
*/
|
|
332
|
+
const protectedWithoutDiscoveryEnvironmentSchema = z.object({
|
|
333
|
+
isPublic: z.literal(false),
|
|
334
|
+
oAuthMetadata: z.strictObject({}),
|
|
335
|
+
scope: z.string().optional()
|
|
336
|
+
});
|
|
337
|
+
z.union([
|
|
338
|
+
publicEnvironmentSchema,
|
|
339
|
+
externalResourceMetadataEnvironmentSchema,
|
|
340
|
+
externalAuthorizationServerEnvironmentSchema,
|
|
341
|
+
standaloneEnvironmentSchema,
|
|
342
|
+
protectedWithoutDiscoveryEnvironmentSchema
|
|
343
|
+
]);
|
|
101
344
|
const allowedPlatformSchema = platformSchema;
|
|
102
345
|
const environmentDomainSchema = z.object({
|
|
103
346
|
domain: z.string(),
|
|
@@ -296,6 +539,22 @@ z.object({
|
|
|
296
539
|
serverFields: serverFieldsSchema$1,
|
|
297
540
|
source: z.enum(["registry", "defaults"])
|
|
298
541
|
});
|
|
542
|
+
/**
|
|
543
|
+
* Returns a variant of a `maxLength`-constrained string that clamps (truncates) instead of
|
|
544
|
+
* rejecting on overflow — used for AI-generated copy where the model routinely overshoots.
|
|
545
|
+
*
|
|
546
|
+
* NOTE: this rebuilds the schema from scratch, carrying over only `maxLength` (as a clamp),
|
|
547
|
+
* `minLength`, and the description. Any other validators on the source field (`.regex()`,
|
|
548
|
+
* `.email()`, custom refinements) are intentionally dropped — this helper is meant for plain
|
|
549
|
+
* free-text length caps only. A field with `null` `maxLength` is returned unchanged.
|
|
550
|
+
*/
|
|
551
|
+
const clampStringField = (field) => {
|
|
552
|
+
const max = field.maxLength;
|
|
553
|
+
if (max === null) return field;
|
|
554
|
+
const clamped = z.string().overwrite((value) => value.slice(0, max)).max(max);
|
|
555
|
+
const withMin = field.minLength === null ? clamped : clamped.min(field.minLength);
|
|
556
|
+
return field.description ? withMin.describe(field.description) : withMin;
|
|
557
|
+
};
|
|
299
558
|
const toolDefinitionSchema = z.object({
|
|
300
559
|
name: z.string(),
|
|
301
560
|
title: z.string().optional().describe("Human-friendly name for the tool, used in the UI. If not provided, `name` will be used."),
|
|
@@ -308,14 +567,14 @@ const toolDefinitionSchema = z.object({
|
|
|
308
567
|
}).optional()
|
|
309
568
|
});
|
|
310
569
|
const positiveTestCaseSchema = z.object({
|
|
311
|
-
scenario: z.string(),
|
|
312
|
-
userPrompt: z.string(),
|
|
313
|
-
toolTriggered: z.string().optional(),
|
|
314
|
-
expectedOutput: z.string().optional()
|
|
570
|
+
scenario: z.string().describe("Short label for what this case demonstrates."),
|
|
571
|
+
userPrompt: z.string().describe("A realistic, standalone user message a reviewer can paste and run with no prior state or multi-turn setup. Vary phrasing and tone across cases."),
|
|
572
|
+
toolTriggered: z.string().optional().describe("The tool this prompt should invoke."),
|
|
573
|
+
expectedOutput: z.string().optional().describe("What the user should see, including post-interaction behaviour where relevant.")
|
|
315
574
|
}).partial().describe("Each case: Scenario, User prompt, Tool triggered, Expected output.");
|
|
316
575
|
const screenshotEntrySchema = z.object({
|
|
317
576
|
prompt: z.string(),
|
|
318
|
-
url: z.url()
|
|
577
|
+
url: z.url().or(z.literal(""))
|
|
319
578
|
}).describe("Each screenshot: the user prompt that produced it + the image URL.");
|
|
320
579
|
/** Accepts either a valid email or URL. */
|
|
321
580
|
const supportChannelSchema = z.string().refine((value) => z.email().safeParse(value).success || z.url().safeParse(value).success, { error: "Must be a valid email or URL" });
|
|
@@ -335,22 +594,315 @@ const chatgptCategorySchema = z.enum([
|
|
|
335
594
|
"TRAVEL"
|
|
336
595
|
]);
|
|
337
596
|
const chatgptAuthenticationSchema = z.enum(["No auth needed", "OAuth 2.0"]);
|
|
338
|
-
const
|
|
597
|
+
const chatgptCountryCodeSchema = z.enum([
|
|
598
|
+
"AD",
|
|
599
|
+
"AE",
|
|
600
|
+
"AF",
|
|
601
|
+
"AG",
|
|
602
|
+
"AL",
|
|
603
|
+
"AM",
|
|
604
|
+
"AO",
|
|
605
|
+
"AR",
|
|
606
|
+
"AT",
|
|
607
|
+
"AU",
|
|
608
|
+
"AW",
|
|
609
|
+
"AX",
|
|
610
|
+
"AZ",
|
|
611
|
+
"BA",
|
|
612
|
+
"BB",
|
|
613
|
+
"BD",
|
|
614
|
+
"BE",
|
|
615
|
+
"BF",
|
|
616
|
+
"BG",
|
|
617
|
+
"BH",
|
|
618
|
+
"BI",
|
|
619
|
+
"BJ",
|
|
620
|
+
"BL",
|
|
621
|
+
"BM",
|
|
622
|
+
"BN",
|
|
623
|
+
"BO",
|
|
624
|
+
"BR",
|
|
625
|
+
"BS",
|
|
626
|
+
"BT",
|
|
627
|
+
"BW",
|
|
628
|
+
"BZ",
|
|
629
|
+
"CA",
|
|
630
|
+
"CD",
|
|
631
|
+
"CF",
|
|
632
|
+
"CG",
|
|
633
|
+
"CH",
|
|
634
|
+
"CI",
|
|
635
|
+
"CL",
|
|
636
|
+
"CM",
|
|
637
|
+
"CO",
|
|
638
|
+
"CR",
|
|
639
|
+
"CV",
|
|
640
|
+
"CY",
|
|
641
|
+
"CZ",
|
|
642
|
+
"DE",
|
|
643
|
+
"DJ",
|
|
644
|
+
"DK",
|
|
645
|
+
"DM",
|
|
646
|
+
"DO",
|
|
647
|
+
"DZ",
|
|
648
|
+
"EC",
|
|
649
|
+
"EE",
|
|
650
|
+
"EG",
|
|
651
|
+
"ER",
|
|
652
|
+
"ES",
|
|
653
|
+
"ET",
|
|
654
|
+
"FI",
|
|
655
|
+
"FJ",
|
|
656
|
+
"FM",
|
|
657
|
+
"FO",
|
|
658
|
+
"FR",
|
|
659
|
+
"GA",
|
|
660
|
+
"GB",
|
|
661
|
+
"GD",
|
|
662
|
+
"GE",
|
|
663
|
+
"GF",
|
|
664
|
+
"GH",
|
|
665
|
+
"GL",
|
|
666
|
+
"GM",
|
|
667
|
+
"GN",
|
|
668
|
+
"GP",
|
|
669
|
+
"GQ",
|
|
670
|
+
"GR",
|
|
671
|
+
"GT",
|
|
672
|
+
"GW",
|
|
673
|
+
"GY",
|
|
674
|
+
"HN",
|
|
675
|
+
"HR",
|
|
676
|
+
"HT",
|
|
677
|
+
"HU",
|
|
678
|
+
"ID",
|
|
679
|
+
"IE",
|
|
680
|
+
"IL",
|
|
681
|
+
"IN",
|
|
682
|
+
"IQ",
|
|
683
|
+
"IS",
|
|
684
|
+
"IT",
|
|
685
|
+
"JM",
|
|
686
|
+
"JO",
|
|
687
|
+
"JP",
|
|
688
|
+
"KE",
|
|
689
|
+
"KG",
|
|
690
|
+
"KH",
|
|
691
|
+
"KI",
|
|
692
|
+
"KM",
|
|
693
|
+
"KN",
|
|
694
|
+
"KR",
|
|
695
|
+
"KW",
|
|
696
|
+
"KY",
|
|
697
|
+
"KZ",
|
|
698
|
+
"LA",
|
|
699
|
+
"LB",
|
|
700
|
+
"LC",
|
|
701
|
+
"LI",
|
|
702
|
+
"LK",
|
|
703
|
+
"LR",
|
|
704
|
+
"LS",
|
|
705
|
+
"LT",
|
|
706
|
+
"LU",
|
|
707
|
+
"LV",
|
|
708
|
+
"LY",
|
|
709
|
+
"MA",
|
|
710
|
+
"MC",
|
|
711
|
+
"MD",
|
|
712
|
+
"ME",
|
|
713
|
+
"MF",
|
|
714
|
+
"MG",
|
|
715
|
+
"MH",
|
|
716
|
+
"MK",
|
|
717
|
+
"ML",
|
|
718
|
+
"MM",
|
|
719
|
+
"MN",
|
|
720
|
+
"MQ",
|
|
721
|
+
"MR",
|
|
722
|
+
"MT",
|
|
723
|
+
"MU",
|
|
724
|
+
"MV",
|
|
725
|
+
"MW",
|
|
726
|
+
"MX",
|
|
727
|
+
"MY",
|
|
728
|
+
"MZ",
|
|
729
|
+
"NA",
|
|
730
|
+
"NC",
|
|
731
|
+
"NE",
|
|
732
|
+
"NG",
|
|
733
|
+
"NI",
|
|
734
|
+
"NL",
|
|
735
|
+
"NO",
|
|
736
|
+
"NP",
|
|
737
|
+
"NR",
|
|
738
|
+
"NZ",
|
|
739
|
+
"OM",
|
|
740
|
+
"PA",
|
|
741
|
+
"PE",
|
|
742
|
+
"PF",
|
|
743
|
+
"PG",
|
|
744
|
+
"PH",
|
|
745
|
+
"PK",
|
|
746
|
+
"PL",
|
|
747
|
+
"PM",
|
|
748
|
+
"PS",
|
|
749
|
+
"PT",
|
|
750
|
+
"PW",
|
|
751
|
+
"PY",
|
|
752
|
+
"QA",
|
|
753
|
+
"RE",
|
|
754
|
+
"RO",
|
|
755
|
+
"RS",
|
|
756
|
+
"RW",
|
|
757
|
+
"SA",
|
|
758
|
+
"SB",
|
|
759
|
+
"SC",
|
|
760
|
+
"SD",
|
|
761
|
+
"SE",
|
|
762
|
+
"SG",
|
|
763
|
+
"SH",
|
|
764
|
+
"SI",
|
|
765
|
+
"SJ",
|
|
766
|
+
"SK",
|
|
767
|
+
"SL",
|
|
768
|
+
"SM",
|
|
769
|
+
"SN",
|
|
770
|
+
"SO",
|
|
771
|
+
"SR",
|
|
772
|
+
"SS",
|
|
773
|
+
"ST",
|
|
774
|
+
"SV",
|
|
775
|
+
"SZ",
|
|
776
|
+
"TD",
|
|
777
|
+
"TF",
|
|
778
|
+
"TG",
|
|
779
|
+
"TH",
|
|
780
|
+
"TJ",
|
|
781
|
+
"TL",
|
|
782
|
+
"TM",
|
|
783
|
+
"TN",
|
|
784
|
+
"TO",
|
|
785
|
+
"TR",
|
|
786
|
+
"TT",
|
|
787
|
+
"TV",
|
|
788
|
+
"TW",
|
|
789
|
+
"TZ",
|
|
790
|
+
"UA",
|
|
791
|
+
"UG",
|
|
792
|
+
"US",
|
|
793
|
+
"UY",
|
|
794
|
+
"UZ",
|
|
795
|
+
"VA",
|
|
796
|
+
"VC",
|
|
797
|
+
"VN",
|
|
798
|
+
"VU",
|
|
799
|
+
"WF",
|
|
800
|
+
"WS",
|
|
801
|
+
"YE",
|
|
802
|
+
"YT",
|
|
803
|
+
"ZA",
|
|
804
|
+
"ZM",
|
|
805
|
+
"ZW"
|
|
806
|
+
]);
|
|
807
|
+
const chatgptAllowedCountriesSchema = z.discriminatedUnion("mode", [
|
|
808
|
+
z.object({ mode: z.literal("all") }),
|
|
809
|
+
z.object({
|
|
810
|
+
mode: z.literal("allow"),
|
|
811
|
+
countries: z.array(chatgptCountryCodeSchema)
|
|
812
|
+
}),
|
|
813
|
+
z.object({
|
|
814
|
+
mode: z.literal("block"),
|
|
815
|
+
countries: z.array(chatgptCountryCodeSchema)
|
|
816
|
+
})
|
|
817
|
+
]);
|
|
818
|
+
const chatgptTranslationLocaleSchema = z.enum([
|
|
819
|
+
"am",
|
|
820
|
+
"ar",
|
|
821
|
+
"bg-BG",
|
|
822
|
+
"bn-BD",
|
|
823
|
+
"bs-BA",
|
|
824
|
+
"ca-ES",
|
|
825
|
+
"cs-CZ",
|
|
826
|
+
"da-DK",
|
|
827
|
+
"de-DE",
|
|
828
|
+
"el-GR",
|
|
829
|
+
"es-419",
|
|
830
|
+
"es-ES",
|
|
831
|
+
"et-EE",
|
|
832
|
+
"fi-FI",
|
|
833
|
+
"fr-CA",
|
|
834
|
+
"fr-FR",
|
|
835
|
+
"gu-IN",
|
|
836
|
+
"hi-IN",
|
|
837
|
+
"hr-HR",
|
|
838
|
+
"hu-HU",
|
|
839
|
+
"hy-AM",
|
|
840
|
+
"id-ID",
|
|
841
|
+
"is-IS",
|
|
842
|
+
"it-IT",
|
|
843
|
+
"ja-JP",
|
|
844
|
+
"ka-GE",
|
|
845
|
+
"kk",
|
|
846
|
+
"kn-IN",
|
|
847
|
+
"ko-KR",
|
|
848
|
+
"lt",
|
|
849
|
+
"lv-LV",
|
|
850
|
+
"mk-MK",
|
|
851
|
+
"ml",
|
|
852
|
+
"mn",
|
|
853
|
+
"mr-IN",
|
|
854
|
+
"ms-MY",
|
|
855
|
+
"my-MM",
|
|
856
|
+
"nb-NO",
|
|
857
|
+
"nl-NL",
|
|
858
|
+
"pa",
|
|
859
|
+
"pl-PL",
|
|
860
|
+
"pt-BR",
|
|
861
|
+
"pt-PT",
|
|
862
|
+
"ro-RO",
|
|
863
|
+
"ru-RU",
|
|
864
|
+
"sk-SK",
|
|
865
|
+
"sl-SI",
|
|
866
|
+
"so-SO",
|
|
867
|
+
"sq-AL",
|
|
868
|
+
"sr-RS",
|
|
869
|
+
"sv-SE",
|
|
870
|
+
"sw-TZ",
|
|
871
|
+
"ta-IN",
|
|
872
|
+
"te-IN",
|
|
873
|
+
"th-TH",
|
|
874
|
+
"tl",
|
|
875
|
+
"tr-TR",
|
|
876
|
+
"uk-UA",
|
|
877
|
+
"ur",
|
|
878
|
+
"vi-VN",
|
|
879
|
+
"zh-CN",
|
|
880
|
+
"zh-HK",
|
|
881
|
+
"zh-TW"
|
|
882
|
+
]);
|
|
339
883
|
const negativeTestCaseSchema = z.object({
|
|
340
884
|
scenario: z.string(),
|
|
341
885
|
userPrompt: z.string()
|
|
342
886
|
}).partial().describe("Each case: Scenario + User prompt (the app should NOT trigger).");
|
|
343
887
|
const chatgptToolJustificationSchema = z.object({
|
|
344
888
|
toolName: z.string(),
|
|
345
|
-
readOnlyJustification: z.string(),
|
|
346
|
-
openWorldJustification: z.string(),
|
|
347
|
-
destructiveJustification: z.string()
|
|
348
|
-
}).describe("Per-tool justification of each MCP annotation value (one sentence per hint).");
|
|
889
|
+
readOnlyJustification: z.string().describe("One sentence on what the tool reads and returns."),
|
|
890
|
+
openWorldJustification: z.string().describe("One sentence on whether the tool reaches external systems beyond your own service."),
|
|
891
|
+
destructiveJustification: z.string().describe("One sentence on whether the tool changes data. For a read-only tool, state the full triad: \"No data is created, modified, or deleted.\"")
|
|
892
|
+
}).describe("Per-tool justification of each MCP annotation value (one specific sentence per hint).");
|
|
893
|
+
/**
|
|
894
|
+
* Base copy fields, defined once and reused by both the submission form and per-locale
|
|
895
|
+
* translations so the constraints (tagline ≤ 30 chars) never drift. The translation generation
|
|
896
|
+
* path wraps these in {@link clampStringField} since the LLM tends to overshoot the limit.
|
|
897
|
+
*/
|
|
898
|
+
const chatgptTaglineSchema = z.string().max(30);
|
|
899
|
+
const chatgptDescriptionSchema = z.string();
|
|
349
900
|
const chatgptTranslationSchema = z.object({
|
|
350
|
-
locale:
|
|
351
|
-
tagline:
|
|
352
|
-
description:
|
|
901
|
+
locale: chatgptTranslationLocaleSchema,
|
|
902
|
+
tagline: chatgptTaglineSchema,
|
|
903
|
+
description: chatgptDescriptionSchema
|
|
353
904
|
}).describe("Locale-scoped override for tagline + description. English (US) is the default.");
|
|
905
|
+
chatgptTranslationSchema.extend({ tagline: clampStringField(chatgptTaglineSchema) });
|
|
354
906
|
/**
|
|
355
907
|
* Field order mirrors the ChatGPT (OpenAI) submission spreadsheet, grouped by section.
|
|
356
908
|
* When adding/removing/reordering fields, keep this in sync with the sheet.
|
|
@@ -359,8 +911,8 @@ const chatgptSubmissionFormDataSchema = z.object({
|
|
|
359
911
|
logoLight: z.string().describe("Logo icon for light mode. Square PNG, no borders or rounded corners (clients apply circular cropping)."),
|
|
360
912
|
logoDark: z.string().optional().describe("Optional dark-mode logo icon. Square PNG, same specs as the light icon. Leave empty if the light icon also works on dark backgrounds."),
|
|
361
913
|
appName: z.string().describe("The name users will see in ChatGPT and in the Apps Directory."),
|
|
362
|
-
tagline:
|
|
363
|
-
description:
|
|
914
|
+
tagline: chatgptTaglineSchema.describe("Plain-language phrase focused on function and user value, 30 chars max. Avoid generic superlatives like \"the best …\"."),
|
|
915
|
+
description: chatgptDescriptionSchema.describe("Clear, engaging description highlighting what the app does and why people will love it. Appears publicly on the directory page. End it by naming the product categories or intents the app does NOT cover, so ChatGPT learns when not to route to it (define exclusions by absent categories or wrong intents, never by naming other brands)."),
|
|
364
916
|
category: chatgptCategorySchema.describe("Category from the OpenAI taxonomy."),
|
|
365
917
|
developerName: z.string().describe("Developer name shown publicly on the app's directory page."),
|
|
366
918
|
companyUrl: z.url().describe("Your company's main website URL."),
|
|
@@ -372,12 +924,12 @@ const chatgptSubmissionFormDataSchema = z.object({
|
|
|
372
924
|
serverUrl: z.url().describe("URL of the MCP server."),
|
|
373
925
|
authentication: chatgptAuthenticationSchema.describe("OAuth 2.0 or No auth. OAuth configuration is auto-discovered from the MCP server's metadata."),
|
|
374
926
|
tools: z.array(toolDefinitionSchema).describe("List of tools exposed by the MCP server (auto-populated from the production server's manifest)."),
|
|
375
|
-
toolJustifications: z.array(chatgptToolJustificationSchema).describe("Per-tool justification of `readOnlyHint`, `openWorldHint`, and `destructiveHint` annotation values."),
|
|
376
|
-
testCases: z.array(positiveTestCaseSchema).describe("At least 5 positive test cases. Each: Scenario, User prompt, Tool triggered, Expected output.
|
|
377
|
-
negativeTestCases: z.array(negativeTestCaseSchema).describe("3 negative test cases
|
|
378
|
-
screenshots: z.array(screenshotEntrySchema).describe("In-app screenshots paired with the user prompt that produced them. Widget apps must show the widget UI; non-widget apps show the model response. Min 1, max
|
|
927
|
+
toolJustifications: z.array(chatgptToolJustificationSchema).describe("Per-tool justification of `readOnlyHint`, `openWorldHint`, and `destructiveHint` annotation values. One short, specific sentence per hint describing what the tool actually does."),
|
|
928
|
+
testCases: z.array(positiveTestCaseSchema).describe("At least 5 positive test cases. Each: Scenario, User prompt, Tool triggered, Expected output. Collectively cover the full capability across different flow stages (initial search or browse, market or locale handling, post-interaction detail, an action ChatGPT performs on the user's behalf, and a conversion or secondary tool) rather than five variations of the same first step."),
|
|
929
|
+
negativeTestCases: z.array(negativeTestCaseSchema).describe("3 negative test cases: prompts where the app should NOT trigger but the model might think it is relevant. These become production routing metadata that teaches ChatGPT when to stay silent, so pick tight near-misses: a product category the app does not carry, the right brand or domain but an intent the app does not serve, or a boundary with a sibling app."),
|
|
930
|
+
screenshots: z.array(screenshotEntrySchema).max(3).describe("In-app screenshots paired with the user prompt that produced them. Widget apps must show the widget UI; non-widget apps show the model response. Min 1, max 3 entries, all public. Images: 706px wide, 400–860px tall, PNG."),
|
|
379
931
|
translations: z.array(chatgptTranslationSchema).describe("Per-locale translation of tagline + description. English (US) is the default."),
|
|
380
|
-
allowedCountries: chatgptAllowedCountriesSchema.describe("
|
|
932
|
+
allowedCountries: chatgptAllowedCountriesSchema.describe("Availability: all supported countries, or an allow-list / block-list of specific ones (ISO alpha-2)."),
|
|
381
933
|
releaseNotes: z.string().describe("Publicly displayed on the app details page.")
|
|
382
934
|
});
|
|
383
935
|
chatgptSubmissionFormDataSchema.pick({
|
|
@@ -394,7 +946,7 @@ chatgptSubmissionFormDataSchema.pick({
|
|
|
394
946
|
testCases: true,
|
|
395
947
|
negativeTestCases: true,
|
|
396
948
|
toolJustifications: true
|
|
397
|
-
});
|
|
949
|
+
}).extend({ tagline: clampStringField(chatgptSubmissionFormDataSchema.shape.tagline) });
|
|
398
950
|
const claudeCategorySchema = z.enum([
|
|
399
951
|
"Business & Productivity",
|
|
400
952
|
"Communication",
|
|
@@ -406,7 +958,7 @@ const claudeCategorySchema = z.enum([
|
|
|
406
958
|
"Media & Entertainment",
|
|
407
959
|
"Commerce & Shopping"
|
|
408
960
|
]);
|
|
409
|
-
z.enum([
|
|
961
|
+
const claudeAuthenticationSchema = z.enum([
|
|
410
962
|
"No auth needed",
|
|
411
963
|
"OAuth 2.0",
|
|
412
964
|
"Custom URL"
|
|
@@ -414,28 +966,34 @@ z.enum([
|
|
|
414
966
|
const claudeMcpUrlTypeSchema = z.enum(["Universal URL", "Custom MCP URLs"]);
|
|
415
967
|
z.enum(["Static OAuth Client", "Dynamic OAuth Client (DCR / CIMD)"]);
|
|
416
968
|
const claudeReadWriteCapabilitiesSchema = z.enum([
|
|
417
|
-
"Read
|
|
418
|
-
"Write
|
|
419
|
-
"Read +
|
|
969
|
+
"Read Only",
|
|
970
|
+
"Write Only",
|
|
971
|
+
"Read + Write"
|
|
420
972
|
]);
|
|
421
973
|
const claudeTransportSchema = z.enum(["Streamable HTTP", "SSE"]);
|
|
974
|
+
const claudeTestedSurfaceSchema = z.enum([
|
|
975
|
+
"Claude.ai (web)",
|
|
976
|
+
"Claude Desktop",
|
|
977
|
+
"Claude Code",
|
|
978
|
+
"Cowork"
|
|
979
|
+
]);
|
|
422
980
|
const claudeThirdPartySchema = z.enum([
|
|
423
|
-
"Web access
|
|
424
|
-
"Third-party AI model integration",
|
|
425
|
-
"Third-party data retrieval (
|
|
426
|
-
"Third-party data modification (
|
|
981
|
+
"Web access: Fetches information from the open web (e.g., web scraping, search engines, or browsing arbitrary URLs, not just connecting to a specific API)",
|
|
982
|
+
"Third-party AI model integration: Sends data to or receives data from a generative AI model other than Claude",
|
|
983
|
+
"Third-party data retrieval: Connects to external services that themselves retrieve data from other sources (e.g., workflow automation platforms or other services that aggregate or relay data from multiple third-party sources)",
|
|
984
|
+
"Third-party data modification: Can connect to external services that themselves create, update, or delete data in other sources (e.g., workflow automation platforms or other services that write to multiple third-party sources)",
|
|
427
985
|
"N/A"
|
|
428
986
|
]);
|
|
429
987
|
const claudeDataHandlingSchema = z.enum([
|
|
430
988
|
"Server only accesses data explicitly requested by user",
|
|
431
989
|
"No data is stored beyond session requirements",
|
|
432
|
-
"Data transmission is encrypted (HTTPS
|
|
990
|
+
"Data transmission is encrypted (HTTPS/TLS)",
|
|
433
991
|
"GDPR compliant (if applicable)"
|
|
434
992
|
]);
|
|
435
993
|
const claudeSponsoredContentSchema = z.enum([
|
|
436
994
|
"No, there is no sponsored content or advertisements",
|
|
437
995
|
"Yes, there are banner ads or other paid visual elements",
|
|
438
|
-
"Yes, returned content or ranking is impacted by sponsorship or ad placement"
|
|
996
|
+
"Yes, the returned content or ranking of returned content is impacted by sponsorship or ad placement"
|
|
439
997
|
]);
|
|
440
998
|
/**
|
|
441
999
|
* Field order mirrors the Claude (Anthropic) submission spreadsheet, grouped by section.
|
|
@@ -500,7 +1058,7 @@ If 'Yes', you will also be required to provide screenshots of your UI (see Promo
|
|
|
500
1058
|
Note: These are attestations — you are legally agreeing to these practices by submitting the form.`),
|
|
501
1059
|
personalDataHealthAccess: z.boolean().describe(`Select 'Yes' ONLY if your connector gives users access to their own personal health information — such as medical records, lab results, diagnoses, prescriptions, wearable health metrics (heart rate, sleep data, etc.), or mental health data.
|
|
502
1060
|
Select 'No' for the vast majority of business/productivity/dev tools. When in doubt, select 'No'. This field triggers additional compliance review if 'Yes'.`),
|
|
503
|
-
|
|
1061
|
+
category: claudeCategorySchema.describe(`Select the category that best describes your connector. This determines where it appears in the directory's browse experience. Choose the most specific fit:
|
|
504
1062
|
• Business & Productivity — project management, CRM, HR, office tools
|
|
505
1063
|
• Communication — email, chat, messaging, notifications
|
|
506
1064
|
• Data & Analytics — dashboards, reporting, databases, BI tools
|
|
@@ -510,12 +1068,13 @@ Select 'No' for the vast majority of business/productivity/dev tools. When in do
|
|
|
510
1068
|
• Health & Life Sciences — clinical, pharma, medical professional tools
|
|
511
1069
|
• Media & Entertainment — content, publishing, streaming
|
|
512
1070
|
• Commerce & Shopping — e-commerce, inventory, orders
|
|
513
|
-
|
|
1071
|
+
Anthropic's submission form only accepts a single category.`),
|
|
514
1072
|
sponsoredContentsOrAdvertisement: claudeSponsoredContentSchema.describe(`Be honest here — advertising is not permitted in the Connectors Directory per Anthropic's policy. Select the option that accurately describes your server:
|
|
515
1073
|
• 'No, there is no sponsored content or advertisements' — the results your server returns are not influenced by paid placement or sponsorship. This is what almost all connectors should select.
|
|
516
1074
|
• 'Yes, there are banner ads or other paid visual elements' — your UI includes visual ads. NOTE: this will likely lead to rejection, as Anthropic prohibits advertising in Claude.
|
|
517
1075
|
• 'Yes, the returned content or ranking of returned content is impacted by sponsorship or ad placement' — paid results affect what you return. NOTE: this also likely leads to rejection.
|
|
518
1076
|
If your server returns organic results from a platform that has ads in its own UI (but your API results are not affected by ads), select 'No'.`),
|
|
1077
|
+
authentication: claudeAuthenticationSchema.describe("How users authenticate with the server. No auth / OAuth 2.0 / Custom URL (not supported)."),
|
|
519
1078
|
transportSupport: z.array(claudeTransportSchema).describe(`Select all transport protocols your server supports:
|
|
520
1079
|
• 'Streamable HTTP' — the modern, recommended transport. Anthropic strongly recommends implementing this. This is the future-proof option and should be your default.
|
|
521
1080
|
• 'SSE (Server-Sent Events)' — the older transport. SSE may be deprecated by Anthropic later in 2025/2026. If you currently only support SSE, you should plan to migrate to Streamable HTTP.
|
|
@@ -555,6 +1114,7 @@ Reviewers test every single tool you list here — don't list tools that don't w
|
|
|
555
1114
|
• 'I've specified user-friendly titles for all tools' — every tool has a 'title' annotation (a human-readable label, different from the tool name).
|
|
556
1115
|
• 'I've specified accurate tool annotations for all tools' — every tool has the correct annotation: readOnlyHint: true for read operations (search, get, list, fetch), OR destructiveHint: true for write operations (create, update, delete, send).
|
|
557
1116
|
This is the #1 reason submissions get rejected (30% of all rejections). Do not check these boxes without actually having implemented the annotations. See MCP spec for how to add them.`),
|
|
1117
|
+
testedSurfaces: z.array(claudeTestedSurfaceSchema).describe(`Confirm testing is complete and your server works as intended in these surfaces. Select every surface you've verified. Claude.ai (web) and Claude Desktop are the usual targets for remote MCP servers; Claude Code and Cowork compatibility is not required. Anthropic requires at least two surfaces.`),
|
|
558
1118
|
logoLight: z.string().describe(`Your connector's logo for light backgrounds. Requirements:
|
|
559
1119
|
• Format: SVG only
|
|
560
1120
|
• Aspect ratio: square (1:1)
|
|
@@ -581,14 +1141,20 @@ claudeSubmissionFormDataSchema.pick({
|
|
|
581
1141
|
isMcpApp: true,
|
|
582
1142
|
transportSupport: true,
|
|
583
1143
|
primaryContactEmail: true,
|
|
584
|
-
primaryContactName: true
|
|
1144
|
+
primaryContactName: true,
|
|
1145
|
+
authentication: true,
|
|
1146
|
+
personalDataHealthAccess: true,
|
|
1147
|
+
testedSurfaces: true
|
|
1148
|
+
}).extend({
|
|
1149
|
+
connectionRequirements: claudeSubmissionFormDataSchema.shape.connectionRequirements.optional(),
|
|
1150
|
+
testingCredentials: claudeSubmissionFormDataSchema.shape.testingCredentials.optional()
|
|
585
1151
|
});
|
|
586
1152
|
claudeSubmissionFormDataSchema.pick({
|
|
587
1153
|
tagline: true,
|
|
588
1154
|
description: true,
|
|
589
|
-
|
|
1155
|
+
category: true,
|
|
590
1156
|
testCases: true
|
|
591
|
-
});
|
|
1157
|
+
}).extend({ tagline: clampStringField(claudeSubmissionFormDataSchema.shape.tagline) });
|
|
592
1158
|
const submissionMetaFieldsSchema = z.object({
|
|
593
1159
|
id: z.string(),
|
|
594
1160
|
environmentId: z.string(),
|
|
@@ -767,7 +1333,7 @@ const createEnvironmentContractV1 = oc.route({
|
|
|
767
1333
|
id: z.string(),
|
|
768
1334
|
name: z.string(),
|
|
769
1335
|
sourceBranch: z.string().nullable().describe("The branch used to build the environment"),
|
|
770
|
-
urls: z.array(z.
|
|
1336
|
+
urls: z.array(z.url()).describe("The URLs of the MCP server"),
|
|
771
1337
|
createdAt: z.coerce.date(),
|
|
772
1338
|
projectId: z.string().describe("The ID of the project the environment belongs to")
|
|
773
1339
|
}));
|
|
@@ -843,6 +1409,9 @@ const listProjectsContractV1 = oc.route({
|
|
|
843
1409
|
description: "List all projects for a team",
|
|
844
1410
|
tags: ["projects"],
|
|
845
1411
|
successDescription: "The list of projects"
|
|
1412
|
+
}).errors({
|
|
1413
|
+
NOT_FOUND: {},
|
|
1414
|
+
BAD_REQUEST: {}
|
|
846
1415
|
}).input(z.object({ teamId: z.string().optional() }).optional()).output(z.array(projectOutputSchema));
|
|
847
1416
|
const createProjectContractV1 = oc.route({
|
|
848
1417
|
path: "/v1/projects",
|
|
@@ -938,7 +1507,10 @@ const deleteEnvironmentVariableContractV1 = oc.route({
|
|
|
938
1507
|
description: "Delete an environment variable by ID",
|
|
939
1508
|
tags: ["environments"],
|
|
940
1509
|
successDescription: "The environment variable has been deleted successfully"
|
|
941
|
-
}).errors({
|
|
1510
|
+
}).errors({
|
|
1511
|
+
NOT_FOUND: {},
|
|
1512
|
+
BAD_REQUEST: {}
|
|
1513
|
+
}).input(z.object({ environmentVariableId: z.string().describe("The ID of the environment variable") })).output(z.object({ success: z.literal(true) }));
|
|
942
1514
|
const deleteProjectContractV1 = oc.route({
|
|
943
1515
|
path: "/v1/projects/{projectId}",
|
|
944
1516
|
method: "DELETE",
|
|
@@ -983,6 +1555,9 @@ const uploadDeploymentArtifactContractV1 = oc.route({
|
|
|
983
1555
|
description: "Return a presigned S3 URL to upload a deployment artifact",
|
|
984
1556
|
tags: ["deployments"],
|
|
985
1557
|
successDescription: "The presigned upload URL has been generated successfully"
|
|
1558
|
+
}).errors({
|
|
1559
|
+
NOT_FOUND: {},
|
|
1560
|
+
BAD_REQUEST: {}
|
|
986
1561
|
}).input(z.object({ teamId: z.string().optional() }).optional()).output(z.object({
|
|
987
1562
|
uploadUrl: z.url().describe("Presigned S3 URL to upload the source archive with HTTP PUT"),
|
|
988
1563
|
token: z.string().describe("Token to identify the source archive"),
|
|
@@ -1156,7 +1731,7 @@ const getTunnelTicketContractV1 = oc.route({
|
|
|
1156
1731
|
description: "Get a signed ticket for establishing a tunnel connection. Requires user authentication (API keys are not supported).",
|
|
1157
1732
|
tags: ["tunnels"],
|
|
1158
1733
|
successDescription: "The tunnel ticket"
|
|
1159
|
-
}).output(z.object({
|
|
1734
|
+
}).errors({ FORBIDDEN: {} }).output(z.object({
|
|
1160
1735
|
subdomain: z.string().describe("The subdomain assigned to the user"),
|
|
1161
1736
|
ticket: z.string().describe("The signed tunnel ticket"),
|
|
1162
1737
|
tunnelHost: z.string().describe("The tunnel host to connect to")
|
|
@@ -1232,7 +1807,7 @@ const upsertPlaygroundContractV1 = oc.route({
|
|
|
1232
1807
|
name: z.string().min(1).max(100).optional(),
|
|
1233
1808
|
description: z.string().min(1).max(500).optional(),
|
|
1234
1809
|
headers: z.array(playgroundHeaderSchema).optional(),
|
|
1235
|
-
examplePrompts: z.array(playgroundExamplePromptSchema).max(
|
|
1810
|
+
examplePrompts: z.array(playgroundExamplePromptSchema).max(5).optional()
|
|
1236
1811
|
})).output(playgroundOutputSchema);
|
|
1237
1812
|
const createBeaconContractV1 = oc.route({
|
|
1238
1813
|
path: "/v1/beacon/audits",
|
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.g1d699ea",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -17,19 +17,19 @@
|
|
|
17
17
|
"author": "Alpic",
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@orpc/contract": "^1.14.
|
|
20
|
+
"@orpc/contract": "^1.14.4",
|
|
21
21
|
"ms": "^2.1.3",
|
|
22
22
|
"zod": "^4.4.3"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@orpc/openapi": "^1.14.
|
|
26
|
-
"@orpc/zod": "^1.14.
|
|
25
|
+
"@orpc/openapi": "^1.14.4",
|
|
26
|
+
"@orpc/zod": "^1.14.4",
|
|
27
27
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
28
28
|
"@types/ms": "^2.1.0",
|
|
29
29
|
"shx": "^0.4.0",
|
|
30
|
-
"tsdown": "^0.22.
|
|
30
|
+
"tsdown": "^0.22.1",
|
|
31
31
|
"typescript": "^6.0.3",
|
|
32
|
-
"vitest": "^4.1.
|
|
32
|
+
"vitest": "^4.1.8",
|
|
33
33
|
"@alpic-ai/domains": "0.0.0"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|