@saooti/octopus-sdk 34.0.13 → 34.0.15

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": "34.0.13",
3
+ "version": "34.0.15",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -210,7 +210,7 @@
210
210
 
211
211
  .multiselect__single {
212
212
  padding-left: 5px;
213
- margin-bottom: 5px;
213
+ margin-bottom: 0px;
214
214
  }
215
215
 
216
216
  .multiselect__tags-wrap {
@@ -217,7 +217,7 @@ export const playerLogic = defineComponent({
217
217
  this.percentLiveProgress = (streamDuration / scheduledDuration) * 100;
218
218
  this.$store.commit('player/totalTime', scheduledDuration);
219
219
  this.$store.commit(
220
- 'playerElapsed',
220
+ 'player/elapsed',
221
221
  currentTime / scheduledDuration
222
222
  );
223
223
  } else {
@@ -77,7 +77,6 @@ export default defineComponent({
77
77
  },
78
78
  methods:{
79
79
  updateRubriquageFilter(){
80
- debugger;
81
80
  const length = this.rubriqueFilter.length;
82
81
  const rubriqueId: Array<number>= [];
83
82
  for (let index = 0; index < length; index++) {
@@ -12,7 +12,7 @@ const state:ParamStore = {
12
12
  isPlaylist: false,
13
13
  isProduction: false,
14
14
  isContribution: false,
15
- ApiUri: 'https://api.dev2.saooti.org/',
15
+ ApiUri: 'https://api.staging.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.staging.saooti.org/',
30
30
  downloadButton: false,
31
- hlsUri: 'https://hls.dev2.saooti.org/',
31
+ hlsUri: 'https://hls.staging.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.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/',
93
93
  organisationId: undefined,
94
94
  rubriqueIdFilter: undefined,
95
95
  },