@alpic-ai/api 1.114.0 → 1.115.2

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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -1
  2. package/package.json +3 -3
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"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "1.114.0",
3
+ "version": "1.115.2",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -25,8 +25,8 @@
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.8",
29
- "typescript": "^6.0.2",
28
+ "tsdown": "^0.21.9",
29
+ "typescript": "^6.0.3",
30
30
  "vitest": "^4.1.4"
31
31
  },
32
32
  "scripts": {