@saooti/octopus-sdk 37.0.1 → 37.0.3

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": "37.0.1",
3
+ "version": "37.0.3",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -27,18 +27,18 @@
27
27
  "@vue/compat": "^3.3.4",
28
28
  "autoprefixer": "^10.4.14",
29
29
  "axios": "^1.4.0",
30
- "dayjs": "^1.11.8",
30
+ "dayjs": "^1.11.9",
31
31
  "express": "^4.18.2",
32
- "hls.js": "^1.4.6",
32
+ "hls.js": "^1.4.7",
33
33
  "humanize-duration": "^3.28.0",
34
34
  "jest": "^29.5.0",
35
35
  "pinia": "^2.1.4",
36
36
  "qrcode.vue": "^3.4.0",
37
- "sass": "^1.63.4",
37
+ "sass": "^1.63.6",
38
38
  "sonarqube-scanner": "^3.0.0",
39
39
  "swiper": "^9.3.2",
40
40
  "v-calendar": "^3.0.3",
41
- "vite": "^3.2.7",
41
+ "vite": "^4.3.9",
42
42
  "vue": "^3.3.4",
43
43
  "vue-i18n": "^9.2.2",
44
44
  "vue-recaptcha": "^2.0.3",
@@ -49,12 +49,12 @@
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/vue-select": "^3.16.2",
52
- "@typescript-eslint/eslint-plugin": "^5.59.11",
53
- "@typescript-eslint/parser": "^5.59.11",
54
- "@vitejs/plugin-vue": "^3.2.0",
52
+ "@typescript-eslint/eslint-plugin": "^5.60.1",
53
+ "@typescript-eslint/parser": "^5.60.1",
54
+ "@vitejs/plugin-vue": "^4.2.3",
55
55
  "@vue/compiler-sfc": "^3.3.4",
56
56
  "@vue/eslint-config-typescript": "^8.0.0",
57
- "eslint": "^8.42.0",
57
+ "eslint": "^8.44.0",
58
58
  "eslint-plugin-vue": "^7.17.0",
59
59
  "typescript": "^4.9.5"
60
60
  },
@@ -74,7 +74,6 @@ export default defineComponent({
74
74
  {url:this.getUrl('PodcastAddict'), icon:'saooti-podcast-addict', title:'Podcast Addict'},
75
75
  {url:this.getUrl('radioline'), icon:'saooti-radioline', title:'Radioline'},
76
76
  {url:this.getUrl('spotify'), icon:'saooti-spotify', title:'Spotify'},
77
- {url:this.getUrl('Stitcher'), icon:'saooti-stitcher-logo', title:'Stitcher'},
78
77
  {url:this.getUrl('tuneIn'), icon:'saooti-tunin', title:'TuneIn'}];
79
78
  }
80
79
  },
@@ -44,7 +44,6 @@ export default defineComponent({
44
44
  {name:'podcastAddict', icon: 'saooti-podcast-addict', title:'Podcast Addict', url : this.getUrl('podcastAddict')},
45
45
  {name:'radioline', icon:'saooti-radioline',title:'Radioline', url : this.getUrl('radioline')},
46
46
  {name:'spotify', icon:'saooti-spotify',title:'Spotify', url : this.getUrl('spotify')},
47
- {name:'stitcher', icon:'saooti-stitcher-logo', title:'Stitcher', url : this.getUrl('stitcher')},
48
47
  {name:'tunein', icon:'saooti-tunin',title:'TuneIn', url : this.getUrl('tunein')}
49
48
  ];
50
49
  return sub.filter(item=> item.url);
@@ -2,10 +2,10 @@
2
2
  <DatePicker
3
3
  ref="datePicker"
4
4
  :model-value="undefined!==range ? range : date"
5
+ :model-modifiers="{ range:undefined!==range }"
5
6
  :mode="mode"
6
7
  color="green"
7
8
  is24hr
8
- :is-range="undefined!==range"
9
9
  :max-date="isMaxDate ? now : undefined"
10
10
  :min-date="isMinDate ? now : undefined"
11
11
  :columns="columnNumber"
@@ -161,7 +161,7 @@ export default defineComponent({
161
161
  },
162
162
  countLink(): number {
163
163
  const platformShare = ['amazon','googlePodcasts','applePodcast', 'deezer', 'spotify', 'tunein',
164
- 'radioline', 'podcastAddict', 'playerFm', 'stitcher', 'pocketCasts'];
164
+ 'radioline', 'podcastAddict', 'playerFm', 'pocketCasts'];
165
165
  let count = 0;
166
166
  for (let i = 0, len = platformShare.length; i < len; i++) {
167
167
  if (undefined !== this.emission?.annotations?.[platformShare[i]]) count++;
@@ -175,7 +175,7 @@ export default defineComponent({
175
175
  },
176
176
  countLink(): number {
177
177
  const platformShare = ['amazon','googlePodcasts','applePodcast', 'deezer', 'spotify', 'tunein',
178
- 'radioline', 'podcastAddict', 'playerFm', 'stitcher', 'pocketCasts'];
178
+ 'radioline', 'podcastAddict', 'playerFm', 'pocketCasts'];
179
179
  let count = 0;
180
180
  for (let i = 0, len = platformShare.length; i < len; i++) {
181
181
  if (undefined !== this.podcast?.emission?.annotations?.[platformShare[i]]) count++;