@ericsanchezok/synergy-sdk 1.2.31 → 1.2.32
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.
- package/dist/gen/types.gen.d.ts +0 -42
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -59,24 +59,6 @@ export type AgendaTriggerDelay = {
|
|
|
59
59
|
export type AgendaTriggerWatch = {
|
|
60
60
|
type: "watch";
|
|
61
61
|
watch: {
|
|
62
|
-
kind: "poll";
|
|
63
|
-
/**
|
|
64
|
-
* Shell command to execute periodically
|
|
65
|
-
*/
|
|
66
|
-
command: string;
|
|
67
|
-
/**
|
|
68
|
-
* Poll interval, e.g. '5m'. Default: '1m'
|
|
69
|
-
*/
|
|
70
|
-
interval?: string;
|
|
71
|
-
/**
|
|
72
|
-
* 'change': fire when output differs from previous; 'match': fire when output matches pattern
|
|
73
|
-
*/
|
|
74
|
-
trigger?: "change" | "match";
|
|
75
|
-
/**
|
|
76
|
-
* Regex pattern, required when trigger is 'match'
|
|
77
|
-
*/
|
|
78
|
-
match?: string;
|
|
79
|
-
} | {
|
|
80
62
|
kind: "file";
|
|
81
63
|
/**
|
|
82
64
|
* File glob pattern to watch for changes, e.g. 'src***.ts'
|
|
@@ -90,30 +72,6 @@ export type AgendaTriggerWatch = {
|
|
|
90
72
|
* Debounce window before firing, e.g. '500ms', '2s'. Default: '500ms'
|
|
91
73
|
*/
|
|
92
74
|
debounce?: string;
|
|
93
|
-
} | {
|
|
94
|
-
kind: "tool";
|
|
95
|
-
/**
|
|
96
|
-
* Synergy tool name to call, e.g. 'inspire_jobs'
|
|
97
|
-
*/
|
|
98
|
-
tool: string;
|
|
99
|
-
/**
|
|
100
|
-
* Arguments to pass to the tool
|
|
101
|
-
*/
|
|
102
|
-
args?: {
|
|
103
|
-
[key: string]: unknown;
|
|
104
|
-
};
|
|
105
|
-
/**
|
|
106
|
-
* Poll interval, e.g. '5m'. Default: '5m'
|
|
107
|
-
*/
|
|
108
|
-
interval?: string;
|
|
109
|
-
/**
|
|
110
|
-
* 'change': fire when tool output differs; 'match': fire when output matches pattern
|
|
111
|
-
*/
|
|
112
|
-
trigger?: "change" | "match";
|
|
113
|
-
/**
|
|
114
|
-
* Regex pattern, required when trigger is 'match'
|
|
115
|
-
*/
|
|
116
|
-
match?: string;
|
|
117
75
|
};
|
|
118
76
|
};
|
|
119
77
|
export type AgendaTriggerWebhook = {
|