@applica-software-guru/persona-sdk 0.1.105 → 0.1.106

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
@@ -450,8 +450,8 @@ export declare interface GenerationResponse {
450
450
  }
451
451
 
452
452
  export declare interface GmailTriggerSourceConfiguration {
453
- event?: string;
454
- query?: string;
453
+ event: string;
454
+ query: string;
455
455
  credentialsId?: string;
456
456
  userEmail?: string;
457
457
  watchExpiration?: number;
@@ -540,7 +540,7 @@ declare interface Image_2 {
540
540
  export { Image_2 as Image }
541
541
 
542
542
  export declare interface ImapTriggerSourceConfiguration {
543
- event?: string;
543
+ event: string;
544
544
  credentialsId?: string;
545
545
  mailbox?: string;
546
546
  searchCriteria?: string;
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.105",
5
+ "version": "0.1.106",
6
6
  "type": "module",
7
7
  "scripts": {
8
8
  "dev": "vite",
@@ -1,8 +1,8 @@
1
1
  export type TriggerSourceType = 'webhook' | 'schedule' | 'gmail' | 'imap';
2
2
 
3
3
  export interface GmailTriggerSourceConfiguration {
4
- event?: string;
5
- query?: string;
4
+ event: string;
5
+ query: string;
6
6
  credentialsId?: string;
7
7
  userEmail?: string;
8
8
  watchExpiration?: number;
@@ -10,7 +10,7 @@ export interface GmailTriggerSourceConfiguration {
10
10
  }
11
11
 
12
12
  export interface ImapTriggerSourceConfiguration {
13
- event?: string;
13
+ event: string;
14
14
  credentialsId?: string;
15
15
  mailbox?: string;
16
16
  searchCriteria?: string;