@spinnaker/core 0.0.0-2025.1-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/CHANGELOG.md +9050 -0
- package/LICENSE.txt +203 -0
- package/codegen.yml +18 -0
- package/dist/account/AccountSelectInput.d.ts +24 -0
- package/dist/account/AccountService.d.ts +68 -0
- package/dist/account/AccountTag.d.ts +20 -0
- package/dist/account/account.module.d.ts +2 -0
- package/dist/account/accountSelect.wrapper.d.ts +1 -0
- package/dist/account/accountSelectField.component.d.ts +1 -0
- package/dist/account/accountTag.component.d.ts +4 -0
- package/dist/account/collapsibleAccountTag.directive.d.ts +2 -0
- package/dist/account/index.d.ts +3 -0
- package/dist/account/providerToggles.directive.d.ts +2 -0
- package/dist/analytics/GoogleAnalyticsInitializer.d.ts +2 -0
- package/dist/analytics/angulartics.module.d.ts +2 -0
- package/dist/api/ApiService.d.ts +133 -0
- package/dist/api/index.d.ts +1 -0
- package/dist/api/mock/expectedRequest.d.ts +68 -0
- package/dist/api/mock/jasmine.d.ts +7 -0
- package/dist/api/mock/mockHttpClient.d.ts +68 -0
- package/dist/api/mock/mockHttpUtils.d.ts +16 -0
- package/dist/api/mock/receivedRequest.d.ts +14 -0
- package/dist/api/network.interceptor.d.ts +24 -0
- package/dist/application/ApplicationComponent.d.ts +16 -0
- package/dist/application/ApplicationContext.d.ts +6 -0
- package/dist/application/ApplicationFreshIcon.d.ts +4 -0
- package/dist/application/ApplicationIcon.d.ts +9 -0
- package/dist/application/application.model.d.ts +134 -0
- package/dist/application/application.module.d.ts +4 -0
- package/dist/application/application.state.provider.d.ts +37 -0
- package/dist/application/applicationModel.builder.d.ts +9 -0
- package/dist/application/applicationSearchResultType.d.ts +18 -0
- package/dist/application/applications.state.provider.d.ts +1 -0
- package/dist/application/config/ApplicationConfig.d.ts +7 -0
- package/dist/application/config/DeleteApplicationSection.d.ts +6 -0
- package/dist/application/config/appConfig.dataSource.d.ts +2 -0
- package/dist/application/config/appConfig.states.d.ts +1 -0
- package/dist/application/config/applicationAttributes.directive.d.ts +2 -0
- package/dist/application/config/applicationConfig.controller.d.ts +2 -0
- package/dist/application/config/applicationNotifications.directive.d.ts +2 -0
- package/dist/application/config/applicationSnapshotSection.component.d.ts +2 -0
- package/dist/application/config/customBanner/CustomBannerConfig.d.ts +32 -0
- package/dist/application/config/customBanner/customBannerColors.d.ts +3 -0
- package/dist/application/config/customBanner/customBannerConfig.component.d.ts +1 -0
- package/dist/application/config/dataSources/applicationDataSourceEditor.component.d.ts +20 -0
- package/dist/application/config/defaultTagFilter/DefaultTagFilterConfig.d.ts +27 -0
- package/dist/application/config/defaultTagFilter/defaultTagFilterConfig.component.d.ts +1 -0
- package/dist/application/config/deleteApplicationSection.module.d.ts +1 -0
- package/dist/application/config/footer/ConfigSectionFooter.d.ts +12 -0
- package/dist/application/config/footer/configSectionFooter.component.d.ts +21 -0
- package/dist/application/config/links/applicationLinks.component.d.ts +2 -0
- package/dist/application/config/links/editLinks.modal.controller.d.ts +2 -0
- package/dist/application/config/trafficGuard/trafficGuardConfig.component.d.ts +31 -0
- package/dist/application/config/trafficGuard/trafficGuardConfig.help.d.ts +1 -0
- package/dist/application/index.d.ts +17 -0
- package/dist/application/listExtractor/AppListExtractor.d.ts +17 -0
- package/dist/application/modal/PermissionsConfigurer.d.ts +39 -0
- package/dist/application/modal/PlatformHealthOverride.d.ts +16 -0
- package/dist/application/modal/applicationProviderFields.component.d.ts +2 -0
- package/dist/application/modal/createApplication.modal.controller.d.ts +2 -0
- package/dist/application/modal/editApplication.controller.modal.d.ts +2 -0
- package/dist/application/modal/permissionsConfigurer.component.d.ts +1 -0
- package/dist/application/modal/platformHealthOverride.directive.d.ts +2 -0
- package/dist/application/modal/upsertApplication.help.d.ts +1 -0
- package/dist/application/modal/validation/ApplicationNameValidator.d.ts +42 -0
- package/dist/application/modal/validation/ExampleApplicationNameValidator.d.ts +25 -0
- package/dist/application/modal/validation/applicationNameValidationMessages.component.d.ts +1 -0
- package/dist/application/modal/validation/validateApplicationName.directive.d.ts +1 -0
- package/dist/application/nav/AppRefresher.d.ts +6 -0
- package/dist/application/nav/AppRefresherIcon.d.ts +8 -0
- package/dist/application/nav/ApplicationNavigation.d.ts +7 -0
- package/dist/application/nav/BottomSection.d.ts +7 -0
- package/dist/application/nav/NavItem.d.ts +9 -0
- package/dist/application/nav/NavRoute.d.ts +8 -0
- package/dist/application/nav/NavSection.d.ts +8 -0
- package/dist/application/nav/PagerDutyButton.d.ts +9 -0
- package/dist/application/nav/defaultCategories.d.ts +2 -0
- package/dist/application/nav/navAtoms.d.ts +1 -0
- package/dist/application/nav/navigationCategory.registry.d.ts +21 -0
- package/dist/application/search/Applications.d.ts +30 -0
- package/dist/application/search/ApplicationsTable.d.ts +8 -0
- package/dist/application/search/PaginationControls.d.ts +8 -0
- package/dist/application/service/ApplicationDataSourceRegistry.d.ts +12 -0
- package/dist/application/service/ApplicationReader.d.ts +28 -0
- package/dist/application/service/ApplicationWriter.d.ts +13 -0
- package/dist/application/service/InferredApplicationWarningService.d.ts +9 -0
- package/dist/application/service/applicationDataSource.d.ts +338 -0
- package/dist/artifact/ArtifactIconService.d.ts +5 -0
- package/dist/artifact/ArtifactReferenceService.d.ts +43 -0
- package/dist/artifact/ArtifactTypes.d.ts +5 -0
- package/dist/artifact/ExpectedArtifactSelectorViewController.d.ts +31 -0
- package/dist/artifact/ExpectedArtifactSelectorViewControllerAngularDelegate.d.ts +15 -0
- package/dist/artifact/IArtifactAccountPair.d.ts +6 -0
- package/dist/artifact/NgAppEngineDeployArtifactDelegate.d.ts +18 -0
- package/dist/artifact/NgAppengineConfigArtifactDelegate.d.ts +25 -0
- package/dist/artifact/NgBakeManifestArtifactDelegate.d.ts +23 -0
- package/dist/artifact/NgGCEImageArtifactDelegate.d.ts +18 -0
- package/dist/artifact/NgGenericArtifactDelegate.d.ts +20 -0
- package/dist/artifact/artifact.module.d.ts +1 -0
- package/dist/artifact/artifactTab.d.ts +1 -0
- package/dist/artifact/expectedArtifact.service.d.ts +11 -0
- package/dist/artifact/expectedArtifactMultiSelector.component.d.ts +2 -0
- package/dist/artifact/imageSourceSelector.component.d.ts +1 -0
- package/dist/artifact/index.d.ts +23 -0
- package/dist/artifact/react/ArtifactAccountSelector.d.ts +14 -0
- package/dist/artifact/react/ArtifactEditor.d.ts +21 -0
- package/dist/artifact/react/ArtifactIcon.d.ts +11 -0
- package/dist/artifact/react/ArtifactIconList.d.ts +5 -0
- package/dist/artifact/react/ExecutionArtifactTab.d.ts +9 -0
- package/dist/artifact/react/ExpectedArtifactEditor.d.ts +47 -0
- package/dist/artifact/react/ExpectedArtifactKindSelector.d.ts +29 -0
- package/dist/artifact/react/ExpectedArtifactModal.d.ts +24 -0
- package/dist/artifact/react/ExpectedArtifactSelector.d.ts +30 -0
- package/dist/artifact/react/ExpectedArtifactSourceSelector.d.ts +26 -0
- package/dist/artifact/react/StageArtifactSelector.d.ts +29 -0
- package/dist/artifact/react/StageArtifactSelectorDelegate.d.ts +10 -0
- package/dist/artifact/stageArtifactSelectorDelegate.d.ts +1 -0
- package/dist/authentication/AuthenticationInitializer.d.ts +12 -0
- package/dist/authentication/AuthenticationService.d.ts +15 -0
- package/dist/authentication/LoggedOutModal.d.ts +6 -0
- package/dist/authentication/authentication.interceptor.service.d.ts +8 -0
- package/dist/authentication/authentication.module.d.ts +1 -0
- package/dist/authentication/index.d.ts +3 -0
- package/dist/authentication/userMenu/UserMenu.d.ts +3 -0
- package/dist/banner/BannerContainer.d.ts +9 -0
- package/dist/banner/bannerContainer.component.d.ts +2 -0
- package/dist/banner/bannerContainer.module.d.ts +2 -0
- package/dist/banner/customBannersByName.d.ts +24 -0
- package/dist/banner/index.d.ts +1 -0
- package/dist/bootstrap/SpinnakerContainer.d.ts +6 -0
- package/dist/bootstrap/angular.config.d.ts +1 -0
- package/dist/bootstrap/appInit.d.ts +1 -0
- package/dist/bootstrap/bootstrap.module.d.ts +3 -0
- package/dist/bootstrap/index.d.ts +11 -0
- package/dist/bootstrap/paramChangedHelper.d.ts +4 -0
- package/dist/bootstrap/spinnaker.component.d.ts +1 -0
- package/dist/bootstrap/spinnakerContainer.component.d.ts +1 -0
- package/dist/bootstrap/stateChange.logger.d.ts +1 -0
- package/dist/bootstrap/transitionTrace.toggle.d.ts +1 -0
- package/dist/bootstrap/uiBootstrap.config.d.ts +1 -0
- package/dist/bootstrap/uiRouterRxjs.d.ts +1 -0
- package/dist/bootstrap/uiRouterVisualizer.toggle.d.ts +1 -0
- package/dist/bootstrap/uiSelect.config.d.ts +1 -0
- package/dist/cache/abstractBaseCache.d.ts +10 -0
- package/dist/cache/cacheInitializer.service.d.ts +18 -0
- package/dist/cache/collapsibleSectionStateCache.d.ts +12 -0
- package/dist/cache/deckCacheFactory.d.ts +49 -0
- package/dist/cache/index.d.ts +6 -0
- package/dist/cache/infrastructureCacheConfig.d.ts +10 -0
- package/dist/cache/infrastructureCaches.d.ts +9 -0
- package/dist/cache/viewStateCache.d.ts +7 -0
- package/dist/cancelModal/CancelModal.d.ts +27 -0
- package/dist/certificates/certificate.read.service.d.ts +11 -0
- package/dist/certificates/index.d.ts +1 -0
- package/dist/chaosMonkey/chaosMonkey.help.d.ts +1 -0
- package/dist/chaosMonkey/chaosMonkeyConfig.component.d.ts +32 -0
- package/dist/chaosMonkey/chaosMonkeyExceptions.component.d.ts +19 -0
- package/dist/chaosMonkey/chaosMonkeyNewApplicationConfig.component.d.ts +6 -0
- package/dist/ci/CIReader.d.ts +7 -0
- package/dist/ci/ci.dataSource.d.ts +2 -0
- package/dist/ci/ci.module.d.ts +2 -0
- package/dist/ci/ci.states.d.ts +2 -0
- package/dist/ci/components/BuildDetailsScrollContainerContext.d.ts +2 -0
- package/dist/ci/components/BuildInfoArtifactsTab.d.ts +7 -0
- package/dist/ci/components/BuildInfoDetails.d.ts +7 -0
- package/dist/ci/components/BuildInfoLogsTab.d.ts +7 -0
- package/dist/ci/components/BuildInfoSummaryCard.d.ts +9 -0
- package/dist/ci/components/Builds.d.ts +8 -0
- package/dist/ci/domain.d.ts +60 -0
- package/dist/ci/igor.service.d.ts +17 -0
- package/dist/ci/index.d.ts +1 -0
- package/dist/cloudProvider/CloudProviderLabel.d.ts +13 -0
- package/dist/cloudProvider/CloudProviderLogo.d.ts +9 -0
- package/dist/cloudProvider/CloudProviderRegistry.d.ts +18 -0
- package/dist/cloudProvider/cloudProvider.module.d.ts +1 -0
- package/dist/cloudProvider/cloudProviderLabel.directive.d.ts +2 -0
- package/dist/cloudProvider/cloudProviderLogo.component.d.ts +1 -0
- package/dist/cloudProvider/index.d.ts +5 -0
- package/dist/cloudProvider/providerSelection/ProviderSelectionModal.d.ts +16 -0
- package/dist/cloudProvider/providerSelection/ProviderSelectionService.d.ts +8 -0
- package/dist/cloudProvider/providerSelection/providerSelector.directive.d.ts +2 -0
- package/dist/cloudProvider/providerService.delegate.d.ts +11 -0
- package/dist/cluster/AllClustersGroupings.d.ts +31 -0
- package/dist/cluster/ClusterPod.d.ts +19 -0
- package/dist/cluster/ClusterPodTitleWrapper.d.ts +11 -0
- package/dist/cluster/ClusterRuleMatcher.d.ts +14 -0
- package/dist/cluster/DefaultClusterPodTitle.d.ts +5 -0
- package/dist/cluster/allClusters.controller.d.ts +2 -0
- package/dist/cluster/allClustersGroupings.component.d.ts +1 -0
- package/dist/cluster/cluster.module.d.ts +2 -0
- package/dist/cluster/cluster.service.d.ts +32 -0
- package/dist/cluster/clusterSearchResultType.d.ts +7 -0
- package/dist/cluster/filter/ClusterFilterModel.d.ts +6 -0
- package/dist/cluster/filter/ClusterFilterService.d.ts +59 -0
- package/dist/cluster/filter/ClusterFilters.d.ts +6 -0
- package/dist/cluster/filter/FilterSearch.d.ts +9 -0
- package/dist/cluster/filter/FilterSection.d.ts +15 -0
- package/dist/cluster/filter/LabelFilter.d.ts +32 -0
- package/dist/cluster/filter/MultiselectModel.d.ts +32 -0
- package/dist/cluster/filter/clusterDependentFilterHelper.service.d.ts +1 -0
- package/dist/cluster/filter/clusterFilter.component.d.ts +1 -0
- package/dist/cluster/filter/labelFilter.component.d.ts +1 -0
- package/dist/cluster/filter/labelFilterUtils.d.ts +15 -0
- package/dist/cluster/index.d.ts +7 -0
- package/dist/cluster/onDemand/onDemandClusterPicker.component.d.ts +2 -0
- package/dist/cluster/task.matcher.d.ts +15 -0
- package/dist/config/VersionChecker.d.ts +12 -0
- package/dist/config/index.d.ts +2 -0
- package/dist/config/settings.d.ts +176 -0
- package/dist/confirmationModal/ConfirmModal.d.ts +9 -0
- package/dist/confirmationModal/confirmationModal.service.d.ts +28 -0
- package/dist/confirmationModal/index.d.ts +1 -0
- package/dist/core.module.d.ts +17 -0
- package/dist/deploymentStrategy/DeploymentStrategySelector.d.ts +25 -0
- package/dist/deploymentStrategy/deploymentStrategy.module.d.ts +7 -0
- package/dist/deploymentStrategy/deploymentStrategy.registry.d.ts +26 -0
- package/dist/deploymentStrategy/deploymentStrategySelector.component.d.ts +1 -0
- package/dist/deploymentStrategy/index.d.ts +3 -0
- package/dist/deploymentStrategy/strategies/PipelineSelector.d.ts +45 -0
- package/dist/deploymentStrategy/strategies/custom/AdditionalFields.d.ts +5 -0
- package/dist/deploymentStrategy/strategies/custom/custom.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/highlander/HighlanderPreview.d.ts +4 -0
- package/dist/deploymentStrategy/strategies/highlander/highlander.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/monitored/AdditionalFields.d.ts +41 -0
- package/dist/deploymentStrategy/strategies/monitored/monitored.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/none/none.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/redblack/AdditionalFields.d.ts +14 -0
- package/dist/deploymentStrategy/strategies/redblack/redblack.strategy.d.ts +10 -0
- package/dist/deploymentStrategy/strategies/rollingredblack/AdditionalFields.d.ts +26 -0
- package/dist/deploymentStrategy/strategies/rollingredblack/rollingredblack.strategy.d.ts +1 -0
- package/dist/diffs/ChangesModal.d.ts +14 -0
- package/dist/diffs/CommitHistory.d.ts +13 -0
- package/dist/diffs/JarDiffs.d.ts +23 -0
- package/dist/diffs/ViewChangesLink.d.ts +19 -0
- package/dist/diffs/index.d.ts +3 -0
- package/dist/diffs/viewChangesLink.component.d.ts +1 -0
- package/dist/domain/IArtifact.d.ts +15 -0
- package/dist/domain/IArtifactEditorProps.d.ts +12 -0
- package/dist/domain/IArtifactExtractor.d.ts +5 -0
- package/dist/domain/IArtifactKindConfig.d.ts +13 -0
- package/dist/domain/IArtifactSource.d.ts +4 -0
- package/dist/domain/IAuthentication.d.ts +3 -0
- package/dist/domain/IBuild.d.ts +15 -0
- package/dist/domain/IBuildDiffInfo.d.ts +6 -0
- package/dist/domain/IBuildInfo.d.ts +4 -0
- package/dist/domain/ICloudMetric.d.ts +22 -0
- package/dist/domain/ICluster.d.ts +17 -0
- package/dist/domain/ICredentials.d.ts +6 -0
- package/dist/domain/IDeckRootScope.d.ts +9 -0
- package/dist/domain/IEntityTags.d.ts +58 -0
- package/dist/domain/IExecution.d.ts +47 -0
- package/dist/domain/IExecutionStage.d.ts +76 -0
- package/dist/domain/IExecutionTrigger.d.ts +23 -0
- package/dist/domain/IExpectedArtifact.d.ts +10 -0
- package/dist/domain/IFunction.d.ts +24 -0
- package/dist/domain/IGcbTrigger.d.ts +5 -0
- package/dist/domain/IHealth.d.ts +14 -0
- package/dist/domain/IHelmTrigger.d.ts +8 -0
- package/dist/domain/IInstance.d.ts +19 -0
- package/dist/domain/IInstanceCounts.d.ts +10 -0
- package/dist/domain/IJenkinsInfo.d.ts +5 -0
- package/dist/domain/IJobConfig.d.ts +14 -0
- package/dist/domain/ILoadBalancer.d.ts +40 -0
- package/dist/domain/ILoadBalancerIncompatibility.d.ts +4 -0
- package/dist/domain/IManagedEntity.d.ts +225 -0
- package/dist/domain/IManifest.d.ts +34 -0
- package/dist/domain/INotification.d.ts +7 -0
- package/dist/domain/INotificationTypeConfig.d.ts +11 -0
- package/dist/domain/IOrchestratedItem.d.ts +30 -0
- package/dist/domain/IPipeline.d.ts +96 -0
- package/dist/domain/IPipelineTemplateConfigV2.d.ts +14 -0
- package/dist/domain/IPipelineTemplateV2.d.ts +41 -0
- package/dist/domain/IProject.d.ts +22 -0
- package/dist/domain/IPubsubSubscription.d.ts +4 -0
- package/dist/domain/IRegionalCluster.d.ts +4 -0
- package/dist/domain/ISecurityGroup.d.ts +50 -0
- package/dist/domain/IServerGroup.d.ts +66 -0
- package/dist/domain/IServerGroupManager.d.ts +17 -0
- package/dist/domain/IService.d.ts +7 -0
- package/dist/domain/ISnapshot.d.ts +10 -0
- package/dist/domain/IStage.d.ts +13 -0
- package/dist/domain/IStageContext.d.ts +7 -0
- package/dist/domain/IStageOrTriggerTypeConfig.d.ts +19 -0
- package/dist/domain/IStageTypeConfig.d.ts +44 -0
- package/dist/domain/IStrategy.d.ts +4 -0
- package/dist/domain/ISubnet.d.ts +13 -0
- package/dist/domain/ITaggedEntity.d.ts +4 -0
- package/dist/domain/ITask.d.ts +18 -0
- package/dist/domain/ITaskStep.d.ts +5 -0
- package/dist/domain/ITrigger.d.ts +95 -0
- package/dist/domain/ITriggerTypeConfig.d.ts +13 -0
- package/dist/domain/IVpc.d.ts +9 -0
- package/dist/domain/index.d.ts +55 -0
- package/dist/entityTag/AddEntityTagLinks.d.ts +12 -0
- package/dist/entityTag/EntitySource.d.ts +7 -0
- package/dist/entityTag/EntitySourcePopover.d.ts +10 -0
- package/dist/entityTag/EntityTagEditor.d.ts +48 -0
- package/dist/entityTag/EntityTagsReader.d.ts +15 -0
- package/dist/entityTag/addEntityTagLinks.component.d.ts +1 -0
- package/dist/entityTag/clusterTargetBuilder.d.ts +6 -0
- package/dist/entityTag/entityRef.builder.d.ts +11 -0
- package/dist/entityTag/entitySource.component.d.ts +1 -0
- package/dist/entityTag/entityTags.dataSource.d.ts +1 -0
- package/dist/entityTag/entityTags.help.d.ts +1 -0
- package/dist/entityTag/entityTags.module.d.ts +2 -0
- package/dist/entityTag/entityTags.write.service.d.ts +6 -0
- package/dist/entityTag/index.d.ts +7 -0
- package/dist/entityTag/notifications/CategorizedNotifications.d.ts +50 -0
- package/dist/entityTag/notifications/DataSourceNotifications.d.ts +18 -0
- package/dist/entityTag/notifications/EntityName.d.ts +9 -0
- package/dist/entityTag/notifications/EntityNotifications.d.ts +23 -0
- package/dist/entityTag/notifications/EphemeralPopover.d.ts +14 -0
- package/dist/entityTag/notifications/GroupedNotificationList.d.ts +26 -0
- package/dist/entityTag/notifications/NotificationCategory.d.ts +19 -0
- package/dist/entityTag/notifications/NotificationList.d.ts +14 -0
- package/dist/entityTag/notifications/NotificationsPopover.d.ts +60 -0
- package/dist/entityTag/notifications/entityNotifications.component.d.ts +1 -0
- package/dist/entityTag/notifications/index.d.ts +6 -0
- package/dist/entityTag/notifications/notificationCategories.d.ts +10 -0
- package/dist/event/EventBus.d.ts +23 -0
- package/dist/filterModel/FilterCheckBox.d.ts +18 -0
- package/dist/filterModel/FilterCollapse.d.ts +6 -0
- package/dist/filterModel/FilterModelService.d.ts +20 -0
- package/dist/filterModel/FilterTags.d.ts +18 -0
- package/dist/filterModel/IFilterModel.d.ts +63 -0
- package/dist/filterModel/dependentFilter/DependentFilterService.d.ts +6 -0
- package/dist/filterModel/filterCollapse.component.d.ts +1 -0
- package/dist/filterModel/filterTags.component.d.ts +1 -0
- package/dist/filterModel/index.d.ts +6 -0
- package/dist/forms/autofocus/autofocus.directive.d.ts +10 -0
- package/dist/forms/checklist/checklist.directive.d.ts +2 -0
- package/dist/forms/checkmap/checkmap.directive.d.ts +2 -0
- package/dist/forms/forms.module.d.ts +2 -0
- package/dist/forms/ignoreEmptyDelete.directive.d.ts +2 -0
- package/dist/forms/index.d.ts +4 -0
- package/dist/forms/mapEditor/MapEditor.d.ts +37 -0
- package/dist/forms/mapEditor/MapEditorInput.d.ts +19 -0
- package/dist/forms/mapEditor/MapPair.d.ts +17 -0
- package/dist/forms/mapEditor/mapEditor.component.d.ts +2 -0
- package/dist/forms/mapObjectEditor/mapObjectEditor.component.d.ts +2 -0
- package/dist/forms/numberList/NumberList.d.ts +12 -0
- package/dist/forms/numberList/numberList.component.d.ts +1 -0
- package/dist/forms/validateOnSubmit/validateOnSubmit.directive.d.ts +2 -0
- package/dist/function/CreateFunctionButton.d.ts +26 -0
- package/dist/function/Function.d.ts +9 -0
- package/dist/function/FunctionDetails.d.ts +7 -0
- package/dist/function/FunctionGroupings.d.ts +11 -0
- package/dist/function/FunctionPod.d.ts +11 -0
- package/dist/function/Functions.d.ts +24 -0
- package/dist/function/filter/FunctionFilterModel.d.ts +10 -0
- package/dist/function/filter/FunctionFilterService.d.ts +16 -0
- package/dist/function/filter/FunctionFilters.d.ts +27 -0
- package/dist/function/function.dataSource.d.ts +1 -0
- package/dist/function/function.module.d.ts +1 -0
- package/dist/function/function.read.service.d.ts +22 -0
- package/dist/function/function.states.d.ts +1 -0
- package/dist/function/function.transformer.d.ts +7 -0
- package/dist/function/function.write.service.d.ts +23 -0
- package/dist/function/index.d.ts +4 -0
- package/dist/header/SpinnakerHeader.d.ts +4 -0
- package/dist/header/customBanner/CustomBanner.d.ts +16 -0
- package/dist/healthCounts/HealthCounts.d.ts +22 -0
- package/dist/healthCounts/healthCounts.component.d.ts +1 -0
- package/dist/healthCounts/healthCounts.module.d.ts +1 -0
- package/dist/healthCounts/index.d.ts +1 -0
- package/dist/helm-chart-artifact2320ab55b431ba0a.svg +14 -0
- package/dist/help/HelpField.d.ts +11 -0
- package/dist/help/HelpMenu.d.ts +3 -0
- package/dist/help/HelpTextExpandedContext.d.ts +2 -0
- package/dist/help/help.contents.d.ts +3 -0
- package/dist/help/help.module.d.ts +2 -0
- package/dist/help/helpContents.registry.d.ts +25 -0
- package/dist/help/helpField.component.d.ts +14 -0
- package/dist/help/helpFieldReact.component.d.ts +1 -0
- package/dist/help/index.d.ts +5 -0
- package/dist/history/index.d.ts +1 -0
- package/dist/history/recentHistory.service.d.ts +33 -0
- package/dist/image/image.reader.d.ts +28 -0
- package/dist/image/index.d.ts +1 -0
- package/dist/index.d.ts +69 -0
- package/dist/index.js +72020 -0
- package/dist/index.js.map +1 -0
- package/dist/insight/InsightLayout.d.ts +6 -0
- package/dist/insight/InsightMenu.d.ts +23 -0
- package/dist/insight/insight.module.d.ts +2 -0
- package/dist/insight/insightFilterState.model.d.ts +7 -0
- package/dist/insight/insightLayout.component.d.ts +1 -0
- package/dist/insight/insightmenu.directive.d.ts +1 -0
- package/dist/instance/Instance.d.ts +9 -0
- package/dist/instance/InstanceList.d.ts +29 -0
- package/dist/instance/InstanceListBody.d.ts +29 -0
- package/dist/instance/InstanceReader.d.ts +13 -0
- package/dist/instance/Instances.d.ts +16 -0
- package/dist/instance/details/InstanceActions.d.ts +10 -0
- package/dist/instance/details/InstanceDetails.d.ts +33 -0
- package/dist/instance/details/InstanceDetailsHeader.d.ts +11 -0
- package/dist/instance/details/InstanceDetailsPane.d.ts +4 -0
- package/dist/instance/details/InstanceInsights.d.ts +13 -0
- package/dist/instance/details/InstanceLinks.d.ts +22 -0
- package/dist/instance/details/console/ConsoleOutputLink.d.ts +8 -0
- package/dist/instance/details/console/ConsoleOutputModal.d.ts +9 -0
- package/dist/instance/details/console/consoleOutputLink.component.d.ts +2 -0
- package/dist/instance/details/index.d.ts +8 -0
- package/dist/instance/details/instanceActions.component.d.ts +2 -0
- package/dist/instance/details/instanceDetailsHeader.component.d.ts +2 -0
- package/dist/instance/details/instanceInsights.component.d.ts +2 -0
- package/dist/instance/details/instanceLinks.component.d.ts +2 -0
- package/dist/instance/details/multipleInstanceServerGroup.directive.d.ts +2 -0
- package/dist/instance/details/multipleInstances.controller.d.ts +2 -0
- package/dist/instance/index.d.ts +5 -0
- package/dist/instance/instance.module.d.ts +2 -0
- package/dist/instance/instance.states.d.ts +1 -0
- package/dist/instance/instance.write.service.d.ts +44 -0
- package/dist/instance/instanceSearchResultType.d.ts +13 -0
- package/dist/instance/instanceType.service.d.ts +61 -0
- package/dist/instance/loadBalancer/InstanceLoadBalancerHealth.d.ts +17 -0
- package/dist/instance/loadBalancer/instanceLoadBalancerHealth.directive.d.ts +2 -0
- package/dist/interceptor/debug.interceptor.d.ts +6 -0
- package/dist/interceptor/interceptor.module.d.ts +1 -0
- package/dist/ivy-artifact537f2ce5956f4038.svg +13 -0
- package/dist/jenkins-file-artifactffa863534b26f298.svg +283 -0
- package/dist/loadBalancer/CreateLoadBalancerButton.d.ts +26 -0
- package/dist/loadBalancer/LoadBalancer.d.ts +15 -0
- package/dist/loadBalancer/LoadBalancerClusterContainer.d.ts +12 -0
- package/dist/loadBalancer/LoadBalancerDetails.d.ts +7 -0
- package/dist/loadBalancer/LoadBalancerInstances.d.ts +16 -0
- package/dist/loadBalancer/LoadBalancerPod.d.ts +14 -0
- package/dist/loadBalancer/LoadBalancerServerGroup.d.ts +17 -0
- package/dist/loadBalancer/LoadBalancers.d.ts +28 -0
- package/dist/loadBalancer/LoadBalancersTag.d.ts +17 -0
- package/dist/loadBalancer/LoadBalancersTagWrapper.d.ts +11 -0
- package/dist/loadBalancer/filter/LoadBalancerFilterModel.d.ts +10 -0
- package/dist/loadBalancer/filter/LoadBalancerFilterService.d.ts +24 -0
- package/dist/loadBalancer/filter/LoadBalancerFilters.d.ts +32 -0
- package/dist/loadBalancer/index.d.ts +8 -0
- package/dist/loadBalancer/loadBalancer.dataSource.d.ts +1 -0
- package/dist/loadBalancer/loadBalancer.module.d.ts +2 -0
- package/dist/loadBalancer/loadBalancer.read.service.d.ts +23 -0
- package/dist/loadBalancer/loadBalancer.states.d.ts +1 -0
- package/dist/loadBalancer/loadBalancer.transformer.d.ts +2 -0
- package/dist/loadBalancer/loadBalancer.write.service.d.ts +28 -0
- package/dist/loadBalancer/loadBalancerDataUtils.d.ts +6 -0
- package/dist/loadBalancer/loadBalancerSearchResultType.d.ts +16 -0
- package/dist/managed/ApplicationQueryError.d.ts +8 -0
- package/dist/managed/Environments.d.ts +4 -0
- package/dist/managed/ManagedReader.d.ts +8 -0
- package/dist/managed/ManagedWriter.d.ts +4 -0
- package/dist/managed/Pill.d.ts +10 -0
- package/dist/managed/RelativeTimestamp.d.ts +15 -0
- package/dist/managed/UnmanagedMessage.d.ts +2 -0
- package/dist/managed/artifactActions/ArtifactActions.d.ts +24 -0
- package/dist/managed/config/Configuration.d.ts +9 -0
- package/dist/managed/config/DeliveryConfig.d.ts +8 -0
- package/dist/managed/config/GitIntegration.d.ts +6 -0
- package/dist/managed/config/ManagementWarning.d.ts +4 -0
- package/dist/managed/constraints/AllowedTimes.d.ts +16 -0
- package/dist/managed/constraints/DependsOn.d.ts +5 -0
- package/dist/managed/constraints/ManualJudgement.d.ts +4 -0
- package/dist/managed/constraints/registry.d.ts +60 -0
- package/dist/managed/displayNames.d.ts +2 -0
- package/dist/managed/environmentBaseElements/BaseEnvironment.d.ts +21 -0
- package/dist/managed/environmentBaseElements/EnvironmentItem.d.ts +12 -0
- package/dist/managed/environmentBaseElements/EnvironmentsRender.d.ts +20 -0
- package/dist/managed/externals/DeployingIntoManagedClusterWarning.d.ts +9 -0
- package/dist/managed/externals/ManagedMenuItem.d.ts +11 -0
- package/dist/managed/externals/ManagedResourceConfig.d.ts +6 -0
- package/dist/managed/externals/ManagedResourceDetailsIndicator.d.ts +9 -0
- package/dist/managed/externals/ManagedResourceStatusIndicator.d.ts +10 -0
- package/dist/managed/externals/ManagedResourceStatusPopover.d.ts +10 -0
- package/dist/managed/externals/managedResourceDecorators.d.ts +4 -0
- package/dist/managed/externals/managedResourceDetailsIndicator.component.d.ts +1 -0
- package/dist/managed/externals/managedResourceStatusConfig.d.ts +13 -0
- package/dist/managed/externals/toggleResourceManagement.d.ts +12 -0
- package/dist/managed/graphql/client.d.ts +5 -0
- package/dist/managed/graphql/graphql-sdk.d.ts +1343 -0
- package/dist/managed/index.d.ts +13 -0
- package/dist/managed/managed.dataSource.d.ts +1 -0
- package/dist/managed/managed.module.d.ts +1 -0
- package/dist/managed/managed.states.d.ts +2 -0
- package/dist/managed/messages/MessageBox.d.ts +12 -0
- package/dist/managed/messages/Messages.d.ts +6 -0
- package/dist/managed/overview/EnvironmentOverview.d.ts +7 -0
- package/dist/managed/overview/EnvironmentsOverview.d.ts +3 -0
- package/dist/managed/overview/PreviewEnvironments.d.ts +9 -0
- package/dist/managed/overview/Resource.d.ts +10 -0
- package/dist/managed/overview/ResourceDeploymentStatus.d.ts +9 -0
- package/dist/managed/overview/ResourceTask.d.ts +7 -0
- package/dist/managed/overview/artifact/Artifact.d.ts +12 -0
- package/dist/managed/overview/artifact/ArtifactActionModal.d.ts +25 -0
- package/dist/managed/overview/artifact/ArtifactCollapsibleSection.d.ts +7 -0
- package/dist/managed/overview/artifact/ArtifactVersionTasks.d.ts +18 -0
- package/dist/managed/overview/artifact/ArtifactVersions.d.ts +9 -0
- package/dist/managed/overview/artifact/Constraints.d.ts +8 -0
- package/dist/managed/overview/artifact/CurrentVersion.d.ts +13 -0
- package/dist/managed/overview/artifact/GitLink.d.ts +9 -0
- package/dist/managed/overview/artifact/VersionOperation.d.ts +20 -0
- package/dist/managed/overview/artifact/VersionTitle.d.ts +9 -0
- package/dist/managed/overview/artifact/hooks.d.ts +6 -0
- package/dist/managed/overview/artifact/useCreateRollbackActions.hook.d.ts +3 -0
- package/dist/managed/overview/artifact/utils.d.ts +35 -0
- package/dist/managed/overview/types.d.ts +15 -0
- package/dist/managed/overview/useIsUpdatingResources.hook.d.ts +1 -0
- package/dist/managed/overview/utils.d.ts +2 -0
- package/dist/managed/plugins/BasePluginManager.d.ts +10 -0
- package/dist/managed/plugins/index.d.ts +7 -0
- package/dist/managed/resourceHistory/HistoryEventRow.d.ts +8 -0
- package/dist/managed/resourceHistory/ManagedResourceDiffTable.d.ts +6 -0
- package/dist/managed/resourceHistory/ManagedResourceHistoryModal.d.ts +7 -0
- package/dist/managed/resources/ResourceDefinitionModal.d.ts +9 -0
- package/dist/managed/resources/ResourceTitle.d.ts +5 -0
- package/dist/managed/resources/ToggleResourceManagement.d.ts +10 -0
- package/dist/managed/resources/resourceRegistry.d.ts +27 -0
- package/dist/managed/resources/useGetResourceLink.hook.d.ts +5 -0
- package/dist/managed/useEnvironmentTypeFromResources.hooks.d.ts +2 -0
- package/dist/managed/utils/ActionModal.d.ts +13 -0
- package/dist/managed/utils/Button.d.ts +11 -0
- package/dist/managed/utils/YamlViewer.d.ts +5 -0
- package/dist/managed/utils/debugMode.d.ts +2 -0
- package/dist/managed/utils/defaults.d.ts +12 -0
- package/dist/managed/utils/logging.d.ts +10 -0
- package/dist/managed/utils/useNotifyOnError.hook.d.ts +6 -0
- package/dist/managed/versionMetadata/MetadataComponents.d.ts +100 -0
- package/dist/managed/versionMetadata/VersionMetadata.d.ts +10 -0
- package/dist/managed/versionsHistory/VersionContent.d.ts +12 -0
- package/dist/managed/versionsHistory/VersionHeading.d.ts +9 -0
- package/dist/managed/versionsHistory/VersionsHistory.d.ts +3 -0
- package/dist/managed/versionsHistory/types.d.ts +36 -0
- package/dist/manifest/ManifestReader.d.ts +4 -0
- package/dist/manifest/ManifestWriter.d.ts +11 -0
- package/dist/manifest/ManifestYaml.d.ts +13 -0
- package/dist/manifest/PodNameProvider.d.ts +16 -0
- package/dist/manifest/index.d.ts +6 -0
- package/dist/manifest/stage/JobManifestPodLogs.d.ts +28 -0
- package/dist/manifest/stage/JobStageExecutionLogs.d.ts +25 -0
- package/dist/modal/buttons/ModalClose.d.ts +4 -0
- package/dist/modal/buttons/SubmitButton.d.ts +20 -0
- package/dist/modal/buttons/modalClose.component.d.ts +1 -0
- package/dist/modal/buttons/submitButton.component.d.ts +3 -0
- package/dist/modal/index.d.ts +4 -0
- package/dist/modal/modal.module.d.ts +2 -0
- package/dist/modal/modalOverlay.directive.d.ts +2 -0
- package/dist/modal/modalPage.directive.d.ts +2 -0
- package/dist/modal/wizard/ModalWizard.d.ts +36 -0
- package/dist/modal/wizard/WizardModal.d.ts +53 -0
- package/dist/modal/wizard/WizardPage.d.ts +42 -0
- package/dist/modal/wizard/WizardStepLabel.d.ts +11 -0
- package/dist/modal/wizard/index.d.ts +4 -0
- package/dist/modal/wizard/v2modalWizard.component.d.ts +14 -0
- package/dist/modal/wizard/v2wizardPage.component.d.ts +67 -0
- package/dist/modal/wizard/wizardSubFormValidation.service.d.ts +5 -0
- package/dist/naming/IMoniker.d.ts +7 -0
- package/dist/naming/index.d.ts +2 -0
- package/dist/naming/nameUtils.d.ts +20 -0
- package/dist/navigation/UrlBuilder.d.ts +31 -0
- package/dist/navigation/UrlBuilderRegistry.d.ts +6 -0
- package/dist/navigation/index.d.ts +4 -0
- package/dist/navigation/state.provider.d.ts +54 -0
- package/dist/navigation/stateHelper.provider.d.ts +14 -0
- package/dist/navigation/urlParser.d.ts +15 -0
- package/dist/network/NetworkReader.d.ts +12 -0
- package/dist/network/index.d.ts +1 -0
- package/dist/notfound/NotFound.d.ts +7 -0
- package/dist/notification/AppNotificationsService.d.ts +9 -0
- package/dist/notification/NotificationService.d.ts +15 -0
- package/dist/notification/NotificationsList.d.ts +32 -0
- package/dist/notification/extensionNotificationConfig.d.ts +56 -0
- package/dist/notification/index.d.ts +5 -0
- package/dist/notification/modal/EditNotificationModal.d.ts +20 -0
- package/dist/notification/modal/NotificationDetails.d.ts +21 -0
- package/dist/notification/modal/WhenChecklistInput.d.ts +12 -0
- package/dist/notification/modal/index.d.ts +2 -0
- package/dist/notification/modal/whenOptions.d.ts +3 -0
- package/dist/notification/notification.transformer.d.ts +5 -0
- package/dist/notification/notification.types.d.ts +1 -0
- package/dist/notification/notificationList.module.d.ts +1 -0
- package/dist/notification/notifications.module.d.ts +3 -0
- package/dist/notification/selector/NotificationSelector.d.ts +16 -0
- package/dist/notification/selector/types/bearychat/BearychatNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/bearychat/beary.notification.d.ts +2 -0
- package/dist/notification/selector/types/cdevents/CDEventsNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/cdevents/cdevents.notification.d.ts +2 -0
- package/dist/notification/selector/types/email/EmailNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/email/email.notification.d.ts +2 -0
- package/dist/notification/selector/types/githubstatus/GithubNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/githubstatus/githubstatus.notification.d.ts +2 -0
- package/dist/notification/selector/types/googlechat/GooglechatNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/googlechat/googlechat.notification.d.ts +2 -0
- package/dist/notification/selector/types/index.d.ts +8 -0
- package/dist/notification/selector/types/microsoftteams/MicrosoftTeamsNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/microsoftteams/microsoftteams.notification.d.ts +2 -0
- package/dist/notification/selector/types/pubsub/PubsubNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/pubsub/pubsub.notification.d.ts +2 -0
- package/dist/notification/selector/types/slack/SlackNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/slack/slack.notification.d.ts +2 -0
- package/dist/notification/selector/types/sms/SmsNotificationType.d.ts +6 -0
- package/dist/notification/selector/types/sms/sms.notification.d.ts +2 -0
- package/dist/orchestratedItem/index.d.ts +1 -0
- package/dist/orchestratedItem/orchestratedItem.transformer.d.ts +13 -0
- package/dist/overrideRegistry/Overridable.d.ts +39 -0
- package/dist/overrideRegistry/Overrides.d.ts +37 -0
- package/dist/overrideRegistry/index.d.ts +3 -0
- package/dist/overrideRegistry/override.registry.d.ts +13 -0
- package/dist/pageTitle/index.d.ts +1 -0
- package/dist/pageTitle/pageTitle.module.d.ts +1 -0
- package/dist/pageTitle/pageTitle.service.d.ts +43 -0
- package/dist/pagerDuty/PageButton.d.ts +20 -0
- package/dist/pagerDuty/PageModal.d.ts +29 -0
- package/dist/pagerDuty/Pager.d.ts +70 -0
- package/dist/pagerDuty/index.d.ts +4 -0
- package/dist/pagerDuty/pageApplicationOwner.modal.controller.d.ts +14 -0
- package/dist/pagerDuty/pager.states.d.ts +1 -0
- package/dist/pagerDuty/pagerDuty.module.d.ts +1 -0
- package/dist/pagerDuty/pagerDuty.read.service.d.ts +25 -0
- package/dist/pagerDuty/pagerDuty.write.service.d.ts +8 -0
- package/dist/pagerDuty/pagerDutySelectField.component.d.ts +15 -0
- package/dist/pagerDuty/pagerDutyTag.component.d.ts +11 -0
- package/dist/pipeline/config/CreatePipeline.d.ts +9 -0
- package/dist/pipeline/config/PipelineRegistry.d.ts +71 -0
- package/dist/pipeline/config/actions/PipelineConfigAction.d.ts +7 -0
- package/dist/pipeline/config/actions/PipelineConfigActions.d.ts +15 -0
- package/dist/pipeline/config/actions/delete/DeletePipelineModal.d.ts +9 -0
- package/dist/pipeline/config/actions/disable/DisablePipelineModal.d.ts +7 -0
- package/dist/pipeline/config/actions/enable/EnablePipelineModal.d.ts +7 -0
- package/dist/pipeline/config/actions/history/DiffSummary.d.ts +6 -0
- package/dist/pipeline/config/actions/history/ShowPipelineHistoryModal.d.ts +10 -0
- package/dist/pipeline/config/actions/history/diffSummary.component.d.ts +1 -0
- package/dist/pipeline/config/actions/lock/LockPipelineModal.d.ts +7 -0
- package/dist/pipeline/config/actions/pipelineConfigActions.module.d.ts +1 -0
- package/dist/pipeline/config/actions/pipelineJson/EditPipelineJsonModal.d.ts +29 -0
- package/dist/pipeline/config/actions/rename/RenamePipelineModal.d.ts +9 -0
- package/dist/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.d.ts +24 -0
- package/dist/pipeline/config/actions/unlock/UnlockPipelineModal.d.ts +7 -0
- package/dist/pipeline/config/copyStage/CopyStageCard.d.ts +9 -0
- package/dist/pipeline/config/copyStage/CopyStageModal.d.ts +9 -0
- package/dist/pipeline/config/createPipeline.component.d.ts +1 -0
- package/dist/pipeline/config/graph/PipelineGraph.d.ts +76 -0
- package/dist/pipeline/config/graph/PipelineGraphLink.d.ts +10 -0
- package/dist/pipeline/config/graph/PipelineGraphNode.d.ts +20 -0
- package/dist/pipeline/config/graph/pipeline.graph.component.d.ts +1 -0
- package/dist/pipeline/config/graph/pipelineGraph.service.d.ts +60 -0
- package/dist/pipeline/config/health/stagePlatformHealthOverride.directive.d.ts +2 -0
- package/dist/pipeline/config/parameters/Parameter.d.ts +27 -0
- package/dist/pipeline/config/parameters/Parameters.d.ts +26 -0
- package/dist/pipeline/config/parameters/parameters.module.d.ts +1 -0
- package/dist/pipeline/config/parameters/pipeline.module.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfig.controller.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfig.module.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfigView.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfigurer.d.ts +2 -0
- package/dist/pipeline/config/preconditions/modal/editPrecondition.controller.modal.d.ts +2 -0
- package/dist/pipeline/config/preconditions/precondition.details.filter.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditionList.directive.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditionType.service.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditionTypeConfig.provider.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditions.module.d.ts +2 -0
- package/dist/pipeline/config/preconditions/selector/preconditionSelector.directive.d.ts +2 -0
- package/dist/pipeline/config/preconditions/types/clusterSize/clusterSize.precondition.type.module.d.ts +2 -0
- package/dist/pipeline/config/preconditions/types/expression/expression.precondition.type.module.d.ts +2 -0
- package/dist/pipeline/config/preconditions/types/stageStatus/StageStatusPreconditionConfig.d.ts +10 -0
- package/dist/pipeline/config/preconditions/types/stageStatus/stageStatus.precondition.type.module.d.ts +1 -0
- package/dist/pipeline/config/preconditions/types/stageStatus/stageStatusOptions.d.ts +2 -0
- package/dist/pipeline/config/services/PipelineConfigService.d.ts +25 -0
- package/dist/pipeline/config/services/pipelineJSON.service.d.ts +6 -0
- package/dist/pipeline/config/stages/FormikStageConfig.d.ts +22 -0
- package/dist/pipeline/config/stages/StageConfigWrapper.d.ts +8 -0
- package/dist/pipeline/config/stages/StageName.d.ts +8 -0
- package/dist/pipeline/config/stages/applySourceServerGroupCapacity/ApplySourceServerGroupCapacityDetails.d.ts +11 -0
- package/dist/pipeline/config/stages/applySourceServerGroupCapacity/applySourceServerGroupCapacityStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildSourceList.d.ts +28 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageForm.d.ts +3 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildValidator.d.ts +3 -0
- package/dist/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSecondarySourceVersionModal.d.ts +9 -0
- package/dist/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSourceModal.d.ts +19 -0
- package/dist/pipeline/config/stages/awsCodeBuild/IAwsCodeBuildSource.d.ts +19 -0
- package/dist/pipeline/config/stages/awsCodeBuild/awsCodeBuildStage.d.ts +1 -0
- package/dist/pipeline/config/stages/bake/BakeExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/bake/BakeryReader.d.ts +17 -0
- package/dist/pipeline/config/stages/bake/ManualExecutionBake.d.ts +6 -0
- package/dist/pipeline/config/stages/bake/bakeStage.d.ts +2 -0
- package/dist/pipeline/config/stages/bake/bakeStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/bake/bakeStage.transformer.d.ts +2 -0
- package/dist/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.d.ts +16 -0
- package/dist/pipeline/config/stages/bake/bakeStageChooseOs.component.d.ts +19 -0
- package/dist/pipeline/config/stages/bake/modal/addExtendedAttribute.controller.modal.d.ts +2 -0
- package/dist/pipeline/config/stages/bakeManifest/BakeManifestConfig.d.ts +6 -0
- package/dist/pipeline/config/stages/bakeManifest/BakeManifestDetailsTab.d.ts +6 -0
- package/dist/pipeline/config/stages/bakeManifest/BakeManifestStageForm.d.ts +5 -0
- package/dist/pipeline/config/stages/bakeManifest/ManifestRenderers.d.ts +10 -0
- package/dist/pipeline/config/stages/bakeManifest/ManualExecutionBakeManifest.d.ts +3 -0
- package/dist/pipeline/config/stages/bakeManifest/bakeManifestStage.d.ts +1 -0
- package/dist/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.d.ts +19 -0
- package/dist/pipeline/config/stages/bakeManifest/helmfile/BakeHelmfileConfigForm.d.ts +18 -0
- package/dist/pipeline/config/stages/bakeManifest/kustomize/BakeKustomizeConfigForm.d.ts +6 -0
- package/dist/pipeline/config/stages/bakeManifest/utils/getBakedArtifacts.d.ts +4 -0
- package/dist/pipeline/config/stages/bakeManifest/utils/getContentReference.d.ts +1 -0
- package/dist/pipeline/config/stages/baseProviderStage/baseProviderStage.d.ts +2 -0
- package/dist/pipeline/config/stages/checkPreconditions/CheckPreconditionsExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.d.ts +1 -0
- package/dist/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/cloneServerGroup/CloneServerGroupExecutionDetails.d.ts +23 -0
- package/dist/pipeline/config/stages/cloneServerGroup/cloneServerGroupStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/common/AsgActionExecutionDetailsSection.d.ts +5 -0
- package/dist/pipeline/config/stages/common/EditStageJsonModal.d.ts +20 -0
- package/dist/pipeline/config/stages/common/ExecutionBarLabel.d.ts +21 -0
- package/dist/pipeline/config/stages/common/ExecutionDetailsSection.d.ts +9 -0
- package/dist/pipeline/config/stages/common/ExecutionDetailsTasks.d.ts +6 -0
- package/dist/pipeline/config/stages/common/ExecutionMarkerIcon.d.ts +6 -0
- package/dist/pipeline/config/stages/common/ExecutionStepDetails.d.ts +14 -0
- package/dist/pipeline/config/stages/common/IStageConfigProps.d.ts +15 -0
- package/dist/pipeline/config/stages/common/ServerGroupStageContext.d.ts +7 -0
- package/dist/pipeline/config/stages/common/StepExecutionDetails.d.ts +10 -0
- package/dist/pipeline/config/stages/common/applySuspendedStatuses.d.ts +2 -0
- package/dist/pipeline/config/stages/common/baseExecutionDetails.controller.d.ts +18 -0
- package/dist/pipeline/config/stages/common/executionStepDetails.component.d.ts +1 -0
- package/dist/pipeline/config/stages/common/index.d.ts +9 -0
- package/dist/pipeline/config/stages/common/stage.common.module.d.ts +1 -0
- package/dist/pipeline/config/stages/common/stageConfigField/StageConfigField.d.ts +10 -0
- package/dist/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.d.ts +2 -0
- package/dist/pipeline/config/stages/concourse/ConcourseExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/concourse/ConcourseStageConfig.d.ts +27 -0
- package/dist/pipeline/config/stages/concourse/concourseStage.d.ts +1 -0
- package/dist/pipeline/config/stages/createLoadBalancer/createLoadBalancerExecutionDetails.controller.d.ts +13 -0
- package/dist/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.d.ts +2 -0
- package/dist/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/deploy/clusterName.filter.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployExecutionDetails.controller.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployStage.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployStage.transformer.d.ts +2 -0
- package/dist/pipeline/config/stages/deployService/DeployServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/deployService/deployServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/destroyAsg/DestroyAsgExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/destroyAsg/destroyAsgStage.d.ts +1 -0
- package/dist/pipeline/config/stages/destroyService/DestroyServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/destroyService/destroyServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/disableAsg/DisableAsgExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/disableAsg/disableAsgStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/disableCluster/DisableClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/disableCluster/disableClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/enableAsg/EnableAsgExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/enableAsg/enableAsgStage.d.ts +1 -0
- package/dist/pipeline/config/stages/entityTags/ApplyEntityTagsExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/entityTags/ApplyEntityTagsStageConfig.d.ts +18 -0
- package/dist/pipeline/config/stages/entityTags/TagEditor.d.ts +17 -0
- package/dist/pipeline/config/stages/entityTags/applyEntityTagsStage.d.ts +1 -0
- package/dist/pipeline/config/stages/evaluateVariables/EvaluateVariablesExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/evaluateVariables/EvaluateVariablesStageConfig.d.ts +10 -0
- package/dist/pipeline/config/stages/evaluateVariables/ExecutionAndStagePicker.d.ts +9 -0
- package/dist/pipeline/config/stages/evaluateVariables/evaluateVariablesStage.d.ts +1 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindowActions.d.ts +24 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindowDayPicker.d.ts +6 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindowExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindows.d.ts +11 -0
- package/dist/pipeline/config/stages/executionWindows/daysOfWeek.d.ts +5 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindows.module.d.ts +1 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindows.transformer.d.ts +6 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindowsConfig.d.ts +27 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindowsStage.d.ts +1 -0
- package/dist/pipeline/config/stages/failOnFailedExpressions/failOnFailedExpressions.directive.d.ts +2 -0
- package/dist/pipeline/config/stages/findAmi/FindAmiExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/findAmi/findAmiStage.d.ts +6 -0
- package/dist/pipeline/config/stages/findArtifactFromExecution/FindArtifactFromExecutionExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecution.controller.d.ts +33 -0
- package/dist/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecutionStage.d.ts +1 -0
- package/dist/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.d.ts +2 -0
- package/dist/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageForm.d.ts +3 -0
- package/dist/pipeline/config/stages/googleCloudBuild/IGoogleCloudBuildStage.d.ts +27 -0
- package/dist/pipeline/config/stages/googleCloudBuild/googleCloudBuildStage.d.ts +1 -0
- package/dist/pipeline/config/stages/googleCloudBuild/googleCloudBuildValidators.d.ts +2 -0
- package/dist/pipeline/config/stages/gremlin/GremlinExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/gremlin/GremlinStageConfig.d.ts +25 -0
- package/dist/pipeline/config/stages/gremlin/gremlinStage.d.ts +1 -0
- package/dist/pipeline/config/stages/group/GroupExecutionLabel.d.ts +15 -0
- package/dist/pipeline/config/stages/group/GroupExecutionPopover.d.ts +17 -0
- package/dist/pipeline/config/stages/group/GroupMarkerIcon.d.ts +5 -0
- package/dist/pipeline/config/stages/group/groupStage.d.ts +4 -0
- package/dist/pipeline/config/stages/group/groupStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/jenkins/JenkinsExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/jenkins/jenkinsExecutionDetails.controller.d.ts +2 -0
- package/dist/pipeline/config/stages/jenkins/jenkinsStage.d.ts +2 -0
- package/dist/pipeline/config/stages/jenkins/jenkinsStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/managed/ImportDeliveryConfigExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/managed/ImportDeliveryConfigStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/managed/importDeliveryConfigStage.d.ts +1 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentApproval.d.ts +34 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionDetails.d.ts +11 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionLabel.d.ts +12 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentMarkerIcon.d.ts +6 -0
- package/dist/pipeline/config/stages/manualJudgment/manualJudgment.service.d.ts +10 -0
- package/dist/pipeline/config/stages/manualJudgment/manualJudgmentStage.d.ts +2 -0
- package/dist/pipeline/config/stages/manualJudgment/manualJudgmentStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/monitorPipeline/MonitorPipelineStageExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/monitorPipeline/monitorPipelineStage.d.ts +2 -0
- package/dist/pipeline/config/stages/monitorPipeline/monitorPipelineStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/monitoreddeploy/DeploymentMonitorExecutionDetails.d.ts +13 -0
- package/dist/pipeline/config/stages/monitoreddeploy/DeploymentMonitorReader.d.ts +8 -0
- package/dist/pipeline/config/stages/monitoreddeploy/evaluateHealthStage.d.ts +1 -0
- package/dist/pipeline/config/stages/monitoreddeploy/notifyDeployStartingStage.d.ts +1 -0
- package/dist/pipeline/config/stages/optionalStage/optionalStage.directive.d.ts +2 -0
- package/dist/pipeline/config/stages/overrideFailure/OverrideFailure.d.ts +10 -0
- package/dist/pipeline/config/stages/overrideFailure/overrideFailure.module.d.ts +1 -0
- package/dist/pipeline/config/stages/overrideTimeout/OverrideTimeout.d.ts +12 -0
- package/dist/pipeline/config/stages/overrideTimeout/overrideTimeout.module.d.ts +1 -0
- package/dist/pipeline/config/stages/pipeline/PipelineParametersExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/pipeline/PipelineStageExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/pipeline/pipelineStage.d.ts +2 -0
- package/dist/pipeline/config/stages/pipeline/pipelineStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/preconfiguredJob/PreconfiguredJobExecutionDetails.d.ts +22 -0
- package/dist/pipeline/config/stages/preconfiguredJob/PreconfiguredJobStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/preconfiguredJob/index.d.ts +4 -0
- package/dist/pipeline/config/stages/preconfiguredJob/preconfiguredJob.reader.d.ts +20 -0
- package/dist/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.d.ts +11 -0
- package/dist/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/producesArtifacts/ProducesArtifacts.d.ts +9 -0
- package/dist/pipeline/config/stages/resizeAsg/resizeAsgStage.d.ts +1 -0
- package/dist/pipeline/config/stages/rollbackCluster/RollbackClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/rollbackCluster/rollbackClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/runJob/runJobStage.d.ts +2 -0
- package/dist/pipeline/config/stages/runJob/runJobStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/savePipelines/PipleineRefList.d.ts +6 -0
- package/dist/pipeline/config/stages/savePipelines/SavePipelinesResultsTab.d.ts +6 -0
- package/dist/pipeline/config/stages/savePipelines/SavePipelinesStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/savePipelines/savePipelinesStage.d.ts +1 -0
- package/dist/pipeline/config/stages/scaleDownCluster/ScaleDownClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/scaleDownCluster/scaleDownClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/script/ScriptExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/script/ScriptStageConfig.d.ts +5 -0
- package/dist/pipeline/config/stages/script/scriptStage.d.ts +1 -0
- package/dist/pipeline/config/stages/shareService/ShareServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/shareService/shareServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/shrinkCluster/ShrinkClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/shrinkCluster/shrinkClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/stage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/stageConstants.d.ts +14 -0
- package/dist/pipeline/config/stages/tagImage/tagImageStage.d.ts +2 -0
- package/dist/pipeline/config/stages/tagImage/tagImageStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/templates/index.d.ts +3 -0
- package/dist/pipeline/config/stages/travis/TravisExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/travis/modal/addParameter.controller.modal.d.ts +10 -0
- package/dist/pipeline/config/stages/travis/travisExecutionDetails.controller.d.ts +18 -0
- package/dist/pipeline/config/stages/travis/travisStage.d.ts +43 -0
- package/dist/pipeline/config/stages/travis/travisStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.controller.d.ts +15 -0
- package/dist/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.d.ts +1 -0
- package/dist/pipeline/config/stages/unshareService/UnshareServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/unshareService/unshareServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/wait/SkipWait.d.ts +21 -0
- package/dist/pipeline/config/stages/wait/WaitExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/wait/WaitExecutionLabel.d.ts +9 -0
- package/dist/pipeline/config/stages/wait/WaitStageConfig.d.ts +17 -0
- package/dist/pipeline/config/stages/wait/waitStage.d.ts +1 -0
- package/dist/pipeline/config/stages/waitForCondition/SkipConditionWait.d.ts +10 -0
- package/dist/pipeline/config/stages/waitForCondition/WaitForConditionExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/waitForCondition/waitForCondition.transformer.d.ts +6 -0
- package/dist/pipeline/config/stages/waitForCondition/waitForConditionStage.d.ts +1 -0
- package/dist/pipeline/config/stages/waitForParentTasks/waitForParentTasks.d.ts +2 -0
- package/dist/pipeline/config/stages/waitForParentTasks/waitForParentTasks.transformer.d.ts +2 -0
- package/dist/pipeline/config/stages/webhook/modal/addCustomHeader.controller.modal.d.ts +10 -0
- package/dist/pipeline/config/stages/webhook/webhookExecutionDetails.controller.d.ts +23 -0
- package/dist/pipeline/config/stages/webhook/webhookStage.d.ts +51 -0
- package/dist/pipeline/config/stages/webhook/webhookStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/wercker/WerckerExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/wercker/modal/addParameter.controller.modal.d.ts +10 -0
- package/dist/pipeline/config/stages/wercker/werckerExecutionDetails.controller.d.ts +18 -0
- package/dist/pipeline/config/stages/wercker/werckerStage.d.ts +51 -0
- package/dist/pipeline/config/stages/wercker/werckerStage.module.d.ts +1 -0
- package/dist/pipeline/config/targetSelect.component.d.ts +11 -0
- package/dist/pipeline/config/templates/PipelineTemplateReader.d.ts +82 -0
- package/dist/pipeline/config/templates/PipelineTemplateWriter.d.ts +9 -0
- package/dist/pipeline/config/templates/TemplatePlanErrors.d.ts +10 -0
- package/dist/pipeline/config/templates/Variable.d.ts +13 -0
- package/dist/pipeline/config/templates/VariableError.d.ts +11 -0
- package/dist/pipeline/config/templates/VariableMetadataHelpField.d.ts +9 -0
- package/dist/pipeline/config/templates/configurePipelineTemplateModal.controller.d.ts +52 -0
- package/dist/pipeline/config/templates/index.d.ts +2 -0
- package/dist/pipeline/config/templates/inputs/BooleanInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/ListInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/NumberInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/ObjectInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/StringInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/variableInput.service.d.ts +27 -0
- package/dist/pipeline/config/templates/pipelineTemplate.module.d.ts +10 -0
- package/dist/pipeline/config/templates/templatePlanErrors.component.d.ts +1 -0
- package/dist/pipeline/config/templates/v2/ApplicationSelector.d.ts +12 -0
- package/dist/pipeline/config/templates/v2/DeletePipelineTemplateV2Modal.d.ts +16 -0
- package/dist/pipeline/config/templates/v2/PipelineTemplatesV2.d.ts +36 -0
- package/dist/pipeline/config/templates/v2/configurePipelineTemplateModalV2.controller.d.ts +53 -0
- package/dist/pipeline/config/templates/v2/createPipelineFromTemplate/CreatePipelineFromTemplate.d.ts +30 -0
- package/dist/pipeline/config/templates/v2/createPipelineFromTemplate/index.d.ts +1 -0
- package/dist/pipeline/config/templates/v2/pipelineTemplateV2.service.d.ts +23 -0
- package/dist/pipeline/config/templates/v2/pipelineTemplateV2.states.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/list.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/number.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/object.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/string.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/variableValidator.service.d.ts +10 -0
- package/dist/pipeline/config/templates/variable.component.d.ts +1 -0
- package/dist/pipeline/config/triggers/ExecutionOptionsPageContent.d.ts +7 -0
- package/dist/pipeline/config/triggers/MetadataPageContent.d.ts +12 -0
- package/dist/pipeline/config/triggers/NotificationsPageContent.d.ts +7 -0
- package/dist/pipeline/config/triggers/ParametersPageContent.d.ts +7 -0
- package/dist/pipeline/config/triggers/PipelineRoles.d.ts +6 -0
- package/dist/pipeline/config/triggers/RefreshableReactSelectInput.d.ts +12 -0
- package/dist/pipeline/config/triggers/RunAsUser.d.ts +6 -0
- package/dist/pipeline/config/triggers/Trigger.d.ts +18 -0
- package/dist/pipeline/config/triggers/Triggers.d.ts +11 -0
- package/dist/pipeline/config/triggers/TriggersPageContent.d.ts +9 -0
- package/dist/pipeline/config/triggers/TriggersWrapper.d.ts +6 -0
- package/dist/pipeline/config/triggers/artifactory/ArtifactoryTrigger.d.ts +2 -0
- package/dist/pipeline/config/triggers/artifactory/artifactory.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/artifactory/artifactoryReader.service.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/ArtifactEditor.d.ts +6 -0
- package/dist/pipeline/config/triggers/artifacts/ArtifactService.d.ts +7 -0
- package/dist/pipeline/config/triggers/artifacts/TriggerArtifactConstraintSelectorInput.d.ts +21 -0
- package/dist/pipeline/config/triggers/artifacts/base64/Base64ArtifactEditor.d.ts +5 -0
- package/dist/pipeline/config/triggers/artifacts/bitbucket/BitbucketArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/custom/CustomArtifactEditor.d.ts +17 -0
- package/dist/pipeline/config/triggers/artifacts/docker/DockerArtifactEditor.d.ts +4 -0
- package/dist/pipeline/config/triggers/artifacts/gcs/GcsArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/github/GithubArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/gitlab/GitlabArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/gitrepo/GitRepoArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/helm/HelmArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/helm-image/HelmImageArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/http/HttpArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/index.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/ivy/IvyArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/jenkins/JenkinsArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/kubernetes/KubernetesArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/maven/MavenArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/oracle/OracleArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/s3/S3ArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/singleFieldArtifactEditor.d.ts +31 -0
- package/dist/pipeline/config/triggers/baseBuild/BaseBuildTrigger.d.ts +9 -0
- package/dist/pipeline/config/triggers/baseBuild/BaseBuildTriggerTemplate.d.ts +32 -0
- package/dist/pipeline/config/triggers/cdevents/CDEventsTrigger.d.ts +7 -0
- package/dist/pipeline/config/triggers/cdevents/cdevents.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/concourse/ConcourseTrigger.d.ts +8 -0
- package/dist/pipeline/config/triggers/concourse/ConcourseTriggerTemplate.d.ts +8 -0
- package/dist/pipeline/config/triggers/concourse/concourse.service.d.ts +6 -0
- package/dist/pipeline/config/triggers/concourse/concourse.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/cron/CronAdvance.d.ts +15 -0
- package/dist/pipeline/config/triggers/cron/CronDaily.d.ts +17 -0
- package/dist/pipeline/config/triggers/cron/CronHourly.d.ts +13 -0
- package/dist/pipeline/config/triggers/cron/CronMinutes.d.ts +12 -0
- package/dist/pipeline/config/triggers/cron/CronMonthly.d.ts +32 -0
- package/dist/pipeline/config/triggers/cron/CronTrigger.d.ts +13 -0
- package/dist/pipeline/config/triggers/cron/CronWeekly.d.ts +15 -0
- package/dist/pipeline/config/triggers/cron/cron.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/cron/cronConfig.d.ts +5 -0
- package/dist/pipeline/config/triggers/cron/cronSelectOptions.d.ts +20 -0
- package/dist/pipeline/config/triggers/cron/cronValidator.service.d.ts +3 -0
- package/dist/pipeline/config/triggers/git/GitTrigger.d.ts +11 -0
- package/dist/pipeline/config/triggers/git/GitTriggerExecutionStatus.d.ts +5 -0
- package/dist/pipeline/config/triggers/git/git.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/helm/HelmManualTriggerConfig.d.ts +8 -0
- package/dist/pipeline/config/triggers/helm/HelmTriggerConfig.d.ts +7 -0
- package/dist/pipeline/config/triggers/helm/HelmTriggerExecutionStatus.d.ts +3 -0
- package/dist/pipeline/config/triggers/helm/HelmTriggerTemplate.d.ts +14 -0
- package/dist/pipeline/config/triggers/helm/helm.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/index.d.ts +14 -0
- package/dist/pipeline/config/triggers/jenkins/JenkinsTrigger.d.ts +5 -0
- package/dist/pipeline/config/triggers/jenkins/JenkinsTriggerExecutionStatus.d.ts +5 -0
- package/dist/pipeline/config/triggers/jenkins/JenkinsTriggerTemplate.d.ts +7 -0
- package/dist/pipeline/config/triggers/jenkins/jenkins.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/nexus/NexusTrigger.d.ts +2 -0
- package/dist/pipeline/config/triggers/nexus/nexus.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/nexus/nexusReader.service.d.ts +3 -0
- package/dist/pipeline/config/triggers/pipeline/PipelineTrigger.d.ts +8 -0
- package/dist/pipeline/config/triggers/pipeline/PipelineTriggerTemplate.d.ts +24 -0
- package/dist/pipeline/config/triggers/pipeline/pipeline.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/plugin/PluginTrigger.d.ts +2 -0
- package/dist/pipeline/config/triggers/plugin/plugin.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/pubsub/PubsubTrigger.d.ts +8 -0
- package/dist/pipeline/config/triggers/pubsub/pubsub.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/travis/TravisTrigger.d.ts +5 -0
- package/dist/pipeline/config/triggers/travis/TravisTriggerTemplate.d.ts +7 -0
- package/dist/pipeline/config/triggers/travis/travis.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/triggers.module.d.ts +1 -0
- package/dist/pipeline/config/triggers/webhook/WebhookTrigger.d.ts +7 -0
- package/dist/pipeline/config/triggers/webhook/webhook.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/wercker/WerckerTrigger.d.ts +13 -0
- package/dist/pipeline/config/triggers/wercker/WerckerTriggerTemplate.d.ts +7 -0
- package/dist/pipeline/config/triggers/wercker/wercker.trigger.d.ts +1 -0
- package/dist/pipeline/config/validation/PipelineConfigValidator.d.ts +46 -0
- package/dist/pipeline/config/validation/anyFieldRequired.validator.d.ts +12 -0
- package/dist/pipeline/config/validation/baseRequiredField.validator.d.ts +16 -0
- package/dist/pipeline/config/validation/imageProviderBeforeType.validator.d.ts +12 -0
- package/dist/pipeline/config/validation/repositoryInformationProvided.validator.d.ts +1 -0
- package/dist/pipeline/config/validation/requiredField.validator.d.ts +9 -0
- package/dist/pipeline/config/validation/serviceAccountAccess.validator.d.ts +11 -0
- package/dist/pipeline/config/validation/stageBeforeType.validator.d.ts +10 -0
- package/dist/pipeline/config/validation/stageOrTriggerBeforeType.validator.d.ts +17 -0
- package/dist/pipeline/config/validation/targetImpedance.validator.d.ts +10 -0
- package/dist/pipeline/config/validation/upstreamHasFlagValidator.builder.d.ts +8 -0
- package/dist/pipeline/config/validation/upstreamVersionProvided.validator.d.ts +1 -0
- package/dist/pipeline/create/CreatePipelineButton.d.ts +16 -0
- package/dist/pipeline/create/CreatePipelineModal.d.ts +69 -0
- package/dist/pipeline/create/ManagedTemplateSelector.d.ts +13 -0
- package/dist/pipeline/create/TemplateDescription.d.ts +14 -0
- package/dist/pipeline/create/index.d.ts +1 -0
- package/dist/pipeline/details/ExecutionDetailsSectionNav.d.ts +16 -0
- package/dist/pipeline/details/SingleExecutionDetails.d.ts +18 -0
- package/dist/pipeline/details/StageExecutionDetails.d.ts +42 -0
- package/dist/pipeline/details/StageExecutionLogs.d.ts +8 -0
- package/dist/pipeline/details/StageFailureMessage.d.ts +24 -0
- package/dist/pipeline/details/StageSummary.d.ts +11 -0
- package/dist/pipeline/details/StageSummaryWrapper.d.ts +9 -0
- package/dist/pipeline/details/StepDetails.d.ts +20 -0
- package/dist/pipeline/details/StepExecutionDetailsWrapper.d.ts +9 -0
- package/dist/pipeline/details/executionDetailsSection.service.d.ts +14 -0
- package/dist/pipeline/details/executionDetailsSectionNav.component.d.ts +1 -0
- package/dist/pipeline/details/index.d.ts +5 -0
- package/dist/pipeline/details/stageFailureMessage.component.d.ts +1 -0
- package/dist/pipeline/details/stageSummary.component.d.ts +34 -0
- package/dist/pipeline/details/stepExecutionDetails.component.d.ts +19 -0
- package/dist/pipeline/executionBuild/ExecutionBuildLink.d.ts +13 -0
- package/dist/pipeline/executionBuild/ExecutionBuildTitle.d.ts +10 -0
- package/dist/pipeline/executionBuild/buildDisplayName.filter.d.ts +4 -0
- package/dist/pipeline/executions/ExecutionNotFound.d.ts +2 -0
- package/dist/pipeline/executions/Executions.d.ts +48 -0
- package/dist/pipeline/executions/execution/Execution.d.ts +62 -0
- package/dist/pipeline/executions/execution/ExecutionBreadcrumbs.d.ts +6 -0
- package/dist/pipeline/executions/execution/ExecutionMarker.d.ts +31 -0
- package/dist/pipeline/executions/execution/ExecutionMarkerInformationModal.d.ts +35 -0
- package/dist/pipeline/executions/execution/ExecutionPermalink.d.ts +5 -0
- package/dist/pipeline/executions/execution/OrchestratedItemRunningTime.d.ts +9 -0
- package/dist/pipeline/executions/execution/executionInformation.service.d.ts +10 -0
- package/dist/pipeline/executions/executionAction/ExecutionAction.d.ts +17 -0
- package/dist/pipeline/executions/executionGroup/ExecutionGroup.d.ts +48 -0
- package/dist/pipeline/executions/executionGroup/ExecutionGroups.d.ts +22 -0
- package/dist/pipeline/executions/executionGroup/MigrationTag.d.ts +4 -0
- package/dist/pipeline/filter/ExecutionFilterModel.d.ts +20 -0
- package/dist/pipeline/filter/ExecutionFilters.d.ts +47 -0
- package/dist/pipeline/filter/executionFilter.service.d.ts +29 -0
- package/dist/pipeline/index.d.ts +27 -0
- package/dist/pipeline/manualExecution/CurrentlyRunningExecutions.d.ts +8 -0
- package/dist/pipeline/manualExecution/DryRun.d.ts +2 -0
- package/dist/pipeline/manualExecution/ManualPipelineExecutionModal.d.ts +44 -0
- package/dist/pipeline/manualExecution/NotificationDetails.d.ts +17 -0
- package/dist/pipeline/manualExecution/Parameters.d.ts +11 -0
- package/dist/pipeline/manualExecution/PipelineOptions.d.ts +27 -0
- package/dist/pipeline/manualExecution/StageManualComponents.d.ts +14 -0
- package/dist/pipeline/manualExecution/TriggerTemplate.d.ts +12 -0
- package/dist/pipeline/manualExecution/Triggers.d.ts +19 -0
- package/dist/pipeline/manualExecution/index.d.ts +1 -0
- package/dist/pipeline/manualExecution/layout/ManualExecutionFieldLayout.d.ts +3 -0
- package/dist/pipeline/pipeline.dataSource.d.ts +2 -0
- package/dist/pipeline/pipeline.module.d.ts +19 -0
- package/dist/pipeline/pipeline.states.d.ts +1 -0
- package/dist/pipeline/service/ExecutionsTransformer.d.ts +29 -0
- package/dist/pipeline/service/execution.service.d.ts +85 -0
- package/dist/pipeline/status/Artifact.d.ts +12 -0
- package/dist/pipeline/status/ArtifactList.d.ts +9 -0
- package/dist/pipeline/status/ExecutionCancellationReason.d.ts +7 -0
- package/dist/pipeline/status/ExecutionParameters.d.ts +19 -0
- package/dist/pipeline/status/ExecutionStatus.d.ts +23 -0
- package/dist/pipeline/status/ExecutionUserStatus.d.ts +5 -0
- package/dist/pipeline/status/ParametersAndArtifacts.d.ts +17 -0
- package/dist/pipeline/status/ResolvedArtifactList.d.ts +12 -0
- package/dist/pipeline/status/artifactList.component.d.ts +1 -0
- package/dist/pipeline/triggers/NextRunTag.d.ts +15 -0
- package/dist/pipeline/triggers/QuietPeriodBadge.d.ts +2 -0
- package/dist/pipeline/triggers/TriggersTag.d.ts +6 -0
- package/dist/pipeline/triggers/useQuietPeriod.hook.d.ts +7 -0
- package/dist/plugins/deck.plugin.d.ts +22 -0
- package/dist/plugins/index.d.ts +3 -0
- package/dist/plugins/plugin.module.d.ts +1 -0
- package/dist/plugins/plugin.registry.d.ts +41 -0
- package/dist/plugins/sharedLibraries.d.ts +5 -0
- package/dist/presentation/CollapsibleElement.d.ts +5 -0
- package/dist/presentation/CustomLabels.d.ts +11 -0
- package/dist/presentation/FormElements.d.ts +6 -0
- package/dist/presentation/HoverablePopover.d.ts +55 -0
- package/dist/presentation/IconTooltip.d.ts +10 -0
- package/dist/presentation/LabelComponent.d.ts +8 -0
- package/dist/presentation/LinkWithClipboard.d.ts +6 -0
- package/dist/presentation/LoadingAnimation.d.ts +2 -0
- package/dist/presentation/Markdown.d.ts +189 -0
- package/dist/presentation/Placement.d.ts +1 -0
- package/dist/presentation/Popover.d.ts +15 -0
- package/dist/presentation/ReactModal.d.ts +27 -0
- package/dist/presentation/RenderOutputFile.d.ts +11 -0
- package/dist/presentation/SpanDropdownTrigger.d.ts +15 -0
- package/dist/presentation/SpinErrorBoundary.d.ts +23 -0
- package/dist/presentation/TabBoundary.d.ts +4 -0
- package/dist/presentation/TetheredCreatable.d.ts +6 -0
- package/dist/presentation/TetheredSelect.d.ts +6 -0
- package/dist/presentation/ToggleButtonGroup.d.ts +29 -0
- package/dist/presentation/Tooltip.d.ts +16 -0
- package/dist/presentation/WatchValue.d.ts +16 -0
- package/dist/presentation/anyFieldFilter/anyField.filter.d.ts +11 -0
- package/dist/presentation/autoScroll/autoScroll.directive.d.ts +27 -0
- package/dist/presentation/collapsibleSection/CollapsibleSection.d.ts +22 -0
- package/dist/presentation/collapsibleSection/collapsibleSection.directive.d.ts +2 -0
- package/dist/presentation/details/Details.d.ts +20 -0
- package/dist/presentation/domPurifyOpenLinksInNewWindow.d.ts +1 -0
- package/dist/presentation/forms/FormikForm.d.ts +7 -0
- package/dist/presentation/forms/SpinFormik.d.ts +2 -0
- package/dist/presentation/forms/fields/FormField.d.ts +6 -0
- package/dist/presentation/forms/fields/FormikExpressionField.d.ts +16 -0
- package/dist/presentation/forms/fields/FormikExpressionRegexField.d.ts +21 -0
- package/dist/presentation/forms/fields/FormikFormField.d.ts +28 -0
- package/dist/presentation/forms/fields/index.d.ts +7 -0
- package/dist/presentation/forms/fields/interface.d.ts +35 -0
- package/dist/presentation/forms/fields/renderContent.d.ts +9 -0
- package/dist/presentation/forms/hooks/index.d.ts +2 -0
- package/dist/presentation/forms/hooks/useFormInputValueMapper.hook.d.ts +32 -0
- package/dist/presentation/forms/hooks/useSaveRestoreMutuallyExclusiveFields.hook.d.ts +45 -0
- package/dist/presentation/forms/index.d.ts +7 -0
- package/dist/presentation/forms/inputs/CheckboxInput.d.ts +11 -0
- package/dist/presentation/forms/inputs/ChecklistInput.d.ts +15 -0
- package/dist/presentation/forms/inputs/DayPickerInput.d.ts +6 -0
- package/dist/presentation/forms/inputs/JsonEditor.d.ts +19 -0
- package/dist/presentation/forms/inputs/NumberInput.d.ts +8 -0
- package/dist/presentation/forms/inputs/RadioButtonInput.d.ts +23 -0
- package/dist/presentation/forms/inputs/ReactSelectInput.d.ts +30 -0
- package/dist/presentation/forms/inputs/SelectInput.d.ts +15 -0
- package/dist/presentation/forms/inputs/StringsAsOptions.d.ts +23 -0
- package/dist/presentation/forms/inputs/TextAreaInput.d.ts +9 -0
- package/dist/presentation/forms/inputs/TextInput.d.ts +9 -0
- package/dist/presentation/forms/inputs/expression/ExpressionError.d.ts +12 -0
- package/dist/presentation/forms/inputs/expression/ExpressionInput.d.ts +16 -0
- package/dist/presentation/forms/inputs/expression/ExpressionPreview.d.ts +6 -0
- package/dist/presentation/forms/inputs/expression/evaluateExpression.d.ts +11 -0
- package/dist/presentation/forms/inputs/expression/index.d.ts +6 -0
- package/dist/presentation/forms/inputs/expression/spel2js.templateParser.d.ts +2 -0
- package/dist/presentation/forms/inputs/hooks/index.d.ts +1 -0
- package/dist/presentation/forms/inputs/hooks/useInternalValidator.hook.d.ts +3 -0
- package/dist/presentation/forms/inputs/index.d.ts +15 -0
- package/dist/presentation/forms/inputs/interface.d.ts +30 -0
- package/dist/presentation/forms/inputs/utils.d.ts +9 -0
- package/dist/presentation/forms/layouts/LayoutContext.d.ts +4 -0
- package/dist/presentation/forms/layouts/ResponsiveFieldLayout.d.ts +4 -0
- package/dist/presentation/forms/layouts/StandardFieldLayout.d.ts +4 -0
- package/dist/presentation/forms/layouts/index.d.ts +4 -0
- package/dist/presentation/forms/layouts/interface.d.ts +11 -0
- package/dist/presentation/forms/stories/SpinFormikStoriesHelper.d.ts +12 -0
- package/dist/presentation/forms/validation/FormValidator.d.ts +31 -0
- package/dist/presentation/forms/validation/FormValidatorField.d.ts +26 -0
- package/dist/presentation/forms/validation/ValidationMessage.d.ts +19 -0
- package/dist/presentation/forms/validation/categories.d.ts +23 -0
- package/dist/presentation/forms/validation/index.d.ts +7 -0
- package/dist/presentation/forms/validation/useValidationData.d.ts +16 -0
- package/dist/presentation/forms/validation/validation.d.ts +38 -0
- package/dist/presentation/forms/validation/validators.d.ts +25 -0
- package/dist/presentation/hooks/index.d.ts +19 -0
- package/dist/presentation/hooks/useApplicationContext.hook.d.ts +3 -0
- package/dist/presentation/hooks/useContainerClassNames.hook.d.ts +1 -0
- package/dist/presentation/hooks/useData.hook.d.ts +18 -0
- package/dist/presentation/hooks/useDataSource.hook.d.ts +14 -0
- package/dist/presentation/hooks/useDataWithRefresh.hook.d.ts +17 -0
- package/dist/presentation/hooks/useDebouncedValue.hook.d.ts +7 -0
- package/dist/presentation/hooks/useDeepObjectDiff.hook.d.ts +1 -0
- package/dist/presentation/hooks/useDimensions.hook.d.ts +8 -0
- package/dist/presentation/hooks/useEscapeKeyCallback.hook.d.ts +1 -0
- package/dist/presentation/hooks/useEventListener.hook.d.ts +1 -0
- package/dist/presentation/hooks/useForceUpdate.hook.d.ts +1 -0
- package/dist/presentation/hooks/useInterval.hook.d.ts +16 -0
- package/dist/presentation/hooks/useIsMobile.hook.d.ts +1 -0
- package/dist/presentation/hooks/useIsMountedRef.hook.d.ts +2 -0
- package/dist/presentation/hooks/useLatestCallback.hook.d.ts +6 -0
- package/dist/presentation/hooks/useLatestPromise.hook.d.ts +27 -0
- package/dist/presentation/hooks/useMountStatusRef.hook.d.ts +2 -0
- package/dist/presentation/hooks/useObservable.hook.d.ts +11 -0
- package/dist/presentation/hooks/useObservableValue.hook.d.ts +11 -0
- package/dist/presentation/hooks/usePollingData.hook.d.ts +19 -0
- package/dist/presentation/hooks/usePrevious.hook.d.ts +1 -0
- package/dist/presentation/horizontalTabs/HorizontalTabs.d.ts +14 -0
- package/dist/presentation/index.d.ts +34 -0
- package/dist/presentation/isVisible/isVisible.directive.d.ts +2 -0
- package/dist/presentation/label.component.d.ts +1 -0
- package/dist/presentation/labeledValues/LabeledValue.d.ts +6 -0
- package/dist/presentation/labeledValues/LabeledValueList.d.ts +2 -0
- package/dist/presentation/labeledValues/index.d.ts +2 -0
- package/dist/presentation/linkWithClipboard.component.d.ts +1 -0
- package/dist/presentation/markdown.component.d.ts +1 -0
- package/dist/presentation/modal/Modal.d.ts +10 -0
- package/dist/presentation/modal/ModalBody.d.ts +6 -0
- package/dist/presentation/modal/ModalContext.d.ts +5 -0
- package/dist/presentation/modal/ModalFooter.d.ts +7 -0
- package/dist/presentation/modal/ModalHeader.d.ts +7 -0
- package/dist/presentation/modal/index.d.ts +5 -0
- package/dist/presentation/modal/showModal.d.ts +40 -0
- package/dist/presentation/navigation/PageNavigationState.d.ts +13 -0
- package/dist/presentation/navigation/PageNavigator.d.ts +34 -0
- package/dist/presentation/navigation/PageSection.d.ts +16 -0
- package/dist/presentation/navigation/index.d.ts +2 -0
- package/dist/presentation/navigation/pageNavigator.component.d.ts +2 -0
- package/dist/presentation/navigation/pageSection.component.d.ts +1 -0
- package/dist/presentation/percent.filter.d.ts +2 -0
- package/dist/presentation/presentation.module.d.ts +2 -0
- package/dist/presentation/replace.filter.d.ts +1 -0
- package/dist/presentation/robotToHumanFilter/robotToHuman.filter.d.ts +3 -0
- package/dist/presentation/sortToggle/SortToggle.d.ts +14 -0
- package/dist/presentation/sortToggle/index.d.ts +1 -0
- package/dist/presentation/sortToggle/sorttoggle.directive.d.ts +2 -0
- package/dist/presentation/spel/FormikSpelContext.d.ts +10 -0
- package/dist/presentation/spel/SpelInput.d.ts +16 -0
- package/dist/presentation/spel/SpelService.d.ts +19 -0
- package/dist/presentation/spel/SpelToggle.d.ts +11 -0
- package/dist/presentation/spel/index.d.ts +4 -0
- package/dist/presentation/tables/Table.d.ts +28 -0
- package/dist/presentation/tables/TableCell.d.ts +11 -0
- package/dist/presentation/tables/TableContext.d.ts +11 -0
- package/dist/presentation/tables/TableRow.d.ts +14 -0
- package/dist/presentation/tables/index.d.ts +5 -0
- package/dist/presentation/tables/minimalNativeTableLayout.d.ts +10 -0
- package/dist/presentation/tables/standardGridTableLayout.d.ts +16 -0
- package/dist/presentation/text/BreakString.d.ts +6 -0
- package/dist/presentation/text/SingleLineString.d.ts +6 -0
- package/dist/presentation/text/index.d.ts +2 -0
- package/dist/projects/ProjectHeader.d.ts +23 -0
- package/dist/projects/Projects.d.ts +2 -0
- package/dist/projects/configure/Applications.d.ts +13 -0
- package/dist/projects/configure/Clusters.d.ts +14 -0
- package/dist/projects/configure/ConfigureProjectModal.d.ts +28 -0
- package/dist/projects/configure/Pipelines.d.ts +23 -0
- package/dist/projects/configure/ProjectAttributes.d.ts +24 -0
- package/dist/projects/configure/index.d.ts +5 -0
- package/dist/projects/dashboard/cluster/projectCluster.directive.d.ts +2 -0
- package/dist/projects/dashboard/dashboard.controller.d.ts +2 -0
- package/dist/projects/dashboard/pipeline/ProjectPipeline.d.ts +19 -0
- package/dist/projects/dashboard/pipeline/projectPipeline.component.d.ts +1 -0
- package/dist/projects/dashboard/regionFilter/regionFilter.component.d.ts +2 -0
- package/dist/projects/dashboard/regionFilter/regionFilter.service.d.ts +2 -0
- package/dist/projects/index.d.ts +6 -0
- package/dist/projects/projectSearchResultType.d.ts +19 -0
- package/dist/projects/projects.module.d.ts +3 -0
- package/dist/projects/projects.states.d.ts +5 -0
- package/dist/projects/service/ProjectReader.d.ts +6 -0
- package/dist/projects/service/ProjectWriter.d.ts +5 -0
- package/dist/pubsub/PubsubSubscriptionReader.d.ts +4 -0
- package/dist/pubsub/index.d.ts +1 -0
- package/dist/reactShims/AngularJSAdapter.d.ts +25 -0
- package/dist/reactShims/index.d.ts +7 -0
- package/dist/reactShims/modal.injector.d.ts +10 -0
- package/dist/reactShims/ngReact.d.ts +21 -0
- package/dist/reactShims/react.ga.d.ts +1 -0
- package/dist/reactShims/react.injector.d.ts +49 -0
- package/dist/reactShims/react.module.d.ts +3 -0
- package/dist/reactShims/reactUtils.d.ts +1 -0
- package/dist/reactShims/state.events.d.ts +17 -0
- package/dist/region/RegionSelectField.d.ts +18 -0
- package/dist/region/RegionSelectInput.d.ts +9 -0
- package/dist/region/index.d.ts +2 -0
- package/dist/region/region.module.d.ts +1 -0
- package/dist/region/regionSelectField.directive.d.ts +2 -0
- package/dist/registry/Registry.d.ts +7 -0
- package/dist/registry/index.d.ts +1 -0
- package/dist/retry/index.d.ts +1 -0
- package/dist/retry/retry.service.d.ts +3 -0
- package/dist/scheduler/SchedulerFactory.d.ts +9 -0
- package/dist/scheduler/index.d.ts +1 -0
- package/dist/search/global/GlobalSearch.d.ts +37 -0
- package/dist/search/global/GlobalSearchRecentItems.d.ts +9 -0
- package/dist/search/global/GlobalSearchResults.d.ts +12 -0
- package/dist/search/global/globalSearch.module.d.ts +2 -0
- package/dist/search/global/globalsearch.component.d.ts +1 -0
- package/dist/search/global/utils.d.ts +15 -0
- package/dist/search/index.d.ts +5 -0
- package/dist/search/infrastructure/ProjectSummaryPod.d.ts +14 -0
- package/dist/search/infrastructure/RecentlyViewedItems.d.ts +13 -0
- package/dist/search/infrastructure/SearchResult.d.ts +9 -0
- package/dist/search/infrastructure/SearchResultPod.d.ts +10 -0
- package/dist/search/infrastructure/SearchResultPodItem.d.ts +13 -0
- package/dist/search/infrastructure/SearchResultPods.d.ts +21 -0
- package/dist/search/infrastructure/SearchV2.d.ts +27 -0
- package/dist/search/infrastructure/infrastructure.controller.d.ts +2 -0
- package/dist/search/infrastructure/infrastructure.states.d.ts +1 -0
- package/dist/search/infrastructure/infrastructureSearch.service.d.ts +36 -0
- package/dist/search/infrastructure/infrastructureSearchV2.component.d.ts +1 -0
- package/dist/search/infrastructure/infrastructureSearchV2.service.d.ts +7 -0
- package/dist/search/infrastructure/projectSummaryPod.component.d.ts +1 -0
- package/dist/search/infrastructure/recentlyViewedItems.component.d.ts +1 -0
- package/dist/search/infrastructure/search.infrastructure.module.d.ts +1 -0
- package/dist/search/infrastructure/searchResult.component.d.ts +1 -0
- package/dist/search/search.module.d.ts +2 -0
- package/dist/search/search.service.d.ts +28 -0
- package/dist/search/searchRank.filter.d.ts +4 -0
- package/dist/search/searchResult/DefaultSearchResultTab.d.ts +5 -0
- package/dist/search/searchResult/Renderers.d.ts +40 -0
- package/dist/search/searchResult/SearchResultGrid.d.ts +9 -0
- package/dist/search/searchResult/SearchResultTabs.d.ts +10 -0
- package/dist/search/searchResult/SearchResults.d.ts +19 -0
- package/dist/search/searchResult/SearchStatus.d.ts +7 -0
- package/dist/search/searchResult/index.d.ts +6 -0
- package/dist/search/searchResult/searchResultType.d.ts +30 -0
- package/dist/search/searchResult/searchResultType.registry.d.ts +9 -0
- package/dist/search/widgets/Filter.d.ts +16 -0
- package/dist/search/widgets/Filters.d.ts +28 -0
- package/dist/search/widgets/Search.d.ts +53 -0
- package/dist/search/widgets/SearchFilterTypeRegistry.d.ts +16 -0
- package/dist/search/widgets/index.d.ts +4 -0
- package/dist/search/widgets/search.component.d.ts +1 -0
- package/dist/securityGroup/CreateSecurityGroupButton.d.ts +5 -0
- package/dist/securityGroup/SecurityGroup.d.ts +12 -0
- package/dist/securityGroup/SecurityGroupDetails.d.ts +7 -0
- package/dist/securityGroup/SecurityGroupPod.d.ts +10 -0
- package/dist/securityGroup/SecurityGroupWriter.d.ts +12 -0
- package/dist/securityGroup/SecurityGroups.d.ts +6 -0
- package/dist/securityGroup/filter/SecurityGroupFilterModel.d.ts +7 -0
- package/dist/securityGroup/filter/SecurityGroupFilterService.d.ts +14 -0
- package/dist/securityGroup/filter/SecurityGroupFilters.d.ts +6 -0
- package/dist/securityGroup/filter/securityGroup.filter.component.d.ts +1 -0
- package/dist/securityGroup/index.d.ts +4 -0
- package/dist/securityGroup/label/FirewallLabel.d.ts +5 -0
- package/dist/securityGroup/label/FirewallLabels.d.ts +11 -0
- package/dist/securityGroup/label/firewallLabel.component.d.ts +1 -0
- package/dist/securityGroup/label/index.d.ts +2 -0
- package/dist/securityGroup/securityGroup.dataSource.d.ts +1 -0
- package/dist/securityGroup/securityGroup.module.d.ts +2 -0
- package/dist/securityGroup/securityGroup.states.d.ts +1 -0
- package/dist/securityGroup/securityGroupReader.service.d.ts +94 -0
- package/dist/securityGroup/securityGroupSearchResultType.d.ts +13 -0
- package/dist/securityGroup/securityGroupTransformer.service.d.ts +9 -0
- package/dist/serverGroup/ServerGroup.d.ts +48 -0
- package/dist/serverGroup/ServerGroupHeader.d.ts +46 -0
- package/dist/serverGroup/configure/common/DeployInitializer.d.ts +31 -0
- package/dist/serverGroup/configure/common/InstanceArchetypeSelector.d.ts +6 -0
- package/dist/serverGroup/configure/common/InstanceTypeSelector.d.ts +5 -0
- package/dist/serverGroup/configure/common/ServerGroupNamePreview.d.ts +9 -0
- package/dist/serverGroup/configure/common/basicSettingsMixin.controller.d.ts +2 -0
- package/dist/serverGroup/configure/common/costFactor.d.ts +2 -0
- package/dist/serverGroup/configure/common/deployInitializer.component.d.ts +43 -0
- package/dist/serverGroup/configure/common/index.d.ts +7 -0
- package/dist/serverGroup/configure/common/serverGroupCommandBuilder.service.d.ts +149 -0
- package/dist/serverGroup/configure/common/serverGroupCommandRegistry.provider.d.ts +16 -0
- package/dist/serverGroup/configure/common/serverGroupConfiguration.service.d.ts +10 -0
- package/dist/serverGroup/configure/common/targetHealthyPercentageSelector.component.d.ts +1 -0
- package/dist/serverGroup/configure/common/v2InstanceTypeSelector.component.d.ts +4 -0
- package/dist/serverGroup/configure/common/v2instanceArchetypeSelector.component.d.ts +3 -0
- package/dist/serverGroup/configure/common/wizard/fields/ServerGroupDetailsField.d.ts +12 -0
- package/dist/serverGroup/configure/common/wizard/fields/index.d.ts +1 -0
- package/dist/serverGroup/details/RunningTasks.d.ts +10 -0
- package/dist/serverGroup/details/ServerGroupDetails.d.ts +13 -0
- package/dist/serverGroup/details/ServerGroupDetailsWrapper.d.ts +46 -0
- package/dist/serverGroup/details/ServerGroupInsightActions.d.ts +8 -0
- package/dist/serverGroup/details/ShowUserData.d.ts +17 -0
- package/dist/serverGroup/details/capacity/CapacityDetailsSection.d.ts +8 -0
- package/dist/serverGroup/details/capacity/CurrentCapacity.d.ts +4 -0
- package/dist/serverGroup/details/capacity/DesiredCapacity.d.ts +6 -0
- package/dist/serverGroup/details/capacity/index.d.ts +3 -0
- package/dist/serverGroup/details/index.d.ts +7 -0
- package/dist/serverGroup/details/multipleServerGroup.component.d.ts +2 -0
- package/dist/serverGroup/details/multipleServerGroups.controller.d.ts +2 -0
- package/dist/serverGroup/details/runningTasks.component.d.ts +1 -0
- package/dist/serverGroup/details/scalingActivities/ScalingActivitiesModal.d.ts +27 -0
- package/dist/serverGroup/details/scalingActivities/ViewScalingActivitiesLink.d.ts +6 -0
- package/dist/serverGroup/details/scalingActivities/index.d.ts +1 -0
- package/dist/serverGroup/details/scalingActivities/viewScalingActivitiesLink.component.d.ts +1 -0
- package/dist/serverGroup/details/serverGroupWarningMessage.service.d.ts +9 -0
- package/dist/serverGroup/index.d.ts +9 -0
- package/dist/serverGroup/metrics/CloudMetricsReader.d.ts +5 -0
- package/dist/serverGroup/pod/RunningTasksPopoverContent.d.ts +13 -0
- package/dist/serverGroup/pod/RunningTasksTag.d.ts +7 -0
- package/dist/serverGroup/resize/MinMaxDesiredChanges.d.ts +7 -0
- package/dist/serverGroup/resize/index.d.ts +1 -0
- package/dist/serverGroup/serverGroup.dataSource.d.ts +1 -0
- package/dist/serverGroup/serverGroup.module.d.ts +2 -0
- package/dist/serverGroup/serverGroup.states.d.ts +1 -0
- package/dist/serverGroup/serverGroup.transformer.d.ts +2 -0
- package/dist/serverGroup/serverGroupReader.service.d.ts +5 -0
- package/dist/serverGroup/serverGroupSearchResultType.d.ts +16 -0
- package/dist/serverGroup/serverGroupWriter.service.d.ts +38 -0
- package/dist/serverGroup/templates/index.d.ts +3 -0
- package/dist/serverGroupManager/ServerGroupManager.d.ts +19 -0
- package/dist/serverGroupManager/ServerGroupManagerDetails.d.ts +7 -0
- package/dist/serverGroupManager/ServerGroupManagerHeading.d.ts +13 -0
- package/dist/serverGroupManager/ServerGroupManagerReader.d.ts +4 -0
- package/dist/serverGroupManager/ServerGroupManagerTag.d.ts +13 -0
- package/dist/serverGroupManager/index.d.ts +5 -0
- package/dist/serverGroupManager/serverGroupManager.dataSource.d.ts +1 -0
- package/dist/serverGroupManager/serverGroupManager.module.d.ts +1 -0
- package/dist/serverGroupManager/serverGroupManager.states.d.ts +7 -0
- package/dist/serviceAccount/ServiceAccountReader.d.ts +4 -0
- package/dist/serviceAccount/index.d.ts +1 -0
- package/dist/services/ServicesReader.d.ts +4 -0
- package/dist/services/index.d.ts +1 -0
- package/dist/slack/SlackChannelSelector.d.ts +12 -0
- package/dist/slack/SlackReader.d.ts +12 -0
- package/dist/slack/index.d.ts +2 -0
- package/dist/slack/slackChannelSelector.component.d.ts +1 -0
- package/dist/snapshot/SnapshotReader.d.ts +4 -0
- package/dist/snapshot/SnapshotWriter.d.ts +9 -0
- package/dist/snapshot/diff/snapshotDiff.modal.controller.d.ts +2 -0
- package/dist/snapshot/diff/viewSnapshotDiffButton.component.d.ts +2 -0
- package/dist/state/index.d.ts +36 -0
- package/dist/storage/StorageAccountReader.d.ts +3 -0
- package/dist/storage/index.d.ts +1 -0
- package/dist/styleguide/styleguide.module.d.ts +1 -0
- package/dist/styleguide/styleguide.states.d.ts +1 -0
- package/dist/subnet/SubnetTag.d.ts +12 -0
- package/dist/subnet/index.d.ts +2 -0
- package/dist/subnet/subnet.module.d.ts +1 -0
- package/dist/subnet/subnet.read.service.d.ts +8 -0
- package/dist/subnet/subnetTag.component.d.ts +2 -0
- package/dist/task/PlatformHealthOverrideMessage.d.ts +16 -0
- package/dist/task/StatusGlyph.d.ts +8 -0
- package/dist/task/TaskNotFound.d.ts +2 -0
- package/dist/task/TaskProgressBar.d.ts +7 -0
- package/dist/task/TrafficGuardHelperLink.d.ts +7 -0
- package/dist/task/displayableTasks.filter.d.ts +4 -0
- package/dist/task/index.d.ts +8 -0
- package/dist/task/modal/TaskMonitorModal.d.ts +25 -0
- package/dist/task/modal/TaskReason.d.ts +8 -0
- package/dist/task/modal/reason.directive.d.ts +2 -0
- package/dist/task/monitor/MultiTaskMonitor.d.ts +10 -0
- package/dist/task/monitor/TaskMonitor.d.ts +44 -0
- package/dist/task/monitor/TaskMonitorError.d.ts +11 -0
- package/dist/task/monitor/TaskMonitorStatus.d.ts +5 -0
- package/dist/task/monitor/TaskMonitorWrapper.d.ts +6 -0
- package/dist/task/monitor/taskMonitor.directive.d.ts +2 -0
- package/dist/task/monitor/taskMonitor.module.d.ts +2 -0
- package/dist/task/platformHealthOverrideMessage.component.d.ts +1 -0
- package/dist/task/statusGlyph.component.d.ts +1 -0
- package/dist/task/task.dataSource.d.ts +2 -0
- package/dist/task/task.module.d.ts +2 -0
- package/dist/task/task.read.service.d.ts +16 -0
- package/dist/task/task.states.d.ts +1 -0
- package/dist/task/task.write.service.d.ts +9 -0
- package/dist/task/taskExecutor.d.ts +20 -0
- package/dist/task/taskProgressBar.directive.d.ts +2 -0
- package/dist/task/tasks.controller.d.ts +2 -0
- package/dist/task/verification/UserVerification.d.ts +8 -0
- package/dist/task/verification/index.d.ts +1 -0
- package/dist/task/verification/userVerification.directive.d.ts +2 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/png.d.ts +4 -0
- package/dist/types/promise.d.ts +148 -0
- package/dist/types/svg.d.ts +6 -0
- package/dist/utils/Logger.d.ts +28 -0
- package/dist/utils/RenderWhenVisible.d.ts +10 -0
- package/dist/utils/SystemTimezone.d.ts +2 -0
- package/dist/utils/TimePickerOptions.d.ts +8 -0
- package/dist/utils/clipboard/CopyToClipboard.d.ts +45 -0
- package/dist/utils/clipboard/copyTextToClipboard.d.ts +1 -0
- package/dist/utils/clipboard/copyToClipboard.component.d.ts +1 -0
- package/dist/utils/consoleDebug.d.ts +22 -0
- package/dist/utils/debug.d.ts +23 -0
- package/dist/utils/failedToInstantiateModule.d.ts +1 -0
- package/dist/utils/feature/Feature.d.ts +58 -0
- package/dist/utils/feature/FeatureContext.d.ts +24 -0
- package/dist/utils/feature/index.d.ts +3 -0
- package/dist/utils/feature/useFeature.hook.d.ts +15 -0
- package/dist/utils/firstDefined.d.ts +2 -0
- package/dist/utils/index.d.ts +23 -0
- package/dist/utils/infiniteScroll.directive.d.ts +2 -0
- package/dist/utils/json/DiffView.d.ts +7 -0
- package/dist/utils/json/JsonUtils.d.ts +31 -0
- package/dist/utils/json/diffView.component.d.ts +1 -0
- package/dist/utils/json/filterObjectValues.d.ts +3 -0
- package/dist/utils/json/traverseObject.d.ts +14 -0
- package/dist/utils/noop.d.ts +2 -0
- package/dist/utils/parseNum.d.ts +1 -0
- package/dist/utils/q.d.ts +2 -0
- package/dist/utils/renderIfFeature.component.d.ts +1 -0
- package/dist/utils/retryablePromise.d.ts +5 -0
- package/dist/utils/scrollTo/scrollTo.service.d.ts +4 -0
- package/dist/utils/selectOnDblClick.directive.d.ts +1 -0
- package/dist/utils/testUtils/index.d.ts +7 -0
- package/dist/utils/timeFormatters.d.ts +7 -0
- package/dist/utils/uibModalRejections.d.ts +1 -0
- package/dist/utils/unicodeBase64.d.ts +1 -0
- package/dist/utils/utils.module.d.ts +2 -0
- package/dist/utils/uuid.service.d.ts +4 -0
- package/dist/utils/waypoints/waypoint.directive.d.ts +2 -0
- package/dist/utils/waypoints/waypoint.service.d.ts +8 -0
- package/dist/utils/waypoints/waypointContainer.directive.d.ts +2 -0
- package/dist/utils/workerPool.d.ts +12 -0
- package/dist/validation/triggerValidation.directive.d.ts +2 -0
- package/dist/validation/validateUnique.directive.d.ts +2 -0
- package/dist/validation/validation.module.d.ts +2 -0
- package/dist/validation/validationError.directive.d.ts +2 -0
- package/dist/widgets/AccountRegionClusterSelector.d.ts +12 -0
- package/dist/widgets/ApplicationsPickerInput.d.ts +9 -0
- package/dist/widgets/Keys.d.ts +10 -0
- package/dist/widgets/ScopeClusterSelector.d.ts +18 -0
- package/dist/widgets/accountNamespaceClusterSelector.component.d.ts +2 -0
- package/dist/widgets/accountRegionClusterSelector.component.d.ts +2 -0
- package/dist/widgets/accountRegionClusterSelectorWrapper.component.d.ts +3 -0
- package/dist/widgets/actionIcons/actionIcons.component.d.ts +2 -0
- package/dist/widgets/cluster/ClusterMatches.d.ts +8 -0
- package/dist/widgets/cluster/clusterMatches.component.d.ts +6 -0
- package/dist/widgets/index.d.ts +10 -0
- package/dist/widgets/notifier/Notifier.d.ts +4 -0
- package/dist/widgets/notifier/notifier.service.d.ts +12 -0
- package/dist/widgets/scopeClusterSelector.directive.d.ts +2 -0
- package/dist/widgets/spelText/JsonListBuilder.d.ts +9 -0
- package/dist/widgets/spelText/SpelAutocompleteService.d.ts +36 -0
- package/dist/widgets/spelText/SpelNumberInput.d.ts +22 -0
- package/dist/widgets/spelText/SpelText.d.ts +28 -0
- package/dist/widgets/spelText/spelAutocomplete.service.d.ts +2 -0
- package/dist/widgets/spelText/spelSelect.component.d.ts +2 -0
- package/dist/widgets/spelText/spelText.decorator.d.ts +2 -0
- package/dist/widgets/spinners/Spinner.d.ts +10 -0
- package/dist/widgets/spinners/spinner.component.d.ts +1 -0
- package/dist/widgets/tags/Tag.d.ts +27 -0
- package/dist/widgets/tags/TagList.d.ts +22 -0
- package/dist/widgets/tags/index.d.ts +2 -0
- package/dist/widgets/widgets.module.d.ts +1 -0
- package/dist/yamlEditor/YamlEditor.d.ts +13 -0
- package/dist/yamlEditor/index.d.ts +3 -0
- package/dist/yamlEditor/yamlEditor.component.d.ts +1 -0
- package/dist/yamlEditor/yamlEditorUtils.d.ts +2 -0
- package/package.json +128 -0
- package/rollup.config.js +46 -0
- package/src/account/AccountSelectInput.spec.tsx +160 -0
- package/src/account/AccountSelectInput.tsx +164 -0
- package/src/account/AccountService.spec.ts +128 -0
- package/src/account/AccountService.ts +237 -0
- package/src/account/AccountTag.tsx +62 -0
- package/src/account/account.module.js +19 -0
- package/src/account/accountSelect.wrapper.ts +19 -0
- package/src/account/accountSelectField.component.ts +40 -0
- package/src/account/accountTag.component.ts +33 -0
- package/src/account/accountTag.less +57 -0
- package/src/account/collapsibleAccountTag.directive.html +6 -0
- package/src/account/collapsibleAccountTag.directive.js +33 -0
- package/src/account/index.ts +3 -0
- package/src/account/providerToggles.directive.js +36 -0
- package/src/analytics/GoogleAnalyticsInitializer.ts +13 -0
- package/src/analytics/angulartics.module.d.ts +2 -0
- package/src/analytics/angulartics.module.ts +7 -0
- package/src/api/ApiService.spec.ts +134 -0
- package/src/api/ApiService.ts +290 -0
- package/src/api/ApiServiceDeprecated.spec.ts +457 -0
- package/src/api/index.ts +1 -0
- package/src/api/mock/expectedRequest.ts +148 -0
- package/src/api/mock/jasmine.ts +38 -0
- package/src/api/mock/mockHttpClient.ts +205 -0
- package/src/api/mock/mockHttpUtils.ts +44 -0
- package/src/api/mock/receivedRequest.ts +33 -0
- package/src/api/network.interceptor.ts +86 -0
- package/src/application/ApplicationComponent.tsx +92 -0
- package/src/application/ApplicationContext.tsx +9 -0
- package/src/application/ApplicationFreshIcon.tsx +12 -0
- package/src/application/ApplicationIcon.tsx +16 -0
- package/src/application/application.less +91 -0
- package/src/application/application.model.spec.ts +313 -0
- package/src/application/application.model.ts +296 -0
- package/src/application/application.module.ts +23 -0
- package/src/application/application.state.provider.ts +148 -0
- package/src/application/applicationModel.builder.ts +31 -0
- package/src/application/applicationSearchResultType.tsx +81 -0
- package/src/application/applications.less +8 -0
- package/src/application/applications.state.provider.ts +34 -0
- package/src/application/config/ApplicationConfig.tsx +22 -0
- package/src/application/config/DeleteApplicationSection.tsx +66 -0
- package/src/application/config/appConfig.dataSource.js +17 -0
- package/src/application/config/appConfig.states.ts +35 -0
- package/src/application/config/applicationAttributes.directive.html +65 -0
- package/src/application/config/applicationAttributes.directive.js +119 -0
- package/src/application/config/applicationAttributes.directive.spec.js +52 -0
- package/src/application/config/applicationConfig.controller.js +111 -0
- package/src/application/config/applicationConfig.view.html +70 -0
- package/src/application/config/applicationNotifications.directive.html +7 -0
- package/src/application/config/applicationNotifications.directive.js +31 -0
- package/src/application/config/applicationSnapshotSection.component.html +11 -0
- package/src/application/config/applicationSnapshotSection.component.js +46 -0
- package/src/application/config/customBanner/CustomBannerConfig.spec.tsx +80 -0
- package/src/application/config/customBanner/CustomBannerConfig.tsx +244 -0
- package/src/application/config/customBanner/customBannerColors.ts +71 -0
- package/src/application/config/customBanner/customBannerConfig.component.ts +16 -0
- package/src/application/config/customBanner/customBannerConfig.less +32 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.html +30 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.less +11 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.spec.ts +174 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.ts +104 -0
- package/src/application/config/defaultTagFilter/DefaultTagFilterConfig.spec.tsx +75 -0
- package/src/application/config/defaultTagFilter/DefaultTagFilterConfig.tsx +161 -0
- package/src/application/config/defaultTagFilter/defaultTagFilterConfig.component.ts +15 -0
- package/src/application/config/defaultTagFilter/defaultTagFilterConfig.less +8 -0
- package/src/application/config/deleteApplicationSection.module.ts +10 -0
- package/src/application/config/footer/ConfigSectionFooter.tsx +63 -0
- package/src/application/config/footer/configSectionFooter.component.html +31 -0
- package/src/application/config/footer/configSectionFooter.component.spec.ts +109 -0
- package/src/application/config/footer/configSectionFooter.component.ts +74 -0
- package/src/application/config/links/applicationLinks.component.html +128 -0
- package/src/application/config/links/applicationLinks.component.js +132 -0
- package/src/application/config/links/applicationLinks.component.less +51 -0
- package/src/application/config/links/editLinks.modal.controller.js +29 -0
- package/src/application/config/links/editLinks.modal.html +29 -0
- package/src/application/config/trafficGuard/trafficGuardConfig.component.html +98 -0
- package/src/application/config/trafficGuard/trafficGuardConfig.component.ts +132 -0
- package/src/application/config/trafficGuard/trafficGuardConfig.help.ts +20 -0
- package/src/application/index.ts +17 -0
- package/src/application/listExtractor/AppListExtractor.spec.ts +424 -0
- package/src/application/listExtractor/AppListExtractor.ts +132 -0
- package/src/application/modal/PermissionsConfigurer.less +21 -0
- package/src/application/modal/PermissionsConfigurer.spec.tsx +51 -0
- package/src/application/modal/PermissionsConfigurer.tsx +256 -0
- package/src/application/modal/PlatformHealthOverride.tsx +53 -0
- package/src/application/modal/applicationProviderFields.component.html +1 -0
- package/src/application/modal/applicationProviderFields.component.js +47 -0
- package/src/application/modal/applicationProviderFields.component.spec.js +106 -0
- package/src/application/modal/createApplication.modal.controller.js +140 -0
- package/src/application/modal/createApplication.modal.controller.spec.js +25 -0
- package/src/application/modal/editApplication.controller.modal.js +132 -0
- package/src/application/modal/editApplication.html +262 -0
- package/src/application/modal/newapplication.html +287 -0
- package/src/application/modal/permissionsConfigurer.component.ts +15 -0
- package/src/application/modal/platformHealthOverride.directive.js +41 -0
- package/src/application/modal/platformHealthOverrideCheckbox.directive.html +7 -0
- package/src/application/modal/upsertApplication.help.ts +32 -0
- package/src/application/modal/validation/ApplicationNameValidator.spec.ts +91 -0
- package/src/application/modal/validation/ApplicationNameValidator.ts +78 -0
- package/src/application/modal/validation/ExampleApplicationNameValidator.ts +119 -0
- package/src/application/modal/validation/applicationNameValidationMessages.component.ts +47 -0
- package/src/application/modal/validation/applicationNameValidationMessages.directive.html +12 -0
- package/src/application/modal/validation/validateApplicationName.directive.spec.ts +142 -0
- package/src/application/modal/validation/validateApplicationName.directive.ts +60 -0
- package/src/application/nav/AppRefresher.tsx +36 -0
- package/src/application/nav/AppRefresherIcon.tsx +65 -0
- package/src/application/nav/ApplicationNavigation.spec.tsx +151 -0
- package/src/application/nav/ApplicationNavigation.tsx +105 -0
- package/src/application/nav/BottomSection.tsx +11 -0
- package/src/application/nav/NavItem.spec.tsx +149 -0
- package/src/application/nav/NavItem.tsx +56 -0
- package/src/application/nav/NavRoute.tsx +22 -0
- package/src/application/nav/NavSection.spec.tsx +34 -0
- package/src/application/nav/NavSection.tsx +18 -0
- package/src/application/nav/PagerDutyButton.tsx +28 -0
- package/src/application/nav/defaultCategories.ts +20 -0
- package/src/application/nav/navAtoms.ts +25 -0
- package/src/application/nav/navigationCategory.registry.ts +48 -0
- package/src/application/nav/verticalNav.less +169 -0
- package/src/application/search/Applications.tsx +267 -0
- package/src/application/search/ApplicationsTable.tsx +63 -0
- package/src/application/search/PaginationControls.tsx +45 -0
- package/src/application/search/react-ultimate-pagination.d.ts +37 -0
- package/src/application/service/ApplicationDataSourceRegistry.ts +54 -0
- package/src/application/service/ApplicationReader.spec.ts +134 -0
- package/src/application/service/ApplicationReader.ts +120 -0
- package/src/application/service/ApplicationWriter.spec.ts +61 -0
- package/src/application/service/ApplicationWriter.ts +63 -0
- package/src/application/service/InferredApplicationWarningService.spec.ts +42 -0
- package/src/application/service/InferredApplicationWarningService.tsx +42 -0
- package/src/application/service/applicationDataSource.ts +594 -0
- package/src/artifact/ArtifactIconService.ts +60 -0
- package/src/artifact/ArtifactReferenceService.spec.ts +125 -0
- package/src/artifact/ArtifactReferenceService.ts +75 -0
- package/src/artifact/ArtifactTypes.ts +31 -0
- package/src/artifact/ExpectedArtifactSelectorViewController.ts +72 -0
- package/src/artifact/ExpectedArtifactSelectorViewControllerAngularDelegate.ts +31 -0
- package/src/artifact/IArtifactAccountPair.ts +7 -0
- package/src/artifact/NgAppEngineDeployArtifactDelegate.ts +56 -0
- package/src/artifact/NgAppengineConfigArtifactDelegate.ts +70 -0
- package/src/artifact/NgBakeManifestArtifactDelegate.ts +68 -0
- package/src/artifact/NgGCEImageArtifactDelegate.ts +61 -0
- package/src/artifact/NgGenericArtifactDelegate.ts +82 -0
- package/src/artifact/artifact.module.ts +18 -0
- package/src/artifact/artifactSelector.less +6 -0
- package/src/artifact/artifactTab.less +34 -0
- package/src/artifact/artifactTab.ts +13 -0
- package/src/artifact/expectedArtifact.service.spec.ts +103 -0
- package/src/artifact/expectedArtifact.service.ts +116 -0
- package/src/artifact/expectedArtifactMultiSelector.component.ts +71 -0
- package/src/artifact/human-readable-ids.d.ts +1 -0
- package/src/artifact/icons/bitbucket-file-artifact.svg +18 -0
- package/src/artifact/icons/docker-image-artifact.svg +36 -0
- package/src/artifact/icons/embedded-base64-artifact.svg +20 -0
- package/src/artifact/icons/gcs-file-artifact.svg +11 -0
- package/src/artifact/icons/git-repo-artifact.svg +15 -0
- package/src/artifact/icons/github-file-artifact.svg +2 -0
- package/src/artifact/icons/gitlab-file-artifact.svg +60 -0
- package/src/artifact/icons/helm-chart-artifact.svg +14 -0
- package/src/artifact/icons/http-artifact.svg +15 -0
- package/src/artifact/icons/ivy-artifact.svg +13 -0
- package/src/artifact/icons/jenkins-file-artifact.svg +283 -0
- package/src/artifact/icons/kubernetes-artifact.svg +84 -0
- package/src/artifact/icons/maven-artifact.svg +15 -0
- package/src/artifact/icons/oracle-object-artifact.svg +1 -0
- package/src/artifact/icons/s3-object-artifact.svg +17 -0
- package/src/artifact/icons/unknown-type-artifact.svg +18 -0
- package/src/artifact/imageSourceSelector.component.ts +40 -0
- package/src/artifact/index.ts +23 -0
- package/src/artifact/react/ArtifactAccountSelector.tsx +56 -0
- package/src/artifact/react/ArtifactEditor.tsx +89 -0
- package/src/artifact/react/ArtifactIcon.tsx +35 -0
- package/src/artifact/react/ArtifactIconList.tsx +37 -0
- package/src/artifact/react/ExecutionArtifactTab.tsx +67 -0
- package/src/artifact/react/ExpectedArtifactEditor.tsx +222 -0
- package/src/artifact/react/ExpectedArtifactKindSelector.tsx +98 -0
- package/src/artifact/react/ExpectedArtifactModal.tsx +154 -0
- package/src/artifact/react/ExpectedArtifactSelector.spec.tsx +107 -0
- package/src/artifact/react/ExpectedArtifactSelector.tsx +133 -0
- package/src/artifact/react/ExpectedArtifactSourceSelector.tsx +81 -0
- package/src/artifact/react/StageArtifactSelector.tsx +168 -0
- package/src/artifact/react/StageArtifactSelectorDelegate.tsx +22 -0
- package/src/artifact/stageArtifactSelectorDelegate.ts +24 -0
- package/src/authentication/AuthenticationInitializer.spec.ts +59 -0
- package/src/authentication/AuthenticationInitializer.ts +118 -0
- package/src/authentication/AuthenticationService.spec.ts +45 -0
- package/src/authentication/AuthenticationService.ts +45 -0
- package/src/authentication/LoggedOutModal.less +21 -0
- package/src/authentication/LoggedOutModal.tsx +42 -0
- package/src/authentication/authentication.interceptor.service.ts +44 -0
- package/src/authentication/authentication.interceptor.spec.ts +94 -0
- package/src/authentication/authentication.module.ts +34 -0
- package/src/authentication/index.ts +3 -0
- package/src/authentication/userMenu/UserMenu.tsx +35 -0
- package/src/authentication/userMenu/userMenu.less +19 -0
- package/src/banner/BannerContainer.tsx +44 -0
- package/src/banner/bannerContainer.component.ts +13 -0
- package/src/banner/bannerContainer.module.js +9 -0
- package/src/banner/customBannersByName.ts +25 -0
- package/src/banner/index.ts +1 -0
- package/src/bootstrap/SpinnakerContainer.tsx +37 -0
- package/src/bootstrap/angular.config.ts +41 -0
- package/src/bootstrap/appInit.ts +23 -0
- package/src/bootstrap/bootstrap.module.ts +11 -0
- package/src/bootstrap/index.ts +12 -0
- package/src/bootstrap/paramChangedHelper.ts +15 -0
- package/src/bootstrap/spinnaker.component.ts +27 -0
- package/src/bootstrap/spinnakerContainer.component.ts +11 -0
- package/src/bootstrap/stateChange.logger.ts +29 -0
- package/src/bootstrap/transitionTrace.toggle.ts +28 -0
- package/src/bootstrap/uiBootstrap.config.ts +24 -0
- package/src/bootstrap/uiRouterRxjs.ts +12 -0
- package/src/bootstrap/uiRouterVisualizer.toggle.ts +75 -0
- package/src/bootstrap/uiSelect.config.ts +93 -0
- package/src/cache/abstractBaseCache.ts +29 -0
- package/src/cache/cacheInitializer.service.spec.ts +109 -0
- package/src/cache/cacheInitializer.service.ts +113 -0
- package/src/cache/collapsibleSectionStateCache.ts +49 -0
- package/src/cache/deckCacheFactory.ts +208 -0
- package/src/cache/index.ts +9 -0
- package/src/cache/infrastructureCacheConfig.ts +29 -0
- package/src/cache/infrastructureCaches.spec.ts +136 -0
- package/src/cache/infrastructureCaches.ts +27 -0
- package/src/cache/viewStateCache.ts +19 -0
- package/src/cancelModal/CancelModal.tsx +126 -0
- package/src/certificates/certificate.read.service.ts +19 -0
- package/src/certificates/index.ts +1 -0
- package/src/chaosMonkey/chaosMonkey.help.ts +50 -0
- package/src/chaosMonkey/chaosMonkeyConfig.component.html +76 -0
- package/src/chaosMonkey/chaosMonkeyConfig.component.less +43 -0
- package/src/chaosMonkey/chaosMonkeyConfig.component.ts +84 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.html +70 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.less +5 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.spec.ts +67 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.ts +89 -0
- package/src/chaosMonkey/chaosMonkeyNewApplicationConfig.component.ts +53 -0
- package/src/ci/CIReader.ts +67 -0
- package/src/ci/ci.dataSource.ts +84 -0
- package/src/ci/ci.module.ts +10 -0
- package/src/ci/ci.states.ts +48 -0
- package/src/ci/components/BuildDetailsScrollContainerContext.ts +3 -0
- package/src/ci/components/BuildInfoArtifactsTab.tsx +19 -0
- package/src/ci/components/BuildInfoDetails.tsx +140 -0
- package/src/ci/components/BuildInfoLogsTab.tsx +108 -0
- package/src/ci/components/BuildInfoSummaryCard.tsx +57 -0
- package/src/ci/components/Builds.tsx +109 -0
- package/src/ci/components/builds.less +238 -0
- package/src/ci/domain.ts +59 -0
- package/src/ci/igor.service.ts +58 -0
- package/src/ci/index.ts +1 -0
- package/src/cloudProvider/CloudProviderLabel.tsx +34 -0
- package/src/cloudProvider/CloudProviderLogo.tsx +36 -0
- package/src/cloudProvider/CloudProviderRegistry.spec.ts +103 -0
- package/src/cloudProvider/CloudProviderRegistry.ts +60 -0
- package/src/cloudProvider/cloudProvider.module.ts +12 -0
- package/src/cloudProvider/cloudProviderLabel.directive.js +25 -0
- package/src/cloudProvider/cloudProviderLogo.component.ts +16 -0
- package/src/cloudProvider/cloudProviderLogo.less +33 -0
- package/src/cloudProvider/index.ts +5 -0
- package/src/cloudProvider/providerSelection/ProviderSelectionModal.tsx +85 -0
- package/src/cloudProvider/providerSelection/ProviderSelectionService.spec.ts +506 -0
- package/src/cloudProvider/providerSelection/ProviderSelectionService.ts +68 -0
- package/src/cloudProvider/providerSelection/providerSelector.directive.js +65 -0
- package/src/cloudProvider/providerSelection/providerSelector.html +21 -0
- package/src/cloudProvider/providerService.delegate.ts +34 -0
- package/src/cluster/AllClustersGroupings.tsx +204 -0
- package/src/cluster/ClusterPod.tsx +145 -0
- package/src/cluster/ClusterPodTitleWrapper.tsx +22 -0
- package/src/cluster/ClusterRuleMatcher.spec.ts +86 -0
- package/src/cluster/ClusterRuleMatcher.ts +67 -0
- package/src/cluster/DefaultClusterPodTitle.tsx +56 -0
- package/src/cluster/allClusters.controller.js +151 -0
- package/src/cluster/allClusters.html +82 -0
- package/src/cluster/allClustersGroupings.component.ts +11 -0
- package/src/cluster/cluster.less +8 -0
- package/src/cluster/cluster.module.ts +14 -0
- package/src/cluster/cluster.service.spec.ts +772 -0
- package/src/cluster/cluster.service.ts +340 -0
- package/src/cluster/clusterSearchResultType.tsx +105 -0
- package/src/cluster/filter/ClusterFilterModel.ts +37 -0
- package/src/cluster/filter/ClusterFilterService.spec.ts +1173 -0
- package/src/cluster/filter/ClusterFilterService.ts +547 -0
- package/src/cluster/filter/ClusterFilters.tsx +314 -0
- package/src/cluster/filter/FilterSearch.less +10 -0
- package/src/cluster/filter/FilterSearch.tsx +20 -0
- package/src/cluster/filter/FilterSection.tsx +53 -0
- package/src/cluster/filter/LabelFilter.less +29 -0
- package/src/cluster/filter/LabelFilter.spec.tsx +61 -0
- package/src/cluster/filter/LabelFilter.tsx +147 -0
- package/src/cluster/filter/MultiselectModel.spec.ts +340 -0
- package/src/cluster/filter/MultiselectModel.ts +231 -0
- package/src/cluster/filter/clusterDependentFilterHelper.service.js +43 -0
- package/src/cluster/filter/clusterFilter.component.ts +11 -0
- package/src/cluster/filter/collapsibleFilterSection.directive.js +31 -0
- package/src/cluster/filter/collapsibleFilterSection.html +10 -0
- package/src/cluster/filter/labelFilter.component.ts +11 -0
- package/src/cluster/filter/labelFilterUtils.spec.ts +90 -0
- package/src/cluster/filter/labelFilterUtils.ts +66 -0
- package/src/cluster/filter/mockApplicationData.js +153 -0
- package/src/cluster/index.ts +7 -0
- package/src/cluster/onDemand/onDemandClusterPicker.component.less +8 -0
- package/src/cluster/onDemand/onDemandClusterPicker.component.ts +68 -0
- package/src/cluster/onDemand/onDemandOptionTemplate.html +1 -0
- package/src/cluster/rollups.less +578 -0
- package/src/cluster/task.matcher.ts +141 -0
- package/src/config/VersionChecker.tsx +59 -0
- package/src/config/index.ts +2 -0
- package/src/config/settings.ts +199 -0
- package/src/confirmationModal/ConfirmModal.tsx +141 -0
- package/src/confirmationModal/confirmationModal.service.ts +63 -0
- package/src/confirmationModal/index.ts +1 -0
- package/src/core.module.ts +178 -0
- package/src/deploymentStrategy/DeploymentStrategySelector.tsx +132 -0
- package/src/deploymentStrategy/deploymentStrategy.module.ts +12 -0
- package/src/deploymentStrategy/deploymentStrategy.registry.ts +55 -0
- package/src/deploymentStrategy/deploymentStrategySelector.component.ts +17 -0
- package/src/deploymentStrategy/index.ts +3 -0
- package/src/deploymentStrategy/strategies/PipelineSelector.tsx +277 -0
- package/src/deploymentStrategy/strategies/custom/AdditionalFields.tsx +10 -0
- package/src/deploymentStrategy/strategies/custom/custom.strategy.ts +10 -0
- package/src/deploymentStrategy/strategies/highlander/HighlanderPreview.tsx +61 -0
- package/src/deploymentStrategy/strategies/highlander/highlander.strategy.ts +10 -0
- package/src/deploymentStrategy/strategies/monitored/AdditionalFields.tsx +184 -0
- package/src/deploymentStrategy/strategies/monitored/monitored.strategy.ts +28 -0
- package/src/deploymentStrategy/strategies/none/none.strategy.ts +8 -0
- package/src/deploymentStrategy/strategies/redblack/AdditionalFields.tsx +108 -0
- package/src/deploymentStrategy/strategies/redblack/redblack.strategy.ts +36 -0
- package/src/deploymentStrategy/strategies/rollingredblack/AdditionalFields.tsx +127 -0
- package/src/deploymentStrategy/strategies/rollingredblack/rollingredblack.strategy.ts +23 -0
- package/src/diffs/ChangesModal.tsx +84 -0
- package/src/diffs/CommitHistory.tsx +50 -0
- package/src/diffs/JarDiffs.tsx +59 -0
- package/src/diffs/ViewChangesLink.tsx +79 -0
- package/src/diffs/index.ts +9 -0
- package/src/diffs/viewChangesLink.component.ts +16 -0
- package/src/domain/IArtifact.ts +17 -0
- package/src/domain/IArtifactEditorProps.ts +14 -0
- package/src/domain/IArtifactExtractor.ts +6 -0
- package/src/domain/IArtifactKindConfig.ts +15 -0
- package/src/domain/IArtifactSource.ts +4 -0
- package/src/domain/IAuthentication.ts +3 -0
- package/src/domain/IBuild.ts +16 -0
- package/src/domain/IBuildDiffInfo.ts +7 -0
- package/src/domain/IBuildInfo.ts +4 -0
- package/src/domain/ICloudMetric.ts +24 -0
- package/src/domain/ICluster.ts +19 -0
- package/src/domain/ICredentials.ts +6 -0
- package/src/domain/IDeckRootScope.ts +10 -0
- package/src/domain/IEntityTags.ts +64 -0
- package/src/domain/IExecution.ts +48 -0
- package/src/domain/IExecutionStage.ts +80 -0
- package/src/domain/IExecutionTrigger.ts +22 -0
- package/src/domain/IExpectedArtifact.ts +11 -0
- package/src/domain/IFunction.ts +27 -0
- package/src/domain/IGcbTrigger.ts +5 -0
- package/src/domain/IHealth.ts +15 -0
- package/src/domain/IHelmTrigger.ts +9 -0
- package/src/domain/IInstance.ts +20 -0
- package/src/domain/IInstanceCounts.ts +11 -0
- package/src/domain/IJenkinsInfo.ts +5 -0
- package/src/domain/IJobConfig.ts +15 -0
- package/src/domain/ILoadBalancer.ts +43 -0
- package/src/domain/ILoadBalancerIncompatibility.ts +4 -0
- package/src/domain/IManagedEntity.ts +265 -0
- package/src/domain/IManifest.ts +36 -0
- package/src/domain/INotification.ts +8 -0
- package/src/domain/INotificationTypeConfig.ts +13 -0
- package/src/domain/IOrchestratedItem.ts +32 -0
- package/src/domain/IPipeline.ts +102 -0
- package/src/domain/IPipelineTemplateConfigV2.ts +13 -0
- package/src/domain/IPipelineTemplateV2.ts +42 -0
- package/src/domain/IProject.ts +25 -0
- package/src/domain/IPubsubSubscription.ts +4 -0
- package/src/domain/IRegionalCluster.ts +5 -0
- package/src/domain/ISecurityGroup.ts +55 -0
- package/src/domain/IServerGroup.ts +60 -0
- package/src/domain/IServerGroupManager.ts +19 -0
- package/src/domain/IService.ts +8 -0
- package/src/domain/ISnapshot.ts +10 -0
- package/src/domain/IStage.ts +14 -0
- package/src/domain/IStageContext.ts +8 -0
- package/src/domain/IStageOrTriggerTypeConfig.ts +22 -0
- package/src/domain/IStageTypeConfig.ts +41 -0
- package/src/domain/IStrategy.ts +5 -0
- package/src/domain/ISubnet.ts +13 -0
- package/src/domain/ITaggedEntity.ts +5 -0
- package/src/domain/ITask.ts +20 -0
- package/src/domain/ITaskStep.ts +6 -0
- package/src/domain/ITrigger.ts +102 -0
- package/src/domain/ITriggerTypeConfig.ts +16 -0
- package/src/domain/IVpc.ts +9 -0
- package/src/domain/index.ts +73 -0
- package/src/entityTag/AddEntityTagLinks.tsx +61 -0
- package/src/entityTag/EntitySource.tsx +70 -0
- package/src/entityTag/EntitySourcePopover.tsx +30 -0
- package/src/entityTag/EntityTagEditor.less +19 -0
- package/src/entityTag/EntityTagEditor.tsx +213 -0
- package/src/entityTag/EntityTagsReader.ts +185 -0
- package/src/entityTag/addEntityTagLinks.component.ts +19 -0
- package/src/entityTag/clusterTargetBuilder.ts +78 -0
- package/src/entityTag/entityRef.builder.ts +89 -0
- package/src/entityTag/entitySource.component.ts +11 -0
- package/src/entityTag/entityTags.dataSource.ts +63 -0
- package/src/entityTag/entityTags.help.ts +36 -0
- package/src/entityTag/entityTags.module.ts +17 -0
- package/src/entityTag/entityTags.write.service.ts +42 -0
- package/src/entityTag/index.ts +7 -0
- package/src/entityTag/notifications/CategorizedNotifications.tsx +128 -0
- package/src/entityTag/notifications/DataSourceNotifications.tsx +56 -0
- package/src/entityTag/notifications/EntityName.tsx +31 -0
- package/src/entityTag/notifications/EntityNotifications.tsx +98 -0
- package/src/entityTag/notifications/EphemeralPopover.tsx +70 -0
- package/src/entityTag/notifications/GroupedNotificationList.tsx +137 -0
- package/src/entityTag/notifications/NotificationCategory.tsx +39 -0
- package/src/entityTag/notifications/NotificationList.tsx +83 -0
- package/src/entityTag/notifications/NotificationsPopover.tsx +251 -0
- package/src/entityTag/notifications/entityNotifications.component.ts +47 -0
- package/src/entityTag/notifications/index.ts +6 -0
- package/src/entityTag/notifications/notificationCategories.ts +51 -0
- package/src/entityTag/notifications/notifications.less +99 -0
- package/src/entityTag/notifications/notifications.popover.less +82 -0
- package/src/event/EventBus.spec.ts +16 -0
- package/src/event/EventBus.ts +36 -0
- package/src/filterModel/FilterCheckBox.tsx +48 -0
- package/src/filterModel/FilterCollapse.less +45 -0
- package/src/filterModel/FilterCollapse.tsx +52 -0
- package/src/filterModel/FilterModelService.ts +243 -0
- package/src/filterModel/FilterTags.tsx +78 -0
- package/src/filterModel/IFilterModel.ts +63 -0
- package/src/filterModel/dependentFilter/DependentFilterService.spec.ts +324 -0
- package/src/filterModel/dependentFilter/DependentFilterService.ts +51 -0
- package/src/filterModel/filter.model.service.spec.js +489 -0
- package/src/filterModel/filterCollapse.component.ts +11 -0
- package/src/filterModel/filterTags.component.ts +11 -0
- package/src/filterModel/index.ts +6 -0
- package/src/fonts/README.md +29 -0
- package/src/fonts/icomoon.svg +98 -0
- package/src/fonts/icomoon.ttf +0 -0
- package/src/fonts/icomoon.woff +0 -0
- package/src/fonts/icomoon.woff2 +0 -0
- package/src/fonts/icons.css +289 -0
- package/src/fonts/selection.json +1694 -0
- package/src/forms/autofocus/autofocus.directive.js +27 -0
- package/src/forms/checklist/checklist.directive.html +25 -0
- package/src/forms/checklist/checklist.directive.js +114 -0
- package/src/forms/checklist/checklist.directive.spec.js +156 -0
- package/src/forms/checkmap/checkmap.directive.html +18 -0
- package/src/forms/checkmap/checkmap.directive.js +63 -0
- package/src/forms/checkmap/checkmap.directive.spec.js +56 -0
- package/src/forms/forms.module.js +25 -0
- package/src/forms/ignoreEmptyDelete.directive.js +52 -0
- package/src/forms/index.ts +4 -0
- package/src/forms/mapEditor/MapEditor.less +13 -0
- package/src/forms/mapEditor/MapEditor.tsx +177 -0
- package/src/forms/mapEditor/MapEditorInput.tsx +172 -0
- package/src/forms/mapEditor/MapPair.tsx +81 -0
- package/src/forms/mapEditor/mapEditor.component.html +55 -0
- package/src/forms/mapEditor/mapEditor.component.js +91 -0
- package/src/forms/mapEditor/mapEditor.component.less +9 -0
- package/src/forms/mapEditor/mapEditor.component.spec.js +193 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.html +56 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.js +113 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.less +9 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.spec.js +85 -0
- package/src/forms/numberList/NumberList.tsx +115 -0
- package/src/forms/numberList/numberList.component.ts +11 -0
- package/src/forms/uiSelect.decorator.js +0 -0
- package/src/forms/validateOnSubmit/validateOnSubmit.directive.js +49 -0
- package/src/function/CreateFunctionButton.tsx +74 -0
- package/src/function/Function.tsx +47 -0
- package/src/function/FunctionDetails.tsx +13 -0
- package/src/function/FunctionGroupings.tsx +34 -0
- package/src/function/FunctionPod.tsx +37 -0
- package/src/function/Functions.tsx +112 -0
- package/src/function/filter/FunctionFilterModel.ts +25 -0
- package/src/function/filter/FunctionFilterService.spec.ts +188 -0
- package/src/function/filter/FunctionFilterService.ts +122 -0
- package/src/function/filter/FunctionFilters.tsx +186 -0
- package/src/function/function.dataSource.ts +51 -0
- package/src/function/function.module.ts +8 -0
- package/src/function/function.read.service.spec.ts +94 -0
- package/src/function/function.read.service.ts +62 -0
- package/src/function/function.states.ts +73 -0
- package/src/function/function.transformer.ts +48 -0
- package/src/function/function.write.service.ts +48 -0
- package/src/function/index.ts +4 -0
- package/src/header/SpinnakerHeader.css +61 -0
- package/src/header/SpinnakerHeader.tsx +113 -0
- package/src/header/customBanner/CustomBanner.less +9 -0
- package/src/header/customBanner/CustomBanner.spec.tsx +46 -0
- package/src/header/customBanner/CustomBanner.tsx +77 -0
- package/src/healthCounts/HealthCounts.spec.tsx +152 -0
- package/src/healthCounts/HealthCounts.tsx +222 -0
- package/src/healthCounts/healthCounts.component.ts +15 -0
- package/src/healthCounts/healthCounts.less +35 -0
- package/src/healthCounts/healthCounts.module.ts +6 -0
- package/src/healthCounts/index.ts +1 -0
- package/src/help/HelpField.tsx +70 -0
- package/src/help/HelpMenu.less +32 -0
- package/src/help/HelpMenu.tsx +107 -0
- package/src/help/HelpTextExpandedContext.tsx +3 -0
- package/src/help/help.contents.ts +563 -0
- package/src/help/help.module.ts +8 -0
- package/src/help/helpContents.registry.spec.ts +32 -0
- package/src/help/helpContents.registry.ts +44 -0
- package/src/help/helpField.component.ts +37 -0
- package/src/help/helpFieldReact.component.ts +19 -0
- package/src/help/index.ts +5 -0
- package/src/history/index.ts +1 -0
- package/src/history/recentHistory.service.spec.ts +111 -0
- package/src/history/recentHistory.service.ts +148 -0
- package/src/image/image.reader.ts +45 -0
- package/src/image/index.ts +1 -0
- package/src/index.ts +97 -0
- package/src/insight/InsightLayout.tsx +56 -0
- package/src/insight/InsightMenu.spec.tsx +87 -0
- package/src/insight/InsightMenu.tsx +126 -0
- package/src/insight/insight.less +33 -0
- package/src/insight/insight.module.ts +10 -0
- package/src/insight/insightFilterState.model.ts +22 -0
- package/src/insight/insightLayout.component.ts +11 -0
- package/src/insight/insightmenu.directive.html +33 -0
- package/src/insight/insightmenu.directive.ts +19 -0
- package/src/instance/Instance.tsx +38 -0
- package/src/instance/InstanceList.tsx +196 -0
- package/src/instance/InstanceListBody.tsx +248 -0
- package/src/instance/InstanceReader.ts +27 -0
- package/src/instance/Instances.tsx +120 -0
- package/src/instance/details/InstanceActions.tsx +29 -0
- package/src/instance/details/InstanceDetails.tsx +104 -0
- package/src/instance/details/InstanceDetailsHeader.less +13 -0
- package/src/instance/details/InstanceDetailsHeader.tsx +53 -0
- package/src/instance/details/InstanceDetailsPane.tsx +23 -0
- package/src/instance/details/InstanceInsights.tsx +54 -0
- package/src/instance/details/InstanceLinks.tsx +87 -0
- package/src/instance/details/console/ConsoleOutputLink.tsx +23 -0
- package/src/instance/details/console/ConsoleOutputModal.less +13 -0
- package/src/instance/details/console/ConsoleOutputModal.tsx +101 -0
- package/src/instance/details/console/consoleOutputLink.component.ts +13 -0
- package/src/instance/details/index.ts +8 -0
- package/src/instance/details/instanceActions.component.ts +13 -0
- package/src/instance/details/instanceDetailsHeader.component.ts +20 -0
- package/src/instance/details/instanceInsights.component.ts +18 -0
- package/src/instance/details/instanceLinks.component.js +19 -0
- package/src/instance/details/multipleInstanceServerGroup.directive.html +19 -0
- package/src/instance/details/multipleInstanceServerGroup.directive.js +23 -0
- package/src/instance/details/multipleInstanceServerGroup.directive.less +22 -0
- package/src/instance/details/multipleInstances.controller.js +271 -0
- package/src/instance/details/multipleInstances.controller.spec.js +273 -0
- package/src/instance/details/multipleInstances.view.html +67 -0
- package/src/instance/index.ts +5 -0
- package/src/instance/instance.less +8 -0
- package/src/instance/instance.module.js +28 -0
- package/src/instance/instance.states.ts +120 -0
- package/src/instance/instance.write.service.spec.ts +281 -0
- package/src/instance/instance.write.service.ts +329 -0
- package/src/instance/instanceSearchResultType.tsx +83 -0
- package/src/instance/instanceSelection.less +102 -0
- package/src/instance/instanceType.service.ts +126 -0
- package/src/instance/instanceTypeService.spec.ts +134 -0
- package/src/instance/loadBalancer/InstanceLoadBalancerHealth.tsx +62 -0
- package/src/instance/loadBalancer/instanceLoadBalancerHealth.directive.js +18 -0
- package/src/interceptor/debug.interceptor.ts +32 -0
- package/src/interceptor/interceptor.module.ts +6 -0
- package/src/loadBalancer/CreateLoadBalancerButton.tsx +106 -0
- package/src/loadBalancer/LoadBalancer.tsx +86 -0
- package/src/loadBalancer/LoadBalancerClusterContainer.tsx +52 -0
- package/src/loadBalancer/LoadBalancerDetails.tsx +13 -0
- package/src/loadBalancer/LoadBalancerInstances.tsx +47 -0
- package/src/loadBalancer/LoadBalancerPod.tsx +57 -0
- package/src/loadBalancer/LoadBalancerServerGroup.tsx +83 -0
- package/src/loadBalancer/LoadBalancers.tsx +204 -0
- package/src/loadBalancer/LoadBalancersTag.spec.tsx +89 -0
- package/src/loadBalancer/LoadBalancersTag.tsx +171 -0
- package/src/loadBalancer/LoadBalancersTagWrapper.tsx +23 -0
- package/src/loadBalancer/filter/LoadBalancerFilterModel.ts +35 -0
- package/src/loadBalancer/filter/LoadBalancerFilterService.spec.ts +596 -0
- package/src/loadBalancer/filter/LoadBalancerFilterService.ts +282 -0
- package/src/loadBalancer/filter/LoadBalancerFilters.tsx +323 -0
- package/src/loadBalancer/index.ts +9 -0
- package/src/loadBalancer/loadBalancer.dataSource.ts +48 -0
- package/src/loadBalancer/loadBalancer.less +8 -0
- package/src/loadBalancer/loadBalancer.module.ts +9 -0
- package/src/loadBalancer/loadBalancer.read.service.ts +64 -0
- package/src/loadBalancer/loadBalancer.states.ts +78 -0
- package/src/loadBalancer/loadBalancer.transformer.js +43 -0
- package/src/loadBalancer/loadBalancer.write.service.ts +55 -0
- package/src/loadBalancer/loadBalancerDataUtils.ts +53 -0
- package/src/loadBalancer/loadBalancerPod.less +40 -0
- package/src/loadBalancer/loadBalancerSearchResultType.tsx +89 -0
- package/src/managed/ApplicationQueryError.tsx +30 -0
- package/src/managed/Environments.less +79 -0
- package/src/managed/Environments.tsx +47 -0
- package/src/managed/ManagedReader.ts +102 -0
- package/src/managed/ManagedWriter.ts +10 -0
- package/src/managed/ObjectRow.less +59 -0
- package/src/managed/Pill.less +7 -0
- package/src/managed/Pill.tsx +38 -0
- package/src/managed/RelativeTimestamp.tsx +118 -0
- package/src/managed/UnmanagedMessage.tsx +15 -0
- package/src/managed/artifactActions/ArtifactActions.tsx +77 -0
- package/src/managed/config/Configuration.tsx +185 -0
- package/src/managed/config/DeliveryConfig.tsx +68 -0
- package/src/managed/config/GitIntegration.less +22 -0
- package/src/managed/config/GitIntegration.tsx +128 -0
- package/src/managed/config/ManagementWarning.tsx +53 -0
- package/src/managed/constraints/AllowedTimes.less +3 -0
- package/src/managed/constraints/AllowedTimes.spec.ts +50 -0
- package/src/managed/constraints/AllowedTimes.tsx +112 -0
- package/src/managed/constraints/DependsOn.tsx +21 -0
- package/src/managed/constraints/ManualJudgement.tsx +22 -0
- package/src/managed/constraints/registry.tsx +192 -0
- package/src/managed/displayNames.ts +4 -0
- package/src/managed/environmentBaseElements/BaseEnvironment.less +62 -0
- package/src/managed/environmentBaseElements/BaseEnvironment.tsx +72 -0
- package/src/managed/environmentBaseElements/EnvironmentItem.tsx +49 -0
- package/src/managed/environmentBaseElements/EnvironmentsRender.tsx +99 -0
- package/src/managed/externals/DeployingIntoManagedClusterWarning.tsx +62 -0
- package/src/managed/externals/ManagedMenuItem.tsx +33 -0
- package/src/managed/externals/ManagedResourceConfig.less +7 -0
- package/src/managed/externals/ManagedResourceConfig.tsx +121 -0
- package/src/managed/externals/ManagedResourceDetailsIndicator.css +20 -0
- package/src/managed/externals/ManagedResourceDetailsIndicator.tsx +124 -0
- package/src/managed/externals/ManagedResourceStatusIndicator.less +28 -0
- package/src/managed/externals/ManagedResourceStatusIndicator.tsx +35 -0
- package/src/managed/externals/ManagedResourceStatusPopover.tsx +89 -0
- package/src/managed/externals/managedResourceDecorators.ts +81 -0
- package/src/managed/externals/managedResourceDetailsIndicator.component.ts +14 -0
- package/src/managed/externals/managedResourceStatusConfig.tsx +252 -0
- package/src/managed/externals/toggleResourceManagement.tsx +87 -0
- package/src/managed/graphql/client.ts +31 -0
- package/src/managed/graphql/graphql-sdk.ts +2133 -0
- package/src/managed/graphql/schema.graphql +425 -0
- package/src/managed/icons/md-logo-color.svg +66 -0
- package/src/managed/icons/star.svg +4 -0
- package/src/managed/index.ts +13 -0
- package/src/managed/managed.dataSource.ts +67 -0
- package/src/managed/managed.module.js +8 -0
- package/src/managed/managed.states.ts +97 -0
- package/src/managed/messages/MessageBox.less +48 -0
- package/src/managed/messages/MessageBox.tsx +39 -0
- package/src/managed/messages/Messages.tsx +81 -0
- package/src/managed/overview/EnvironmentOverview.tsx +62 -0
- package/src/managed/overview/EnvironmentsOverview.less +34 -0
- package/src/managed/overview/EnvironmentsOverview.tsx +69 -0
- package/src/managed/overview/PreviewEnvironments.tsx +45 -0
- package/src/managed/overview/Resource.less +56 -0
- package/src/managed/overview/Resource.tsx +207 -0
- package/src/managed/overview/ResourceDeploymentStatus.tsx +53 -0
- package/src/managed/overview/ResourceTask.tsx +62 -0
- package/src/managed/overview/artifact/Artifact.less +74 -0
- package/src/managed/overview/artifact/Artifact.tsx +159 -0
- package/src/managed/overview/artifact/ArtifactActionModal.less +19 -0
- package/src/managed/overview/artifact/ArtifactActionModal.tsx +217 -0
- package/src/managed/overview/artifact/ArtifactCollapsibleSection.tsx +32 -0
- package/src/managed/overview/artifact/ArtifactVersionTasks.less +33 -0
- package/src/managed/overview/artifact/ArtifactVersionTasks.tsx +125 -0
- package/src/managed/overview/artifact/ArtifactVersions.tsx +114 -0
- package/src/managed/overview/artifact/Constraints.less +67 -0
- package/src/managed/overview/artifact/Constraints.tsx +187 -0
- package/src/managed/overview/artifact/CurrentVersion.tsx +74 -0
- package/src/managed/overview/artifact/GitLink.less +25 -0
- package/src/managed/overview/artifact/GitLink.tsx +64 -0
- package/src/managed/overview/artifact/VersionOperation.tsx +53 -0
- package/src/managed/overview/artifact/VersionOperationIcon.less +5 -0
- package/src/managed/overview/artifact/VersionTitle.tsx +18 -0
- package/src/managed/overview/artifact/hooks.ts +152 -0
- package/src/managed/overview/artifact/useCreateRollbackActions.hook.ts +75 -0
- package/src/managed/overview/artifact/utils.spec.ts +95 -0
- package/src/managed/overview/artifact/utils.ts +132 -0
- package/src/managed/overview/baseStyles.less +175 -0
- package/src/managed/overview/queries.graphql +390 -0
- package/src/managed/overview/types.ts +23 -0
- package/src/managed/overview/useIsUpdatingResources.hook.ts +9 -0
- package/src/managed/overview/utils.ts +8 -0
- package/src/managed/plugins/BasePluginManager.ts +29 -0
- package/src/managed/plugins/index.ts +14 -0
- package/src/managed/resourceHistory/HistoryEventRow.tsx +85 -0
- package/src/managed/resourceHistory/ManagedResourceDiffTable.tsx +77 -0
- package/src/managed/resourceHistory/ManagedResourceHistoryModal.less +40 -0
- package/src/managed/resourceHistory/ManagedResourceHistoryModal.tsx +74 -0
- package/src/managed/resources/ResourceDefinitionModal.less +5 -0
- package/src/managed/resources/ResourceDefinitionModal.tsx +28 -0
- package/src/managed/resources/ResourceTitle.tsx +36 -0
- package/src/managed/resources/ToggleResourceManagement.tsx +53 -0
- package/src/managed/resources/resourceRegistry.ts +91 -0
- package/src/managed/resources/useGetResourceLink.hook.ts +19 -0
- package/src/managed/useEnvironmentTypeFromResources.hooks.ts +18 -0
- package/src/managed/utils/ActionModal.tsx +111 -0
- package/src/managed/utils/Button.less +56 -0
- package/src/managed/utils/Button.tsx +33 -0
- package/src/managed/utils/YamlViewer.tsx +40 -0
- package/src/managed/utils/debugMode.ts +16 -0
- package/src/managed/utils/defaults.ts +35 -0
- package/src/managed/utils/logging.ts +32 -0
- package/src/managed/utils/useNotifyOnError.hook.ts +22 -0
- package/src/managed/versionMetadata/MetadataComponents.tsx +335 -0
- package/src/managed/versionMetadata/VersionMetadata.less +108 -0
- package/src/managed/versionMetadata/VersionMetadata.tsx +99 -0
- package/src/managed/versionsHistory/VersionContent.tsx +164 -0
- package/src/managed/versionsHistory/VersionHeading.tsx +164 -0
- package/src/managed/versionsHistory/VersionsHistory.less +155 -0
- package/src/managed/versionsHistory/VersionsHistory.tsx +175 -0
- package/src/managed/versionsHistory/types.ts +39 -0
- package/src/manifest/ManifestReader.ts +8 -0
- package/src/manifest/ManifestWriter.ts +75 -0
- package/src/manifest/ManifestYaml.tsx +55 -0
- package/src/manifest/PodNameProvider.spec.ts +38 -0
- package/src/manifest/PodNameProvider.ts +51 -0
- package/src/manifest/index.ts +6 -0
- package/src/manifest/stage/JobManifestPodLogs.tsx +152 -0
- package/src/manifest/stage/JobStageExecutionLogs.tsx +76 -0
- package/src/modal/buttons/ModalClose.tsx +9 -0
- package/src/modal/buttons/SubmitButton.tsx +38 -0
- package/src/modal/buttons/modalClose.component.ts +18 -0
- package/src/modal/buttons/submitButton.component.ts +23 -0
- package/src/modal/index.ts +4 -0
- package/src/modal/modal.module.js +33 -0
- package/src/modal/modalOverlay.directive.js +37 -0
- package/src/modal/modalPage.directive.js +52 -0
- package/src/modal/modals.less +372 -0
- package/src/modal/wizard/ModalWizard.ts +123 -0
- package/src/modal/wizard/WizardModal.tsx +211 -0
- package/src/modal/wizard/WizardPage.tsx +113 -0
- package/src/modal/wizard/WizardStepLabel.tsx +63 -0
- package/src/modal/wizard/index.ts +4 -0
- package/src/modal/wizard/modalWizard.less +145 -0
- package/src/modal/wizard/v2modalWizard.component.html +36 -0
- package/src/modal/wizard/v2modalWizard.component.ts +48 -0
- package/src/modal/wizard/v2wizardPage.component.html +15 -0
- package/src/modal/wizard/v2wizardPage.component.ts +113 -0
- package/src/modal/wizard/wizardSubFormValidation.service.js +87 -0
- package/src/modal/wizard/wizardSubFormValidation.service.spec.js +96 -0
- package/src/naming/IMoniker.ts +7 -0
- package/src/naming/index.ts +2 -0
- package/src/naming/nameUtils.spec.ts +105 -0
- package/src/naming/nameUtils.ts +137 -0
- package/src/navigation/UrlBuilder.ts +402 -0
- package/src/navigation/UrlBuilderRegistry.ts +13 -0
- package/src/navigation/customParamTypes.spec.ts +47 -0
- package/src/navigation/index.ts +4 -0
- package/src/navigation/navigation.less +90 -0
- package/src/navigation/state.provider.ts +195 -0
- package/src/navigation/stateHelper.provider.ts +62 -0
- package/src/navigation/stateactive.directive.js +28 -0
- package/src/navigation/urlParser.ts +50 -0
- package/src/network/NetworkReader.ts +20 -0
- package/src/network/index.ts +1 -0
- package/src/notfound/NotFound.tsx +19 -0
- package/src/notification/AppNotificationsService.ts +20 -0
- package/src/notification/NotificationService.ts +21 -0
- package/src/notification/NotificationsList.tsx +283 -0
- package/src/notification/extensionNotificationConfig.tsx +27 -0
- package/src/notification/index.ts +5 -0
- package/src/notification/modal/EditNotificationModal.tsx +96 -0
- package/src/notification/modal/NotificationDetails.tsx +116 -0
- package/src/notification/modal/WhenChecklistInput.tsx +83 -0
- package/src/notification/modal/editNotification.less +8 -0
- package/src/notification/modal/index.ts +2 -0
- package/src/notification/modal/whenOptions.ts +5 -0
- package/src/notification/notification.transformer.ts +48 -0
- package/src/notification/notification.types.ts +42 -0
- package/src/notification/notificationList.module.ts +19 -0
- package/src/notification/notifications.module.ts +24 -0
- package/src/notification/selector/NotificationSelector.tsx +67 -0
- package/src/notification/selector/notificationSelector.less +3 -0
- package/src/notification/selector/types/bearychat/BearychatNotificationType.tsx +19 -0
- package/src/notification/selector/types/bearychat/beary.notification.ts +8 -0
- package/src/notification/selector/types/cdevents/CDEventsNotificationType.tsx +36 -0
- package/src/notification/selector/types/cdevents/cdevents.notification.ts +8 -0
- package/src/notification/selector/types/email/EmailNotificationType.tsx +27 -0
- package/src/notification/selector/types/email/email.notification.ts +8 -0
- package/src/notification/selector/types/githubstatus/GithubNotificationType.tsx +25 -0
- package/src/notification/selector/types/githubstatus/githubstatus.notification.ts +8 -0
- package/src/notification/selector/types/googlechat/GooglechatNotificationType.tsx +24 -0
- package/src/notification/selector/types/googlechat/googlechat.notification.ts +8 -0
- package/src/notification/selector/types/index.ts +8 -0
- package/src/notification/selector/types/microsoftteams/MicrosoftTeamsNotificationType.tsx +24 -0
- package/src/notification/selector/types/microsoftteams/microsoftteams.notification.ts +8 -0
- package/src/notification/selector/types/pubsub/PubsubNotificationType.tsx +20 -0
- package/src/notification/selector/types/pubsub/pubsub.notification.ts +8 -0
- package/src/notification/selector/types/slack/SlackNotificationType.tsx +32 -0
- package/src/notification/selector/types/slack/slack.notification.ts +8 -0
- package/src/notification/selector/types/sms/SmsNotificationType.tsx +29 -0
- package/src/notification/selector/types/sms/sms.notification.ts +8 -0
- package/src/orchestratedItem/index.ts +1 -0
- package/src/orchestratedItem/orchestratedItem.transformer.spec.ts +234 -0
- package/src/orchestratedItem/orchestratedItem.transformer.ts +273 -0
- package/src/overrideRegistry/Overridable.tsx +199 -0
- package/src/overrideRegistry/Overrides.tsx +76 -0
- package/src/overrideRegistry/index.ts +3 -0
- package/src/overrideRegistry/override.registry.ts +44 -0
- package/src/pageTitle/index.ts +1 -0
- package/src/pageTitle/pageTitle.module.ts +6 -0
- package/src/pageTitle/pageTitle.service.spec.js +187 -0
- package/src/pageTitle/pageTitle.service.ts +144 -0
- package/src/pagerDuty/PageButton.tsx +63 -0
- package/src/pagerDuty/PageModal.tsx +182 -0
- package/src/pagerDuty/Pager.tsx +631 -0
- package/src/pagerDuty/index.ts +4 -0
- package/src/pagerDuty/js-worker-search.d.ts +11 -0
- package/src/pagerDuty/pageApplicationOwner.html +30 -0
- package/src/pagerDuty/pageApplicationOwner.modal.controller.ts +33 -0
- package/src/pagerDuty/pager.less +311 -0
- package/src/pagerDuty/pager.states.ts +76 -0
- package/src/pagerDuty/pagerDuty.module.ts +14 -0
- package/src/pagerDuty/pagerDuty.read.service.spec.ts +59 -0
- package/src/pagerDuty/pagerDuty.read.service.ts +34 -0
- package/src/pagerDuty/pagerDuty.write.service.ts +52 -0
- package/src/pagerDuty/pagerDutySelectField.component.ts +67 -0
- package/src/pagerDuty/pagerDutyTag.component.spec.ts +72 -0
- package/src/pagerDuty/pagerDutyTag.component.ts +53 -0
- package/src/pipeline/config/CreatePipeline.tsx +92 -0
- package/src/pipeline/config/PipelineRegistry.spec.ts +488 -0
- package/src/pipeline/config/PipelineRegistry.ts +380 -0
- package/src/pipeline/config/actions/PipelineConfigAction.tsx +16 -0
- package/src/pipeline/config/actions/PipelineConfigActions.tsx +56 -0
- package/src/pipeline/config/actions/delete/DeletePipelineModal.tsx +117 -0
- package/src/pipeline/config/actions/disable/DisablePipelineModal.tsx +81 -0
- package/src/pipeline/config/actions/enable/EnablePipelineModal.tsx +77 -0
- package/src/pipeline/config/actions/history/DiffSummary.tsx +18 -0
- package/src/pipeline/config/actions/history/ShowPipelineHistoryModal.tsx +184 -0
- package/src/pipeline/config/actions/history/diffSummary.component.ts +11 -0
- package/src/pipeline/config/actions/history/showHistory.less +34 -0
- package/src/pipeline/config/actions/lock/LockPipelineModal.tsx +104 -0
- package/src/pipeline/config/actions/pipelineConfigActions.module.ts +21 -0
- package/src/pipeline/config/actions/pipelineJson/EditPipelineJsonModal.tsx +178 -0
- package/src/pipeline/config/actions/rename/RenamePipelineModal.tsx +118 -0
- package/src/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.less +7 -0
- package/src/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.spec.tsx +51 -0
- package/src/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.tsx +198 -0
- package/src/pipeline/config/actions/unlock/UnlockPipelineModal.tsx +79 -0
- package/src/pipeline/config/copyStage/CopyStageCard.tsx +56 -0
- package/src/pipeline/config/copyStage/CopyStageModal.tsx +180 -0
- package/src/pipeline/config/copyStage/copyStageCard.less +5 -0
- package/src/pipeline/config/copyStage/copyStageModal.less +18 -0
- package/src/pipeline/config/createPipeline.component.ts +11 -0
- package/src/pipeline/config/graph/PipelineGraph.tsx +616 -0
- package/src/pipeline/config/graph/PipelineGraphLink.tsx +28 -0
- package/src/pipeline/config/graph/PipelineGraphNode.tsx +175 -0
- package/src/pipeline/config/graph/pipeline.graph.component.ts +17 -0
- package/src/pipeline/config/graph/pipelineGraph.less +181 -0
- package/src/pipeline/config/graph/pipelineGraph.service.ts +145 -0
- package/src/pipeline/config/health/stagePlatformHealthOverride.directive.js +23 -0
- package/src/pipeline/config/health/stagePlatformHealthOverrideCheckbox.directive.html +3 -0
- package/src/pipeline/config/parameters/Parameter.tsx +238 -0
- package/src/pipeline/config/parameters/Parameters.tsx +137 -0
- package/src/pipeline/config/parameters/parameters.module.ts +18 -0
- package/src/pipeline/config/parameters/pipeline.module.js +9 -0
- package/src/pipeline/config/pipelineConfig.controller.js +81 -0
- package/src/pipeline/config/pipelineConfig.controller.spec.js +63 -0
- package/src/pipeline/config/pipelineConfig.html +31 -0
- package/src/pipeline/config/pipelineConfig.less +229 -0
- package/src/pipeline/config/pipelineConfig.module.js +43 -0
- package/src/pipeline/config/pipelineConfigView.html +21 -0
- package/src/pipeline/config/pipelineConfigView.js +25 -0
- package/src/pipeline/config/pipelineConfigurer.controller.spec.ts +214 -0
- package/src/pipeline/config/pipelineConfigurer.html +204 -0
- package/src/pipeline/config/pipelineConfigurer.js +549 -0
- package/src/pipeline/config/preconditions/modal/editPrecondition.controller.modal.js +32 -0
- package/src/pipeline/config/preconditions/modal/editPrecondition.html +32 -0
- package/src/pipeline/config/preconditions/precondition.details.filter.js +12 -0
- package/src/pipeline/config/preconditions/preconditionList.directive.html +47 -0
- package/src/pipeline/config/preconditions/preconditionList.directive.js +93 -0
- package/src/pipeline/config/preconditions/preconditionList.directive.less +7 -0
- package/src/pipeline/config/preconditions/preconditionType.service.js +29 -0
- package/src/pipeline/config/preconditions/preconditionTypeConfig.provider.js +28 -0
- package/src/pipeline/config/preconditions/preconditions.module.js +21 -0
- package/src/pipeline/config/preconditions/selector/preconditionSelector.directive.js +112 -0
- package/src/pipeline/config/preconditions/selector/preconditionSelector.html +12 -0
- package/src/pipeline/config/preconditions/types/clusterSize/additionalFields.html +76 -0
- package/src/pipeline/config/preconditions/types/clusterSize/clusterSize.precondition.type.module.js +17 -0
- package/src/pipeline/config/preconditions/types/expression/additionalFields.html +28 -0
- package/src/pipeline/config/preconditions/types/expression/expression.precondition.type.module.js +17 -0
- package/src/pipeline/config/preconditions/types/stageStatus/StageStatusPreconditionConfig.tsx +75 -0
- package/src/pipeline/config/preconditions/types/stageStatus/additionalFields.html +5 -0
- package/src/pipeline/config/preconditions/types/stageStatus/stageStatus.precondition.type.module.ts +15 -0
- package/src/pipeline/config/preconditions/types/stageStatus/stageStatusOptions.ts +53 -0
- package/src/pipeline/config/services/PipelineConfigService.spec.ts +277 -0
- package/src/pipeline/config/services/PipelineConfigService.ts +194 -0
- package/src/pipeline/config/services/pipelineJSON.service.ts +24 -0
- package/src/pipeline/config/stages/FormikStageConfig.tsx +52 -0
- package/src/pipeline/config/stages/StageConfigWrapper.tsx +30 -0
- package/src/pipeline/config/stages/StageName.tsx +46 -0
- package/src/pipeline/config/stages/applySourceServerGroupCapacity/ApplySourceServerGroupCapacityDetails.tsx +50 -0
- package/src/pipeline/config/stages/applySourceServerGroupCapacity/applySourceServerGroupCapacityStage.module.ts +16 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildExecutionDetails.tsx +78 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildSourceList.tsx +192 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageConfig.tsx +29 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageForm.tsx +164 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildValidator.ts +18 -0
- package/src/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSecondarySourceVersionModal.tsx +63 -0
- package/src/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSourceModal.tsx +129 -0
- package/src/pipeline/config/stages/awsCodeBuild/IAwsCodeBuildSource.tsx +27 -0
- package/src/pipeline/config/stages/awsCodeBuild/awsCodeBuildStage.ts +15 -0
- package/src/pipeline/config/stages/bake/BakeExecutionLabel.tsx +25 -0
- package/src/pipeline/config/stages/bake/BakeryReader.ts +44 -0
- package/src/pipeline/config/stages/bake/ManualExecutionBake.tsx +29 -0
- package/src/pipeline/config/stages/bake/bakeStage.js +27 -0
- package/src/pipeline/config/stages/bake/bakeStage.module.js +17 -0
- package/src/pipeline/config/stages/bake/bakeStage.transformer.js +29 -0
- package/src/pipeline/config/stages/bake/bakeStage.transformer.spec.js +45 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.html +12 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.ts +49 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseOs.component.html +23 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseOs.component.ts +52 -0
- package/src/pipeline/config/stages/bake/modal/addExtendedAttribute.controller.modal.js +24 -0
- package/src/pipeline/config/stages/bake/modal/addExtendedAttribute.html +47 -0
- package/src/pipeline/config/stages/bakeManifest/BakeManifestConfig.tsx +54 -0
- package/src/pipeline/config/stages/bakeManifest/BakeManifestDetailsTab.tsx +46 -0
- package/src/pipeline/config/stages/bakeManifest/BakeManifestStageForm.tsx +79 -0
- package/src/pipeline/config/stages/bakeManifest/ManifestRenderers.ts +14 -0
- package/src/pipeline/config/stages/bakeManifest/ManualExecutionBakeManifest.tsx +90 -0
- package/src/pipeline/config/stages/bakeManifest/bakeManifestStage.ts +30 -0
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.spec.tsx +176 -0
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.tsx +318 -0
- package/src/pipeline/config/stages/bakeManifest/helmfile/BakeHelmfileConfigForm.spec.tsx +132 -0
- package/src/pipeline/config/stages/bakeManifest/helmfile/BakeHelmfileConfigForm.tsx +271 -0
- package/src/pipeline/config/stages/bakeManifest/kustomize/BakeKustomizeConfigForm.tsx +59 -0
- package/src/pipeline/config/stages/bakeManifest/utils/getBakedArtifacts.ts +13 -0
- package/src/pipeline/config/stages/bakeManifest/utils/getContentReference.ts +3 -0
- package/src/pipeline/config/stages/baseProviderStage/baseProviderStage.html +12 -0
- package/src/pipeline/config/stages/baseProviderStage/baseProviderStage.js +90 -0
- package/src/pipeline/config/stages/checkPreconditions/CheckPreconditionsExecutionDetails.tsx +45 -0
- package/src/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.html +6 -0
- package/src/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.module.ts +12 -0
- package/src/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.ts +31 -0
- package/src/pipeline/config/stages/cloneServerGroup/CloneServerGroupExecutionDetails.tsx +140 -0
- package/src/pipeline/config/stages/cloneServerGroup/cloneServerGroupStage.module.ts +19 -0
- package/src/pipeline/config/stages/common/AsgActionExecutionDetailsSection.tsx +41 -0
- package/src/pipeline/config/stages/common/EditStageJsonModal.tsx +107 -0
- package/src/pipeline/config/stages/common/ExecutionBarLabel.tsx +144 -0
- package/src/pipeline/config/stages/common/ExecutionDetailsSection.tsx +18 -0
- package/src/pipeline/config/stages/common/ExecutionDetailsTasks.tsx +19 -0
- package/src/pipeline/config/stages/common/ExecutionMarkerIcon.tsx +10 -0
- package/src/pipeline/config/stages/common/ExecutionStepDetails.tsx +63 -0
- package/src/pipeline/config/stages/common/IStageConfigProps.ts +12 -0
- package/src/pipeline/config/stages/common/ServerGroupStageContext.tsx +29 -0
- package/src/pipeline/config/stages/common/StepExecutionDetails.tsx +56 -0
- package/src/pipeline/config/stages/common/applySuspendedStatuses.ts +21 -0
- package/src/pipeline/config/stages/common/baseExecutionDetails.controller.ts +44 -0
- package/src/pipeline/config/stages/common/executionStepDetails.component.ts +12 -0
- package/src/pipeline/config/stages/common/executionSummary.html +90 -0
- package/src/pipeline/config/stages/common/index.ts +9 -0
- package/src/pipeline/config/stages/common/stage.common.module.ts +8 -0
- package/src/pipeline/config/stages/common/stageConfigField/StageConfigField.tsx +22 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.html +9 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.js +35 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.less +9 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.spec.js +53 -0
- package/src/pipeline/config/stages/common/stepLabel.html +1 -0
- package/src/pipeline/config/stages/concourse/ConcourseExecutionDetails.tsx +39 -0
- package/src/pipeline/config/stages/concourse/ConcourseStageConfig.tsx +178 -0
- package/src/pipeline/config/stages/concourse/concourseStage.ts +21 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerExecutionDetails.controller.ts +64 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerExecutionDetails.html +53 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.html +46 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.js +87 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.module.ts +11 -0
- package/src/pipeline/config/stages/deploy/clusterName.filter.ts +16 -0
- package/src/pipeline/config/stages/deploy/deployExecutionDetails.controller.js +183 -0
- package/src/pipeline/config/stages/deploy/deployExecutionDetails.controller.spec.js +224 -0
- package/src/pipeline/config/stages/deploy/deployExecutionDetails.html +111 -0
- package/src/pipeline/config/stages/deploy/deployStage.html +93 -0
- package/src/pipeline/config/stages/deploy/deployStage.js +252 -0
- package/src/pipeline/config/stages/deploy/deployStage.less +13 -0
- package/src/pipeline/config/stages/deploy/deployStage.module.js +27 -0
- package/src/pipeline/config/stages/deploy/deployStage.transformer.js +63 -0
- package/src/pipeline/config/stages/deployService/DeployServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/deployService/deployServiceStage.ts +12 -0
- package/src/pipeline/config/stages/destroyAsg/DestroyAsgExecutionDetails.tsx +14 -0
- package/src/pipeline/config/stages/destroyAsg/destroyAsgStage.ts +18 -0
- package/src/pipeline/config/stages/destroyService/DestroyServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/destroyService/destroyServiceStage.ts +12 -0
- package/src/pipeline/config/stages/disableAsg/DisableAsgExecutionDetails.tsx +14 -0
- package/src/pipeline/config/stages/disableAsg/disableAsgStage.module.ts +18 -0
- package/src/pipeline/config/stages/disableCluster/DisableClusterExecutionDetails.tsx +41 -0
- package/src/pipeline/config/stages/disableCluster/disableClusterStage.ts +17 -0
- package/src/pipeline/config/stages/enableAsg/EnableAsgExecutionDetails.tsx +14 -0
- package/src/pipeline/config/stages/enableAsg/enableAsgStage.ts +18 -0
- package/src/pipeline/config/stages/entityTags/ApplyEntityTagsExecutionDetails.tsx +74 -0
- package/src/pipeline/config/stages/entityTags/ApplyEntityTagsStageConfig.tsx +130 -0
- package/src/pipeline/config/stages/entityTags/TagEditor.less +4 -0
- package/src/pipeline/config/stages/entityTags/TagEditor.tsx +160 -0
- package/src/pipeline/config/stages/entityTags/applyEntityTagsStage.ts +17 -0
- package/src/pipeline/config/stages/evaluateVariables/EvaluateVariablesExecutionDetails.tsx +49 -0
- package/src/pipeline/config/stages/evaluateVariables/EvaluateVariablesStageConfig.less +18 -0
- package/src/pipeline/config/stages/evaluateVariables/EvaluateVariablesStageConfig.tsx +232 -0
- package/src/pipeline/config/stages/evaluateVariables/ExecutionAndStagePicker.tsx +160 -0
- package/src/pipeline/config/stages/evaluateVariables/evaluateVariablesStage.ts +17 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindowActions.tsx +122 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindowDayPicker.tsx +74 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindowExecutionDetails.tsx +22 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindows.tsx +401 -0
- package/src/pipeline/config/stages/executionWindows/daysOfWeek.ts +37 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.html +172 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.less +106 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.module.ts +16 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.transformer.ts +10 -0
- package/src/pipeline/config/stages/executionWindows/executionWindowsConfig.ts +30 -0
- package/src/pipeline/config/stages/executionWindows/executionWindowsStage.ts +14 -0
- package/src/pipeline/config/stages/failOnFailedExpressions/failOnFailedExpressions.directive.html +16 -0
- package/src/pipeline/config/stages/failOnFailedExpressions/failOnFailedExpressions.directive.js +16 -0
- package/src/pipeline/config/stages/findAmi/FindAmiExecutionDetails.tsx +59 -0
- package/src/pipeline/config/stages/findAmi/findAmiStage.ts +23 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/FindArtifactFromExecutionExecutionDetails.tsx +40 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecution.controller.spec.ts +112 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecution.controller.ts +83 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecutionConfig.html +44 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecutionStage.ts +32 -0
- package/src/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.js +16 -0
- package/src/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.module.js +16 -0
- package/src/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildExecutionDetails.tsx +44 -0
- package/src/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageConfig.tsx +31 -0
- package/src/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageForm.tsx +208 -0
- package/src/pipeline/config/stages/googleCloudBuild/IGoogleCloudBuildStage.ts +30 -0
- package/src/pipeline/config/stages/googleCloudBuild/googleCloudBuildStage.ts +18 -0
- package/src/pipeline/config/stages/googleCloudBuild/googleCloudBuildValidators.ts +20 -0
- package/src/pipeline/config/stages/gremlin/GremlinExecutionDetails.tsx +20 -0
- package/src/pipeline/config/stages/gremlin/GremlinStageConfig.tsx +246 -0
- package/src/pipeline/config/stages/gremlin/gremlinStage.ts +18 -0
- package/src/pipeline/config/stages/group/GroupExecutionLabel.tsx +38 -0
- package/src/pipeline/config/stages/group/GroupExecutionPopover.tsx +84 -0
- package/src/pipeline/config/stages/group/GroupMarkerIcon.tsx +14 -0
- package/src/pipeline/config/stages/group/groupStage.html +1 -0
- package/src/pipeline/config/stages/group/groupStage.less +70 -0
- package/src/pipeline/config/stages/group/groupStage.module.ts +6 -0
- package/src/pipeline/config/stages/group/groupStage.ts +27 -0
- package/src/pipeline/config/stages/jenkins/JenkinsExecutionLabel.tsx +32 -0
- package/src/pipeline/config/stages/jenkins/jenkinsExecutionDetails.controller.js +54 -0
- package/src/pipeline/config/stages/jenkins/jenkinsExecutionDetails.controller.spec.js +70 -0
- package/src/pipeline/config/stages/jenkins/jenkinsExecutionDetails.html +82 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.controller.spec.js +142 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.html +227 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.js +165 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.module.js +19 -0
- package/src/pipeline/config/stages/managed/ImportDeliveryConfigExecutionDetails.tsx +111 -0
- package/src/pipeline/config/stages/managed/ImportDeliveryConfigStageConfig.tsx +30 -0
- package/src/pipeline/config/stages/managed/importDeliveryConfigStage.ts +29 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentApproval.tsx +185 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionDetails.tsx +57 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionLabel.tsx +45 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentMarkerIcon.tsx +15 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgment.service.spec.ts +105 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgment.service.ts +31 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentExecutionDetails.less +9 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentStage.html +80 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentStage.js +82 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentStage.module.ts +17 -0
- package/src/pipeline/config/stages/monitorPipeline/MonitorPipelineStageExecutionDetails.tsx +78 -0
- package/src/pipeline/config/stages/monitorPipeline/monitorPipelineStage.js +21 -0
- package/src/pipeline/config/stages/monitorPipeline/monitorPipelineStage.module.js +12 -0
- package/src/pipeline/config/stages/monitoreddeploy/DeploymentMonitorExecutionDetails.tsx +148 -0
- package/src/pipeline/config/stages/monitoreddeploy/DeploymentMonitorReader.ts +13 -0
- package/src/pipeline/config/stages/monitoreddeploy/evaluateHealthStage.ts +14 -0
- package/src/pipeline/config/stages/monitoreddeploy/notifyDeployStartingStage.ts +14 -0
- package/src/pipeline/config/stages/optionalStage/optionalStage.directive.html +24 -0
- package/src/pipeline/config/stages/optionalStage/optionalStage.directive.js +37 -0
- package/src/pipeline/config/stages/overrideFailure/OverrideFailure.tsx +93 -0
- package/src/pipeline/config/stages/overrideFailure/overrideFailure.less +5 -0
- package/src/pipeline/config/stages/overrideFailure/overrideFailure.module.ts +16 -0
- package/src/pipeline/config/stages/overrideTimeout/OverrideTimeout.tsx +151 -0
- package/src/pipeline/config/stages/overrideTimeout/overrideTimeout.module.ts +15 -0
- package/src/pipeline/config/stages/pipeline/PipelineParametersExecutionDetails.tsx +40 -0
- package/src/pipeline/config/stages/pipeline/PipelineStageExecutionDetails.tsx +69 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.html +125 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.js +183 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.module.js +9 -0
- package/src/pipeline/config/stages/preconfiguredJob/PreconfiguredJobExecutionDetails.tsx +130 -0
- package/src/pipeline/config/stages/preconfiguredJob/PreconfiguredJobStageConfig.tsx +29 -0
- package/src/pipeline/config/stages/preconfiguredJob/index.ts +4 -0
- package/src/pipeline/config/stages/preconfiguredJob/preconfiguredJob.reader.ts +26 -0
- package/src/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.module.ts +14 -0
- package/src/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.ts +50 -0
- package/src/pipeline/config/stages/producesArtifacts/ProducesArtifacts.tsx +91 -0
- package/src/pipeline/config/stages/resizeAsg/resizeAsgExecutionDetails.html +38 -0
- package/src/pipeline/config/stages/resizeAsg/resizeAsgStage.ts +17 -0
- package/src/pipeline/config/stages/rollbackCluster/RollbackClusterExecutionDetails.tsx +62 -0
- package/src/pipeline/config/stages/rollbackCluster/rollbackClusterStage.ts +16 -0
- package/src/pipeline/config/stages/runJob/runJobStage.js +16 -0
- package/src/pipeline/config/stages/runJob/runJobStage.module.js +9 -0
- package/src/pipeline/config/stages/savePipelines/PipleineRefList.tsx +40 -0
- package/src/pipeline/config/stages/savePipelines/SavePipelinesResultsTab.tsx +22 -0
- package/src/pipeline/config/stages/savePipelines/SavePipelinesStageConfig.tsx +30 -0
- package/src/pipeline/config/stages/savePipelines/savePipelinesStage.ts +17 -0
- package/src/pipeline/config/stages/scaleDownCluster/ScaleDownClusterExecutionDetails.tsx +43 -0
- package/src/pipeline/config/stages/scaleDownCluster/scaleDownClusterStage.ts +17 -0
- package/src/pipeline/config/stages/script/ScriptExecutionDetails.tsx +79 -0
- package/src/pipeline/config/stages/script/ScriptStageConfig.tsx +97 -0
- package/src/pipeline/config/stages/script/scriptStage.ts +29 -0
- package/src/pipeline/config/stages/shareService/ShareServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/shareService/shareServiceStage.ts +12 -0
- package/src/pipeline/config/stages/shrinkCluster/ShrinkClusterExecutionDetails.tsx +43 -0
- package/src/pipeline/config/stages/shrinkCluster/shrinkClusterStage.ts +18 -0
- package/src/pipeline/config/stages/stage.html +163 -0
- package/src/pipeline/config/stages/stage.module.js +403 -0
- package/src/pipeline/config/stages/stageConstants.ts +101 -0
- package/src/pipeline/config/stages/tagImage/tagImageStage.js +15 -0
- package/src/pipeline/config/stages/tagImage/tagImageStage.module.js +15 -0
- package/src/pipeline/config/stages/templates/index.ts +3 -0
- package/src/pipeline/config/stages/travis/TravisExecutionLabel.tsx +32 -0
- package/src/pipeline/config/stages/travis/modal/addParameter.controller.modal.ts +19 -0
- package/src/pipeline/config/stages/travis/modal/addParameter.html +48 -0
- package/src/pipeline/config/stages/travis/travisExecutionDetails.controller.spec.ts +76 -0
- package/src/pipeline/config/stages/travis/travisExecutionDetails.controller.ts +56 -0
- package/src/pipeline/config/stages/travis/travisExecutionDetails.html +67 -0
- package/src/pipeline/config/stages/travis/travisStage.controller.spec.ts +148 -0
- package/src/pipeline/config/stages/travis/travisStage.html +156 -0
- package/src/pipeline/config/stages/travis/travisStage.module.ts +18 -0
- package/src/pipeline/config/stages/travis/travisStage.ts +182 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.controller.spec.ts +76 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.controller.ts +81 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.html +21 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.ts +14 -0
- package/src/pipeline/config/stages/unshareService/UnshareServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/unshareService/unshareServiceStage.ts +12 -0
- package/src/pipeline/config/stages/wait/SkipWait.tsx +95 -0
- package/src/pipeline/config/stages/wait/WaitExecutionDetails.tsx +22 -0
- package/src/pipeline/config/stages/wait/WaitExecutionLabel.tsx +43 -0
- package/src/pipeline/config/stages/wait/WaitStageConfig.tsx +105 -0
- package/src/pipeline/config/stages/wait/waitStage.ts +18 -0
- package/src/pipeline/config/stages/waitForCondition/SkipConditionWait.tsx +73 -0
- package/src/pipeline/config/stages/waitForCondition/WaitForConditionExecutionDetails.tsx +22 -0
- package/src/pipeline/config/stages/waitForCondition/waitForCondition.transformer.ts +10 -0
- package/src/pipeline/config/stages/waitForCondition/waitForConditionStage.ts +14 -0
- package/src/pipeline/config/stages/waitForParentTasks/waitForParentTasks.js +26 -0
- package/src/pipeline/config/stages/waitForParentTasks/waitForParentTasks.transformer.js +51 -0
- package/src/pipeline/config/stages/waitForParentTasks/waitForParentTasksExecutionDetails.html +16 -0
- package/src/pipeline/config/stages/webhook/modal/addCustomHeader.controller.modal.ts +20 -0
- package/src/pipeline/config/stages/webhook/modal/addCustomHeader.html +48 -0
- package/src/pipeline/config/stages/webhook/webhookExecutionDetails.controller.ts +96 -0
- package/src/pipeline/config/stages/webhook/webhookExecutionDetails.html +82 -0
- package/src/pipeline/config/stages/webhook/webhookStage.html +265 -0
- package/src/pipeline/config/stages/webhook/webhookStage.module.ts +18 -0
- package/src/pipeline/config/stages/webhook/webhookStage.ts +240 -0
- package/src/pipeline/config/stages/wercker/WerckerExecutionLabel.tsx +32 -0
- package/src/pipeline/config/stages/wercker/modal/addParameter.controller.modal.ts +19 -0
- package/src/pipeline/config/stages/wercker/modal/addParameter.html +48 -0
- package/src/pipeline/config/stages/wercker/werckerExecutionDetails.controller.spec.ts +79 -0
- package/src/pipeline/config/stages/wercker/werckerExecutionDetails.controller.ts +55 -0
- package/src/pipeline/config/stages/wercker/werckerExecutionDetails.html +79 -0
- package/src/pipeline/config/stages/wercker/werckerStage.controller.spec.ts +152 -0
- package/src/pipeline/config/stages/wercker/werckerStage.html +150 -0
- package/src/pipeline/config/stages/wercker/werckerStage.module.ts +18 -0
- package/src/pipeline/config/stages/wercker/werckerStage.ts +232 -0
- package/src/pipeline/config/targetSelect.component.ts +22 -0
- package/src/pipeline/config/targetSelect.html +7 -0
- package/src/pipeline/config/templates/PipelineTemplateReader.ts +145 -0
- package/src/pipeline/config/templates/PipelineTemplateWriter.ts +26 -0
- package/src/pipeline/config/templates/TemplatePlanErrors.tsx +65 -0
- package/src/pipeline/config/templates/Variable.less +16 -0
- package/src/pipeline/config/templates/Variable.spec.tsx +64 -0
- package/src/pipeline/config/templates/Variable.tsx +37 -0
- package/src/pipeline/config/templates/VariableError.tsx +26 -0
- package/src/pipeline/config/templates/VariableMetadataHelpField.tsx +31 -0
- package/src/pipeline/config/templates/configurePipelineTemplateModal.controller.spec.ts +300 -0
- package/src/pipeline/config/templates/configurePipelineTemplateModal.controller.ts +247 -0
- package/src/pipeline/config/templates/configurePipelineTemplateModal.html +54 -0
- package/src/pipeline/config/templates/index.ts +2 -0
- package/src/pipeline/config/templates/inputs/BooleanInput.tsx +36 -0
- package/src/pipeline/config/templates/inputs/ListInput.tsx +81 -0
- package/src/pipeline/config/templates/inputs/NumberInput.tsx +39 -0
- package/src/pipeline/config/templates/inputs/ObjectInput.tsx +38 -0
- package/src/pipeline/config/templates/inputs/StringInput.tsx +38 -0
- package/src/pipeline/config/templates/inputs/variableInput.service.ts +40 -0
- package/src/pipeline/config/templates/pipelineTemplate.module.ts +23 -0
- package/src/pipeline/config/templates/templatePlanErrors.component.ts +11 -0
- package/src/pipeline/config/templates/v2/ApplicationSelector.tsx +38 -0
- package/src/pipeline/config/templates/v2/DeletePipelineTemplateV2Modal.less +3 -0
- package/src/pipeline/config/templates/v2/DeletePipelineTemplateV2Modal.tsx +73 -0
- package/src/pipeline/config/templates/v2/PipelineTemplatesV2.less +27 -0
- package/src/pipeline/config/templates/v2/PipelineTemplatesV2.tsx +315 -0
- package/src/pipeline/config/templates/v2/configurePipelineTemplateModalV2.controller.spec.ts +305 -0
- package/src/pipeline/config/templates/v2/configurePipelineTemplateModalV2.controller.ts +263 -0
- package/src/pipeline/config/templates/v2/configurePipelineTemplateModalV2.html +54 -0
- package/src/pipeline/config/templates/v2/createPipelineFromTemplate/CreatePipelineFromTemplate.tsx +170 -0
- package/src/pipeline/config/templates/v2/createPipelineFromTemplate/createPipelineFromTemplate.less +3 -0
- package/src/pipeline/config/templates/v2/createPipelineFromTemplate/index.ts +1 -0
- package/src/pipeline/config/templates/v2/pipelineTemplateV2.service.spec.ts +43 -0
- package/src/pipeline/config/templates/v2/pipelineTemplateV2.service.ts +91 -0
- package/src/pipeline/config/templates/v2/pipelineTemplateV2.states.ts +41 -0
- package/src/pipeline/config/templates/validators/list.validator.ts +19 -0
- package/src/pipeline/config/templates/validators/number.validator.ts +21 -0
- package/src/pipeline/config/templates/validators/object.validator.ts +24 -0
- package/src/pipeline/config/templates/validators/string.validator.ts +17 -0
- package/src/pipeline/config/templates/validators/variableValidator.service.ts +24 -0
- package/src/pipeline/config/templates/variable.component.ts +11 -0
- package/src/pipeline/config/triggers/ExecutionOptionsPageContent.spec.tsx +90 -0
- package/src/pipeline/config/triggers/ExecutionOptionsPageContent.tsx +76 -0
- package/src/pipeline/config/triggers/MetadataPageContent.tsx +133 -0
- package/src/pipeline/config/triggers/NotificationsPageContent.tsx +26 -0
- package/src/pipeline/config/triggers/ParametersPageContent.tsx +58 -0
- package/src/pipeline/config/triggers/PipelineRoles.tsx +47 -0
- package/src/pipeline/config/triggers/RefreshableReactSelectInput.tsx +32 -0
- package/src/pipeline/config/triggers/RunAsUser.tsx +26 -0
- package/src/pipeline/config/triggers/Trigger.less +3 -0
- package/src/pipeline/config/triggers/Trigger.tsx +240 -0
- package/src/pipeline/config/triggers/Triggers.tsx +61 -0
- package/src/pipeline/config/triggers/TriggersPageContent.spec.tsx +151 -0
- package/src/pipeline/config/triggers/TriggersPageContent.tsx +212 -0
- package/src/pipeline/config/triggers/TriggersWrapper.tsx +16 -0
- package/src/pipeline/config/triggers/artifactory/ArtifactoryTrigger.tsx +30 -0
- package/src/pipeline/config/triggers/artifactory/artifactory.trigger.ts +12 -0
- package/src/pipeline/config/triggers/artifactory/artifactoryReader.service.ts +7 -0
- package/src/pipeline/config/triggers/artifacts/ArtifactEditor.ts +22 -0
- package/src/pipeline/config/triggers/artifacts/ArtifactService.ts +18 -0
- package/src/pipeline/config/triggers/artifacts/ExpectedArtifact.less +7 -0
- package/src/pipeline/config/triggers/artifacts/TriggerArtifactConstraintSelectorInput.tsx +136 -0
- package/src/pipeline/config/triggers/artifacts/base64/Base64ArtifactEditor.tsx +131 -0
- package/src/pipeline/config/triggers/artifacts/bitbucket/BitbucketArtifactEditor.tsx +80 -0
- package/src/pipeline/config/triggers/artifacts/custom/CustomArtifactEditor.tsx +117 -0
- package/src/pipeline/config/triggers/artifacts/docker/DockerArtifactEditor.tsx +85 -0
- package/src/pipeline/config/triggers/artifacts/docker/defaultDocker.artifact.spec.ts +90 -0
- package/src/pipeline/config/triggers/artifacts/gcs/GcsArtifactEditor.tsx +75 -0
- package/src/pipeline/config/triggers/artifacts/github/GithubArtifactEditor.tsx +83 -0
- package/src/pipeline/config/triggers/artifacts/gitlab/GitlabArtifactEditor.tsx +83 -0
- package/src/pipeline/config/triggers/artifacts/gitrepo/GitRepoArtifactEditor.tsx +109 -0
- package/src/pipeline/config/triggers/artifacts/helm/HelmArtifactEditor.tsx +169 -0
- package/src/pipeline/config/triggers/artifacts/helm-image/HelmImageArtifactEditor.tsx +169 -0
- package/src/pipeline/config/triggers/artifacts/http/HttpArtifactEditor.tsx +26 -0
- package/src/pipeline/config/triggers/artifacts/index.ts +57 -0
- package/src/pipeline/config/triggers/artifacts/ivy/IvyArtifactEditor.tsx +26 -0
- package/src/pipeline/config/triggers/artifacts/jenkins/JenkinsArtifactEditor.tsx +111 -0
- package/src/pipeline/config/triggers/artifacts/kubernetes/KubernetesArtifactEditor.tsx +79 -0
- package/src/pipeline/config/triggers/artifacts/maven/MavenArtifactEditor.tsx +26 -0
- package/src/pipeline/config/triggers/artifacts/oracle/OracleArtifactEditor.tsx +38 -0
- package/src/pipeline/config/triggers/artifacts/s3/S3ArtifactEditor.tsx +38 -0
- package/src/pipeline/config/triggers/artifacts/singleFieldArtifactEditor.tsx +40 -0
- package/src/pipeline/config/triggers/artifacts/triggerArtifactConstraintSelectorInput.less +4 -0
- package/src/pipeline/config/triggers/baseBuild/BaseBuildTrigger.tsx +91 -0
- package/src/pipeline/config/triggers/baseBuild/BaseBuildTriggerTemplate.tsx +196 -0
- package/src/pipeline/config/triggers/cdevents/CDEventsTrigger.tsx +48 -0
- package/src/pipeline/config/triggers/cdevents/cdevents.trigger.ts +19 -0
- package/src/pipeline/config/triggers/concourse/ConcourseTrigger.tsx +120 -0
- package/src/pipeline/config/triggers/concourse/ConcourseTriggerTemplate.tsx +30 -0
- package/src/pipeline/config/triggers/concourse/concourse.service.ts +19 -0
- package/src/pipeline/config/triggers/concourse/concourse.trigger.ts +36 -0
- package/src/pipeline/config/triggers/cron/CronAdvance.tsx +126 -0
- package/src/pipeline/config/triggers/cron/CronDaily.tsx +172 -0
- package/src/pipeline/config/triggers/cron/CronHourly.tsx +84 -0
- package/src/pipeline/config/triggers/cron/CronMinutes.tsx +61 -0
- package/src/pipeline/config/triggers/cron/CronMonthly.tsx +347 -0
- package/src/pipeline/config/triggers/cron/CronTrigger.tsx +101 -0
- package/src/pipeline/config/triggers/cron/CronWeekly.tsx +111 -0
- package/src/pipeline/config/triggers/cron/cron.trigger.ts +21 -0
- package/src/pipeline/config/triggers/cron/cronConfig.ts +6 -0
- package/src/pipeline/config/triggers/cron/cronSelectOptions.ts +62 -0
- package/src/pipeline/config/triggers/cron/cronTrigger.less +20 -0
- package/src/pipeline/config/triggers/cron/cronValidator.service.ts +13 -0
- package/src/pipeline/config/triggers/git/GitTrigger.tsx +126 -0
- package/src/pipeline/config/triggers/git/GitTriggerExecutionStatus.tsx +19 -0
- package/src/pipeline/config/triggers/git/git.trigger.ts +26 -0
- package/src/pipeline/config/triggers/helm/HelmManualTriggerConfig.tsx +40 -0
- package/src/pipeline/config/triggers/helm/HelmTriggerConfig.tsx +18 -0
- package/src/pipeline/config/triggers/helm/HelmTriggerExecutionStatus.tsx +16 -0
- package/src/pipeline/config/triggers/helm/HelmTriggerTemplate.tsx +90 -0
- package/src/pipeline/config/triggers/helm/helm.trigger.ts +38 -0
- package/src/pipeline/config/triggers/index.ts +16 -0
- package/src/pipeline/config/triggers/jenkins/JenkinsTrigger.tsx +11 -0
- package/src/pipeline/config/triggers/jenkins/JenkinsTriggerExecutionStatus.tsx +10 -0
- package/src/pipeline/config/triggers/jenkins/JenkinsTriggerTemplate.tsx +13 -0
- package/src/pipeline/config/triggers/jenkins/jenkins.trigger.ts +30 -0
- package/src/pipeline/config/triggers/nexus/NexusTrigger.tsx +30 -0
- package/src/pipeline/config/triggers/nexus/nexus.trigger.ts +12 -0
- package/src/pipeline/config/triggers/nexus/nexusReader.service.ts +7 -0
- package/src/pipeline/config/triggers/pipeline/PipelineTrigger.tsx +88 -0
- package/src/pipeline/config/triggers/pipeline/PipelineTriggerTemplate.tsx +201 -0
- package/src/pipeline/config/triggers/pipeline/pipeline.trigger.ts +18 -0
- package/src/pipeline/config/triggers/plugin/PluginTrigger.tsx +32 -0
- package/src/pipeline/config/triggers/plugin/plugin.trigger.ts +9 -0
- package/src/pipeline/config/triggers/pubsub/PubsubTrigger.tsx +77 -0
- package/src/pipeline/config/triggers/pubsub/pubsub.trigger.ts +12 -0
- package/src/pipeline/config/triggers/travis/TravisTrigger.tsx +34 -0
- package/src/pipeline/config/triggers/travis/TravisTriggerTemplate.tsx +13 -0
- package/src/pipeline/config/triggers/travis/travis.trigger.ts +27 -0
- package/src/pipeline/config/triggers/triggers.module.ts +17 -0
- package/src/pipeline/config/triggers/webhook/WebhookTrigger.tsx +41 -0
- package/src/pipeline/config/triggers/webhook/webhook.trigger.ts +19 -0
- package/src/pipeline/config/triggers/wercker/WerckerTrigger.tsx +122 -0
- package/src/pipeline/config/triggers/wercker/WerckerTriggerTemplate.tsx +13 -0
- package/src/pipeline/config/triggers/wercker/wercker.trigger.ts +28 -0
- package/src/pipeline/config/validation/PipelineConfigValidator.ts +215 -0
- package/src/pipeline/config/validation/anyFieldRequired.validator.ts +38 -0
- package/src/pipeline/config/validation/baseRequiredField.validator.ts +54 -0
- package/src/pipeline/config/validation/imageProviderBeforeType.validator.ts +46 -0
- package/src/pipeline/config/validation/pipelineConfig.validator.spec.ts +883 -0
- package/src/pipeline/config/validation/repositoryInformationProvided.validator.ts +3 -0
- package/src/pipeline/config/validation/requiredField.validator.ts +27 -0
- package/src/pipeline/config/validation/serviceAccountAccess.validator.ts +36 -0
- package/src/pipeline/config/validation/stageBeforeType.validator.ts +32 -0
- package/src/pipeline/config/validation/stageOrTriggerBeforeType.validator.ts +80 -0
- package/src/pipeline/config/validation/targetImpedance.validator.ts +63 -0
- package/src/pipeline/config/validation/upstreamHasFlagValidator.builder.ts +42 -0
- package/src/pipeline/config/validation/upstreamVersionProvided.validator.ts +3 -0
- package/src/pipeline/config/warnings.popover.html +18 -0
- package/src/pipeline/create/CreatePipelineButton.tsx +73 -0
- package/src/pipeline/create/CreatePipelineModal.spec.tsx +265 -0
- package/src/pipeline/create/CreatePipelineModal.tsx +572 -0
- package/src/pipeline/create/ManagedTemplateSelector.tsx +54 -0
- package/src/pipeline/create/TemplateDescription.less +13 -0
- package/src/pipeline/create/TemplateDescription.tsx +58 -0
- package/src/pipeline/create/createPipelineModal.less +10 -0
- package/src/pipeline/create/index.ts +1 -0
- package/src/pipeline/details/ExecutionDetailsSectionNav.tsx +70 -0
- package/src/pipeline/details/SingleExecutionDetails.tsx +241 -0
- package/src/pipeline/details/StageExecutionDetails.tsx +239 -0
- package/src/pipeline/details/StageExecutionLogs.tsx +25 -0
- package/src/pipeline/details/StageFailureMessage.tsx +139 -0
- package/src/pipeline/details/StageSummary.tsx +43 -0
- package/src/pipeline/details/StageSummaryWrapper.tsx +10 -0
- package/src/pipeline/details/StepDetails.tsx +77 -0
- package/src/pipeline/details/StepExecutionDetailsWrapper.tsx +10 -0
- package/src/pipeline/details/defaultExecutionDetails.html +7 -0
- package/src/pipeline/details/executionDetailsSection.service.spec.ts +103 -0
- package/src/pipeline/details/executionDetailsSection.service.ts +47 -0
- package/src/pipeline/details/executionDetailsSectionNav.component.ts +11 -0
- package/src/pipeline/details/index.ts +5 -0
- package/src/pipeline/details/singleExecutionDetails.less +3 -0
- package/src/pipeline/details/stageExecutionDetails.less +191 -0
- package/src/pipeline/details/stageFailureMessage.component.ts +11 -0
- package/src/pipeline/details/stageSummary.component.ts +163 -0
- package/src/pipeline/details/stepExecutionDetails.component.ts +52 -0
- package/src/pipeline/executionBuild/ExecutionBuildLink.less +3 -0
- package/src/pipeline/executionBuild/ExecutionBuildLink.tsx +69 -0
- package/src/pipeline/executionBuild/ExecutionBuildTitle.tsx +45 -0
- package/src/pipeline/executionBuild/buildDisplayName.filter.ts +21 -0
- package/src/pipeline/executions/ExecutionNotFound.tsx +9 -0
- package/src/pipeline/executions/Executions.spec.tsx +64 -0
- package/src/pipeline/executions/Executions.tsx +464 -0
- package/src/pipeline/executions/execution/Execution.tsx +544 -0
- package/src/pipeline/executions/execution/ExecutionBreadcrumbs.tsx +62 -0
- package/src/pipeline/executions/execution/ExecutionMarker.tsx +182 -0
- package/src/pipeline/executions/execution/ExecutionMarkerInformationModal.tsx +375 -0
- package/src/pipeline/executions/execution/ExecutionPermalink.tsx +36 -0
- package/src/pipeline/executions/execution/OrchestratedItemRunningTime.ts +34 -0
- package/src/pipeline/executions/execution/execution.less +142 -0
- package/src/pipeline/executions/execution/executionInformation.service.ts +72 -0
- package/src/pipeline/executions/execution/executionMarker.less +56 -0
- package/src/pipeline/executions/execution/executionMarkerInformationModal.less +122 -0
- package/src/pipeline/executions/executionAction/ExecutionAction.spec.tsx +28 -0
- package/src/pipeline/executions/executionAction/ExecutionAction.tsx +41 -0
- package/src/pipeline/executions/executionGroup/ExecutionGroup.tsx +415 -0
- package/src/pipeline/executions/executionGroup/ExecutionGroups.tsx +151 -0
- package/src/pipeline/executions/executionGroup/MigrationTag.tsx +10 -0
- package/src/pipeline/executions/executionGroup/executionGroup.less +138 -0
- package/src/pipeline/executions/executionGroup/executionGroups.less +5 -0
- package/src/pipeline/executions/executions.less +184 -0
- package/src/pipeline/filter/ExecutionFilterModel.ts +133 -0
- package/src/pipeline/filter/ExecutionFilters.tsx +481 -0
- package/src/pipeline/filter/executionFilter.service.spec.ts +27 -0
- package/src/pipeline/filter/executionFilter.service.ts +466 -0
- package/src/pipeline/filter/executionFilters.less +46 -0
- package/src/pipeline/index.ts +27 -0
- package/src/pipeline/manualExecution/CurrentlyRunningExecutions.tsx +42 -0
- package/src/pipeline/manualExecution/DryRun.tsx +13 -0
- package/src/pipeline/manualExecution/ManualPipelineExecutionModal.tsx +457 -0
- package/src/pipeline/manualExecution/NotificationDetails.tsx +101 -0
- package/src/pipeline/manualExecution/Parameters.tsx +98 -0
- package/src/pipeline/manualExecution/PipelineOptions.tsx +130 -0
- package/src/pipeline/manualExecution/StageManualComponents.tsx +19 -0
- package/src/pipeline/manualExecution/TriggerTemplate.tsx +20 -0
- package/src/pipeline/manualExecution/Triggers.tsx +103 -0
- package/src/pipeline/manualExecution/index.ts +1 -0
- package/src/pipeline/manualExecution/layout/ManualExecutionFieldLayout.tsx +30 -0
- package/src/pipeline/manualExecution/manualPipelineExecution.less +32 -0
- package/src/pipeline/pipeline.dataSource.js +108 -0
- package/src/pipeline/pipeline.dataSource.spec.ts +168 -0
- package/src/pipeline/pipeline.less +84 -0
- package/src/pipeline/pipeline.module.ts +128 -0
- package/src/pipeline/pipeline.states.ts +138 -0
- package/src/pipeline/service/ExecutionsTransformer.spec.ts +416 -0
- package/src/pipeline/service/ExecutionsTransformer.ts +504 -0
- package/src/pipeline/service/execution.service.spec.ts +491 -0
- package/src/pipeline/service/execution.service.ts +567 -0
- package/src/pipeline/status/Artifact.spec.tsx +78 -0
- package/src/pipeline/status/Artifact.tsx +59 -0
- package/src/pipeline/status/ArtifactList.spec.tsx +49 -0
- package/src/pipeline/status/ArtifactList.tsx +35 -0
- package/src/pipeline/status/ExecutionCancellationReason.tsx +22 -0
- package/src/pipeline/status/ExecutionParameters.spec.tsx +82 -0
- package/src/pipeline/status/ExecutionParameters.tsx +77 -0
- package/src/pipeline/status/ExecutionStatus.tsx +114 -0
- package/src/pipeline/status/ExecutionUserStatus.tsx +12 -0
- package/src/pipeline/status/ParametersAndArtifacts.tsx +141 -0
- package/src/pipeline/status/ResolvedArtifactList.spec.tsx +137 -0
- package/src/pipeline/status/ResolvedArtifactList.tsx +79 -0
- package/src/pipeline/status/artifact.less +37 -0
- package/src/pipeline/status/artifactList.component.ts +11 -0
- package/src/pipeline/status/artifactList.less +47 -0
- package/src/pipeline/status/executionCancellationReason.less +3 -0
- package/src/pipeline/status/executionParameters.less +43 -0
- package/src/pipeline/status/executionStatus.less +38 -0
- package/src/pipeline/triggers/NextRunTag.tsx +70 -0
- package/src/pipeline/triggers/QuietPeriodBadge.tsx +43 -0
- package/src/pipeline/triggers/TriggersTag.tsx +49 -0
- package/src/pipeline/triggers/useQuietPeriod.hook.ts +43 -0
- package/src/plugins/deck.plugin.spec.ts +64 -0
- package/src/plugins/deck.plugin.ts +44 -0
- package/src/plugins/index.ts +3 -0
- package/src/plugins/plugin.module.ts +36 -0
- package/src/plugins/plugin.registry.spec.ts +166 -0
- package/src/plugins/plugin.registry.ts +173 -0
- package/src/plugins/sharedLibraries.ts +49 -0
- package/src/presentation/CollapsibleElement.less +41 -0
- package/src/presentation/CollapsibleElement.tsx +42 -0
- package/src/presentation/CustomLabels.ts +17 -0
- package/src/presentation/FormElements.tsx +38 -0
- package/src/presentation/HoverablePopover.css +4 -0
- package/src/presentation/HoverablePopover.tsx +254 -0
- package/src/presentation/IconTooltip.tsx +24 -0
- package/src/presentation/LabelComponent.tsx +18 -0
- package/src/presentation/LinkWithClipboard.tsx +17 -0
- package/src/presentation/LoadingAnimation.tsx +9 -0
- package/src/presentation/Markdown.less +13 -0
- package/src/presentation/Markdown.tsx +56 -0
- package/src/presentation/Placement.ts +1 -0
- package/src/presentation/Popover.tsx +45 -0
- package/src/presentation/ReactModal.tsx +78 -0
- package/src/presentation/RenderOutputFile.tsx +28 -0
- package/src/presentation/SpanDropdownTrigger.tsx +27 -0
- package/src/presentation/SpinErrorBoundary.tsx +108 -0
- package/src/presentation/TabBoundary.tsx +46 -0
- package/src/presentation/TetheredCreatable.tsx +37 -0
- package/src/presentation/TetheredSelect.tsx +37 -0
- package/src/presentation/ToggleButtonGroup.tsx +67 -0
- package/src/presentation/Tooltip.tsx +68 -0
- package/src/presentation/WatchValue.tsx +41 -0
- package/src/presentation/anyFieldFilter/anyField.filter.ts +44 -0
- package/src/presentation/autoScroll/autoScroll.directive.spec.js +181 -0
- package/src/presentation/autoScroll/autoScroll.directive.ts +79 -0
- package/src/presentation/collapsibleSection/CollapsibleSection.tsx +123 -0
- package/src/presentation/collapsibleSection/collapsibleSection.directive.html +12 -0
- package/src/presentation/collapsibleSection/collapsibleSection.directive.js +57 -0
- package/src/presentation/details/Details.tsx +71 -0
- package/src/presentation/details.less +197 -0
- package/src/presentation/domPurifyOpenLinksInNewWindow.ts +19 -0
- package/src/presentation/flex-layout.less +164 -0
- package/src/presentation/forms/FormikForm.tsx +31 -0
- package/src/presentation/forms/README.md +237 -0
- package/src/presentation/forms/SpinFormik.spec.tsx +24 -0
- package/src/presentation/forms/SpinFormik.tsx +52 -0
- package/src/presentation/forms/fields/FormField.tsx +79 -0
- package/src/presentation/forms/fields/FormikExpressionField.tsx +56 -0
- package/src/presentation/forms/fields/FormikExpressionRegexField.tsx +161 -0
- package/src/presentation/forms/fields/FormikFormField.spec.tsx +210 -0
- package/src/presentation/forms/fields/FormikFormField.tsx +186 -0
- package/src/presentation/forms/fields/index.ts +7 -0
- package/src/presentation/forms/fields/interface.ts +47 -0
- package/src/presentation/forms/fields/renderContent.tsx +18 -0
- package/src/presentation/forms/forms.less +186 -0
- package/src/presentation/forms/hooks/index.ts +2 -0
- package/src/presentation/forms/hooks/useFormInputValueMapper.hook.ts +44 -0
- package/src/presentation/forms/hooks/useSaveRestoreMutuallyExclusiveFields.hook.spec.tsx +199 -0
- package/src/presentation/forms/hooks/useSaveRestoreMutuallyExclusiveFields.hook.ts +102 -0
- package/src/presentation/forms/index.ts +7 -0
- package/src/presentation/forms/inputs/CheckboxInput.tsx +29 -0
- package/src/presentation/forms/inputs/ChecklistInput.less +26 -0
- package/src/presentation/forms/inputs/ChecklistInput.spec.tsx +126 -0
- package/src/presentation/forms/inputs/ChecklistInput.tsx +81 -0
- package/src/presentation/forms/inputs/DayPickerInput.less +4 -0
- package/src/presentation/forms/inputs/DayPickerInput.tsx +32 -0
- package/src/presentation/forms/inputs/JsonEditor.tsx +65 -0
- package/src/presentation/forms/inputs/NumberInput.css +3 -0
- package/src/presentation/forms/inputs/NumberInput.tsx +31 -0
- package/src/presentation/forms/inputs/RadioButtonInput.spec.tsx +62 -0
- package/src/presentation/forms/inputs/RadioButtonInput.tsx +68 -0
- package/src/presentation/forms/inputs/ReactSelectInput.tsx +124 -0
- package/src/presentation/forms/inputs/SelectInput.spec.tsx +64 -0
- package/src/presentation/forms/inputs/SelectInput.tsx +51 -0
- package/src/presentation/forms/inputs/StringsAsOptions.tsx +37 -0
- package/src/presentation/forms/inputs/TextAreaInput.tsx +16 -0
- package/src/presentation/forms/inputs/TextInput.tsx +30 -0
- package/src/presentation/forms/inputs/aceEditor.less +10 -0
- package/src/presentation/forms/inputs/expression/ExpressionError.tsx +52 -0
- package/src/presentation/forms/inputs/expression/ExpressionInput.tsx +29 -0
- package/src/presentation/forms/inputs/expression/ExpressionPreview.tsx +15 -0
- package/src/presentation/forms/inputs/expression/evaluateExpression.ts +53 -0
- package/src/presentation/forms/inputs/expression/index.ts +7 -0
- package/src/presentation/forms/inputs/expression/spel2js.d.ts +26 -0
- package/src/presentation/forms/inputs/expression/spel2js.templateParser.ts +265 -0
- package/src/presentation/forms/inputs/hooks/index.ts +1 -0
- package/src/presentation/forms/inputs/hooks/useInternalValidator.hook.spec.tsx +130 -0
- package/src/presentation/forms/inputs/hooks/useInternalValidator.hook.ts +27 -0
- package/src/presentation/forms/inputs/index.ts +15 -0
- package/src/presentation/forms/inputs/interface.ts +37 -0
- package/src/presentation/forms/inputs/utils.ts +25 -0
- package/src/presentation/forms/layouts/LayoutContext.tsx +7 -0
- package/src/presentation/forms/layouts/ResponsiveFieldLayout.tsx +41 -0
- package/src/presentation/forms/layouts/StandardFieldLayout.css +11 -0
- package/src/presentation/forms/layouts/StandardFieldLayout.tsx +34 -0
- package/src/presentation/forms/layouts/index.ts +4 -0
- package/src/presentation/forms/layouts/interface.ts +13 -0
- package/src/presentation/forms/stories/FormikIntro.stories.mdx +116 -0
- package/src/presentation/forms/stories/SpinFormik.stories.tsx +167 -0
- package/src/presentation/forms/stories/SpinFormikStoriesHelper.tsx +68 -0
- package/src/presentation/forms/validation/FormValidator.spec.ts +380 -0
- package/src/presentation/forms/validation/FormValidator.ts +162 -0
- package/src/presentation/forms/validation/FormValidatorField.ts +44 -0
- package/src/presentation/forms/validation/ValidationMessage.less +42 -0
- package/src/presentation/forms/validation/ValidationMessage.tsx +52 -0
- package/src/presentation/forms/validation/categories.spec.ts +178 -0
- package/src/presentation/forms/validation/categories.ts +79 -0
- package/src/presentation/forms/validation/index.ts +7 -0
- package/src/presentation/forms/validation/useValidationData.spec.tsx +176 -0
- package/src/presentation/forms/validation/useValidationData.ts +40 -0
- package/src/presentation/forms/validation/validation.ts +70 -0
- package/src/presentation/forms/validation/validators.spec.ts +63 -0
- package/src/presentation/forms/validation/validators.ts +181 -0
- package/src/presentation/hooks/index.ts +19 -0
- package/src/presentation/hooks/useApplicationContext.hook.ts +19 -0
- package/src/presentation/hooks/useContainerClassNames.hook.spec.tsx +76 -0
- package/src/presentation/hooks/useContainerClassNames.hook.ts +43 -0
- package/src/presentation/hooks/useData.hook.spec.tsx +124 -0
- package/src/presentation/hooks/useData.hook.ts +32 -0
- package/src/presentation/hooks/useDataSource.hook.ts +31 -0
- package/src/presentation/hooks/useDataWithRefresh.hook.ts +39 -0
- package/src/presentation/hooks/useDebouncedValue.hook.spec.tsx +125 -0
- package/src/presentation/hooks/useDebouncedValue.hook.ts +18 -0
- package/src/presentation/hooks/useDeepObjectDiff.hook.spec.tsx +26 -0
- package/src/presentation/hooks/useDeepObjectDiff.hook.ts +15 -0
- package/src/presentation/hooks/useDimensions.hook.ts +38 -0
- package/src/presentation/hooks/useEscapeKeyCallback.hook.ts +5 -0
- package/src/presentation/hooks/useEventListener.hook.spec.tsx +177 -0
- package/src/presentation/hooks/useEventListener.hook.ts +33 -0
- package/src/presentation/hooks/useForceUpdate.hook.spec.tsx +34 -0
- package/src/presentation/hooks/useForceUpdate.hook.ts +9 -0
- package/src/presentation/hooks/useInterval.hook.spec.tsx +97 -0
- package/src/presentation/hooks/useInterval.hook.ts +28 -0
- package/src/presentation/hooks/useIsMobile.hook.ts +30 -0
- package/src/presentation/hooks/useIsMountedRef.hook.spec.tsx +62 -0
- package/src/presentation/hooks/useIsMountedRef.hook.ts +14 -0
- package/src/presentation/hooks/useLatestCallback.hook.spec.tsx +65 -0
- package/src/presentation/hooks/useLatestCallback.hook.ts +17 -0
- package/src/presentation/hooks/useLatestPromise.hook.spec.tsx +160 -0
- package/src/presentation/hooks/useLatestPromise.hook.ts +94 -0
- package/src/presentation/hooks/useMountStatusRef.hook.spec.tsx +36 -0
- package/src/presentation/hooks/useMountStatusRef.hook.ts +12 -0
- package/src/presentation/hooks/useObservable.hook.ts +21 -0
- package/src/presentation/hooks/useObservableValue.hook.ts +19 -0
- package/src/presentation/hooks/usePollingData.hook.spec.tsx +125 -0
- package/src/presentation/hooks/usePollingData.hook.ts +44 -0
- package/src/presentation/hooks/usePrevious.hook.spec.tsx +34 -0
- package/src/presentation/hooks/usePrevious.hook.ts +11 -0
- package/src/presentation/horizontalTabs/HorizontalTabs.less +47 -0
- package/src/presentation/horizontalTabs/HorizontalTabs.tsx +47 -0
- package/src/presentation/index.ts +34 -0
- package/src/presentation/isVisible/isVisible.directive.js +13 -0
- package/src/presentation/label.component.ts +11 -0
- package/src/presentation/labeledValues/LabeledValue.tsx +13 -0
- package/src/presentation/labeledValues/LabeledValueList.tsx +6 -0
- package/src/presentation/labeledValues/index.ts +2 -0
- package/src/presentation/less/imports/animations.less +88 -0
- package/src/presentation/less/imports/commonImports.less +4 -0
- package/src/presentation/less/imports/mixins.less +57 -0
- package/src/presentation/linkWithClipboard.component.ts +11 -0
- package/src/presentation/main.less +1617 -0
- package/src/presentation/markdown.component.ts +11 -0
- package/src/presentation/modal/Modal.less +193 -0
- package/src/presentation/modal/Modal.stories.tsx +26 -0
- package/src/presentation/modal/Modal.tsx +59 -0
- package/src/presentation/modal/ModalBody.less +15 -0
- package/src/presentation/modal/ModalBody.tsx +9 -0
- package/src/presentation/modal/ModalContext.ts +7 -0
- package/src/presentation/modal/ModalFooter.less +34 -0
- package/src/presentation/modal/ModalFooter.tsx +15 -0
- package/src/presentation/modal/ModalHeader.less +53 -0
- package/src/presentation/modal/ModalHeader.tsx +26 -0
- package/src/presentation/modal/index.ts +5 -0
- package/src/presentation/modal/showModal.tsx +110 -0
- package/src/presentation/navPopover.less +15 -0
- package/src/presentation/navigation/PageNavigationState.ts +29 -0
- package/src/presentation/navigation/PageNavigator.tsx +186 -0
- package/src/presentation/navigation/PageSection.tsx +52 -0
- package/src/presentation/navigation/index.ts +2 -0
- package/src/presentation/navigation/pageNavigation.less +75 -0
- package/src/presentation/navigation/pageNavigator.component.spec.ts +92 -0
- package/src/presentation/navigation/pageNavigator.component.ts +131 -0
- package/src/presentation/navigation/pageSection.component.ts +65 -0
- package/src/presentation/percent.filter.js +11 -0
- package/src/presentation/presentation.module.js +39 -0
- package/src/presentation/replace.filter.ts +20 -0
- package/src/presentation/robotToHumanFilter/robotToHuman.filter.ts +36 -0
- package/src/presentation/sortToggle/SortToggle.tsx +52 -0
- package/src/presentation/sortToggle/index.ts +1 -0
- package/src/presentation/sortToggle/sorttoggle.directive.html +11 -0
- package/src/presentation/sortToggle/sorttoggle.directive.js +43 -0
- package/src/presentation/spel/FormikSpelContext.ts +12 -0
- package/src/presentation/spel/SpelInput.less +3 -0
- package/src/presentation/spel/SpelInput.spec.tsx +226 -0
- package/src/presentation/spel/SpelInput.tsx +78 -0
- package/src/presentation/spel/SpelService.spec.ts +47 -0
- package/src/presentation/spel/SpelService.ts +61 -0
- package/src/presentation/spel/SpelToggle.tsx +31 -0
- package/src/presentation/spel/index.ts +4 -0
- package/src/presentation/standalone.view.html +5 -0
- package/src/presentation/stickyHeader.less +33 -0
- package/src/presentation/tables/Table.tsx +70 -0
- package/src/presentation/tables/TableCell.tsx +36 -0
- package/src/presentation/tables/TableContext.tsx +14 -0
- package/src/presentation/tables/TableRow.tsx +82 -0
- package/src/presentation/tables/index.ts +5 -0
- package/src/presentation/tables/minimalNativeTableLayout.less +36 -0
- package/src/presentation/tables/minimalNativeTableLayout.tsx +48 -0
- package/src/presentation/tables/standardGridTableLayout.less +203 -0
- package/src/presentation/tables/standardGridTableLayout.tsx +146 -0
- package/src/presentation/text/BreakString.tsx +12 -0
- package/src/presentation/text/SingleLineString.tsx +12 -0
- package/src/presentation/text/index.ts +2 -0
- package/src/projects/ProjectHeader.tsx +138 -0
- package/src/projects/Projects.spec.tsx +141 -0
- package/src/projects/Projects.tsx +148 -0
- package/src/projects/configure/Applications.tsx +54 -0
- package/src/projects/configure/Clusters.tsx +179 -0
- package/src/projects/configure/ConfigureProjectModal.css +19 -0
- package/src/projects/configure/ConfigureProjectModal.tsx +163 -0
- package/src/projects/configure/Pipelines.tsx +198 -0
- package/src/projects/configure/ProjectAttributes.tsx +132 -0
- package/src/projects/configure/configureProject.modal.html +28 -0
- package/src/projects/configure/index.ts +5 -0
- package/src/projects/dashboard/cluster/inconsistentBuilds.tooltip.html +3 -0
- package/src/projects/dashboard/cluster/projectCluster.controller.spec.js +114 -0
- package/src/projects/dashboard/cluster/projectCluster.directive.html +93 -0
- package/src/projects/dashboard/cluster/projectCluster.directive.js +186 -0
- package/src/projects/dashboard/cluster/projectCluster.directive.spec.js +119 -0
- package/src/projects/dashboard/cluster/projectCluster.less +70 -0
- package/src/projects/dashboard/cluster/projectClusterRefresh.tooltip.html +7 -0
- package/src/projects/dashboard/clusterRefresh.tooltip.html +7 -0
- package/src/projects/dashboard/dashboard.controller.js +156 -0
- package/src/projects/dashboard/dashboard.controller.spec.js +146 -0
- package/src/projects/dashboard/dashboard.html +41 -0
- package/src/projects/dashboard/dashboard.less +10 -0
- package/src/projects/dashboard/executionRefresh.tooltip.html +7 -0
- package/src/projects/dashboard/pipeline/ProjectPipeline.tsx +76 -0
- package/src/projects/dashboard/pipeline/projectPipeline.component.ts +11 -0
- package/src/projects/dashboard/pipeline/projectPipeline.less +34 -0
- package/src/projects/dashboard/regionFilter/regionFilter.component.html +17 -0
- package/src/projects/dashboard/regionFilter/regionFilter.component.js +28 -0
- package/src/projects/dashboard/regionFilter/regionFilter.component.less +5 -0
- package/src/projects/dashboard/regionFilter/regionFilter.service.js +39 -0
- package/src/projects/index.ts +6 -0
- package/src/projects/project.less +55 -0
- package/src/projects/projectSearchResultType.tsx +86 -0
- package/src/projects/projects.module.ts +8 -0
- package/src/projects/projects.states.ts +107 -0
- package/src/projects/service/ProjectReader.ts +16 -0
- package/src/projects/service/ProjectWriter.ts +35 -0
- package/src/pubsub/PubsubSubscriptionReader.ts +8 -0
- package/src/pubsub/index.ts +1 -0
- package/src/reactShims/AngularJSAdapter.tsx +77 -0
- package/src/reactShims/index.ts +7 -0
- package/src/reactShims/modal.injector.ts +18 -0
- package/src/reactShims/ngReact.ts +42 -0
- package/src/reactShims/react.ga.ts +15 -0
- package/src/reactShims/react.injector.ts +91 -0
- package/src/reactShims/react.module.ts +20 -0
- package/src/reactShims/react.uirouter.css +5 -0
- package/src/reactShims/reactUtils.ts +3 -0
- package/src/reactShims/state.events.ts +37 -0
- package/src/region/RegionSelectField.tsx +45 -0
- package/src/region/RegionSelectInput.tsx +34 -0
- package/src/region/index.ts +2 -0
- package/src/region/region.module.ts +5 -0
- package/src/region/regionSelectField.directive.js +59 -0
- package/src/region/regionSelectField.directive.spec.js +67 -0
- package/src/registry/Registry.ts +15 -0
- package/src/registry/index.ts +1 -0
- package/src/retry/index.ts +1 -0
- package/src/retry/retry.service.spec.ts +83 -0
- package/src/retry/retry.service.ts +27 -0
- package/src/scheduler/SchedulerFactory.spec.ts +53 -0
- package/src/scheduler/SchedulerFactory.ts +96 -0
- package/src/scheduler/index.ts +1 -0
- package/src/search/global/GlobalSearch.tsx +386 -0
- package/src/search/global/GlobalSearchRecentItems.tsx +47 -0
- package/src/search/global/GlobalSearchResults.tsx +77 -0
- package/src/search/global/globalSearch.less +112 -0
- package/src/search/global/globalSearch.module.ts +8 -0
- package/src/search/global/globalsearch.component.ts +11 -0
- package/src/search/global/utils.ts +25 -0
- package/src/search/index.ts +5 -0
- package/src/search/infrastructure/ProjectSummaryPod.tsx +68 -0
- package/src/search/infrastructure/RecentlyViewedItems.tsx +77 -0
- package/src/search/infrastructure/SearchResult.tsx +24 -0
- package/src/search/infrastructure/SearchResultPod.tsx +43 -0
- package/src/search/infrastructure/SearchResultPodItem.tsx +56 -0
- package/src/search/infrastructure/SearchResultPods.tsx +79 -0
- package/src/search/infrastructure/SearchV2.tsx +195 -0
- package/src/search/infrastructure/infrastructure.controller.js +185 -0
- package/src/search/infrastructure/infrastructure.html +105 -0
- package/src/search/infrastructure/infrastructure.less +148 -0
- package/src/search/infrastructure/infrastructure.states.ts +45 -0
- package/src/search/infrastructure/infrastructureSearch.service.ts +96 -0
- package/src/search/infrastructure/infrastructureSearchV2.component.ts +15 -0
- package/src/search/infrastructure/infrastructureSearchV2.service.ts +63 -0
- package/src/search/infrastructure/projectSummaryPod.component.ts +11 -0
- package/src/search/infrastructure/projectSummaryPod.less +58 -0
- package/src/search/infrastructure/recentlyViewedItems.component.ts +11 -0
- package/src/search/infrastructure/search.infrastructure.module.js +20 -0
- package/src/search/infrastructure/searchResult.component.ts +11 -0
- package/src/search/infrastructure/searchResult.less +7 -0
- package/src/search/search.module.js +11 -0
- package/src/search/search.service.ts +70 -0
- package/src/search/searchRank.filter.ts +25 -0
- package/src/search/searchResult/DefaultSearchResultTab.tsx +51 -0
- package/src/search/searchResult/Renderers.tsx +107 -0
- package/src/search/searchResult/SearchResultGrid.tsx +71 -0
- package/src/search/searchResult/SearchResultTabs.tsx +37 -0
- package/src/search/searchResult/SearchResults.tsx +51 -0
- package/src/search/searchResult/SearchStatus.ts +7 -0
- package/src/search/searchResult/baseTable.less +62 -0
- package/src/search/searchResult/index.ts +6 -0
- package/src/search/searchResult/searchResultType.registry.ts +23 -0
- package/src/search/searchResult/searchResultType.ts +57 -0
- package/src/search/searchResult/searchResults.less +85 -0
- package/src/search/widgets/Filter.spec.tsx +45 -0
- package/src/search/widgets/Filter.tsx +60 -0
- package/src/search/widgets/Filters.spec.tsx +55 -0
- package/src/search/widgets/Filters.tsx +95 -0
- package/src/search/widgets/Search.spec.tsx +53 -0
- package/src/search/widgets/Search.tsx +351 -0
- package/src/search/widgets/SearchFilterTypeRegistry.ts +48 -0
- package/src/search/widgets/filterlist.less +66 -0
- package/src/search/widgets/index.ts +4 -0
- package/src/search/widgets/search.component.ts +15 -0
- package/src/search/widgets/search.less +68 -0
- package/src/securityGroup/AllSecurityGroupsCtrl.js +122 -0
- package/src/securityGroup/CreateSecurityGroupButton.tsx +76 -0
- package/src/securityGroup/SecurityGroup.tsx +151 -0
- package/src/securityGroup/SecurityGroupDetails.tsx +14 -0
- package/src/securityGroup/SecurityGroupPod.tsx +50 -0
- package/src/securityGroup/SecurityGroupWriter.spec.ts +13 -0
- package/src/securityGroup/SecurityGroupWriter.ts +56 -0
- package/src/securityGroup/SecurityGroups.tsx +159 -0
- package/src/securityGroup/filter/SecurityGroupFilterModel.ts +27 -0
- package/src/securityGroup/filter/SecurityGroupFilterService.spec.js +424 -0
- package/src/securityGroup/filter/SecurityGroupFilterService.ts +160 -0
- package/src/securityGroup/filter/SecurityGroupFilters.tsx +214 -0
- package/src/securityGroup/filter/securityGroup.filter.component.ts +11 -0
- package/src/securityGroup/index.ts +4 -0
- package/src/securityGroup/label/FirewallLabel.tsx +11 -0
- package/src/securityGroup/label/FirewallLabels.ts +26 -0
- package/src/securityGroup/label/firewallLabel.component.ts +21 -0
- package/src/securityGroup/label/index.ts +2 -0
- package/src/securityGroup/securityGroup.dataSource.ts +47 -0
- package/src/securityGroup/securityGroup.less +27 -0
- package/src/securityGroup/securityGroup.module.js +16 -0
- package/src/securityGroup/securityGroup.states.ts +154 -0
- package/src/securityGroup/securityGroupReader.service.spec.ts +228 -0
- package/src/securityGroup/securityGroupReader.service.ts +490 -0
- package/src/securityGroup/securityGroupSearchResultType.tsx +83 -0
- package/src/securityGroup/securityGroupTransformer.service.ts +21 -0
- package/src/serverGroup/ServerGroup.tsx +233 -0
- package/src/serverGroup/ServerGroupHeader.tsx +230 -0
- package/src/serverGroup/configure/common/DeployInitializer.tsx +254 -0
- package/src/serverGroup/configure/common/InstanceArchetypeSelector.tsx +7 -0
- package/src/serverGroup/configure/common/InstanceTypeSelector.tsx +6 -0
- package/src/serverGroup/configure/common/ServerGroupNamePreview.tsx +81 -0
- package/src/serverGroup/configure/common/basicSettingsMixin.controller.js +103 -0
- package/src/serverGroup/configure/common/basicSettingsMixin.controller.spec.js +127 -0
- package/src/serverGroup/configure/common/costFactor.html +4 -0
- package/src/serverGroup/configure/common/costFactor.js +36 -0
- package/src/serverGroup/configure/common/deployInitializer.component.html +72 -0
- package/src/serverGroup/configure/common/deployInitializer.component.spec.ts +75 -0
- package/src/serverGroup/configure/common/deployInitializer.component.ts +156 -0
- package/src/serverGroup/configure/common/dirtyInstanceTypeNotification.component.html +19 -0
- package/src/serverGroup/configure/common/dirtyInstanceTypeNotification.component.js +16 -0
- package/src/serverGroup/configure/common/index.ts +7 -0
- package/src/serverGroup/configure/common/instanceArchetypeDirective.html +52 -0
- package/src/serverGroup/configure/common/instanceArchetypeSelector.js +72 -0
- package/src/serverGroup/configure/common/instanceArchtypeSelector.spec.js +59 -0
- package/src/serverGroup/configure/common/instanceTypeDirective.html +52 -0
- package/src/serverGroup/configure/common/instanceTypeSelector.directive.less +7 -0
- package/src/serverGroup/configure/common/instanceTypeSelector.js +78 -0
- package/src/serverGroup/configure/common/serverGroupCommandBuilder.service.ts +209 -0
- package/src/serverGroup/configure/common/serverGroupCommandRegistry.provider.ts +39 -0
- package/src/serverGroup/configure/common/serverGroupConfiguration.service.ts +26 -0
- package/src/serverGroup/configure/common/targetHealthyPercentageSelector.component.html +13 -0
- package/src/serverGroup/configure/common/targetHealthyPercentageSelector.component.ts +11 -0
- package/src/serverGroup/configure/common/v2InstanceTypeSelector.component.ts +109 -0
- package/src/serverGroup/configure/common/v2instanceArchetype.directive.html +39 -0
- package/src/serverGroup/configure/common/v2instanceArchetypeSelector.component.ts +120 -0
- package/src/serverGroup/configure/common/wizard/fields/ServerGroupDetailsField.tsx +50 -0
- package/src/serverGroup/configure/common/wizard/fields/index.ts +1 -0
- package/src/serverGroup/details/RunningTasks.tsx +79 -0
- package/src/serverGroup/details/ServerGroupDetails.tsx +139 -0
- package/src/serverGroup/details/ServerGroupDetailsWrapper.tsx +140 -0
- package/src/serverGroup/details/ServerGroupInsightActions.tsx +41 -0
- package/src/serverGroup/details/ShowUserData.tsx +78 -0
- package/src/serverGroup/details/capacity/CapacityDetailsSection.spec.tsx +17 -0
- package/src/serverGroup/details/capacity/CapacityDetailsSection.tsx +21 -0
- package/src/serverGroup/details/capacity/CurrentCapacity.tsx +10 -0
- package/src/serverGroup/details/capacity/DesiredCapacity.tsx +24 -0
- package/src/serverGroup/details/capacity/index.ts +3 -0
- package/src/serverGroup/details/index.ts +7 -0
- package/src/serverGroup/details/multipleServerGroup.component.html +11 -0
- package/src/serverGroup/details/multipleServerGroup.component.js +15 -0
- package/src/serverGroup/details/multipleServerGroup.component.less +19 -0
- package/src/serverGroup/details/multipleServerGroups.controller.js +148 -0
- package/src/serverGroup/details/multipleServerGroups.controller.spec.js +130 -0
- package/src/serverGroup/details/multipleServerGroups.view.html +39 -0
- package/src/serverGroup/details/runningTasks.component.ts +65 -0
- package/src/serverGroup/details/scalingActivities/ScalingActivitiesModal.less +5 -0
- package/src/serverGroup/details/scalingActivities/ScalingActivitiesModal.spec.ts +80 -0
- package/src/serverGroup/details/scalingActivities/ScalingActivitiesModal.tsx +128 -0
- package/src/serverGroup/details/scalingActivities/ViewScalingActivitiesLink.tsx +15 -0
- package/src/serverGroup/details/scalingActivities/index.ts +1 -0
- package/src/serverGroup/details/scalingActivities/viewScalingActivitiesLink.component.ts +12 -0
- package/src/serverGroup/details/serverGroupWarningMessage.service.spec.ts +228 -0
- package/src/serverGroup/details/serverGroupWarningMessage.service.ts +86 -0
- package/src/serverGroup/details/userData.html +14 -0
- package/src/serverGroup/index.ts +9 -0
- package/src/serverGroup/metrics/CloudMetricsReader.ts +23 -0
- package/src/serverGroup/pod/RunningTasksPopoverContent.tsx +58 -0
- package/src/serverGroup/pod/RunningTasksTag.tsx +33 -0
- package/src/serverGroup/resize/MinMaxDesiredChanges.tsx +36 -0
- package/src/serverGroup/resize/index.ts +1 -0
- package/src/serverGroup/serverGroup.dataSource.ts +63 -0
- package/src/serverGroup/serverGroup.less +12 -0
- package/src/serverGroup/serverGroup.module.ts +29 -0
- package/src/serverGroup/serverGroup.states.ts +89 -0
- package/src/serverGroup/serverGroup.transformer.js +32 -0
- package/src/serverGroup/serverGroupReader.service.ts +40 -0
- package/src/serverGroup/serverGroupSearchResultType.tsx +199 -0
- package/src/serverGroup/serverGroupWriter.service.spec.ts +128 -0
- package/src/serverGroup/serverGroupWriter.service.ts +226 -0
- package/src/serverGroup/templates/index.ts +3 -0
- package/src/serverGroupManager/ServerGroupManager.tsx +101 -0
- package/src/serverGroupManager/ServerGroupManagerDetails.tsx +13 -0
- package/src/serverGroupManager/ServerGroupManagerHeading.tsx +52 -0
- package/src/serverGroupManager/ServerGroupManagerReader.ts +9 -0
- package/src/serverGroupManager/ServerGroupManagerTag.tsx +65 -0
- package/src/serverGroupManager/index.ts +5 -0
- package/src/serverGroupManager/serverGroupManager.dataSource.ts +33 -0
- package/src/serverGroupManager/serverGroupManager.module.ts +7 -0
- package/src/serverGroupManager/serverGroupManager.states.ts +47 -0
- package/src/serviceAccount/ServiceAccountReader.ts +22 -0
- package/src/serviceAccount/index.ts +1 -0
- package/src/services/ServicesReader.ts +14 -0
- package/src/services/index.ts +1 -0
- package/src/slack/SlackChannelSelector.tsx +46 -0
- package/src/slack/SlackReader.spec.ts +34 -0
- package/src/slack/SlackReader.ts +19 -0
- package/src/slack/index.ts +2 -0
- package/src/slack/slackChannelSelector.component.ts +12 -0
- package/src/snapshot/SnapshotReader.ts +8 -0
- package/src/snapshot/SnapshotWriter.ts +69 -0
- package/src/snapshot/diff/snapshotDiff.modal.controller.js +129 -0
- package/src/snapshot/diff/snapshotDiff.modal.controller.spec.js +71 -0
- package/src/snapshot/diff/snapshotDiff.modal.html +58 -0
- package/src/snapshot/diff/snapshotDiff.modal.less +5 -0
- package/src/snapshot/diff/viewSnapshotDiffButton.component.js +51 -0
- package/src/state/index.ts +63 -0
- package/src/storage/StorageAccountReader.ts +7 -0
- package/src/storage/index.ts +1 -0
- package/src/styleguide/styleguide.module.ts +7 -0
- package/src/styleguide/styleguide.states.ts +26 -0
- package/src/subnet/SubnetTag.tsx +37 -0
- package/src/subnet/index.ts +2 -0
- package/src/subnet/subnet.module.ts +5 -0
- package/src/subnet/subnet.read.service.spec.ts +43 -0
- package/src/subnet/subnet.read.service.ts +42 -0
- package/src/subnet/subnetTag.component.html +0 -0
- package/src/subnet/subnetTag.component.js +14 -0
- package/src/task/PlatformHealthOverrideMessage.tsx +84 -0
- package/src/task/StatusGlyph.tsx +28 -0
- package/src/task/TaskNotFound.tsx +9 -0
- package/src/task/TaskProgressBar.tsx +74 -0
- package/src/task/TrafficGuardHelperLink.tsx +26 -0
- package/src/task/displayableTasks.filter.ts +20 -0
- package/src/task/index.ts +8 -0
- package/src/task/modal/TaskMonitorModal.tsx +107 -0
- package/src/task/modal/TaskReason.tsx +26 -0
- package/src/task/modal/reason.directive.html +11 -0
- package/src/task/modal/reason.directive.js +18 -0
- package/src/task/monitor/MultiTaskMonitor.tsx +63 -0
- package/src/task/monitor/TaskMonitor.ts +151 -0
- package/src/task/monitor/TaskMonitorError.tsx +53 -0
- package/src/task/monitor/TaskMonitorStatus.tsx +58 -0
- package/src/task/monitor/TaskMonitorWrapper.tsx +62 -0
- package/src/task/monitor/multiTaskMonitor.component.less +8 -0
- package/src/task/monitor/taskMonitor.directive.less +8 -0
- package/src/task/monitor/taskMonitor.directive.ts +13 -0
- package/src/task/monitor/taskMonitor.module.js +9 -0
- package/src/task/monitor/taskMonitor.spec.ts +129 -0
- package/src/task/platformHealthOverrideMessage.component.ts +60 -0
- package/src/task/platformHealthOverrideMessage.html +10 -0
- package/src/task/statusGlyph.component.ts +11 -0
- package/src/task/task.dataSource.js +73 -0
- package/src/task/task.dataSource.spec.ts +105 -0
- package/src/task/task.module.js +27 -0
- package/src/task/task.read.service.spec.js +180 -0
- package/src/task/task.read.service.ts +116 -0
- package/src/task/task.states.ts +78 -0
- package/src/task/task.write.service.spec.ts +41 -0
- package/src/task/task.write.service.ts +28 -0
- package/src/task/taskExecutor.ts +62 -0
- package/src/task/taskProgressBar.directive.js +14 -0
- package/src/task/tasks.controller.js +300 -0
- package/src/task/tasks.controller.spec.js +236 -0
- package/src/task/tasks.html +204 -0
- package/src/task/tasks.less +115 -0
- package/src/task/verification/UserVerification.tsx +58 -0
- package/src/task/verification/index.ts +1 -0
- package/src/task/verification/userVerification.directive.html +18 -0
- package/src/task/verification/userVerification.directive.js +62 -0
- package/src/task/verification/userVerification.directive.less +23 -0
- package/src/task/verification/userVerification.directive.spec.js +119 -0
- package/src/types/index.d.ts +3 -0
- package/src/types/png.d.ts +4 -0
- package/src/types/promise.d.ts +148 -0
- package/src/types/svg.d.ts +6 -0
- package/src/utils/Logger.ts +56 -0
- package/src/utils/RenderWhenVisible.tsx +65 -0
- package/src/utils/SystemTimezone.tsx +10 -0
- package/src/utils/TimePickerOptions.ts +30 -0
- package/src/utils/angular-messages.d.ts +3 -0
- package/src/utils/angular-sanitize.d.ts +3 -0
- package/src/utils/angular-spinner.d.ts +5 -0
- package/src/utils/clipboard/CopyToClipboard.less +15 -0
- package/src/utils/clipboard/CopyToClipboard.spec.tsx +46 -0
- package/src/utils/clipboard/CopyToClipboard.tsx +147 -0
- package/src/utils/clipboard/copyTextToClipboard.ts +10 -0
- package/src/utils/clipboard/copyToClipboard.component.ts +19 -0
- package/src/utils/consoleDebug.ts +45 -0
- package/src/utils/debug.ts +62 -0
- package/src/utils/failedToInstantiateModule.ts +12 -0
- package/src/utils/feature/Feature.tsx +98 -0
- package/src/utils/feature/FeatureContext.tsx +49 -0
- package/src/utils/feature/index.ts +3 -0
- package/src/utils/feature/useFeature.hook.tsx +25 -0
- package/src/utils/firstDefined.ts +6 -0
- package/src/utils/index.ts +24 -0
- package/src/utils/infiniteScroll.directive.js +79 -0
- package/src/utils/json/DiffView.less +82 -0
- package/src/utils/json/DiffView.tsx +54 -0
- package/src/utils/json/JsonUtils.ts +129 -0
- package/src/utils/json/diffView.component.ts +8 -0
- package/src/utils/json/filterObjectValues.spec.ts +42 -0
- package/src/utils/json/filterObjectValues.ts +25 -0
- package/src/utils/json/json.utility.service.spec.ts +39 -0
- package/src/utils/json/traverseObject.spec.ts +112 -0
- package/src/utils/json/traverseObject.ts +59 -0
- package/src/utils/later/later.d.ts +1 -0
- package/src/utils/later/later.js +1837 -0
- package/src/utils/noop.ts +3 -0
- package/src/utils/parseNum.ts +2 -0
- package/src/utils/q.ts +13 -0
- package/src/utils/renderIfFeature.component.ts +23 -0
- package/src/utils/retryablePromise.ts +34 -0
- package/src/utils/scrollTo/scrollTo.service.ts +21 -0
- package/src/utils/selectOnDblClick.directive.ts +37 -0
- package/src/utils/testUtils/index.tsx +30 -0
- package/src/utils/timeFormatters.spec.ts +132 -0
- package/src/utils/timeFormatters.ts +99 -0
- package/src/utils/ui-select.d.ts +3 -0
- package/src/utils/uibModalRejections.ts +18 -0
- package/src/utils/unicodeBase64.ts +9 -0
- package/src/utils/utils.module.js +25 -0
- package/src/utils/uuid.service.spec.ts +45 -0
- package/src/utils/uuid.service.ts +30 -0
- package/src/utils/waypoints/waypoint.directive.js +18 -0
- package/src/utils/waypoints/waypoint.service.ts +78 -0
- package/src/utils/waypoints/waypointContainer.directive.js +23 -0
- package/src/utils/workerPool.spec.ts +143 -0
- package/src/utils/workerPool.ts +66 -0
- package/src/validation/triggerValidation.directive.js +22 -0
- package/src/validation/validateUnique.directive.js +36 -0
- package/src/validation/validateUnique.directive.spec.js +110 -0
- package/src/validation/validation.module.js +15 -0
- package/src/validation/validationError.directive.js +15 -0
- package/src/validation/validationError.html +1 -0
- package/src/widgets/AccountRegionClusterSelector.tsx +13 -0
- package/src/widgets/ApplicationsPickerInput.spec.tsx +37 -0
- package/src/widgets/ApplicationsPickerInput.tsx +38 -0
- package/src/widgets/Keys.ts +33 -0
- package/src/widgets/ScopeClusterSelector.tsx +78 -0
- package/src/widgets/accountNamespaceClusterSelector.component.html +31 -0
- package/src/widgets/accountNamespaceClusterSelector.component.js +101 -0
- package/src/widgets/accountRegionClusterSelector.component.html +43 -0
- package/src/widgets/accountRegionClusterSelector.component.js +133 -0
- package/src/widgets/accountRegionClusterSelectorWrapper.component.ts +31 -0
- package/src/widgets/actionIcons/actionIcons.component.html +10 -0
- package/src/widgets/actionIcons/actionIcons.component.js +16 -0
- package/src/widgets/cluster/ClusterMatches.tsx +30 -0
- package/src/widgets/cluster/clusterMatches.component.ts +17 -0
- package/src/widgets/index.ts +10 -0
- package/src/widgets/notifier/Notifier.tsx +9 -0
- package/src/widgets/notifier/notifier.component.less +32 -0
- package/src/widgets/notifier/notifier.service.ts +24 -0
- package/src/widgets/scopeClusterSelector.directive.html +32 -0
- package/src/widgets/scopeClusterSelector.directive.js +52 -0
- package/src/widgets/spelText/JsonListBuilder.spec.ts +113 -0
- package/src/widgets/spelText/JsonListBuilder.ts +61 -0
- package/src/widgets/spelText/SpelAutocompleteService.spec.ts +92 -0
- package/src/widgets/spelText/SpelAutocompleteService.ts +440 -0
- package/src/widgets/spelText/SpelNumberInput.tsx +102 -0
- package/src/widgets/spelText/SpelText.tsx +95 -0
- package/src/widgets/spelText/spel.less +160 -0
- package/src/widgets/spelText/spelAutocomplete.service.js +20 -0
- package/src/widgets/spelText/spelSelect.component.js +85 -0
- package/src/widgets/spelText/spelText.decorator.js +77 -0
- package/src/widgets/spinners/Spinner.tsx +66 -0
- package/src/widgets/spinners/loadingIndicator.svg +76 -0
- package/src/widgets/spinners/spinner.component.ts +12 -0
- package/src/widgets/tags/Tag.spec.tsx +89 -0
- package/src/widgets/tags/Tag.tsx +83 -0
- package/src/widgets/tags/TagList.spec.tsx +28 -0
- package/src/widgets/tags/TagList.tsx +125 -0
- package/src/widgets/tags/index.ts +2 -0
- package/src/widgets/tags/taglist.less +40 -0
- package/src/widgets/widgets.module.ts +20 -0
- package/src/yamlEditor/YamlEditor.tsx +84 -0
- package/src/yamlEditor/index.ts +3 -0
- package/src/yamlEditor/yamlEditor.component.ts +11 -0
- package/src/yamlEditor/yamlEditorUtils.spec.ts +107 -0
- package/src/yamlEditor/yamlEditorUtils.ts +23 -0
|
@@ -0,0 +1,2133 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/array-type */
|
|
2
|
+
import { gql } from '@apollo/client';
|
|
3
|
+
import * as Apollo from '@apollo/client';
|
|
4
|
+
export type Maybe<T> = T | undefined;
|
|
5
|
+
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
6
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
7
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
8
|
+
const defaultOptions = {};
|
|
9
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
10
|
+
export interface Scalars {
|
|
11
|
+
ID: string;
|
|
12
|
+
String: string;
|
|
13
|
+
Boolean: boolean;
|
|
14
|
+
Int: number;
|
|
15
|
+
Float: number;
|
|
16
|
+
InstantTime: string;
|
|
17
|
+
JSON: any;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface MdAction {
|
|
21
|
+
__typename?: 'MdAction';
|
|
22
|
+
id: Scalars['String'];
|
|
23
|
+
actionId: Scalars['String'];
|
|
24
|
+
type: Scalars['String'];
|
|
25
|
+
status: MdActionStatus;
|
|
26
|
+
startedAt?: Maybe<Scalars['InstantTime']>;
|
|
27
|
+
completedAt?: Maybe<Scalars['InstantTime']>;
|
|
28
|
+
link?: Maybe<Scalars['String']>;
|
|
29
|
+
actionType: MdActionType;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export type MdActionStatus = 'NOT_EVALUATED' | 'PENDING' | 'PASS' | 'FAIL' | 'FORCE_PASS';
|
|
33
|
+
|
|
34
|
+
export type MdActionType = 'VERIFICATION' | 'POST_DEPLOY';
|
|
35
|
+
|
|
36
|
+
export interface MdApplication {
|
|
37
|
+
__typename?: 'MdApplication';
|
|
38
|
+
id: Scalars['String'];
|
|
39
|
+
name: Scalars['String'];
|
|
40
|
+
account: Scalars['String'];
|
|
41
|
+
isPaused?: Maybe<Scalars['Boolean']>;
|
|
42
|
+
pausedInfo?: Maybe<MdPausedInfo>;
|
|
43
|
+
environments: Array<MdEnvironment>;
|
|
44
|
+
notifications?: Maybe<Array<MdNotification>>;
|
|
45
|
+
gitIntegration?: Maybe<MdGitIntegration>;
|
|
46
|
+
config?: Maybe<MdConfig>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export interface MdArtifact {
|
|
50
|
+
__typename?: 'MdArtifact';
|
|
51
|
+
id: Scalars['String'];
|
|
52
|
+
environment: Scalars['String'];
|
|
53
|
+
name: Scalars['String'];
|
|
54
|
+
type: Scalars['String'];
|
|
55
|
+
reference: Scalars['String'];
|
|
56
|
+
versions?: Maybe<Array<MdArtifactVersionInEnvironment>>;
|
|
57
|
+
pinnedVersion?: Maybe<MdPinnedVersion>;
|
|
58
|
+
latestApprovedVersion?: Maybe<MdArtifactVersionInEnvironment>;
|
|
59
|
+
resources?: Maybe<Array<MdResource>>;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface MdArtifactVersionsArgs {
|
|
63
|
+
statuses?: Maybe<Array<MdArtifactStatusInEnvironment>>;
|
|
64
|
+
versions?: Maybe<Array<Scalars['String']>>;
|
|
65
|
+
limit?: Maybe<Scalars['Int']>;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export type MdArtifactStatusInEnvironment =
|
|
69
|
+
| 'PENDING'
|
|
70
|
+
| 'APPROVED'
|
|
71
|
+
| 'DEPLOYING'
|
|
72
|
+
| 'CURRENT'
|
|
73
|
+
| 'PREVIOUS'
|
|
74
|
+
| 'VETOED'
|
|
75
|
+
| 'SKIPPED';
|
|
76
|
+
|
|
77
|
+
export interface MdArtifactVersionActionPayload {
|
|
78
|
+
application: Scalars['String'];
|
|
79
|
+
environment: Scalars['String'];
|
|
80
|
+
reference: Scalars['String'];
|
|
81
|
+
comment: Scalars['String'];
|
|
82
|
+
version: Scalars['String'];
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export interface MdArtifactVersionInEnvironment {
|
|
86
|
+
__typename?: 'MdArtifactVersionInEnvironment';
|
|
87
|
+
id: Scalars['String'];
|
|
88
|
+
version: Scalars['String'];
|
|
89
|
+
buildNumber?: Maybe<Scalars['String']>;
|
|
90
|
+
createdAt?: Maybe<Scalars['InstantTime']>;
|
|
91
|
+
deployedAt?: Maybe<Scalars['InstantTime']>;
|
|
92
|
+
gitMetadata?: Maybe<MdGitMetadata>;
|
|
93
|
+
packageDiff?: Maybe<MdPackageDiff>;
|
|
94
|
+
environment?: Maybe<Scalars['String']>;
|
|
95
|
+
reference: Scalars['String'];
|
|
96
|
+
status?: Maybe<MdArtifactStatusInEnvironment>;
|
|
97
|
+
lifecycleSteps?: Maybe<Array<MdLifecycleStep>>;
|
|
98
|
+
constraints?: Maybe<Array<MdConstraint>>;
|
|
99
|
+
verifications?: Maybe<Array<MdAction>>;
|
|
100
|
+
postDeploy?: Maybe<Array<MdAction>>;
|
|
101
|
+
veto?: Maybe<MdVersionVeto>;
|
|
102
|
+
isCurrent?: Maybe<Scalars['Boolean']>;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export interface MdCommitInfo {
|
|
106
|
+
__typename?: 'MdCommitInfo';
|
|
107
|
+
sha?: Maybe<Scalars['String']>;
|
|
108
|
+
link?: Maybe<Scalars['String']>;
|
|
109
|
+
message?: Maybe<Scalars['String']>;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export interface MdComparisonLinks {
|
|
113
|
+
__typename?: 'MdComparisonLinks';
|
|
114
|
+
toPreviousVersion?: Maybe<Scalars['String']>;
|
|
115
|
+
toCurrentVersion?: Maybe<Scalars['String']>;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export interface MdConfig {
|
|
119
|
+
__typename?: 'MdConfig';
|
|
120
|
+
id: Scalars['ID'];
|
|
121
|
+
updatedAt?: Maybe<Scalars['InstantTime']>;
|
|
122
|
+
rawConfig?: Maybe<Scalars['String']>;
|
|
123
|
+
processedConfig?: Maybe<Scalars['String']>;
|
|
124
|
+
previewEnvironmentsConfigured?: Maybe<Scalars['Boolean']>;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export interface MdConstraint {
|
|
128
|
+
__typename?: 'MdConstraint';
|
|
129
|
+
type: Scalars['String'];
|
|
130
|
+
status: MdConstraintStatus;
|
|
131
|
+
startedAt?: Maybe<Scalars['InstantTime']>;
|
|
132
|
+
judgedAt?: Maybe<Scalars['InstantTime']>;
|
|
133
|
+
judgedBy?: Maybe<Scalars['String']>;
|
|
134
|
+
comment?: Maybe<Scalars['String']>;
|
|
135
|
+
attributes?: Maybe<Scalars['JSON']>;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export type MdConstraintStatus = 'BLOCKED' | 'PENDING' | 'PASS' | 'FAIL' | 'FORCE_PASS';
|
|
139
|
+
|
|
140
|
+
export interface MdConstraintStatusPayload {
|
|
141
|
+
application: Scalars['String'];
|
|
142
|
+
environment: Scalars['String'];
|
|
143
|
+
type: Scalars['String'];
|
|
144
|
+
version: Scalars['String'];
|
|
145
|
+
reference: Scalars['String'];
|
|
146
|
+
status: MdConstraintStatus;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export interface MdDeployLocation {
|
|
150
|
+
__typename?: 'MdDeployLocation';
|
|
151
|
+
account?: Maybe<Scalars['String']>;
|
|
152
|
+
region?: Maybe<Scalars['String']>;
|
|
153
|
+
sublocations?: Maybe<Array<Scalars['String']>>;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export interface MdDeployTarget {
|
|
157
|
+
__typename?: 'MdDeployTarget';
|
|
158
|
+
cloudProvider?: Maybe<Scalars['String']>;
|
|
159
|
+
location?: Maybe<MdDeployLocation>;
|
|
160
|
+
status?: Maybe<MdRolloutTargetStatus>;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export interface MdDismissNotificationPayload {
|
|
164
|
+
application: Scalars['String'];
|
|
165
|
+
id: Scalars['String'];
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
export interface MdEnvironment {
|
|
169
|
+
__typename?: 'MdEnvironment';
|
|
170
|
+
id: Scalars['ID'];
|
|
171
|
+
name: Scalars['String'];
|
|
172
|
+
state: MdEnvironmentState;
|
|
173
|
+
isPreview?: Maybe<Scalars['Boolean']>;
|
|
174
|
+
isDeleting?: Maybe<Scalars['Boolean']>;
|
|
175
|
+
gitMetadata?: Maybe<MdGitMetadata>;
|
|
176
|
+
basedOn?: Maybe<Scalars['String']>;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface MdEnvironmentState {
|
|
180
|
+
__typename?: 'MdEnvironmentState';
|
|
181
|
+
id: Scalars['String'];
|
|
182
|
+
resources?: Maybe<Array<MdResource>>;
|
|
183
|
+
artifacts?: Maybe<Array<MdArtifact>>;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export type MdEventLevel = 'SUCCESS' | 'INFO' | 'WARNING' | 'ERROR';
|
|
187
|
+
|
|
188
|
+
export interface MdExecutionSummary {
|
|
189
|
+
__typename?: 'MdExecutionSummary';
|
|
190
|
+
status: MdTaskStatus;
|
|
191
|
+
currentStage?: Maybe<MdStageDetail>;
|
|
192
|
+
stages?: Maybe<Array<MdStageDetail>>;
|
|
193
|
+
deployTargets?: Maybe<Array<MdDeployTarget>>;
|
|
194
|
+
completedDeployTargets?: Maybe<Array<MdDeployTarget>>;
|
|
195
|
+
error?: Maybe<Scalars['String']>;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export interface MdGitIntegration {
|
|
199
|
+
__typename?: 'MdGitIntegration';
|
|
200
|
+
id: Scalars['String'];
|
|
201
|
+
repository?: Maybe<Scalars['String']>;
|
|
202
|
+
branch?: Maybe<Scalars['String']>;
|
|
203
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
204
|
+
manifestPath?: Maybe<Scalars['String']>;
|
|
205
|
+
link?: Maybe<Scalars['String']>;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface MdGitMetadata {
|
|
209
|
+
__typename?: 'MdGitMetadata';
|
|
210
|
+
commit?: Maybe<Scalars['String']>;
|
|
211
|
+
author?: Maybe<Scalars['String']>;
|
|
212
|
+
project?: Maybe<Scalars['String']>;
|
|
213
|
+
branch?: Maybe<Scalars['String']>;
|
|
214
|
+
repoName?: Maybe<Scalars['String']>;
|
|
215
|
+
pullRequest?: Maybe<MdPullRequest>;
|
|
216
|
+
commitInfo?: Maybe<MdCommitInfo>;
|
|
217
|
+
comparisonLinks?: Maybe<MdComparisonLinks>;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export type MdLifecycleEventScope = 'PRE_DEPLOYMENT';
|
|
221
|
+
|
|
222
|
+
export type MdLifecycleEventStatus = 'NOT_STARTED' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'ABORTED' | 'UNKNOWN';
|
|
223
|
+
|
|
224
|
+
export type MdLifecycleEventType = 'BAKE' | 'BUILD';
|
|
225
|
+
|
|
226
|
+
export interface MdLifecycleStep {
|
|
227
|
+
__typename?: 'MdLifecycleStep';
|
|
228
|
+
scope?: Maybe<MdLifecycleEventScope>;
|
|
229
|
+
type: MdLifecycleEventType;
|
|
230
|
+
id?: Maybe<Scalars['String']>;
|
|
231
|
+
status: MdLifecycleEventStatus;
|
|
232
|
+
text?: Maybe<Scalars['String']>;
|
|
233
|
+
link?: Maybe<Scalars['String']>;
|
|
234
|
+
startedAt?: Maybe<Scalars['InstantTime']>;
|
|
235
|
+
completedAt?: Maybe<Scalars['InstantTime']>;
|
|
236
|
+
artifactVersion?: Maybe<Scalars['String']>;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export interface MdLocation {
|
|
240
|
+
__typename?: 'MdLocation';
|
|
241
|
+
account?: Maybe<Scalars['String']>;
|
|
242
|
+
regions?: Maybe<Array<Scalars['String']>>;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export interface MdMarkArtifactVersionAsGoodPayload {
|
|
246
|
+
application: Scalars['String'];
|
|
247
|
+
environment: Scalars['String'];
|
|
248
|
+
reference: Scalars['String'];
|
|
249
|
+
version: Scalars['String'];
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export interface MdMoniker {
|
|
253
|
+
__typename?: 'MdMoniker';
|
|
254
|
+
app?: Maybe<Scalars['String']>;
|
|
255
|
+
stack?: Maybe<Scalars['String']>;
|
|
256
|
+
detail?: Maybe<Scalars['String']>;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export interface MdNotification {
|
|
260
|
+
__typename?: 'MdNotification';
|
|
261
|
+
id: Scalars['String'];
|
|
262
|
+
level: MdEventLevel;
|
|
263
|
+
message: Scalars['String'];
|
|
264
|
+
triggeredAt?: Maybe<Scalars['InstantTime']>;
|
|
265
|
+
triggeredBy?: Maybe<Scalars['String']>;
|
|
266
|
+
environment?: Maybe<Scalars['String']>;
|
|
267
|
+
link?: Maybe<Scalars['String']>;
|
|
268
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
269
|
+
dismissedAt?: Maybe<Scalars['InstantTime']>;
|
|
270
|
+
dismissedBy?: Maybe<Scalars['String']>;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export interface MdPackageAndVersion {
|
|
274
|
+
__typename?: 'MdPackageAndVersion';
|
|
275
|
+
package: Scalars['String'];
|
|
276
|
+
version: Scalars['String'];
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
export interface MdPackageAndVersionChange {
|
|
280
|
+
__typename?: 'MdPackageAndVersionChange';
|
|
281
|
+
package: Scalars['String'];
|
|
282
|
+
oldVersion: Scalars['String'];
|
|
283
|
+
newVersion: Scalars['String'];
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
export interface MdPackageDiff {
|
|
287
|
+
__typename?: 'MdPackageDiff';
|
|
288
|
+
added?: Maybe<Array<MdPackageAndVersion>>;
|
|
289
|
+
removed?: Maybe<Array<MdPackageAndVersion>>;
|
|
290
|
+
changed?: Maybe<Array<MdPackageAndVersionChange>>;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export interface MdPausedInfo {
|
|
294
|
+
__typename?: 'MdPausedInfo';
|
|
295
|
+
id: Scalars['String'];
|
|
296
|
+
by?: Maybe<Scalars['String']>;
|
|
297
|
+
at?: Maybe<Scalars['InstantTime']>;
|
|
298
|
+
comment?: Maybe<Scalars['String']>;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export interface MdPinnedVersion {
|
|
302
|
+
__typename?: 'MdPinnedVersion';
|
|
303
|
+
id: Scalars['String'];
|
|
304
|
+
name: Scalars['String'];
|
|
305
|
+
reference: Scalars['String'];
|
|
306
|
+
version: Scalars['String'];
|
|
307
|
+
gitMetadata?: Maybe<MdGitMetadata>;
|
|
308
|
+
buildNumber?: Maybe<Scalars['String']>;
|
|
309
|
+
pinnedAt?: Maybe<Scalars['InstantTime']>;
|
|
310
|
+
pinnedBy?: Maybe<Scalars['String']>;
|
|
311
|
+
comment?: Maybe<Scalars['String']>;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
export interface MdPullRequest {
|
|
315
|
+
__typename?: 'MdPullRequest';
|
|
316
|
+
number?: Maybe<Scalars['String']>;
|
|
317
|
+
link?: Maybe<Scalars['String']>;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export interface MdResource {
|
|
321
|
+
__typename?: 'MdResource';
|
|
322
|
+
id: Scalars['String'];
|
|
323
|
+
kind: Scalars['String'];
|
|
324
|
+
moniker?: Maybe<MdMoniker>;
|
|
325
|
+
state?: Maybe<MdResourceActuationState>;
|
|
326
|
+
artifact?: Maybe<MdArtifact>;
|
|
327
|
+
displayName?: Maybe<Scalars['String']>;
|
|
328
|
+
location?: Maybe<MdLocation>;
|
|
329
|
+
rawDefinition?: Maybe<Scalars['String']>;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
export interface MdResourceActuationState {
|
|
333
|
+
__typename?: 'MdResourceActuationState';
|
|
334
|
+
resourceId: Scalars['String'];
|
|
335
|
+
status: MdResourceActuationStatus;
|
|
336
|
+
reason?: Maybe<Scalars['String']>;
|
|
337
|
+
event?: Maybe<Scalars['String']>;
|
|
338
|
+
tasks?: Maybe<Array<MdResourceTask>>;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
export type MdResourceActuationStatus = 'PROCESSING' | 'UP_TO_DATE' | 'ERROR' | 'WAITING' | 'NOT_MANAGED' | 'DELETING';
|
|
342
|
+
|
|
343
|
+
export interface MdResourceTask {
|
|
344
|
+
__typename?: 'MdResourceTask';
|
|
345
|
+
id: Scalars['String'];
|
|
346
|
+
name: Scalars['String'];
|
|
347
|
+
running: Scalars['Boolean'];
|
|
348
|
+
summary?: Maybe<MdExecutionSummary>;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
export interface MdRestartConstraintEvaluationPayload {
|
|
352
|
+
application: Scalars['String'];
|
|
353
|
+
environment: Scalars['String'];
|
|
354
|
+
type: Scalars['String'];
|
|
355
|
+
reference: Scalars['String'];
|
|
356
|
+
version: Scalars['String'];
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
export interface MdRetryArtifactActionPayload {
|
|
360
|
+
application: Scalars['String'];
|
|
361
|
+
environment: Scalars['String'];
|
|
362
|
+
reference: Scalars['String'];
|
|
363
|
+
version: Scalars['String'];
|
|
364
|
+
actionId: Scalars['String'];
|
|
365
|
+
actionType: MdActionType;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
export type MdRolloutTargetStatus = 'NOT_STARTED' | 'RUNNING' | 'SUCCEEDED' | 'FAILED';
|
|
369
|
+
|
|
370
|
+
export interface MdStageDetail {
|
|
371
|
+
__typename?: 'MdStageDetail';
|
|
372
|
+
id?: Maybe<Scalars['String']>;
|
|
373
|
+
type?: Maybe<Scalars['String']>;
|
|
374
|
+
name?: Maybe<Scalars['String']>;
|
|
375
|
+
startTime?: Maybe<Scalars['InstantTime']>;
|
|
376
|
+
endTime?: Maybe<Scalars['InstantTime']>;
|
|
377
|
+
status?: Maybe<MdTaskStatus>;
|
|
378
|
+
refId?: Maybe<Scalars['String']>;
|
|
379
|
+
requisiteStageRefIds?: Maybe<Array<Scalars['String']>>;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
export type MdTaskStatus =
|
|
383
|
+
| 'NOT_STARTED'
|
|
384
|
+
| 'RUNNING'
|
|
385
|
+
| 'PAUSED'
|
|
386
|
+
| 'SUSPENDED'
|
|
387
|
+
| 'SUCCEEDED'
|
|
388
|
+
| 'FAILED_CONTINUE'
|
|
389
|
+
| 'TERMINAL'
|
|
390
|
+
| 'CANCELED'
|
|
391
|
+
| 'REDIRECT'
|
|
392
|
+
| 'STOPPED'
|
|
393
|
+
| 'BUFFERED'
|
|
394
|
+
| 'SKIPPED';
|
|
395
|
+
|
|
396
|
+
export interface MdToggleResourceManagementPayload {
|
|
397
|
+
id: Scalars['ID'];
|
|
398
|
+
isPaused: Scalars['Boolean'];
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export interface MdUnpinArtifactVersionPayload {
|
|
402
|
+
application: Scalars['String'];
|
|
403
|
+
environment: Scalars['String'];
|
|
404
|
+
reference: Scalars['String'];
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export interface MdUpdateGitIntegrationPayload {
|
|
408
|
+
application: Scalars['String'];
|
|
409
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
410
|
+
manifestPath?: Maybe<Scalars['String']>;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
export interface MdVersionVeto {
|
|
414
|
+
__typename?: 'MdVersionVeto';
|
|
415
|
+
vetoedBy?: Maybe<Scalars['String']>;
|
|
416
|
+
vetoedAt?: Maybe<Scalars['InstantTime']>;
|
|
417
|
+
comment?: Maybe<Scalars['String']>;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
export interface Mutation {
|
|
421
|
+
__typename?: 'Mutation';
|
|
422
|
+
updateConstraintStatus?: Maybe<Scalars['Boolean']>;
|
|
423
|
+
restartConstraintEvaluation?: Maybe<Scalars['Boolean']>;
|
|
424
|
+
toggleManagement?: Maybe<Scalars['Boolean']>;
|
|
425
|
+
pinArtifactVersion?: Maybe<Scalars['Boolean']>;
|
|
426
|
+
markArtifactVersionAsBad?: Maybe<Scalars['Boolean']>;
|
|
427
|
+
unpinArtifactVersion?: Maybe<Scalars['Boolean']>;
|
|
428
|
+
markArtifactVersionAsGood?: Maybe<Scalars['Boolean']>;
|
|
429
|
+
retryArtifactVersionAction?: Maybe<MdAction>;
|
|
430
|
+
dismissNotification?: Maybe<Scalars['Boolean']>;
|
|
431
|
+
updateGitIntegration?: Maybe<MdGitIntegration>;
|
|
432
|
+
toggleResourceManagement?: Maybe<Scalars['Boolean']>;
|
|
433
|
+
importDeliveryConfig?: Maybe<Scalars['Boolean']>;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
export interface MutationUpdateConstraintStatusArgs {
|
|
437
|
+
payload: MdConstraintStatusPayload;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
export interface MutationRestartConstraintEvaluationArgs {
|
|
441
|
+
payload: MdRestartConstraintEvaluationPayload;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
export interface MutationToggleManagementArgs {
|
|
445
|
+
application: Scalars['ID'];
|
|
446
|
+
isPaused: Scalars['Boolean'];
|
|
447
|
+
comment?: Maybe<Scalars['String']>;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
export interface MutationPinArtifactVersionArgs {
|
|
451
|
+
payload: MdArtifactVersionActionPayload;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
export interface MutationMarkArtifactVersionAsBadArgs {
|
|
455
|
+
payload: MdArtifactVersionActionPayload;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export interface MutationUnpinArtifactVersionArgs {
|
|
459
|
+
payload: MdUnpinArtifactVersionPayload;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
export interface MutationMarkArtifactVersionAsGoodArgs {
|
|
463
|
+
payload: MdMarkArtifactVersionAsGoodPayload;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
export interface MutationRetryArtifactVersionActionArgs {
|
|
467
|
+
payload?: Maybe<MdRetryArtifactActionPayload>;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
export interface MutationDismissNotificationArgs {
|
|
471
|
+
payload: MdDismissNotificationPayload;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
export interface MutationUpdateGitIntegrationArgs {
|
|
475
|
+
payload?: Maybe<MdUpdateGitIntegrationPayload>;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
export interface MutationToggleResourceManagementArgs {
|
|
479
|
+
payload?: Maybe<MdToggleResourceManagementPayload>;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
export interface MutationImportDeliveryConfigArgs {
|
|
483
|
+
application: Scalars['String'];
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
export interface Query {
|
|
487
|
+
__typename?: 'Query';
|
|
488
|
+
application?: Maybe<MdApplication>;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
export interface QueryApplicationArgs {
|
|
492
|
+
appName: Scalars['String'];
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
export type ActionDetailsFragment = { __typename?: 'MdAction' } & Pick<
|
|
496
|
+
MdAction,
|
|
497
|
+
'id' | 'actionId' | 'actionType' | 'status' | 'startedAt' | 'completedAt' | 'link'
|
|
498
|
+
>;
|
|
499
|
+
|
|
500
|
+
export type DetailedVersionFieldsFragment = { __typename?: 'MdArtifactVersionInEnvironment' } & Pick<
|
|
501
|
+
MdArtifactVersionInEnvironment,
|
|
502
|
+
'id' | 'buildNumber' | 'version' | 'createdAt' | 'status' | 'isCurrent' | 'deployedAt'
|
|
503
|
+
> & {
|
|
504
|
+
gitMetadata?: Maybe<
|
|
505
|
+
{ __typename?: 'MdGitMetadata' } & Pick<MdGitMetadata, 'commit' | 'author' | 'branch'> & {
|
|
506
|
+
commitInfo?: Maybe<{ __typename?: 'MdCommitInfo' } & Pick<MdCommitInfo, 'sha' | 'link' | 'message'>>;
|
|
507
|
+
pullRequest?: Maybe<{ __typename?: 'MdPullRequest' } & Pick<MdPullRequest, 'number' | 'link'>>;
|
|
508
|
+
comparisonLinks?: Maybe<
|
|
509
|
+
{ __typename?: 'MdComparisonLinks' } & Pick<MdComparisonLinks, 'toPreviousVersion' | 'toCurrentVersion'>
|
|
510
|
+
>;
|
|
511
|
+
}
|
|
512
|
+
>;
|
|
513
|
+
lifecycleSteps?: Maybe<
|
|
514
|
+
Array<
|
|
515
|
+
{ __typename?: 'MdLifecycleStep' } & Pick<
|
|
516
|
+
MdLifecycleStep,
|
|
517
|
+
'startedAt' | 'completedAt' | 'type' | 'status' | 'link'
|
|
518
|
+
>
|
|
519
|
+
>
|
|
520
|
+
>;
|
|
521
|
+
constraints?: Maybe<
|
|
522
|
+
Array<
|
|
523
|
+
{ __typename?: 'MdConstraint' } & Pick<MdConstraint, 'type' | 'status' | 'judgedBy' | 'judgedAt' | 'attributes'>
|
|
524
|
+
>
|
|
525
|
+
>;
|
|
526
|
+
verifications?: Maybe<Array<{ __typename?: 'MdAction' } & ActionDetailsFragment>>;
|
|
527
|
+
postDeploy?: Maybe<Array<{ __typename?: 'MdAction' } & ActionDetailsFragment>>;
|
|
528
|
+
veto?: Maybe<{ __typename?: 'MdVersionVeto' } & Pick<MdVersionVeto, 'vetoedBy' | 'vetoedAt' | 'comment'>>;
|
|
529
|
+
};
|
|
530
|
+
|
|
531
|
+
export type ArtifactPinnedVersionFieldsFragment = { __typename?: 'MdArtifact' } & {
|
|
532
|
+
pinnedVersion?: Maybe<
|
|
533
|
+
{ __typename?: 'MdPinnedVersion' } & Pick<
|
|
534
|
+
MdPinnedVersion,
|
|
535
|
+
'id' | 'version' | 'buildNumber' | 'pinnedAt' | 'pinnedBy' | 'comment'
|
|
536
|
+
> & {
|
|
537
|
+
gitMetadata?: Maybe<
|
|
538
|
+
{ __typename?: 'MdGitMetadata' } & {
|
|
539
|
+
commitInfo?: Maybe<{ __typename?: 'MdCommitInfo' } & Pick<MdCommitInfo, 'message'>>;
|
|
540
|
+
}
|
|
541
|
+
>;
|
|
542
|
+
}
|
|
543
|
+
>;
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
export type BaseEnvironmentFieldsFragment = { __typename?: 'MdEnvironment' } & Pick<
|
|
547
|
+
MdEnvironment,
|
|
548
|
+
'id' | 'name' | 'isPreview' | 'basedOn'
|
|
549
|
+
> & {
|
|
550
|
+
gitMetadata?: Maybe<
|
|
551
|
+
{ __typename?: 'MdGitMetadata' } & Pick<MdGitMetadata, 'branch'> & {
|
|
552
|
+
pullRequest?: Maybe<{ __typename?: 'MdPullRequest' } & Pick<MdPullRequest, 'link'>>;
|
|
553
|
+
}
|
|
554
|
+
>;
|
|
555
|
+
};
|
|
556
|
+
|
|
557
|
+
export type BaesResourceFieldsFragment = { __typename?: 'MdResource' } & Pick<
|
|
558
|
+
MdResource,
|
|
559
|
+
'id' | 'kind' | 'displayName' | 'rawDefinition'
|
|
560
|
+
> & {
|
|
561
|
+
moniker?: Maybe<{ __typename?: 'MdMoniker' } & Pick<MdMoniker, 'app' | 'stack' | 'detail'>>;
|
|
562
|
+
location?: Maybe<{ __typename?: 'MdLocation' } & Pick<MdLocation, 'account' | 'regions'>>;
|
|
563
|
+
};
|
|
564
|
+
|
|
565
|
+
export type FetchApplicationQueryVariables = Exact<{
|
|
566
|
+
appName: Scalars['String'];
|
|
567
|
+
statuses?: Maybe<Array<MdArtifactStatusInEnvironment> | MdArtifactStatusInEnvironment>;
|
|
568
|
+
}>;
|
|
569
|
+
|
|
570
|
+
export type FetchApplicationQuery = { __typename?: 'Query' } & {
|
|
571
|
+
application?: Maybe<
|
|
572
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name'> & {
|
|
573
|
+
config?: Maybe<{ __typename?: 'MdConfig' } & Pick<MdConfig, 'id' | 'previewEnvironmentsConfigured'>>;
|
|
574
|
+
environments: Array<
|
|
575
|
+
{ __typename?: 'MdEnvironment' } & Pick<MdEnvironment, 'isDeleting'> & {
|
|
576
|
+
state: { __typename?: 'MdEnvironmentState' } & Pick<MdEnvironmentState, 'id'> & {
|
|
577
|
+
artifacts?: Maybe<
|
|
578
|
+
Array<
|
|
579
|
+
{ __typename?: 'MdArtifact' } & Pick<
|
|
580
|
+
MdArtifact,
|
|
581
|
+
'id' | 'name' | 'environment' | 'type' | 'reference'
|
|
582
|
+
> & {
|
|
583
|
+
versions?: Maybe<
|
|
584
|
+
Array<{ __typename?: 'MdArtifactVersionInEnvironment' } & DetailedVersionFieldsFragment>
|
|
585
|
+
>;
|
|
586
|
+
resources?: Maybe<Array<{ __typename?: 'MdResource' } & BaesResourceFieldsFragment>>;
|
|
587
|
+
} & ArtifactPinnedVersionFieldsFragment
|
|
588
|
+
>
|
|
589
|
+
>;
|
|
590
|
+
resources?: Maybe<Array<{ __typename?: 'MdResource' } & BaesResourceFieldsFragment>>;
|
|
591
|
+
};
|
|
592
|
+
} & BaseEnvironmentFieldsFragment
|
|
593
|
+
>;
|
|
594
|
+
}
|
|
595
|
+
>;
|
|
596
|
+
};
|
|
597
|
+
|
|
598
|
+
export type FetchCurrentVersionQueryVariables = Exact<{
|
|
599
|
+
appName: Scalars['String'];
|
|
600
|
+
}>;
|
|
601
|
+
|
|
602
|
+
export type FetchCurrentVersionQuery = { __typename?: 'Query' } & {
|
|
603
|
+
application?: Maybe<
|
|
604
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name'> & {
|
|
605
|
+
environments: Array<
|
|
606
|
+
{ __typename?: 'MdEnvironment' } & Pick<MdEnvironment, 'id' | 'name'> & {
|
|
607
|
+
state: { __typename?: 'MdEnvironmentState' } & {
|
|
608
|
+
artifacts?: Maybe<
|
|
609
|
+
Array<
|
|
610
|
+
{ __typename?: 'MdArtifact' } & Pick<MdArtifact, 'id' | 'name' | 'reference' | 'environment'> & {
|
|
611
|
+
versions?: Maybe<
|
|
612
|
+
Array<
|
|
613
|
+
{ __typename?: 'MdArtifactVersionInEnvironment' } & Pick<
|
|
614
|
+
MdArtifactVersionInEnvironment,
|
|
615
|
+
'id' | 'version' | 'buildNumber' | 'createdAt'
|
|
616
|
+
> & {
|
|
617
|
+
gitMetadata?: Maybe<
|
|
618
|
+
{ __typename?: 'MdGitMetadata' } & Pick<MdGitMetadata, 'commit'> & {
|
|
619
|
+
commitInfo?: Maybe<
|
|
620
|
+
{ __typename?: 'MdCommitInfo' } & Pick<MdCommitInfo, 'sha' | 'message'>
|
|
621
|
+
>;
|
|
622
|
+
}
|
|
623
|
+
>;
|
|
624
|
+
}
|
|
625
|
+
>
|
|
626
|
+
>;
|
|
627
|
+
}
|
|
628
|
+
>
|
|
629
|
+
>;
|
|
630
|
+
};
|
|
631
|
+
}
|
|
632
|
+
>;
|
|
633
|
+
}
|
|
634
|
+
>;
|
|
635
|
+
};
|
|
636
|
+
|
|
637
|
+
export type FetchVersionsHistoryQueryVariables = Exact<{
|
|
638
|
+
appName: Scalars['String'];
|
|
639
|
+
limit?: Maybe<Scalars['Int']>;
|
|
640
|
+
}>;
|
|
641
|
+
|
|
642
|
+
export type FetchVersionsHistoryQuery = { __typename?: 'Query' } & {
|
|
643
|
+
application?: Maybe<
|
|
644
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name'> & {
|
|
645
|
+
environments: Array<
|
|
646
|
+
{ __typename?: 'MdEnvironment' } & {
|
|
647
|
+
state: { __typename?: 'MdEnvironmentState' } & Pick<MdEnvironmentState, 'id'> & {
|
|
648
|
+
artifacts?: Maybe<
|
|
649
|
+
Array<
|
|
650
|
+
{ __typename?: 'MdArtifact' } & Pick<
|
|
651
|
+
MdArtifact,
|
|
652
|
+
'id' | 'name' | 'environment' | 'type' | 'reference'
|
|
653
|
+
> & {
|
|
654
|
+
versions?: Maybe<
|
|
655
|
+
Array<
|
|
656
|
+
{ __typename?: 'MdArtifactVersionInEnvironment' } & Pick<
|
|
657
|
+
MdArtifactVersionInEnvironment,
|
|
658
|
+
'id' | 'buildNumber' | 'version' | 'createdAt' | 'status' | 'isCurrent'
|
|
659
|
+
> & {
|
|
660
|
+
gitMetadata?: Maybe<
|
|
661
|
+
{ __typename?: 'MdGitMetadata' } & Pick<
|
|
662
|
+
MdGitMetadata,
|
|
663
|
+
'commit' | 'author' | 'branch'
|
|
664
|
+
> & {
|
|
665
|
+
commitInfo?: Maybe<
|
|
666
|
+
{ __typename?: 'MdCommitInfo' } & Pick<MdCommitInfo, 'sha' | 'link' | 'message'>
|
|
667
|
+
>;
|
|
668
|
+
pullRequest?: Maybe<
|
|
669
|
+
{ __typename?: 'MdPullRequest' } & Pick<MdPullRequest, 'number' | 'link'>
|
|
670
|
+
>;
|
|
671
|
+
}
|
|
672
|
+
>;
|
|
673
|
+
}
|
|
674
|
+
>
|
|
675
|
+
>;
|
|
676
|
+
} & ArtifactPinnedVersionFieldsFragment
|
|
677
|
+
>
|
|
678
|
+
>;
|
|
679
|
+
};
|
|
680
|
+
} & BaseEnvironmentFieldsFragment
|
|
681
|
+
>;
|
|
682
|
+
}
|
|
683
|
+
>;
|
|
684
|
+
};
|
|
685
|
+
|
|
686
|
+
export type FetchPinnedVersionsQueryVariables = Exact<{
|
|
687
|
+
appName: Scalars['String'];
|
|
688
|
+
}>;
|
|
689
|
+
|
|
690
|
+
export type FetchPinnedVersionsQuery = { __typename?: 'Query' } & {
|
|
691
|
+
application?: Maybe<
|
|
692
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name' | 'account'> & {
|
|
693
|
+
environments: Array<
|
|
694
|
+
{ __typename?: 'MdEnvironment' } & Pick<MdEnvironment, 'id' | 'name'> & {
|
|
695
|
+
state: { __typename?: 'MdEnvironmentState' } & Pick<MdEnvironmentState, 'id'> & {
|
|
696
|
+
artifacts?: Maybe<
|
|
697
|
+
Array<
|
|
698
|
+
{ __typename?: 'MdArtifact' } & Pick<
|
|
699
|
+
MdArtifact,
|
|
700
|
+
'id' | 'name' | 'environment' | 'type' | 'reference'
|
|
701
|
+
> &
|
|
702
|
+
ArtifactPinnedVersionFieldsFragment
|
|
703
|
+
>
|
|
704
|
+
>;
|
|
705
|
+
};
|
|
706
|
+
}
|
|
707
|
+
>;
|
|
708
|
+
}
|
|
709
|
+
>;
|
|
710
|
+
};
|
|
711
|
+
|
|
712
|
+
export type FetchVersionQueryVariables = Exact<{
|
|
713
|
+
appName: Scalars['String'];
|
|
714
|
+
versions?: Maybe<Array<Scalars['String']> | Scalars['String']>;
|
|
715
|
+
}>;
|
|
716
|
+
|
|
717
|
+
export type FetchVersionQuery = { __typename?: 'Query' } & {
|
|
718
|
+
application?: Maybe<
|
|
719
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name' | 'account'> & {
|
|
720
|
+
environments: Array<
|
|
721
|
+
{ __typename?: 'MdEnvironment' } & Pick<MdEnvironment, 'id' | 'name'> & {
|
|
722
|
+
state: { __typename?: 'MdEnvironmentState' } & Pick<MdEnvironmentState, 'id'> & {
|
|
723
|
+
artifacts?: Maybe<
|
|
724
|
+
Array<
|
|
725
|
+
{ __typename?: 'MdArtifact' } & Pick<
|
|
726
|
+
MdArtifact,
|
|
727
|
+
'id' | 'name' | 'environment' | 'type' | 'reference'
|
|
728
|
+
> & {
|
|
729
|
+
versions?: Maybe<
|
|
730
|
+
Array<{ __typename?: 'MdArtifactVersionInEnvironment' } & DetailedVersionFieldsFragment>
|
|
731
|
+
>;
|
|
732
|
+
}
|
|
733
|
+
>
|
|
734
|
+
>;
|
|
735
|
+
};
|
|
736
|
+
}
|
|
737
|
+
>;
|
|
738
|
+
}
|
|
739
|
+
>;
|
|
740
|
+
};
|
|
741
|
+
|
|
742
|
+
export type FetchResourceStatusQueryVariables = Exact<{
|
|
743
|
+
appName: Scalars['String'];
|
|
744
|
+
}>;
|
|
745
|
+
|
|
746
|
+
export type FetchResourceStatusQuery = { __typename?: 'Query' } & {
|
|
747
|
+
application?: Maybe<
|
|
748
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name'> & {
|
|
749
|
+
environments: Array<
|
|
750
|
+
{ __typename?: 'MdEnvironment' } & Pick<MdEnvironment, 'id' | 'name'> & {
|
|
751
|
+
state: { __typename?: 'MdEnvironmentState' } & Pick<MdEnvironmentState, 'id'> & {
|
|
752
|
+
resources?: Maybe<
|
|
753
|
+
Array<
|
|
754
|
+
{ __typename?: 'MdResource' } & Pick<MdResource, 'id' | 'kind'> & {
|
|
755
|
+
state?: Maybe<
|
|
756
|
+
{ __typename?: 'MdResourceActuationState' } & Pick<
|
|
757
|
+
MdResourceActuationState,
|
|
758
|
+
'status' | 'reason' | 'event'
|
|
759
|
+
> & {
|
|
760
|
+
tasks?: Maybe<
|
|
761
|
+
Array<{ __typename?: 'MdResourceTask' } & Pick<MdResourceTask, 'id' | 'name'>>
|
|
762
|
+
>;
|
|
763
|
+
}
|
|
764
|
+
>;
|
|
765
|
+
}
|
|
766
|
+
>
|
|
767
|
+
>;
|
|
768
|
+
};
|
|
769
|
+
}
|
|
770
|
+
>;
|
|
771
|
+
}
|
|
772
|
+
>;
|
|
773
|
+
};
|
|
774
|
+
|
|
775
|
+
export type FetchNotificationsQueryVariables = Exact<{
|
|
776
|
+
appName: Scalars['String'];
|
|
777
|
+
}>;
|
|
778
|
+
|
|
779
|
+
export type FetchNotificationsQuery = { __typename?: 'Query' } & {
|
|
780
|
+
application?: Maybe<
|
|
781
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name'> & {
|
|
782
|
+
notifications?: Maybe<
|
|
783
|
+
Array<
|
|
784
|
+
{ __typename?: 'MdNotification' } & Pick<
|
|
785
|
+
MdNotification,
|
|
786
|
+
'id' | 'level' | 'message' | 'triggeredAt' | 'link'
|
|
787
|
+
>
|
|
788
|
+
>
|
|
789
|
+
>;
|
|
790
|
+
}
|
|
791
|
+
>;
|
|
792
|
+
};
|
|
793
|
+
|
|
794
|
+
export type FetchApplicationManagementDataQueryVariables = Exact<{
|
|
795
|
+
appName: Scalars['String'];
|
|
796
|
+
}>;
|
|
797
|
+
|
|
798
|
+
export type FetchApplicationManagementDataQuery = { __typename?: 'Query' } & {
|
|
799
|
+
application?: Maybe<
|
|
800
|
+
{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name' | 'isPaused'> & {
|
|
801
|
+
config?: Maybe<
|
|
802
|
+
{ __typename?: 'MdConfig' } & Pick<MdConfig, 'id' | 'updatedAt' | 'rawConfig' | 'processedConfig'>
|
|
803
|
+
>;
|
|
804
|
+
gitIntegration?: Maybe<
|
|
805
|
+
{ __typename?: 'MdGitIntegration' } & Pick<
|
|
806
|
+
MdGitIntegration,
|
|
807
|
+
'id' | 'repository' | 'branch' | 'isEnabled' | 'link' | 'manifestPath'
|
|
808
|
+
>
|
|
809
|
+
>;
|
|
810
|
+
}
|
|
811
|
+
>;
|
|
812
|
+
};
|
|
813
|
+
|
|
814
|
+
export type FetchApplicationManagementStatusQueryVariables = Exact<{
|
|
815
|
+
appName: Scalars['String'];
|
|
816
|
+
}>;
|
|
817
|
+
|
|
818
|
+
export type FetchApplicationManagementStatusQuery = { __typename?: 'Query' } & {
|
|
819
|
+
application?: Maybe<{ __typename?: 'MdApplication' } & Pick<MdApplication, 'id' | 'name' | 'isPaused'>>;
|
|
820
|
+
};
|
|
821
|
+
|
|
822
|
+
export type UpdateConstraintMutationVariables = Exact<{
|
|
823
|
+
payload: MdConstraintStatusPayload;
|
|
824
|
+
}>;
|
|
825
|
+
|
|
826
|
+
export type UpdateConstraintMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'updateConstraintStatus'>;
|
|
827
|
+
|
|
828
|
+
export type ToggleManagementMutationVariables = Exact<{
|
|
829
|
+
application: Scalars['ID'];
|
|
830
|
+
isPaused: Scalars['Boolean'];
|
|
831
|
+
}>;
|
|
832
|
+
|
|
833
|
+
export type ToggleManagementMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'toggleManagement'>;
|
|
834
|
+
|
|
835
|
+
export type PinVersionMutationVariables = Exact<{
|
|
836
|
+
payload: MdArtifactVersionActionPayload;
|
|
837
|
+
}>;
|
|
838
|
+
|
|
839
|
+
export type PinVersionMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'pinArtifactVersion'>;
|
|
840
|
+
|
|
841
|
+
export type UnpinVersionMutationVariables = Exact<{
|
|
842
|
+
payload: MdUnpinArtifactVersionPayload;
|
|
843
|
+
}>;
|
|
844
|
+
|
|
845
|
+
export type UnpinVersionMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'unpinArtifactVersion'>;
|
|
846
|
+
|
|
847
|
+
export type MarkVersionAsBadMutationVariables = Exact<{
|
|
848
|
+
payload: MdArtifactVersionActionPayload;
|
|
849
|
+
}>;
|
|
850
|
+
|
|
851
|
+
export type MarkVersionAsBadMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'markArtifactVersionAsBad'>;
|
|
852
|
+
|
|
853
|
+
export type MarkVersionAsGoodMutationVariables = Exact<{
|
|
854
|
+
payload: MdMarkArtifactVersionAsGoodPayload;
|
|
855
|
+
}>;
|
|
856
|
+
|
|
857
|
+
export type MarkVersionAsGoodMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'markArtifactVersionAsGood'>;
|
|
858
|
+
|
|
859
|
+
export type RetryVersionActionMutationVariables = Exact<{
|
|
860
|
+
payload: MdRetryArtifactActionPayload;
|
|
861
|
+
}>;
|
|
862
|
+
|
|
863
|
+
export type RetryVersionActionMutation = { __typename?: 'Mutation' } & {
|
|
864
|
+
retryArtifactVersionAction?: Maybe<{ __typename?: 'MdAction' } & ActionDetailsFragment>;
|
|
865
|
+
};
|
|
866
|
+
|
|
867
|
+
export type UpdateGitIntegrationMutationVariables = Exact<{
|
|
868
|
+
payload: MdUpdateGitIntegrationPayload;
|
|
869
|
+
}>;
|
|
870
|
+
|
|
871
|
+
export type UpdateGitIntegrationMutation = { __typename?: 'Mutation' } & {
|
|
872
|
+
updateGitIntegration?: Maybe<{ __typename?: 'MdGitIntegration' } & Pick<MdGitIntegration, 'id' | 'isEnabled'>>;
|
|
873
|
+
};
|
|
874
|
+
|
|
875
|
+
export type DismissNotificationMutationVariables = Exact<{
|
|
876
|
+
payload: MdDismissNotificationPayload;
|
|
877
|
+
}>;
|
|
878
|
+
|
|
879
|
+
export type DismissNotificationMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'dismissNotification'>;
|
|
880
|
+
|
|
881
|
+
export type ImportDeliveryConfigMutationVariables = Exact<{
|
|
882
|
+
application: Scalars['String'];
|
|
883
|
+
}>;
|
|
884
|
+
|
|
885
|
+
export type ImportDeliveryConfigMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'importDeliveryConfig'>;
|
|
886
|
+
|
|
887
|
+
export type ToggleResourceManagementMutationVariables = Exact<{
|
|
888
|
+
payload?: Maybe<MdToggleResourceManagementPayload>;
|
|
889
|
+
}>;
|
|
890
|
+
|
|
891
|
+
export type ToggleResourceManagementMutation = { __typename?: 'Mutation' } & Pick<Mutation, 'toggleResourceManagement'>;
|
|
892
|
+
|
|
893
|
+
export type RestartConstraintEvaluationMutationVariables = Exact<{
|
|
894
|
+
payload: MdRestartConstraintEvaluationPayload;
|
|
895
|
+
}>;
|
|
896
|
+
|
|
897
|
+
export type RestartConstraintEvaluationMutation = { __typename?: 'Mutation' } & Pick<
|
|
898
|
+
Mutation,
|
|
899
|
+
'restartConstraintEvaluation'
|
|
900
|
+
>;
|
|
901
|
+
|
|
902
|
+
export const ActionDetailsFragmentDoc = gql`
|
|
903
|
+
fragment actionDetails on MdAction {
|
|
904
|
+
id
|
|
905
|
+
actionId
|
|
906
|
+
actionType
|
|
907
|
+
status
|
|
908
|
+
startedAt
|
|
909
|
+
completedAt
|
|
910
|
+
link
|
|
911
|
+
}
|
|
912
|
+
`;
|
|
913
|
+
export const DetailedVersionFieldsFragmentDoc = gql`
|
|
914
|
+
fragment detailedVersionFields on MdArtifactVersionInEnvironment {
|
|
915
|
+
id
|
|
916
|
+
buildNumber
|
|
917
|
+
version
|
|
918
|
+
createdAt
|
|
919
|
+
status
|
|
920
|
+
isCurrent
|
|
921
|
+
gitMetadata {
|
|
922
|
+
commit
|
|
923
|
+
author
|
|
924
|
+
branch
|
|
925
|
+
commitInfo {
|
|
926
|
+
sha
|
|
927
|
+
link
|
|
928
|
+
message
|
|
929
|
+
}
|
|
930
|
+
pullRequest {
|
|
931
|
+
number
|
|
932
|
+
link
|
|
933
|
+
}
|
|
934
|
+
comparisonLinks {
|
|
935
|
+
toPreviousVersion
|
|
936
|
+
toCurrentVersion
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
deployedAt
|
|
940
|
+
lifecycleSteps {
|
|
941
|
+
startedAt
|
|
942
|
+
completedAt
|
|
943
|
+
type
|
|
944
|
+
status
|
|
945
|
+
link
|
|
946
|
+
}
|
|
947
|
+
constraints {
|
|
948
|
+
type
|
|
949
|
+
status
|
|
950
|
+
judgedBy
|
|
951
|
+
judgedAt
|
|
952
|
+
attributes
|
|
953
|
+
}
|
|
954
|
+
verifications {
|
|
955
|
+
...actionDetails
|
|
956
|
+
}
|
|
957
|
+
postDeploy {
|
|
958
|
+
...actionDetails
|
|
959
|
+
}
|
|
960
|
+
veto {
|
|
961
|
+
vetoedBy
|
|
962
|
+
vetoedAt
|
|
963
|
+
comment
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
${ActionDetailsFragmentDoc}
|
|
967
|
+
`;
|
|
968
|
+
export const ArtifactPinnedVersionFieldsFragmentDoc = gql`
|
|
969
|
+
fragment artifactPinnedVersionFields on MdArtifact {
|
|
970
|
+
pinnedVersion {
|
|
971
|
+
id
|
|
972
|
+
version
|
|
973
|
+
buildNumber
|
|
974
|
+
pinnedAt
|
|
975
|
+
pinnedBy
|
|
976
|
+
comment
|
|
977
|
+
gitMetadata {
|
|
978
|
+
commitInfo {
|
|
979
|
+
message
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
}
|
|
984
|
+
`;
|
|
985
|
+
export const BaseEnvironmentFieldsFragmentDoc = gql`
|
|
986
|
+
fragment baseEnvironmentFields on MdEnvironment {
|
|
987
|
+
id
|
|
988
|
+
name
|
|
989
|
+
isPreview
|
|
990
|
+
gitMetadata {
|
|
991
|
+
branch
|
|
992
|
+
pullRequest {
|
|
993
|
+
link
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
basedOn
|
|
997
|
+
}
|
|
998
|
+
`;
|
|
999
|
+
export const BaesResourceFieldsFragmentDoc = gql`
|
|
1000
|
+
fragment baesResourceFields on MdResource {
|
|
1001
|
+
id
|
|
1002
|
+
kind
|
|
1003
|
+
displayName
|
|
1004
|
+
moniker {
|
|
1005
|
+
app
|
|
1006
|
+
stack
|
|
1007
|
+
detail
|
|
1008
|
+
}
|
|
1009
|
+
location {
|
|
1010
|
+
account
|
|
1011
|
+
regions
|
|
1012
|
+
}
|
|
1013
|
+
rawDefinition
|
|
1014
|
+
}
|
|
1015
|
+
`;
|
|
1016
|
+
export const FetchApplicationDocument = gql`
|
|
1017
|
+
query fetchApplication($appName: String!, $statuses: [MdArtifactStatusInEnvironment!]) {
|
|
1018
|
+
application(appName: $appName) {
|
|
1019
|
+
id
|
|
1020
|
+
name
|
|
1021
|
+
config {
|
|
1022
|
+
id
|
|
1023
|
+
previewEnvironmentsConfigured
|
|
1024
|
+
}
|
|
1025
|
+
environments {
|
|
1026
|
+
...baseEnvironmentFields
|
|
1027
|
+
isDeleting
|
|
1028
|
+
state {
|
|
1029
|
+
id
|
|
1030
|
+
artifacts {
|
|
1031
|
+
id
|
|
1032
|
+
name
|
|
1033
|
+
environment
|
|
1034
|
+
type
|
|
1035
|
+
reference
|
|
1036
|
+
versions(statuses: $statuses) {
|
|
1037
|
+
...detailedVersionFields
|
|
1038
|
+
}
|
|
1039
|
+
...artifactPinnedVersionFields
|
|
1040
|
+
resources {
|
|
1041
|
+
...baesResourceFields
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
resources {
|
|
1045
|
+
...baesResourceFields
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
${BaseEnvironmentFieldsFragmentDoc}
|
|
1052
|
+
${DetailedVersionFieldsFragmentDoc}
|
|
1053
|
+
${ArtifactPinnedVersionFieldsFragmentDoc}
|
|
1054
|
+
${BaesResourceFieldsFragmentDoc}
|
|
1055
|
+
`;
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* __useFetchApplicationQuery__
|
|
1059
|
+
*
|
|
1060
|
+
* To run a query within a React component, call `useFetchApplicationQuery` and pass it any options that fit your needs.
|
|
1061
|
+
* When your component renders, `useFetchApplicationQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1062
|
+
* you can use to render your UI.
|
|
1063
|
+
*
|
|
1064
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1065
|
+
*
|
|
1066
|
+
* @example
|
|
1067
|
+
* const { data, loading, error } = useFetchApplicationQuery({
|
|
1068
|
+
* variables: {
|
|
1069
|
+
* appName: // value for 'appName'
|
|
1070
|
+
* statuses: // value for 'statuses'
|
|
1071
|
+
* },
|
|
1072
|
+
* });
|
|
1073
|
+
*/
|
|
1074
|
+
export function useFetchApplicationQuery(
|
|
1075
|
+
baseOptions: Apollo.QueryHookOptions<FetchApplicationQuery, FetchApplicationQueryVariables>,
|
|
1076
|
+
) {
|
|
1077
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1078
|
+
return Apollo.useQuery<FetchApplicationQuery, FetchApplicationQueryVariables>(FetchApplicationDocument, options);
|
|
1079
|
+
}
|
|
1080
|
+
export function useFetchApplicationLazyQuery(
|
|
1081
|
+
baseOptions?: Apollo.LazyQueryHookOptions<FetchApplicationQuery, FetchApplicationQueryVariables>,
|
|
1082
|
+
) {
|
|
1083
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1084
|
+
return Apollo.useLazyQuery<FetchApplicationQuery, FetchApplicationQueryVariables>(FetchApplicationDocument, options);
|
|
1085
|
+
}
|
|
1086
|
+
export type FetchApplicationQueryHookResult = ReturnType<typeof useFetchApplicationQuery>;
|
|
1087
|
+
export type FetchApplicationLazyQueryHookResult = ReturnType<typeof useFetchApplicationLazyQuery>;
|
|
1088
|
+
export type FetchApplicationQueryResult = Apollo.QueryResult<FetchApplicationQuery, FetchApplicationQueryVariables>;
|
|
1089
|
+
export const FetchCurrentVersionDocument = gql`
|
|
1090
|
+
query fetchCurrentVersion($appName: String!) {
|
|
1091
|
+
application(appName: $appName) {
|
|
1092
|
+
id
|
|
1093
|
+
name
|
|
1094
|
+
environments {
|
|
1095
|
+
id
|
|
1096
|
+
name
|
|
1097
|
+
state {
|
|
1098
|
+
artifacts {
|
|
1099
|
+
id
|
|
1100
|
+
name
|
|
1101
|
+
reference
|
|
1102
|
+
environment
|
|
1103
|
+
versions(statuses: [CURRENT]) {
|
|
1104
|
+
id
|
|
1105
|
+
version
|
|
1106
|
+
buildNumber
|
|
1107
|
+
createdAt
|
|
1108
|
+
gitMetadata {
|
|
1109
|
+
commit
|
|
1110
|
+
commitInfo {
|
|
1111
|
+
sha
|
|
1112
|
+
message
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
`;
|
|
1122
|
+
|
|
1123
|
+
/**
|
|
1124
|
+
* __useFetchCurrentVersionQuery__
|
|
1125
|
+
*
|
|
1126
|
+
* To run a query within a React component, call `useFetchCurrentVersionQuery` and pass it any options that fit your needs.
|
|
1127
|
+
* When your component renders, `useFetchCurrentVersionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1128
|
+
* you can use to render your UI.
|
|
1129
|
+
*
|
|
1130
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1131
|
+
*
|
|
1132
|
+
* @example
|
|
1133
|
+
* const { data, loading, error } = useFetchCurrentVersionQuery({
|
|
1134
|
+
* variables: {
|
|
1135
|
+
* appName: // value for 'appName'
|
|
1136
|
+
* },
|
|
1137
|
+
* });
|
|
1138
|
+
*/
|
|
1139
|
+
export function useFetchCurrentVersionQuery(
|
|
1140
|
+
baseOptions: Apollo.QueryHookOptions<FetchCurrentVersionQuery, FetchCurrentVersionQueryVariables>,
|
|
1141
|
+
) {
|
|
1142
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1143
|
+
return Apollo.useQuery<FetchCurrentVersionQuery, FetchCurrentVersionQueryVariables>(
|
|
1144
|
+
FetchCurrentVersionDocument,
|
|
1145
|
+
options,
|
|
1146
|
+
);
|
|
1147
|
+
}
|
|
1148
|
+
export function useFetchCurrentVersionLazyQuery(
|
|
1149
|
+
baseOptions?: Apollo.LazyQueryHookOptions<FetchCurrentVersionQuery, FetchCurrentVersionQueryVariables>,
|
|
1150
|
+
) {
|
|
1151
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1152
|
+
return Apollo.useLazyQuery<FetchCurrentVersionQuery, FetchCurrentVersionQueryVariables>(
|
|
1153
|
+
FetchCurrentVersionDocument,
|
|
1154
|
+
options,
|
|
1155
|
+
);
|
|
1156
|
+
}
|
|
1157
|
+
export type FetchCurrentVersionQueryHookResult = ReturnType<typeof useFetchCurrentVersionQuery>;
|
|
1158
|
+
export type FetchCurrentVersionLazyQueryHookResult = ReturnType<typeof useFetchCurrentVersionLazyQuery>;
|
|
1159
|
+
export type FetchCurrentVersionQueryResult = Apollo.QueryResult<
|
|
1160
|
+
FetchCurrentVersionQuery,
|
|
1161
|
+
FetchCurrentVersionQueryVariables
|
|
1162
|
+
>;
|
|
1163
|
+
export const FetchVersionsHistoryDocument = gql`
|
|
1164
|
+
query fetchVersionsHistory($appName: String!, $limit: Int) {
|
|
1165
|
+
application(appName: $appName) {
|
|
1166
|
+
id
|
|
1167
|
+
name
|
|
1168
|
+
environments {
|
|
1169
|
+
...baseEnvironmentFields
|
|
1170
|
+
state {
|
|
1171
|
+
id
|
|
1172
|
+
artifacts {
|
|
1173
|
+
id
|
|
1174
|
+
name
|
|
1175
|
+
environment
|
|
1176
|
+
type
|
|
1177
|
+
reference
|
|
1178
|
+
versions(limit: $limit) {
|
|
1179
|
+
id
|
|
1180
|
+
buildNumber
|
|
1181
|
+
version
|
|
1182
|
+
createdAt
|
|
1183
|
+
status
|
|
1184
|
+
isCurrent
|
|
1185
|
+
gitMetadata {
|
|
1186
|
+
commit
|
|
1187
|
+
author
|
|
1188
|
+
branch
|
|
1189
|
+
commitInfo {
|
|
1190
|
+
sha
|
|
1191
|
+
link
|
|
1192
|
+
message
|
|
1193
|
+
}
|
|
1194
|
+
pullRequest {
|
|
1195
|
+
number
|
|
1196
|
+
link
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
...artifactPinnedVersionFields
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
}
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
${BaseEnvironmentFieldsFragmentDoc}
|
|
1207
|
+
${ArtifactPinnedVersionFieldsFragmentDoc}
|
|
1208
|
+
`;
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
* __useFetchVersionsHistoryQuery__
|
|
1212
|
+
*
|
|
1213
|
+
* To run a query within a React component, call `useFetchVersionsHistoryQuery` and pass it any options that fit your needs.
|
|
1214
|
+
* When your component renders, `useFetchVersionsHistoryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1215
|
+
* you can use to render your UI.
|
|
1216
|
+
*
|
|
1217
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1218
|
+
*
|
|
1219
|
+
* @example
|
|
1220
|
+
* const { data, loading, error } = useFetchVersionsHistoryQuery({
|
|
1221
|
+
* variables: {
|
|
1222
|
+
* appName: // value for 'appName'
|
|
1223
|
+
* limit: // value for 'limit'
|
|
1224
|
+
* },
|
|
1225
|
+
* });
|
|
1226
|
+
*/
|
|
1227
|
+
export function useFetchVersionsHistoryQuery(
|
|
1228
|
+
baseOptions: Apollo.QueryHookOptions<FetchVersionsHistoryQuery, FetchVersionsHistoryQueryVariables>,
|
|
1229
|
+
) {
|
|
1230
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1231
|
+
return Apollo.useQuery<FetchVersionsHistoryQuery, FetchVersionsHistoryQueryVariables>(
|
|
1232
|
+
FetchVersionsHistoryDocument,
|
|
1233
|
+
options,
|
|
1234
|
+
);
|
|
1235
|
+
}
|
|
1236
|
+
export function useFetchVersionsHistoryLazyQuery(
|
|
1237
|
+
baseOptions?: Apollo.LazyQueryHookOptions<FetchVersionsHistoryQuery, FetchVersionsHistoryQueryVariables>,
|
|
1238
|
+
) {
|
|
1239
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1240
|
+
return Apollo.useLazyQuery<FetchVersionsHistoryQuery, FetchVersionsHistoryQueryVariables>(
|
|
1241
|
+
FetchVersionsHistoryDocument,
|
|
1242
|
+
options,
|
|
1243
|
+
);
|
|
1244
|
+
}
|
|
1245
|
+
export type FetchVersionsHistoryQueryHookResult = ReturnType<typeof useFetchVersionsHistoryQuery>;
|
|
1246
|
+
export type FetchVersionsHistoryLazyQueryHookResult = ReturnType<typeof useFetchVersionsHistoryLazyQuery>;
|
|
1247
|
+
export type FetchVersionsHistoryQueryResult = Apollo.QueryResult<
|
|
1248
|
+
FetchVersionsHistoryQuery,
|
|
1249
|
+
FetchVersionsHistoryQueryVariables
|
|
1250
|
+
>;
|
|
1251
|
+
export const FetchPinnedVersionsDocument = gql`
|
|
1252
|
+
query fetchPinnedVersions($appName: String!) {
|
|
1253
|
+
application(appName: $appName) {
|
|
1254
|
+
id
|
|
1255
|
+
name
|
|
1256
|
+
account
|
|
1257
|
+
environments {
|
|
1258
|
+
id
|
|
1259
|
+
name
|
|
1260
|
+
state {
|
|
1261
|
+
id
|
|
1262
|
+
artifacts {
|
|
1263
|
+
id
|
|
1264
|
+
name
|
|
1265
|
+
environment
|
|
1266
|
+
type
|
|
1267
|
+
reference
|
|
1268
|
+
...artifactPinnedVersionFields
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
${ArtifactPinnedVersionFieldsFragmentDoc}
|
|
1275
|
+
`;
|
|
1276
|
+
|
|
1277
|
+
/**
|
|
1278
|
+
* __useFetchPinnedVersionsQuery__
|
|
1279
|
+
*
|
|
1280
|
+
* To run a query within a React component, call `useFetchPinnedVersionsQuery` and pass it any options that fit your needs.
|
|
1281
|
+
* When your component renders, `useFetchPinnedVersionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1282
|
+
* you can use to render your UI.
|
|
1283
|
+
*
|
|
1284
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1285
|
+
*
|
|
1286
|
+
* @example
|
|
1287
|
+
* const { data, loading, error } = useFetchPinnedVersionsQuery({
|
|
1288
|
+
* variables: {
|
|
1289
|
+
* appName: // value for 'appName'
|
|
1290
|
+
* },
|
|
1291
|
+
* });
|
|
1292
|
+
*/
|
|
1293
|
+
export function useFetchPinnedVersionsQuery(
|
|
1294
|
+
baseOptions: Apollo.QueryHookOptions<FetchPinnedVersionsQuery, FetchPinnedVersionsQueryVariables>,
|
|
1295
|
+
) {
|
|
1296
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1297
|
+
return Apollo.useQuery<FetchPinnedVersionsQuery, FetchPinnedVersionsQueryVariables>(
|
|
1298
|
+
FetchPinnedVersionsDocument,
|
|
1299
|
+
options,
|
|
1300
|
+
);
|
|
1301
|
+
}
|
|
1302
|
+
export function useFetchPinnedVersionsLazyQuery(
|
|
1303
|
+
baseOptions?: Apollo.LazyQueryHookOptions<FetchPinnedVersionsQuery, FetchPinnedVersionsQueryVariables>,
|
|
1304
|
+
) {
|
|
1305
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1306
|
+
return Apollo.useLazyQuery<FetchPinnedVersionsQuery, FetchPinnedVersionsQueryVariables>(
|
|
1307
|
+
FetchPinnedVersionsDocument,
|
|
1308
|
+
options,
|
|
1309
|
+
);
|
|
1310
|
+
}
|
|
1311
|
+
export type FetchPinnedVersionsQueryHookResult = ReturnType<typeof useFetchPinnedVersionsQuery>;
|
|
1312
|
+
export type FetchPinnedVersionsLazyQueryHookResult = ReturnType<typeof useFetchPinnedVersionsLazyQuery>;
|
|
1313
|
+
export type FetchPinnedVersionsQueryResult = Apollo.QueryResult<
|
|
1314
|
+
FetchPinnedVersionsQuery,
|
|
1315
|
+
FetchPinnedVersionsQueryVariables
|
|
1316
|
+
>;
|
|
1317
|
+
export const FetchVersionDocument = gql`
|
|
1318
|
+
query fetchVersion($appName: String!, $versions: [String!]) {
|
|
1319
|
+
application(appName: $appName) {
|
|
1320
|
+
id
|
|
1321
|
+
name
|
|
1322
|
+
account
|
|
1323
|
+
environments {
|
|
1324
|
+
id
|
|
1325
|
+
name
|
|
1326
|
+
state {
|
|
1327
|
+
id
|
|
1328
|
+
artifacts {
|
|
1329
|
+
id
|
|
1330
|
+
name
|
|
1331
|
+
environment
|
|
1332
|
+
type
|
|
1333
|
+
reference
|
|
1334
|
+
versions(versions: $versions) {
|
|
1335
|
+
...detailedVersionFields
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
${DetailedVersionFieldsFragmentDoc}
|
|
1343
|
+
`;
|
|
1344
|
+
|
|
1345
|
+
/**
|
|
1346
|
+
* __useFetchVersionQuery__
|
|
1347
|
+
*
|
|
1348
|
+
* To run a query within a React component, call `useFetchVersionQuery` and pass it any options that fit your needs.
|
|
1349
|
+
* When your component renders, `useFetchVersionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1350
|
+
* you can use to render your UI.
|
|
1351
|
+
*
|
|
1352
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1353
|
+
*
|
|
1354
|
+
* @example
|
|
1355
|
+
* const { data, loading, error } = useFetchVersionQuery({
|
|
1356
|
+
* variables: {
|
|
1357
|
+
* appName: // value for 'appName'
|
|
1358
|
+
* versions: // value for 'versions'
|
|
1359
|
+
* },
|
|
1360
|
+
* });
|
|
1361
|
+
*/
|
|
1362
|
+
export function useFetchVersionQuery(
|
|
1363
|
+
baseOptions: Apollo.QueryHookOptions<FetchVersionQuery, FetchVersionQueryVariables>,
|
|
1364
|
+
) {
|
|
1365
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1366
|
+
return Apollo.useQuery<FetchVersionQuery, FetchVersionQueryVariables>(FetchVersionDocument, options);
|
|
1367
|
+
}
|
|
1368
|
+
export function useFetchVersionLazyQuery(
|
|
1369
|
+
baseOptions?: Apollo.LazyQueryHookOptions<FetchVersionQuery, FetchVersionQueryVariables>,
|
|
1370
|
+
) {
|
|
1371
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1372
|
+
return Apollo.useLazyQuery<FetchVersionQuery, FetchVersionQueryVariables>(FetchVersionDocument, options);
|
|
1373
|
+
}
|
|
1374
|
+
export type FetchVersionQueryHookResult = ReturnType<typeof useFetchVersionQuery>;
|
|
1375
|
+
export type FetchVersionLazyQueryHookResult = ReturnType<typeof useFetchVersionLazyQuery>;
|
|
1376
|
+
export type FetchVersionQueryResult = Apollo.QueryResult<FetchVersionQuery, FetchVersionQueryVariables>;
|
|
1377
|
+
export const FetchResourceStatusDocument = gql`
|
|
1378
|
+
query fetchResourceStatus($appName: String!) {
|
|
1379
|
+
application(appName: $appName) {
|
|
1380
|
+
id
|
|
1381
|
+
name
|
|
1382
|
+
environments {
|
|
1383
|
+
id
|
|
1384
|
+
name
|
|
1385
|
+
state {
|
|
1386
|
+
id
|
|
1387
|
+
resources {
|
|
1388
|
+
id
|
|
1389
|
+
kind
|
|
1390
|
+
state {
|
|
1391
|
+
status
|
|
1392
|
+
reason
|
|
1393
|
+
event
|
|
1394
|
+
tasks {
|
|
1395
|
+
id
|
|
1396
|
+
name
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
}
|
|
1403
|
+
}
|
|
1404
|
+
`;
|
|
1405
|
+
|
|
1406
|
+
/**
|
|
1407
|
+
* __useFetchResourceStatusQuery__
|
|
1408
|
+
*
|
|
1409
|
+
* To run a query within a React component, call `useFetchResourceStatusQuery` and pass it any options that fit your needs.
|
|
1410
|
+
* When your component renders, `useFetchResourceStatusQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1411
|
+
* you can use to render your UI.
|
|
1412
|
+
*
|
|
1413
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1414
|
+
*
|
|
1415
|
+
* @example
|
|
1416
|
+
* const { data, loading, error } = useFetchResourceStatusQuery({
|
|
1417
|
+
* variables: {
|
|
1418
|
+
* appName: // value for 'appName'
|
|
1419
|
+
* },
|
|
1420
|
+
* });
|
|
1421
|
+
*/
|
|
1422
|
+
export function useFetchResourceStatusQuery(
|
|
1423
|
+
baseOptions: Apollo.QueryHookOptions<FetchResourceStatusQuery, FetchResourceStatusQueryVariables>,
|
|
1424
|
+
) {
|
|
1425
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1426
|
+
return Apollo.useQuery<FetchResourceStatusQuery, FetchResourceStatusQueryVariables>(
|
|
1427
|
+
FetchResourceStatusDocument,
|
|
1428
|
+
options,
|
|
1429
|
+
);
|
|
1430
|
+
}
|
|
1431
|
+
export function useFetchResourceStatusLazyQuery(
|
|
1432
|
+
baseOptions?: Apollo.LazyQueryHookOptions<FetchResourceStatusQuery, FetchResourceStatusQueryVariables>,
|
|
1433
|
+
) {
|
|
1434
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1435
|
+
return Apollo.useLazyQuery<FetchResourceStatusQuery, FetchResourceStatusQueryVariables>(
|
|
1436
|
+
FetchResourceStatusDocument,
|
|
1437
|
+
options,
|
|
1438
|
+
);
|
|
1439
|
+
}
|
|
1440
|
+
export type FetchResourceStatusQueryHookResult = ReturnType<typeof useFetchResourceStatusQuery>;
|
|
1441
|
+
export type FetchResourceStatusLazyQueryHookResult = ReturnType<typeof useFetchResourceStatusLazyQuery>;
|
|
1442
|
+
export type FetchResourceStatusQueryResult = Apollo.QueryResult<
|
|
1443
|
+
FetchResourceStatusQuery,
|
|
1444
|
+
FetchResourceStatusQueryVariables
|
|
1445
|
+
>;
|
|
1446
|
+
export const FetchNotificationsDocument = gql`
|
|
1447
|
+
query fetchNotifications($appName: String!) {
|
|
1448
|
+
application(appName: $appName) {
|
|
1449
|
+
id
|
|
1450
|
+
name
|
|
1451
|
+
notifications {
|
|
1452
|
+
id
|
|
1453
|
+
level
|
|
1454
|
+
message
|
|
1455
|
+
triggeredAt
|
|
1456
|
+
link
|
|
1457
|
+
id
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
`;
|
|
1462
|
+
|
|
1463
|
+
/**
|
|
1464
|
+
* __useFetchNotificationsQuery__
|
|
1465
|
+
*
|
|
1466
|
+
* To run a query within a React component, call `useFetchNotificationsQuery` and pass it any options that fit your needs.
|
|
1467
|
+
* When your component renders, `useFetchNotificationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1468
|
+
* you can use to render your UI.
|
|
1469
|
+
*
|
|
1470
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1471
|
+
*
|
|
1472
|
+
* @example
|
|
1473
|
+
* const { data, loading, error } = useFetchNotificationsQuery({
|
|
1474
|
+
* variables: {
|
|
1475
|
+
* appName: // value for 'appName'
|
|
1476
|
+
* },
|
|
1477
|
+
* });
|
|
1478
|
+
*/
|
|
1479
|
+
export function useFetchNotificationsQuery(
|
|
1480
|
+
baseOptions: Apollo.QueryHookOptions<FetchNotificationsQuery, FetchNotificationsQueryVariables>,
|
|
1481
|
+
) {
|
|
1482
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1483
|
+
return Apollo.useQuery<FetchNotificationsQuery, FetchNotificationsQueryVariables>(
|
|
1484
|
+
FetchNotificationsDocument,
|
|
1485
|
+
options,
|
|
1486
|
+
);
|
|
1487
|
+
}
|
|
1488
|
+
export function useFetchNotificationsLazyQuery(
|
|
1489
|
+
baseOptions?: Apollo.LazyQueryHookOptions<FetchNotificationsQuery, FetchNotificationsQueryVariables>,
|
|
1490
|
+
) {
|
|
1491
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1492
|
+
return Apollo.useLazyQuery<FetchNotificationsQuery, FetchNotificationsQueryVariables>(
|
|
1493
|
+
FetchNotificationsDocument,
|
|
1494
|
+
options,
|
|
1495
|
+
);
|
|
1496
|
+
}
|
|
1497
|
+
export type FetchNotificationsQueryHookResult = ReturnType<typeof useFetchNotificationsQuery>;
|
|
1498
|
+
export type FetchNotificationsLazyQueryHookResult = ReturnType<typeof useFetchNotificationsLazyQuery>;
|
|
1499
|
+
export type FetchNotificationsQueryResult = Apollo.QueryResult<
|
|
1500
|
+
FetchNotificationsQuery,
|
|
1501
|
+
FetchNotificationsQueryVariables
|
|
1502
|
+
>;
|
|
1503
|
+
export const FetchApplicationManagementDataDocument = gql`
|
|
1504
|
+
query fetchApplicationManagementData($appName: String!) {
|
|
1505
|
+
application(appName: $appName) {
|
|
1506
|
+
id
|
|
1507
|
+
name
|
|
1508
|
+
isPaused
|
|
1509
|
+
config {
|
|
1510
|
+
id
|
|
1511
|
+
updatedAt
|
|
1512
|
+
rawConfig
|
|
1513
|
+
processedConfig
|
|
1514
|
+
}
|
|
1515
|
+
gitIntegration {
|
|
1516
|
+
id
|
|
1517
|
+
repository
|
|
1518
|
+
branch
|
|
1519
|
+
isEnabled
|
|
1520
|
+
link
|
|
1521
|
+
manifestPath
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1524
|
+
}
|
|
1525
|
+
`;
|
|
1526
|
+
|
|
1527
|
+
/**
|
|
1528
|
+
* __useFetchApplicationManagementDataQuery__
|
|
1529
|
+
*
|
|
1530
|
+
* To run a query within a React component, call `useFetchApplicationManagementDataQuery` and pass it any options that fit your needs.
|
|
1531
|
+
* When your component renders, `useFetchApplicationManagementDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1532
|
+
* you can use to render your UI.
|
|
1533
|
+
*
|
|
1534
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1535
|
+
*
|
|
1536
|
+
* @example
|
|
1537
|
+
* const { data, loading, error } = useFetchApplicationManagementDataQuery({
|
|
1538
|
+
* variables: {
|
|
1539
|
+
* appName: // value for 'appName'
|
|
1540
|
+
* },
|
|
1541
|
+
* });
|
|
1542
|
+
*/
|
|
1543
|
+
export function useFetchApplicationManagementDataQuery(
|
|
1544
|
+
baseOptions: Apollo.QueryHookOptions<
|
|
1545
|
+
FetchApplicationManagementDataQuery,
|
|
1546
|
+
FetchApplicationManagementDataQueryVariables
|
|
1547
|
+
>,
|
|
1548
|
+
) {
|
|
1549
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1550
|
+
return Apollo.useQuery<FetchApplicationManagementDataQuery, FetchApplicationManagementDataQueryVariables>(
|
|
1551
|
+
FetchApplicationManagementDataDocument,
|
|
1552
|
+
options,
|
|
1553
|
+
);
|
|
1554
|
+
}
|
|
1555
|
+
export function useFetchApplicationManagementDataLazyQuery(
|
|
1556
|
+
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
1557
|
+
FetchApplicationManagementDataQuery,
|
|
1558
|
+
FetchApplicationManagementDataQueryVariables
|
|
1559
|
+
>,
|
|
1560
|
+
) {
|
|
1561
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1562
|
+
return Apollo.useLazyQuery<FetchApplicationManagementDataQuery, FetchApplicationManagementDataQueryVariables>(
|
|
1563
|
+
FetchApplicationManagementDataDocument,
|
|
1564
|
+
options,
|
|
1565
|
+
);
|
|
1566
|
+
}
|
|
1567
|
+
export type FetchApplicationManagementDataQueryHookResult = ReturnType<typeof useFetchApplicationManagementDataQuery>;
|
|
1568
|
+
export type FetchApplicationManagementDataLazyQueryHookResult = ReturnType<
|
|
1569
|
+
typeof useFetchApplicationManagementDataLazyQuery
|
|
1570
|
+
>;
|
|
1571
|
+
export type FetchApplicationManagementDataQueryResult = Apollo.QueryResult<
|
|
1572
|
+
FetchApplicationManagementDataQuery,
|
|
1573
|
+
FetchApplicationManagementDataQueryVariables
|
|
1574
|
+
>;
|
|
1575
|
+
export const FetchApplicationManagementStatusDocument = gql`
|
|
1576
|
+
query fetchApplicationManagementStatus($appName: String!) {
|
|
1577
|
+
application(appName: $appName) {
|
|
1578
|
+
id
|
|
1579
|
+
name
|
|
1580
|
+
isPaused
|
|
1581
|
+
}
|
|
1582
|
+
}
|
|
1583
|
+
`;
|
|
1584
|
+
|
|
1585
|
+
/**
|
|
1586
|
+
* __useFetchApplicationManagementStatusQuery__
|
|
1587
|
+
*
|
|
1588
|
+
* To run a query within a React component, call `useFetchApplicationManagementStatusQuery` and pass it any options that fit your needs.
|
|
1589
|
+
* When your component renders, `useFetchApplicationManagementStatusQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1590
|
+
* you can use to render your UI.
|
|
1591
|
+
*
|
|
1592
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1593
|
+
*
|
|
1594
|
+
* @example
|
|
1595
|
+
* const { data, loading, error } = useFetchApplicationManagementStatusQuery({
|
|
1596
|
+
* variables: {
|
|
1597
|
+
* appName: // value for 'appName'
|
|
1598
|
+
* },
|
|
1599
|
+
* });
|
|
1600
|
+
*/
|
|
1601
|
+
export function useFetchApplicationManagementStatusQuery(
|
|
1602
|
+
baseOptions: Apollo.QueryHookOptions<
|
|
1603
|
+
FetchApplicationManagementStatusQuery,
|
|
1604
|
+
FetchApplicationManagementStatusQueryVariables
|
|
1605
|
+
>,
|
|
1606
|
+
) {
|
|
1607
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1608
|
+
return Apollo.useQuery<FetchApplicationManagementStatusQuery, FetchApplicationManagementStatusQueryVariables>(
|
|
1609
|
+
FetchApplicationManagementStatusDocument,
|
|
1610
|
+
options,
|
|
1611
|
+
);
|
|
1612
|
+
}
|
|
1613
|
+
export function useFetchApplicationManagementStatusLazyQuery(
|
|
1614
|
+
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
1615
|
+
FetchApplicationManagementStatusQuery,
|
|
1616
|
+
FetchApplicationManagementStatusQueryVariables
|
|
1617
|
+
>,
|
|
1618
|
+
) {
|
|
1619
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1620
|
+
return Apollo.useLazyQuery<FetchApplicationManagementStatusQuery, FetchApplicationManagementStatusQueryVariables>(
|
|
1621
|
+
FetchApplicationManagementStatusDocument,
|
|
1622
|
+
options,
|
|
1623
|
+
);
|
|
1624
|
+
}
|
|
1625
|
+
export type FetchApplicationManagementStatusQueryHookResult = ReturnType<
|
|
1626
|
+
typeof useFetchApplicationManagementStatusQuery
|
|
1627
|
+
>;
|
|
1628
|
+
export type FetchApplicationManagementStatusLazyQueryHookResult = ReturnType<
|
|
1629
|
+
typeof useFetchApplicationManagementStatusLazyQuery
|
|
1630
|
+
>;
|
|
1631
|
+
export type FetchApplicationManagementStatusQueryResult = Apollo.QueryResult<
|
|
1632
|
+
FetchApplicationManagementStatusQuery,
|
|
1633
|
+
FetchApplicationManagementStatusQueryVariables
|
|
1634
|
+
>;
|
|
1635
|
+
export const UpdateConstraintDocument = gql`
|
|
1636
|
+
mutation UpdateConstraint($payload: MdConstraintStatusPayload!) {
|
|
1637
|
+
updateConstraintStatus(payload: $payload)
|
|
1638
|
+
}
|
|
1639
|
+
`;
|
|
1640
|
+
export type UpdateConstraintMutationFn = Apollo.MutationFunction<
|
|
1641
|
+
UpdateConstraintMutation,
|
|
1642
|
+
UpdateConstraintMutationVariables
|
|
1643
|
+
>;
|
|
1644
|
+
|
|
1645
|
+
/**
|
|
1646
|
+
* __useUpdateConstraintMutation__
|
|
1647
|
+
*
|
|
1648
|
+
* To run a mutation, you first call `useUpdateConstraintMutation` within a React component and pass it any options that fit your needs.
|
|
1649
|
+
* When your component renders, `useUpdateConstraintMutation` returns a tuple that includes:
|
|
1650
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1651
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1652
|
+
*
|
|
1653
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1654
|
+
*
|
|
1655
|
+
* @example
|
|
1656
|
+
* const [updateConstraintMutation, { data, loading, error }] = useUpdateConstraintMutation({
|
|
1657
|
+
* variables: {
|
|
1658
|
+
* payload: // value for 'payload'
|
|
1659
|
+
* },
|
|
1660
|
+
* });
|
|
1661
|
+
*/
|
|
1662
|
+
export function useUpdateConstraintMutation(
|
|
1663
|
+
baseOptions?: Apollo.MutationHookOptions<UpdateConstraintMutation, UpdateConstraintMutationVariables>,
|
|
1664
|
+
) {
|
|
1665
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1666
|
+
return Apollo.useMutation<UpdateConstraintMutation, UpdateConstraintMutationVariables>(
|
|
1667
|
+
UpdateConstraintDocument,
|
|
1668
|
+
options,
|
|
1669
|
+
);
|
|
1670
|
+
}
|
|
1671
|
+
export type UpdateConstraintMutationHookResult = ReturnType<typeof useUpdateConstraintMutation>;
|
|
1672
|
+
export type UpdateConstraintMutationResult = Apollo.MutationResult<UpdateConstraintMutation>;
|
|
1673
|
+
export type UpdateConstraintMutationOptions = Apollo.BaseMutationOptions<
|
|
1674
|
+
UpdateConstraintMutation,
|
|
1675
|
+
UpdateConstraintMutationVariables
|
|
1676
|
+
>;
|
|
1677
|
+
export const ToggleManagementDocument = gql`
|
|
1678
|
+
mutation ToggleManagement($application: ID!, $isPaused: Boolean!) {
|
|
1679
|
+
toggleManagement(application: $application, isPaused: $isPaused)
|
|
1680
|
+
}
|
|
1681
|
+
`;
|
|
1682
|
+
export type ToggleManagementMutationFn = Apollo.MutationFunction<
|
|
1683
|
+
ToggleManagementMutation,
|
|
1684
|
+
ToggleManagementMutationVariables
|
|
1685
|
+
>;
|
|
1686
|
+
|
|
1687
|
+
/**
|
|
1688
|
+
* __useToggleManagementMutation__
|
|
1689
|
+
*
|
|
1690
|
+
* To run a mutation, you first call `useToggleManagementMutation` within a React component and pass it any options that fit your needs.
|
|
1691
|
+
* When your component renders, `useToggleManagementMutation` returns a tuple that includes:
|
|
1692
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1693
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1694
|
+
*
|
|
1695
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1696
|
+
*
|
|
1697
|
+
* @example
|
|
1698
|
+
* const [toggleManagementMutation, { data, loading, error }] = useToggleManagementMutation({
|
|
1699
|
+
* variables: {
|
|
1700
|
+
* application: // value for 'application'
|
|
1701
|
+
* isPaused: // value for 'isPaused'
|
|
1702
|
+
* },
|
|
1703
|
+
* });
|
|
1704
|
+
*/
|
|
1705
|
+
export function useToggleManagementMutation(
|
|
1706
|
+
baseOptions?: Apollo.MutationHookOptions<ToggleManagementMutation, ToggleManagementMutationVariables>,
|
|
1707
|
+
) {
|
|
1708
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1709
|
+
return Apollo.useMutation<ToggleManagementMutation, ToggleManagementMutationVariables>(
|
|
1710
|
+
ToggleManagementDocument,
|
|
1711
|
+
options,
|
|
1712
|
+
);
|
|
1713
|
+
}
|
|
1714
|
+
export type ToggleManagementMutationHookResult = ReturnType<typeof useToggleManagementMutation>;
|
|
1715
|
+
export type ToggleManagementMutationResult = Apollo.MutationResult<ToggleManagementMutation>;
|
|
1716
|
+
export type ToggleManagementMutationOptions = Apollo.BaseMutationOptions<
|
|
1717
|
+
ToggleManagementMutation,
|
|
1718
|
+
ToggleManagementMutationVariables
|
|
1719
|
+
>;
|
|
1720
|
+
export const PinVersionDocument = gql`
|
|
1721
|
+
mutation PinVersion($payload: MdArtifactVersionActionPayload!) {
|
|
1722
|
+
pinArtifactVersion(payload: $payload)
|
|
1723
|
+
}
|
|
1724
|
+
`;
|
|
1725
|
+
export type PinVersionMutationFn = Apollo.MutationFunction<PinVersionMutation, PinVersionMutationVariables>;
|
|
1726
|
+
|
|
1727
|
+
/**
|
|
1728
|
+
* __usePinVersionMutation__
|
|
1729
|
+
*
|
|
1730
|
+
* To run a mutation, you first call `usePinVersionMutation` within a React component and pass it any options that fit your needs.
|
|
1731
|
+
* When your component renders, `usePinVersionMutation` returns a tuple that includes:
|
|
1732
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1733
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1734
|
+
*
|
|
1735
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1736
|
+
*
|
|
1737
|
+
* @example
|
|
1738
|
+
* const [pinVersionMutation, { data, loading, error }] = usePinVersionMutation({
|
|
1739
|
+
* variables: {
|
|
1740
|
+
* payload: // value for 'payload'
|
|
1741
|
+
* },
|
|
1742
|
+
* });
|
|
1743
|
+
*/
|
|
1744
|
+
export function usePinVersionMutation(
|
|
1745
|
+
baseOptions?: Apollo.MutationHookOptions<PinVersionMutation, PinVersionMutationVariables>,
|
|
1746
|
+
) {
|
|
1747
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1748
|
+
return Apollo.useMutation<PinVersionMutation, PinVersionMutationVariables>(PinVersionDocument, options);
|
|
1749
|
+
}
|
|
1750
|
+
export type PinVersionMutationHookResult = ReturnType<typeof usePinVersionMutation>;
|
|
1751
|
+
export type PinVersionMutationResult = Apollo.MutationResult<PinVersionMutation>;
|
|
1752
|
+
export type PinVersionMutationOptions = Apollo.BaseMutationOptions<PinVersionMutation, PinVersionMutationVariables>;
|
|
1753
|
+
export const UnpinVersionDocument = gql`
|
|
1754
|
+
mutation UnpinVersion($payload: MdUnpinArtifactVersionPayload!) {
|
|
1755
|
+
unpinArtifactVersion(payload: $payload)
|
|
1756
|
+
}
|
|
1757
|
+
`;
|
|
1758
|
+
export type UnpinVersionMutationFn = Apollo.MutationFunction<UnpinVersionMutation, UnpinVersionMutationVariables>;
|
|
1759
|
+
|
|
1760
|
+
/**
|
|
1761
|
+
* __useUnpinVersionMutation__
|
|
1762
|
+
*
|
|
1763
|
+
* To run a mutation, you first call `useUnpinVersionMutation` within a React component and pass it any options that fit your needs.
|
|
1764
|
+
* When your component renders, `useUnpinVersionMutation` returns a tuple that includes:
|
|
1765
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1766
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1767
|
+
*
|
|
1768
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1769
|
+
*
|
|
1770
|
+
* @example
|
|
1771
|
+
* const [unpinVersionMutation, { data, loading, error }] = useUnpinVersionMutation({
|
|
1772
|
+
* variables: {
|
|
1773
|
+
* payload: // value for 'payload'
|
|
1774
|
+
* },
|
|
1775
|
+
* });
|
|
1776
|
+
*/
|
|
1777
|
+
export function useUnpinVersionMutation(
|
|
1778
|
+
baseOptions?: Apollo.MutationHookOptions<UnpinVersionMutation, UnpinVersionMutationVariables>,
|
|
1779
|
+
) {
|
|
1780
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1781
|
+
return Apollo.useMutation<UnpinVersionMutation, UnpinVersionMutationVariables>(UnpinVersionDocument, options);
|
|
1782
|
+
}
|
|
1783
|
+
export type UnpinVersionMutationHookResult = ReturnType<typeof useUnpinVersionMutation>;
|
|
1784
|
+
export type UnpinVersionMutationResult = Apollo.MutationResult<UnpinVersionMutation>;
|
|
1785
|
+
export type UnpinVersionMutationOptions = Apollo.BaseMutationOptions<
|
|
1786
|
+
UnpinVersionMutation,
|
|
1787
|
+
UnpinVersionMutationVariables
|
|
1788
|
+
>;
|
|
1789
|
+
export const MarkVersionAsBadDocument = gql`
|
|
1790
|
+
mutation MarkVersionAsBad($payload: MdArtifactVersionActionPayload!) {
|
|
1791
|
+
markArtifactVersionAsBad(payload: $payload)
|
|
1792
|
+
}
|
|
1793
|
+
`;
|
|
1794
|
+
export type MarkVersionAsBadMutationFn = Apollo.MutationFunction<
|
|
1795
|
+
MarkVersionAsBadMutation,
|
|
1796
|
+
MarkVersionAsBadMutationVariables
|
|
1797
|
+
>;
|
|
1798
|
+
|
|
1799
|
+
/**
|
|
1800
|
+
* __useMarkVersionAsBadMutation__
|
|
1801
|
+
*
|
|
1802
|
+
* To run a mutation, you first call `useMarkVersionAsBadMutation` within a React component and pass it any options that fit your needs.
|
|
1803
|
+
* When your component renders, `useMarkVersionAsBadMutation` returns a tuple that includes:
|
|
1804
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1805
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1806
|
+
*
|
|
1807
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1808
|
+
*
|
|
1809
|
+
* @example
|
|
1810
|
+
* const [markVersionAsBadMutation, { data, loading, error }] = useMarkVersionAsBadMutation({
|
|
1811
|
+
* variables: {
|
|
1812
|
+
* payload: // value for 'payload'
|
|
1813
|
+
* },
|
|
1814
|
+
* });
|
|
1815
|
+
*/
|
|
1816
|
+
export function useMarkVersionAsBadMutation(
|
|
1817
|
+
baseOptions?: Apollo.MutationHookOptions<MarkVersionAsBadMutation, MarkVersionAsBadMutationVariables>,
|
|
1818
|
+
) {
|
|
1819
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1820
|
+
return Apollo.useMutation<MarkVersionAsBadMutation, MarkVersionAsBadMutationVariables>(
|
|
1821
|
+
MarkVersionAsBadDocument,
|
|
1822
|
+
options,
|
|
1823
|
+
);
|
|
1824
|
+
}
|
|
1825
|
+
export type MarkVersionAsBadMutationHookResult = ReturnType<typeof useMarkVersionAsBadMutation>;
|
|
1826
|
+
export type MarkVersionAsBadMutationResult = Apollo.MutationResult<MarkVersionAsBadMutation>;
|
|
1827
|
+
export type MarkVersionAsBadMutationOptions = Apollo.BaseMutationOptions<
|
|
1828
|
+
MarkVersionAsBadMutation,
|
|
1829
|
+
MarkVersionAsBadMutationVariables
|
|
1830
|
+
>;
|
|
1831
|
+
export const MarkVersionAsGoodDocument = gql`
|
|
1832
|
+
mutation MarkVersionAsGood($payload: MdMarkArtifactVersionAsGoodPayload!) {
|
|
1833
|
+
markArtifactVersionAsGood(payload: $payload)
|
|
1834
|
+
}
|
|
1835
|
+
`;
|
|
1836
|
+
export type MarkVersionAsGoodMutationFn = Apollo.MutationFunction<
|
|
1837
|
+
MarkVersionAsGoodMutation,
|
|
1838
|
+
MarkVersionAsGoodMutationVariables
|
|
1839
|
+
>;
|
|
1840
|
+
|
|
1841
|
+
/**
|
|
1842
|
+
* __useMarkVersionAsGoodMutation__
|
|
1843
|
+
*
|
|
1844
|
+
* To run a mutation, you first call `useMarkVersionAsGoodMutation` within a React component and pass it any options that fit your needs.
|
|
1845
|
+
* When your component renders, `useMarkVersionAsGoodMutation` returns a tuple that includes:
|
|
1846
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1847
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1848
|
+
*
|
|
1849
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1850
|
+
*
|
|
1851
|
+
* @example
|
|
1852
|
+
* const [markVersionAsGoodMutation, { data, loading, error }] = useMarkVersionAsGoodMutation({
|
|
1853
|
+
* variables: {
|
|
1854
|
+
* payload: // value for 'payload'
|
|
1855
|
+
* },
|
|
1856
|
+
* });
|
|
1857
|
+
*/
|
|
1858
|
+
export function useMarkVersionAsGoodMutation(
|
|
1859
|
+
baseOptions?: Apollo.MutationHookOptions<MarkVersionAsGoodMutation, MarkVersionAsGoodMutationVariables>,
|
|
1860
|
+
) {
|
|
1861
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1862
|
+
return Apollo.useMutation<MarkVersionAsGoodMutation, MarkVersionAsGoodMutationVariables>(
|
|
1863
|
+
MarkVersionAsGoodDocument,
|
|
1864
|
+
options,
|
|
1865
|
+
);
|
|
1866
|
+
}
|
|
1867
|
+
export type MarkVersionAsGoodMutationHookResult = ReturnType<typeof useMarkVersionAsGoodMutation>;
|
|
1868
|
+
export type MarkVersionAsGoodMutationResult = Apollo.MutationResult<MarkVersionAsGoodMutation>;
|
|
1869
|
+
export type MarkVersionAsGoodMutationOptions = Apollo.BaseMutationOptions<
|
|
1870
|
+
MarkVersionAsGoodMutation,
|
|
1871
|
+
MarkVersionAsGoodMutationVariables
|
|
1872
|
+
>;
|
|
1873
|
+
export const RetryVersionActionDocument = gql`
|
|
1874
|
+
mutation RetryVersionAction($payload: MdRetryArtifactActionPayload!) {
|
|
1875
|
+
retryArtifactVersionAction(payload: $payload) {
|
|
1876
|
+
...actionDetails
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
${ActionDetailsFragmentDoc}
|
|
1880
|
+
`;
|
|
1881
|
+
export type RetryVersionActionMutationFn = Apollo.MutationFunction<
|
|
1882
|
+
RetryVersionActionMutation,
|
|
1883
|
+
RetryVersionActionMutationVariables
|
|
1884
|
+
>;
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* __useRetryVersionActionMutation__
|
|
1888
|
+
*
|
|
1889
|
+
* To run a mutation, you first call `useRetryVersionActionMutation` within a React component and pass it any options that fit your needs.
|
|
1890
|
+
* When your component renders, `useRetryVersionActionMutation` returns a tuple that includes:
|
|
1891
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1892
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1893
|
+
*
|
|
1894
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1895
|
+
*
|
|
1896
|
+
* @example
|
|
1897
|
+
* const [retryVersionActionMutation, { data, loading, error }] = useRetryVersionActionMutation({
|
|
1898
|
+
* variables: {
|
|
1899
|
+
* payload: // value for 'payload'
|
|
1900
|
+
* },
|
|
1901
|
+
* });
|
|
1902
|
+
*/
|
|
1903
|
+
export function useRetryVersionActionMutation(
|
|
1904
|
+
baseOptions?: Apollo.MutationHookOptions<RetryVersionActionMutation, RetryVersionActionMutationVariables>,
|
|
1905
|
+
) {
|
|
1906
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1907
|
+
return Apollo.useMutation<RetryVersionActionMutation, RetryVersionActionMutationVariables>(
|
|
1908
|
+
RetryVersionActionDocument,
|
|
1909
|
+
options,
|
|
1910
|
+
);
|
|
1911
|
+
}
|
|
1912
|
+
export type RetryVersionActionMutationHookResult = ReturnType<typeof useRetryVersionActionMutation>;
|
|
1913
|
+
export type RetryVersionActionMutationResult = Apollo.MutationResult<RetryVersionActionMutation>;
|
|
1914
|
+
export type RetryVersionActionMutationOptions = Apollo.BaseMutationOptions<
|
|
1915
|
+
RetryVersionActionMutation,
|
|
1916
|
+
RetryVersionActionMutationVariables
|
|
1917
|
+
>;
|
|
1918
|
+
export const UpdateGitIntegrationDocument = gql`
|
|
1919
|
+
mutation UpdateGitIntegration($payload: MdUpdateGitIntegrationPayload!) {
|
|
1920
|
+
updateGitIntegration(payload: $payload) {
|
|
1921
|
+
id
|
|
1922
|
+
isEnabled
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1925
|
+
`;
|
|
1926
|
+
export type UpdateGitIntegrationMutationFn = Apollo.MutationFunction<
|
|
1927
|
+
UpdateGitIntegrationMutation,
|
|
1928
|
+
UpdateGitIntegrationMutationVariables
|
|
1929
|
+
>;
|
|
1930
|
+
|
|
1931
|
+
/**
|
|
1932
|
+
* __useUpdateGitIntegrationMutation__
|
|
1933
|
+
*
|
|
1934
|
+
* To run a mutation, you first call `useUpdateGitIntegrationMutation` within a React component and pass it any options that fit your needs.
|
|
1935
|
+
* When your component renders, `useUpdateGitIntegrationMutation` returns a tuple that includes:
|
|
1936
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1937
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1938
|
+
*
|
|
1939
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1940
|
+
*
|
|
1941
|
+
* @example
|
|
1942
|
+
* const [updateGitIntegrationMutation, { data, loading, error }] = useUpdateGitIntegrationMutation({
|
|
1943
|
+
* variables: {
|
|
1944
|
+
* payload: // value for 'payload'
|
|
1945
|
+
* },
|
|
1946
|
+
* });
|
|
1947
|
+
*/
|
|
1948
|
+
export function useUpdateGitIntegrationMutation(
|
|
1949
|
+
baseOptions?: Apollo.MutationHookOptions<UpdateGitIntegrationMutation, UpdateGitIntegrationMutationVariables>,
|
|
1950
|
+
) {
|
|
1951
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1952
|
+
return Apollo.useMutation<UpdateGitIntegrationMutation, UpdateGitIntegrationMutationVariables>(
|
|
1953
|
+
UpdateGitIntegrationDocument,
|
|
1954
|
+
options,
|
|
1955
|
+
);
|
|
1956
|
+
}
|
|
1957
|
+
export type UpdateGitIntegrationMutationHookResult = ReturnType<typeof useUpdateGitIntegrationMutation>;
|
|
1958
|
+
export type UpdateGitIntegrationMutationResult = Apollo.MutationResult<UpdateGitIntegrationMutation>;
|
|
1959
|
+
export type UpdateGitIntegrationMutationOptions = Apollo.BaseMutationOptions<
|
|
1960
|
+
UpdateGitIntegrationMutation,
|
|
1961
|
+
UpdateGitIntegrationMutationVariables
|
|
1962
|
+
>;
|
|
1963
|
+
export const DismissNotificationDocument = gql`
|
|
1964
|
+
mutation DismissNotification($payload: MdDismissNotificationPayload!) {
|
|
1965
|
+
dismissNotification(payload: $payload)
|
|
1966
|
+
}
|
|
1967
|
+
`;
|
|
1968
|
+
export type DismissNotificationMutationFn = Apollo.MutationFunction<
|
|
1969
|
+
DismissNotificationMutation,
|
|
1970
|
+
DismissNotificationMutationVariables
|
|
1971
|
+
>;
|
|
1972
|
+
|
|
1973
|
+
/**
|
|
1974
|
+
* __useDismissNotificationMutation__
|
|
1975
|
+
*
|
|
1976
|
+
* To run a mutation, you first call `useDismissNotificationMutation` within a React component and pass it any options that fit your needs.
|
|
1977
|
+
* When your component renders, `useDismissNotificationMutation` returns a tuple that includes:
|
|
1978
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1979
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1980
|
+
*
|
|
1981
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1982
|
+
*
|
|
1983
|
+
* @example
|
|
1984
|
+
* const [dismissNotificationMutation, { data, loading, error }] = useDismissNotificationMutation({
|
|
1985
|
+
* variables: {
|
|
1986
|
+
* payload: // value for 'payload'
|
|
1987
|
+
* },
|
|
1988
|
+
* });
|
|
1989
|
+
*/
|
|
1990
|
+
export function useDismissNotificationMutation(
|
|
1991
|
+
baseOptions?: Apollo.MutationHookOptions<DismissNotificationMutation, DismissNotificationMutationVariables>,
|
|
1992
|
+
) {
|
|
1993
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1994
|
+
return Apollo.useMutation<DismissNotificationMutation, DismissNotificationMutationVariables>(
|
|
1995
|
+
DismissNotificationDocument,
|
|
1996
|
+
options,
|
|
1997
|
+
);
|
|
1998
|
+
}
|
|
1999
|
+
export type DismissNotificationMutationHookResult = ReturnType<typeof useDismissNotificationMutation>;
|
|
2000
|
+
export type DismissNotificationMutationResult = Apollo.MutationResult<DismissNotificationMutation>;
|
|
2001
|
+
export type DismissNotificationMutationOptions = Apollo.BaseMutationOptions<
|
|
2002
|
+
DismissNotificationMutation,
|
|
2003
|
+
DismissNotificationMutationVariables
|
|
2004
|
+
>;
|
|
2005
|
+
export const ImportDeliveryConfigDocument = gql`
|
|
2006
|
+
mutation ImportDeliveryConfig($application: String!) {
|
|
2007
|
+
importDeliveryConfig(application: $application)
|
|
2008
|
+
}
|
|
2009
|
+
`;
|
|
2010
|
+
export type ImportDeliveryConfigMutationFn = Apollo.MutationFunction<
|
|
2011
|
+
ImportDeliveryConfigMutation,
|
|
2012
|
+
ImportDeliveryConfigMutationVariables
|
|
2013
|
+
>;
|
|
2014
|
+
|
|
2015
|
+
/**
|
|
2016
|
+
* __useImportDeliveryConfigMutation__
|
|
2017
|
+
*
|
|
2018
|
+
* To run a mutation, you first call `useImportDeliveryConfigMutation` within a React component and pass it any options that fit your needs.
|
|
2019
|
+
* When your component renders, `useImportDeliveryConfigMutation` returns a tuple that includes:
|
|
2020
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2021
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2022
|
+
*
|
|
2023
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2024
|
+
*
|
|
2025
|
+
* @example
|
|
2026
|
+
* const [importDeliveryConfigMutation, { data, loading, error }] = useImportDeliveryConfigMutation({
|
|
2027
|
+
* variables: {
|
|
2028
|
+
* application: // value for 'application'
|
|
2029
|
+
* },
|
|
2030
|
+
* });
|
|
2031
|
+
*/
|
|
2032
|
+
export function useImportDeliveryConfigMutation(
|
|
2033
|
+
baseOptions?: Apollo.MutationHookOptions<ImportDeliveryConfigMutation, ImportDeliveryConfigMutationVariables>,
|
|
2034
|
+
) {
|
|
2035
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2036
|
+
return Apollo.useMutation<ImportDeliveryConfigMutation, ImportDeliveryConfigMutationVariables>(
|
|
2037
|
+
ImportDeliveryConfigDocument,
|
|
2038
|
+
options,
|
|
2039
|
+
);
|
|
2040
|
+
}
|
|
2041
|
+
export type ImportDeliveryConfigMutationHookResult = ReturnType<typeof useImportDeliveryConfigMutation>;
|
|
2042
|
+
export type ImportDeliveryConfigMutationResult = Apollo.MutationResult<ImportDeliveryConfigMutation>;
|
|
2043
|
+
export type ImportDeliveryConfigMutationOptions = Apollo.BaseMutationOptions<
|
|
2044
|
+
ImportDeliveryConfigMutation,
|
|
2045
|
+
ImportDeliveryConfigMutationVariables
|
|
2046
|
+
>;
|
|
2047
|
+
export const ToggleResourceManagementDocument = gql`
|
|
2048
|
+
mutation ToggleResourceManagement($payload: MdToggleResourceManagementPayload) {
|
|
2049
|
+
toggleResourceManagement(payload: $payload)
|
|
2050
|
+
}
|
|
2051
|
+
`;
|
|
2052
|
+
export type ToggleResourceManagementMutationFn = Apollo.MutationFunction<
|
|
2053
|
+
ToggleResourceManagementMutation,
|
|
2054
|
+
ToggleResourceManagementMutationVariables
|
|
2055
|
+
>;
|
|
2056
|
+
|
|
2057
|
+
/**
|
|
2058
|
+
* __useToggleResourceManagementMutation__
|
|
2059
|
+
*
|
|
2060
|
+
* To run a mutation, you first call `useToggleResourceManagementMutation` within a React component and pass it any options that fit your needs.
|
|
2061
|
+
* When your component renders, `useToggleResourceManagementMutation` returns a tuple that includes:
|
|
2062
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2063
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2064
|
+
*
|
|
2065
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2066
|
+
*
|
|
2067
|
+
* @example
|
|
2068
|
+
* const [toggleResourceManagementMutation, { data, loading, error }] = useToggleResourceManagementMutation({
|
|
2069
|
+
* variables: {
|
|
2070
|
+
* payload: // value for 'payload'
|
|
2071
|
+
* },
|
|
2072
|
+
* });
|
|
2073
|
+
*/
|
|
2074
|
+
export function useToggleResourceManagementMutation(
|
|
2075
|
+
baseOptions?: Apollo.MutationHookOptions<ToggleResourceManagementMutation, ToggleResourceManagementMutationVariables>,
|
|
2076
|
+
) {
|
|
2077
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2078
|
+
return Apollo.useMutation<ToggleResourceManagementMutation, ToggleResourceManagementMutationVariables>(
|
|
2079
|
+
ToggleResourceManagementDocument,
|
|
2080
|
+
options,
|
|
2081
|
+
);
|
|
2082
|
+
}
|
|
2083
|
+
export type ToggleResourceManagementMutationHookResult = ReturnType<typeof useToggleResourceManagementMutation>;
|
|
2084
|
+
export type ToggleResourceManagementMutationResult = Apollo.MutationResult<ToggleResourceManagementMutation>;
|
|
2085
|
+
export type ToggleResourceManagementMutationOptions = Apollo.BaseMutationOptions<
|
|
2086
|
+
ToggleResourceManagementMutation,
|
|
2087
|
+
ToggleResourceManagementMutationVariables
|
|
2088
|
+
>;
|
|
2089
|
+
export const RestartConstraintEvaluationDocument = gql`
|
|
2090
|
+
mutation RestartConstraintEvaluation($payload: MdRestartConstraintEvaluationPayload!) {
|
|
2091
|
+
restartConstraintEvaluation(payload: $payload)
|
|
2092
|
+
}
|
|
2093
|
+
`;
|
|
2094
|
+
export type RestartConstraintEvaluationMutationFn = Apollo.MutationFunction<
|
|
2095
|
+
RestartConstraintEvaluationMutation,
|
|
2096
|
+
RestartConstraintEvaluationMutationVariables
|
|
2097
|
+
>;
|
|
2098
|
+
|
|
2099
|
+
/**
|
|
2100
|
+
* __useRestartConstraintEvaluationMutation__
|
|
2101
|
+
*
|
|
2102
|
+
* To run a mutation, you first call `useRestartConstraintEvaluationMutation` within a React component and pass it any options that fit your needs.
|
|
2103
|
+
* When your component renders, `useRestartConstraintEvaluationMutation` returns a tuple that includes:
|
|
2104
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2105
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2106
|
+
*
|
|
2107
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2108
|
+
*
|
|
2109
|
+
* @example
|
|
2110
|
+
* const [restartConstraintEvaluationMutation, { data, loading, error }] = useRestartConstraintEvaluationMutation({
|
|
2111
|
+
* variables: {
|
|
2112
|
+
* payload: // value for 'payload'
|
|
2113
|
+
* },
|
|
2114
|
+
* });
|
|
2115
|
+
*/
|
|
2116
|
+
export function useRestartConstraintEvaluationMutation(
|
|
2117
|
+
baseOptions?: Apollo.MutationHookOptions<
|
|
2118
|
+
RestartConstraintEvaluationMutation,
|
|
2119
|
+
RestartConstraintEvaluationMutationVariables
|
|
2120
|
+
>,
|
|
2121
|
+
) {
|
|
2122
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2123
|
+
return Apollo.useMutation<RestartConstraintEvaluationMutation, RestartConstraintEvaluationMutationVariables>(
|
|
2124
|
+
RestartConstraintEvaluationDocument,
|
|
2125
|
+
options,
|
|
2126
|
+
);
|
|
2127
|
+
}
|
|
2128
|
+
export type RestartConstraintEvaluationMutationHookResult = ReturnType<typeof useRestartConstraintEvaluationMutation>;
|
|
2129
|
+
export type RestartConstraintEvaluationMutationResult = Apollo.MutationResult<RestartConstraintEvaluationMutation>;
|
|
2130
|
+
export type RestartConstraintEvaluationMutationOptions = Apollo.BaseMutationOptions<
|
|
2131
|
+
RestartConstraintEvaluationMutation,
|
|
2132
|
+
RestartConstraintEvaluationMutationVariables
|
|
2133
|
+
>;
|