@saooti/octopus-sdk 35.2.3 → 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.3",
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
  })
@@ -66,8 +66,7 @@
66
66
  </div>
67
67
  <button
68
68
  :title="''!=transcriptText ? $t('View transcript'): $t('Enlarge')"
69
- class="btn play-button-box btn-transparent text-light"
70
- :class="''!=transcriptText ? 'saooti-text-to-speech':'saooti-up'"
69
+ class="btn play-button-box btn-transparent text-light saooti-up me-0"
71
70
  @click="changePlayerLargeVersion"
72
71
  />
73
72
  <button
@@ -157,7 +156,7 @@ export default defineComponent({
157
156
  justify-content: center;
158
157
  margin: 0 0.5rem;
159
158
  border-radius: 50% !important;
160
- font-size: 0.7rem !important;
159
+ font-size: 1rem !important;
161
160
  flex-shrink: 0;
162
161
  cursor: pointer;
163
162
  }
@@ -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{
@@ -12,7 +12,7 @@ const state:ParamStore = {
12
12
  isPlaylist: false,
13
13
  isProduction: false,
14
14
  isContribution: false,
15
- ApiUri: 'https://api.staging.saooti.org/',
15
+ ApiUri: 'https://api.dev2.saooti.org/',
16
16
  podcastmaker: false,
17
17
  buttonPlus: true,
18
18
  allCategories: [],
@@ -26,9 +26,9 @@ const state:ParamStore = {
26
26
  SharePlayer: true,
27
27
  ShareButtons: true,
28
28
  ShareDistribution: true,
29
- MiniplayerUri: 'https://playerbeta.staging.saooti.org/',
29
+ MiniplayerUri: 'https://playerbeta.dev2.saooti.org/',
30
30
  downloadButton: false,
31
- hlsUri: 'https://hls.staging.saooti.org/',
31
+ hlsUri: 'https://hls.dev2.saooti.org/',
32
32
  mainRubrique: 0,
33
33
  resourceUrl: undefined,
34
34
  podcastItemShowEmission: false,
@@ -83,13 +83,13 @@ const state:ParamStore = {
83
83
  userName: '',
84
84
  },
85
85
  octopusApi: {
86
- url: 'https://api.staging.saooti.org/',
87
- commentsUrl: 'https://comments.staging.saooti.org/',
88
- imageUrl:'https://imageproxy.staging.saooti.org/',
89
- studioUrl: 'https://studio.staging.saooti.org/',
90
- playerUrl: 'https://playerbeta.staging.saooti.org/',
91
- speechToTextUrl:'https://speech2text.staging.saooti.org/',
92
- recoUrl: 'https://reco.staging.saooti.org/',
86
+ url: 'https://api.dev2.saooti.org/',
87
+ commentsUrl: 'https://comments.dev2.saooti.org/',
88
+ imageUrl:'https://imageproxy.dev2.saooti.org/',
89
+ studioUrl: 'https://studio.dev2.saooti.org/',
90
+ playerUrl: 'https://playerbeta.dev2.saooti.org/',
91
+ speechToTextUrl:'https://speech2text.dev2.saooti.org/',
92
+ recoUrl: 'https://reco.dev2.saooti.org/',
93
93
  organisationId: undefined,
94
94
  rubriqueIdFilter: undefined,
95
95
  },