@workbuddy/piece-workbuddy-edge 1.0.5 → 1.0.7

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.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/src/lib/auth.js +2 -2
  3. package/src/lib/auth.js.map +1 -1
  4. package/src/lib/auth.ts +2 -2
  5. package/src/lib/triggers/bill.d.ts +240 -48
  6. package/src/lib/triggers/bill.d.ts.map +1 -1
  7. package/src/lib/triggers/bill.js +288 -24
  8. package/src/lib/triggers/bill.js.map +1 -1
  9. package/src/lib/triggers/bill.ts +288 -24
  10. package/src/lib/triggers/invoice.d.ts +240 -48
  11. package/src/lib/triggers/invoice.d.ts.map +1 -1
  12. package/src/lib/triggers/invoice.js +288 -24
  13. package/src/lib/triggers/invoice.js.map +1 -1
  14. package/src/lib/triggers/invoice.ts +288 -24
  15. package/src/lib/triggers/job.d.ts +640 -128
  16. package/src/lib/triggers/job.d.ts.map +1 -1
  17. package/src/lib/triggers/job.js +768 -64
  18. package/src/lib/triggers/job.js.map +1 -1
  19. package/src/lib/triggers/job.ts +768 -64
  20. package/src/lib/triggers/lead.d.ts +400 -80
  21. package/src/lib/triggers/lead.d.ts.map +1 -1
  22. package/src/lib/triggers/lead.js +480 -40
  23. package/src/lib/triggers/lead.js.map +1 -1
  24. package/src/lib/triggers/lead.ts +480 -40
  25. package/src/lib/triggers/opportunity.d.ts +320 -64
  26. package/src/lib/triggers/opportunity.d.ts.map +1 -1
  27. package/src/lib/triggers/opportunity.js +384 -32
  28. package/src/lib/triggers/opportunity.js.map +1 -1
  29. package/src/lib/triggers/opportunity.ts +384 -32
  30. package/src/lib/triggers/quote.d.ts +240 -48
  31. package/src/lib/triggers/quote.d.ts.map +1 -1
  32. package/src/lib/triggers/quote.js +288 -24
  33. package/src/lib/triggers/quote.js.map +1 -1
  34. package/src/lib/triggers/quote.ts +288 -24
  35. package/src/lib/triggers/stage.d.ts +480 -96
  36. package/src/lib/triggers/stage.d.ts.map +1 -1
  37. package/src/lib/triggers/stage.js +576 -48
  38. package/src/lib/triggers/stage.js.map +1 -1
  39. package/src/lib/triggers/stage.ts +576 -48
  40. package/src/lib/triggers/task.d.ts +80 -16
  41. package/src/lib/triggers/task.d.ts.map +1 -1
  42. package/src/lib/triggers/task.js +96 -8
  43. package/src/lib/triggers/task.js.map +1 -1
  44. package/src/lib/triggers/task.ts +96 -8
@@ -4,56 +4,184 @@ export declare const job_created_trigger: import("@activepieces/pieces-framework
4
4
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
5
5
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
6
6
  }>, {
7
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
8
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
9
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
10
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
11
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
12
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
13
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
14
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
7
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
8
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
9
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
10
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
11
+ }>>;
12
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
13
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
14
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
15
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
16
+ }>>;
17
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
18
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
19
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
20
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
21
+ }>>;
22
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
23
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
24
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
25
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
26
+ }>>;
27
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
28
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
29
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
30
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
31
+ }>>;
32
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
33
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
34
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
35
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
36
+ }>>;
37
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
38
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
39
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
40
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
41
+ }>>;
42
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
43
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
44
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
45
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
46
+ }>>;
15
47
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
16
48
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
17
49
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
18
50
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
19
51
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
20
52
  }>, {
21
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
22
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
23
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
24
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
25
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
26
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
27
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
28
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
53
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
54
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
55
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
56
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
57
+ }>>;
58
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
59
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
60
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
61
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
62
+ }>>;
63
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
64
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
65
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
66
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
67
+ }>>;
68
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
69
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
70
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
71
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
72
+ }>>;
73
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
74
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
75
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
76
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
77
+ }>>;
78
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
79
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
80
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
81
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
82
+ }>>;
83
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
84
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
85
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
86
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
87
+ }>>;
88
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
89
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
90
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
91
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
92
+ }>>;
29
93
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
30
94
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
31
95
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
32
96
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
33
97
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
34
98
  }>, {
35
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
36
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
37
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
38
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
39
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
40
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
41
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
42
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
99
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
100
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
101
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
102
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
103
+ }>>;
104
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
105
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
106
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
107
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
108
+ }>>;
109
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
110
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
111
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
112
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
113
+ }>>;
114
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
115
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
116
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
117
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
118
+ }>>;
119
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
120
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
121
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
122
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
123
+ }>>;
124
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
125
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
126
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
127
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
128
+ }>>;
129
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
130
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
131
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
132
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
133
+ }>>;
134
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
135
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
136
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
137
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
138
+ }>>;
43
139
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
44
140
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
45
141
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
46
142
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
47
143
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
48
144
  }>, {
49
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
50
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
51
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
52
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
53
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
54
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
55
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
56
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
145
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
146
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
147
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
148
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
149
+ }>>;
150
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
151
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
152
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
153
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
154
+ }>>;
155
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
156
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
157
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
158
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
159
+ }>>;
160
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
161
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
162
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
163
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
164
+ }>>;
165
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
166
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
167
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
168
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
169
+ }>>;
170
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
171
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
172
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
173
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
174
+ }>>;
175
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
176
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
177
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
178
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
179
+ }>>;
180
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
181
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
182
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
183
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
184
+ }>>;
57
185
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
58
186
  }>;
