lumnisai 0.1.12 → 0.1.13

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.cts CHANGED
@@ -1344,6 +1344,7 @@ interface LinkedInSendRequest {
1344
1344
  escalationDays?: number;
1345
1345
  projectId?: string | null;
1346
1346
  prospectExternalId?: string | null;
1347
+ organizationId?: string | null;
1347
1348
  }
1348
1349
  /**
1349
1350
  * Request to send a message
@@ -1357,12 +1358,14 @@ interface SendMessageRequest {
1357
1358
  recipientName?: string | null;
1358
1359
  projectId?: string | null;
1359
1360
  prospectExternalId?: string | null;
1361
+ organizationId?: string | null;
1360
1362
  }
1361
1363
  /**
1362
1364
  * Request to reply to a conversation
1363
1365
  */
1364
1366
  interface SendReplyRequest {
1365
1367
  content: string;
1368
+ organizationId?: string | null;
1366
1369
  }
1367
1370
  /**
1368
1371
  * Prospect connection check for batch operations
@@ -1394,6 +1397,7 @@ interface CreateDraftRequest {
1394
1397
  subject?: string | null;
1395
1398
  isPriority?: boolean;
1396
1399
  outreachMethod?: string | null;
1400
+ organizationId?: string | null;
1397
1401
  }
1398
1402
  /**
1399
1403
  * Prospect info for batch draft creation
@@ -1424,6 +1428,7 @@ interface BatchDraftRequest {
1424
1428
  contentTemplate?: string | null;
1425
1429
  useAiGeneration?: boolean;
1426
1430
  aiContext?: Record<string, any> | null;
1431
+ organizationId?: string | null;
1427
1432
  }
1428
1433
  /**
1429
1434
  * Request to batch send drafts
package/dist/index.d.mts CHANGED
@@ -1344,6 +1344,7 @@ interface LinkedInSendRequest {
1344
1344
  escalationDays?: number;
1345
1345
  projectId?: string | null;
1346
1346
  prospectExternalId?: string | null;
1347
+ organizationId?: string | null;
1347
1348
  }
1348
1349
  /**
1349
1350
  * Request to send a message
@@ -1357,12 +1358,14 @@ interface SendMessageRequest {
1357
1358
  recipientName?: string | null;
1358
1359
  projectId?: string | null;
1359
1360
  prospectExternalId?: string | null;
1361
+ organizationId?: string | null;
1360
1362
  }
1361
1363
  /**
1362
1364
  * Request to reply to a conversation
1363
1365
  */
1364
1366
  interface SendReplyRequest {
1365
1367
  content: string;
1368
+ organizationId?: string | null;
1366
1369
  }
1367
1370
  /**
1368
1371
  * Prospect connection check for batch operations
@@ -1394,6 +1397,7 @@ interface CreateDraftRequest {
1394
1397
  subject?: string | null;
1395
1398
  isPriority?: boolean;
1396
1399
  outreachMethod?: string | null;
1400
+ organizationId?: string | null;
1397
1401
  }
1398
1402
  /**
1399
1403
  * Prospect info for batch draft creation
@@ -1424,6 +1428,7 @@ interface BatchDraftRequest {
1424
1428
  contentTemplate?: string | null;
1425
1429
  useAiGeneration?: boolean;
1426
1430
  aiContext?: Record<string, any> | null;
1431
+ organizationId?: string | null;
1427
1432
  }
1428
1433
  /**
1429
1434
  * Request to batch send drafts
package/dist/index.d.ts CHANGED
@@ -1344,6 +1344,7 @@ interface LinkedInSendRequest {
1344
1344
  escalationDays?: number;
1345
1345
  projectId?: string | null;
1346
1346
  prospectExternalId?: string | null;
1347
+ organizationId?: string | null;
1347
1348
  }
1348
1349
  /**
1349
1350
  * Request to send a message
@@ -1357,12 +1358,14 @@ interface SendMessageRequest {
1357
1358
  recipientName?: string | null;
1358
1359
  projectId?: string | null;
1359
1360
  prospectExternalId?: string | null;
1361
+ organizationId?: string | null;
1360
1362
  }
1361
1363
  /**
1362
1364
  * Request to reply to a conversation
1363
1365
  */
1364
1366
  interface SendReplyRequest {
1365
1367
  content: string;
1368
+ organizationId?: string | null;
1366
1369
  }
1367
1370
  /**
1368
1371
  * Prospect connection check for batch operations
@@ -1394,6 +1397,7 @@ interface CreateDraftRequest {
1394
1397
  subject?: string | null;
1395
1398
  isPriority?: boolean;
1396
1399
  outreachMethod?: string | null;
1400
+ organizationId?: string | null;
1397
1401
  }
1398
1402
  /**
1399
1403
  * Prospect info for batch draft creation
@@ -1424,6 +1428,7 @@ interface BatchDraftRequest {
1424
1428
  contentTemplate?: string | null;
1425
1429
  useAiGeneration?: boolean;
1426
1430
  aiContext?: Record<string, any> | null;
1431
+ organizationId?: string | null;
1427
1432
  }
1428
1433
  /**
1429
1434
  * Request to batch send drafts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lumnisai",
3
3
  "type": "module",
4
- "version": "0.1.12",
4
+ "version": "0.1.13",
5
5
  "description": "Official Node.js SDK for the Lumnis AI API",
6
6
  "author": "Lumnis AI",
7
7
  "license": "MIT",