@workbuddy/piece-workbuddy-edge 1.0.0 → 1.0.1

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 (81) hide show
  1. package/package.json +2 -2
  2. package/src/lib/actions/jobs.d.ts +2 -2
  3. package/src/lib/actions/jobs.d.ts.map +1 -1
  4. package/src/lib/actions/jobs.js +24 -4
  5. package/src/lib/actions/jobs.js.map +1 -1
  6. package/src/lib/actions/jobs.ts +24 -4
  7. package/src/lib/triggers/activity.d.ts +24 -12
  8. package/src/lib/triggers/activity.d.ts.map +1 -1
  9. package/src/lib/triggers/activity.js +45 -21
  10. package/src/lib/triggers/activity.js.map +1 -1
  11. package/src/lib/triggers/activity.ts +39 -24
  12. package/src/lib/triggers/bill.d.ts +64 -16
  13. package/src/lib/triggers/bill.d.ts.map +1 -1
  14. package/src/lib/triggers/bill.js +152 -28
  15. package/src/lib/triggers/bill.js.map +1 -1
  16. package/src/lib/triggers/bill.ts +136 -32
  17. package/src/lib/triggers/invoice.d.ts +64 -16
  18. package/src/lib/triggers/invoice.d.ts.map +1 -1
  19. package/src/lib/triggers/invoice.js +152 -28
  20. package/src/lib/triggers/invoice.js.map +1 -1
  21. package/src/lib/triggers/invoice.ts +136 -32
  22. package/src/lib/triggers/job.d.ts +144 -16
  23. package/src/lib/triggers/job.d.ts.map +1 -1
  24. package/src/lib/triggers/job.js +292 -28
  25. package/src/lib/triggers/job.js.map +1 -1
  26. package/src/lib/triggers/job.ts +256 -32
  27. package/src/lib/triggers/lead.d.ts +112 -16
  28. package/src/lib/triggers/lead.d.ts.map +1 -1
  29. package/src/lib/triggers/lead.js +200 -28
  30. package/src/lib/triggers/lead.js.map +1 -1
  31. package/src/lib/triggers/lead.ts +172 -32
  32. package/src/lib/triggers/opportunity.d.ts +80 -16
  33. package/src/lib/triggers/opportunity.d.ts.map +1 -1
  34. package/src/lib/triggers/opportunity.js +144 -28
  35. package/src/lib/triggers/opportunity.js.map +1 -1
  36. package/src/lib/triggers/opportunity.ts +124 -32
  37. package/src/lib/triggers/quote.d.ts +64 -16
  38. package/src/lib/triggers/quote.d.ts.map +1 -1
  39. package/src/lib/triggers/quote.js +152 -28
  40. package/src/lib/triggers/quote.js.map +1 -1
  41. package/src/lib/triggers/quote.ts +136 -32
  42. package/src/lib/triggers/stage.d.ts +112 -16
  43. package/src/lib/triggers/stage.d.ts.map +1 -1
  44. package/src/lib/triggers/stage.js +236 -28
  45. package/src/lib/triggers/stage.js.map +1 -1
  46. package/src/lib/triggers/stage.ts +212 -32
  47. package/src/lib/triggers/task.d.ts +16 -16
  48. package/src/lib/triggers/task.d.ts.map +1 -1
  49. package/src/lib/triggers/task.js +32 -28
  50. package/src/lib/triggers/task.js.map +1 -1
  51. package/src/lib/triggers/task.ts +28 -32
  52. package/src/lib/actions/mcp-context.d.ts +0 -16
  53. package/src/lib/actions/mcp-context.d.ts.map +0 -1
  54. package/src/lib/actions/mcp-context.js +0 -82
  55. package/src/lib/actions/mcp-context.js.map +0 -1
  56. package/src/lib/actions/mcp-context.ts +0 -86
  57. package/src/lib/actions/webhooks.d.ts +0 -48
  58. package/src/lib/actions/webhooks.d.ts.map +0 -1
  59. package/src/lib/actions/webhooks.js +0 -292
  60. package/src/lib/actions/webhooks.js.map +0 -1
  61. package/src/lib/actions/webhooks.ts +0 -318
  62. package/src/lib/triggers/allocation.d.ts +0 -53
  63. package/src/lib/triggers/allocation.d.ts.map +0 -1
  64. package/src/lib/triggers/allocation.js +0 -181
  65. package/src/lib/triggers/allocation.js.map +0 -1
  66. package/src/lib/triggers/allocation.ts +0 -198
  67. package/src/lib/triggers/form.d.ts +0 -19
  68. package/src/lib/triggers/form.d.ts.map +0 -1
  69. package/src/lib/triggers/form.js +0 -65
  70. package/src/lib/triggers/form.js.map +0 -1
  71. package/src/lib/triggers/form.ts +0 -68
  72. package/src/lib/triggers/item.d.ts +0 -53
  73. package/src/lib/triggers/item.d.ts.map +0 -1
  74. package/src/lib/triggers/item.js +0 -181
  75. package/src/lib/triggers/item.js.map +0 -1
  76. package/src/lib/triggers/item.ts +0 -198
  77. package/src/lib/triggers/site.d.ts +0 -19
  78. package/src/lib/triggers/site.d.ts.map +0 -1
  79. package/src/lib/triggers/site.js +0 -65
  80. package/src/lib/triggers/site.js.map +0 -1
  81. package/src/lib/triggers/site.ts +0 -68
