@odigos/ui-kit 0.0.280 → 0.0.281

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.
@@ -24,6 +24,7 @@ export interface CloudConnectorAuthMethod {
24
24
  }
25
25
  export interface CloudConnectorAuth {
26
26
  permissions: string[];
27
+ defaultMethod: string;
27
28
  methods: CloudConnectorAuthMethod[];
28
29
  }
29
30
  export interface CloudConnectorType {
@@ -45,14 +46,18 @@ export interface CloudConnectorFeature {
45
46
  export interface CloudConnectorSetupArtifact {
46
47
  id: string;
47
48
  section: string;
49
+ variant?: string;
50
+ variantLabel?: string;
48
51
  title: string;
49
52
  description: string;
53
+ steps?: string[];
50
54
  format: string;
51
55
  template: string;
52
56
  itemTemplate: string;
53
57
  itemSeparator: string;
54
58
  }
55
59
  export interface CloudConnectorSetup {
60
+ subtitle?: string;
56
61
  artifacts: CloudConnectorSetupArtifact[];
57
62
  }
58
63
  export interface CloudConnectorProvider {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odigos/ui-kit",
3
- "version": "0.0.280",
3
+ "version": "0.0.281",
4
4
  "author": "Odigos",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -131,7 +131,7 @@
131
131
  "eslint-plugin-react": "^7.37.5",
132
132
  "eslint-plugin-storybook": "10.5.4",
133
133
  "graphql": "^17.0.2",
134
- "postcss": "^8.5.23",
134
+ "postcss": "^8.5.25",
135
135
  "rollup": "^4.62.2",
136
136
  "rollup-plugin-filesize": "^10.0.0",
137
137
  "rollup-plugin-postcss": "^4.0.2",
@@ -1,5 +0,0 @@
1
- import { type FC } from 'react';
2
- export interface EnterArnSectionProps {
3
- step: number;
4
- }
5
- export declare const EnterArnSection: FC<EnterArnSectionProps>;