@zohoim/client-sdk 1.0.0-poc72 → 1.0.0-poc74

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.
@@ -12,7 +12,8 @@ export default class Actor {
12
12
  extId: validatedData.extId,
13
13
  id: validatedData.id,
14
14
  email: validatedData.email,
15
- botType: validatedData.botType
15
+ botType: validatedData.botType,
16
+ service: validatedData.service
16
17
  };
17
18
  }
18
19
 
@@ -15,6 +15,7 @@ const SessionReplyStatus = {
15
15
  SANDBOX_LIMIT_REACHED: 'SANDBOX_LIMIT_REACHED',
16
16
  CHANNEL_DELETED: 'CHANNEL_DELETED',
17
17
  ENDUSER_OFFLINE: 'ENDUSER_OFFLINE',
18
- CONFIG_SKIPPED_CHANNEL: 'CONFIG_SKIPPED_CHANNEL'
18
+ CONFIG_SKIPPED_CHANNEL: 'CONFIG_SKIPPED_CHANNEL',
19
+ ASSIGNED_TO_OTHER_SERVICE: 'ASSIGNED_TO_OTHER_SERVICE'
19
20
  };
20
21
  export default SessionReplyStatus;
@@ -28,6 +28,10 @@ const ActorSchema = {
28
28
  botType: {
29
29
  type: 'string',
30
30
  required: false
31
+ },
32
+ service: {
33
+ type: 'string',
34
+ required: false
31
35
  }
32
36
  };
33
37
  export default ActorSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohoim/client-sdk",
3
- "version": "1.0.0-poc72",
3
+ "version": "1.0.0-poc74",
4
4
  "description": "To have the client sdk for the IM",
5
5
  "main": "es/index.js",
6
6
  "module": "es/index.js",