@abyss-project/console 1.0.35 → 1.0.36

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.
@@ -30,7 +30,7 @@ export interface ICallWebhookActionConfig {
30
30
  url: string;
31
31
  method: HttpMethod;
32
32
  headers?: Record<string, string>;
33
- body?: Record<string, any>;
33
+ body?: Record<string, any> | string;
34
34
  timeout?: number;
35
35
  retryCount?: number;
36
36
  retryDelay?: number;
@@ -147,7 +147,6 @@ export interface ICreateWorkflowTriggerParams {
147
147
  export interface ICreateWorkflowTriggerBody {
148
148
  type: WorkflowTriggerType;
149
149
  name: string;
150
- variableName: string;
151
150
  description?: string | null;
152
151
  config?: Record<string, unknown>;
153
152
  filters?: ITriggerFilter[];
@@ -169,7 +168,6 @@ export interface IUpdateWorkflowTriggerParams {
169
168
  export interface IUpdateWorkflowTriggerBody {
170
169
  type?: WorkflowTriggerType;
171
170
  name?: string;
172
- variableName?: string;
173
171
  description?: string | null;
174
172
  config?: Record<string, unknown>;
175
173
  filters?: ITriggerFilter[];
@@ -30,7 +30,6 @@ export interface IWorkflowTrigger {
30
30
  workflowId: string;
31
31
  type: WorkflowTriggerType;
32
32
  name: string;
33
- variableName: string;
34
33
  description: string | null;
35
34
  config: TriggerConfig;
36
35
  filters: ITriggerFilter[];
@@ -18,7 +18,6 @@ export interface TriggerInfo {
18
18
  id: string;
19
19
  name: string;
20
20
  type: WorkflowTriggerType;
21
- variableName: string;
22
21
  isActive: boolean;
23
22
  }
24
23
  export declare const OPERATOR_PRECEDENCE: Record<string, number>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abyss-project/console",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "Core package to interact with AbyssConsole",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",