@saooti/octopus-sdk 36.0.59 → 36.0.60

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "36.0.59",
3
+ "version": "36.0.60",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -99,7 +99,7 @@ export default defineComponent({
99
99
  isVisibleTemp: this.isVisible,
100
100
  displayArticle: true as boolean,
101
101
  displayTranscript:true as boolean,
102
- displayWave:true as boolean,
102
+ displayWave:false as boolean,
103
103
  };
104
104
  },
105
105
  computed: {
@@ -130,7 +130,7 @@ export default defineComponent({
130
130
  isVisible: false as boolean,
131
131
  displayArticle: true as boolean,
132
132
  displayTranscript: true as boolean,
133
- displayWave: true as boolean,
133
+ displayWave: false as boolean,
134
134
  orgaAttributes: undefined as{[key: string]:string|number|boolean|undefined}|undefined,
135
135
  };
136
136
  },
@@ -236,9 +236,10 @@ export default defineComponent({
236
236
  },
237
237
  isPlayerParameter(): boolean{
238
238
  return (!this.podcast ||
239
+ !this.iFrameModel.includes('large')||
239
240
  (this.displayArticleParam) ||
240
241
  this.isEmission || this.isLargeEmission || this.isLargeSuggestion ||
241
- (this.displayTranscriptParam))
242
+ (this.displayTranscriptParam ))
242
243
  && !this.playlist;
243
244
  }
244
245
  },