59
187
  export declare const job_updated_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
@@ -61,56 +189,184 @@ export declare const job_updated_trigger: import("@activepieces/pieces-framework
61
189
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
62
190
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
63
191
  }>, {
64
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
65
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
66
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
67
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
68
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
69
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
70
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
71
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
192
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
193
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
194
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
195
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
196
+ }>>;
197
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
198
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
199
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
200
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
201
+ }>>;
202
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
203
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
204
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
205
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
206
+ }>>;
207
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
208
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
209
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
210
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
211
+ }>>;
212
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
213
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
214
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
215
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
216
+ }>>;
217
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
218
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
219
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
220
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
221
+ }>>;
222
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
223
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
224
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
225
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
226
+ }>>;
227
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
228
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
229
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
230
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
231
+ }>>;
72
232
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
73
233
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
74
234
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
75
235
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
76
236
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
77
237
  }>, {
78
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
79
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
80
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
81
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
82
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
83
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
84
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
85
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
238
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
239
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
240
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
241
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
242
+ }>>;
243
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
244
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
245
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
246
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
247
+ }>>;
248
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
249
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
250
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
251
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
252
+ }>>;
253
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
254
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
255
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
256
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
257
+ }>>;
258
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
259
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
260
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
261
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
262
+ }>>;
263
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
264
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
265
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
266
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
267
+ }>>;
268
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
269
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
270
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
271
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
272
+ }>>;
273
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
274
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
275
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
276
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
277
+ }>>;
86
278
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
87
279
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
88
280
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
89
281
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
90
282
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
91
283
  }>, {
92
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
93
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
94
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
95
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
96
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
97
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
98
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
99
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
284
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
285
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
286
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
287
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
288
+ }>>;
289
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
290
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
291
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
292
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
293
+ }>>;
294
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
295
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
296
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
297
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
298
+ }>>;
299
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
300
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
301
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
302
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
303
+ }>>;
304
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
305
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
306
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
307
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
308
+ }>>;
309
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
310
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
311
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
312
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
313
+ }>>;
314
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
315
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
316
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
317
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
318
+ }>>;
319
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
320
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
321
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
322
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
323
+ }>>;
100
324
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
101
325
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
102
326
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
103
327
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
104
328
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
105
329
  }>, {
106
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
107
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
108
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
109
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
110
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
111
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
112
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
113
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
330
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
331
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
332
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
333
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
334
+ }>>;
335
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
336
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
337
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
338
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
339
+ }>>;
340
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
341
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
342
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
343
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
344
+ }>>;
345
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
346
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
347
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
348
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
349
+ }>>;
350
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
351
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
352
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
353
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
354
+ }>>;
355
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
356
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
357
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
358
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
359
+ }>>;
360
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
361
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
362
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
363
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
364
+ }>>;
365
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
366
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
367
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
368
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
369
+ }>>;
114
370
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
115
371
  }>;
116
372
  export declare const job_status_changed_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
