@saooti/octopus-sdk 30.0.2 → 30.0.6
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/README.md +6 -0
- package/index.ts +5 -2
- package/package.json +1 -1
- package/public/img/ouest_france_logo.svg +12 -0
- package/src/App.vue +4 -4
- package/src/api/comments.ts +1 -1
- package/src/assets/form.scss +0 -15
- package/src/assets/multiselect.scss +1 -1
- package/src/components/display/categories/CategoryChooser.vue +1 -1
- package/src/components/display/categories/CategoryFilter.vue +4 -4
- package/src/components/display/categories/CategoryList.vue +1 -1
- package/src/components/display/comments/CommentInput.vue +3 -3
- package/src/components/display/comments/CommentItem.vue +4 -4
- package/src/components/display/comments/CommentList.vue +4 -4
- package/src/components/display/comments/CommentParentInfo.vue +1 -1
- package/src/components/display/comments/CommentPlayer.vue +1 -1
- package/src/components/display/comments/CommentSection.vue +3 -3
- package/src/components/display/edit/EditBox.vue +1 -1
- package/src/components/display/edit/EditCommentBox.vue +1 -1
- package/src/components/display/emission/EmissionChooser.vue +2 -2
- package/src/components/display/emission/EmissionInlineList.vue +2 -2
- package/src/components/display/emission/EmissionItem.vue +1 -1
- package/src/components/display/emission/EmissionList.vue +3 -3
- package/src/components/display/emission/EmissionPlayerItem.vue +2 -2
- package/src/components/display/filter/AdvancedSearch.vue +1 -5
- package/src/components/display/filter/CategoryFilter.vue +1 -1
- package/src/components/display/filter/ProductorSearch.vue +1 -1
- package/src/components/display/filter/RubriqueChoice.vue +2 -2
- package/src/components/display/filter/RubriqueFilter.vue +2 -2
- package/src/components/display/live/LiveHorizontalList.vue +1 -1
- package/src/components/display/live/LiveItem.vue +2 -2
- package/src/components/display/live/LiveList.vue +1 -1
- package/src/components/display/organisation/OrganisationChooser.vue +1 -1
- package/src/components/display/organisation/OrganisationChooserLight.vue +1 -1
- package/src/components/display/participant/ParticipantItem.vue +1 -1
- package/src/components/display/participant/ParticipantList.vue +1 -1
- package/src/components/display/playlist/PlaylistItem.vue +1 -1
- package/src/components/display/playlist/PlaylistList.vue +1 -1
- package/src/components/display/playlist/PodcastList.vue +2 -2
- package/src/components/display/podcasts/AnimatorsItem.vue +1 -1
- package/src/components/display/podcasts/ParticipantDescription.vue +2 -2
- package/src/components/display/podcasts/PodcastFilterList.vue +2 -2
- package/src/components/display/podcasts/PodcastImage.vue +2 -2
- package/src/components/display/podcasts/PodcastInlineList.vue +2 -2
- package/src/components/display/podcasts/PodcastItem.vue +2 -2
- package/src/components/display/podcasts/PodcastList.vue +2 -2
- package/src/components/display/podcasts/PodcastModuleBox.vue +3 -7
- package/src/components/display/podcasts/TagList.vue +46 -35
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -1
- package/src/components/display/rubriques/RubriqueList.vue +3 -3
- package/src/components/display/sharing/PlayerParameters.vue +7 -58
- package/src/components/display/sharing/ShareButtons.vue +4 -3
- package/src/components/display/sharing/ShareDistribution.vue +1 -1
- package/src/components/display/sharing/SharePlayer.vue +37 -72
- package/src/components/display/sharing/SharePlayerColors.vue +4 -49
- package/src/components/display/sharing/SharePlayerTypes.vue +12 -15
- package/src/components/display/sharing/SubscribeButtons.vue +1 -1
- package/src/components/misc/Footer.vue +2 -2
- package/src/components/misc/LeftMenu.vue +3 -3
- package/src/components/misc/Player.vue +2 -2
- package/src/components/misc/PlayerButtons.vue +2 -2
- package/src/components/misc/PlayerClockAndTimeline.vue +1 -1
- package/src/components/misc/PlayerProgressBar.vue +1 -1
- package/src/components/misc/Popover.vue +8 -3
- package/src/components/misc/TopBar.vue +2 -2
- package/src/components/misc/modal/ClipboardModal.vue +1 -1
- package/src/components/misc/modal/NewsletterModal.vue +2 -2
- package/src/components/misc/modal/QrCodeModal.vue +2 -2
- package/src/components/misc/modal/ShareModalPlayer.vue +1 -1
- package/src/components/mixins/init.ts +1 -1
- package/src/components/mixins/organisationFilter.ts +1 -1
- package/src/components/mixins/tagOfMixins.ts +19 -0
- package/src/components/pages/Category.vue +1 -1
- package/src/components/pages/Emission.vue +1 -1
- package/src/components/pages/Emissions.vue +2 -2
- package/src/components/pages/Home.vue +4 -4
- package/src/components/pages/Lives.vue +2 -2
- package/src/components/pages/Participant.vue +1 -1
- package/src/components/pages/Playlist.vue +1 -1
- package/src/components/pages/Podcast.vue +4 -4
- package/src/components/pages/Podcasts.vue +3 -3
- package/src/locale/en.ts +0 -1
- package/src/locale/fr.ts +0 -1
- package/src/store/class/{adserverConfig.ts → adserver/adserverConfig.ts} +0 -0
- package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
- package/src/store/class/{adserverTiming.ts → adserver/adserverTiming.ts} +0 -0
- package/src/store/class/cartouchier/cartouche.ts +15 -0
- package/src/store/class/cartouchier/cartouchier.ts +9 -0
- package/src/store/class/conference/conference.ts +35 -0
- package/src/store/class/conference/conferenceMessage.ts +10 -0
- package/src/store/class/conference/conferenceParticipant.ts +18 -0
- package/src/store/class/conference/pad.ts +15 -0
- package/src/store/class/conference/studioCall.ts +7 -0
- package/src/store/class/contract/contract.ts +7 -0
- package/src/store/class/contract/contractOrganisation.ts +7 -0
- package/src/store/class/ftp/ftpEmission.ts +41 -0
- package/src/store/class/ftp/ftpParam.ts +12 -0
- package/src/store/class/ftp/testFtpEmission.ts +5 -0
- package/src/store/class/general/audioView.ts +21 -0
- package/src/store/class/{category.ts → general/category.ts} +1 -1
- package/src/store/class/general/comment.ts +16 -0
- package/src/store/class/general/customPlayer.ts +8 -0
- package/src/store/class/{emission.ts → general/emission.ts} +2 -2
- package/src/store/class/general/fetchParam.ts +33 -0
- package/src/store/class/general/initState.ts +25 -0
- package/src/store/class/general/ituneCategory.ts +5 -0
- package/src/store/class/general/media.ts +14 -0
- package/src/store/class/general/organisation.ts +19 -0
- package/src/store/class/general/pageable.ts +13 -0
- package/src/store/class/{participant.ts → general/participant.ts} +0 -0
- package/src/store/class/{player.ts → general/player.ts} +0 -0
- package/src/store/class/{playlist.ts → general/playlist.ts} +2 -2
- package/src/store/class/{podcast.ts → general/podcast.ts} +2 -1
- package/src/store/class/general/sortPageable.ts +5 -0
- package/src/store/class/general/soundcastCategory.ts +8 -0
- package/src/store/class/ouestFrance/ofTag.ts +36 -0
- package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
- package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
- package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
- package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
- package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
- package/src/store/class/rss/aggregator.ts +28 -0
- package/src/store/class/rss/rssEmission.ts +14 -0
- package/src/store/class/rss/rssInfo.ts +8 -0
- package/src/store/class/{rubriquage.ts → rubrique/rubriquage.ts} +0 -0
- package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
- package/src/store/class/rubrique/rubrique.ts +8 -0
- package/src/store/class/stat/statArrayIncome.ts +6 -0
- package/src/store/class/stat/statArrayObject.ts +34 -0
- package/src/store/class/stat/statGraph.ts +7 -0
- package/src/store/class/{person.ts → user/person.ts} +2 -2
- package/src/store/class/user/profile.ts +12 -0
- package/src/store/class/user/userKeycloak.ts +24 -0
- package/src/store/paramStore.ts +8 -12
- package/src/store/typeAppStore.ts +10 -10
- package/src/store/class/comment.ts +0 -16
- package/src/store/class/conference.ts +0 -31
- package/src/store/class/customPlayer.ts +0 -8
- package/src/store/class/fetchParam.ts +0 -33
- package/src/store/class/media.ts +0 -14
- package/src/store/class/organisation.ts +0 -19
- package/src/store/class/rubriquageFilter.ts +0 -6
- package/src/store/class/rubrique.ts +0 -9
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export interface FetchParam{
|
|
2
|
-
first?: number,
|
|
3
|
-
size?: number,
|
|
4
|
-
organisationId?: string,
|
|
5
|
-
emissionId?: number,
|
|
6
|
-
podcastId?:number,
|
|
7
|
-
iabId?: number,
|
|
8
|
-
participantId?: number,
|
|
9
|
-
query?: string,
|
|
10
|
-
monetisable?: string,
|
|
11
|
-
sort?: string,
|
|
12
|
-
before?: string,
|
|
13
|
-
after?: string,
|
|
14
|
-
noRubriquageId?: Array<number>,
|
|
15
|
-
rubriqueId?:Array<number>,
|
|
16
|
-
rubriquageId?: Array<number>|number,
|
|
17
|
-
status?:Array<string>,
|
|
18
|
-
distributedBy?: string,
|
|
19
|
-
includeHidden?:boolean,
|
|
20
|
-
validity?:boolean,
|
|
21
|
-
publisherId?: string,
|
|
22
|
-
lang?:string,
|
|
23
|
-
start?:string,
|
|
24
|
-
end?:string,
|
|
25
|
-
interval?: string,
|
|
26
|
-
tzId?: string,
|
|
27
|
-
role?: string,
|
|
28
|
-
includeNotValid?: boolean,
|
|
29
|
-
type?: string,
|
|
30
|
-
listening?: string,
|
|
31
|
-
top?: number,
|
|
32
|
-
homePageOrder?:boolean,
|
|
33
|
-
}
|
package/src/store/class/media.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export interface Media{
|
|
2
|
-
audioUrl: string;
|
|
3
|
-
mediaId: number;
|
|
4
|
-
imageUrl?: string;
|
|
5
|
-
organisationId: string;
|
|
6
|
-
title: string;
|
|
7
|
-
year?: string;
|
|
8
|
-
type?: string;
|
|
9
|
-
artiste?: string;
|
|
10
|
-
album?: string;
|
|
11
|
-
creation?: string;
|
|
12
|
-
duration?: number;
|
|
13
|
-
filePath?: string;
|
|
14
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Person } from "./person";
|
|
2
|
-
|
|
3
|
-
export interface Organisation{
|
|
4
|
-
imageUrl: string;
|
|
5
|
-
admin?: Person;
|
|
6
|
-
comments?: string;
|
|
7
|
-
attributes?: {[key: string]:string|number|boolean|undefined}|undefined;
|
|
8
|
-
description?: string;
|
|
9
|
-
id: string;
|
|
10
|
-
location?: {
|
|
11
|
-
longitude: number;
|
|
12
|
-
latitude: number;
|
|
13
|
-
};
|
|
14
|
-
monetisable?: string;
|
|
15
|
-
name: string;
|
|
16
|
-
notSeenOnKeycloak?: number;
|
|
17
|
-
score?: number;
|
|
18
|
-
soundcastId?: string;
|
|
19
|
-
}
|