@saooti/octopus-sdk 33.2.29 → 33.2.31

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": "33.2.29",
3
+ "version": "33.2.31",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -112,7 +112,7 @@
112
112
  }
113
113
  }
114
114
 
115
- .emission-item-container {
115
+ .emission-item-container{
116
116
  list-style: none;
117
117
  background: #fff;
118
118
  border-radius: 2rem;
@@ -120,10 +120,16 @@
120
120
  flex-grow: 1;
121
121
  .img-box {
122
122
  border-radius: 2rem !important;
123
- margin-top: 1rem;
123
+ @media (max-width: 680px) {
124
+ margin-top: 1rem !important;
125
+ margin: auto;
126
+ }
124
127
  }
125
128
  @media (max-width: 680px) {
126
129
  justify-content: center;
130
+ &>a{
131
+ flex-direction: column;
132
+ }
127
133
  }
128
134
  }
129
135
 
@@ -61,8 +61,9 @@
61
61
  />
62
62
  </div>
63
63
  <button
64
- :title="$t('Enlarge')"
65
- class="btn play-button-box btn-transparent text-light saooti-up"
64
+ :title="''!=transcriptText ? $t('View transcript'): $t('Enlarge')"
65
+ class="btn play-button-box btn-transparent text-light"
66
+ :class="''!=transcriptText ? 'saooti-text-to-speech':'saooti-up'"
66
67
  @click="changePlayerLargeVersion"
67
68
  />
68
69
  <button
package/src/locale/de.ts CHANGED
@@ -309,4 +309,5 @@ export default{
309
309
  "If the transcript is available, show it":"Wenn die Abschrift vorhanden ist, zeigen Sie sie",
310
310
  "Photo credits":"Bildnachweis",
311
311
  "Audio credits":"Audio-Credits",
312
+ "View transcript":"Transkript ansehen",
312
313
  }
package/src/locale/en.ts CHANGED
@@ -316,4 +316,5 @@ export default{
316
316
  "If the transcript is available, show it":"If the transcript is available, show it",
317
317
  "Photo credits":"Photo credits",
318
318
  "Audio credits":"Audio credits",
319
+ "View transcript":"View transcript",
319
320
  };
package/src/locale/es.ts CHANGED
@@ -309,4 +309,5 @@ export default{
309
309
  "If the transcript is available, show it":"Si la transcripción está disponible, muéstrela",
310
310
  "Photo credits":"Créditos fotográficos",
311
311
  "Audio credits":"Créditos de audio",
312
+ "View transcript":"Ver transcripción",
312
313
  }
package/src/locale/fr.ts CHANGED
@@ -316,4 +316,5 @@ export default{
316
316
  "If the transcript is available, show it":"Si la transcription est disponible, l'afficher",
317
317
  "Photo credits":"Crédits photo",
318
318
  "Audio credits":"Crédits audio",
319
+ "View transcript":"Afficher la transcription",
319
320
  };
package/src/locale/it.ts CHANGED
@@ -306,4 +306,5 @@ export default{
306
306
  "If the transcript is available, show it":"Se la trascrizione è disponibile, mostrala",
307
307
  "Photo credits":"Crediti fotografici",
308
308
  "Audio credits":"Crediti audio",
309
+ "View transcript":"Visualizza trascrizione",
309
310
  };
package/src/locale/sl.ts CHANGED
@@ -309,4 +309,5 @@ export default{
309
309
  "If the transcript is available, show it":"Če je prepis na voljo, ga pokažite",
310
310
  "Photo credits":"Avtorji fotografij",
311
311
  "Audio credits":"Avdio krediti",
312
+ "View transcript":"Ogled prepisa",
312
313
  }
@@ -12,7 +12,7 @@ const state:ParamStore = {
12
12
  isPlaylist: true,
13
13
  isProduction: true,
14
14
  isContribution: true,
15
- ApiUri: 'https://api.dev2.saooti.org/',
15
+ ApiUri: 'https://api.preprod.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.dev2.saooti.org/',
29
+ MiniplayerUri: 'https://playerbeta.preprod.saooti.org/',
30
30
  downloadButton: false,
31
- hlsUri: 'https://hls.dev2.saooti.org/',
31
+ hlsUri: 'https://hls.preprod.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.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/',
86
+ url: 'https://api.preprod.saooti.org/',
87
+ commentsUrl: 'https://comments.preprod.saooti.org/',
88
+ imageUrl:'https://imageproxy.preprod.saooti.org/',
89
+ studioUrl: 'https://studio.preprod.saooti.org/',
90
+ playerUrl: 'https://playerbeta.preprod.saooti.org/',
91
+ speechToTextUrl:'https://speech2text.preprod.saooti.org/',
92
+ recoUrl: 'https://reco.preprod.saooti.org/',
93
93
  organisationId: undefined,
94
94
  rubriqueIdFilter: undefined,
95
95
  },