@spinnaker/core 0.29.1 → 2025.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,6 +67,7 @@ export interface IFeatures {
67
67
  functions?: boolean;
68
68
  kubernetesRawResources?: boolean;
69
69
  renderPipelineStageThreshold?: number;
70
+ deployManifestStageAdvancedConfiguration?: boolean;
70
71
  }
71
72
  export interface IDockerInsightSettings {
72
73
  enabled: boolean;
@@ -139,6 +140,7 @@ export interface ISpinnakerSettings {
139
140
  manifestBasePath: string;
140
141
  urls?: Partial<IManagedDeliveryURLs>;
141
142
  };
143
+ maxFetchHistoryOnEvaluateVariables?: number;
142
144
  maxPipelineAgeDays: number;
143
145
  newApplicationDefaults: INewApplicationDefaults;
144
146
  notifications: INotificationSettings;
@@ -9,7 +9,11 @@ export interface IMetricAlarmDimension {
9
9
  }
10
10
  interface IDataPoint {
11
11
  timestamp: number;
12
- average: number;
12
+ average?: number;
13
+ sum?: number;
14
+ minimum?: number;
15
+ maximum?: number;
16
+ sampleCount?: number;
13
17
  }
14
18
  export interface ICloudMetricStatistics {
15
19
  unit: string;
@@ -0,0 +1,2 @@
1
+ export const CORE_FORMS_MAPOBJECTEDITOR_MAPOBJECTEDITOR_COMPONENT: "spinnaker.core.forms.mapObjectEditor.component";
2
+ export const name: "spinnaker.core.forms.mapObjectEditor.component";