@unisphere/genie-types 1.11.0 → 1.12.0

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/index.esm.js CHANGED
@@ -216,7 +216,8 @@ const chatRuntimePlayerPluginSettingsSchema = {
216
216
  },
217
217
  partnerId: {
218
218
  type: 'primitive',
219
- value: 'string'
219
+ value: 'string',
220
+ optional: true
220
221
  },
221
222
  entryId: {
222
223
  type: 'primitive',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unisphere/genie-types",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "author": "kaltura",
5
5
  "license": "AGPL-3.0",
6
6
  "repository": {
@@ -11,7 +11,7 @@ export interface ChatRuntimePlayerPlugin extends UnisphereRuntimeBaseType<ChatRu
11
11
  export interface ChatRuntimePlayerPluginSettings {
12
12
  entryId: string;
13
13
  ks: string;
14
- partnerId: string;
14
+ partnerId?: string;
15
15
  schemaVersion?: '1';
16
16
  integrations?: GlobalChatSettings['integrations'];
17
17
  shareUrl?: GlobalChatSettings['shareUrl'];