@prismatic-io/spectral 7.8.0-preview2 → 7.8.0-preview3
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.
|
@@ -102,13 +102,7 @@ interface TriggerBranchingResult extends TriggerBaseResult {
|
|
|
102
102
|
}
|
|
103
103
|
export declare type TriggerResult = TriggerBranchingResult | TriggerBaseResult | undefined;
|
|
104
104
|
export declare type TriggerPerformFunction = (context: ActionContext, payload: TriggerPayload, params: Record<string, unknown>) => Promise<TriggerResult>;
|
|
105
|
-
export
|
|
106
|
-
logger: ActionLogger;
|
|
107
|
-
customer: Customer;
|
|
108
|
-
instance: Instance;
|
|
109
|
-
user: User;
|
|
110
|
-
}
|
|
111
|
-
export declare type TriggerEventFunction = (context: TriggerEventFunctionContext, params: Record<string, unknown>) => Promise<void>;
|
|
105
|
+
export declare type TriggerEventFunction = (context: ActionContext, params: Record<string, unknown>) => Promise<void>;
|
|
112
106
|
export interface Trigger {
|
|
113
107
|
key: string;
|
|
114
108
|
display: DisplayDefinition & {
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
import { Inputs,
|
|
2
|
-
/** Context provided to the event function containing helpers and contextual data */
|
|
3
|
-
export interface TriggerEventFunctionContext {
|
|
4
|
-
logger: ActionLogger;
|
|
5
|
-
customer: Customer;
|
|
6
|
-
instance: Instance;
|
|
7
|
-
user: User;
|
|
8
|
-
}
|
|
1
|
+
import { Inputs, ActionContext, ActionInputParameters } from ".";
|
|
9
2
|
/** Definition of the function to execute when a Trigger Event occurs. */
|
|
10
|
-
export declare type TriggerEventFunction<TInputs extends Inputs> = (context:
|
|
3
|
+
export declare type TriggerEventFunction<TInputs extends Inputs> = (context: ActionContext, params: ActionInputParameters<TInputs>) => Promise<void>;
|