@saooti/octopus-sdk 36.0.16 → 36.0.17

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": "36.0.16",
3
+ "version": "36.0.17",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -36,7 +36,7 @@ export default defineComponent({
36
36
  },
37
37
 
38
38
  props: {
39
- listObject: { default: [], type: Array as ()=> Array<unknown>},
39
+ listObject: { default: ()=>[], type: Array as ()=> Array<unknown>},
40
40
  },
41
41
 
42
42
  data() {
@@ -97,7 +97,7 @@ export default defineComponent({
97
97
  return (true ===this.authenticated && this.myOrganisationId === this.filterOrgaUsed) ||true===state.generalParameters.isAdmin;
98
98
  },
99
99
  liveRight(): boolean {
100
- return (state.generalParameters.isRoleLive as boolean)&& true===this.authOrganisation.attributes?.['live.active'];
100
+ return (state.generalParameters.isRoleLive as boolean)&& "true"===this.authOrganisation.attributes?.['live.active'];
101
101
  },
102
102
  isPodcastmaker(): boolean {
103
103
  return (state.generalParameters.podcastmaker as boolean);
@@ -102,12 +102,12 @@ export default defineComponent({
102
102
  ParticipantDescription
103
103
  },
104
104
 
105
+ mixins: [imageProxy],
106
+
105
107
  props: {
106
108
  radio: { default: undefined, type: Object as ()=>Canal},
107
109
  },
108
-
109
- mixins: [imageProxy],
110
-
110
+
111
111
  data() {
112
112
  return {
113
113
  planning: {} as {[key: number]:Array<{podcast: Podcast, occurrence: PlanningOccurrence|PlanningLive}>},