@@ -8,12 +8,30 @@ export const opportunity_created_trigger = createTrigger({
8
8
  displayName: 'Opportunity Created',
9
9
  description: 'Triggered when a new opportunity is created',
10
10
  props: {
11
- filters: Property.Json({
12
- displayName: 'Filters',
13
- description:
14
- 'Optional webhook filters object. Discover allowed fields with GET /webhooks/entities/:entity/filters.',
11
+ customer: Property.Array({
12
+ displayName: 'Filter by Customer',
13
+ description: 'Only trigger for specific customer IDs',
14
+ required: false,
15
+ }),
16
+ billingCompany: Property.Array({
17
+ displayName: 'Filter by Billing Company',
18
+ description: 'Only trigger for specific billing company IDs',
19
+ required: false,
20
+ }),
21
+ tag: Property.Array({
22
+ displayName: 'Filter by Tags',
23
+ description: 'Only trigger for specific tags IDs',
24
+ required: false,
25
+ }),
26
+ opportunityStage: Property.Array({
27
+ displayName: 'Filter by Stage',
28
+ description: 'Only trigger for specific stage IDs',
29
+ required: false,
30
+ }),
31
+ owner: Property.Array({
32
+ displayName: 'Filter by Owner',
33
+ description: 'Only trigger for specific owner IDs',
15
34
  required: false,
16
- defaultValue: {},
17
35
  }),
18
36
  },
19
37
  sampleData: {
@@ -33,6 +51,13 @@ export const opportunity_created_trigger = createTrigger({
33
51
  const token = await getAccessToken(context.auth);
34
52
  const baseUrl = context.auth.props.baseUrl;
35
53
 
54
+ // Assemble filters from individual props
55
+ const filters: Record<string, unknown> = {};
56
+ if (context.propsValue.customer?.length) filters.customer = context.propsValue.customer;
57
+ if (context.propsValue.billingCompany?.length) filters.billingCompany = context.propsValue.billingCompany;
58
+ if (context.propsValue.tag?.length) filters.tag = context.propsValue.tag;
59
+ if (context.propsValue.opportunityStage?.length) filters.opportunityStage = context.propsValue.opportunityStage;
60
+ if (context.propsValue.owner?.length) filters.owner = context.propsValue.owner;
36
61
  // Register webhook with WorkBuddy v2 API (server handles upsert - reactivates if exists)
37
62
  const response = await httpClient.sendRequest<{ data: { id: string } }>({
38
63
  method: HttpMethod.POST,
@@ -47,9 +72,7 @@ export const opportunity_created_trigger = createTrigger({
47
72
  url: context.webhookUrl,
48
73
  entity: 'opportunity',
49
74
  events: ['Opportunity Created'],
50
- ...(context.propsValue.filters && Object.keys(context.propsValue.filters).length > 0
51
- ? { filters: context.propsValue.filters }
52
- : {}),
75
+ ...(Object.keys(filters).length > 0 ? { filters } : {}),
53
76
  workflow: {
54
77
  platform: 'activepieces',
55
78
  integrationId: context.webhookUrl,
@@ -94,12 +117,30 @@ export const opportunity_updated_trigger = createTrigger({
94
117
  displayName: 'Opportunity Updated',
95
118
  description: 'Triggered when an opportunity is updated',
96
119
  props: {
97
- filters: Property.Json({
98
- displayName: 'Filters',
99
- description:
100
- 'Optional webhook filters object. Discover allowed fields with GET /webhooks/entities/:entity/filters.',
120
+ customer: Property.Array({
121
+ displayName: 'Filter by Customer',
122
+ description: 'Only trigger for specific customer IDs',
123
+ required: false,
124
+ }),
125
+ billingCompany: Property.Array({
126
+ displayName: 'Filter by Billing Company',
127
+ description: 'Only trigger for specific billing company IDs',
128
+ required: false,
129
+ }),
130
+ tag: Property.Array({
131
+ displayName: 'Filter by Tags',
132
+ description: 'Only trigger for specific tags IDs',
133
+ required: false,
134
+ }),
135
+ opportunityStage: Property.Array({
136
+ displayName: 'Filter by Stage',
137
+ description: 'Only trigger for specific stage IDs',
138
+ required: false,
139
+ }),
140
+ owner: Property.Array({
141
+ displayName: 'Filter by Owner',
142
+ description: 'Only trigger for specific owner IDs',
101
143
  required: false,
102
- defaultValue: {},
103
144
  }),
104
145
  },
105
146
  sampleData: {
@@ -119,6 +160,13 @@ export const opportunity_updated_trigger = createTrigger({
119
160
  const token = await getAccessToken(context.auth);
120
161
  const baseUrl = context.auth.props.baseUrl;
121
162
 
163
+ // Assemble filters from individual props
164
+ const filters: Record<string, unknown> = {};
165
+ if (context.propsValue.customer?.length) filters.customer = context.propsValue.customer;
166
+ if (context.propsValue.billingCompany?.length) filters.billingCompany = context.propsValue.billingCompany;
167
+ if (context.propsValue.tag?.length) filters.tag = context.propsValue.tag;
168
+ if (context.propsValue.opportunityStage?.length) filters.opportunityStage = context.propsValue.opportunityStage;
169
+ if (context.propsValue.owner?.length) filters.owner = context.propsValue.owner;
122
170
  // Register webhook with WorkBuddy v2 API (server handles upsert - reactivates if exists)
123
171
  const response = await httpClient.sendRequest<{ data: { id: string } }>({
124
172
  method: HttpMethod.POST,
@@ -133,9 +181,7 @@ export const opportunity_updated_trigger = createTrigger({
133
181
  url: context.webhookUrl,
134
182
  entity: 'opportunity',
135
183
  events: ['Opportunity Updated'],
136
- ...(context.propsValue.filters && Object.keys(context.propsValue.filters).length > 0
137
- ? { filters: context.propsValue.filters }
138
- : {}),
184
+ ...(Object.keys(filters).length > 0 ? { filters } : {}),
139
185
  workflow: {
140
186
  platform: 'activepieces',
141
187
  integrationId: context.webhookUrl,
@@ -180,12 +226,30 @@ export const opportunity_status_changed_trigger = createTrigger({
180
226
  displayName: 'Opportunity Status Changed',
181
227
  description: 'Triggered when an opportunity status changes',
182
228
  props: {
183
- filters: Property.Json({
184
- displayName: 'Filters',
185
- description:
186
- 'Optional webhook filters object. Discover allowed fields with GET /webhooks/entities/:entity/filters.',
229
+ customer: Property.Array({
230
+ displayName: 'Filter by Customer',
231
+ description: 'Only trigger for specific customer IDs',
232
+ required: false,
233
+ }),
234
+ billingCompany: Property.Array({
235
+ displayName: 'Filter by Billing Company',
236
+ description: 'Only trigger for specific billing company IDs',
237
+ required: false,
238
+ }),
239
+ tag: Property.Array({
240
+ displayName: 'Filter by Tags',
241
+ description: 'Only trigger for specific tags IDs',
242
+ required: false,
243
+ }),
244
+ opportunityStage: Property.Array({
245
+ displayName: 'Filter by Stage',
246
+ description: 'Only trigger for specific stage IDs',
247
+ required: false,
248
+ }),
249
+ owner: Property.Array({
250
+ displayName: 'Filter by Owner',
251
+ description: 'Only trigger for specific owner IDs',
187
252
  required: false,
188
- defaultValue: {},
189
253
  }),
190
254
  },
191
255
  sampleData: {
@@ -205,6 +269,13 @@ export const opportunity_status_changed_trigger = createTrigger({
205
269
  const token = await getAccessToken(context.auth);
206
270
  const baseUrl = context.auth.props.baseUrl;
207
271
 
272
+ // Assemble filters from individual props
273
+ const filters: Record<string, unknown> = {};
274
+ if (context.propsValue.customer?.length) filters.customer = context.propsValue.customer;
275
+ if (context.propsValue.billingCompany?.length) filters.billingCompany = context.propsValue.billingCompany;
276
+ if (context.propsValue.tag?.length) filters.tag = context.propsValue.tag;
277
+ if (context.propsValue.opportunityStage?.length) filters.opportunityStage = context.propsValue.opportunityStage;
278
+ if (context.propsValue.owner?.length) filters.owner = context.propsValue.owner;
208
279
  // Register webhook with WorkBuddy v2 API (server handles upsert - reactivates if exists)
209
280
  const response = await httpClient.sendRequest<{ data: { id: string } }>({
210
281
  method: HttpMethod.POST,
@@ -219,9 +290,7 @@ export const opportunity_status_changed_trigger = createTrigger({
219
290
  url: context.webhookUrl,
220
291
  entity: 'opportunity',
221
292
  events: ['Opportunity Status Changed'],
222
- ...(context.propsValue.filters && Object.keys(context.propsValue.filters).length > 0
223
- ? { filters: context.propsValue.filters }
224
- : {}),
293
+ ...(Object.keys(filters).length > 0 ? { filters } : {}),
225
294
  workflow: {
226
295
  platform: 'activepieces',
227
296
  integrationId: context.webhookUrl,
@@ -266,12 +335,30 @@ export const opportunity_deleted_trigger = createTrigger({
266
335
  displayName: 'Opportunity Deleted',
267
336
  description: 'Triggered when an opportunity is deleted',
268
337
  props: {
269
- filters: Property.Json({
270
- displayName: 'Filters',
271
- description:
272
- 'Optional webhook filters object. Discover allowed fields with GET /webhooks/entities/:entity/filters.',
338
+ customer: Property.Array({
339
+ displayName: 'Filter by Customer',
340
+ description: 'Only trigger for specific customer IDs',
341
+ required: false,
342
+ }),
343
+ billingCompany: Property.Array({
344
+ displayName: 'Filter by Billing Company',
345
+ description: 'Only trigger for specific billing company IDs',
346
+ required: false,
347
+ }),
348
+ tag: Property.Array({
349
+ displayName: 'Filter by Tags',
350
+ description: 'Only trigger for specific tags IDs',
351
+ required: false,
352
+ }),
353
+ opportunityStage: Property.Array({
354
+ displayName: 'Filter by Stage',
355
+ description: 'Only trigger for specific stage IDs',
356
+ required: false,
357
+ }),
358
+ owner: Property.Array({
359
+ displayName: 'Filter by Owner',
360
+ description: 'Only trigger for specific owner IDs',
273
361
  required: false,
274
- defaultValue: {},
275
362
  }),
276
363
  },
277
364
  sampleData: {
@@ -291,6 +378,13 @@ export const opportunity_deleted_trigger = createTrigger({
291
378
  const token = await getAccessToken(context.auth);
292
379
  const baseUrl = context.auth.props.baseUrl;
293
380
 
381
+ // Assemble filters from individual props
382
+ const filters: Record<string, unknown> = {};
383
+ if (context.propsValue.customer?.length) filters.customer = context.propsValue.customer;
384
+ if (context.propsValue.billingCompany?.length) filters.billingCompany = context.propsValue.billingCompany;
385
+ if (context.propsValue.tag?.length) filters.tag = context.propsValue.tag;
386
+ if (context.propsValue.opportunityStage?.length) filters.opportunityStage = context.propsValue.opportunityStage;
387
+ if (context.propsValue.owner?.length) filters.owner = context.propsValue.owner;
294
388
  // Register webhook with WorkBuddy v2 API (server handles upsert - reactivates if exists)
295
389
  const response = await httpClient.sendRequest<{ data: { id: string } }>({
296
390
  method: HttpMethod.POST,
@@ -305,9 +399,7 @@ export const opportunity_deleted_trigger = createTrigger({
305
399
  url: context.webhookUrl,
306
400
  entity: 'opportunity',
307
401
  events: ['Opportunity Deleted'],
308
- ...(context.propsValue.filters && Object.keys(context.propsValue.filters).length > 0
309
- ? { filters: context.propsValue.filters }
310
- : {}),
402
+ ...(Object.keys(filters).length > 0 ? { filters } : {}),
311
403
  workflow: {
312
404
  platform: 'activepieces',
313
405
  integrationId: context.webhookUrl,
@@ -4,99 +4,147 @@ export declare const quote_created_trigger: import("@activepieces/pieces-framewo
4
4
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
5
5
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
6
6
  }>, {
7
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
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
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
8
11
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
9
12
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
10
13
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
11
14
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
12
15
  }>, {
13
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
16
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
17
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
18
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
19
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
14
20
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
15
21
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
16
22
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
17
23
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
18
24
  }>, {
19
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
25
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
26
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
27
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
28
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
20
29
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
21
30
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
22
31
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
23
32
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
24
33
  }>, {
25
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
34
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
35
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
36
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
37
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
26
38
  }>;
27
39
  export declare const quote_updated_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
28
40
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
29
41
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
30
42
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
31
43
  }>, {
32
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
44
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
45
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
46
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
47
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
33
48
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
34
49
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
35
50
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
36
51
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
37
52
  }>, {
38
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
53
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
54
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
55
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
56
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
39
57
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
40
58
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
41
59
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
42
60
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
43
61
  }>, {
44
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
62
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
63
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
64
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
65
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
45
66
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
46
67
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
47
68
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
48
69
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
49
70
  }>, {
50
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
71
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
72
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
73
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
74
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
51
75
  }>;
52
76
  export declare const quote_status_changed_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
53
77
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
54
78
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
55
79
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
56
80
  }>, {
57
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
81
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
82
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
83
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
84
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
58
85
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
59
86
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
60
87
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
61
88
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
62
89
  }>, {
63
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
90
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
91
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
92
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
93
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
64
94
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
65
95
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
66
96
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
67
97
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
68
98
  }>, {
69
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
99
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
100
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
101
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
102
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
70
103
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
71
104
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
72
105
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
73
106
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
74
107
  }>, {
75
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
108
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
109
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
110
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
111
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
76
112
  }>;
77
113
  export declare const quote_deleted_trigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
78
114
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
79
115
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
80
116
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
81
117
  }>, {
82
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
118
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
119
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
120
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
121
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
83
122
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
84
123
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
85
124
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
86
125
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
87
126
  }>, {
88
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
127
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
128
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
129
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
130
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
89
131
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
90
132
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
91
133
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
92
134
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
93
135
  }>, {
94
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
136
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
137
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
138
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
139
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
95
140
  }> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
96
141
  baseUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
97
142
  clientId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
98
143
  clientSecret: import("@activepieces/pieces-framework").SecretTextProperty<true>;
99
144
  }>, {
100
- filters: import("@activepieces/pieces-framework").JsonProperty<false>;
145
+ customer: import("@activepieces/pieces-framework").ArrayProperty<false>;
146
+ billingCompany: import("@activepieces/pieces-framework").ArrayProperty<false>;
147
+ tag: import("@activepieces/pieces-framework").ArrayProperty<false>;
148
+ status: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, false>;
101
149
  }>;
102
150
  //# sourceMappingURL=quote.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"quote.d.ts","sourceRoot":"","sources":["quote.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,eAAe,EAAY,MAAM,gCAAgC,CAAC;AAI1F,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;EAsFhC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;EAsFhC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;EAsFvC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;EAsFhC,CAAC"}
1
+ {"version":3,"file":"quote.d.ts","sourceRoot":"","sources":["quote.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,eAAe,EAAY,MAAM,gCAAgC,CAAC;AAI1F,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgHhC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgHhC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgHvC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgHhC,CAAC"}