@@ -118,56 +374,184 @@ export declare const job_status_changed_trigger: import("@activepieces/pieces-fr
118
374
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
119
375
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
120
376
  }>, {
121
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
122
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
123
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
124
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
125
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
126
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
127
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
128
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
377
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
378
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
379
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
380
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
381
+ }>>;
382
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
383
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
384
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
385
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
386
+ }>>;
387
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
388
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
389
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
390
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
391
+ }>>;
392
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
393
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
394
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
395
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
396
+ }>>;
397
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
398
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
399
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
400
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
401
+ }>>;
402
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
403
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
404
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
405
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
406
+ }>>;
407
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
408
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
409
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
410
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
411
+ }>>;
412
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
413
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
414
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
415
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
416
+ }>>;
129
417
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
130
418
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
131
419
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
132
420
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
133
421
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
134
422
  }>, {
135
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
136
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
137
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
138
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
139
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
140
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
141
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
142
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
423
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
424
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
425
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
426
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
427
+ }>>;
428
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
429
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
430
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
431
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
432
+ }>>;
433
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
434
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
435
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
436
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
437
+ }>>;
438
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
439
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
440
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
441
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
442
+ }>>;
443
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
444
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
445
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
446
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
447
+ }>>;
448
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
449
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
450
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
451
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
452
+ }>>;
453
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
454
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
455
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
456
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
457
+ }>>;
458
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
459
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
460
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
461
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
462
+ }>>;
143
463
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
144
464
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
145
465
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
146
466
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
147
467
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
148
468
  }>, {
149
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
150
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
151
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
152
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
153
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
154
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
155
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
156
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
469
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
470
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
471
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
472
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
473
+ }>>;
474
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
475
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
476
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
477
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
478
+ }>>;
479
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
480
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
481
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
482
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
483
+ }>>;
484
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
485
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
486
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
487
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
488
+ }>>;
489
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
490
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
491
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
492
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
493
+ }>>;
494
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
495
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
496
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
497
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
498
+ }>>;
499
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
500
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
501
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
502
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
503
+ }>>;
504
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
505
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
506
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
507
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
508
+ }>>;
157
509
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
158
510
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
159
511
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
160
512
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
161
513
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
162
514
  }>, {
163
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
164
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
165
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
166
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
167
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
168
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
169
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
170
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
515
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
516
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
517
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
518
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
519
+ }>>;
520
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
521
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
522
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
523
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
524
+ }>>;
525
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
526
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
527
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
528
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
529
+ }>>;
530
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
531
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
532
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
533
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
534
+ }>>;
535
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
536
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
537
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
538
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
539
+ }>>;
540
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
541
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
542
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
543
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
544
+ }>>;
545
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
546
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
547
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
548
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
549
+ }>>;
550
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
551
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
552
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
553
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
554
+ }>>;
171
555
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
172
556
  }>;
173
557
  export declare const job_deleted_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
@@ -175,56 +559,184 @@ export declare const job_deleted_trigger: import("@activepieces/pieces-framework
175
559
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
176
560
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
177
561
  }>, {
178
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
179
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
180
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
181
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
182
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
183
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
184
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
185
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
562
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
563
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
564
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
565
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
566
+ }>>;
567
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
568
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
569
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
570
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
571
+ }>>;
572
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
573
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
574
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
575
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
576
+ }>>;
577
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
578
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
579
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
580
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
581
+ }>>;
582
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
583
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
584
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
585
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
586
+ }>>;
587
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
588
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
589
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
590
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
591
+ }>>;
592
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
593
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
594
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
595
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
596
+ }>>;
597
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
598
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
599
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
600
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
601
+ }>>;
186
602
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
187
603
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
188
604
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
189
605
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
190
606
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
191
607
  }>, {
192
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
193
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
194
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
195
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
196
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
197
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
198
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
199
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
608
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
609
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
610
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
611
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
612
+ }>>;
613
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
614
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
615
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
616
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
617
+ }>>;
618
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
619
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
620
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
621
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
622
+ }>>;
623
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
624
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
625
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
626
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
627
+ }>>;
628
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
629
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
630
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
631
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
632
+ }>>;
633
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
634
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
635
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
636
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
637
+ }>>;
638
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
639
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
640
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
641
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
642
+ }>>;
643
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
644
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
645
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
646
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
647
+ }>>;
200
648
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
201
649
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
202
650
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
203
651
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
204
652
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
205
653
  }>, {
206
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
207
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
208
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
209
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
210
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
211
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
212
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
213
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
654
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
655
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
656
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
657
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
658
+ }>>;
659
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
660
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
661
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
662
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
663
+ }>>;
664
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
665
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
666
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
667
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
668
+ }>>;
669
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
670
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
671
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
672
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
673
+ }>>;
674
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
675
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
676
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
677
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
678
+ }>>;
679
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
680
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
681
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
682
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
683
+ }>>;
684
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
685
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
686
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
687
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
688
+ }>>;
689
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
690
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
691
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
692
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
693
+ }>>;
214
694
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
215
695
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
216
696
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
217
697
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
218
698
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
219
699
  }>, {
220
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
221
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
222
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
223
- site: import("@activepieces/pieces-framework").ArrayProperty<false>;
224
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
225
- priority: import("@activepieces/pieces-framework").ArrayProperty<false>;
226
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
227
- zone: import("@activepieces/pieces-framework").ArrayProperty<false>;
700
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
701
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
702
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
703
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
704
+ }>>;
705
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
706
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
707
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
708
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
709
+ }>>;
710
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
711
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
712
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
713
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
714
+ }>>;
715
+ site: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
716
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
717
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
718
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
719
+ }>>;
720
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
721
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
722
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
723
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
724
+ }>>;
725
+ priority: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
726
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
727
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
728
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
729
+ }>>;
730
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
731
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
732
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
733
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
734
+ }>>;
735
+ zone: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
736
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
737
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
738
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
739
+ }>>;
228
740
  status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
229
741
  }>;
230
742
  //# sourceMappingURL=job.d.ts.map