@avallon-labs/sdk 26.5.0-staging.708 → 26.6.0-staging.709

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.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -5130,6 +5130,8 @@ interface VoiceAgentVersion {
5130
5130
  * @maximum 9007199254740991
5131
5131
  */
5132
5132
  version: number;
5133
+ /** Promotion tag on this version (`live`, `test`, or null if untagged). At most one version per agent holds each tag. */
5134
+ environment: "live" | "test" | null;
5133
5135
  actor: string;
5134
5136
  created_at: string;
5135
5137
  /** Voice agent config field names (matching the keys on the voice agent response) whose values differ from the previous version. Empty for version 1. */
@@ -5311,6 +5313,8 @@ interface VoiceAgentVersionDetail {
5311
5313
  * @maximum 9007199254740991
5312
5314
  */
5313
5315
  version: number;
5316
+ /** Promotion tag on this version (`live`, `test`, or null if untagged). At most one version per agent holds each tag. */
5317
+ environment: "live" | "test" | null;
5314
5318
  version_created_at: string;
5315
5319
  actor: string;
5316
5320
  /** Voice agent config field names (matching the keys on the voice agent response) whose values differ from the previous version. Empty for version 1. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avallon-labs/sdk",
3
- "version": "26.5.0-staging.708",
3
+ "version": "26.6.0-staging.709",
4
4
  "description": "Avallon API SDK - generated from OpenAPI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",