@alpic-ai/api 0.0.0-staging.f0f8b63 → 0.0.0-staging.f114602
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 +32 -167
- package/dist/index.mjs +78 -68
- package/package.json +17 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
1
2
|
import * as _$_orpc_contract0 from "@orpc/contract";
|
|
2
3
|
import { InferContractRouterInputs, InferContractRouterOutputs } from "@orpc/contract";
|
|
3
|
-
import { z } from "zod";
|
|
4
4
|
|
|
5
5
|
//#region src/api.contract.d.ts
|
|
6
6
|
type ApiContext = {
|
|
@@ -11,9 +11,9 @@ type ApiContext = {
|
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
13
|
declare const deploymentStatusSchema: z.ZodEnum<{
|
|
14
|
-
failed: "failed";
|
|
15
14
|
ongoing: "ongoing";
|
|
16
15
|
deployed: "deployed";
|
|
16
|
+
failed: "failed";
|
|
17
17
|
canceled: "canceled";
|
|
18
18
|
}>;
|
|
19
19
|
declare const createEnvironmentContractV1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -103,18 +103,18 @@ declare const contract: {
|
|
|
103
103
|
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
104
104
|
projectId: z.ZodString;
|
|
105
105
|
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
106
|
-
failed: "failed";
|
|
107
106
|
ongoing: "ongoing";
|
|
108
107
|
deployed: "deployed";
|
|
108
|
+
failed: "failed";
|
|
109
109
|
canceled: "canceled";
|
|
110
110
|
}>>>;
|
|
111
111
|
environmentId: z.ZodOptional<z.ZodString>;
|
|
112
112
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
113
113
|
id: z.ZodString;
|
|
114
114
|
status: z.ZodEnum<{
|
|
115
|
-
failed: "failed";
|
|
116
115
|
ongoing: "ongoing";
|
|
117
116
|
deployed: "deployed";
|
|
117
|
+
failed: "failed";
|
|
118
118
|
canceled: "canceled";
|
|
119
119
|
}>;
|
|
120
120
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -138,9 +138,9 @@ declare const contract: {
|
|
|
138
138
|
}, z.core.$strip>, z.ZodObject<{
|
|
139
139
|
id: z.ZodString;
|
|
140
140
|
status: z.ZodEnum<{
|
|
141
|
-
failed: "failed";
|
|
142
141
|
ongoing: "ongoing";
|
|
143
142
|
deployed: "deployed";
|
|
143
|
+
failed: "failed";
|
|
144
144
|
canceled: "canceled";
|
|
145
145
|
}>;
|
|
146
146
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -226,9 +226,9 @@ declare const contract: {
|
|
|
226
226
|
}, z.core.$strip>, z.ZodObject<{
|
|
227
227
|
id: z.ZodString;
|
|
228
228
|
status: z.ZodEnum<{
|
|
229
|
-
failed: "failed";
|
|
230
229
|
ongoing: "ongoing";
|
|
231
230
|
deployed: "deployed";
|
|
231
|
+
failed: "failed";
|
|
232
232
|
canceled: "canceled";
|
|
233
233
|
}>;
|
|
234
234
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -403,18 +403,18 @@ declare const contract: {
|
|
|
403
403
|
domains: z.ZodArray<z.ZodObject<{
|
|
404
404
|
domain: z.ZodString;
|
|
405
405
|
status: z.ZodEnum<{
|
|
406
|
-
failed: "failed";
|
|
407
406
|
ongoing: "ongoing";
|
|
408
407
|
deployed: "deployed";
|
|
408
|
+
failed: "failed";
|
|
409
409
|
}>;
|
|
410
410
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
411
411
|
}, z.core.$strip>>;
|
|
412
412
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
413
413
|
id: z.ZodString;
|
|
414
414
|
status: z.ZodEnum<{
|
|
415
|
-
failed: "failed";
|
|
416
415
|
ongoing: "ongoing";
|
|
417
416
|
deployed: "deployed";
|
|
417
|
+
failed: "failed";
|
|
418
418
|
canceled: "canceled";
|
|
419
419
|
}>;
|
|
420
420
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -432,9 +432,9 @@ declare const contract: {
|
|
|
432
432
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
433
433
|
id: z.ZodString;
|
|
434
434
|
status: z.ZodEnum<{
|
|
435
|
-
failed: "failed";
|
|
436
435
|
ongoing: "ongoing";
|
|
437
436
|
deployed: "deployed";
|
|
437
|
+
failed: "failed";
|
|
438
438
|
canceled: "canceled";
|
|
439
439
|
}>;
|
|
440
440
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -479,18 +479,18 @@ declare const contract: {
|
|
|
479
479
|
domains: z.ZodArray<z.ZodObject<{
|
|
480
480
|
domain: z.ZodString;
|
|
481
481
|
status: z.ZodEnum<{
|
|
482
|
-
failed: "failed";
|
|
483
482
|
ongoing: "ongoing";
|
|
484
483
|
deployed: "deployed";
|
|
484
|
+
failed: "failed";
|
|
485
485
|
}>;
|
|
486
486
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
487
487
|
}, z.core.$strip>>;
|
|
488
488
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
489
489
|
id: z.ZodString;
|
|
490
490
|
status: z.ZodEnum<{
|
|
491
|
-
failed: "failed";
|
|
492
491
|
ongoing: "ongoing";
|
|
493
492
|
deployed: "deployed";
|
|
493
|
+
failed: "failed";
|
|
494
494
|
canceled: "canceled";
|
|
495
495
|
}>;
|
|
496
496
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -508,9 +508,9 @@ declare const contract: {
|
|
|
508
508
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
509
509
|
id: z.ZodString;
|
|
510
510
|
status: z.ZodEnum<{
|
|
511
|
-
failed: "failed";
|
|
512
511
|
ongoing: "ongoing";
|
|
513
512
|
deployed: "deployed";
|
|
513
|
+
failed: "failed";
|
|
514
514
|
canceled: "canceled";
|
|
515
515
|
}>;
|
|
516
516
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -554,18 +554,18 @@ declare const contract: {
|
|
|
554
554
|
domains: z.ZodArray<z.ZodObject<{
|
|
555
555
|
domain: z.ZodString;
|
|
556
556
|
status: z.ZodEnum<{
|
|
557
|
-
failed: "failed";
|
|
558
557
|
ongoing: "ongoing";
|
|
559
558
|
deployed: "deployed";
|
|
559
|
+
failed: "failed";
|
|
560
560
|
}>;
|
|
561
561
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
562
562
|
}, z.core.$strip>>;
|
|
563
563
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
564
564
|
id: z.ZodString;
|
|
565
565
|
status: z.ZodEnum<{
|
|
566
|
-
failed: "failed";
|
|
567
566
|
ongoing: "ongoing";
|
|
568
567
|
deployed: "deployed";
|
|
568
|
+
failed: "failed";
|
|
569
569
|
canceled: "canceled";
|
|
570
570
|
}>;
|
|
571
571
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -583,9 +583,9 @@ declare const contract: {
|
|
|
583
583
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
584
584
|
id: z.ZodString;
|
|
585
585
|
status: z.ZodEnum<{
|
|
586
|
-
failed: "failed";
|
|
587
586
|
ongoing: "ongoing";
|
|
588
587
|
deployed: "deployed";
|
|
588
|
+
failed: "failed";
|
|
589
589
|
canceled: "canceled";
|
|
590
590
|
}>;
|
|
591
591
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -816,7 +816,7 @@ declare const contract: {
|
|
|
816
816
|
beacon: {
|
|
817
817
|
create: {
|
|
818
818
|
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
819
|
-
targetUrl: z.
|
|
819
|
+
targetUrl: z.ZodURL;
|
|
820
820
|
teamId: z.ZodOptional<z.ZodString>;
|
|
821
821
|
projectId: z.ZodOptional<z.ZodString>;
|
|
822
822
|
excludeCategories: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -840,10 +840,10 @@ declare const contract: {
|
|
|
840
840
|
id: z.ZodString;
|
|
841
841
|
targetUrl: z.ZodString;
|
|
842
842
|
status: z.ZodEnum<{
|
|
843
|
+
failed: "failed";
|
|
843
844
|
pending: "pending";
|
|
844
845
|
partial: "partial";
|
|
845
846
|
completed: "completed";
|
|
846
|
-
failed: "failed";
|
|
847
847
|
}>;
|
|
848
848
|
durationMs: z.ZodNullable<z.ZodNumber>;
|
|
849
849
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
@@ -856,6 +856,8 @@ declare const contract: {
|
|
|
856
856
|
durationMs: z.ZodNumber;
|
|
857
857
|
results: z.ZodArray<z.ZodObject<{
|
|
858
858
|
checkId: z.ZodString;
|
|
859
|
+
checkName: z.ZodString;
|
|
860
|
+
description: z.ZodString;
|
|
859
861
|
status: z.ZodEnum<{
|
|
860
862
|
pending: "pending";
|
|
861
863
|
pass: "pass";
|
|
@@ -903,18 +905,18 @@ declare const contract: {
|
|
|
903
905
|
chatgpt: "chatgpt";
|
|
904
906
|
claudeai: "claudeai";
|
|
905
907
|
}>, z.ZodBoolean>;
|
|
906
|
-
widgetScreenshotKeys: z.
|
|
908
|
+
widgetScreenshotKeys: z.ZodObject<{
|
|
907
909
|
chatgpt: z.ZodOptional<z.ZodString>;
|
|
908
910
|
claudeai: z.ZodOptional<z.ZodString>;
|
|
909
|
-
}, z.core.$strip
|
|
910
|
-
widgetScreenshots: z.
|
|
911
|
+
}, z.core.$strip>;
|
|
912
|
+
widgetScreenshots: z.ZodObject<{
|
|
911
913
|
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
912
914
|
url: z.ZodString;
|
|
913
915
|
}, z.core.$strip>>;
|
|
914
916
|
claudeai: z.ZodOptional<z.ZodObject<{
|
|
915
917
|
url: z.ZodString;
|
|
916
918
|
}, z.core.$strip>>;
|
|
917
|
-
}, z.core.$strip
|
|
919
|
+
}, z.core.$strip>;
|
|
918
920
|
}, z.core.$strip>>;
|
|
919
921
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
920
922
|
NOT_FOUND: {};
|
|
@@ -925,6 +927,14 @@ declare const contract: {
|
|
|
925
927
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
926
928
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
|
927
929
|
//#endregion
|
|
930
|
+
//#region ../domains/src/beacon/schemas.d.ts
|
|
931
|
+
declare const platformSchema: z.ZodEnum<{
|
|
932
|
+
chatgpt: "chatgpt";
|
|
933
|
+
claudeai: "claudeai";
|
|
934
|
+
}>;
|
|
935
|
+
type Platform = z.infer<typeof platformSchema>;
|
|
936
|
+
declare const PLATFORM_LABELS: Record<Platform, string>;
|
|
937
|
+
//#endregion
|
|
928
938
|
//#region src/schemas.d.ts
|
|
929
939
|
declare const environmentVariableSchema: z.ZodObject<{
|
|
930
940
|
key: z.ZodString;
|
|
@@ -960,151 +970,6 @@ declare const transportSchema: z.ZodEnum<{
|
|
|
960
970
|
streamablehttp: "streamablehttp";
|
|
961
971
|
}>;
|
|
962
972
|
type Transport = z.infer<typeof transportSchema>;
|
|
963
|
-
declare const auditStatusSchema: z.ZodEnum<{
|
|
964
|
-
pending: "pending";
|
|
965
|
-
partial: "partial";
|
|
966
|
-
completed: "completed";
|
|
967
|
-
failed: "failed";
|
|
968
|
-
}>;
|
|
969
|
-
declare const platformSchema: z.ZodEnum<{
|
|
970
|
-
chatgpt: "chatgpt";
|
|
971
|
-
claudeai: "claudeai";
|
|
972
|
-
}>;
|
|
973
|
-
type Platform = z.infer<typeof platformSchema>;
|
|
974
|
-
declare const checkSeveritySchema: z.ZodEnum<{
|
|
975
|
-
error: "error";
|
|
976
|
-
warning: "warning";
|
|
977
|
-
info: "info";
|
|
978
|
-
}>;
|
|
979
|
-
type CheckSeverity = z.infer<typeof checkSeveritySchema>;
|
|
980
|
-
declare const checkCategorySchema: z.ZodEnum<{
|
|
981
|
-
connectivity: "connectivity";
|
|
982
|
-
"tool-metadata": "tool-metadata";
|
|
983
|
-
"resource-metadata": "resource-metadata";
|
|
984
|
-
performance: "performance";
|
|
985
|
-
e2e: "e2e";
|
|
986
|
-
}>;
|
|
987
|
-
type CheckCategory = z.infer<typeof checkCategorySchema>;
|
|
988
|
-
declare const checkScopeSchema: z.ZodEnum<{
|
|
989
|
-
server: "server";
|
|
990
|
-
view: "view";
|
|
991
|
-
}>;
|
|
992
|
-
type CheckScope = z.infer<typeof checkScopeSchema>;
|
|
993
|
-
declare const checkDetailSchema: z.ZodObject<{
|
|
994
|
-
label: z.ZodString;
|
|
995
|
-
value: z.ZodOptional<z.ZodString>;
|
|
996
|
-
}, z.core.$strip>;
|
|
997
|
-
type CheckDetail = z.infer<typeof checkDetailSchema>;
|
|
998
|
-
declare const checkResultSchema: z.ZodObject<{
|
|
999
|
-
checkId: z.ZodString;
|
|
1000
|
-
status: z.ZodEnum<{
|
|
1001
|
-
pending: "pending";
|
|
1002
|
-
pass: "pass";
|
|
1003
|
-
fail: "fail";
|
|
1004
|
-
skip: "skip";
|
|
1005
|
-
}>;
|
|
1006
|
-
message: z.ZodString;
|
|
1007
|
-
skipReason: z.ZodOptional<z.ZodString>;
|
|
1008
|
-
severity: z.ZodEnum<{
|
|
1009
|
-
error: "error";
|
|
1010
|
-
warning: "warning";
|
|
1011
|
-
info: "info";
|
|
1012
|
-
}>;
|
|
1013
|
-
category: z.ZodEnum<{
|
|
1014
|
-
connectivity: "connectivity";
|
|
1015
|
-
"tool-metadata": "tool-metadata";
|
|
1016
|
-
"resource-metadata": "resource-metadata";
|
|
1017
|
-
performance: "performance";
|
|
1018
|
-
e2e: "e2e";
|
|
1019
|
-
}>;
|
|
1020
|
-
scope: z.ZodEnum<{
|
|
1021
|
-
server: "server";
|
|
1022
|
-
view: "view";
|
|
1023
|
-
}>;
|
|
1024
|
-
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1025
|
-
chatgpt: "chatgpt";
|
|
1026
|
-
claudeai: "claudeai";
|
|
1027
|
-
}>>>>;
|
|
1028
|
-
durationMs: z.ZodNumber;
|
|
1029
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1030
|
-
label: z.ZodString;
|
|
1031
|
-
value: z.ZodOptional<z.ZodString>;
|
|
1032
|
-
}, z.core.$strip>>>;
|
|
1033
|
-
hint: z.ZodOptional<z.ZodObject<{
|
|
1034
|
-
text: z.ZodString;
|
|
1035
|
-
}, z.core.$strip>>;
|
|
1036
|
-
}, z.core.$strip>;
|
|
1037
|
-
type CheckResult = z.infer<typeof checkResultSchema>;
|
|
1038
|
-
declare const auditReportSchema: z.ZodObject<{
|
|
1039
|
-
schemaVersion: z.ZodString;
|
|
1040
|
-
auditId: z.ZodString;
|
|
1041
|
-
targetUrl: z.ZodString;
|
|
1042
|
-
startedAt: z.ZodString;
|
|
1043
|
-
completedAt: z.ZodString;
|
|
1044
|
-
durationMs: z.ZodNumber;
|
|
1045
|
-
results: z.ZodArray<z.ZodObject<{
|
|
1046
|
-
checkId: z.ZodString;
|
|
1047
|
-
status: z.ZodEnum<{
|
|
1048
|
-
pending: "pending";
|
|
1049
|
-
pass: "pass";
|
|
1050
|
-
fail: "fail";
|
|
1051
|
-
skip: "skip";
|
|
1052
|
-
}>;
|
|
1053
|
-
message: z.ZodString;
|
|
1054
|
-
skipReason: z.ZodOptional<z.ZodString>;
|
|
1055
|
-
severity: z.ZodEnum<{
|
|
1056
|
-
error: "error";
|
|
1057
|
-
warning: "warning";
|
|
1058
|
-
info: "info";
|
|
1059
|
-
}>;
|
|
1060
|
-
category: z.ZodEnum<{
|
|
1061
|
-
connectivity: "connectivity";
|
|
1062
|
-
"tool-metadata": "tool-metadata";
|
|
1063
|
-
"resource-metadata": "resource-metadata";
|
|
1064
|
-
performance: "performance";
|
|
1065
|
-
e2e: "e2e";
|
|
1066
|
-
}>;
|
|
1067
|
-
scope: z.ZodEnum<{
|
|
1068
|
-
server: "server";
|
|
1069
|
-
view: "view";
|
|
1070
|
-
}>;
|
|
1071
|
-
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1072
|
-
chatgpt: "chatgpt";
|
|
1073
|
-
claudeai: "claudeai";
|
|
1074
|
-
}>>>>;
|
|
1075
|
-
durationMs: z.ZodNumber;
|
|
1076
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1077
|
-
label: z.ZodString;
|
|
1078
|
-
value: z.ZodOptional<z.ZodString>;
|
|
1079
|
-
}, z.core.$strip>>>;
|
|
1080
|
-
hint: z.ZodOptional<z.ZodObject<{
|
|
1081
|
-
text: z.ZodString;
|
|
1082
|
-
}, z.core.$strip>>;
|
|
1083
|
-
}, z.core.$strip>>;
|
|
1084
|
-
requiresAuth: z.ZodBoolean;
|
|
1085
|
-
hasViewSupport: z.ZodBoolean;
|
|
1086
|
-
viewPlatforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1087
|
-
chatgpt: "chatgpt";
|
|
1088
|
-
claudeai: "claudeai";
|
|
1089
|
-
}>>>>;
|
|
1090
|
-
isReadyForPlatform: z.ZodRecord<z.ZodEnum<{
|
|
1091
|
-
chatgpt: "chatgpt";
|
|
1092
|
-
claudeai: "claudeai";
|
|
1093
|
-
}>, z.ZodBoolean>;
|
|
1094
|
-
widgetScreenshotKeys: z.ZodOptional<z.ZodObject<{
|
|
1095
|
-
chatgpt: z.ZodOptional<z.ZodString>;
|
|
1096
|
-
claudeai: z.ZodOptional<z.ZodString>;
|
|
1097
|
-
}, z.core.$strip>>;
|
|
1098
|
-
widgetScreenshots: z.ZodOptional<z.ZodObject<{
|
|
1099
|
-
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
1100
|
-
url: z.ZodString;
|
|
1101
|
-
}, z.core.$strip>>;
|
|
1102
|
-
claudeai: z.ZodOptional<z.ZodObject<{
|
|
1103
|
-
url: z.ZodString;
|
|
1104
|
-
}, z.core.$strip>>;
|
|
1105
|
-
}, z.core.$strip>>;
|
|
1106
|
-
}, z.core.$strip>;
|
|
1107
|
-
type AuditReport = z.infer<typeof auditReportSchema>;
|
|
1108
973
|
declare const playgroundHeaderSchema: z.ZodObject<{
|
|
1109
974
|
name: z.ZodString;
|
|
1110
975
|
description: z.ZodString;
|
|
@@ -1139,4 +1004,4 @@ declare const serverFieldsSchema: z.ZodObject<{
|
|
|
1139
1004
|
}, z.core.$strip>>>;
|
|
1140
1005
|
}, z.core.$strip>;
|
|
1141
1006
|
//#endregion
|
|
1142
|
-
export { ApiContext,
|
|
1007
|
+
export { ApiContext, PLATFORM_LABELS, type Platform, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,78 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
1
2
|
import { oc } from "@orpc/contract";
|
|
2
3
|
import ms from "ms";
|
|
3
|
-
|
|
4
|
+
//#region ../domains/dist/index.mjs
|
|
5
|
+
const auditStatusSchema = z.enum([
|
|
6
|
+
"pending",
|
|
7
|
+
"partial",
|
|
8
|
+
"completed",
|
|
9
|
+
"failed"
|
|
10
|
+
]);
|
|
11
|
+
const platformSchema = z.enum(["chatgpt", "claudeai"]);
|
|
12
|
+
const PLATFORM_LABELS = {
|
|
13
|
+
chatgpt: "ChatGPT",
|
|
14
|
+
claudeai: "Claude.ai"
|
|
15
|
+
};
|
|
16
|
+
const checkSeveritySchema = z.enum([
|
|
17
|
+
"error",
|
|
18
|
+
"warning",
|
|
19
|
+
"info"
|
|
20
|
+
]);
|
|
21
|
+
const checkCategorySchema = z.enum([
|
|
22
|
+
"connectivity",
|
|
23
|
+
"tool-metadata",
|
|
24
|
+
"resource-metadata",
|
|
25
|
+
"performance",
|
|
26
|
+
"e2e"
|
|
27
|
+
]);
|
|
28
|
+
const checkScopeSchema = z.enum(["server", "view"]);
|
|
29
|
+
const checkDetailSchema = z.object({
|
|
30
|
+
label: z.string(),
|
|
31
|
+
value: z.string().optional()
|
|
32
|
+
});
|
|
33
|
+
const checkResultSchema = z.object({
|
|
34
|
+
checkId: z.string(),
|
|
35
|
+
checkName: z.string(),
|
|
36
|
+
description: z.string(),
|
|
37
|
+
status: z.enum([
|
|
38
|
+
"pass",
|
|
39
|
+
"fail",
|
|
40
|
+
"skip",
|
|
41
|
+
"pending"
|
|
42
|
+
]),
|
|
43
|
+
message: z.string(),
|
|
44
|
+
skipReason: z.string().optional(),
|
|
45
|
+
severity: checkSeveritySchema,
|
|
46
|
+
category: checkCategorySchema,
|
|
47
|
+
scope: checkScopeSchema,
|
|
48
|
+
platforms: z.array(platformSchema).readonly().optional(),
|
|
49
|
+
durationMs: z.number(),
|
|
50
|
+
details: z.array(checkDetailSchema).optional(),
|
|
51
|
+
hint: z.object({ text: z.string() }).optional()
|
|
52
|
+
});
|
|
53
|
+
const auditReportSchema = z.object({
|
|
54
|
+
schemaVersion: z.string(),
|
|
55
|
+
auditId: z.string(),
|
|
56
|
+
targetUrl: z.string(),
|
|
57
|
+
startedAt: z.string(),
|
|
58
|
+
completedAt: z.string(),
|
|
59
|
+
durationMs: z.number(),
|
|
60
|
+
results: z.array(checkResultSchema),
|
|
61
|
+
requiresAuth: z.boolean(),
|
|
62
|
+
hasViewSupport: z.boolean(),
|
|
63
|
+
viewPlatforms: z.array(platformSchema).readonly().optional(),
|
|
64
|
+
isReadyForPlatform: z.record(platformSchema, z.boolean()),
|
|
65
|
+
widgetScreenshotKeys: z.object({
|
|
66
|
+
chatgpt: z.string().optional(),
|
|
67
|
+
claudeai: z.string().optional()
|
|
68
|
+
})
|
|
69
|
+
});
|
|
70
|
+
const widgetScreenshotSchema = z.object({ url: z.string() });
|
|
71
|
+
const auditReportWithScreenshotsSchema = auditReportSchema.extend({ widgetScreenshots: z.object({
|
|
72
|
+
chatgpt: widgetScreenshotSchema.optional(),
|
|
73
|
+
claudeai: widgetScreenshotSchema.optional()
|
|
74
|
+
}) });
|
|
75
|
+
//#endregion
|
|
4
76
|
//#region src/schemas.ts
|
|
5
77
|
const RESERVED_KEYS = [
|
|
6
78
|
"_HANDLER",
|
|
@@ -35,7 +107,8 @@ const RESERVED_KEYS = [
|
|
|
35
107
|
"BUILD_ARG_BUILD_OUTPUT_DIR",
|
|
36
108
|
"BUILD_ARG_START_COMMAND",
|
|
37
109
|
"ALPIC_HOST",
|
|
38
|
-
"ALPIC_CUSTOM_DOMAINS"
|
|
110
|
+
"ALPIC_CUSTOM_DOMAINS",
|
|
111
|
+
"ALPIC_PROMPT_META_KEY"
|
|
39
112
|
];
|
|
40
113
|
const environmentVariableSchema = z.object({
|
|
41
114
|
key: z.string().min(2, "Key must be at least 2 characters").regex(/^[a-zA-Z]([a-zA-Z0-9_])+$/, "Key must start with a letter and contain only letters, numbers, and underscores").refine((key) => !RESERVED_KEYS.includes(key), "This key is reserved and cannot be used as an environment variable key"),
|
|
@@ -64,69 +137,6 @@ const transportSchema = z.enum([
|
|
|
64
137
|
"sse",
|
|
65
138
|
"streamablehttp"
|
|
66
139
|
]);
|
|
67
|
-
const auditStatusSchema = z.enum([
|
|
68
|
-
"pending",
|
|
69
|
-
"partial",
|
|
70
|
-
"completed",
|
|
71
|
-
"failed"
|
|
72
|
-
]);
|
|
73
|
-
const platformSchema = z.enum(["chatgpt", "claudeai"]);
|
|
74
|
-
const checkSeveritySchema = z.enum([
|
|
75
|
-
"error",
|
|
76
|
-
"warning",
|
|
77
|
-
"info"
|
|
78
|
-
]);
|
|
79
|
-
const checkCategorySchema = z.enum([
|
|
80
|
-
"connectivity",
|
|
81
|
-
"tool-metadata",
|
|
82
|
-
"resource-metadata",
|
|
83
|
-
"performance",
|
|
84
|
-
"e2e"
|
|
85
|
-
]);
|
|
86
|
-
const checkScopeSchema = z.enum(["server", "view"]);
|
|
87
|
-
const checkDetailSchema = z.object({
|
|
88
|
-
label: z.string(),
|
|
89
|
-
value: z.string().optional()
|
|
90
|
-
});
|
|
91
|
-
const checkResultSchema = z.object({
|
|
92
|
-
checkId: z.string(),
|
|
93
|
-
status: z.enum([
|
|
94
|
-
"pass",
|
|
95
|
-
"fail",
|
|
96
|
-
"skip",
|
|
97
|
-
"pending"
|
|
98
|
-
]),
|
|
99
|
-
message: z.string(),
|
|
100
|
-
skipReason: z.string().optional(),
|
|
101
|
-
severity: checkSeveritySchema,
|
|
102
|
-
category: checkCategorySchema,
|
|
103
|
-
scope: checkScopeSchema,
|
|
104
|
-
platforms: z.array(platformSchema).readonly().optional(),
|
|
105
|
-
durationMs: z.number(),
|
|
106
|
-
details: z.array(checkDetailSchema).optional(),
|
|
107
|
-
hint: z.object({ text: z.string() }).optional()
|
|
108
|
-
});
|
|
109
|
-
const auditReportSchema = z.object({
|
|
110
|
-
schemaVersion: z.string(),
|
|
111
|
-
auditId: z.string(),
|
|
112
|
-
targetUrl: z.string(),
|
|
113
|
-
startedAt: z.string(),
|
|
114
|
-
completedAt: z.string(),
|
|
115
|
-
durationMs: z.number(),
|
|
116
|
-
results: z.array(checkResultSchema),
|
|
117
|
-
requiresAuth: z.boolean(),
|
|
118
|
-
hasViewSupport: z.boolean(),
|
|
119
|
-
viewPlatforms: z.array(platformSchema).readonly().optional(),
|
|
120
|
-
isReadyForPlatform: z.record(platformSchema, z.boolean()),
|
|
121
|
-
widgetScreenshotKeys: z.object({
|
|
122
|
-
chatgpt: z.string().optional(),
|
|
123
|
-
claudeai: z.string().optional()
|
|
124
|
-
}).optional(),
|
|
125
|
-
widgetScreenshots: z.object({
|
|
126
|
-
chatgpt: z.object({ url: z.string() }).optional(),
|
|
127
|
-
claudeai: z.object({ url: z.string() }).optional()
|
|
128
|
-
}).optional()
|
|
129
|
-
});
|
|
130
140
|
const playgroundHeaderSchema = z.object({
|
|
131
141
|
name: z.string().min(1).max(100),
|
|
132
142
|
description: z.string().max(200),
|
|
@@ -691,7 +701,7 @@ const createBeaconContractV1 = oc.route({
|
|
|
691
701
|
NOT_FOUND: {},
|
|
692
702
|
BAD_REQUEST: {}
|
|
693
703
|
}).input(z.object({
|
|
694
|
-
targetUrl: z.
|
|
704
|
+
targetUrl: z.url().describe("The HTTPS URL of the MCP server to audit"),
|
|
695
705
|
teamId: z.string().optional().describe("The team ID to associate the audit with"),
|
|
696
706
|
projectId: z.string().optional().describe("The project ID to associate the audit with"),
|
|
697
707
|
excludeCategories: z.array(checkCategorySchema).optional().describe("Check categories to exclude from the audit")
|
|
@@ -709,7 +719,7 @@ const getBeaconContractV1 = oc.route({
|
|
|
709
719
|
status: auditStatusSchema,
|
|
710
720
|
durationMs: z.number().nullable(),
|
|
711
721
|
createdAt: z.coerce.date(),
|
|
712
|
-
report:
|
|
722
|
+
report: auditReportWithScreenshotsSchema.nullable()
|
|
713
723
|
}));
|
|
714
724
|
const contract = {
|
|
715
725
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
@@ -755,4 +765,4 @@ const contract = {
|
|
|
755
765
|
}
|
|
756
766
|
};
|
|
757
767
|
//#endregion
|
|
758
|
-
export {
|
|
768
|
+
export { PLATFORM_LABELS, buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
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.f114602",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -14,20 +14,32 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
|
+
"nx": {
|
|
18
|
+
"targets": {
|
|
19
|
+
"build": {
|
|
20
|
+
"dependsOn": [
|
|
21
|
+
"^build"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
17
26
|
"author": "Alpic",
|
|
18
27
|
"license": "ISC",
|
|
19
28
|
"dependencies": {
|
|
20
|
-
"@orpc/contract": "^1.
|
|
29
|
+
"@orpc/contract": "^1.14.0",
|
|
21
30
|
"ms": "^2.1.3",
|
|
22
31
|
"zod": "^4.3.6"
|
|
23
32
|
},
|
|
24
33
|
"devDependencies": {
|
|
34
|
+
"@orpc/openapi": "^1.14.0",
|
|
35
|
+
"@orpc/zod": "^1.14.0",
|
|
25
36
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
26
37
|
"@types/ms": "^2.1.0",
|
|
27
38
|
"shx": "^0.4.0",
|
|
28
|
-
"tsdown": "^0.21.
|
|
29
|
-
"typescript": "^6.0.
|
|
30
|
-
"vitest": "^4.1.
|
|
39
|
+
"tsdown": "^0.21.10",
|
|
40
|
+
"typescript": "^6.0.3",
|
|
41
|
+
"vitest": "^4.1.5",
|
|
42
|
+
"@alpic-ai/domains": "0.0.0"
|
|
31
43
|
},
|
|
32
44
|
"scripts": {
|
|
33
45
|
"build": "shx rm -rf dist && tsdown",
|