@hiliosai/sdk 0.2.5 → 0.2.6

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
@@ -778,6 +778,9 @@ declare const INTEGRATION_CHANNELS: {
778
778
  readonly MESSAGE_RECEIVED: "processing.message.received";
779
779
  readonly MESSAGE_SENT: "processing.message.sent";
780
780
  readonly MESSAGE_FAILED: "processing.message.failed";
781
+ readonly CONTACT_CREATED: "processing.contact.created";
782
+ readonly CONVERSATION_CREATED: "processing.conversation.created";
783
+ readonly MESSAGE_CREATED: "processing.message.created";
781
784
  };
782
785
  type IntegrationChannelName = (typeof INTEGRATION_CHANNELS)[keyof typeof INTEGRATION_CHANNELS];
783
786
 
package/dist/index.js CHANGED
@@ -1279,7 +1279,10 @@ var INTEGRATION_CHANNELS = {
1279
1279
  // Message events
1280
1280
  MESSAGE_RECEIVED: "processing.message.received",
1281
1281
  MESSAGE_SENT: "processing.message.sent",
1282
- MESSAGE_FAILED: "processing.message.failed"
1282
+ MESSAGE_FAILED: "processing.message.failed",
1283
+ CONTACT_CREATED: "processing.contact.created",
1284
+ CONVERSATION_CREATED: "processing.conversation.created",
1285
+ MESSAGE_CREATED: "processing.message.created"
1283
1286
  };
1284
1287
  var CHANNEL_CONFIG = {
1285
1288
  // Default settings for message channels
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiliosai/sdk",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./dist/index.js",