@saooti/octopus-sdk 38.0.15 → 38.0.16

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": "38.0.15",
3
+ "version": "38.0.16",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -108,6 +108,18 @@ export default defineComponent({
108
108
  searchPattern(value: string): void {
109
109
  this.sortEmission = "" !== value ? "SCORE" : "DATE";
110
110
  },
111
+ filterRubrique: {
112
+ deep: true,
113
+ handler() {
114
+ this.updateRubriquageFilter(this.filterRubrique);
115
+ },
116
+ },
117
+ filterIab: {
118
+ deep: true,
119
+ handler() {
120
+ this.iabId = this.filterIab?.id;
121
+ },
122
+ },
111
123
  },
112
124
 
113
125
  created() {
@@ -117,6 +117,18 @@ export default defineComponent({
117
117
  searchPattern(value: string): void {
118
118
  this.sortCriteria = "" !== value ? "SCORE" : "DATE";
119
119
  },
120
+ filterRubrique: {
121
+ deep: true,
122
+ handler() {
123
+ this.updateRubriquageFilter(this.filterRubrique);
124
+ },
125
+ },
126
+ filterIab: {
127
+ deep: true,
128
+ handler() {
129
+ this.iabId = this.filterIab?.id;
130
+ },
131
+ },
120
132
  },
121
133
  created() {
122
134
  this.initPodcastsPage();
@@ -3,7 +3,7 @@ import { Category } from "./class/general/category";
3
3
 
4
4
  const state: ParamStore = {
5
5
  generalParameters: {
6
- organisationId:undefined/* "ecbd98d9-79bd-4312-ad5e-fc7c1c4a191c" */,
6
+ organisationId:undefined/* "ecbd98d9-79bd-4312-ad5e-fc7c1c4a191c" */,
7
7
  authenticated: false,
8
8
  isAdmin: false,
9
9
  isRoleLive: false,
@@ -13,7 +13,7 @@ const state: ParamStore = {
13
13
  isProduction: false,
14
14
  isContribution: false,
15
15
  isRadio: false,
16
- ApiUri: "https://api.preprod.saooti.org/",
16
+ ApiUri: "https://api.staging.saooti.org/",
17
17
  podcastmaker: false,
18
18
  buttonPlus: true,
19
19
  allCategories: [],
@@ -27,8 +27,8 @@ const state: ParamStore = {
27
27
  SharePlayer: true,
28
28
  ShareButtons: true,
29
29
  ShareDistribution: true,
30
- MiniplayerUri: "https://playerbeta.preprod.saooti.org/",
31
- hlsUri: "https://hls.live.preprod.saooti.org/",
30
+ MiniplayerUri: "https://playerbeta.staging.saooti.org/",
31
+ hlsUri: "https://hls.live.staging.saooti.org/",
32
32
  mainRubrique: 0,
33
33
  resourceUrl: undefined,
34
34
  podcastItemShowEmission: false,
@@ -80,14 +80,14 @@ const state: ParamStore = {
80
80
  userName: "",
81
81
  },
82
82
  octopusApi: {
83
- url: "https://api.preprod.saooti.org/",
84
- commentsUrl: "https://comments.preprod.saooti.org/",
85
- imageUrl: "https://imageproxy.preprod.saooti.org/",
86
- studioUrl: "https://studio.preprod.saooti.org/",
87
- playerUrl: "https://playerbeta.preprod.saooti.org/",
88
- speechToTextUrl: "https://speech2text.preprod.saooti.org/",
89
- radioUrl:"https://radio.preprod.saooti.org/",
90
- recoUrl: "https://reco.preprod.saooti.org/",
83
+ url: "https://api.staging.saooti.org/",
84
+ commentsUrl: "https://comments.staging.saooti.org/",
85
+ imageUrl: "https://imageproxy.staging.saooti.org/",
86
+ studioUrl: "https://studio.staging.saooti.org/",
87
+ playerUrl: "https://playerbeta.staging.saooti.org/",
88
+ speechToTextUrl: "https://speech2text.staging.saooti.org/",
89
+ radioUrl:"https://radio.staging.saooti.org/",
90
+ recoUrl: "https://reco.staging.saooti.org/",
91
91
  organisationId: undefined,
92
92
  rubriqueIdFilter: undefined,
93
93
  },