@zohoim/client-sdk 1.0.0-poc36 → 1.0.0-poc37

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.
@@ -10,7 +10,7 @@ export default class Bot {
10
10
  name: validatedData.name,
11
11
  isActive: validatedData.isActive,
12
12
  createdTime: validatedData.createdTime,
13
- photoURL: validatedData.photoURL,
13
+ photoURL: validatedData.photoURL || null,
14
14
  createdBy: validatedData.createdBy
15
15
  };
16
16
  }
@@ -23,7 +23,7 @@ const BotSchema = {
23
23
  },
24
24
  photoURL: {
25
25
  type: 'string',
26
- required: true
26
+ required: false
27
27
  },
28
28
  createdBy: {
29
29
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohoim/client-sdk",
3
- "version": "1.0.0-poc36",
3
+ "version": "1.0.0-poc37",
4
4
  "description": "To have the client sdk for the IM",
5
5
  "main": "es/index.js",
6
6
  "module": "es/index.js",