@alpic-ai/api 0.0.0-staging.e6751ab → 0.0.0-staging.e7665b9

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 CHANGED
@@ -283,6 +283,38 @@ declare const contract: {
283
283
  BAD_REQUEST: {};
284
284
  }>, Record<never, never>>;
285
285
  };
286
+ getLatestLogs: {
287
+ v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
288
+ environmentId: z.ZodString;
289
+ limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
290
+ level: z.ZodOptional<z.ZodArray<z.ZodEnum<{
291
+ INFO: "INFO";
292
+ ERROR: "ERROR";
293
+ WARNING: "WARNING";
294
+ DEBUG: "DEBUG";
295
+ }>>>;
296
+ search: z.ZodOptional<z.ZodString>;
297
+ }, z.core.$strip>, z.ZodObject<{
298
+ logs: z.ZodArray<z.ZodObject<{
299
+ timestamp: z.ZodCoercedDate<unknown>;
300
+ type: z.ZodEnum<{
301
+ INFO: "INFO";
302
+ ERROR: "ERROR";
303
+ WARNING: "WARNING";
304
+ DEBUG: "DEBUG";
305
+ START: "START";
306
+ END: "END";
307
+ }>;
308
+ requestId: z.ZodString;
309
+ content: z.ZodOptional<z.ZodString>;
310
+ method: z.ZodOptional<z.ZodString>;
311
+ durationInMs: z.ZodOptional<z.ZodNumber>;
312
+ }, z.core.$strip>>;
313
+ }, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
314
+ NOT_FOUND: {};
315
+ BAD_REQUEST: {};
316
+ }>, Record<never, never>>;
317
+ };
286
318
  };
287
319
  environmentVariables: {
288
320
  list: {
@@ -824,6 +856,8 @@ declare const contract: {
824
856
  durationMs: z.ZodNumber;
825
857
  results: z.ZodArray<z.ZodObject<{
826
858
  checkId: z.ZodString;
859
+ checkName: z.ZodString;
860
+ description: z.ZodString;
827
861
  status: z.ZodEnum<{
828
862
  pending: "pending";
829
863
  pass: "pass";
@@ -965,6 +999,8 @@ declare const checkDetailSchema: z.ZodObject<{
965
999
  type CheckDetail = z.infer<typeof checkDetailSchema>;
966
1000
  declare const checkResultSchema: z.ZodObject<{
967
1001
  checkId: z.ZodString;
1002
+ checkName: z.ZodString;
1003
+ description: z.ZodString;
968
1004
  status: z.ZodEnum<{
969
1005
  pending: "pending";
970
1006
  pass: "pass";
@@ -1012,6 +1048,8 @@ declare const auditReportSchema: z.ZodObject<{
1012
1048
  durationMs: z.ZodNumber;
1013
1049
  results: z.ZodArray<z.ZodObject<{
1014
1050
  checkId: z.ZodString;
1051
+ checkName: z.ZodString;
1052
+ description: z.ZodString;
1015
1053
  status: z.ZodEnum<{
1016
1054
  pending: "pending";
1017
1055
  pass: "pass";
package/dist/index.mjs CHANGED
@@ -35,7 +35,8 @@ const RESERVED_KEYS = [
35
35
  "BUILD_ARG_BUILD_OUTPUT_DIR",
36
36
  "BUILD_ARG_START_COMMAND",
37
37
  "ALPIC_HOST",
38
- "ALPIC_CUSTOM_DOMAINS"
38
+ "ALPIC_CUSTOM_DOMAINS",
39
+ "ALPIC_PROMPT_META_KEY"
39
40
  ];
40
41
  const environmentVariableSchema = z.object({
41
42
  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"),
@@ -90,6 +91,8 @@ const checkDetailSchema = z.object({
90
91
  });
91
92
  const checkResultSchema = z.object({
92
93
  checkId: z.string(),
94
+ checkName: z.string(),
95
+ description: z.string(),
93
96
  status: z.enum([
94
97
  "pass",
95
98
  "fail",
@@ -495,6 +498,41 @@ const getLogsContractV1 = oc.route({
495
498
  })),
496
499
  nextToken: z.string().nullable()
497
500
  }));
501
+ const getLatestLogsContractV1 = oc.route({
502
+ path: "/v1/environments/{environmentId}/latest-logs",
503
+ method: "GET",
504
+ summary: "Get latest logs",
505
+ description: "Get the N most recent logs for an environment",
506
+ tags: ["environments"],
507
+ successDescription: "The latest logs"
508
+ }).errors({
509
+ NOT_FOUND: {},
510
+ BAD_REQUEST: {}
511
+ }).input(z.object({
512
+ environmentId: z.string().describe("The ID of the environment"),
513
+ limit: z.coerce.number().int().min(1).max(1e3).default(100).describe("Number of most recent log entries to return"),
514
+ level: z.array(z.enum([
515
+ "INFO",
516
+ "ERROR",
517
+ "WARNING",
518
+ "DEBUG"
519
+ ])).optional().describe("Filter by log level"),
520
+ search: z.string().optional().describe("Filter pattern to search for in log content")
521
+ })).output(z.object({ logs: z.array(z.object({
522
+ timestamp: z.coerce.date(),
523
+ type: z.enum([
524
+ "START",
525
+ "END",
526
+ "INFO",
527
+ "ERROR",
528
+ "WARNING",
529
+ "DEBUG"
530
+ ]),
531
+ requestId: z.string(),
532
+ content: z.string().optional(),
533
+ method: z.string().optional(),
534
+ durationInMs: z.number().optional()
535
+ })) }));
498
536
  const getDeploymentLogsContractV1 = oc.route({
499
537
  path: "/v1/deployments/{deploymentId}/logs",
500
538
  method: "GET",
@@ -689,7 +727,8 @@ const contract = {
689
727
  create: { v1: createEnvironmentContractV1 },
690
728
  get: { v1: getEnvironmentContractV1 },
691
729
  deploy: { v1: deployEnvironmentContractV1 },
692
- getLogs: { v1: getLogsContractV1 }
730
+ getLogs: { v1: getLogsContractV1 },
731
+ getLatestLogs: { v1: getLatestLogsContractV1 }
693
732
  },
694
733
  environmentVariables: {
695
734
  list: { v1: listEnvironmentVariablesContractV1 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "0.0.0-staging.e6751ab",
3
+ "version": "0.0.0-staging.e7665b9",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -17,7 +17,7 @@
17
17
  "author": "Alpic",
18
18
  "license": "ISC",
19
19
  "dependencies": {
20
- "@orpc/contract": "^1.13.13",
20
+ "@orpc/contract": "^1.13.14",
21
21
  "ms": "^2.1.3",
22
22
  "zod": "^4.3.6"
23
23
  },
@@ -25,9 +25,9 @@
25
25
  "@total-typescript/tsconfig": "^1.0.4",
26
26
  "@types/ms": "^2.1.0",
27
27
  "shx": "^0.4.0",
28
- "tsdown": "^0.21.7",
29
- "typescript": "^6.0.2",
30
- "vitest": "^4.1.3"
28
+ "tsdown": "^0.21.9",
29
+ "typescript": "^6.0.3",
30
+ "vitest": "^4.1.4"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "shx rm -rf dist && tsdown",