@saooti/octopus-sdk 35.2.2 → 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.2",
3
+ "version": "35.2.3",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -138,7 +138,6 @@ import { Conference } from '@/stores/class/conference/conference';
138
138
  import CommentBasicView from './CommentBasicView.vue';
139
139
  import Constants from '../../../../public/config';
140
140
  import { useCommentStore } from '@/stores/CommentStore';
141
- import { useGeneralStore } from '@/stores/GeneralStore';
142
141
  import { mapState, mapActions } from 'pinia';
143
142
  import { defineComponent, defineAsyncComponent } from 'vue';
144
143
  const CommentInput = defineAsyncComponent(() => import('./CommentInput.vue'));
@@ -219,7 +218,7 @@ export default defineComponent({
219
218
  },
220
219
  },
221
220
  methods: {
222
- ...mapActions(useGeneralStore, ['setCommentIdentity']),
221
+ ...mapActions(useCommentStore, ['setCommentIdentity']),
223
222
  answerComment(): void {
224
223
  this.collapseVisible = true;
225
224
  this.focus = !this.focus;
@@ -112,7 +112,7 @@ export default defineComponent({
112
112
  this.knownIdentity = this.getCookie('comment-octopus-name');
113
113
  },
114
114
  methods: {
115
- ...mapActions(useGeneralStore, ['setCommentIdentity', 'setCommentLoaded']),
115
+ ...mapActions(useCommentStore, ['setCommentIdentity', 'setCommentLoaded']),
116
116
  updateFetch(value: { count: number, comments: Array<CommentPodcast> }): void {
117
117
  this.loaded = true;
118
118
  this.setCommentLoaded({