@alpic-ai/api 0.0.0-staging.f6ecca1 → 0.0.0-staging.f8c1b2b

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: {
@@ -318,7 +350,7 @@ declare const contract: {
318
350
  environmentVariableId: z.ZodString;
319
351
  key: z.ZodString;
320
352
  value: z.ZodOptional<z.ZodString>;
321
- isSecret: z.ZodDefault<z.ZodBoolean>;
353
+ isSecret: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
322
354
  }, z.core.$strip>, z.ZodObject<{
323
355
  success: z.ZodLiteral<true>;
324
356
  }, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
@@ -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";
@@ -904,6 +938,11 @@ declare const environmentVariablesSchema: z.ZodArray<z.ZodObject<{
904
938
  value: z.ZodString;
905
939
  isSecret: z.ZodDefault<z.ZodBoolean>;
906
940
  }, z.core.$strip>>;
941
+ declare const updateEnvironmentVariableSchema: z.ZodObject<{
942
+ key: z.ZodString;
943
+ value: z.ZodOptional<z.ZodString>;
944
+ isSecret: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
945
+ }, z.core.$strip>;
907
946
  declare const buildSettingsSchema: z.ZodObject<{
908
947
  installCommand: z.ZodOptional<z.ZodString>;
909
948
  buildCommand: z.ZodOptional<z.ZodString>;
@@ -960,6 +999,8 @@ declare const checkDetailSchema: z.ZodObject<{
960
999
  type CheckDetail = z.infer<typeof checkDetailSchema>;
961
1000
  declare const checkResultSchema: z.ZodObject<{
962
1001
  checkId: z.ZodString;
1002
+ checkName: z.ZodString;
1003
+ description: z.ZodString;
963
1004
  status: z.ZodEnum<{
964
1005
  pending: "pending";
965
1006
  pass: "pass";
@@ -1007,6 +1048,8 @@ declare const auditReportSchema: z.ZodObject<{
1007
1048
  durationMs: z.ZodNumber;
1008
1049
  results: z.ZodArray<z.ZodObject<{
1009
1050
  checkId: z.ZodString;
1051
+ checkName: z.ZodString;
1052
+ description: z.ZodString;
1010
1053
  status: z.ZodEnum<{
1011
1054
  pending: "pending";
1012
1055
  pass: "pass";
@@ -1102,4 +1145,4 @@ declare const serverFieldsSchema: z.ZodObject<{
1102
1145
  }, z.core.$strip>>>;
1103
1146
  }, z.core.$strip>;
1104
1147
  //#endregion
1105
- export { ApiContext, AuditReport, CheckCategory, CheckDetail, CheckResult, CheckScope, CheckSeverity, Platform, RouterInput, RouterOutput, Runtime, Transport, auditReportSchema, auditStatusSchema, buildSettingsSchema, checkCategorySchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema };
1148
+ export { ApiContext, AuditReport, CheckCategory, CheckDetail, CheckResult, CheckScope, CheckSeverity, Platform, RouterInput, RouterOutput, Runtime, Transport, auditReportSchema, auditStatusSchema, buildSettingsSchema, checkCategorySchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
package/dist/index.mjs CHANGED
@@ -43,6 +43,10 @@ const environmentVariableSchema = z.object({
43
43
  isSecret: z.boolean().default(false)
44
44
  });
45
45
  const environmentVariablesSchema = z.array(environmentVariableSchema);
46
+ const updateEnvironmentVariableSchema = environmentVariableSchema.partial({
47
+ value: true,
48
+ isSecret: true
49
+ });
46
50
  const buildSettingsSchema = z.object({
47
51
  installCommand: z.string().optional(),
48
52
  buildCommand: z.string().optional(),
@@ -86,6 +90,8 @@ const checkDetailSchema = z.object({
86
90
  });
87
91
  const checkResultSchema = z.object({
88
92
  checkId: z.string(),
93
+ checkName: z.string(),
94
+ description: z.string(),
89
95
  status: z.enum([
90
96
  "pass",
91
97
  "fail",
@@ -371,7 +377,7 @@ const updateEnvironmentVariableContractV1 = oc.route({
371
377
  environmentVariableId: z.string().describe("The ID of the environment variable"),
372
378
  key: environmentVariableSchema.shape.key,
373
379
  value: environmentVariableSchema.shape.value.optional(),
374
- isSecret: environmentVariableSchema.shape.isSecret
380
+ isSecret: environmentVariableSchema.shape.isSecret.optional()
375
381
  })).output(z.object({ success: z.literal(true) }));
376
382
  const deleteEnvironmentVariableContractV1 = oc.route({
377
383
  path: "/v1/environment-variables/{environmentVariableId}",
@@ -491,6 +497,41 @@ const getLogsContractV1 = oc.route({
491
497
  })),
492
498
  nextToken: z.string().nullable()
493
499
  }));
500
+ const getLatestLogsContractV1 = oc.route({
501
+ path: "/v1/environments/{environmentId}/latest-logs",
502
+ method: "GET",
503
+ summary: "Get latest logs",
504
+ description: "Get the N most recent logs for an environment",
505
+ tags: ["environments"],
506
+ successDescription: "The latest logs"
507
+ }).errors({
508
+ NOT_FOUND: {},
509
+ BAD_REQUEST: {}
510
+ }).input(z.object({
511
+ environmentId: z.string().describe("The ID of the environment"),
512
+ limit: z.coerce.number().int().min(1).max(1e3).default(100).describe("Number of most recent log entries to return"),
513
+ level: z.array(z.enum([
514
+ "INFO",
515
+ "ERROR",
516
+ "WARNING",
517
+ "DEBUG"
518
+ ])).optional().describe("Filter by log level"),
519
+ search: z.string().optional().describe("Filter pattern to search for in log content")
520
+ })).output(z.object({ logs: z.array(z.object({
521
+ timestamp: z.coerce.date(),
522
+ type: z.enum([
523
+ "START",
524
+ "END",
525
+ "INFO",
526
+ "ERROR",
527
+ "WARNING",
528
+ "DEBUG"
529
+ ]),
530
+ requestId: z.string(),
531
+ content: z.string().optional(),
532
+ method: z.string().optional(),
533
+ durationInMs: z.number().optional()
534
+ })) }));
494
535
  const getDeploymentLogsContractV1 = oc.route({
495
536
  path: "/v1/deployments/{deploymentId}/logs",
496
537
  method: "GET",
@@ -685,7 +726,8 @@ const contract = {
685
726
  create: { v1: createEnvironmentContractV1 },
686
727
  get: { v1: getEnvironmentContractV1 },
687
728
  deploy: { v1: deployEnvironmentContractV1 },
688
- getLogs: { v1: getLogsContractV1 }
729
+ getLogs: { v1: getLogsContractV1 },
730
+ getLatestLogs: { v1: getLatestLogsContractV1 }
689
731
  },
690
732
  environmentVariables: {
691
733
  list: { v1: listEnvironmentVariablesContractV1 },
@@ -715,4 +757,4 @@ const contract = {
715
757
  }
716
758
  };
717
759
  //#endregion
718
- export { auditReportSchema, auditStatusSchema, buildSettingsSchema, checkCategorySchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema };
760
+ export { auditReportSchema, auditStatusSchema, buildSettingsSchema, checkCategorySchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, 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.f6ecca1",
3
+ "version": "0.0.0-staging.f8c1b2b",
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",
28
+ "tsdown": "^0.21.8",
29
29
  "typescript": "^6.0.2",
30
- "vitest": "^4.1.2"
30
+ "vitest": "^4.1.4"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "shx rm -rf dist && tsdown",