@saooti/octopus-sdk 31.0.54 → 31.0.55

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/README.md CHANGED
@@ -645,3 +645,4 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
645
645
  * 31.0.52 Locale
646
646
  * 31.0.53 Correction playerLogic
647
647
  * 31.0.54 Test live ios
648
+ * 31.0.55 Test live ios
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "31.0.54",
3
+ "version": "31.0.55",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -14,6 +14,11 @@ enum ModuleApi {
14
14
  }
15
15
  /* eslint-disable */
16
16
  export default {
17
+ async fetchData<Type>(state: StoreState,moduleName: ModuleApi,wsPath:string, forceRefresh?:boolean): Promise<Type>{
18
+ console.log(state,moduleName,wsPath,forceRefresh);
19
+ const response = await axios.get('/mock');
20
+ return response.data;
21
+ },
17
22
  async postData<Type>(state: StoreState,moduleName: ModuleApi,wsPath:string, elementToCreate: unknown): Promise<Type>{
18
23
  console.log(state,moduleName,wsPath);
19
24
  const response = await axios.post('/mock', elementToCreate, {
@@ -63,10 +63,12 @@ export const playerLogic = defineComponent({
63
63
  },
64
64
  live: {
65
65
  deep: true,
66
- async handler(){
67
- this.hlsReady = false;
68
- this.reInitPlayer();
69
- await this.playLive();
66
+ handler(){
67
+ this.$nextTick(async () => {
68
+ this.hlsReady = false;
69
+ this.reInitPlayer();
70
+ await this.playLive();
71
+ });
70
72
  }
71
73
  },
72
74
  async listenTime(newVal): Promise<void> {
@@ -3,7 +3,7 @@ import { Category } from './class/general/category';
3
3
 
4
4
  const state:paramStore = {
5
5
  generalParameters: {
6
- organisationId:'ecbd98d9-79bd-4312-ad5e-fc7c1c4a191c',
6
+ organisationId:'0c599ef4-7bf3-4a76-b7ef-4ed7e4d5cd89',
7
7
  authenticated: true,
8
8
  isAdmin: true,
9
9
  isRoleLive: true,
@@ -12,7 +12,7 @@ const state:paramStore = {
12
12
  isPlaylist: false,
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,10 +83,10 @@ const state:paramStore = {
83
83
  userName: '',
84
84
  },
85
85
  octopusApi: {
86
- url: 'http://api.dev2.saooti.org/',
87
- commentsUrl: 'http://comments.dev2.saooti.org/',
88
- studioUrl: 'http://studio.dev2.saooti.org/',
89
- playerUrl: 'https://playerbeta.dev2.saooti.org/',
86
+ url: 'http://api.preprod.saooti.org/',
87
+ commentsUrl: 'http://comments.preprod.saooti.org/',
88
+ studioUrl: 'http://studio.preprod.saooti.org/',
89
+ playerUrl: 'https://playerbeta.preprod.saooti.org/',
90
90
  organisationId: undefined,
91
91
  rubriqueIdFilter: undefined,
92
92
  },