@prismatic-io/spectral 9.0.0 → 9.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.
@@ -459,7 +459,7 @@ const codeNativeIntegrationComponent = ({ name, iconPath, description, flows = [
459
459
  perform: onTrigger,
460
460
  onInstanceDeploy: onInstanceDeploy,
461
461
  hasOnInstanceDeploy: !!onInstanceDeploy,
462
- onInstanceDelete: onInstanceDeploy,
462
+ onInstanceDelete: onInstanceDelete,
463
463
  hasOnInstanceDelete: !!onInstanceDelete,
464
464
  inputs: [],
465
465
  scheduleSupport: "valid",
@@ -67,9 +67,9 @@ export declare type Inputs = Record<string, InputFieldDefinition>;
67
67
  export declare type ConnectionInput = (StringInputField | DataInputField | TextInputField | PasswordInputField | BooleanInputField) & {
68
68
  shown?: boolean;
69
69
  };
70
- export declare type OnPremConnectionInput = ConnectionInput & {
70
+ export declare type OnPremConnectionInput = {
71
71
  onPremControlled: true;
72
- };
72
+ } & ConnectionInput;
73
73
  export declare type InputFieldDefinition = StringInputField | DataInputField | TextInputField | PasswordInputField | BooleanInputField | CodeInputField | ConditionalInputField | ConnectionInputField | ObjectSelectionInputField | ObjectFieldMapInputField | JSONFormInputField | DynamicObjectSelectionInputField | DynamicFieldSelectionInputField;
74
74
  export declare type InputCleanFunction<TValue, TResult = TValue> = (value: TValue) => TResult;
75
75
  interface BaseInputField {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismatic-io/spectral",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "description": "Utility library for building Prismatic components",
5
5
  "keywords": [
6
6
  "prismatic"