@saooti/octopus-sdk 35.2.4 → 35.2.5

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": "35.2.4",
3
+ "version": "35.2.5",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -124,7 +124,7 @@ export default defineComponent({
124
124
  if (this.$route.query.iabId) {
125
125
  this.$router.replace({ query: {...this.$route.query, ...{iabId: undefined} } });
126
126
  }
127
- this.filterUpdateIab(undefined);
127
+ this.filterUpdateIab();
128
128
  }else{
129
129
  const newFilter: Array<RubriquageFilter> = Array.from(this.filterRubrique);
130
130
  newFilter.splice(index + 1);
@@ -41,7 +41,6 @@ import cookies from '../../mixins/cookies';
41
41
  import { Podcast } from '@/stores/class/general/podcast';
42
42
  import { Conference } from '@/stores/class/conference/conference';
43
43
  import { useCommentStore } from '@/stores/CommentStore';
44
- import { useGeneralStore } from '@/stores/GeneralStore';
45
44
  import { mapState, mapActions } from 'pinia';
46
45
  import { defineComponent } from 'vue'
47
46
  import { CommentPodcast } from '@/stores/class/general/comment';
@@ -98,7 +98,7 @@ export default defineComponent({
98
98
  if (queries.iabId) {
99
99
  this.$router.replace({ query: {...queries, ...{iabId: undefined} } });
100
100
  }
101
- this.filterUpdateIab(undefined);
101
+ this.filterUpdateIab();
102
102
  }
103
103
  },
104
104
  })
@@ -10,7 +10,7 @@ export const playerTranscript = defineComponent({
10
10
  ...mapActions(usePlayerStore, ['playerUpdateTranscript']),
11
11
  async getTranscription(): Promise<void>{
12
12
  if(!this.playerPodcast){
13
- this.playerUpdateTranscript(undefined);
13
+ this.playerUpdateTranscript();
14
14
  return;
15
15
  }
16
16
  const result = await octopusApi.fetchDataPublic<string>(11 , `response/${this.playerPodcast.podcastId}`);
@@ -1,5 +1,4 @@
1
1
  import { Category } from '@/stores/class/general/category';
2
- import { CommentPodcast } from '@/stores/class/general/comment';
3
2
  import { defineStore } from 'pinia';
4
3
 
5
4
  interface GeneralState{