@illalabs/interfaces 0.6.0 → 0.6.1-canary-beta-61085274

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.
@@ -188,11 +188,11 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
188
188
  }>, "many">>;
189
189
  languageModel: z.ZodString;
190
190
  personalityContext: z.ZodDefault<z.ZodOptional<z.ZodObject<{
191
- channel: z.ZodEnum<["voice", "text"]>;
191
+ channel: z.ZodEnum<["voice", "text", "widget-based"]>;
192
192
  }, "strip", z.ZodTypeAny, {
193
- channel: "text" | "voice";
193
+ channel: "text" | "voice" | "widget-based";
194
194
  }, {
195
- channel: "text" | "voice";
195
+ channel: "text" | "voice" | "widget-based";
196
196
  }>>>;
197
197
  requestId: z.ZodOptional<z.ZodString>;
198
198
  agentPlanningConfig: z.ZodOptional<z.ZodObject<{
@@ -188,11 +188,11 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
188
188
  }>, "many">>;
189
189
  languageModel: z.ZodString;
190
190
  personalityContext: z.ZodDefault<z.ZodOptional<z.ZodObject<{
191
- channel: z.ZodEnum<["voice", "text"]>;
191
+ channel: z.ZodEnum<["voice", "text", "widget-based"]>;
192
192
  }, "strip", z.ZodTypeAny, {
193
- channel: "text" | "voice";
193
+ channel: "text" | "voice" | "widget-based";
194
194
  }, {
195
- channel: "text" | "voice";
195
+ channel: "text" | "voice" | "widget-based";
196
196
  }>>>;
197
197
  /** Client-generated request ID for telemetry subscription */
198
198
  requestId: z.ZodOptional<z.ZodString>;
@@ -562,7 +562,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
562
562
  };
563
563
  languageModel: string;
564
564
  personalityContext: {
565
- channel: "text" | "voice";
565
+ channel: "text" | "voice" | "widget-based";
566
566
  };
567
567
  prompt?: {
568
568
  role: "user";
@@ -698,7 +698,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
698
698
  } | undefined;
699
699
  }[] | undefined;
700
700
  personalityContext?: {
701
- channel: "text" | "voice";
701
+ channel: "text" | "voice" | "widget-based";
702
702
  } | undefined;
703
703
  requestId?: string | undefined;
704
704
  agentPlanningConfig?: {
@@ -956,11 +956,11 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
956
956
  }>, "many">>;
957
957
  languageModel: z.ZodString;
958
958
  personalityContext: z.ZodDefault<z.ZodOptional<z.ZodObject<{
959
- channel: z.ZodEnum<["voice", "text"]>;
959
+ channel: z.ZodEnum<["voice", "text", "widget-based"]>;
960
960
  }, "strip", z.ZodTypeAny, {
961
- channel: "text" | "voice";
961
+ channel: "text" | "voice" | "widget-based";
962
962
  }, {
963
- channel: "text" | "voice";
963
+ channel: "text" | "voice" | "widget-based";
964
964
  }>>>;
965
965
  /** Client-generated request ID for telemetry subscription */
966
966
  requestId: z.ZodOptional<z.ZodString>;
@@ -1330,7 +1330,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1330
1330
  };
1331
1331
  languageModel: string;
1332
1332
  personalityContext: {
1333
- channel: "text" | "voice";
1333
+ channel: "text" | "voice" | "widget-based";
1334
1334
  };
1335
1335
  prompt?: {
1336
1336
  role: "user";
@@ -1466,7 +1466,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1466
1466
  } | undefined;
1467
1467
  }[] | undefined;
1468
1468
  personalityContext?: {
1469
- channel: "text" | "voice";
1469
+ channel: "text" | "voice" | "widget-based";
1470
1470
  } | undefined;
1471
1471
  requestId?: string | undefined;
1472
1472
  agentPlanningConfig?: {
@@ -1556,7 +1556,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1556
1556
  };
1557
1557
  languageModel: string;
1558
1558
  personalityContext: {
1559
- channel: "text" | "voice";
1559
+ channel: "text" | "voice" | "widget-based";
1560
1560
  };
1561
1561
  prompt?: {
1562
1562
  role: "user";
@@ -1692,7 +1692,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1692
1692
  } | undefined;
1693
1693
  }[] | undefined;
1694
1694
  personalityContext?: {
1695
- channel: "text" | "voice";
1695
+ channel: "text" | "voice" | "widget-based";
1696
1696
  } | undefined;
1697
1697
  requestId?: string | undefined;
1698
1698
  agentPlanningConfig?: {
@@ -1,12 +1,12 @@
1
1
  import type { TypeOf } from "zod";
2
2
  import { z } from "zod";
3
- export declare const CHANNEL_TYPES: readonly ["voice", "text"];
3
+ export declare const CHANNEL_TYPES: readonly ["voice", "text", "widget-based"];
4
4
  export declare const PersonalityContextSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5
- channel: z.ZodEnum<["voice", "text"]>;
5
+ channel: z.ZodEnum<["voice", "text", "widget-based"]>;
6
6
  }, "strip", z.ZodTypeAny, {
7
- channel: "text" | "voice";
7
+ channel: "text" | "voice" | "widget-based";
8
8
  }, {
9
- channel: "text" | "voice";
9
+ channel: "text" | "voice" | "widget-based";
10
10
  }>>>;
11
11
  export type PersonalityContext = TypeOf<typeof PersonalityContextSchema>;
12
12
  //# sourceMappingURL=personalityContext.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"personalityContext.d.ts","sourceRoot":"","sources":["../../src/schemas/personalityContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,KAAK,CAAC;AAClC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,aAAa,4BAA6B,CAAC;AAExD,eAAO,MAAM,wBAAwB;;;;;;IAKJ,CAAC;AAElC,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
1
+ {"version":3,"file":"personalityContext.d.ts","sourceRoot":"","sources":["../../src/schemas/personalityContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,KAAK,CAAC;AAClC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,aAAa,4CAA6C,CAAC;AAExE,eAAO,MAAM,wBAAwB;;;;;;IAKJ,CAAC;AAElC,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- export const CHANNEL_TYPES = ["voice", "text"];
2
+ export const CHANNEL_TYPES = ["voice", "text", "widget-based"];
3
3
  export const PersonalityContextSchema = z
4
4
  .object({
5
5
  channel: z.enum(CHANNEL_TYPES),
@@ -1 +1 @@
1
- {"version":3,"file":"personalityContext.js","sourceRoot":"","sources":["../../src/schemas/personalityContext.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,OAAO,EAAE,MAAM,CAAU,CAAC;AAExD,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC;KACpC,MAAM,CAAC;IACJ,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;CACjC,CAAC;KACD,QAAQ,EAAE;KACV,OAAO,CAAC,EAAE,OAAO,EAAE,MAAM,EAAE,CAAC,CAAC"}
1
+ {"version":3,"file":"personalityContext.js","sourceRoot":"","sources":["../../src/schemas/personalityContext.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,cAAc,CAAU,CAAC;AAExE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC;KACpC,MAAM,CAAC;IACJ,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;CACjC,CAAC;KACD,QAAQ,EAAE;KACV,OAAO,CAAC,EAAE,OAAO,EAAE,MAAM,EAAE,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@illalabs/interfaces",
3
- "version": "0.6.0",
3
+ "version": "0.6.1-canary-beta-61085274",
4
4
  "description": "ILLA interfaces and types",
5
5
  "repository": {
6
6
  "type": "git",