@alpic-ai/api 1.116.0 → 1.117.0
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 +30 -171
- package/dist/index.mjs +76 -69
- package/package.json +16 -4
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>;
|
|
@@ -905,18 +905,18 @@ declare const contract: {
|
|
|
905
905
|
chatgpt: "chatgpt";
|
|
906
906
|
claudeai: "claudeai";
|
|
907
907
|
}>, z.ZodBoolean>;
|
|
908
|
-
widgetScreenshotKeys: z.
|
|
908
|
+
widgetScreenshotKeys: z.ZodObject<{
|
|
909
909
|
chatgpt: z.ZodOptional<z.ZodString>;
|
|
910
910
|
claudeai: z.ZodOptional<z.ZodString>;
|
|
911
|
-
}, z.core.$strip
|
|
912
|
-
widgetScreenshots: z.
|
|
911
|
+
}, z.core.$strip>;
|
|
912
|
+
widgetScreenshots: z.ZodObject<{
|
|
913
913
|
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
914
914
|
url: z.ZodString;
|
|
915
915
|
}, z.core.$strip>>;
|
|
916
916
|
claudeai: z.ZodOptional<z.ZodObject<{
|
|
917
917
|
url: z.ZodString;
|
|
918
918
|
}, z.core.$strip>>;
|
|
919
|
-
}, z.core.$strip
|
|
919
|
+
}, z.core.$strip>;
|
|
920
920
|
}, z.core.$strip>>;
|
|
921
921
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
922
922
|
NOT_FOUND: {};
|
|
@@ -927,6 +927,14 @@ declare const contract: {
|
|
|
927
927
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
928
928
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
|
929
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
|
|
930
938
|
//#region src/schemas.d.ts
|
|
931
939
|
declare const environmentVariableSchema: z.ZodObject<{
|
|
932
940
|
key: z.ZodString;
|
|
@@ -962,155 +970,6 @@ declare const transportSchema: z.ZodEnum<{
|
|
|
962
970
|
streamablehttp: "streamablehttp";
|
|
963
971
|
}>;
|
|
964
972
|
type Transport = z.infer<typeof transportSchema>;
|
|
965
|
-
declare const auditStatusSchema: z.ZodEnum<{
|
|
966
|
-
pending: "pending";
|
|
967
|
-
partial: "partial";
|
|
968
|
-
completed: "completed";
|
|
969
|
-
failed: "failed";
|
|
970
|
-
}>;
|
|
971
|
-
declare const platformSchema: z.ZodEnum<{
|
|
972
|
-
chatgpt: "chatgpt";
|
|
973
|
-
claudeai: "claudeai";
|
|
974
|
-
}>;
|
|
975
|
-
type Platform = z.infer<typeof platformSchema>;
|
|
976
|
-
declare const checkSeveritySchema: z.ZodEnum<{
|
|
977
|
-
error: "error";
|
|
978
|
-
warning: "warning";
|
|
979
|
-
info: "info";
|
|
980
|
-
}>;
|
|
981
|
-
type CheckSeverity = z.infer<typeof checkSeveritySchema>;
|
|
982
|
-
declare const checkCategorySchema: z.ZodEnum<{
|
|
983
|
-
connectivity: "connectivity";
|
|
984
|
-
"tool-metadata": "tool-metadata";
|
|
985
|
-
"resource-metadata": "resource-metadata";
|
|
986
|
-
performance: "performance";
|
|
987
|
-
e2e: "e2e";
|
|
988
|
-
}>;
|
|
989
|
-
type CheckCategory = z.infer<typeof checkCategorySchema>;
|
|
990
|
-
declare const checkScopeSchema: z.ZodEnum<{
|
|
991
|
-
server: "server";
|
|
992
|
-
view: "view";
|
|
993
|
-
}>;
|
|
994
|
-
type CheckScope = z.infer<typeof checkScopeSchema>;
|
|
995
|
-
declare const checkDetailSchema: z.ZodObject<{
|
|
996
|
-
label: z.ZodString;
|
|
997
|
-
value: z.ZodOptional<z.ZodString>;
|
|
998
|
-
}, z.core.$strip>;
|
|
999
|
-
type CheckDetail = z.infer<typeof checkDetailSchema>;
|
|
1000
|
-
declare const checkResultSchema: z.ZodObject<{
|
|
1001
|
-
checkId: z.ZodString;
|
|
1002
|
-
checkName: z.ZodString;
|
|
1003
|
-
description: z.ZodString;
|
|
1004
|
-
status: z.ZodEnum<{
|
|
1005
|
-
pending: "pending";
|
|
1006
|
-
pass: "pass";
|
|
1007
|
-
fail: "fail";
|
|
1008
|
-
skip: "skip";
|
|
1009
|
-
}>;
|
|
1010
|
-
message: z.ZodString;
|
|
1011
|
-
skipReason: z.ZodOptional<z.ZodString>;
|
|
1012
|
-
severity: z.ZodEnum<{
|
|
1013
|
-
error: "error";
|
|
1014
|
-
warning: "warning";
|
|
1015
|
-
info: "info";
|
|
1016
|
-
}>;
|
|
1017
|
-
category: z.ZodEnum<{
|
|
1018
|
-
connectivity: "connectivity";
|
|
1019
|
-
"tool-metadata": "tool-metadata";
|
|
1020
|
-
"resource-metadata": "resource-metadata";
|
|
1021
|
-
performance: "performance";
|
|
1022
|
-
e2e: "e2e";
|
|
1023
|
-
}>;
|
|
1024
|
-
scope: z.ZodEnum<{
|
|
1025
|
-
server: "server";
|
|
1026
|
-
view: "view";
|
|
1027
|
-
}>;
|
|
1028
|
-
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1029
|
-
chatgpt: "chatgpt";
|
|
1030
|
-
claudeai: "claudeai";
|
|
1031
|
-
}>>>>;
|
|
1032
|
-
durationMs: z.ZodNumber;
|
|
1033
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1034
|
-
label: z.ZodString;
|
|
1035
|
-
value: z.ZodOptional<z.ZodString>;
|
|
1036
|
-
}, z.core.$strip>>>;
|
|
1037
|
-
hint: z.ZodOptional<z.ZodObject<{
|
|
1038
|
-
text: z.ZodString;
|
|
1039
|
-
}, z.core.$strip>>;
|
|
1040
|
-
}, z.core.$strip>;
|
|
1041
|
-
type CheckResult = z.infer<typeof checkResultSchema>;
|
|
1042
|
-
declare const auditReportSchema: z.ZodObject<{
|
|
1043
|
-
schemaVersion: z.ZodString;
|
|
1044
|
-
auditId: z.ZodString;
|
|
1045
|
-
targetUrl: z.ZodString;
|
|
1046
|
-
startedAt: z.ZodString;
|
|
1047
|
-
completedAt: z.ZodString;
|
|
1048
|
-
durationMs: z.ZodNumber;
|
|
1049
|
-
results: z.ZodArray<z.ZodObject<{
|
|
1050
|
-
checkId: z.ZodString;
|
|
1051
|
-
checkName: z.ZodString;
|
|
1052
|
-
description: z.ZodString;
|
|
1053
|
-
status: z.ZodEnum<{
|
|
1054
|
-
pending: "pending";
|
|
1055
|
-
pass: "pass";
|
|
1056
|
-
fail: "fail";
|
|
1057
|
-
skip: "skip";
|
|
1058
|
-
}>;
|
|
1059
|
-
message: z.ZodString;
|
|
1060
|
-
skipReason: z.ZodOptional<z.ZodString>;
|
|
1061
|
-
severity: z.ZodEnum<{
|
|
1062
|
-
error: "error";
|
|
1063
|
-
warning: "warning";
|
|
1064
|
-
info: "info";
|
|
1065
|
-
}>;
|
|
1066
|
-
category: z.ZodEnum<{
|
|
1067
|
-
connectivity: "connectivity";
|
|
1068
|
-
"tool-metadata": "tool-metadata";
|
|
1069
|
-
"resource-metadata": "resource-metadata";
|
|
1070
|
-
performance: "performance";
|
|
1071
|
-
e2e: "e2e";
|
|
1072
|
-
}>;
|
|
1073
|
-
scope: z.ZodEnum<{
|
|
1074
|
-
server: "server";
|
|
1075
|
-
view: "view";
|
|
1076
|
-
}>;
|
|
1077
|
-
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1078
|
-
chatgpt: "chatgpt";
|
|
1079
|
-
claudeai: "claudeai";
|
|
1080
|
-
}>>>>;
|
|
1081
|
-
durationMs: z.ZodNumber;
|
|
1082
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1083
|
-
label: z.ZodString;
|
|
1084
|
-
value: z.ZodOptional<z.ZodString>;
|
|
1085
|
-
}, z.core.$strip>>>;
|
|
1086
|
-
hint: z.ZodOptional<z.ZodObject<{
|
|
1087
|
-
text: z.ZodString;
|
|
1088
|
-
}, z.core.$strip>>;
|
|
1089
|
-
}, z.core.$strip>>;
|
|
1090
|
-
requiresAuth: z.ZodBoolean;
|
|
1091
|
-
hasViewSupport: z.ZodBoolean;
|
|
1092
|
-
viewPlatforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1093
|
-
chatgpt: "chatgpt";
|
|
1094
|
-
claudeai: "claudeai";
|
|
1095
|
-
}>>>>;
|
|
1096
|
-
isReadyForPlatform: z.ZodRecord<z.ZodEnum<{
|
|
1097
|
-
chatgpt: "chatgpt";
|
|
1098
|
-
claudeai: "claudeai";
|
|
1099
|
-
}>, z.ZodBoolean>;
|
|
1100
|
-
widgetScreenshotKeys: z.ZodOptional<z.ZodObject<{
|
|
1101
|
-
chatgpt: z.ZodOptional<z.ZodString>;
|
|
1102
|
-
claudeai: z.ZodOptional<z.ZodString>;
|
|
1103
|
-
}, z.core.$strip>>;
|
|
1104
|
-
widgetScreenshots: z.ZodOptional<z.ZodObject<{
|
|
1105
|
-
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
1106
|
-
url: z.ZodString;
|
|
1107
|
-
}, z.core.$strip>>;
|
|
1108
|
-
claudeai: z.ZodOptional<z.ZodObject<{
|
|
1109
|
-
url: z.ZodString;
|
|
1110
|
-
}, z.core.$strip>>;
|
|
1111
|
-
}, z.core.$strip>>;
|
|
1112
|
-
}, z.core.$strip>;
|
|
1113
|
-
type AuditReport = z.infer<typeof auditReportSchema>;
|
|
1114
973
|
declare const playgroundHeaderSchema: z.ZodObject<{
|
|
1115
974
|
name: z.ZodString;
|
|
1116
975
|
description: z.ZodString;
|
|
@@ -1145,4 +1004,4 @@ declare const serverFieldsSchema: z.ZodObject<{
|
|
|
1145
1004
|
}, z.core.$strip>>>;
|
|
1146
1005
|
}, z.core.$strip>;
|
|
1147
1006
|
//#endregion
|
|
1148
|
-
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",
|
|
@@ -65,71 +137,6 @@ const transportSchema = z.enum([
|
|
|
65
137
|
"sse",
|
|
66
138
|
"streamablehttp"
|
|
67
139
|
]);
|
|
68
|
-
const auditStatusSchema = z.enum([
|
|
69
|
-
"pending",
|
|
70
|
-
"partial",
|
|
71
|
-
"completed",
|
|
72
|
-
"failed"
|
|
73
|
-
]);
|
|
74
|
-
const platformSchema = z.enum(["chatgpt", "claudeai"]);
|
|
75
|
-
const checkSeveritySchema = z.enum([
|
|
76
|
-
"error",
|
|
77
|
-
"warning",
|
|
78
|
-
"info"
|
|
79
|
-
]);
|
|
80
|
-
const checkCategorySchema = z.enum([
|
|
81
|
-
"connectivity",
|
|
82
|
-
"tool-metadata",
|
|
83
|
-
"resource-metadata",
|
|
84
|
-
"performance",
|
|
85
|
-
"e2e"
|
|
86
|
-
]);
|
|
87
|
-
const checkScopeSchema = z.enum(["server", "view"]);
|
|
88
|
-
const checkDetailSchema = z.object({
|
|
89
|
-
label: z.string(),
|
|
90
|
-
value: z.string().optional()
|
|
91
|
-
});
|
|
92
|
-
const checkResultSchema = z.object({
|
|
93
|
-
checkId: z.string(),
|
|
94
|
-
checkName: z.string(),
|
|
95
|
-
description: z.string(),
|
|
96
|
-
status: z.enum([
|
|
97
|
-
"pass",
|
|
98
|
-
"fail",
|
|
99
|
-
"skip",
|
|
100
|
-
"pending"
|
|
101
|
-
]),
|
|
102
|
-
message: z.string(),
|
|
103
|
-
skipReason: z.string().optional(),
|
|
104
|
-
severity: checkSeveritySchema,
|
|
105
|
-
category: checkCategorySchema,
|
|
106
|
-
scope: checkScopeSchema,
|
|
107
|
-
platforms: z.array(platformSchema).readonly().optional(),
|
|
108
|
-
durationMs: z.number(),
|
|
109
|
-
details: z.array(checkDetailSchema).optional(),
|
|
110
|
-
hint: z.object({ text: z.string() }).optional()
|
|
111
|
-
});
|
|
112
|
-
const auditReportSchema = z.object({
|
|
113
|
-
schemaVersion: z.string(),
|
|
114
|
-
auditId: z.string(),
|
|
115
|
-
targetUrl: z.string(),
|
|
116
|
-
startedAt: z.string(),
|
|
117
|
-
completedAt: z.string(),
|
|
118
|
-
durationMs: z.number(),
|
|
119
|
-
results: z.array(checkResultSchema),
|
|
120
|
-
requiresAuth: z.boolean(),
|
|
121
|
-
hasViewSupport: z.boolean(),
|
|
122
|
-
viewPlatforms: z.array(platformSchema).readonly().optional(),
|
|
123
|
-
isReadyForPlatform: z.record(platformSchema, z.boolean()),
|
|
124
|
-
widgetScreenshotKeys: z.object({
|
|
125
|
-
chatgpt: z.string().optional(),
|
|
126
|
-
claudeai: z.string().optional()
|
|
127
|
-
}).optional(),
|
|
128
|
-
widgetScreenshots: z.object({
|
|
129
|
-
chatgpt: z.object({ url: z.string() }).optional(),
|
|
130
|
-
claudeai: z.object({ url: z.string() }).optional()
|
|
131
|
-
}).optional()
|
|
132
|
-
});
|
|
133
140
|
const playgroundHeaderSchema = z.object({
|
|
134
141
|
name: z.string().min(1).max(100),
|
|
135
142
|
description: z.string().max(200),
|
|
@@ -694,7 +701,7 @@ const createBeaconContractV1 = oc.route({
|
|
|
694
701
|
NOT_FOUND: {},
|
|
695
702
|
BAD_REQUEST: {}
|
|
696
703
|
}).input(z.object({
|
|
697
|
-
targetUrl: z.
|
|
704
|
+
targetUrl: z.url().describe("The HTTPS URL of the MCP server to audit"),
|
|
698
705
|
teamId: z.string().optional().describe("The team ID to associate the audit with"),
|
|
699
706
|
projectId: z.string().optional().describe("The project ID to associate the audit with"),
|
|
700
707
|
excludeCategories: z.array(checkCategorySchema).optional().describe("Check categories to exclude from the audit")
|
|
@@ -712,7 +719,7 @@ const getBeaconContractV1 = oc.route({
|
|
|
712
719
|
status: auditStatusSchema,
|
|
713
720
|
durationMs: z.number().nullable(),
|
|
714
721
|
createdAt: z.coerce.date(),
|
|
715
|
-
report:
|
|
722
|
+
report: auditReportWithScreenshotsSchema.nullable()
|
|
716
723
|
}));
|
|
717
724
|
const contract = {
|
|
718
725
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
@@ -758,4 +765,4 @@ const contract = {
|
|
|
758
765
|
}
|
|
759
766
|
};
|
|
760
767
|
//#endregion
|
|
761
|
-
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": "1.
|
|
3
|
+
"version": "1.117.0",
|
|
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.
|
|
39
|
+
"tsdown": "^0.21.10",
|
|
29
40
|
"typescript": "^6.0.3",
|
|
30
|
-
"vitest": "^4.1.
|
|
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",
|