@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,195 +4,515 @@ export declare const lead_created_trigger: import("@activepieces/pieces-framewor
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>;
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
+ }>>;
10
22
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
11
23
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
12
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
13
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
24
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
25
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
26
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
27
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
28
+ }>>;
29
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
30
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
31
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
32
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
33
+ }>>;
14
34
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
15
35
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
16
36
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
17
37
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
18
38
  }>, {
19
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
20
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
21
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
39
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
40
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
41
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
42
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
43
+ }>>;
44
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
45
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
46
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
47
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
48
+ }>>;
49
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
50
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
51
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
52
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
53
+ }>>;
22
54
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
23
55
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
24
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
25
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
56
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
57
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
58
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
59
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
60
+ }>>;
61
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
62
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
63
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
64
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
65
+ }>>;
26
66
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
27
67
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
28
68
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
29
69
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
30
70
  }>, {
31
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
32
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
33
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
71
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
72
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
73
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
74
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
75
+ }>>;
76
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
77
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
78
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
79
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
80
+ }>>;
81
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
82
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
83
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
84
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
85
+ }>>;
34
86
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
35
87
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
36
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
37
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
88
+ owner: 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
+ }>>;
93
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
94
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
95
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
96
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
97
+ }>>;
38
98
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
39
99
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
40
100
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
41
101
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
42
102
  }>, {
43
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
44
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
45
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
103
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
104
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
105
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
106
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
107
+ }>>;
108
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
109
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
110
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
111
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
112
+ }>>;
113
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
114
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
115
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
116
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
117
+ }>>;
46
118
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
47
119
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
48
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
49
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
120
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
121
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
122
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
123
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
124
+ }>>;
125
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
126
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
127
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
128
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
129
+ }>>;
50
130
  }>;
51
131
  export declare const lead_updated_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
52
132
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
53
133
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
54
134
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
55
135
  }>, {
56
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
57
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
58
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
136
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
137
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
138
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
139
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
140
+ }>>;
141
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
142
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
143
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
144
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
145
+ }>>;
146
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
147
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
148
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
149
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
150
+ }>>;
59
151
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
60
152
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
61
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
62
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
153
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
154
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
155
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
156
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
157
+ }>>;
158
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
159
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
160
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
161
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
162
+ }>>;
63
163
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
64
164
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
65
165
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
66
166
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
67
167
  }>, {
68
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
69
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
70
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
168
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
169
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
170
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
171
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
172
+ }>>;
173
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
174
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
175
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
176
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
177
+ }>>;
178
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
179
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
180
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
181
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
182
+ }>>;
71
183
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
72
184
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
73
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
74
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
185
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
186
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
187
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
188
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
189
+ }>>;
190
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
191
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
192
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
193
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
194
+ }>>;
75
195
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
76
196
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
77
197
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
78
198
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
79
199
  }>, {
80
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
81
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
82
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
200
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
201
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
202
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
203
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
204
+ }>>;
205
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
206
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
207
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
208
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
209
+ }>>;
210
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
211
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
212
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
213
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
214
+ }>>;
83
215
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
84
216
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
85
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
86
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
217
+ owner: 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
+ type: 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
+ }>>;
87
227
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
88
228
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
89
229
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
90
230
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
91
231
  }>, {
92
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
93
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
94
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
232
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
233
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
234
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
235
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
236
+ }>>;
237
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
238
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
239
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
240
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
241
+ }>>;
242
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
243
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
244
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
245
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
246
+ }>>;
95
247
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
96
248
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
97
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
98
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
249
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
250
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
251
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
252
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
253
+ }>>;
254
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
255
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
256
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
257
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
258
+ }>>;
99
259
  }>;
100
260
  export declare const lead_status_changed_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
