@alpic-ai/api 1.93.6 → 1.93.7
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 +10 -1
- package/dist/index.mjs +18 -8
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -7,6 +7,7 @@ type ApiContext = {
|
|
|
7
7
|
request: Request & {
|
|
8
8
|
teamIds: string[];
|
|
9
9
|
defaultTeamId: string | undefined;
|
|
10
|
+
awsCognitoUserSub: string | undefined;
|
|
10
11
|
};
|
|
11
12
|
};
|
|
12
13
|
declare const createEnvironmentContractV1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -37,7 +38,6 @@ declare const contract: {
|
|
|
37
38
|
name: z.ZodString;
|
|
38
39
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
39
40
|
hasStripeAccount: z.ZodBoolean;
|
|
40
|
-
hasActiveSubscription: z.ZodBoolean;
|
|
41
41
|
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
42
42
|
};
|
|
43
43
|
};
|
|
@@ -528,6 +528,15 @@ declare const contract: {
|
|
|
528
528
|
}>, Record<never, never>>;
|
|
529
529
|
};
|
|
530
530
|
};
|
|
531
|
+
tunnels: {
|
|
532
|
+
getTicket: {
|
|
533
|
+
v1: _orpc_contract0.ContractProcedureBuilderWithOutput<_orpc_contract0.Schema<unknown, unknown>, z.ZodObject<{
|
|
534
|
+
subdomain: z.ZodString;
|
|
535
|
+
ticket: z.ZodString;
|
|
536
|
+
tunnelHost: z.ZodString;
|
|
537
|
+
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
538
|
+
};
|
|
539
|
+
};
|
|
531
540
|
};
|
|
532
541
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
533
542
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { oc } from "@orpc/contract";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
|
|
4
3
|
//#region src/schemas.ts
|
|
5
4
|
const RESERVED_KEYS = [
|
|
6
5
|
"_HANDLER",
|
|
@@ -34,7 +33,8 @@ const RESERVED_KEYS = [
|
|
|
34
33
|
"BUILD_ARG_BUILD_COMMAND",
|
|
35
34
|
"BUILD_ARG_BUILD_OUTPUT_DIR",
|
|
36
35
|
"BUILD_ARG_START_COMMAND",
|
|
37
|
-
"ALPIC_HOST"
|
|
36
|
+
"ALPIC_HOST",
|
|
37
|
+
"ALPIC_CUSTOM_DOMAINS"
|
|
38
38
|
];
|
|
39
39
|
const environmentVariableSchema = z.object({
|
|
40
40
|
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"),
|
|
@@ -59,7 +59,6 @@ const transportSchema = z.enum([
|
|
|
59
59
|
"sse",
|
|
60
60
|
"streamablehttp"
|
|
61
61
|
]);
|
|
62
|
-
|
|
63
62
|
//#endregion
|
|
64
63
|
//#region src/api.contract.ts
|
|
65
64
|
const deploymentStatusSchema = z.enum([
|
|
@@ -356,9 +355,20 @@ const listTeamsContractV1 = oc.route({
|
|
|
356
355
|
id: z.string(),
|
|
357
356
|
name: z.string(),
|
|
358
357
|
createdAt: z.coerce.date(),
|
|
359
|
-
hasStripeAccount: z.boolean()
|
|
360
|
-
hasActiveSubscription: z.boolean()
|
|
358
|
+
hasStripeAccount: z.boolean()
|
|
361
359
|
})));
|
|
360
|
+
const getTunnelTicketContractV1 = oc.route({
|
|
361
|
+
path: "/v1/tunnels/ticket",
|
|
362
|
+
method: "GET",
|
|
363
|
+
summary: "Get a tunnel ticket",
|
|
364
|
+
description: "Get a signed ticket for establishing a tunnel connection. Requires user authentication (API keys are not supported).",
|
|
365
|
+
tags: ["tunnels"],
|
|
366
|
+
successDescription: "The tunnel ticket"
|
|
367
|
+
}).output(z.object({
|
|
368
|
+
subdomain: z.string().describe("The subdomain assigned to the user"),
|
|
369
|
+
ticket: z.string().describe("The signed tunnel ticket"),
|
|
370
|
+
tunnelHost: z.string().describe("The tunnel host to connect to")
|
|
371
|
+
}));
|
|
362
372
|
const contract = {
|
|
363
373
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
364
374
|
analytics: { get: { v1: getProjectAnalyticsContractV1 } },
|
|
@@ -379,8 +389,8 @@ const contract = {
|
|
|
379
389
|
list: { v1: listProjectsContractV1 },
|
|
380
390
|
create: { v1: createProjectContractV1 },
|
|
381
391
|
delete: { v1: deleteProjectContractV1 }
|
|
382
|
-
}
|
|
392
|
+
},
|
|
393
|
+
tunnels: { getTicket: { v1: getTunnelTicketContractV1 } }
|
|
383
394
|
};
|
|
384
|
-
|
|
385
395
|
//#endregion
|
|
386
|
-
export { buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
|
396
|
+
export { buildSettingsSchema, contract, createEnvironmentContractV1, environmentVariableSchema, environmentVariablesSchema, runtimeSchema, transportSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpic-ai/api",
|
|
3
|
-
"version": "1.93.
|
|
3
|
+
"version": "1.93.7",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
25
25
|
"shx": "^0.4.0",
|
|
26
|
-
"tsdown": "^0.
|
|
26
|
+
"tsdown": "^0.21.1",
|
|
27
27
|
"typescript": "^5.9.3",
|
|
28
28
|
"vitest": "^4.0.18"
|
|
29
29
|
},
|