@saooti/octopus-sdk 37.0.5 → 37.0.7
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 +2 -2
- package/index.html +1 -0
- package/index.ts +21 -21
- package/package.json +26 -20
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +1 -1
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/montserrat/Montserrat-Black.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-BlackItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Bold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-BoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraBold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraLight.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraLightItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Italic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Light.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-LightItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Medium.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-MediumItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Regular.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-SemiBold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-SemiBoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Thin.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ThinItalic.ttf +0 -0
- package/public/css/fonts/montserrat/style.css +28 -0
- package/public/css/fonts/style.css +5 -5
- package/src/App.vue +69 -60
- package/src/api/classicCrud.ts +12 -12
- package/src/api/initialize.ts +1 -1
- package/src/assets/bootstrap.scss +9 -0
- package/src/assets/general.scss +1 -1
- package/src/assets/share.scss +1 -1
- package/src/components/display/aggregator/RssSection.vue +3 -3
- package/src/components/display/categories/CategoryChooser.vue +73 -60
- package/src/components/display/categories/CategoryFilter.vue +134 -90
- package/src/components/display/categories/CategoryList.vue +76 -62
- package/src/components/display/comments/AddCommentModal.vue +44 -44
- package/src/components/display/comments/CommentBasicView.vue +38 -30
- package/src/components/display/comments/CommentInput.vue +122 -110
- package/src/components/display/comments/CommentItem.vue +144 -102
- package/src/components/display/comments/CommentList.vue +117 -85
- package/src/components/display/comments/CommentParentInfo.vue +18 -15
- package/src/components/display/comments/CommentPlayer.vue +39 -41
- package/src/components/display/comments/CommentSection.vue +68 -53
- package/src/components/display/edit/EditBox.vue +7 -7
- package/src/components/display/edit/EditBoxRadio.vue +3 -4
- package/src/components/display/edit/EditCommentBox.vue +34 -36
- package/src/components/display/emission/EmissionInlineList.vue +75 -63
- package/src/components/display/emission/EmissionItem.vue +47 -35
- package/src/components/display/emission/EmissionList.vue +111 -83
- package/src/components/display/emission/EmissionPlayerItem.vue +89 -89
- package/src/components/display/filter/AdvancedSearch.vue +81 -73
- package/src/components/display/filter/CategorySearchFilter.vue +27 -25
- package/src/components/display/filter/DateFilter.vue +38 -38
- package/src/components/display/filter/MonetizableFilter.vue +16 -14
- package/src/components/display/filter/ProductorSearch.vue +55 -47
- package/src/components/display/filter/RubriqueChoice.vue +42 -27
- package/src/components/display/filter/RubriqueFilter.vue +130 -85
- package/src/components/display/filter/SearchOrder.vue +16 -11
- package/src/components/display/list/ListPaginate.vue +72 -70
- package/src/components/display/list/PaginateParams.vue +29 -30
- package/src/components/display/list/PaginateSection.vue +210 -0
- package/src/components/display/list/SwiperList.vue +28 -32
- package/src/components/display/live/CountDown.vue +12 -14
- package/src/components/display/live/LiveHorizontalList.vue +60 -50
- package/src/components/display/live/LiveItem.vue +42 -26
- package/src/components/display/live/LiveList.vue +92 -65
- package/src/components/display/live/RadioCurrently.vue +47 -42
- package/src/components/display/live/RadioImage.vue +40 -42
- package/src/components/display/live/RadioItem.vue +15 -22
- package/src/components/display/live/RadioList.vue +24 -21
- package/src/components/display/live/RadioPlanning.vue +105 -68
- package/src/components/display/organisation/OrganisationChooser.vue +58 -42
- package/src/components/display/organisation/OrganisationChooserLight.vue +27 -19
- package/src/components/display/participant/ParticipantItem.vue +89 -76
- package/src/components/display/participant/ParticipantList.vue +90 -60
- package/src/components/display/playlist/PlaylistItem.vue +32 -35
- package/src/components/display/playlist/PlaylistList.vue +70 -52
- package/src/components/display/playlist/PodcastList.vue +61 -50
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +47 -38
- package/src/components/display/podcasts/AnimatorsItem.vue +17 -15
- package/src/components/display/podcasts/ParticipantDescription.vue +21 -22
- package/src/components/display/podcasts/PodcastFilterList.vue +28 -26
- package/src/components/display/podcasts/PodcastImage.vue +129 -138
- package/src/components/display/podcasts/PodcastInlineList.vue +33 -29
- package/src/components/display/podcasts/PodcastInlineListClassic.vue +91 -71
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +94 -85
- package/src/components/display/podcasts/PodcastItem.vue +96 -90
- package/src/components/display/podcasts/PodcastItemInfo.vue +63 -65
- package/src/components/display/podcasts/PodcastList.vue +115 -84
- package/src/components/display/podcasts/PodcastModuleBox.vue +95 -104
- package/src/components/display/podcasts/PodcastPlayBar.vue +45 -32
- package/src/components/display/podcasts/PodcastSwiperList.vue +65 -55
- package/src/components/display/podcasts/TagList.vue +33 -37
- package/src/components/display/rubriques/RubriqueChooser.vue +70 -51
- package/src/components/display/rubriques/RubriqueList.vue +117 -89
- package/src/components/display/sharing/PlayerParameters.vue +45 -42
- package/src/components/display/sharing/QrCode.vue +52 -46
- package/src/components/display/sharing/ShareButtons.vue +25 -27
- package/src/components/display/sharing/ShareButtonsIntern.vue +182 -155
- package/src/components/display/sharing/ShareDistribution.vue +101 -67
- package/src/components/display/sharing/SharePlayer.vue +207 -127
- package/src/components/display/sharing/SharePlayerColors.vue +15 -15
- package/src/components/display/sharing/SharePlayerRadio.vue +62 -39
- package/src/components/display/sharing/SharePlayerTypes.vue +93 -55
- package/src/components/display/sharing/SubscribeButtons.vue +83 -32
- package/src/components/display/studio/RecordingItemButton.vue +3 -3
- package/src/components/form/ClassicCheckbox.vue +32 -31
- package/src/components/form/ClassicDatePicker.vue +47 -49
- package/src/components/form/ClassicInputText.vue +99 -98
- package/src/components/form/ClassicLoading.vue +11 -14
- package/src/components/form/ClassicMultiselect.vue +125 -126
- package/src/components/form/ClassicRadio.vue +15 -18
- package/src/components/form/ClassicSearch.vue +17 -23
- package/src/components/form/ClassicSelect.vue +35 -27
- package/src/components/form/{Wysiwyg.vue → ClassicWysiwyg.vue} +94 -109
- package/src/components/misc/AcpmImage.vue +26 -0
- package/src/components/misc/ClassicAccordion.vue +69 -0
- package/src/components/misc/ClassicNav.vue +117 -0
- package/src/components/misc/ClassicPopover.vue +212 -0
- package/src/components/misc/{Spinner.vue → ClassicSpinner.vue} +14 -15
- package/src/components/misc/ErrorMessage.vue +9 -17
- package/src/components/misc/FooterSection.vue +198 -0
- package/src/components/misc/HomeDropdown.vue +67 -64
- package/src/components/misc/LeftMenu.vue +115 -79
- package/src/components/misc/ProgressBar.vue +36 -32
- package/src/components/misc/SnackBar.vue +169 -0
- package/src/components/misc/TopBar.vue +161 -115
- package/src/components/misc/modal/ClassicModal.vue +99 -103
- package/src/components/misc/modal/ClipboardModal.vue +21 -23
- package/src/components/misc/modal/MessageModal.vue +22 -28
- package/src/components/misc/modal/NewsletterModal.vue +139 -113
- package/src/components/misc/modal/QrCodeModal.vue +14 -17
- package/src/components/misc/modal/ShareModalPlayer.vue +44 -60
- package/src/components/misc/player/PlayerCompact.vue +47 -62
- package/src/components/misc/player/{Player.vue → PlayerComponent.vue} +54 -46
- package/src/components/misc/player/PlayerLarge.vue +66 -62
- package/src/components/misc/player/PlayerProgressBar.vue +40 -30
- package/src/components/misc/player/PlayerTimeline.vue +32 -36
- package/src/components/misc/player/radio/RadioHistory.vue +62 -59
- package/src/components/misc/player/radio/RadioProgressBar.vue +44 -35
- package/src/components/mixins/cookies.ts +11 -10
- package/src/components/mixins/displayMethods.ts +5 -4
- package/src/components/mixins/handle403.ts +9 -9
- package/src/components/mixins/imageProxy.ts +14 -7
- package/src/components/mixins/init.ts +31 -16
- package/src/components/mixins/orgaComputed.ts +7 -7
- package/src/components/mixins/organisationFilter.ts +36 -22
- package/src/components/mixins/player/playerComment.ts +46 -37
- package/src/components/mixins/player/playerDisplay.ts +122 -87
- package/src/components/mixins/player/playerLive.ts +65 -43
- package/src/components/mixins/player/playerLogic.ts +133 -88
- package/src/components/mixins/player/playerTranscript.ts +48 -30
- package/src/components/mixins/radio/fetchRadioData.ts +40 -23
- package/src/components/mixins/selenium.ts +2 -2
- package/src/components/mixins/tagOfMixins.ts +11 -11
- package/src/components/pages/CategoryPage.vue +43 -0
- package/src/components/pages/{Emission.vue → EmissionPage.vue} +98 -67
- package/src/components/pages/{Emissions.vue → EmissionsPage.vue} +51 -44
- package/src/components/pages/Error403Page.vue +20 -19
- package/src/components/pages/HomePage.vue +144 -0
- package/src/components/pages/LivesPage.vue +66 -0
- package/src/components/pages/PageNotFound.vue +33 -22
- package/src/components/pages/{Participant.vue → ParticipantPage.vue} +63 -49
- package/src/components/pages/{Participants.vue → ParticipantsPage.vue} +9 -9
- package/src/components/pages/PlaylistPage.vue +175 -0
- package/src/components/pages/{Playlists.vue → PlaylistsPage.vue} +16 -14
- package/src/components/pages/PodcastPage.vue +365 -0
- package/src/components/pages/PodcastsPage.vue +152 -0
- package/src/components/pages/RadioPage.vue +131 -0
- package/src/components/pages/RubriquePage.vue +45 -0
- package/src/components/pages/{Search.vue → SearchPage.vue} +19 -19
- package/src/helper/dom.ts +1 -1
- package/src/helper/duration.ts +10 -4
- package/src/helper/useEventListener.ts +7 -8
- package/src/i18n.ts +31 -30
- package/src/locale/de.ts +263 -257
- package/src/locale/educationen.ts +13 -13
- package/src/locale/educationfr.ts +1 -1
- package/src/locale/en.ts +323 -324
- package/src/locale/es.ts +325 -318
- package/src/locale/fr.ts +330 -324
- package/src/locale/it.ts +332 -328
- package/src/locale/messages.ts +9 -9
- package/src/locale/sl.ts +315 -319
- package/src/main.ts +28 -31
- package/src/router/router.ts +218 -198
- package/src/shims-tsx.d.ts +1 -1
- package/src/shims-vue.d.ts +1 -1
- package/src/stores/ApiStore.ts +44 -44
- package/src/stores/AuthStore.ts +24 -16
- package/src/stores/CommentStore.ts +13 -11
- package/src/stores/FilterStore.ts +25 -15
- package/src/stores/GeneralStore.ts +15 -15
- package/src/stores/ParamSdkStore.ts +179 -137
- package/src/stores/PlayerStore.ts +139 -125
- package/src/stores/class/adserver/adserverConfig.ts +1 -1
- package/src/stores/class/adserver/adserverOtherEmission.ts +9 -9
- package/src/stores/class/cartouchier/cartouche.ts +4 -4
- package/src/stores/class/cartouchier/cartouchier.ts +2 -2
- package/src/stores/class/conference/conference.ts +10 -9
- package/src/stores/class/conference/conferenceMessage.ts +2 -2
- package/src/stores/class/conference/conferenceParticipant.ts +1 -1
- package/src/stores/class/conference/studioCall.ts +6 -6
- package/src/stores/class/contract/contractOrganisation.ts +5 -5
- package/src/stores/class/ftp/ftpEmission.ts +9 -9
- package/src/stores/class/ftp/testFtpEmission.ts +4 -4
- package/src/stores/class/general/audioView.ts +19 -19
- package/src/stores/class/general/category.ts +1 -1
- package/src/stores/class/general/classicSelectType.ts +2 -3
- package/src/stores/class/general/customPlayer.ts +8 -8
- package/src/stores/class/general/emission.ts +20 -21
- package/src/stores/class/general/fetchParam.ts +8 -2
- package/src/stores/class/general/initState.ts +31 -31
- package/src/stores/class/general/interfacePageable.ts +13 -13
- package/src/stores/class/general/ituneCategory.ts +4 -4
- package/src/stores/class/general/listReturn.ts +12 -12
- package/src/stores/class/general/media.ts +7 -7
- package/src/stores/class/general/organisation.ts +9 -10
- package/src/stores/class/general/pageable.ts +10 -10
- package/src/stores/class/general/participant.ts +7 -7
- package/src/stores/class/general/player.ts +30 -28
- package/src/stores/class/general/playlist.ts +17 -19
- package/src/stores/class/general/podcast.ts +19 -19
- package/src/stores/class/general/sortPageable.ts +4 -4
- package/src/stores/class/general/soundcastCategory.ts +7 -7
- package/src/stores/class/ouestFrance/ofTag.ts +34 -34
- package/src/stores/class/ouestFrance/ofTagInfo.ts +9 -9
- package/src/stores/class/ouestFrance/ofTagPage.ts +7 -7
- package/src/stores/class/ouestFrance/ofTagSeo.ts +7 -7
- package/src/stores/class/ouestFrance/ofTagVente.ts +6 -6
- package/src/stores/class/ouestFrance/ofTagWithParents.ts +20 -20
- package/src/stores/class/radio/canal.ts +4 -4
- package/src/stores/class/radio/live.ts +6 -6
- package/src/stores/class/radio/mix.ts +16 -16
- package/src/stores/class/radio/playlistMedia.ts +7 -7
- package/src/stores/class/radio/recurrence.ts +54 -54
- package/src/stores/class/rss/rssEmission.ts +13 -13
- package/src/stores/class/rss/rssInfo.ts +7 -7
- package/src/stores/class/rubrique/rubriquage.ts +2 -2
- package/src/stores/class/rubrique/rubrique.ts +1 -1
- package/src/stores/class/stat/statArrayIncome.ts +5 -5
- package/src/stores/class/stat/statArrayObject.ts +26 -26
- package/src/stores/class/stat/statGraph.ts +6 -6
- package/src/stores/class/user/person.ts +4 -2
- package/src/stores/class/user/profile.ts +4 -2
- package/src/stores/class/user/userKeycloak.ts +4 -5
- package/src/components/display/list/Paginate.vue +0 -181
- package/src/components/misc/Accordion.vue +0 -78
- package/src/components/misc/Footer.vue +0 -165
- package/src/components/misc/Nav.vue +0 -119
- package/src/components/misc/Popover.vue +0 -193
- package/src/components/misc/Snackbar.vue +0 -168
- package/src/components/pages/Category.vue +0 -41
- package/src/components/pages/Home.vue +0 -125
- package/src/components/pages/Lives.vue +0 -64
- package/src/components/pages/Playlist.vue +0 -164
- package/src/components/pages/Podcast.vue +0 -307
- package/src/components/pages/Podcasts.vue +0 -146
- package/src/components/pages/Radio.vue +0 -122
- package/src/components/pages/Rubrique.vue +0 -42
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
export interface InitState {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
2
|
+
accessToken: string;
|
|
3
|
+
accessTokenUri: string;
|
|
4
|
+
apiUri: string;
|
|
5
|
+
billingUri: string;
|
|
6
|
+
authenticated: boolean;
|
|
7
|
+
captchaDevelopmentProfil: boolean;
|
|
8
|
+
clientId: string;
|
|
9
|
+
commentsUri: string;
|
|
10
|
+
expiration: string;
|
|
11
|
+
frontendUri: string;
|
|
12
|
+
goodNewsOrgaId: string;
|
|
13
|
+
imageUri: string;
|
|
14
|
+
speechToTextUri: string;
|
|
15
|
+
textToSpeechUri: string;
|
|
16
|
+
radioUri: string;
|
|
17
|
+
hlsUri: string;
|
|
18
|
+
videomakerUri: string;
|
|
19
|
+
recoUri: string;
|
|
20
|
+
importerUri: string;
|
|
21
|
+
isEducation: boolean;
|
|
22
|
+
keycloakApiUri: string;
|
|
23
|
+
mediaUri: string;
|
|
24
|
+
name: string;
|
|
25
|
+
playerUri: string;
|
|
26
|
+
processorUri: string;
|
|
27
|
+
refreshToken: string;
|
|
28
|
+
role: Array<string>;
|
|
29
|
+
rtmpUri: string;
|
|
30
|
+
storageUri: string;
|
|
31
|
+
studioUri: string;
|
|
32
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Pageable } from "./pageable";
|
|
2
2
|
import { SortPageable } from "./sortPageable";
|
|
3
3
|
|
|
4
|
-
export interface InterfacePageable<T>{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
4
|
+
export interface InterfacePageable<T> {
|
|
5
|
+
content: Array<T>;
|
|
6
|
+
empty: boolean;
|
|
7
|
+
first: boolean;
|
|
8
|
+
last: boolean;
|
|
9
|
+
number: number;
|
|
10
|
+
numberOfElements: number;
|
|
11
|
+
pageable: Pageable;
|
|
12
|
+
size: number;
|
|
13
|
+
sort: SortPageable;
|
|
14
|
+
totalElements: number;
|
|
15
|
+
totalPages: number;
|
|
16
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export interface ItuneCategory {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
2
|
+
level1: string;
|
|
3
|
+
level2?: string;
|
|
4
|
+
id?: number;
|
|
5
|
+
}
|
|
@@ -2,15 +2,15 @@ import { Pageable } from "./pageable";
|
|
|
2
2
|
import { SortPageable } from "./sortPageable";
|
|
3
3
|
|
|
4
4
|
export interface ListReturn<T> {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
5
|
+
content: T;
|
|
6
|
+
empty: boolean;
|
|
7
|
+
first: boolean;
|
|
8
|
+
last: boolean;
|
|
9
|
+
number: number;
|
|
10
|
+
numberOfElements: number;
|
|
11
|
+
pageable: Pageable;
|
|
12
|
+
size: number;
|
|
13
|
+
sort: SortPageable;
|
|
14
|
+
totalElements: number;
|
|
15
|
+
totalPages: number;
|
|
16
|
+
}
|
|
@@ -16,13 +16,13 @@ export interface Media {
|
|
|
16
16
|
bpm?: number;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
export function emptyMediaData(): Media{
|
|
19
|
+
export function emptyMediaData(): Media {
|
|
20
20
|
return {
|
|
21
21
|
mediaId: 0,
|
|
22
|
-
album:
|
|
23
|
-
artiste:
|
|
24
|
-
title:
|
|
25
|
-
type:
|
|
26
|
-
year:
|
|
27
|
-
}
|
|
22
|
+
album: "",
|
|
23
|
+
artiste: "",
|
|
24
|
+
title: "",
|
|
25
|
+
type: "",
|
|
26
|
+
year: "",
|
|
27
|
+
};
|
|
28
28
|
}
|
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
import { Person } from "../user/person";
|
|
2
2
|
|
|
3
|
-
export interface Organisation{
|
|
3
|
+
export interface Organisation {
|
|
4
4
|
imageUrl: string;
|
|
5
5
|
admin?: Person;
|
|
6
6
|
comments?: string;
|
|
7
|
-
attributes?: {[key: string]:string|number|boolean|undefined};
|
|
7
|
+
attributes?: { [key: string]: string | number | boolean | undefined };
|
|
8
8
|
description?: string;
|
|
9
9
|
id: string;
|
|
10
10
|
location?: {
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
longitude: number;
|
|
12
|
+
latitude: number;
|
|
13
13
|
};
|
|
14
14
|
monetisable?: string;
|
|
15
15
|
name: string;
|
|
16
16
|
notSeenOnKeycloak?: number;
|
|
17
17
|
score?: number;
|
|
18
|
-
|
|
19
|
-
privacy?:string;
|
|
18
|
+
privacy?: string;
|
|
20
19
|
}
|
|
21
20
|
|
|
22
|
-
export function emptyOrgaData(defaultName: string): Organisation{
|
|
21
|
+
export function emptyOrgaData(defaultName: string): Organisation {
|
|
23
22
|
return {
|
|
24
23
|
imageUrl: "/img/emptypodcast.webp",
|
|
25
24
|
id: "",
|
|
26
|
-
name: defaultName
|
|
27
|
-
}
|
|
28
|
-
}
|
|
25
|
+
name: defaultName,
|
|
26
|
+
};
|
|
27
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { SortPageable } from "./sortPageable";
|
|
2
2
|
|
|
3
3
|
export interface Pageable {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
4
|
+
offset: number;
|
|
5
|
+
pageNumber: number;
|
|
6
|
+
pageSize: number;
|
|
7
|
+
paged: boolean;
|
|
8
|
+
sort: SortPageable;
|
|
9
|
+
empty: boolean;
|
|
10
|
+
sorted: boolean;
|
|
11
|
+
unsorted: boolean;
|
|
12
|
+
unpaged: boolean;
|
|
13
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Organisation } from
|
|
1
|
+
import { Organisation } from "./organisation";
|
|
2
2
|
|
|
3
3
|
export interface Participant {
|
|
4
4
|
imageUrl?: string;
|
|
@@ -10,10 +10,10 @@ export interface Participant {
|
|
|
10
10
|
score?: number;
|
|
11
11
|
uid?: string;
|
|
12
12
|
}
|
|
13
|
-
export function emptyParticipantData(): Participant{
|
|
13
|
+
export function emptyParticipantData(): Participant {
|
|
14
14
|
return {
|
|
15
|
-
firstName:
|
|
16
|
-
lastName:
|
|
17
|
-
participantId:0
|
|
18
|
-
}
|
|
19
|
-
}
|
|
15
|
+
firstName: "",
|
|
16
|
+
lastName: "",
|
|
17
|
+
participantId: 0,
|
|
18
|
+
};
|
|
19
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Media } from "./media";
|
|
2
2
|
import { Podcast } from "./podcast";
|
|
3
3
|
|
|
4
|
-
export interface Radio{
|
|
4
|
+
export interface Radio {
|
|
5
5
|
canalId: number;
|
|
6
6
|
url: string;
|
|
7
7
|
metadata: MediaRadio;
|
|
@@ -9,34 +9,36 @@ export interface Radio{
|
|
|
9
9
|
isInit: boolean;
|
|
10
10
|
podcast?: Podcast;
|
|
11
11
|
}
|
|
12
|
-
export interface MediaRadio{
|
|
13
|
-
artist:string;
|
|
14
|
-
mediaId?:number;
|
|
15
|
-
podcastId:number;
|
|
16
|
-
startDate:string;
|
|
17
|
-
title:string;
|
|
18
|
-
mediaDuration: number
|
|
19
|
-
playDuration: number
|
|
12
|
+
export interface MediaRadio {
|
|
13
|
+
artist: string;
|
|
14
|
+
mediaId?: number;
|
|
15
|
+
podcastId: number;
|
|
16
|
+
startDate: string;
|
|
17
|
+
title: string;
|
|
18
|
+
mediaDuration: number;
|
|
19
|
+
playDuration: number;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
export interface MetadataRadio{
|
|
23
|
-
channelId:number;
|
|
24
|
-
currently:MediaRadio;
|
|
25
|
-
previously:Array<MediaRadio>;
|
|
22
|
+
export interface MetadataRadio {
|
|
23
|
+
channelId: number;
|
|
24
|
+
currently: MediaRadio;
|
|
25
|
+
previously: Array<MediaRadio>;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
28
|
+
export interface Player {
|
|
29
|
+
status: string; //STOPPED, LOADING, PLAYING, PAUSED
|
|
30
|
+
podcast: Podcast | undefined;
|
|
31
|
+
volume?: number; //From 0 to 1
|
|
32
|
+
elapsed?: number; //From 0 to 1
|
|
33
|
+
total?: number;
|
|
34
|
+
media: Media | undefined;
|
|
35
|
+
live: Podcast | undefined;
|
|
36
|
+
radio: Radio | undefined;
|
|
37
|
+
stop?: boolean;
|
|
38
|
+
seekTime?: number;
|
|
39
|
+
transcript?: {
|
|
40
|
+
actual: number;
|
|
41
|
+
actualText: string;
|
|
42
|
+
value: Array<{ endTime: number; startTime: number; text: string }>;
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { Organisation } from
|
|
2
|
-
import { Person } from
|
|
3
|
-
import { FetchParam } from
|
|
4
|
-
|
|
1
|
+
import { Organisation } from "./organisation";
|
|
2
|
+
import { Person } from "../user/person";
|
|
3
|
+
import { FetchParam } from "./fetchParam";
|
|
5
4
|
|
|
6
5
|
export interface Playlist {
|
|
7
6
|
ambianceType?: string; //#11919 "NONE", "AMBIANCE", "PROGRAMMED"
|
|
@@ -17,32 +16,31 @@ export interface Playlist {
|
|
|
17
16
|
publisher?: Person;
|
|
18
17
|
}
|
|
19
18
|
|
|
20
|
-
export function emptyPlaylistData(): Playlist{
|
|
19
|
+
export function emptyPlaylistData(): Playlist {
|
|
21
20
|
return {
|
|
22
|
-
ambianceType:"NONE",
|
|
23
|
-
description:
|
|
21
|
+
ambianceType: "NONE",
|
|
22
|
+
description: "",
|
|
24
23
|
playlistId: 0,
|
|
25
24
|
podcasts: undefined,
|
|
26
25
|
score: 0,
|
|
27
|
-
title:
|
|
28
|
-
type:
|
|
29
|
-
samplingViews:[]
|
|
30
|
-
}
|
|
26
|
+
title: "",
|
|
27
|
+
type: "DYNAMIC",
|
|
28
|
+
samplingViews: [],
|
|
29
|
+
};
|
|
31
30
|
}
|
|
32
31
|
|
|
33
|
-
|
|
34
32
|
export interface PlaylistRule {
|
|
35
|
-
maxSize: number
|
|
36
|
-
podcastId?: number
|
|
37
|
-
query?: FetchParam
|
|
38
|
-
type?:string
|
|
39
|
-
title?: string
|
|
33
|
+
maxSize: number;
|
|
34
|
+
podcastId?: number;
|
|
35
|
+
query?: FetchParam;
|
|
36
|
+
type?: string;
|
|
37
|
+
title?: string;
|
|
40
38
|
}
|
|
41
39
|
|
|
42
|
-
export function emptyPlaylistRule(): PlaylistRule{
|
|
40
|
+
export function emptyPlaylistRule(): PlaylistRule {
|
|
43
41
|
return {
|
|
44
42
|
maxSize: 1,
|
|
45
43
|
query: {},
|
|
46
44
|
title: undefined,
|
|
47
|
-
}
|
|
45
|
+
};
|
|
48
46
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { Emission, emptyEmissionData } from
|
|
2
|
-
import { Organisation } from
|
|
3
|
-
import { Participant } from
|
|
4
|
-
import { Person } from
|
|
1
|
+
import { Emission, emptyEmissionData } from "./emission";
|
|
2
|
+
import { Organisation } from "./organisation";
|
|
3
|
+
import { Participant } from "./participant";
|
|
4
|
+
import { Person } from "../user/person";
|
|
5
5
|
export interface Podcast {
|
|
6
6
|
imageUrl?: string;
|
|
7
7
|
animators?: Array<Participant>;
|
|
8
|
-
annotations?:{[key: string]:string|number|boolean|undefined};
|
|
8
|
+
annotations?: { [key: string]: string | number | boolean | undefined };
|
|
9
9
|
audioStorageUrl: string;
|
|
10
10
|
audioUrl: string;
|
|
11
11
|
article?: string;
|
|
12
12
|
availability: {
|
|
13
|
-
date?: number|null;
|
|
13
|
+
date?: number | null;
|
|
14
14
|
visibility?: boolean;
|
|
15
15
|
immediate?: boolean;
|
|
16
16
|
};
|
|
@@ -35,37 +35,37 @@ export interface Podcast {
|
|
|
35
35
|
score?: number;
|
|
36
36
|
size?: number;
|
|
37
37
|
tags?: Array<string>;
|
|
38
|
-
ofTags
|
|
38
|
+
ofTags?: Array<string>;
|
|
39
39
|
title: string;
|
|
40
40
|
weekDownloadCount?: number;
|
|
41
41
|
order?: number;
|
|
42
42
|
}
|
|
43
43
|
export function emptyPodcastData(): Podcast {
|
|
44
44
|
return {
|
|
45
|
-
podcastId:0,
|
|
46
|
-
audioUrl:
|
|
47
|
-
audioStorageUrl:
|
|
48
|
-
article:
|
|
49
|
-
imageUrl:
|
|
45
|
+
podcastId: 0,
|
|
46
|
+
audioUrl: "",
|
|
47
|
+
audioStorageUrl: "",
|
|
48
|
+
article: "",
|
|
49
|
+
imageUrl: "",
|
|
50
50
|
animators: [],
|
|
51
51
|
guests: [],
|
|
52
52
|
emission: emptyEmissionData(),
|
|
53
|
-
title:
|
|
53
|
+
title: "",
|
|
54
54
|
description: undefined,
|
|
55
55
|
tags: [],
|
|
56
56
|
availability: {
|
|
57
57
|
visibility: true,
|
|
58
58
|
date: undefined,
|
|
59
59
|
},
|
|
60
|
-
monetisable:
|
|
61
|
-
comments:
|
|
60
|
+
monetisable: "UNDEFINED",
|
|
61
|
+
comments: "inherit",
|
|
62
62
|
organisation: {
|
|
63
|
-
id:
|
|
64
|
-
name:
|
|
65
|
-
imageUrl:
|
|
63
|
+
id: "",
|
|
64
|
+
name: "",
|
|
65
|
+
imageUrl: "",
|
|
66
66
|
},
|
|
67
67
|
pubDate: undefined,
|
|
68
68
|
conferenceId: 0,
|
|
69
69
|
duration: 0,
|
|
70
70
|
};
|
|
71
|
-
}
|
|
71
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export interface SortPageable {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
2
|
+
empty: boolean;
|
|
3
|
+
sorted: boolean;
|
|
4
|
+
unsorted: boolean;
|
|
5
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export interface SoundcastCategory {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
2
|
+
content_category_id: number;
|
|
3
|
+
content_category_name: string;
|
|
4
|
+
name: string;
|
|
5
|
+
network_id: string;
|
|
6
|
+
site_id: string;
|
|
7
|
+
uuid: string;
|
|
8
|
+
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
export interface OfTag{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
export interface OfTag {
|
|
2
|
+
actif: boolean;
|
|
3
|
+
chemin: string;
|
|
4
|
+
dateMaj: string;
|
|
5
|
+
entites: Array<string>;
|
|
6
|
+
id: string;
|
|
7
|
+
idDrupal: string;
|
|
8
|
+
ignoreCommuneInactive: boolean;
|
|
9
|
+
ignorePage: boolean;
|
|
10
|
+
ignorePush: boolean;
|
|
11
|
+
ignoreSeo: boolean;
|
|
12
|
+
noms: Array<string>;
|
|
13
|
+
redactions: Array<string>;
|
|
14
|
+
slug: string;
|
|
15
|
+
source: string;
|
|
16
|
+
version: number;
|
|
17
17
|
}
|
|
18
18
|
export function emptyOfTag(): OfTag {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
19
|
+
return {
|
|
20
|
+
actif: false,
|
|
21
|
+
chemin: "",
|
|
22
|
+
dateMaj: "",
|
|
23
|
+
entites: [],
|
|
24
|
+
id: "fakeTag",
|
|
25
|
+
idDrupal: "fakeTag",
|
|
26
|
+
ignoreCommuneInactive: false,
|
|
27
|
+
ignorePage: false,
|
|
28
|
+
ignorePush: false,
|
|
29
|
+
ignoreSeo: false,
|
|
30
|
+
noms: [],
|
|
31
|
+
redactions: [],
|
|
32
|
+
slug: "",
|
|
33
|
+
source: "",
|
|
34
|
+
version: 0,
|
|
35
|
+
};
|
|
36
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export interface OfTagInfo{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
1
|
+
export interface OfTagInfo {
|
|
2
|
+
communeInactive: boolean;
|
|
3
|
+
dateMaj: string;
|
|
4
|
+
id: string;
|
|
5
|
+
utilisationDebut: string;
|
|
6
|
+
utilisationFin: string;
|
|
7
|
+
utilisationNbArticles: number;
|
|
8
|
+
version: number;
|
|
9
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface OfTagPage{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
1
|
+
export interface OfTagPage {
|
|
2
|
+
dateMaj: string;
|
|
3
|
+
id: string;
|
|
4
|
+
titre: string;
|
|
5
|
+
type: string;
|
|
6
|
+
version: number;
|
|
7
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface OfTagSeo{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
1
|
+
export interface OfTagSeo {
|
|
2
|
+
dateMaj: string;
|
|
3
|
+
description: string;
|
|
4
|
+
id: string;
|
|
5
|
+
titre: string;
|
|
6
|
+
version: number;
|
|
7
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export interface OfTagVente{
|
|
2
|
-
dateMaj: string;
|
|
3
|
-
id: string;
|
|
4
|
-
version: number;
|
|
5
|
-
zoneCommerciale: string;
|
|
6
|
-
}
|
|
1
|
+
export interface OfTagVente {
|
|
2
|
+
dateMaj: string;
|
|
3
|
+
id: string;
|
|
4
|
+
version: number;
|
|
5
|
+
zoneCommerciale: string;
|
|
6
|
+
}
|
|
@@ -4,23 +4,23 @@ import { OfTagPage } from "./ofTagPage";
|
|
|
4
4
|
import { OfTagSeo } from "./ofTagSeo";
|
|
5
5
|
import { OfTagVente } from "./ofTagVente";
|
|
6
6
|
|
|
7
|
-
export interface OfTagWithParents{
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
7
|
+
export interface OfTagWithParents {
|
|
8
|
+
ancetreIds: string;
|
|
9
|
+
ancetreNoms: Array<string>;
|
|
10
|
+
ancetreNomsCanoniques: Array<string>;
|
|
11
|
+
dateMaj: string;
|
|
12
|
+
id: string;
|
|
13
|
+
nbAncetres: number;
|
|
14
|
+
nbEnfants: number;
|
|
15
|
+
pageManquant: boolean;
|
|
16
|
+
pushManquant: boolean;
|
|
17
|
+
pushPossible: string;
|
|
18
|
+
role: string;
|
|
19
|
+
seoManquant: boolean;
|
|
20
|
+
tag: OfTag;
|
|
21
|
+
tagInfo: OfTagInfo;
|
|
22
|
+
tagPage: OfTagPage;
|
|
23
|
+
tagSeo: OfTagSeo;
|
|
24
|
+
tagVente: OfTagVente;
|
|
25
|
+
version: number;
|
|
26
|
+
}
|