@saooti/octopus-sdk 35.2.1 → 35.2.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": "35.2.1",
3
+ "version": "35.2.3",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -16,7 +16,7 @@
16
16
  "test": "jest --coverage"
17
17
  },
18
18
  "dependencies": {
19
- "@saooti/octopus-api": "^0.34.2",
19
+ "@saooti/octopus-api": "^0.34.3",
20
20
  "@vue/cli": "^5.0.8",
21
21
  "@vue/compat": "^3.2.45",
22
22
  "autoprefixer": "^10.4.13",
@@ -218,7 +218,7 @@ export default defineComponent({
218
218
  },
219
219
  },
220
220
  methods: {
221
- ...mapActions(useGeneralStore, ['setCommentIdentity']),
221
+ ...mapActions(useCommentStore, ['setCommentIdentity']),
222
222
  answerComment(): void {
223
223
  this.collapseVisible = true;
224
224
  this.focus = !this.focus;
@@ -41,6 +41,7 @@ import cookies from '../../mixins/cookies';
41
41
  import { Podcast } from '@/stores/class/general/podcast';
42
42
  import { Conference } from '@/stores/class/conference/conference';
43
43
  import { useCommentStore } from '@/stores/CommentStore';
44
+ import { useGeneralStore } from '@/stores/GeneralStore';
44
45
  import { mapState, mapActions } from 'pinia';
45
46
  import { defineComponent } from 'vue'
46
47
  import { CommentPodcast } from '@/stores/class/general/comment';
@@ -111,7 +112,7 @@ export default defineComponent({
111
112
  this.knownIdentity = this.getCookie('comment-octopus-name');
112
113
  },
113
114
  methods: {
114
- ...mapActions(useGeneralStore, ['setCommentIdentity', 'setCommentLoaded']),
115
+ ...mapActions(useCommentStore, ['setCommentIdentity', 'setCommentLoaded']),
115
116
  updateFetch(value: { count: number, comments: Array<CommentPodcast> }): void {
116
117
  this.loaded = true;
117
118
  this.setCommentLoaded({
@@ -1,6 +1,6 @@
1
1
  export default {
2
- Productors: 'Établissements',
3
- Productor: 'Établissement',
2
+ Productors: 'Académies & collectivités',
3
+ /* Productor: 'Établissement',
4
4
  'Number productors': '{nb} établissements',
5
5
  'select productor': 'Choisir un établissement',
6
6
  'Please chose a productor': 'Veuillez choisir un établissement',
@@ -9,5 +9,5 @@ export default {
9
9
  'Type string to filter by organisation': 'Filtrer les établissements par nom',
10
10
  'No organisation filter': 'Tous les établissements',
11
11
  'Loading productors ...': 'Chargement des établissements en cours...',
12
- "Productor doesn't exist": "L'établissement demandé n'existe pas",
12
+ "Productor doesn't exist": "L'établissement demandé n'existe pas", */
13
13
  };