101
261
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
102
262
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
103
263
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
104
264
  }>, {
105
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
106
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
107
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
265
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
266
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
267
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
268
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
269
+ }>>;
270
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
271
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
272
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
273
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
274
+ }>>;
275
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
276
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
277
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
278
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
279
+ }>>;
108
280
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
109
281
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
110
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
111
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
282
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
283
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
284
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
285
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
286
+ }>>;
287
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
288
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
289
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
290
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
291
+ }>>;
112
292
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
113
293
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
114
294
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
115
295
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
116
296
  }>, {
117
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
118
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
119
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
297
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
298
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
299
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
300
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
301
+ }>>;
302
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
303
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
304
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
305
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
306
+ }>>;
307
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
308
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
309
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
310
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
311
+ }>>;
120
312
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
121
313
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
122
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
123
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
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
+ type: 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
+ }>>;
124
324
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
125
325
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
126
326
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
127
327
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
128
328
  }>, {
129
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
130
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
131
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
329
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
330
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
331
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
332
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
333
+ }>>;
334
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
335
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
336
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
337
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
338
+ }>>;
339
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
340
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
341
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
342
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
343
+ }>>;
132
344
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
133
345
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
134
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
135
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
346
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
347
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
348
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
349
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
350
+ }>>;
351
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
352
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
353
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
354
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
355
+ }>>;
136
356
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
137
357
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
138
358
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
139
359
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
140
360
  }>, {
141
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
142
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
143
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
361
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
362
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
363
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
364
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
365
+ }>>;
366
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
367
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
368
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
369
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
370
+ }>>;
371
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
372
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
373
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
374
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
375
+ }>>;
144
376
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
145
377
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
146
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
147
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
378
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
379
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
380
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
381
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
382
+ }>>;
383
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
384
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
385
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
386
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
387
+ }>>;
148
388
  }>;
149
389
  export declare const lead_deleted_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
150
390
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
151
391
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
152
392
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
153
393
  }>, {
154
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
155
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
156
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
394
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
395
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
396
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
397
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
398
+ }>>;
399
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
400
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
401
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
402
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
403
+ }>>;
404
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
405
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
406
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
407
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
408
+ }>>;
157
409
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
158
410
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
159
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
160
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
411
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
412
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
413
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
414
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
415
+ }>>;
416
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
417
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
418
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
419
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
420
+ }>>;
161
421
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
162
422
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
163
423
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
164
424
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
165
425
  }>, {
166
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
167
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
168
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
426
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
427
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
428
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
429
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
430
+ }>>;
431
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
432
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
433
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
434
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
435
+ }>>;
436
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
437
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
438
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
439
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
440
+ }>>;
169
441
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
170
442
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
171
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
172
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
443
+ owner: 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
+ type: 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
+ }>>;
173
453
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
174
454
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
175
455
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
176
456
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
177
457
  }>, {
178
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
179
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
180
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
458
+ customer: 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
+ }>>;
463
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
464
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
465
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
466
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
467
+ }>>;
468
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
469
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
470
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
471
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
472
+ }>>;
181
473
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
182
474
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
183
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
184
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
475
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
476
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
477
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
478
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
479
+ }>>;
480
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
481
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
482
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
483
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
484
+ }>>;
185
485
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
186
486
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
187
487
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
188
488
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
189
489
  }>, {
190
- customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
191
- billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
192
- tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
490
+ customer: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
491
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
492
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
493
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
494
+ }>>;
495
+ billingCompany: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
496
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
497
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
498
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
499
+ }>>;
500
+ tag: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
501
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
502
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
503
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
504
+ }>>;
193
505
  leadStage: import("@activepieces/pieces-framework").ArrayProperty<false>;
194
506
  leadSource: import("@activepieces/pieces-framework").ArrayProperty<false>;
195
- owner: import("@activepieces/pieces-framework").ArrayProperty<false>;
196
- type: import("@activepieces/pieces-framework").ArrayProperty<false>;
507
+ owner: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
508
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
509
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
510
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
511
+ }>>;
512
+ type: import("@activepieces/pieces-framework").MultiSelectDropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
513
+ baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
514
+ clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
515
+ clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
516
+ }>>;
197
517
  }>;
198
518
  //# sourceMappingURL=lead.d.ts.map