@clickview/curator 1.0.14 → 1.0.15-dev.1
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.js +17 -1
- 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/index.d.ts +2 -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/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/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-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/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 -3
package/dist/en.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"subjects":{"selectPresentation":{"heading":"Select a presentation to view its %{objectType}:"}}}
|
|
1
|
+
{"subjects":{"selectPresentation":{"heading":"Select a presentation to view its %{objectType}:"},"comingSoon":{"comingSoon":"Coming Soon","info":"We are currently building this topic. In the meantime, we can remind you when it's available.","remindMe":"Remind Me"},"heroVideo":{"resourcesHeading":"Resources","linksHeading":"Links","clipsHeading":"Clips","tagsHeading":"Tags","links":"%{smart_count} link |||| %{smart_count} links","resources":"%{smart_count} resource |||| %{smart_count} resources","clips":"%{smart_count} clip |||| %{smart_count} clips"}},"notifications":{"notificationList":{"noNotifications":"You have no notifications"},"services":{"suggestEditSubmit":"Suggestion was successfully submitted"},"utils":{"viewVideoDetails":"View video details","viewVideo":"View video","reviewVideos":"Review videos","viewNewContent":"View new content","reviewVideo":"Review video","seeNow":"See now"},"notifications":{"title":"Notifications","notifications":"Notifications"},"notificationsPopover":{"notifications":"Notifications","seeAll":"See all notifications"}},"playlists":{"emptyState":{"noPlaylistsHeading":"You have no playlists","noPlaylistsInfo":"Click <strong>Create a new playlist</strong> in the left nav to create one.","noVideosHeading":"There are no videos in this playlist","noVideosInfo":"Learn how to add videos to a playlist."},"hooks":{"somethingWentWrong":"Something went wrong"},"validation":{"nameExceeds":"Name is too long","nameRequired":"Name is required","descriptionExceeds":"Description is too long"}},"shared":{"playlistItem":{"videos":"%{smart_count} video |||| %{smart_count} videos"},"backButton":{"back":"Back","backTo":"Back to %{backToName}"},"editVideoDetails":{"nameExceeds":"Name is too long","nameRequired":"Name is required","descriptionExceeds":"Description is too long","namePlaceholder":"Enter a name for your video","descriptionPlaceholder":"Enter a description for your video","cancel":"Cancel","nameLabel":"Title","descriptionLabel":"Description"},"favouriteButton":{"favouriteError":"Failed to favourite video.","unfavouriteError":"Failed to unfavourite video."},"formButtons":{"create":"Create","save":"Save","next":"Next"},"pagination":{"next":"Next","previous":"Previous"},"searchBar":{"placeholder":"Enter a search query","recentSearchHeading":"Recent Searches"},"videoItemDescription":{"showMore":"... Show more","showLess":"Show less"},"dynamicWidget":{"topics":"Topics","teach":"What would you like to teach?","preferencesTooltip":"Update your preferences"},"fixedWidget":{"preferencesTooltip":"Update your preferences"},"greeting":{"morning":"Good morning","afternoon":"Good afternoon","evening":"Good evening","fallback":"Hello","prompt":"What would you like to teach today?"},"subjectWidgetItem":{"comingSoon":"Coming Soon","edit":"Edit My Subjects"},"_pagination":{"next":"Next","previous":"Previous"},"shared-utils":{"responsive":"Responsive","small":"Small","medium":"Medium","large":"Large"},"videoActionsHelper":{"addToPlaylist":"Add to playlist","removeFromPlaylist":"Remove from playlist","share":"Share","edit":"Edit"}},"search":{"searchTips":{"heading":"Search Tips","firstTerm":"\"atomic bonding\"","firstDescription":"Search for exact phrases using quotation marks","secondTerm":"\"romeo and juliet\" english","secondDescription":"Combine normal and exact phrases together","thirdTerm":"-pollution","thirdDescription":"Exclude a keyword from your search","fourthTerm1":"tag:literature","fourthTerm2":"folder:science","fourthDescription":"Search for results within a tag, folder or series","fifthTerm":"folder:-physics","fifthDescription":"Use a \"-\" to exclude a folder, title or series"},"services":{"folderTag":"This folder","seriesTag":"This series"},"searchBar":{"findingResults":"Finding results...","recentSearches":"Recent Searches","allResults":"Show all results for","noLibraries":"There are currently no libraries to search. Add a new library to get started.","placeholder":"Search within your library... |||| Search within your libraries...","classifications":"topics","videos":"videos","tags":"tags","series":"series"}},"upload":{"fileType":{"heading":"Invalid file type","body":"Sorry but you cannot upload files of that type.","okay":"Okay","close":"Close"},"internetConnectivityError":{"title":"Internet connectivity issue","heading":"Connectivity issue.","body":"There seems to be an issue with your internet connection. Please try uploading your files again.","okay":"Okay"},"utils":{"videoProcessingError":"Something went wrong processing this video.","waiting":"Waiting to be processed","processing":"Processing %{progress}%","complete":"Complete","readyToWatch":"Ready to watch, still processing higher resolutions."}}}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
export declare type AnalyticsEventType = UserAction;
|
|
2
|
+
export interface AnalyticsOptions {
|
|
3
|
+
actionType?: UserAction;
|
|
4
|
+
productArea?: string;
|
|
5
|
+
entity?: EntityType;
|
|
6
|
+
location?: LocationContext;
|
|
7
|
+
descriptor?: ActionDescriptor;
|
|
8
|
+
workflowPhase?: WorkflowPhase;
|
|
9
|
+
eventVersion?: EventVersion;
|
|
10
|
+
}
|
|
11
|
+
export interface ActionContext {
|
|
12
|
+
productArea: string;
|
|
13
|
+
entity: EntityType;
|
|
14
|
+
location: LocationContext;
|
|
15
|
+
descriptor: ActionDescriptor;
|
|
16
|
+
workflowPhase: WorkflowPhase;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* All events recorded are captured within the following action names
|
|
20
|
+
*/
|
|
21
|
+
export declare enum UserAction {
|
|
22
|
+
/**
|
|
23
|
+
* The following events are listed in CollectionApi
|
|
24
|
+
*/
|
|
25
|
+
Stream = "cv_product_stream",
|
|
26
|
+
WebPlayerStream = "cv_product_webplayer_stream",
|
|
27
|
+
Login = "cv_product_login",
|
|
28
|
+
LoginSsoRedirect = "cv_product_login_sso_redirect",
|
|
29
|
+
LoginFailed = "cv_product_login_failed",
|
|
30
|
+
Search = "cv_product_search",
|
|
31
|
+
InstantSearch = "cv_product_search",
|
|
32
|
+
SearchEmptyResult = "cv_product_search_empty_result",
|
|
33
|
+
Filter = "cv_product_search_filter",
|
|
34
|
+
SearchLanding = "cv_product_search_landing",
|
|
35
|
+
Share = "cv_product_share",
|
|
36
|
+
WorkspaceAdd = "cv_product_tv_add",
|
|
37
|
+
/**
|
|
38
|
+
* The following events are unlisted in CollectionApi
|
|
39
|
+
*/
|
|
40
|
+
Rename = "cv_product_rename",
|
|
41
|
+
Move = "cv_product_move",
|
|
42
|
+
Sort = "cv_product_sort",
|
|
43
|
+
Create = "cv_product_create",
|
|
44
|
+
Delete = "cv_product_delete",
|
|
45
|
+
Associate = "cv_product_associate",
|
|
46
|
+
Dissociate = "cv_product_dissociate",
|
|
47
|
+
Edit = "cv_product_edit",
|
|
48
|
+
Approve = "cv_product_approve",
|
|
49
|
+
Reject = "cv_product_reject",
|
|
50
|
+
Disable = "cv_product_disable",
|
|
51
|
+
Upload = "cv_product_upload",
|
|
52
|
+
Download = "cv_product_download",
|
|
53
|
+
Navigate = "cv_product_navigate",
|
|
54
|
+
Click = "cv_product_click",
|
|
55
|
+
Suggest = "cv_product_suggest",
|
|
56
|
+
EditAssoc = "cv_product_edit_assoc",
|
|
57
|
+
Play = "cv_product_play",
|
|
58
|
+
Favourite = "cv_product_favourite",
|
|
59
|
+
SetAccess = "cv_product_set_access",
|
|
60
|
+
AddToLocalCache = "cv_product_add_to_lc",
|
|
61
|
+
/**
|
|
62
|
+
* Capture migration specific events in dedicated collection.
|
|
63
|
+
* The assumption here is that at some point in the distant future
|
|
64
|
+
* we will not longer care about these collections and it doesn't need to
|
|
65
|
+
* be part of the more general collections set.
|
|
66
|
+
*/
|
|
67
|
+
ResolveWarning = "cv_product_resolve_warning",
|
|
68
|
+
DismissWarning = "cv_product_dismiss_warning"
|
|
69
|
+
}
|
|
70
|
+
export declare enum EntityType {
|
|
71
|
+
Folder = "folder",
|
|
72
|
+
Video = "video",
|
|
73
|
+
Rating = "rating",
|
|
74
|
+
Series = "series",
|
|
75
|
+
Library = "library",
|
|
76
|
+
Resource = "resource",
|
|
77
|
+
Tag = "tag",
|
|
78
|
+
Subtitle = "subtitle",
|
|
79
|
+
Chapter = "chapter",
|
|
80
|
+
Restriction = "restriction",
|
|
81
|
+
Interactive = "interactive",
|
|
82
|
+
PDF = "pdf",
|
|
83
|
+
CustomerSetting = "customer_setting",
|
|
84
|
+
StaffRequest = "staff_request",
|
|
85
|
+
Logo = "logo",
|
|
86
|
+
Pagination = "pagination",
|
|
87
|
+
Thumbnail = "thumbnail",
|
|
88
|
+
Banner = "banner",
|
|
89
|
+
Link = "link",
|
|
90
|
+
Playlist = "playlist",
|
|
91
|
+
Person = "person",
|
|
92
|
+
Company = "company",
|
|
93
|
+
Classroom = "classroom",
|
|
94
|
+
ClassroomGroup = "classroom_group",
|
|
95
|
+
Classification = "classification",
|
|
96
|
+
ShareLink = "share_link",
|
|
97
|
+
User = "target_user"
|
|
98
|
+
}
|
|
99
|
+
export declare enum LocationContext {
|
|
100
|
+
TopNav = "top_nav",
|
|
101
|
+
LeftNav = "left_nav",
|
|
102
|
+
Popup = "popup",
|
|
103
|
+
Banner = "banner",
|
|
104
|
+
VideoList = "video_list",
|
|
105
|
+
VideoListItem = "video_list_item",
|
|
106
|
+
VideoListHeader = "video_header",
|
|
107
|
+
VideoThumbnail = "video_thumbnail",
|
|
108
|
+
VideoItemPreview = "video_item_preview",
|
|
109
|
+
VideoDetails = "video_details",
|
|
110
|
+
VideoDetailsHeader = "video_details_header",
|
|
111
|
+
EditVideoDetails = "edit_video_details",
|
|
112
|
+
EditVideoChapters = "edit_video_chapters",
|
|
113
|
+
EditVideoResources = "edit_video_resources",
|
|
114
|
+
VideoUpload = "video_upload",
|
|
115
|
+
VideoRequest = "video_request",
|
|
116
|
+
Pagination = "pagination",
|
|
117
|
+
SearchBar = "search_bar",
|
|
118
|
+
InstantSearch = "instant_search",
|
|
119
|
+
SearchFilters = "search_filters",
|
|
120
|
+
LibraryHeader = "library_header",
|
|
121
|
+
LibraryTiles = "library_tiles",
|
|
122
|
+
StaffRequestDetails = "staff_request_details",
|
|
123
|
+
SubFolderList = "sub_folder_list",
|
|
124
|
+
AwaitingReviewVideoListHeader = "awaiting_review_video_list_header",
|
|
125
|
+
AwaitingReviewVideoItem = "awaiting_review_video_item",
|
|
126
|
+
PastReleasesHeader = "past_releases_header",
|
|
127
|
+
MigrationWarnings = "migration_warnings",
|
|
128
|
+
PlaylistListHeader = "playlist_list_header",
|
|
129
|
+
PlaylistListItem = "playlist_list_item",
|
|
130
|
+
TeacherManager = "teacher_manager",
|
|
131
|
+
StudentManager = "student_manager",
|
|
132
|
+
ClassroomsListItem = "classrooms_list_item",
|
|
133
|
+
ClassroomOverview = "classroom_overview",
|
|
134
|
+
ManageClassroom = "manage_classroom",
|
|
135
|
+
ManageClassroomStudentListItem = "manage_classroom_student_list_item",
|
|
136
|
+
PlayPage = "play_page"
|
|
137
|
+
}
|
|
138
|
+
export declare enum WorkflowPhase {
|
|
139
|
+
Start = "start",
|
|
140
|
+
Complete = "complete",
|
|
141
|
+
Save = "save",
|
|
142
|
+
Discard = "discard"
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Action descriptor sub-types
|
|
146
|
+
*/
|
|
147
|
+
export declare enum PageDescriptor {
|
|
148
|
+
PageLoad = "page_load"
|
|
149
|
+
}
|
|
150
|
+
export declare enum OperationDescriptor {
|
|
151
|
+
Single = "single",
|
|
152
|
+
Bulk = "bulk",
|
|
153
|
+
All = "all"
|
|
154
|
+
}
|
|
155
|
+
export declare enum SortDescriptor {
|
|
156
|
+
ProductionYear = "production_year",
|
|
157
|
+
Alphabetical = "alphabetical"
|
|
158
|
+
}
|
|
159
|
+
export declare enum FilterDescriptor {
|
|
160
|
+
Content = "content",
|
|
161
|
+
Quality = "quality",
|
|
162
|
+
Duration = "duration",
|
|
163
|
+
Reset = "reset"
|
|
164
|
+
}
|
|
165
|
+
export declare enum DirectSearchDescriptor {
|
|
166
|
+
Submit = "submit",
|
|
167
|
+
ShowAll = "show_all",
|
|
168
|
+
Recent = "recent",
|
|
169
|
+
SearchIcon = "search_icon"
|
|
170
|
+
}
|
|
171
|
+
export declare enum PlaybackDescriptor {
|
|
172
|
+
Start = "start",
|
|
173
|
+
Finish = "finish",
|
|
174
|
+
Terminate = "terminate",
|
|
175
|
+
Play = "play",
|
|
176
|
+
Pause = "pause",
|
|
177
|
+
Playback = "playback",
|
|
178
|
+
NextChapter = "next_chapter",
|
|
179
|
+
PreviousChapter = "previous_chapter",
|
|
180
|
+
FullScreenEnter = "full_screen_enter",
|
|
181
|
+
FullScreenExit = "full_screen_exit"
|
|
182
|
+
}
|
|
183
|
+
export declare enum ClickDescriptor {
|
|
184
|
+
TogglePreview = "toggle_preview",
|
|
185
|
+
NavigateHome = "navigate_home",
|
|
186
|
+
OpenInStaffView = "open_in_staff_view",
|
|
187
|
+
Thumbnail = "thumbnail",
|
|
188
|
+
Title = "title",
|
|
189
|
+
ToggleHideValidListings = "toggle_hide_valid_listings",
|
|
190
|
+
LaunchImmersiveReader = "launch_immersive_reader",
|
|
191
|
+
CopyEmbedHtml = "copy_embed_html"
|
|
192
|
+
}
|
|
193
|
+
export declare enum CustomerSettingDescriptor {
|
|
194
|
+
LibraryReview = "library_review"
|
|
195
|
+
}
|
|
196
|
+
export declare enum InteractionTypeDescriptor {
|
|
197
|
+
FileSelect = "file_select",
|
|
198
|
+
DragDrop = "drag_drop"
|
|
199
|
+
}
|
|
200
|
+
export declare enum SuggestionDescriptor {
|
|
201
|
+
Edit = "edit"
|
|
202
|
+
}
|
|
203
|
+
export declare enum AssocDescriptor {
|
|
204
|
+
Image = "image",
|
|
205
|
+
User = "user"
|
|
206
|
+
}
|
|
207
|
+
export declare enum ToggleDescriptor {
|
|
208
|
+
On = "on",
|
|
209
|
+
Off = "off"
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Action descriptors give further context to UserActions
|
|
213
|
+
*/
|
|
214
|
+
export declare type ActionDescriptor = OperationDescriptor | SortDescriptor | FilterDescriptor | DirectSearchDescriptor | PageDescriptor | PlaybackDescriptor | CustomerSettingDescriptor | SuggestionDescriptor | InteractionTypeDescriptor | AssocDescriptor | ClickDescriptor | ToggleDescriptor;
|
|
215
|
+
/**
|
|
216
|
+
* Placeholder values to be used in circumstances where we need
|
|
217
|
+
* to simply signify that a change has occurred. Particularly if it is
|
|
218
|
+
* being collected as a set of other changes.
|
|
219
|
+
*/
|
|
220
|
+
export declare enum EventDefaultValue {
|
|
221
|
+
EntityRemoved = "cv_entity_removed",
|
|
222
|
+
ValueUpdated = "cv_value_updated"
|
|
223
|
+
}
|
|
224
|
+
export declare enum InteractionType {
|
|
225
|
+
FileSelect = "file_select",
|
|
226
|
+
DragDrop = "drag_drop"
|
|
227
|
+
}
|
|
228
|
+
export declare enum SearchQueryType {
|
|
229
|
+
Video = "videos",
|
|
230
|
+
Folder = "categories",
|
|
231
|
+
Series = "series",
|
|
232
|
+
Tags = "tags"
|
|
233
|
+
}
|
|
234
|
+
export declare enum EventVersion {
|
|
235
|
+
V1 = 1
|
|
236
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BaseObject } from "./";
|
|
2
|
+
import { Series } from './Series';
|
|
3
|
+
import { Folder } from './Folder';
|
|
4
|
+
import { Owner } from './Owner';
|
|
5
|
+
import { Playlist } from './Playlist';
|
|
6
|
+
import { Rating } from './Rating';
|
|
7
|
+
export interface Video extends BaseObject {
|
|
8
|
+
series?: Series;
|
|
9
|
+
categories?: Folder[];
|
|
10
|
+
owner?: Owner;
|
|
11
|
+
playlist?: Playlist;
|
|
12
|
+
rating?: Rating;
|
|
13
|
+
duration?: number;
|
|
14
|
+
trackingCode?: string;
|
|
15
|
+
productionYear?: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './AnalyticsTypes';
|
|
2
|
+
export * from './User';
|
|
3
|
+
export * from './Config';
|
|
4
|
+
export * from './Owner';
|
|
5
|
+
export * from './Folder';
|
|
6
|
+
export * from './HashObject';
|
|
7
|
+
export * from './Playlist';
|
|
8
|
+
export * from './Resource';
|
|
9
|
+
export * from './Rating';
|
|
10
|
+
export * from './Region';
|
|
11
|
+
export * from './RegionalUrl';
|
|
12
|
+
export * from './Series';
|
|
13
|
+
export * from './Subtitle';
|
|
14
|
+
export * from './Video';
|
|
15
|
+
export * from './primitives/BaseObject';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
export interface AppLink {
|
|
3
|
+
application: string;
|
|
4
|
+
action: string;
|
|
5
|
+
args?: (string | number)[];
|
|
6
|
+
params?: string | ObjectHash;
|
|
7
|
+
}
|
|
8
|
+
export interface AppLinkHash {
|
|
9
|
+
[selector: string]: AppLink;
|
|
10
|
+
}
|
|
11
|
+
export interface AppLinkOptions {
|
|
12
|
+
replace?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare const AppLinkUtility: {
|
|
15
|
+
routingStarted(): void;
|
|
16
|
+
routingEnded(): void;
|
|
17
|
+
hasActiveRoute(): boolean;
|
|
18
|
+
};
|
|
19
|
+
export declare const AppLinkHelper: {
|
|
20
|
+
/**
|
|
21
|
+
* Build a href string from an AppLink object
|
|
22
|
+
* @param appLink
|
|
23
|
+
*/
|
|
24
|
+
getHref(appLink: AppLink): string;
|
|
25
|
+
/**
|
|
26
|
+
* This is the reverse process of extracting params out of a route.
|
|
27
|
+
* (e.g. Will take the route '/videos/:id' and an array of args = [123]
|
|
28
|
+
* and return '/videos/123')
|
|
29
|
+
*/
|
|
30
|
+
buildRoute(route: string, appLink: AppLink): string;
|
|
31
|
+
/**
|
|
32
|
+
* Manually trigger an AppLink
|
|
33
|
+
* @param appLink
|
|
34
|
+
*/
|
|
35
|
+
trigger(appLink: AppLink, options?: AppLinkOptions): void;
|
|
36
|
+
getCurrentAppLink(): AppLink;
|
|
37
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/// <reference types="backbone" />
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
import { Shell } from './Shell';
|
|
4
|
+
import { BaseApplication, BaseApplicationOptions } from './BaseApplication';
|
|
5
|
+
import { AppLink } from './AppLink';
|
|
6
|
+
import { MiddlewareFunction } from './Middleware';
|
|
7
|
+
export interface ExecuteRouteOptions {
|
|
8
|
+
isAppRoute: boolean;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* This should only ever be used by the shell
|
|
12
|
+
* creating a new instance of the AppRoute
|
|
13
|
+
*/
|
|
14
|
+
export interface BaseAppRouterOptions extends Marionette.AppRouterOptions {
|
|
15
|
+
appConstructor: typeof BaseApplication;
|
|
16
|
+
/**
|
|
17
|
+
* These will be passed into the appConstructor
|
|
18
|
+
* when creating an instance of the Application
|
|
19
|
+
*/
|
|
20
|
+
appOptions?: BaseApplicationOptions;
|
|
21
|
+
shell: Shell;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Every Application must have an AppRouter
|
|
25
|
+
*/
|
|
26
|
+
export declare class BaseAppRouter extends Marionette.AppRouter {
|
|
27
|
+
/**
|
|
28
|
+
* A hash of urls to method names on the Application.
|
|
29
|
+
* Exactly the same implementation as Backbone Router routes
|
|
30
|
+
* except the methods exist on the Application.
|
|
31
|
+
* See http://backbonejs.org/#Router-routes
|
|
32
|
+
*/
|
|
33
|
+
protected appRoutes?: Marionette.AppRoutes;
|
|
34
|
+
protected appLinks?: string[];
|
|
35
|
+
/**
|
|
36
|
+
* The channelName used to trigger the appLinks
|
|
37
|
+
* on backbone.radio. This will match the Application's
|
|
38
|
+
* channelName.
|
|
39
|
+
*/
|
|
40
|
+
protected channelName?: string;
|
|
41
|
+
/**
|
|
42
|
+
* These are async middleware functions that are run
|
|
43
|
+
* before any route on this router is executed.
|
|
44
|
+
*
|
|
45
|
+
* They can be used to prevent access to a router using
|
|
46
|
+
* asyncronous code.
|
|
47
|
+
*/
|
|
48
|
+
protected filters: MiddlewareFunction<AppLink>[];
|
|
49
|
+
/**
|
|
50
|
+
* See BaseAppRouterOptions above.
|
|
51
|
+
*/
|
|
52
|
+
protected options?: BaseAppRouterOptions;
|
|
53
|
+
constructor(options?: BaseAppRouterOptions);
|
|
54
|
+
private bindDisposal;
|
|
55
|
+
/**
|
|
56
|
+
* Creates all the reverse route lookups
|
|
57
|
+
* and binds all the appLinks to the radio channel
|
|
58
|
+
*/
|
|
59
|
+
private processAppEvents;
|
|
60
|
+
/**
|
|
61
|
+
* This is the heart of the AppRouter. Every single route both page loads
|
|
62
|
+
* and appLinks will go through this method.
|
|
63
|
+
*
|
|
64
|
+
* This will return false if onBeforeAction returns false
|
|
65
|
+
* and the window history will not be altered.
|
|
66
|
+
*/
|
|
67
|
+
private executeRoute;
|
|
68
|
+
/**
|
|
69
|
+
* Instantiates and starts the application if there was
|
|
70
|
+
* not already an instance.
|
|
71
|
+
*
|
|
72
|
+
* Why is the application stores on this.controller?
|
|
73
|
+
* In Marionette AppRouters hold reference to a controller
|
|
74
|
+
* which in turn is responsibile for maintaining reference to an application.
|
|
75
|
+
* We've restructured this architecture so that AppRouters directly hold
|
|
76
|
+
* the instance of the Application, but are still leveraging Marionette's
|
|
77
|
+
* use of appRoutes on the controller.
|
|
78
|
+
*/
|
|
79
|
+
private createApp;
|
|
80
|
+
private destroyApp;
|
|
81
|
+
/**
|
|
82
|
+
* Overriding Marionette.AppRouter's _addAppRoute so that
|
|
83
|
+
* execute route is called instead of the method directly.
|
|
84
|
+
*
|
|
85
|
+
* We do this so that executeRoute can be called for every single
|
|
86
|
+
* route, whether it's a page load or an appLink. This will make it easier
|
|
87
|
+
* to modify the action
|
|
88
|
+
*/
|
|
89
|
+
private _addAppRoute;
|
|
90
|
+
private toEventName;
|
|
91
|
+
private toMethodName;
|
|
92
|
+
private validateAppLink;
|
|
93
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
94
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
95
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
import { Shell } from './Shell';
|
|
4
|
+
import { BaseLayoutView, BaseLayoutViewOptions } from './BaseLayoutView';
|
|
5
|
+
import { LayoutService, LayoutOptions } from './LayoutService';
|
|
6
|
+
import { BaseAppRouter } from './BaseAppRouter';
|
|
7
|
+
export interface BaseApplicationOptions extends Marionette.ApplicationOptions {
|
|
8
|
+
shell: Shell;
|
|
9
|
+
layoutService: LayoutService;
|
|
10
|
+
channelName?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class BaseApplication extends Marionette.Application {
|
|
13
|
+
/**
|
|
14
|
+
* Layout service is used to retreive the layout on each route
|
|
15
|
+
*/
|
|
16
|
+
private layoutService;
|
|
17
|
+
/**
|
|
18
|
+
* The layout that should be used to render all content into the DOM
|
|
19
|
+
*/
|
|
20
|
+
protected layout?: BaseLayoutView;
|
|
21
|
+
/**
|
|
22
|
+
* This is specified by all children of Core.Application
|
|
23
|
+
* to determine which layout to load in from layout service,
|
|
24
|
+
* and what options to instantiate it with.
|
|
25
|
+
*/
|
|
26
|
+
protected layoutOptions: LayoutOptions<BaseLayoutViewOptions>;
|
|
27
|
+
/**
|
|
28
|
+
* A reference to the shell is always kept as a
|
|
29
|
+
* way to both render the layout into the dom
|
|
30
|
+
* and keep reference to global services
|
|
31
|
+
*/
|
|
32
|
+
protected shell: Shell;
|
|
33
|
+
/**
|
|
34
|
+
* An instance of the Core.AppRouter is created
|
|
35
|
+
* for each Application in order to listen to applink
|
|
36
|
+
* events. The application instance is only then instantiated
|
|
37
|
+
* when the Application route is hit
|
|
38
|
+
*/
|
|
39
|
+
static router: typeof BaseAppRouter;
|
|
40
|
+
/**
|
|
41
|
+
* Provides the ability to define useful error messages.
|
|
42
|
+
*/
|
|
43
|
+
name: string;
|
|
44
|
+
/** When overridden determines which options are
|
|
45
|
+
* mixed into the instance */
|
|
46
|
+
props: string[];
|
|
47
|
+
/**
|
|
48
|
+
* Used by application actions to set default options.
|
|
49
|
+
*/
|
|
50
|
+
private defaultQueryParams;
|
|
51
|
+
/**
|
|
52
|
+
* Shell and layoutService will be mixed into each instance
|
|
53
|
+
* of Core.Applicataion
|
|
54
|
+
*/
|
|
55
|
+
get defaultProps(): string[];
|
|
56
|
+
/**
|
|
57
|
+
* The constructor will merge in props and ensure any required properties
|
|
58
|
+
* are defined
|
|
59
|
+
* @constructor
|
|
60
|
+
*/
|
|
61
|
+
constructor(options?: BaseApplicationOptions);
|
|
62
|
+
private getGlobalRadioChannel;
|
|
63
|
+
/**
|
|
64
|
+
* This method is triggered by Core.AppRouter when it loads
|
|
65
|
+
* in a route for this application. It will swap in the appropriate
|
|
66
|
+
* layout before hitting the application's action.
|
|
67
|
+
*
|
|
68
|
+
*/
|
|
69
|
+
private onLoadLayout;
|
|
70
|
+
private onShowPopup;
|
|
71
|
+
protected onShowAlert(options: ObjectHash): void;
|
|
72
|
+
protected setDefaultQueryParams(params: ObjectHash): void;
|
|
73
|
+
getAndClearDefaultQueryParams(): ObjectHash;
|
|
74
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
75
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
76
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="backbone" />
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
export declare class BaseBehavior extends Marionette.Behavior {
|
|
4
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
5
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
6
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as Backbone from 'backbone';
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
export declare class BaseCollection<TModel extends BaseModel = BaseModel> extends Backbone.Collection<TModel> {
|
|
4
|
+
parent?: BaseModel | BaseCollection;
|
|
5
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
6
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
7
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/// <reference types="backbone" />
|
|
2
|
+
import * as Marionette from 'backbone.marionette';
|
|
3
|
+
import { BaseCollection } from './BaseCollection';
|
|
4
|
+
import { CoreView } from './BaseView';
|
|
5
|
+
import { BaseModel } from './BaseModel';
|
|
6
|
+
export interface BaseCollectionViewOptions<TModel extends BaseModel = BaseModel> extends Marionette.CollectionViewOptions<TModel> {
|
|
7
|
+
channelName?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class BaseCollectionView<TModel extends BaseModel = BaseModel, TView extends CoreView<TModel> = CoreView<TModel>, TCollection extends BaseCollection<TModel> = BaseCollection<TModel>> extends Marionette.CollectionView<TModel, TView, TCollection> {
|
|
10
|
+
protected options: BaseCollectionViewOptions<TModel>;
|
|
11
|
+
constructor(options?: BaseCollectionViewOptions<TModel>);
|
|
12
|
+
serializeModel(): any;
|
|
13
|
+
serializeCollection(): any[];
|
|
14
|
+
listenTo(object: any, eventMap: Backbone.EventMap): this;
|
|
15
|
+
listenTo(obj: string | Backbone.Events, events: string, callback: Function): this;
|
|
16
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare class BaseError extends Error {
|
|
2
|
+
name: string;
|
|
3
|
+
constructor(message: string);
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* You can use these if you want to leverage the convenience
|
|
7
|
+
* of the error set up without actually throwing the error
|
|
8
|
+
*/
|
|
9
|
+
export declare abstract class SilentError extends BaseError {
|
|
10
|
+
get name(): string;
|
|
11
|
+
}
|
|
12
|
+
export declare class CoreError extends Error {
|
|
13
|
+
get name(): string;
|
|
14
|
+
}
|
|
15
|
+
declare const ErrorHelper: {
|
|
16
|
+
throw(error: BaseError): void;
|
|
17
|
+
};
|
|
18
|
+
export { ErrorHelper };
|