@alpic-ai/api 1.110.0 → 1.112.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 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>, {
@@ -904,6 +936,11 @@ declare const environmentVariablesSchema: z.ZodArray<z.ZodObject<{
904
936
  value: z.ZodString;
905
937
  isSecret: z.ZodDefault<z.ZodBoolean>;
906
938
  }, z.core.$strip>>;
939
+ declare const updateEnvironmentVariableSchema: z.ZodObject<{
940
+ key: z.ZodString;
941
+ value: z.ZodOptional<z.ZodString>;
942
+ isSecret: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
943
+ }, z.core.$strip>;
907
944
  declare const buildSettingsSchema: z.ZodObject<{
908
945
  installCommand: z.ZodOptional<z.ZodString>;
909
946
  buildCommand: z.ZodOptional<z.ZodString>;
@@ -1102,4 +1139,4 @@ declare const serverFieldsSchema: z.ZodObject<{
1102
1139
  }, z.core.$strip>>>;
1103
1140
  }, z.core.$strip>;
1104
1141
  //#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 };
1142
+ 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(),
@@ -371,7 +375,7 @@ const updateEnvironmentVariableContractV1 = oc.route({
371
375
  environmentVariableId: z.string().describe("The ID of the environment variable"),
372
376
  key: environmentVariableSchema.shape.key,
373
377
  value: environmentVariableSchema.shape.value.optional(),
374
- isSecret: environmentVariableSchema.shape.isSecret
378
+ isSecret: environmentVariableSchema.shape.isSecret.optional()
375
379
  })).output(z.object({ success: z.literal(true) }));
376
380
  const deleteEnvironmentVariableContractV1 = oc.route({
377
381
  path: "/v1/environment-variables/{environmentVariableId}",
@@ -491,6 +495,41 @@ const getLogsContractV1 = oc.route({
491
495
  })),
492
496
  nextToken: z.string().nullable()
493
497
  }));
498
+ const getLatestLogsContractV1 = oc.route({
499
+ path: "/v1/environments/{environmentId}/latest-logs",
500
+ method: "GET",
501
+ summary: "Get latest logs",
502
+ description: "Get the N most recent logs for an environment",
503
+ tags: ["environments"],
504
+ successDescription: "The latest logs"
505
+ }).errors({
506
+ NOT_FOUND: {},
507
+ BAD_REQUEST: {}
508
+ }).input(z.object({
509
+ environmentId: z.string().describe("The ID of the environment"),
510
+ limit: z.coerce.number().int().min(1).max(1e3).default(100).describe("Number of most recent log entries to return"),
511
+ level: z.array(z.enum([
512
+ "INFO",
513
+ "ERROR",
514
+ "WARNING",
515
+ "DEBUG"
516
+ ])).optional().describe("Filter by log level"),
517
+ search: z.string().optional().describe("Filter pattern to search for in log content")
518
+ })).output(z.object({ logs: z.array(z.object({
519
+ timestamp: z.coerce.date(),
520
+ type: z.enum([
521
+ "START",
522
+ "END",
523
+ "INFO",
524
+ "ERROR",
525
+ "WARNING",
526
+ "DEBUG"
527
+ ]),
528
+ requestId: z.string(),
529
+ content: z.string().optional(),
530
+ method: z.string().optional(),
531
+ durationInMs: z.number().optional()
532
+ })) }));
494
533
  const getDeploymentLogsContractV1 = oc.route({
495
534
  path: "/v1/deployments/{deploymentId}/logs",
496
535
  method: "GET",
@@ -685,7 +724,8 @@ const contract = {
685
724
  create: { v1: createEnvironmentContractV1 },
686
725
  get: { v1: getEnvironmentContractV1 },
687
726
  deploy: { v1: deployEnvironmentContractV1 },
688
- getLogs: { v1: getLogsContractV1 }
727
+ getLogs: { v1: getLogsContractV1 },
728
+ getLatestLogs: { v1: getLatestLogsContractV1 }
689
729
  },
690
730
  environmentVariables: {
691
731
  list: { v1: listEnvironmentVariablesContractV1 },
@@ -715,4 +755,4 @@ const contract = {
715
755
  }
716
756
  };
717
757
  //#endregion
718
- export { auditReportSchema, auditStatusSchema, buildSettingsSchema, checkCategorySchema, checkDetailSchema, checkResultSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, platformSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema };
758
+ 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": "1.110.0",
3
+ "version": "1.112.0",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -27,7 +27,7 @@
27
27
  "shx": "^0.4.0",
28
28
  "tsdown": "^0.21.7",
29
29
  "typescript": "^6.0.2",
30
- "vitest": "^4.1.2"
30
+ "vitest": "^4.1.3"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "shx rm -rf dist && tsdown",