@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:
|
|
462
|
+
onInstanceDelete: onInstanceDelete,
|
|
463
463
|
hasOnInstanceDelete: !!onInstanceDelete,
|
|
464
464
|
inputs: [],
|
|
465
465
|
scheduleSupport: "valid",
|
package/dist/types/Inputs.d.ts
CHANGED
|
@@ -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 =
|
|
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 {
|