@prismatic-io/spectral 9.0.6 → 9.0.7

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.
@@ -15,23 +15,23 @@ interface BaseInput {
15
15
  default?: unknown;
16
16
  }
17
17
  export interface ComponentManifestAction {
18
- key: string;
18
+ key?: string;
19
19
  perform: (values: any) => Promise<unknown>;
20
20
  inputs: Record<string, BaseInput>;
21
21
  }
22
22
  export interface ComponentManifestTrigger {
23
- key: string;
23
+ key?: string;
24
24
  perform: (values: any) => Promise<unknown>;
25
25
  inputs: Record<string, BaseInput>;
26
26
  }
27
27
  export interface ComponentManifestDataSource {
28
- key: string;
28
+ key?: string;
29
29
  perform: (values: any) => Promise<unknown>;
30
30
  dataSourceType: DataSourceType;
31
31
  inputs: Record<string, BaseInput>;
32
32
  }
33
33
  export interface ComponentManifestConnection {
34
- key: string;
34
+ key?: string;
35
35
  perform: (values: any) => Promise<unknown>;
36
36
  onPremAvailable?: boolean;
37
37
  inputs: Record<string, BaseInput & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismatic-io/spectral",
3
- "version": "9.0.6",
3
+ "version": "9.0.7",
4
4
  "description": "Utility library for building Prismatic components",
5
5
  "keywords": ["prismatic"],
6
6
  "main": "dist/index.js",