@alpic-ai/api 0.0.0-staging.g892455b → 0.0.0-staging.g8f6540a
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 +19 -14
- package/dist/index.mjs +100 -13
- package/package.json +1 -10
package/dist/index.d.mts
CHANGED
|
@@ -212,7 +212,7 @@ declare const contract: {
|
|
|
212
212
|
name: z.ZodString;
|
|
213
213
|
sourceBranch: z.ZodNullable<z.ZodString>;
|
|
214
214
|
mcpServerUrl: z.ZodString;
|
|
215
|
-
domains: z.ZodArray<z.
|
|
215
|
+
domains: z.ZodArray<z.ZodCustomStringFormat<"hostname">>;
|
|
216
216
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
217
217
|
projectId: z.ZodString;
|
|
218
218
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
@@ -831,6 +831,9 @@ declare const contract: {
|
|
|
831
831
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
832
832
|
NOT_FOUND: {};
|
|
833
833
|
BAD_REQUEST: {};
|
|
834
|
+
DNS_RESOLUTION_FAILED: {
|
|
835
|
+
status: number;
|
|
836
|
+
};
|
|
834
837
|
}>, Record<never, never>>;
|
|
835
838
|
};
|
|
836
839
|
get: {
|
|
@@ -935,7 +938,22 @@ declare const platformSchema: z.ZodEnum<{
|
|
|
935
938
|
type Platform = z.infer<typeof platformSchema>;
|
|
936
939
|
declare const PLATFORM_LABELS: Record<Platform, string>;
|
|
937
940
|
//#endregion
|
|
941
|
+
//#region ../domains/src/projects/schemas.d.ts
|
|
942
|
+
declare const runtimeSchema: z.ZodEnum<{
|
|
943
|
+
"python3.13": "python3.13";
|
|
944
|
+
"python3.14": "python3.14";
|
|
945
|
+
node22: "node22";
|
|
946
|
+
node24: "node24";
|
|
947
|
+
}>;
|
|
948
|
+
declare const transportSchema: z.ZodEnum<{
|
|
949
|
+
stdio: "stdio";
|
|
950
|
+
sse: "sse";
|
|
951
|
+
streamablehttp: "streamablehttp";
|
|
952
|
+
}>;
|
|
953
|
+
//#endregion
|
|
938
954
|
//#region src/schemas.d.ts
|
|
955
|
+
type Runtime = z.infer<typeof runtimeSchema>;
|
|
956
|
+
type Transport = z.infer<typeof transportSchema>;
|
|
939
957
|
declare const environmentVariableSchema: z.ZodObject<{
|
|
940
958
|
key: z.ZodString;
|
|
941
959
|
value: z.ZodString;
|
|
@@ -957,19 +975,6 @@ declare const buildSettingsSchema: z.ZodObject<{
|
|
|
957
975
|
buildOutputDir: z.ZodOptional<z.ZodString>;
|
|
958
976
|
startCommand: z.ZodOptional<z.ZodString>;
|
|
959
977
|
}, z.core.$strip>;
|
|
960
|
-
declare const runtimeSchema: z.ZodEnum<{
|
|
961
|
-
"python3.13": "python3.13";
|
|
962
|
-
"python3.14": "python3.14";
|
|
963
|
-
node22: "node22";
|
|
964
|
-
node24: "node24";
|
|
965
|
-
}>;
|
|
966
|
-
type Runtime = z.infer<typeof runtimeSchema>;
|
|
967
|
-
declare const transportSchema: z.ZodEnum<{
|
|
968
|
-
stdio: "stdio";
|
|
969
|
-
sse: "sse";
|
|
970
|
-
streamablehttp: "streamablehttp";
|
|
971
|
-
}>;
|
|
972
|
-
type Transport = z.infer<typeof transportSchema>;
|
|
973
978
|
declare const playgroundHeaderSchema: z.ZodObject<{
|
|
974
979
|
name: z.ZodString;
|
|
975
980
|
description: z.ZodString;
|
package/dist/index.mjs
CHANGED
|
@@ -92,6 +92,86 @@ z.object({
|
|
|
92
92
|
content: z.string(),
|
|
93
93
|
source: z.enum(["model", "user"])
|
|
94
94
|
});
|
|
95
|
+
const intentCategoryColorSchema = z.enum([
|
|
96
|
+
"red",
|
|
97
|
+
"orange",
|
|
98
|
+
"yellow",
|
|
99
|
+
"green",
|
|
100
|
+
"blue",
|
|
101
|
+
"purple",
|
|
102
|
+
"pink",
|
|
103
|
+
"gray"
|
|
104
|
+
]);
|
|
105
|
+
intentCategoryColorSchema.options;
|
|
106
|
+
const intentCategorySchema = z.object({
|
|
107
|
+
id: z.string(),
|
|
108
|
+
createdAt: z.coerce.date(),
|
|
109
|
+
environmentId: z.string(),
|
|
110
|
+
name: z.string(),
|
|
111
|
+
color: intentCategoryColorSchema
|
|
112
|
+
});
|
|
113
|
+
z.object({
|
|
114
|
+
id: z.string(),
|
|
115
|
+
name: z.string(),
|
|
116
|
+
color: intentCategoryColorSchema,
|
|
117
|
+
intentCount: z.number().int().nonnegative()
|
|
118
|
+
});
|
|
119
|
+
z.object({
|
|
120
|
+
id: z.string(),
|
|
121
|
+
createdAt: z.coerce.date(),
|
|
122
|
+
environmentId: z.string(),
|
|
123
|
+
toolName: z.string(),
|
|
124
|
+
message: z.string(),
|
|
125
|
+
categories: z.array(intentCategorySchema)
|
|
126
|
+
});
|
|
127
|
+
const signalCategorySchema = z.object({
|
|
128
|
+
id: z.string(),
|
|
129
|
+
name: z.string(),
|
|
130
|
+
color: intentCategoryColorSchema
|
|
131
|
+
});
|
|
132
|
+
z.discriminatedUnion("kind", [
|
|
133
|
+
z.object({
|
|
134
|
+
kind: z.literal("new"),
|
|
135
|
+
category: signalCategorySchema,
|
|
136
|
+
currentCount: z.number().int().nonnegative(),
|
|
137
|
+
currentShare: z.number()
|
|
138
|
+
}),
|
|
139
|
+
z.object({
|
|
140
|
+
kind: z.literal("resurging"),
|
|
141
|
+
category: signalCategorySchema,
|
|
142
|
+
currentCount: z.number().int().nonnegative(),
|
|
143
|
+
daysQuiet: z.number(),
|
|
144
|
+
currentShare: z.number()
|
|
145
|
+
}),
|
|
146
|
+
z.object({
|
|
147
|
+
kind: z.literal("spike"),
|
|
148
|
+
category: signalCategorySchema,
|
|
149
|
+
currentCount: z.number().int().nonnegative(),
|
|
150
|
+
previousCount: z.number().int().nonnegative(),
|
|
151
|
+
currentShare: z.number(),
|
|
152
|
+
previousShare: z.number(),
|
|
153
|
+
changeRatio: z.number()
|
|
154
|
+
}),
|
|
155
|
+
z.object({
|
|
156
|
+
kind: z.literal("declining"),
|
|
157
|
+
category: signalCategorySchema,
|
|
158
|
+
currentCount: z.number().int().nonnegative(),
|
|
159
|
+
previousCount: z.number().int().nonnegative(),
|
|
160
|
+
currentShare: z.number(),
|
|
161
|
+
previousShare: z.number(),
|
|
162
|
+
changeRatio: z.number()
|
|
163
|
+
})
|
|
164
|
+
]);
|
|
165
|
+
z.discriminatedUnion("kind", [z.object({
|
|
166
|
+
kind: z.literal("existing"),
|
|
167
|
+
categoryId: z.string(),
|
|
168
|
+
categoryName: z.string(),
|
|
169
|
+
intentIds: z.array(z.string())
|
|
170
|
+
}), z.object({
|
|
171
|
+
kind: z.literal("new"),
|
|
172
|
+
categoryName: z.string(),
|
|
173
|
+
intentIds: z.array(z.string())
|
|
174
|
+
})]);
|
|
95
175
|
z.object({
|
|
96
176
|
id: z.string(),
|
|
97
177
|
teamId: z.string(),
|
|
@@ -100,6 +180,23 @@ z.object({
|
|
|
100
180
|
createdAt: z.coerce.date(),
|
|
101
181
|
updatedAt: z.coerce.date()
|
|
102
182
|
});
|
|
183
|
+
z.enum([
|
|
184
|
+
"INFO",
|
|
185
|
+
"WARNING",
|
|
186
|
+
"DEBUG",
|
|
187
|
+
"ERROR"
|
|
188
|
+
]);
|
|
189
|
+
const runtimeSchema = z.enum([
|
|
190
|
+
"python3.13",
|
|
191
|
+
"python3.14",
|
|
192
|
+
"node22",
|
|
193
|
+
"node24"
|
|
194
|
+
]);
|
|
195
|
+
const transportSchema = z.enum([
|
|
196
|
+
"stdio",
|
|
197
|
+
"sse",
|
|
198
|
+
"streamablehttp"
|
|
199
|
+
]);
|
|
103
200
|
const toolDefinitionSchema = z.object({
|
|
104
201
|
name: z.string(),
|
|
105
202
|
title: z.string().optional().describe("Human-friendly name for the tool, used in the UI. If not provided, `name` will be used."),
|
|
@@ -464,17 +561,6 @@ const buildSettingsSchema = z.object({
|
|
|
464
561
|
buildOutputDir: z.string().optional(),
|
|
465
562
|
startCommand: z.string().optional()
|
|
466
563
|
});
|
|
467
|
-
const runtimeSchema = z.enum([
|
|
468
|
-
"python3.13",
|
|
469
|
-
"python3.14",
|
|
470
|
-
"node22",
|
|
471
|
-
"node24"
|
|
472
|
-
]);
|
|
473
|
-
const transportSchema = z.enum([
|
|
474
|
-
"stdio",
|
|
475
|
-
"sse",
|
|
476
|
-
"streamablehttp"
|
|
477
|
-
]);
|
|
478
564
|
const playgroundHeaderSchema = z.object({
|
|
479
565
|
name: z.string().min(1).max(100),
|
|
480
566
|
description: z.string().max(200),
|
|
@@ -577,7 +663,7 @@ const getEnvironmentContractV1 = oc.route({
|
|
|
577
663
|
name: z.string(),
|
|
578
664
|
sourceBranch: z.string().nullable(),
|
|
579
665
|
mcpServerUrl: z.string(),
|
|
580
|
-
domains: z.array(z.
|
|
666
|
+
domains: z.array(z.hostname()),
|
|
581
667
|
createdAt: z.coerce.date(),
|
|
582
668
|
projectId: z.string()
|
|
583
669
|
}));
|
|
@@ -1037,7 +1123,8 @@ const createBeaconContractV1 = oc.route({
|
|
|
1037
1123
|
successDescription: "The audit has been created"
|
|
1038
1124
|
}).errors({
|
|
1039
1125
|
NOT_FOUND: {},
|
|
1040
|
-
BAD_REQUEST: {}
|
|
1126
|
+
BAD_REQUEST: {},
|
|
1127
|
+
DNS_RESOLUTION_FAILED: { status: 400 }
|
|
1041
1128
|
}).input(z.object({
|
|
1042
1129
|
targetUrl: z.url().describe("The HTTPS URL of the MCP server to audit"),
|
|
1043
1130
|
teamId: z.string().optional().describe("The team ID to associate the audit with"),
|
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.g8f6540a",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -14,15 +14,6 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
|
-
"nx": {
|
|
18
|
-
"targets": {
|
|
19
|
-
"build": {
|
|
20
|
-
"dependsOn": [
|
|
21
|
-
"^build"
|
|
22
|
-
]
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
17
|
"author": "Alpic",
|
|
27
18
|
"license": "ISC",
|
|
28
19
|
"dependencies": {
|