@applica-software-guru/persona-sdk 0.1.28 → 0.1.29

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.ts CHANGED
@@ -19,6 +19,7 @@ export declare interface Agent {
19
19
  twilio?: TwilioConfiguration;
20
20
  languageCode?: LanguageCode;
21
21
  initialMessage?: string;
22
+ initialMessageMode?: "processed" | "static";
22
23
  knowledge?: KnowledgeConfiguration;
23
24
  wakeup?: WakeupConfiguration;
24
25
  telegram?: TelegramConfiguration;
@@ -52,6 +53,7 @@ export declare interface AgentCreateRequest {
52
53
  twilio?: TwilioConfiguration;
53
54
  languageCode?: LanguageCode;
54
55
  initialMessage?: string;
56
+ initialMessageMode?: "processed" | "static";
55
57
  knowledge?: KnowledgeConfiguration;
56
58
  wakeup?: WakeupConfiguration;
57
59
  telegram?: TelegramConfiguration;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@applica-software-guru/persona-sdk",
3
3
  "description": "Official TypeScript SDK for the Persona API — manage agents, sessions, projects, knowledge bases, workflows, triggers and more.",
4
4
  "private": false,
5
- "version": "0.1.28",
5
+ "version": "0.1.29",
6
6
  "type": "module",
7
7
  "scripts": {
8
8
  "dev": "vite",
@@ -350,6 +350,7 @@ export interface Agent {
350
350
  twilio?: TwilioConfiguration;
351
351
  languageCode?: LanguageCode;
352
352
  initialMessage?: string;
353
+ initialMessageMode?: "processed" | "static";
353
354
  knowledge?: KnowledgeConfiguration;
354
355
  wakeup?: WakeupConfiguration;
355
356
  telegram?: TelegramConfiguration;
@@ -380,6 +381,7 @@ export interface AgentCreateRequest {
380
381
  twilio?: TwilioConfiguration;
381
382
  languageCode?: LanguageCode;
382
383
  initialMessage?: string;
384
+ initialMessageMode?: "processed" | "static";
383
385
  knowledge?: KnowledgeConfiguration;
384
386
  wakeup?: WakeupConfiguration;
385
387
  telegram?: TelegramConfiguration;