@clickview/curator 1.0.14 → 1.0.15-dev.0
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/dist/curator-app.css +10 -2
- package/dist/curator-app.css.map +1 -0
- package/dist/curator-app.js +1 -1
- package/dist/curator-app.js.map +1 -0
- package/dist/en.json +1 -1
- package/dist/libs/analytics/src/enums/RegionName.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +236 -0
- package/dist/libs/analytics/src/interfaces/Config.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Folder.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/HashObject.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Owner.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Playlist.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Rating.d.ts +4 -0
- package/dist/libs/analytics/src/interfaces/Region.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/RegionalUrl.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/Resource.d.ts +5 -0
- package/dist/libs/analytics/src/interfaces/Series.d.ts +3 -0
- package/dist/libs/analytics/src/interfaces/Subtitle.d.ts +4 -0
- package/dist/libs/analytics/src/interfaces/User.d.ts +6 -0
- package/dist/libs/analytics/src/interfaces/Video.d.ts +16 -0
- package/dist/libs/analytics/src/interfaces/index.d.ts +15 -0
- package/dist/libs/analytics/src/interfaces/primitives/BaseObject.d.ts +7 -0
- package/dist/libs/common/src/backbone/constants/Caches.d.ts +3 -0
- package/dist/libs/common/src/backbone/constants/CommonChannels.d.ts +5 -0
- package/dist/libs/common/src/backbone/constants/CommonServices.d.ts +5 -0
- package/dist/libs/common/src/backbone/constants/DataProviders.d.ts +4 -0
- package/dist/libs/common/src/backbone/core/AppLink.d.ts +37 -0
- package/dist/libs/common/src/backbone/core/BaseAppRouter.d.ts +95 -0
- package/dist/libs/common/src/backbone/core/BaseApplication.d.ts +76 -0
- package/dist/libs/common/src/backbone/core/BaseBehavior.d.ts +6 -0
- package/dist/libs/common/src/backbone/core/BaseCollection.d.ts +7 -0
- package/dist/libs/common/src/backbone/core/BaseCollectionView.d.ts +16 -0
- package/dist/libs/common/src/backbone/core/BaseError.d.ts +18 -0
- package/dist/libs/common/src/backbone/core/BaseLayoutView.d.ts +11 -0
- package/dist/libs/common/src/backbone/core/BaseModel.d.ts +27 -0
- package/dist/libs/common/src/backbone/core/BaseNestedModel.d.ts +21 -0
- package/dist/libs/common/src/backbone/core/BaseService.d.ts +10 -0
- package/dist/libs/common/src/backbone/core/BaseView.d.ts +127 -0
- package/dist/libs/common/src/backbone/core/EventNames.d.ts +16 -0
- package/dist/libs/common/src/backbone/core/LayoutService.d.ts +31 -0
- package/dist/libs/common/src/backbone/core/ListenToRadio.d.ts +3 -0
- package/dist/libs/common/src/backbone/core/LocationUtils.d.ts +23 -0
- package/dist/libs/common/src/backbone/core/Middleware.d.ts +10 -0
- package/dist/libs/common/src/backbone/core/Shell.d.ts +79 -0
- package/dist/libs/common/src/backbone/core/Types.d.ts +12 -0
- package/dist/libs/common/src/backbone/core/index.d.ts +18 -0
- package/dist/libs/common/src/backbone/enums/DataServiceErrorType.d.ts +8 -0
- package/dist/libs/common/src/backbone/enums/HttpStatus.d.ts +10 -0
- package/dist/libs/common/src/backbone/enums/HttpVerbs.d.ts +6 -0
- package/dist/libs/common/src/backbone/errors/DevError.d.ts +4 -0
- package/dist/libs/common/src/backbone/index.d.ts +2 -0
- package/dist/libs/common/src/backbone/interfaces/BaseCollectionIdentifier.d.ts +18 -0
- package/dist/libs/common/src/backbone/interfaces/ChainableDataService.d.ts +9 -0
- package/dist/libs/common/src/backbone/interfaces/DataCache.d.ts +8 -0
- package/dist/libs/common/src/backbone/interfaces/DataProvider.d.ts +15 -0
- package/dist/libs/common/src/backbone/interfaces/DataServiceError.d.ts +7 -0
- package/dist/libs/common/src/backbone/interfaces/DataServiceRequests.d.ts +218 -0
- package/dist/libs/common/src/backbone/interfaces/Pagination.d.ts +33 -0
- package/dist/libs/common/src/backbone/interfaces/StickitBinding.d.ts +38 -0
- package/dist/libs/common/src/backbone/interfaces/Xhr.d.ts +9 -0
- package/dist/libs/common/src/backbone/interfaces/index.d.ts +9 -0
- package/dist/libs/common/src/backbone/services/BaseAlertService.d.ts +69 -0
- package/dist/libs/common/src/backbone/services/BaseDataService.d.ts +82 -0
- package/dist/libs/common/src/backbone/services/EnvironmentVariables.d.ts +13 -0
- package/dist/libs/common/src/backbone/services/InstanceManager.d.ts +33 -0
- package/dist/libs/common/src/backbone/services/LanguageService.d.ts +22 -0
- package/dist/libs/common/src/backbone/services/caches/FifoMemoryCache.d.ts +20 -0
- package/dist/libs/common/src/backbone/services/data-providers/AjaxDataProvider.d.ts +31 -0
- package/dist/libs/common/src/backbone/utils/ConcurrencyHelper.d.ts +13 -0
- package/dist/libs/common/src/backbone/utils/DataServiceErrorHelper.d.ts +2 -0
- package/dist/libs/common/src/backbone/utils/FunctionHelper.d.ts +8 -0
- package/dist/libs/common/src/backbone/utils/UrlHelper.d.ts +13 -0
- package/dist/libs/common/src/react/core/ReactApplication.d.ts +9 -0
- package/dist/libs/common/src/react/core/ReactLayoutView.d.ts +13 -0
- package/dist/libs/common/src/react/flight/FlightHelpers.d.ts +13 -0
- package/dist/libs/common/src/react/flight/FlightMiddleware.d.ts +11 -0
- package/dist/libs/common/src/react/flight/FlightReducer.d.ts +2 -0
- package/dist/libs/common/src/react/flight/FlightSimulator.d.ts +24 -0
- package/dist/libs/common/src/react/flight/constants/Actions.d.ts +7 -0
- package/dist/libs/common/src/react/flight/constants/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/data-layers/AjaxRequest.d.ts +2 -0
- package/dist/libs/common/src/react/flight/data-layers/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/enums/RequestStatus.d.ts +6 -0
- package/dist/libs/common/src/react/flight/enums/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/index.d.ts +9 -0
- package/dist/libs/common/src/react/flight/interfaces/Action.d.ts +28 -0
- package/dist/libs/common/src/react/flight/interfaces/Dispatch.d.ts +3 -0
- package/dist/libs/common/src/react/flight/interfaces/FlightState.d.ts +22 -0
- package/dist/libs/common/src/react/flight/interfaces/HttpRequest.d.ts +24 -0
- package/dist/libs/common/src/react/flight/interfaces/NormalizeOptions.d.ts +4 -0
- package/dist/libs/common/src/react/flight/interfaces/NormalizedData.d.ts +7 -0
- package/dist/libs/common/src/react/flight/interfaces/Request.d.ts +29 -0
- package/dist/libs/common/src/react/flight/interfaces/Response.d.ts +9 -0
- package/dist/libs/common/src/react/flight/interfaces/UpdateStateOptions.d.ts +15 -0
- package/dist/libs/common/src/react/flight/interfaces/index.d.ts +9 -0
- package/dist/libs/common/src/react/flight/normalizer/Denormalizer.d.ts +3 -0
- package/dist/libs/common/src/react/flight/normalizer/Normalizer.d.ts +8 -0
- package/dist/libs/common/src/react/flight/normalizer/index.d.ts +2 -0
- package/dist/libs/common/src/react/flight/utils/SimulatorHelper.d.ts +5 -0
- package/dist/libs/common/src/react/flight/utils/StateHelper.d.ts +11 -0
- package/dist/libs/common/src/react/flight/utils/index.d.ts +2 -0
- package/dist/libs/common/src/react/hooks/UseBulkFetch.d.ts +10 -0
- package/dist/libs/common/src/react/hooks/UseFetch.d.ts +10 -0
- package/dist/libs/common/src/react/hooks/UseInstance.d.ts +6 -0
- package/dist/libs/common/src/react/hooks/UseService.d.ts +2 -0
- package/dist/libs/common/src/react/index.d.ts +2 -0
- package/dist/libs/common/src/react/interfaces/ApplicationData.d.ts +3 -0
- package/dist/libs/common/src/react/interfaces/ApplicationState.d.ts +8 -0
- package/dist/libs/common/src/react/interfaces/BaseReducerActions.d.ts +4 -0
- package/dist/libs/common/src/react/interfaces/HashObject.d.ts +3 -0
- package/dist/libs/common/src/react/interfaces/index.d.ts +4 -0
- package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +39 -0
- package/dist/libs/common/src/react/utils/FetchHelper.d.ts +50 -0
- package/dist/libs/common/src/react/utils/ObjectHelper.d.ts +10 -0
- package/dist/libs/common/src/react/utils/RandomHelper.d.ts +3 -0
- package/dist/libs/common/src/react/utils/TimeHelper.d.ts +7 -0
- package/dist/libs/common/src/react/utils/TypeHelper.d.ts +5 -0
- package/dist/libs/shared/src/apps/notifications/enums/NotificationType.d.ts +16 -0
- package/dist/libs/shared/src/apps/playlists/enums/PlaylistSortType.d.ts +5 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/data-requests/CreateOrUpdatePlaylistRequest.d.ts +7 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/data-requests/index.d.ts +1 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/identifiers/PlaylistCollectionIdentifier.d.ts +5 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/identifiers/PlaylistVideoCollectionIdentifier.d.ts +4 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/identifiers/index.d.ts +2 -0
- package/dist/libs/shared/src/apps/playlists/interfaces/index.d.ts +2 -0
- package/dist/libs/shared/src/components/actions/ActionButton.d.ts +7 -0
- package/dist/libs/shared/src/components/actions/Actions.d.ts +21 -0
- package/dist/libs/shared/src/components/actions/ActionsDropdown.d.ts +14 -0
- package/dist/libs/shared/src/components/alert/Alert.d.ts +7 -0
- package/dist/libs/shared/src/components/alert/AlertContent.d.ts +8 -0
- package/dist/libs/shared/src/components/alert/AlertList.d.ts +8 -0
- package/dist/libs/shared/src/components/app-link/AppLink.d.ts +9 -0
- package/dist/libs/shared/src/components/confirmation-popup/ConfirmationPopup.d.ts +17 -0
- package/dist/libs/shared/src/components/div-button/DivButton.d.ts +10 -0
- package/dist/libs/shared/src/components/forms/form-buttons/FormButtons.d.ts +7 -0
- package/dist/libs/shared/src/components/forms/form-checkbox/FormCheckbox.d.ts +7 -0
- package/dist/libs/shared/src/components/forms/form-field/CharacterCounter.d.ts +7 -0
- package/dist/libs/shared/src/components/forms/form-field/FormField.d.ts +16 -0
- package/dist/libs/shared/src/components/forms/form-wrapper/FormWrapper.d.ts +20 -0
- package/dist/libs/shared/src/components/icon-button/IconButton.d.ts +15 -0
- package/dist/libs/shared/src/components/pagination/Pagination.d.ts +28 -0
- package/dist/libs/shared/src/components/popup/Popup.d.ts +10 -0
- package/dist/libs/shared/src/components/popup/PopupButtons.d.ts +14 -0
- package/dist/libs/shared/src/components/popup/PopupLoadingSpinner.d.ts +2 -0
- package/dist/libs/shared/src/components/search-bar/SearchBar.d.ts +134 -0
- package/dist/libs/shared/src/components/search-bar/SearchInput.d.ts +8 -0
- package/dist/libs/shared/src/components/search-bar/SearchUtils.d.ts +44 -0
- package/dist/libs/shared/src/components/spinner-button/SpinnerButton.d.ts +7 -0
- package/dist/libs/shared/src/components/svg-container/SvgContainer.d.ts +20 -0
- package/dist/libs/shared/src/components/text/Text.d.ts +13 -0
- package/dist/libs/shared/src/components/tooltip/Tooltip.d.ts +16 -0
- package/dist/libs/shared/src/constants/AppVariables.d.ts +4 -0
- package/dist/libs/shared/src/constants/CacheDurations.d.ts +4 -0
- package/dist/libs/shared/src/constants/DataPrefixes.d.ts +12 -0
- package/dist/libs/shared/src/constants/ImageSizes.d.ts +8 -0
- package/dist/libs/shared/src/constants/LayoutRegions.d.ts +7 -0
- package/dist/libs/shared/src/constants/RadioChannels.d.ts +20 -0
- package/dist/libs/shared/src/constants/SharedServices.d.ts +25 -0
- package/dist/libs/shared/src/enums/ClassificationType.d.ts +4 -0
- package/dist/libs/shared/src/enums/CountryCode.d.ts +5 -0
- package/dist/libs/shared/src/enums/CustomerType.d.ts +11 -0
- package/dist/libs/shared/src/enums/GlanceFormat.d.ts +3 -0
- package/dist/libs/shared/src/enums/Images.d.ts +26 -0
- package/dist/libs/shared/src/enums/MasterType.d.ts +59 -0
- package/dist/libs/shared/src/enums/MediaQueries.d.ts +18 -0
- package/dist/libs/shared/src/enums/ThemeType.d.ts +3 -0
- package/dist/libs/shared/src/enums/UserRole.d.ts +15 -0
- package/dist/libs/shared/src/enums/WidgetContents.d.ts +7 -0
- package/dist/libs/shared/src/hooks/UseAlerts.d.ts +6 -0
- package/dist/libs/shared/src/hooks/UseCanSubmitForm.d.ts +10 -0
- package/dist/libs/shared/src/hooks/UseMediaQuery.d.ts +1 -0
- package/dist/libs/shared/src/hooks/UseReorderedItems.d.ts +9 -0
- package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +81 -0
- package/dist/libs/shared/src/images/svg/actions/index.d.ts +21 -0
- package/dist/libs/shared/src/images/svg/arrows/index.d.ts +9 -0
- package/dist/libs/shared/src/images/svg/index.d.ts +2 -0
- package/dist/libs/shared/src/images/svg/objects/index.d.ts +33 -0
- package/dist/libs/shared/src/images/svg/player/index.d.ts +14 -0
- package/dist/libs/shared/src/images/svg/settings.d.ts +1 -0
- package/dist/libs/shared/src/images/svg/status/index.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/AppLinkWithLabel.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/DialogOptions.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/ImageUrls.d.ts +16 -0
- package/dist/libs/shared/src/interfaces/QueryParams.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/RegionalUrl.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/WidgetContext.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/app-variables/BaseNotificationsAppVariables.d.ts +16 -0
- package/dist/libs/shared/src/interfaces/app-variables/BaseSearchAppVariables.d.ts +14 -0
- package/dist/libs/shared/src/interfaces/app-variables/index.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/collections/AudienceCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/CategoryCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/ClipCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/CompanyCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/CustomerCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/FolderCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/InteractiveCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/LibraryCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/LinkCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/PersonCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/PlaylistCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/PresentationAudienceCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/ResourceCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/SeriesCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/TagCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/UserCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/VideoCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/WidgetCollection.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/collections/index.d.ts +20 -0
- package/dist/libs/shared/src/interfaces/collections/primitives/BasePaginatedCollection.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/collections/primitives/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/index.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/models/Audience.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Banner.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Category.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Channel.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Classification.d.ts +21 -0
- package/dist/libs/shared/src/interfaces/models/Clip.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/Company.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Config.d.ts +11 -0
- package/dist/libs/shared/src/interfaces/models/Cover.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Customer.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Folder.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/Following.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/models/Glance.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/HeroBanner.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Image.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/Interactive.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/LanguageConfig.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Library.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Link.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Organisation.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Person.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Playlist.d.ts +10 -0
- package/dist/libs/shared/src/interfaces/models/Poster.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Presentation.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/PresentationAudience.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/Rating.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Resource.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/Restriction.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/Season.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/models/Series.d.ts +10 -0
- package/dist/libs/shared/src/interfaces/models/Share.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/Subject.d.ts +13 -0
- package/dist/libs/shared/src/interfaces/models/Tag.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/TallPoster.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Theme.d.ts +10 -0
- package/dist/libs/shared/src/interfaces/models/Thumbnail.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/User.d.ts +53 -0
- package/dist/libs/shared/src/interfaces/models/UserChannel.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/Video.d.ts +26 -0
- package/dist/libs/shared/src/interfaces/models/VideoWithRestrictions.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/Widget.d.ts +15 -0
- package/dist/libs/shared/src/interfaces/models/index.d.ts +43 -0
- package/dist/libs/shared/src/interfaces/models/primitives/BaseObject.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/primitives/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/props/ViewProps.d.ts +8 -0
- package/dist/libs/shared/src/interfaces/props/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/requests/ReorderRequest.d.ts +12 -0
- package/dist/libs/shared/src/interfaces/requests/UpdateVideoRequest.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/requests/index.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/services/BaseLibraryDataService.d.ts +10 -0
- package/dist/libs/shared/src/interfaces/services/BaseSeriesDataService.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/services/BaseVideoDataService.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/services/BaseVideoUploadDataService.d.ts +8 -0
- package/dist/libs/shared/src/interfaces/services/index.d.ts +4 -0
- package/dist/libs/shared/src/services/UserDataService.d.ts +22 -0
- package/dist/libs/shared/src/utils/CollectionHelper.d.ts +9 -0
- package/dist/libs/shared/src/utils/FormHelper.d.ts +4 -0
- package/dist/libs/shared/src/utils/ImageHelper.d.ts +30 -0
- package/dist/libs/shared/src/utils/ReorderHelper.d.ts +15 -0
- package/dist/libs/shared/src/utils/StateHelper.d.ts +13 -0
- package/dist/libs/shared/src/utils/SvgHelper.d.ts +19 -0
- package/dist/projects/curator/src/apps/companies/CompaniesApplication.d.ts +13 -0
- package/dist/projects/curator/src/apps/companies/components/edit-company/EditCompany.d.ts +9 -0
- package/dist/projects/curator/src/apps/companies/components/edit-company/EditCompanyForm.d.ts +6 -0
- package/dist/projects/curator/src/apps/companies/components/edit-company/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/components/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/flight-requests/CompanyRequests.d.ts +8 -0
- package/dist/projects/curator/src/apps/companies/flight-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/interfaces/CreateOrUpdateCompanyRequest.d.ts +3 -0
- package/dist/projects/curator/src/apps/companies/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/utils/CompanyValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/companies/utils/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/views/companies/CompaniesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/companies/views/companies/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/views/edit-company/EditCompanyView.d.ts +6 -0
- package/dist/projects/curator/src/apps/companies/views/edit-company/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/companies/views/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/companies/views/new-company/NewCompanyView.d.ts +2 -0
- package/dist/projects/curator/src/apps/companies/views/new-company/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/DomainOptionsApplication.d.ts +16 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/DefaultValueField.d.ts +8 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/EditDomainOptionDetails.d.ts +8 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/EditDomainOptionDetailsForm.d.ts +6 -0
- package/dist/projects/curator/src/apps/domain-options/components/edit-domain-option-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/components/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/data-requests/DomainOptionRequests.d.ts +9 -0
- package/dist/projects/curator/src/apps/domain-options/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/data-requests/CreateOrUpdateDomainOptionRequest.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/models/DomainOption.d.ts +24 -0
- package/dist/projects/curator/src/apps/domain-options/interfaces/models/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/utils/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/utils/validation/DomainOptionValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/domain-options/utils/validation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/delete-domain-option/DeleteDomainOptionView.d.ts +7 -0
- package/dist/projects/curator/src/apps/domain-options/views/delete-domain-option/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/domain-options/DomainOptionsView.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/views/domain-options/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/edit-domain-option/EditDomainOptionView.d.ts +6 -0
- package/dist/projects/curator/src/apps/domain-options/views/edit-domain-option/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/domain-options/views/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/domain-options/views/new-domain-option/NewDomainOptionView.d.ts +2 -0
- package/dist/projects/curator/src/apps/domain-options/views/new-domain-option/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/PeopleApplication.d.ts +13 -0
- package/dist/projects/curator/src/apps/people/components/edit-person/EditPerson.d.ts +9 -0
- package/dist/projects/curator/src/apps/people/components/edit-person/EditPersonForm.d.ts +6 -0
- package/dist/projects/curator/src/apps/people/components/edit-person/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/components/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/flight-requests/PersonRequests.d.ts +8 -0
- package/dist/projects/curator/src/apps/people/flight-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/interfaces/CreateOrUpdatePersonRequest.d.ts +3 -0
- package/dist/projects/curator/src/apps/people/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/utils/PersonValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/people/utils/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/views/edit-person/EditPersonView.d.ts +6 -0
- package/dist/projects/curator/src/apps/people/views/edit-person/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/views/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/people/views/new-person/NewPersonView.d.ts +2 -0
- package/dist/projects/curator/src/apps/people/views/new-person/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/people/views/people/PeopleView.d.ts +6 -0
- package/dist/projects/curator/src/apps/people/views/people/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/PlaylistsApplication.d.ts +27 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist/EditPlaylistDetails.d.ts +9 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist/EditPlaylistDetailsForm.d.ts +8 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist-nav/EditPlaylistNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/components/edit-playlist-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/components/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/playlists/components/playlist-search/PlaylistSearch.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/components/playlist-search/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/context/PlaylistsAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/playlists/context/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/flight-requests/CuratorPlaylistRequests.d.ts +17 -0
- package/dist/projects/curator/src/apps/playlists/interfaces/data-requests/Playlist.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/utils/PlaylistNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/playlists/utils/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/playlists/utils/validation/PlaylistValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/playlists/utils/validation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/delete-playlist/DeletePlaylistView.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/views/delete-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist/EditPlaylistView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-audiences/EditPlaylistAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-subjects/EditPlaylistSubjectsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-videos/EditPlaylistVideosView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/edit-playlist-videos/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/index.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/views/new-playlist/NewPlaylistView.d.ts +2 -0
- package/dist/projects/curator/src/apps/playlists/views/new-playlist/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/playlist-search-results/PlaylistSearchResultsView.d.ts +7 -0
- package/dist/projects/curator/src/apps/playlists/views/playlist-search-results/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/playlists/PlaylistsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/playlists/views/playlists/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/playlists/views/remove-video/RemoveVideoView.d.ts +8 -0
- package/dist/projects/curator/src/apps/playlists/views/remove-video/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/SeriesApplication.d.ts +21 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-details/EditSeriesDetails.d.ts +10 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-details/EditSeriesDetailsForm.d.ts +10 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-nav/EditSeriesNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/series/components/edit-series-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/components/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/series/context/SeriesAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/context/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/flight-requests/CuratorSeriesRequests.d.ts +11 -0
- package/dist/projects/curator/src/apps/series/interfaces/data-requests/Series.d.ts +9 -0
- package/dist/projects/curator/src/apps/series/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/utils/SeriesNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/utils/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/series/utils/validation/SeriesValidation.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/utils/validation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/edit-series/EditSeriesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/series/views/edit-series/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-audiences/EditSeriesAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-subjects/EditSeriesSubjectsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/series/views/edit-series-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/series/views/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/series/views/new-series/NewSeriesView.d.ts +2 -0
- package/dist/projects/curator/src/apps/series/views/new-series/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/SubjectsApplication.d.ts +53 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/audience-levels/AudienceLevels.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/audience-levels/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-audience-details/EditAudienceDetails.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-audience-details/EditAudienceDetailsForm.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-audience-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-object-audiences/EditObjectAudiences.d.ts +18 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/edit-object-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/select-audiences/SelectAudiences.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/audiences/select-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/ClassificationMemberItem.d.ts +13 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/ClassificationMemberList.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/classification-member-list/usePinnedVideo.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-details/EditClassificationDetails.d.ts +13 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-details/EditClassificationDetailsForm.d.ts +10 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-nav/EditClassificationNav.d.ts +10 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/edit-classification-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/select-classifications/SelectClassifications.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/components/classifications/select-classifications/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/index.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/edit-level-details/EditLevelDetails.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/edit-level-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/edit-level-nav/EditLevelNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-audiences/LevelAudiences.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberItem.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberList.d.ts +25 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberListHeader.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/select-levels/SelectLevels.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/select-levels/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/edit-presentation-details/EditPresentationDetails.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/edit-presentation-details/EditPresentationDetailsForm.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/edit-presentation-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/presentation-select/PresentationSelect.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/components/presentations/presentation-select/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/add-subject-members/AddSubjectMembers.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/add-subject-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-object-subjects/EditObjectSubjects.d.ts +20 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-object-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-details/EditSubjectDetails.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-details/EditSubjectDetailsForm.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-nav/EditSubjectNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/edit-subject-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/index.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/select-subjects/SelectSubjects.d.ts +18 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/select-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-classifications/SubjectClassifications.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-classifications/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/SubjectMemberItem.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/SubjectMemberList.d.ts +25 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/SubjectMemberListHeader.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/components/subjects/subject-member-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/components/top-nav/TopNav.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/components/top-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/context/PresentationContext.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/context/SubjectsAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/context/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/enums/ObjectMemberType.d.ts +10 -0
- package/dist/projects/curator/src/apps/subjects/enums/OwnerType.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/enums/SubjectMemberType.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/enums/SubjectNodeType.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/enums/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/hooks/UseSetDefaultPresentation.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/hooks/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Audience.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Classification.d.ts +17 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Level.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Presentation.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/Subject.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/data-requests/index.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/ClassificationTree.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/Level.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/Presentation.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/SubjectTree.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/interfaces/models/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/services/SubjectDataService.d.ts +68 -0
- package/dist/projects/curator/src/apps/subjects/services/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/utils/LevelMemberHelper.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/utils/LevelsNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/utils/SubjectMemberHelper.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/utils/SubjectsNavHelper.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/utils/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/AudienceValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/ClassificationValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/LevelValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/PresentationValidation.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/SubjectValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/utils/validation/index.d.ts +5 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/delete-audience/DeleteAudienceView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/delete-audience/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audience/EditAudienceView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audience/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audiences-list/EditAudiencesListView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/edit-audiences-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/new-audience/NewAudienceView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/audiences/new-audience/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/classification-nav/ClassificationNavUtils.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/classification-nav/ClassificationNavView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/classification-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/delete-classification/DeleteClassificationView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/delete-classification/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification/EditClassificationView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification-members/EditClassificationMembersView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/edit-classification-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/index.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/new-classification/NewClassificationView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/new-classification/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/remove-classification-member/RemoveClassificationMemberView.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/views/classifications/remove-classification-member/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/index.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level/EditLevelView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level-members/EditLevelMembersUtils.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level-members/EditLevelMembersView.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-levels-list/EditLevelsListView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-levels-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/index.d.ts +3 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/level-audiences/LevelAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/level-nav/LevelNavView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/levels-redirect/LevelsRedirectView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/levels-redirect/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/new-level/NewLevelView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/new-level/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentation/EditPresentationView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentations-list/EditPresentationsListView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/edit-presentations-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/index.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/new-presentation/NewPresentationView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/new-presentation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/select-presentation/SelectPresentationView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/presentations/select-presentation/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/add-subject-members/AddSubjectMembersUtils.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/add-subject-members/AddSubjectMembersView.d.ts +15 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/add-subject-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/delete-subject/DeleteSubjectView.d.ts +9 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/delete-subject/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject/EditSubjectView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject-members/EditSubjectMembersUtils.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject-members/EditSubjectMembersView.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/edit-subject-members/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/index.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/new-subject/NewSubjectView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/new-subject/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/remove-subject-member/RemoveSubjectMemberView.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/remove-subject-member/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-classifications/SubjectClassificationsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-classifications/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-nav/SubjectNavView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/subjects/subject-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/top-nav/TopNavView.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/views/top-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/ThemesApplication.d.ts +16 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/EditTheme.d.ts +11 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/ThemeValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/edit-data/EditGlanceData.d.ts +2 -0
- package/dist/projects/curator/src/apps/themes/components/edit-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/context/ThemesAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/themes/flight-requests/ThemeRequests.d.ts +11 -0
- package/dist/projects/curator/src/apps/themes/interfaces/CreateOrUpdateThemeRequest.d.ts +7 -0
- package/dist/projects/curator/src/apps/themes/interfaces/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/delete-theme/DeleteThemeView.d.ts +7 -0
- package/dist/projects/curator/src/apps/themes/views/delete-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/edit-theme/EditThemeView.d.ts +6 -0
- package/dist/projects/curator/src/apps/themes/views/edit-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/new-theme/NewThemeView.d.ts +2 -0
- package/dist/projects/curator/src/apps/themes/views/new-theme/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/themes/views/themes/ThemesView.d.ts +2 -0
- package/dist/projects/curator/src/apps/themes/views/themes/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/VideosApplication.d.ts +18 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/EditGlance.d.ts +7 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/EditVideoDetails.d.ts +13 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/VideoDetailsForm.d.ts +12 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-details/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-nav/EditVideoNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/videos/components/edit-video-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/context/VideosAppContext.d.ts +4 -0
- package/dist/projects/curator/src/apps/videos/context/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/flight-requests/CuratorVideoRequests.d.ts +10 -0
- package/dist/projects/curator/src/apps/videos/interfaces/RightslineVideo.d.ts +4 -0
- package/dist/projects/curator/src/apps/videos/interfaces/data-requests/UpdateVideoRequest.d.ts +13 -0
- package/dist/projects/curator/src/apps/videos/interfaces/data-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/interfaces/index.d.ts +2 -0
- package/dist/projects/curator/src/apps/videos/utils/VideoNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/videos/utils/VideoValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video/EditVideoView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-aliases/EditVideoAliasesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-aliases/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-audiences/EditVideoAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-audiences/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-subjects/EditVideoSubjectsView.d.ts +6 -0
- package/dist/projects/curator/src/apps/videos/views/edit-video-subjects/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/videos/views/index.d.ts +4 -0
- package/dist/projects/curator/src/index.d.ts +55 -0
- package/dist/projects/curator/src/shared/components/aliases/AddAlias.d.ts +7 -0
- package/dist/projects/curator/src/shared/components/aliases/AliasList.d.ts +13 -0
- package/dist/projects/curator/src/shared/components/aliases/Aliases.d.ts +9 -0
- package/dist/projects/curator/src/shared/components/aliases/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/back-button/BackButton.d.ts +8 -0
- package/dist/projects/curator/src/shared/components/back-button/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/checkbox/Checkbox.d.ts +8 -0
- package/dist/projects/curator/src/shared/components/checkbox/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/forms/file-select/FileSelect.d.ts +11 -0
- package/dist/projects/curator/src/shared/components/forms/file-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/forms/image-select/ImageSelect.d.ts +14 -0
- package/dist/projects/curator/src/shared/components/forms/image-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/forms/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/components/image-cropper/ImageCropper.d.ts +10 -0
- package/dist/projects/curator/src/shared/components/image-cropper/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/index.d.ts +14 -0
- package/dist/projects/curator/src/shared/components/object-collection/ObjectCollection.d.ts +12 -0
- package/dist/projects/curator/src/shared/components/object-collection/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/object-header/ObjectHeader.d.ts +9 -0
- package/dist/projects/curator/src/shared/components/object-header/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/object-list/ObjectList.d.ts +11 -0
- package/dist/projects/curator/src/shared/components/object-list/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/object-list-nav/ObjectListNav.d.ts +15 -0
- package/dist/projects/curator/src/shared/components/object-list-nav/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/rating-select/RatingSelect.d.ts +12 -0
- package/dist/projects/curator/src/shared/components/rating-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/tabs/Tabs.d.ts +13 -0
- package/dist/projects/curator/src/shared/components/tabs/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/tree/Tree.d.ts +14 -0
- package/dist/projects/curator/src/shared/components/tree/TreeNode.d.ts +19 -0
- package/dist/projects/curator/src/shared/components/tree/TreeNodeLink.d.ts +13 -0
- package/dist/projects/curator/src/shared/components/tree/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/components/tree-select/TreeSelect.d.ts +15 -0
- package/dist/projects/curator/src/shared/components/tree-select/TreeSelectHelper.d.ts +17 -0
- package/dist/projects/curator/src/shared/components/tree-select/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/components/video-list/SortableVideoList.d.ts +12 -0
- package/dist/projects/curator/src/shared/components/video-list/VideoItem.d.ts +15 -0
- package/dist/projects/curator/src/shared/components/video-list/VideoList.d.ts +19 -0
- package/dist/projects/curator/src/shared/components/video-list/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/constants/CuratorActions.d.ts +87 -0
- package/dist/projects/curator/src/shared/constants/DataPrefixes.d.ts +45 -0
- package/dist/projects/curator/src/shared/constants/FileExtensions.d.ts +3 -0
- package/dist/projects/curator/src/shared/constants/Layouts.d.ts +3 -0
- package/dist/projects/curator/src/shared/constants/RadioChannels.d.ts +16 -0
- package/dist/projects/curator/src/shared/constants/Services.d.ts +6 -0
- package/dist/projects/curator/src/shared/constants/index.d.ts +6 -0
- package/dist/projects/curator/src/shared/context/ImageStorageContext.d.ts +45 -0
- package/dist/projects/curator/src/shared/context/UserContext.d.ts +4 -0
- package/dist/projects/curator/src/shared/context/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/enums/CurationStatus.d.ts +8 -0
- package/dist/projects/curator/src/shared/enums/CuratorGroup.d.ts +11 -0
- package/dist/projects/curator/src/shared/enums/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/flight-requests/AliasRequests.d.ts +7 -0
- package/dist/projects/curator/src/shared/flight-requests/RatingRequests.d.ts +4 -0
- package/dist/projects/curator/src/shared/flight-requests/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/interfaces/collections/AliasCollection.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/collections/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/CreateAliasRequest.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/UpdateObjectPermissionsRequest.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/UpdateObjectRating.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/data-requests/index.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/index.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/models/Alias.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/models/CuratorUser.d.ts +5 -0
- package/dist/projects/curator/src/shared/interfaces/models/Group.d.ts +3 -0
- package/dist/projects/curator/src/shared/interfaces/models/Permission.d.ts +4 -0
- package/dist/projects/curator/src/shared/interfaces/models/index.d.ts +5 -0
- package/dist/projects/curator/src/shared/interfaces/models/primitives/BaseTree.d.ts +8 -0
- package/dist/projects/curator/src/shared/interfaces/models/primitives/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/interfaces/view-models/NavItem.d.ts +6 -0
- package/dist/projects/curator/src/shared/interfaces/view-models/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/layouts/curator-layout/CuratorLayoutView.d.ts +28 -0
- package/dist/projects/curator/src/shared/layouts/curator-layout/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/layouts/index.d.ts +2 -0
- package/dist/projects/curator/src/shared/layouts/primitives/LayoutComponent.d.ts +17 -0
- package/dist/projects/curator/src/shared/layouts/primitives/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/services/CuratorAppNavService.d.ts +17 -0
- package/dist/projects/curator/src/shared/services/ImageUploadDataService.d.ts +8 -0
- package/dist/projects/curator/src/shared/services/LanguageDataService.d.ts +11 -0
- package/dist/projects/curator/src/shared/services/UserDataService.d.ts +11 -0
- package/dist/projects/curator/src/shared/services/index.d.ts +4 -0
- package/dist/projects/curator/src/shared/utils/CuratorCollectionHelper.d.ts +10 -0
- package/dist/projects/curator/src/shared/utils/ImageSelectHelper.d.ts +6 -0
- package/dist/projects/curator/src/shared/utils/NavHelper.d.ts +5 -0
- package/dist/projects/curator/src/shared/utils/PermissionsHelper.d.ts +5 -0
- package/dist/projects/curator/src/shared/utils/PropHelper.d.ts +3 -0
- package/dist/projects/curator/src/shared/utils/StringHelper.d.ts +5 -0
- package/dist/projects/curator/src/shared/utils/TreeHelper.d.ts +7 -0
- package/dist/projects/curator/src/shared/utils/UserHelper.d.ts +4 -0
- package/dist/projects/curator/src/shared/utils/index.d.ts +7 -0
- package/dist/projects/curator/src/shared/views/image-upload/ImageUploadView.d.ts +8 -0
- package/dist/projects/curator/src/shared/views/image-upload/index.d.ts +1 -0
- package/dist/projects/curator/src/shared/views/index.d.ts +1 -0
- package/package.json +45 -46
- package/tooling/externals.js +0 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseObject, Cover, VideoCollection, User, Thumbnail, Banner, PresentationAudienceCollection } from "./..";
|
|
2
|
+
export interface Playlist extends BaseObject {
|
|
3
|
+
description?: string;
|
|
4
|
+
thumbnail?: Thumbnail;
|
|
5
|
+
videos?: VideoCollection;
|
|
6
|
+
owner?: User;
|
|
7
|
+
cover?: Cover;
|
|
8
|
+
banner?: Banner;
|
|
9
|
+
subjectPresentationAudiences?: PresentationAudienceCollection;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseObject, PresentationAudienceCollection, Poster, TallPoster, Banner, Rating, VideoCollection } from "./..";
|
|
2
|
+
export interface Series extends BaseObject {
|
|
3
|
+
description: string;
|
|
4
|
+
poster: Poster;
|
|
5
|
+
tallPoster: TallPoster;
|
|
6
|
+
banner: Banner;
|
|
7
|
+
videos: VideoCollection;
|
|
8
|
+
rating?: Rating;
|
|
9
|
+
subjectPresentationAudiences?: PresentationAudienceCollection;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BaseObject } from "./..";
|
|
2
|
+
import { Cover, Thumbnail, Banner, VideoCollection, PlaylistCollection, SeriesCollection } from "./..";
|
|
3
|
+
export interface Subject extends BaseObject {
|
|
4
|
+
banner?: Banner;
|
|
5
|
+
thumbnail?: Thumbnail;
|
|
6
|
+
children?: Subject[];
|
|
7
|
+
subjectIds: string[];
|
|
8
|
+
playlists?: PlaylistCollection;
|
|
9
|
+
videos?: VideoCollection;
|
|
10
|
+
series?: SeriesCollection;
|
|
11
|
+
parentId?: string;
|
|
12
|
+
cover?: Cover;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseObject } from './primitives';
|
|
2
|
+
import { ThemeType } from "../../enums/ThemeType";
|
|
3
|
+
export declare type ThemeData = {
|
|
4
|
+
[key: string]: object;
|
|
5
|
+
};
|
|
6
|
+
export interface Theme extends BaseObject {
|
|
7
|
+
name: string;
|
|
8
|
+
type: ThemeType;
|
|
9
|
+
data: ThemeData;
|
|
10
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { BaseObject } from "./..";
|
|
2
|
+
import { UserRole } from "../../enums/UserRole";
|
|
3
|
+
import { CustomerType } from "../../enums/CustomerType";
|
|
4
|
+
import { OnlineUserRole } from "../../enums/UserRole";
|
|
5
|
+
import { CustomerCollection } from '../collections';
|
|
6
|
+
/**
|
|
7
|
+
* Master User
|
|
8
|
+
*/
|
|
9
|
+
export interface User extends BaseObject {
|
|
10
|
+
id: string;
|
|
11
|
+
name: string;
|
|
12
|
+
surname: string;
|
|
13
|
+
bio: string;
|
|
14
|
+
email: string;
|
|
15
|
+
username: string;
|
|
16
|
+
status: string;
|
|
17
|
+
role: UserRole;
|
|
18
|
+
customers: CustomerCollection;
|
|
19
|
+
}
|
|
20
|
+
export interface CuratorUser extends User {
|
|
21
|
+
userId: string;
|
|
22
|
+
firstName: string;
|
|
23
|
+
countryCode: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Current User for Lite/Cloud
|
|
27
|
+
*/
|
|
28
|
+
export interface CurrentUser extends BaseObject {
|
|
29
|
+
id: string;
|
|
30
|
+
username: string;
|
|
31
|
+
avatar: string;
|
|
32
|
+
timeZone: string;
|
|
33
|
+
role: UserRole;
|
|
34
|
+
displayName: string;
|
|
35
|
+
givenName: string;
|
|
36
|
+
familyName: string;
|
|
37
|
+
email: string;
|
|
38
|
+
emailVerified: boolean;
|
|
39
|
+
customerId: string;
|
|
40
|
+
customerName: string;
|
|
41
|
+
countryCode: string;
|
|
42
|
+
customerLogo: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Current User for Online
|
|
46
|
+
*/
|
|
47
|
+
export interface OnlineCurrentUser extends CurrentUser {
|
|
48
|
+
yearGroup: string;
|
|
49
|
+
crmId: string;
|
|
50
|
+
customerType: CustomerType;
|
|
51
|
+
onlineRole: OnlineUserRole;
|
|
52
|
+
maxAllowedRating: number;
|
|
53
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BaseObject, CompanyCollection, PersonCollection, CategoryCollection, Channel, InteractiveCollection, LibraryCollection, Rating, Series, Thumbnail, TagCollection, Season, AudienceCollection, ResourceCollection, LinkCollection, ClipCollection, Glance } from "./..";
|
|
2
|
+
export interface Video extends BaseObject {
|
|
3
|
+
categories?: CategoryCollection;
|
|
4
|
+
channel?: Channel;
|
|
5
|
+
description?: string;
|
|
6
|
+
duration?: number;
|
|
7
|
+
interactives?: InteractiveCollection;
|
|
8
|
+
libraries?: LibraryCollection;
|
|
9
|
+
productionYear: number;
|
|
10
|
+
rating?: Rating;
|
|
11
|
+
series?: Series;
|
|
12
|
+
thumbnail?: Thumbnail;
|
|
13
|
+
tags?: TagCollection;
|
|
14
|
+
season?: Season;
|
|
15
|
+
episodeNumber?: number;
|
|
16
|
+
subjectPresentationAudiences?: AudienceCollection;
|
|
17
|
+
resources?: ResourceCollection;
|
|
18
|
+
productionCompanies?: CompanyCollection;
|
|
19
|
+
distributors?: CompanyCollection;
|
|
20
|
+
producers?: PersonCollection;
|
|
21
|
+
directors?: PersonCollection;
|
|
22
|
+
clips?: ClipCollection;
|
|
23
|
+
links?: LinkCollection;
|
|
24
|
+
glance?: Glance;
|
|
25
|
+
isFavourited?: boolean;
|
|
26
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BaseObject } from "./..";
|
|
2
|
+
/**
|
|
3
|
+
* This maps directly against the widget types from Domain.
|
|
4
|
+
* Update is only required where the backend changes.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum WidgetType {
|
|
7
|
+
Row = 0,
|
|
8
|
+
LargeRow = 1,
|
|
9
|
+
Hero = 2
|
|
10
|
+
}
|
|
11
|
+
export interface Widget extends BaseObject {
|
|
12
|
+
collectionId: number;
|
|
13
|
+
dashboardId: number;
|
|
14
|
+
type: WidgetType;
|
|
15
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export * from './primitives';
|
|
2
|
+
export * from './Audience';
|
|
3
|
+
export * from './Banner';
|
|
4
|
+
export * from './Category';
|
|
5
|
+
export * from './Channel';
|
|
6
|
+
export * from './Config';
|
|
7
|
+
export * from './Cover';
|
|
8
|
+
export * from './HeroBanner';
|
|
9
|
+
export * from './Image';
|
|
10
|
+
export * from './Interactive';
|
|
11
|
+
export * from './Library';
|
|
12
|
+
export * from './Playlist';
|
|
13
|
+
export * from './Rating';
|
|
14
|
+
export * from './Season';
|
|
15
|
+
export * from './Series';
|
|
16
|
+
export * from './Season';
|
|
17
|
+
export * from './Subject';
|
|
18
|
+
export * from './Tag';
|
|
19
|
+
export * from './Theme';
|
|
20
|
+
export * from './Thumbnail';
|
|
21
|
+
export * from './User';
|
|
22
|
+
export * from './Video';
|
|
23
|
+
export * from './Widget';
|
|
24
|
+
export * from './Classification';
|
|
25
|
+
export * from './Presentation';
|
|
26
|
+
export * from './PresentationAudience';
|
|
27
|
+
export * from './Poster';
|
|
28
|
+
export * from './Resource';
|
|
29
|
+
export * from './Person';
|
|
30
|
+
export * from './Company';
|
|
31
|
+
export * from './LanguageConfig';
|
|
32
|
+
export * from './Clip';
|
|
33
|
+
export * from './Link';
|
|
34
|
+
export * from './Folder';
|
|
35
|
+
export * from './Glance';
|
|
36
|
+
export * from './Customer';
|
|
37
|
+
export * from './Organisation';
|
|
38
|
+
export * from './TallPoster';
|
|
39
|
+
export * from './Share';
|
|
40
|
+
export * from './Restriction';
|
|
41
|
+
export * from './VideoWithRestrictions';
|
|
42
|
+
export * from './Following';
|
|
43
|
+
export * from './UserChannel';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './BaseObject';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AnalyticsOptions } from "../../../../analytics/src/interfaces";
|
|
2
|
+
export interface PopupViewProps {
|
|
3
|
+
closePopup: () => void;
|
|
4
|
+
}
|
|
5
|
+
export declare type PropsWithPopupViewProps<P> = P & PopupViewProps;
|
|
6
|
+
export declare type PropsWithAnalyticsOptions<P> = P & {
|
|
7
|
+
analyticsOptions: AnalyticsOptions;
|
|
8
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ViewProps';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface ReorderRequest {
|
|
2
|
+
/**
|
|
3
|
+
* ID of object we want to move.
|
|
4
|
+
*/
|
|
5
|
+
sourceMemberId: string;
|
|
6
|
+
/**
|
|
7
|
+
* ID of object that will be directly below the source object after reordering.
|
|
8
|
+
*
|
|
9
|
+
* Set to null if the source object is being moved to the last position.
|
|
10
|
+
*/
|
|
11
|
+
destinationMemberId?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Core } from "../../../../common/src/backbone";
|
|
2
|
+
import { Library, Folder } from "./..";
|
|
3
|
+
export interface LibraryAPIResponse {
|
|
4
|
+
data: Library;
|
|
5
|
+
children: Folder[];
|
|
6
|
+
}
|
|
7
|
+
export interface BaseLibraryDataService {
|
|
8
|
+
getLibraries: (callback?: (data?: Core.Collection) => void) => Core.Collection;
|
|
9
|
+
getFolder: (id: string, callback?: (data?: Core.Model) => void) => Core.Model;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Core } from "../../../../common/src/backbone";
|
|
2
|
+
export interface BaseVideoUploadDataService {
|
|
3
|
+
clearPendingItems(ids: string[], callback?: () => void): void;
|
|
4
|
+
cancelPendingItems(ids: string[], callback?: () => void): void;
|
|
5
|
+
retryPendingItems(ids: string[], callback?: () => void): void;
|
|
6
|
+
getPendingItem(id: string, callback: (item: Core.Model) => void): void;
|
|
7
|
+
getPendingItems(callback: (items: any[]) => void): void;
|
|
8
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/// <reference types="backbone" />
|
|
2
|
+
/// <reference types="backbone.radio" />
|
|
3
|
+
import { FetchOptions } from "../../../common/src/react/utils/FetchHelper";
|
|
4
|
+
import { BaseDataService } from "../../../common/src/backbone/services/BaseDataService";
|
|
5
|
+
import { DataServiceError } from "../../../common/src/backbone/interfaces";
|
|
6
|
+
import { HashObject } from "../../../common/src/react/interfaces/HashObject";
|
|
7
|
+
export declare class UserDataService extends BaseDataService {
|
|
8
|
+
get name(): string;
|
|
9
|
+
get channelName(): string;
|
|
10
|
+
getCurrentUser<T>(callback?: (user: T) => void, errorCallback?: () => void): T;
|
|
11
|
+
getWorkspace(callback: (workspace: HashObject) => void, errorCallback?: () => void): HashObject;
|
|
12
|
+
}
|
|
13
|
+
export declare const UserDataServiceHelper: {
|
|
14
|
+
getCurrentUserFetchOptions<T>(setData: (data: T) => void, onError?: (error: DataServiceError) => void): FetchOptions;
|
|
15
|
+
currentUser: {
|
|
16
|
+
dataServiceName: string;
|
|
17
|
+
eventName: string;
|
|
18
|
+
getData: (instance: UserDataService) => unknown;
|
|
19
|
+
getInstance: (context: import("backbone").Events) => unknown;
|
|
20
|
+
beforeOnBeforeRender: boolean;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BasePaginatedCollection, BaseObject } from "../interfaces";
|
|
2
|
+
export declare const CollectionHelper: {
|
|
3
|
+
isEmpty(collection: BasePaginatedCollection<BaseObject>): boolean;
|
|
4
|
+
length(collection: BasePaginatedCollection<BaseObject>): number;
|
|
5
|
+
at<T extends BaseObject>(collection: BasePaginatedCollection<T>, idx: number): T;
|
|
6
|
+
get<T_1 extends BaseObject>(collection: BasePaginatedCollection<T_1>, id: string): T_1;
|
|
7
|
+
flattenCollections<T_2 extends BaseObject, U extends BasePaginatedCollection<T_2>>(collections: U[]): T_2[];
|
|
8
|
+
getNextCursor<T_3 extends BaseObject, U_1 extends BasePaginatedCollection<T_3>>(collection: U_1): string;
|
|
9
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { HashObject } from "../../../common/src/react/interfaces/HashObject";
|
|
2
|
+
import { Core } from "../../../common/src/backbone";
|
|
3
|
+
import { Banner } from "../interfaces";
|
|
4
|
+
import { ImageType, ImageSize, ResizeType } from "../enums/Images";
|
|
5
|
+
export interface ImageOptions {
|
|
6
|
+
size?: ImageSize;
|
|
7
|
+
bgColor?: string;
|
|
8
|
+
width?: number;
|
|
9
|
+
height?: number;
|
|
10
|
+
resizeType?: ResizeType;
|
|
11
|
+
ratio?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface CategoryMapperImageOptions {
|
|
15
|
+
fallbackBaseUrl: string;
|
|
16
|
+
fallbackCategoryName: string;
|
|
17
|
+
type: ImageType;
|
|
18
|
+
}
|
|
19
|
+
export declare const ImageHelper: {
|
|
20
|
+
createUrl(baseUrl: string, options?: ImageOptions): string;
|
|
21
|
+
createBannerUrl(banner: Banner, mappingOptions?: CategoryMapperImageOptions, imageOptions?: ImageOptions): string;
|
|
22
|
+
/**
|
|
23
|
+
* Ensures that strings are properly escaped before using them
|
|
24
|
+
* within a URL.
|
|
25
|
+
*/
|
|
26
|
+
Rfc3986EncodeURIComponent(str: string): string;
|
|
27
|
+
_createCategoryMappedUrl(mappingOptions: CategoryMapperImageOptions, options?: ImageOptions): string;
|
|
28
|
+
_createUrl(baseUrl: string, options?: ImageOptions): string;
|
|
29
|
+
legacyCreateThumbnailUrl(thumbnail: string | Core.Model | HashObject<any>, options?: ImageOptions): string;
|
|
30
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HashObject } from "../../../common/src/react/interfaces/HashObject";
|
|
2
|
+
import { BaseObject, ReorderRequest } from "../interfaces";
|
|
3
|
+
interface ReorderResult<T extends BaseObject> {
|
|
4
|
+
reorderRequest: ReorderRequest;
|
|
5
|
+
reorderedItems: T[];
|
|
6
|
+
}
|
|
7
|
+
export declare const ReorderHelper: {
|
|
8
|
+
reorder<T extends BaseObject>(items: T[], oldIdx: number, newIdx: number): ReorderResult<T>;
|
|
9
|
+
updateState(dataPrefix: string, reorderRequest: ReorderRequest, data: {
|
|
10
|
+
[key: string]: HashObject<any>;
|
|
11
|
+
}): {
|
|
12
|
+
[key: string]: HashObject<any>;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const StateHelper: {
|
|
3
|
+
/**
|
|
4
|
+
* Helper function to get the setState function for an individual key in a state object.
|
|
5
|
+
*
|
|
6
|
+
* @param setState React setState action
|
|
7
|
+
* @param key Property within the state object we're updating
|
|
8
|
+
* @param callback Optional callback to modify data before setting state. Uses identity fn by default.
|
|
9
|
+
*
|
|
10
|
+
* @returns Newly updated state object
|
|
11
|
+
*/
|
|
12
|
+
getSetStateByKey<T extends {}>(setState: import("react").Dispatch<import("react").SetStateAction<T>>, key: keyof T, callback?: (data: any, state?: T) => T[keyof T]): (data: any) => void;
|
|
13
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as FA from '@fortawesome/fontawesome';
|
|
2
|
+
import { localSvgs } from "../images/svg";
|
|
3
|
+
interface SVGIconParams extends FA.IconParams {
|
|
4
|
+
}
|
|
5
|
+
export interface SVGOptions {
|
|
6
|
+
prefix?: string;
|
|
7
|
+
iconOptions?: SVGIconParams;
|
|
8
|
+
}
|
|
9
|
+
export declare class StaticSvgHelper {
|
|
10
|
+
private static instance;
|
|
11
|
+
private constructor();
|
|
12
|
+
static get Instance(): StaticSvgHelper;
|
|
13
|
+
getSvg(svgName: string, options?: SVGOptions): string;
|
|
14
|
+
private getIcon;
|
|
15
|
+
private faIconLookup;
|
|
16
|
+
}
|
|
17
|
+
export declare const SvgHelper: StaticSvgHelper;
|
|
18
|
+
export declare const cvSvgLibrary: typeof localSvgs;
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from "../../../../../libs/common/src/backbone";
|
|
3
|
+
import { CuratorLayoutView, CuratorLayoutViewOptions } from "../../shared/layouts";
|
|
4
|
+
export declare class CompaniesApplication extends Core.Application {
|
|
5
|
+
protected layout: CuratorLayoutView;
|
|
6
|
+
get name(): string;
|
|
7
|
+
static get router(): any;
|
|
8
|
+
get channelName(): string;
|
|
9
|
+
get layoutOptions(): Core.LayoutOptions<CuratorLayoutViewOptions>;
|
|
10
|
+
companies(params: ObjectHash): void;
|
|
11
|
+
newCompany(): void;
|
|
12
|
+
editCompany(id: string): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Company } from "../../../../../../../libs/shared/src/interfaces";
|
|
3
|
+
import { CreateOrUpdateCompanyRequest } from "../../interfaces";
|
|
4
|
+
interface EditCompanyProps {
|
|
5
|
+
saveCompany: (data: CreateOrUpdateCompanyRequest, onDone: () => void) => void;
|
|
6
|
+
company?: Company;
|
|
7
|
+
}
|
|
8
|
+
export declare function EditCompany(props: EditCompanyProps): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EditCompany';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './edit-company';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Flight } from "../../../../../../libs/common/src/react";
|
|
2
|
+
import { CreateOrUpdateCompanyRequest } from "../interfaces";
|
|
3
|
+
export declare const CompanyRequests: {
|
|
4
|
+
getCompanies(cursor?: string): Flight.Request;
|
|
5
|
+
getCompany(id: string): Flight.Request;
|
|
6
|
+
createCompany(data: CreateOrUpdateCompanyRequest, success?: (data: any) => void, error?: (data: any) => void): Flight.Request;
|
|
7
|
+
updateCompany(id: string, data: CreateOrUpdateCompanyRequest, callback?: () => void): Flight.Request;
|
|
8
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CompanyRequests';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CreateOrUpdateCompanyRequest';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CompanyValidation';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CompaniesView';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EditCompanyView';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './NewCompanyView';
|