@spinnaker/cloudfoundry 2026.0.1 → 2026.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.
@@ -2,7 +2,7 @@
2
2
  import type { FormikErrors } from 'formik';
3
3
  import type { IStage, IStageConfigProps } from '@spinnaker/core';
4
4
  export interface ServiceBindingRequests {
5
- serviceInstanceName: String;
5
+ serviceInstanceName: string;
6
6
  }
7
7
  export declare function CloudFoundryCreateServiceBindingsConfig({ application, pipeline, stage, updateStage, }: IStageConfigProps): JSX.Element;
8
8
  export declare function validateCloudFoundryCreateServiceBindingsStage(stage: IStage): FormikErrors<IStage>;
@@ -2,7 +2,7 @@
2
2
  import type { FormikErrors } from 'formik';
3
3
  import type { IStage, IStageConfigProps } from '@spinnaker/core';
4
4
  interface ServiceUnbindingRequests {
5
- serviceInstanceName: String;
5
+ serviceInstanceName: string;
6
6
  }
7
7
  export declare function CloudFoundryDeleteServiceBindingsConfig({ application, pipeline, stage, updateStage, }: IStageConfigProps): JSX.Element;
8
8
  export declare function validateCloudFoundryDeleteServiceBindingsStage(stage: IStage): FormikErrors<IStage>;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "https://github.com/spinnaker/spinnaker.git"
6
6
  },
7
7
  "license": "Apache-2.0",
8
- "version": "2026.0.1",
8
+ "version": "2026.1.0",
9
9
  "module": "dist/index.js",
10
10
  "typings": "dist/index.d.ts",
11
11
  "publishConfig": {
@@ -29,7 +29,7 @@
29
29
  "enzyme": "3.11.0",
30
30
  "formik": "1.5.1",
31
31
  "js-yaml": "3.13.1",
32
- "lodash": "4.17.21",
32
+ "lodash": "4.18.1",
33
33
  "ngimport": "0.6.1",
34
34
  "react": "16.14.0",
35
35
  "react-bootstrap": "0.32.1",
@@ -37,7 +37,7 @@
37
37
  "rxjs": "6.6.7"
38
38
  },
39
39
  "devDependencies": {
40
- "@rollup/plugin-alias": "^3.1.2",
40
+ "@rollup/plugin-alias": "^6.0.0",
41
41
  "@spinnaker/eslint-plugin": "^3.0.2",
42
42
  "@spinnaker/mocks": "1.0.7",
43
43
  "@spinnaker/scripts": "^0.4.0",
@@ -52,5 +52,5 @@
52
52
  "shx": "0.3.3",
53
53
  "typescript": "5.0.4"
54
54
  },
55
- "gitHead": "230864a7fc8b5dfb38edb1164c7719671f7b4fa3"
55
+ "gitHead": "b43289872672de89234911de45d1cba0dd18373f"
56
56
  }
@@ -8,7 +8,7 @@ import { FormikStageConfig, FormValidator } from '@spinnaker/core';
8
8
  import { CloudFoundryCreateServiceBindingsStageConfigForm } from './CloudFoundryCreateServiceBindingsStageConfigForm';
9
9
 
10
10
  export interface ServiceBindingRequests {
11
- serviceInstanceName: String;
11
+ serviceInstanceName: string;
12
12
  }
13
13
 
14
14
  export function CloudFoundryCreateServiceBindingsConfig({
@@ -8,7 +8,7 @@ import { FormikStageConfig, FormValidator } from '@spinnaker/core';
8
8
  import { CloudFoundryDeleteServiceBindingsStageConfigForm } from './CloudFoundryDeleteServiceBindingsStageConfigForm';
9
9
 
10
10
  interface ServiceUnbindingRequests {
11
- serviceInstanceName: String;
11
+ serviceInstanceName: string;
12
12
  }
13
13
 
14
14
  export function CloudFoundryDeleteServiceBindingsConfig({