@automate.ax/catalog 0.104.0 → 0.107.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/catalog.d.ts +30 -4
- package/dist/catalog.js +14 -3
- package/dist/triggers/cloudflare.d.ts +80 -0
- package/dist/triggers/cloudflare.js +33 -0
- package/dist/triggers/index.d.ts +3591 -2231
- package/dist/triggers/index.js +2 -0
- package/dist/triggers/linear.d.ts +602 -0
- package/dist/triggers/linear.js +237 -0
- package/package.json +7 -1
- package/src/catalog.ts +14 -3
- package/src/triggers/cloudflare.ts +36 -0
- package/src/triggers/index.ts +2 -0
- package/src/triggers/linear.ts +237 -0
package/dist/triggers/linear.js
CHANGED
|
@@ -1,12 +1,29 @@
|
|
|
1
1
|
const LINEAR_ACCOUNT = {
|
|
2
2
|
connectionOptions: [
|
|
3
3
|
{
|
|
4
|
+
connectionMethodId: "oauth",
|
|
4
5
|
requiredScopes: ["read"],
|
|
5
6
|
},
|
|
6
7
|
],
|
|
7
8
|
serviceId: "linear",
|
|
8
9
|
};
|
|
9
10
|
export const linearTriggerDefinitions = {
|
|
11
|
+
linearAttachmentCreated: {
|
|
12
|
+
account: LINEAR_ACCOUNT,
|
|
13
|
+
type: "linear.attachment.created",
|
|
14
|
+
},
|
|
15
|
+
linearAttachmentEvent: {
|
|
16
|
+
account: LINEAR_ACCOUNT,
|
|
17
|
+
type: "linear.attachment.event",
|
|
18
|
+
},
|
|
19
|
+
linearAttachmentRemoved: {
|
|
20
|
+
account: LINEAR_ACCOUNT,
|
|
21
|
+
type: "linear.attachment.removed",
|
|
22
|
+
},
|
|
23
|
+
linearAttachmentUpdated: {
|
|
24
|
+
account: LINEAR_ACCOUNT,
|
|
25
|
+
type: "linear.attachment.updated",
|
|
26
|
+
},
|
|
10
27
|
linearCommentCreated: {
|
|
11
28
|
account: LINEAR_ACCOUNT,
|
|
12
29
|
type: "linear.comment.created",
|
|
@@ -23,6 +40,134 @@ export const linearTriggerDefinitions = {
|
|
|
23
40
|
account: LINEAR_ACCOUNT,
|
|
24
41
|
type: "linear.comment.updated",
|
|
25
42
|
},
|
|
43
|
+
linearCustomerNeedCreated: {
|
|
44
|
+
account: LINEAR_ACCOUNT,
|
|
45
|
+
type: "linear.customer-need.created",
|
|
46
|
+
},
|
|
47
|
+
linearCustomerNeedEvent: {
|
|
48
|
+
account: LINEAR_ACCOUNT,
|
|
49
|
+
type: "linear.customer-need.event",
|
|
50
|
+
},
|
|
51
|
+
linearCustomerNeedRemoved: {
|
|
52
|
+
account: LINEAR_ACCOUNT,
|
|
53
|
+
type: "linear.customer-need.removed",
|
|
54
|
+
},
|
|
55
|
+
linearCustomerNeedUpdated: {
|
|
56
|
+
account: LINEAR_ACCOUNT,
|
|
57
|
+
type: "linear.customer-need.updated",
|
|
58
|
+
},
|
|
59
|
+
linearCustomerCreated: {
|
|
60
|
+
account: LINEAR_ACCOUNT,
|
|
61
|
+
type: "linear.customer.created",
|
|
62
|
+
},
|
|
63
|
+
linearCustomerEvent: {
|
|
64
|
+
account: LINEAR_ACCOUNT,
|
|
65
|
+
type: "linear.customer.event",
|
|
66
|
+
},
|
|
67
|
+
linearCustomerRemoved: {
|
|
68
|
+
account: LINEAR_ACCOUNT,
|
|
69
|
+
type: "linear.customer.removed",
|
|
70
|
+
},
|
|
71
|
+
linearCustomerUpdated: {
|
|
72
|
+
account: LINEAR_ACCOUNT,
|
|
73
|
+
type: "linear.customer.updated",
|
|
74
|
+
},
|
|
75
|
+
linearCycleCreated: {
|
|
76
|
+
account: LINEAR_ACCOUNT,
|
|
77
|
+
type: "linear.cycle.created",
|
|
78
|
+
},
|
|
79
|
+
linearCycleEvent: {
|
|
80
|
+
account: LINEAR_ACCOUNT,
|
|
81
|
+
type: "linear.cycle.event",
|
|
82
|
+
},
|
|
83
|
+
linearCycleRemoved: {
|
|
84
|
+
account: LINEAR_ACCOUNT,
|
|
85
|
+
type: "linear.cycle.removed",
|
|
86
|
+
},
|
|
87
|
+
linearCycleUpdated: {
|
|
88
|
+
account: LINEAR_ACCOUNT,
|
|
89
|
+
type: "linear.cycle.updated",
|
|
90
|
+
},
|
|
91
|
+
linearDocumentCreated: {
|
|
92
|
+
account: LINEAR_ACCOUNT,
|
|
93
|
+
type: "linear.document.created",
|
|
94
|
+
},
|
|
95
|
+
linearDocumentEvent: {
|
|
96
|
+
account: LINEAR_ACCOUNT,
|
|
97
|
+
type: "linear.document.event",
|
|
98
|
+
},
|
|
99
|
+
linearDocumentRemoved: {
|
|
100
|
+
account: LINEAR_ACCOUNT,
|
|
101
|
+
type: "linear.document.removed",
|
|
102
|
+
},
|
|
103
|
+
linearDocumentUpdated: {
|
|
104
|
+
account: LINEAR_ACCOUNT,
|
|
105
|
+
type: "linear.document.updated",
|
|
106
|
+
},
|
|
107
|
+
linearInitiativeUpdateCreated: {
|
|
108
|
+
account: LINEAR_ACCOUNT,
|
|
109
|
+
type: "linear.initiative-update.created",
|
|
110
|
+
},
|
|
111
|
+
linearInitiativeUpdateEvent: {
|
|
112
|
+
account: LINEAR_ACCOUNT,
|
|
113
|
+
type: "linear.initiative-update.event",
|
|
114
|
+
},
|
|
115
|
+
linearInitiativeUpdateRemoved: {
|
|
116
|
+
account: LINEAR_ACCOUNT,
|
|
117
|
+
type: "linear.initiative-update.removed",
|
|
118
|
+
},
|
|
119
|
+
linearInitiativeUpdateUpdated: {
|
|
120
|
+
account: LINEAR_ACCOUNT,
|
|
121
|
+
type: "linear.initiative-update.updated",
|
|
122
|
+
},
|
|
123
|
+
linearInitiativeCreated: {
|
|
124
|
+
account: LINEAR_ACCOUNT,
|
|
125
|
+
type: "linear.initiative.created",
|
|
126
|
+
},
|
|
127
|
+
linearInitiativeEvent: {
|
|
128
|
+
account: LINEAR_ACCOUNT,
|
|
129
|
+
type: "linear.initiative.event",
|
|
130
|
+
},
|
|
131
|
+
linearInitiativeRemoved: {
|
|
132
|
+
account: LINEAR_ACCOUNT,
|
|
133
|
+
type: "linear.initiative.removed",
|
|
134
|
+
},
|
|
135
|
+
linearInitiativeUpdated: {
|
|
136
|
+
account: LINEAR_ACCOUNT,
|
|
137
|
+
type: "linear.initiative.updated",
|
|
138
|
+
},
|
|
139
|
+
linearIssueLabelCreated: {
|
|
140
|
+
account: LINEAR_ACCOUNT,
|
|
141
|
+
type: "linear.issue-label.created",
|
|
142
|
+
},
|
|
143
|
+
linearIssueLabelEvent: {
|
|
144
|
+
account: LINEAR_ACCOUNT,
|
|
145
|
+
type: "linear.issue-label.event",
|
|
146
|
+
},
|
|
147
|
+
linearIssueLabelRemoved: {
|
|
148
|
+
account: LINEAR_ACCOUNT,
|
|
149
|
+
type: "linear.issue-label.removed",
|
|
150
|
+
},
|
|
151
|
+
linearIssueLabelUpdated: {
|
|
152
|
+
account: LINEAR_ACCOUNT,
|
|
153
|
+
type: "linear.issue-label.updated",
|
|
154
|
+
},
|
|
155
|
+
linearIssueSlaBreached: {
|
|
156
|
+
account: LINEAR_ACCOUNT,
|
|
157
|
+
type: "linear.issue-sla.breached",
|
|
158
|
+
},
|
|
159
|
+
linearIssueSlaEvent: {
|
|
160
|
+
account: LINEAR_ACCOUNT,
|
|
161
|
+
type: "linear.issue-sla.event",
|
|
162
|
+
},
|
|
163
|
+
linearIssueSlaHighRisk: {
|
|
164
|
+
account: LINEAR_ACCOUNT,
|
|
165
|
+
type: "linear.issue-sla.high-risk",
|
|
166
|
+
},
|
|
167
|
+
linearIssueSlaSet: {
|
|
168
|
+
account: LINEAR_ACCOUNT,
|
|
169
|
+
type: "linear.issue-sla.set",
|
|
170
|
+
},
|
|
26
171
|
linearIssueCreated: {
|
|
27
172
|
account: LINEAR_ACCOUNT,
|
|
28
173
|
type: "linear.issue.created",
|
|
@@ -39,6 +184,38 @@ export const linearTriggerDefinitions = {
|
|
|
39
184
|
account: LINEAR_ACCOUNT,
|
|
40
185
|
type: "linear.issue.updated",
|
|
41
186
|
},
|
|
187
|
+
linearProjectLabelCreated: {
|
|
188
|
+
account: LINEAR_ACCOUNT,
|
|
189
|
+
type: "linear.project-label.created",
|
|
190
|
+
},
|
|
191
|
+
linearProjectLabelEvent: {
|
|
192
|
+
account: LINEAR_ACCOUNT,
|
|
193
|
+
type: "linear.project-label.event",
|
|
194
|
+
},
|
|
195
|
+
linearProjectLabelRemoved: {
|
|
196
|
+
account: LINEAR_ACCOUNT,
|
|
197
|
+
type: "linear.project-label.removed",
|
|
198
|
+
},
|
|
199
|
+
linearProjectLabelUpdated: {
|
|
200
|
+
account: LINEAR_ACCOUNT,
|
|
201
|
+
type: "linear.project-label.updated",
|
|
202
|
+
},
|
|
203
|
+
linearProjectUpdateCreated: {
|
|
204
|
+
account: LINEAR_ACCOUNT,
|
|
205
|
+
type: "linear.project-update.created",
|
|
206
|
+
},
|
|
207
|
+
linearProjectUpdateEvent: {
|
|
208
|
+
account: LINEAR_ACCOUNT,
|
|
209
|
+
type: "linear.project-update.event",
|
|
210
|
+
},
|
|
211
|
+
linearProjectUpdateRemoved: {
|
|
212
|
+
account: LINEAR_ACCOUNT,
|
|
213
|
+
type: "linear.project-update.removed",
|
|
214
|
+
},
|
|
215
|
+
linearProjectUpdateUpdated: {
|
|
216
|
+
account: LINEAR_ACCOUNT,
|
|
217
|
+
type: "linear.project-update.updated",
|
|
218
|
+
},
|
|
42
219
|
linearProjectCreated: {
|
|
43
220
|
account: LINEAR_ACCOUNT,
|
|
44
221
|
type: "linear.project.created",
|
|
@@ -55,4 +232,64 @@ export const linearTriggerDefinitions = {
|
|
|
55
232
|
account: LINEAR_ACCOUNT,
|
|
56
233
|
type: "linear.project.updated",
|
|
57
234
|
},
|
|
235
|
+
linearReactionCreated: {
|
|
236
|
+
account: LINEAR_ACCOUNT,
|
|
237
|
+
type: "linear.reaction.created",
|
|
238
|
+
},
|
|
239
|
+
linearReactionEvent: {
|
|
240
|
+
account: LINEAR_ACCOUNT,
|
|
241
|
+
type: "linear.reaction.event",
|
|
242
|
+
},
|
|
243
|
+
linearReactionRemoved: {
|
|
244
|
+
account: LINEAR_ACCOUNT,
|
|
245
|
+
type: "linear.reaction.removed",
|
|
246
|
+
},
|
|
247
|
+
linearReleaseNoteCreated: {
|
|
248
|
+
account: LINEAR_ACCOUNT,
|
|
249
|
+
type: "linear.release-note.created",
|
|
250
|
+
},
|
|
251
|
+
linearReleaseNoteEvent: {
|
|
252
|
+
account: LINEAR_ACCOUNT,
|
|
253
|
+
type: "linear.release-note.event",
|
|
254
|
+
},
|
|
255
|
+
linearReleaseNoteRemoved: {
|
|
256
|
+
account: LINEAR_ACCOUNT,
|
|
257
|
+
type: "linear.release-note.removed",
|
|
258
|
+
},
|
|
259
|
+
linearReleaseNoteUpdated: {
|
|
260
|
+
account: LINEAR_ACCOUNT,
|
|
261
|
+
type: "linear.release-note.updated",
|
|
262
|
+
},
|
|
263
|
+
linearReleaseCreated: {
|
|
264
|
+
account: LINEAR_ACCOUNT,
|
|
265
|
+
type: "linear.release.created",
|
|
266
|
+
},
|
|
267
|
+
linearReleaseEvent: {
|
|
268
|
+
account: LINEAR_ACCOUNT,
|
|
269
|
+
type: "linear.release.event",
|
|
270
|
+
},
|
|
271
|
+
linearReleaseRemoved: {
|
|
272
|
+
account: LINEAR_ACCOUNT,
|
|
273
|
+
type: "linear.release.removed",
|
|
274
|
+
},
|
|
275
|
+
linearReleaseUpdated: {
|
|
276
|
+
account: LINEAR_ACCOUNT,
|
|
277
|
+
type: "linear.release.updated",
|
|
278
|
+
},
|
|
279
|
+
linearUserCreated: {
|
|
280
|
+
account: LINEAR_ACCOUNT,
|
|
281
|
+
type: "linear.user.created",
|
|
282
|
+
},
|
|
283
|
+
linearUserEvent: {
|
|
284
|
+
account: LINEAR_ACCOUNT,
|
|
285
|
+
type: "linear.user.event",
|
|
286
|
+
},
|
|
287
|
+
linearUserRemoved: {
|
|
288
|
+
account: LINEAR_ACCOUNT,
|
|
289
|
+
type: "linear.user.removed",
|
|
290
|
+
},
|
|
291
|
+
linearUserUpdated: {
|
|
292
|
+
account: LINEAR_ACCOUNT,
|
|
293
|
+
type: "linear.user.updated",
|
|
294
|
+
},
|
|
58
295
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/catalog",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.107.0",
|
|
4
4
|
"description": "Shared integration service and trigger definitions for Automate.ax.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"./triggers/automate": "./src/triggers/automate.ts",
|
|
25
25
|
"./triggers/asana": "./src/triggers/asana.ts",
|
|
26
26
|
"./triggers/brevo": "./src/triggers/brevo.ts",
|
|
27
|
+
"./triggers/cloudflare": "./src/triggers/cloudflare.ts",
|
|
27
28
|
"./triggers/convex": "./src/triggers/convex.ts",
|
|
28
29
|
"./triggers/close": "./src/triggers/close.ts",
|
|
29
30
|
"./triggers/core-dashboard": "./src/triggers/core-dashboard.ts",
|
|
@@ -112,6 +113,11 @@
|
|
|
112
113
|
"types": "./dist/triggers/brevo.d.ts",
|
|
113
114
|
"default": "./dist/triggers/brevo.js"
|
|
114
115
|
},
|
|
116
|
+
"./triggers/cloudflare": {
|
|
117
|
+
"bun": "./src/triggers/cloudflare.ts",
|
|
118
|
+
"types": "./dist/triggers/cloudflare.d.ts",
|
|
119
|
+
"default": "./dist/triggers/cloudflare.js"
|
|
120
|
+
},
|
|
115
121
|
"./triggers/convex": {
|
|
116
122
|
"bun": "./src/triggers/convex.ts",
|
|
117
123
|
"types": "./dist/triggers/convex.d.ts",
|
package/src/catalog.ts
CHANGED
|
@@ -301,10 +301,20 @@ export const huggingfaceService = defineIntegrationService({
|
|
|
301
301
|
})
|
|
302
302
|
|
|
303
303
|
export const linearService = defineIntegrationService({
|
|
304
|
-
connectionMethods: [
|
|
305
|
-
|
|
304
|
+
connectionMethods: [
|
|
305
|
+
{ id: "oauth", name: "OAuth", type: "redirect" },
|
|
306
|
+
{
|
|
307
|
+
credentialUrl: "https://linear.app/settings/api",
|
|
308
|
+
fields: [{ ...API_KEY_FIELD, placeholder: "lin_api_..." }],
|
|
309
|
+
id: "api-key",
|
|
310
|
+
name: "Personal API key",
|
|
311
|
+
type: "form",
|
|
312
|
+
},
|
|
313
|
+
],
|
|
314
|
+
description: "Connect a Linear workspace with OAuth or a personal API key.",
|
|
306
315
|
id: "linear",
|
|
307
316
|
name: "Linear",
|
|
317
|
+
preferredConnectionMethodId: "oauth",
|
|
308
318
|
})
|
|
309
319
|
|
|
310
320
|
export const jobNimbusService = defineApiKeyService({
|
|
@@ -454,7 +464,7 @@ export const postgresService = defineIntegrationService({
|
|
|
454
464
|
type: "form",
|
|
455
465
|
},
|
|
456
466
|
],
|
|
457
|
-
description: "Connect a PostgreSQL database.",
|
|
467
|
+
description: "Connect a PostgreSQL database with a least-privilege role.",
|
|
458
468
|
id: "postgres",
|
|
459
469
|
name: "PostgreSQL",
|
|
460
470
|
})
|
|
@@ -476,6 +486,7 @@ export const resendService = defineIntegrationService({
|
|
|
476
486
|
})
|
|
477
487
|
|
|
478
488
|
export const scrapflyService = defineApiKeyService({
|
|
489
|
+
credentialUrl: "https://scrapfly.io/dashboard/project",
|
|
479
490
|
description: "Connect a Scrapfly API key.",
|
|
480
491
|
id: "scrapfly",
|
|
481
492
|
name: "Scrapfly",
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { IntegrationAccountRequirement, TriggerDefinition } from "../types"
|
|
2
|
+
|
|
3
|
+
const CLOUDFLARE_ACCOUNT = {
|
|
4
|
+
connectionOptions: [
|
|
5
|
+
{ connectionMethodId: "oauth", requiredScopes: ["account.write"] },
|
|
6
|
+
{ connectionMethodId: "api-token", requiredScopes: [] },
|
|
7
|
+
],
|
|
8
|
+
serviceId: "cloudflare",
|
|
9
|
+
} as const satisfies IntegrationAccountRequirement
|
|
10
|
+
|
|
11
|
+
export const cloudflareTriggerDefinitions = {
|
|
12
|
+
cloudflareAccessCertificateExpiring: {
|
|
13
|
+
account: CLOUDFLARE_ACCOUNT,
|
|
14
|
+
type: "cloudflare.accessCertificate.expiring",
|
|
15
|
+
},
|
|
16
|
+
cloudflareLayer4DdosAttack: {
|
|
17
|
+
account: CLOUDFLARE_ACCOUNT,
|
|
18
|
+
type: "cloudflare.layer4DdosAttack",
|
|
19
|
+
},
|
|
20
|
+
cloudflareLayer7DdosAttack: {
|
|
21
|
+
account: CLOUDFLARE_ACCOUNT,
|
|
22
|
+
type: "cloudflare.layer7DdosAttack",
|
|
23
|
+
},
|
|
24
|
+
cloudflareNotification: {
|
|
25
|
+
account: CLOUDFLARE_ACCOUNT,
|
|
26
|
+
type: "cloudflare.notification",
|
|
27
|
+
},
|
|
28
|
+
cloudflareOriginHealthCheckStatusChanged: {
|
|
29
|
+
account: CLOUDFLARE_ACCOUNT,
|
|
30
|
+
type: "cloudflare.originHealthCheckStatusChanged",
|
|
31
|
+
},
|
|
32
|
+
cloudflareSslCertificateEvent: {
|
|
33
|
+
account: CLOUDFLARE_ACCOUNT,
|
|
34
|
+
type: "cloudflare.sslCertificate.event",
|
|
35
|
+
},
|
|
36
|
+
} as const satisfies Record<string, TriggerDefinition>
|
package/src/triggers/index.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { asanaTriggerDefinitions } from "./asana"
|
|
|
4
4
|
import { brevoTriggerDefinitions } from "./brevo"
|
|
5
5
|
import { convexTriggerDefinitions } from "./convex"
|
|
6
6
|
import { closeTriggerDefinitions } from "./close"
|
|
7
|
+
import { cloudflareTriggerDefinitions } from "./cloudflare"
|
|
7
8
|
import { coreTriggerDefinitions } from "./core"
|
|
8
9
|
import { githubTriggerDefinitions } from "./github"
|
|
9
10
|
import { googleTriggerDefinitions } from "./google"
|
|
@@ -52,6 +53,7 @@ export const triggerDefinitions = {
|
|
|
52
53
|
...brevoTriggerDefinitions,
|
|
53
54
|
...convexTriggerDefinitions,
|
|
54
55
|
...closeTriggerDefinitions,
|
|
56
|
+
...cloudflareTriggerDefinitions,
|
|
55
57
|
...coreTriggerDefinitions,
|
|
56
58
|
...githubTriggerDefinitions,
|
|
57
59
|
...googleTriggerDefinitions,
|
package/src/triggers/linear.ts
CHANGED
|
@@ -3,6 +3,7 @@ import type { IntegrationAccountRequirement, TriggerDefinition } from "../types"
|
|
|
3
3
|
const LINEAR_ACCOUNT = {
|
|
4
4
|
connectionOptions: [
|
|
5
5
|
{
|
|
6
|
+
connectionMethodId: "oauth",
|
|
6
7
|
requiredScopes: ["read"],
|
|
7
8
|
},
|
|
8
9
|
],
|
|
@@ -10,6 +11,22 @@ const LINEAR_ACCOUNT = {
|
|
|
10
11
|
} as const satisfies IntegrationAccountRequirement
|
|
11
12
|
|
|
12
13
|
export const linearTriggerDefinitions = {
|
|
14
|
+
linearAttachmentCreated: {
|
|
15
|
+
account: LINEAR_ACCOUNT,
|
|
16
|
+
type: "linear.attachment.created",
|
|
17
|
+
},
|
|
18
|
+
linearAttachmentEvent: {
|
|
19
|
+
account: LINEAR_ACCOUNT,
|
|
20
|
+
type: "linear.attachment.event",
|
|
21
|
+
},
|
|
22
|
+
linearAttachmentRemoved: {
|
|
23
|
+
account: LINEAR_ACCOUNT,
|
|
24
|
+
type: "linear.attachment.removed",
|
|
25
|
+
},
|
|
26
|
+
linearAttachmentUpdated: {
|
|
27
|
+
account: LINEAR_ACCOUNT,
|
|
28
|
+
type: "linear.attachment.updated",
|
|
29
|
+
},
|
|
13
30
|
linearCommentCreated: {
|
|
14
31
|
account: LINEAR_ACCOUNT,
|
|
15
32
|
type: "linear.comment.created",
|
|
@@ -26,6 +43,134 @@ export const linearTriggerDefinitions = {
|
|
|
26
43
|
account: LINEAR_ACCOUNT,
|
|
27
44
|
type: "linear.comment.updated",
|
|
28
45
|
},
|
|
46
|
+
linearCustomerNeedCreated: {
|
|
47
|
+
account: LINEAR_ACCOUNT,
|
|
48
|
+
type: "linear.customer-need.created",
|
|
49
|
+
},
|
|
50
|
+
linearCustomerNeedEvent: {
|
|
51
|
+
account: LINEAR_ACCOUNT,
|
|
52
|
+
type: "linear.customer-need.event",
|
|
53
|
+
},
|
|
54
|
+
linearCustomerNeedRemoved: {
|
|
55
|
+
account: LINEAR_ACCOUNT,
|
|
56
|
+
type: "linear.customer-need.removed",
|
|
57
|
+
},
|
|
58
|
+
linearCustomerNeedUpdated: {
|
|
59
|
+
account: LINEAR_ACCOUNT,
|
|
60
|
+
type: "linear.customer-need.updated",
|
|
61
|
+
},
|
|
62
|
+
linearCustomerCreated: {
|
|
63
|
+
account: LINEAR_ACCOUNT,
|
|
64
|
+
type: "linear.customer.created",
|
|
65
|
+
},
|
|
66
|
+
linearCustomerEvent: {
|
|
67
|
+
account: LINEAR_ACCOUNT,
|
|
68
|
+
type: "linear.customer.event",
|
|
69
|
+
},
|
|
70
|
+
linearCustomerRemoved: {
|
|
71
|
+
account: LINEAR_ACCOUNT,
|
|
72
|
+
type: "linear.customer.removed",
|
|
73
|
+
},
|
|
74
|
+
linearCustomerUpdated: {
|
|
75
|
+
account: LINEAR_ACCOUNT,
|
|
76
|
+
type: "linear.customer.updated",
|
|
77
|
+
},
|
|
78
|
+
linearCycleCreated: {
|
|
79
|
+
account: LINEAR_ACCOUNT,
|
|
80
|
+
type: "linear.cycle.created",
|
|
81
|
+
},
|
|
82
|
+
linearCycleEvent: {
|
|
83
|
+
account: LINEAR_ACCOUNT,
|
|
84
|
+
type: "linear.cycle.event",
|
|
85
|
+
},
|
|
86
|
+
linearCycleRemoved: {
|
|
87
|
+
account: LINEAR_ACCOUNT,
|
|
88
|
+
type: "linear.cycle.removed",
|
|
89
|
+
},
|
|
90
|
+
linearCycleUpdated: {
|
|
91
|
+
account: LINEAR_ACCOUNT,
|
|
92
|
+
type: "linear.cycle.updated",
|
|
93
|
+
},
|
|
94
|
+
linearDocumentCreated: {
|
|
95
|
+
account: LINEAR_ACCOUNT,
|
|
96
|
+
type: "linear.document.created",
|
|
97
|
+
},
|
|
98
|
+
linearDocumentEvent: {
|
|
99
|
+
account: LINEAR_ACCOUNT,
|
|
100
|
+
type: "linear.document.event",
|
|
101
|
+
},
|
|
102
|
+
linearDocumentRemoved: {
|
|
103
|
+
account: LINEAR_ACCOUNT,
|
|
104
|
+
type: "linear.document.removed",
|
|
105
|
+
},
|
|
106
|
+
linearDocumentUpdated: {
|
|
107
|
+
account: LINEAR_ACCOUNT,
|
|
108
|
+
type: "linear.document.updated",
|
|
109
|
+
},
|
|
110
|
+
linearInitiativeUpdateCreated: {
|
|
111
|
+
account: LINEAR_ACCOUNT,
|
|
112
|
+
type: "linear.initiative-update.created",
|
|
113
|
+
},
|
|
114
|
+
linearInitiativeUpdateEvent: {
|
|
115
|
+
account: LINEAR_ACCOUNT,
|
|
116
|
+
type: "linear.initiative-update.event",
|
|
117
|
+
},
|
|
118
|
+
linearInitiativeUpdateRemoved: {
|
|
119
|
+
account: LINEAR_ACCOUNT,
|
|
120
|
+
type: "linear.initiative-update.removed",
|
|
121
|
+
},
|
|
122
|
+
linearInitiativeUpdateUpdated: {
|
|
123
|
+
account: LINEAR_ACCOUNT,
|
|
124
|
+
type: "linear.initiative-update.updated",
|
|
125
|
+
},
|
|
126
|
+
linearInitiativeCreated: {
|
|
127
|
+
account: LINEAR_ACCOUNT,
|
|
128
|
+
type: "linear.initiative.created",
|
|
129
|
+
},
|
|
130
|
+
linearInitiativeEvent: {
|
|
131
|
+
account: LINEAR_ACCOUNT,
|
|
132
|
+
type: "linear.initiative.event",
|
|
133
|
+
},
|
|
134
|
+
linearInitiativeRemoved: {
|
|
135
|
+
account: LINEAR_ACCOUNT,
|
|
136
|
+
type: "linear.initiative.removed",
|
|
137
|
+
},
|
|
138
|
+
linearInitiativeUpdated: {
|
|
139
|
+
account: LINEAR_ACCOUNT,
|
|
140
|
+
type: "linear.initiative.updated",
|
|
141
|
+
},
|
|
142
|
+
linearIssueLabelCreated: {
|
|
143
|
+
account: LINEAR_ACCOUNT,
|
|
144
|
+
type: "linear.issue-label.created",
|
|
145
|
+
},
|
|
146
|
+
linearIssueLabelEvent: {
|
|
147
|
+
account: LINEAR_ACCOUNT,
|
|
148
|
+
type: "linear.issue-label.event",
|
|
149
|
+
},
|
|
150
|
+
linearIssueLabelRemoved: {
|
|
151
|
+
account: LINEAR_ACCOUNT,
|
|
152
|
+
type: "linear.issue-label.removed",
|
|
153
|
+
},
|
|
154
|
+
linearIssueLabelUpdated: {
|
|
155
|
+
account: LINEAR_ACCOUNT,
|
|
156
|
+
type: "linear.issue-label.updated",
|
|
157
|
+
},
|
|
158
|
+
linearIssueSlaBreached: {
|
|
159
|
+
account: LINEAR_ACCOUNT,
|
|
160
|
+
type: "linear.issue-sla.breached",
|
|
161
|
+
},
|
|
162
|
+
linearIssueSlaEvent: {
|
|
163
|
+
account: LINEAR_ACCOUNT,
|
|
164
|
+
type: "linear.issue-sla.event",
|
|
165
|
+
},
|
|
166
|
+
linearIssueSlaHighRisk: {
|
|
167
|
+
account: LINEAR_ACCOUNT,
|
|
168
|
+
type: "linear.issue-sla.high-risk",
|
|
169
|
+
},
|
|
170
|
+
linearIssueSlaSet: {
|
|
171
|
+
account: LINEAR_ACCOUNT,
|
|
172
|
+
type: "linear.issue-sla.set",
|
|
173
|
+
},
|
|
29
174
|
linearIssueCreated: {
|
|
30
175
|
account: LINEAR_ACCOUNT,
|
|
31
176
|
type: "linear.issue.created",
|
|
@@ -42,6 +187,38 @@ export const linearTriggerDefinitions = {
|
|
|
42
187
|
account: LINEAR_ACCOUNT,
|
|
43
188
|
type: "linear.issue.updated",
|
|
44
189
|
},
|
|
190
|
+
linearProjectLabelCreated: {
|
|
191
|
+
account: LINEAR_ACCOUNT,
|
|
192
|
+
type: "linear.project-label.created",
|
|
193
|
+
},
|
|
194
|
+
linearProjectLabelEvent: {
|
|
195
|
+
account: LINEAR_ACCOUNT,
|
|
196
|
+
type: "linear.project-label.event",
|
|
197
|
+
},
|
|
198
|
+
linearProjectLabelRemoved: {
|
|
199
|
+
account: LINEAR_ACCOUNT,
|
|
200
|
+
type: "linear.project-label.removed",
|
|
201
|
+
},
|
|
202
|
+
linearProjectLabelUpdated: {
|
|
203
|
+
account: LINEAR_ACCOUNT,
|
|
204
|
+
type: "linear.project-label.updated",
|
|
205
|
+
},
|
|
206
|
+
linearProjectUpdateCreated: {
|
|
207
|
+
account: LINEAR_ACCOUNT,
|
|
208
|
+
type: "linear.project-update.created",
|
|
209
|
+
},
|
|
210
|
+
linearProjectUpdateEvent: {
|
|
211
|
+
account: LINEAR_ACCOUNT,
|
|
212
|
+
type: "linear.project-update.event",
|
|
213
|
+
},
|
|
214
|
+
linearProjectUpdateRemoved: {
|
|
215
|
+
account: LINEAR_ACCOUNT,
|
|
216
|
+
type: "linear.project-update.removed",
|
|
217
|
+
},
|
|
218
|
+
linearProjectUpdateUpdated: {
|
|
219
|
+
account: LINEAR_ACCOUNT,
|
|
220
|
+
type: "linear.project-update.updated",
|
|
221
|
+
},
|
|
45
222
|
linearProjectCreated: {
|
|
46
223
|
account: LINEAR_ACCOUNT,
|
|
47
224
|
type: "linear.project.created",
|
|
@@ -58,4 +235,64 @@ export const linearTriggerDefinitions = {
|
|
|
58
235
|
account: LINEAR_ACCOUNT,
|
|
59
236
|
type: "linear.project.updated",
|
|
60
237
|
},
|
|
238
|
+
linearReactionCreated: {
|
|
239
|
+
account: LINEAR_ACCOUNT,
|
|
240
|
+
type: "linear.reaction.created",
|
|
241
|
+
},
|
|
242
|
+
linearReactionEvent: {
|
|
243
|
+
account: LINEAR_ACCOUNT,
|
|
244
|
+
type: "linear.reaction.event",
|
|
245
|
+
},
|
|
246
|
+
linearReactionRemoved: {
|
|
247
|
+
account: LINEAR_ACCOUNT,
|
|
248
|
+
type: "linear.reaction.removed",
|
|
249
|
+
},
|
|
250
|
+
linearReleaseNoteCreated: {
|
|
251
|
+
account: LINEAR_ACCOUNT,
|
|
252
|
+
type: "linear.release-note.created",
|
|
253
|
+
},
|
|
254
|
+
linearReleaseNoteEvent: {
|
|
255
|
+
account: LINEAR_ACCOUNT,
|
|
256
|
+
type: "linear.release-note.event",
|
|
257
|
+
},
|
|
258
|
+
linearReleaseNoteRemoved: {
|
|
259
|
+
account: LINEAR_ACCOUNT,
|
|
260
|
+
type: "linear.release-note.removed",
|
|
261
|
+
},
|
|
262
|
+
linearReleaseNoteUpdated: {
|
|
263
|
+
account: LINEAR_ACCOUNT,
|
|
264
|
+
type: "linear.release-note.updated",
|
|
265
|
+
},
|
|
266
|
+
linearReleaseCreated: {
|
|
267
|
+
account: LINEAR_ACCOUNT,
|
|
268
|
+
type: "linear.release.created",
|
|
269
|
+
},
|
|
270
|
+
linearReleaseEvent: {
|
|
271
|
+
account: LINEAR_ACCOUNT,
|
|
272
|
+
type: "linear.release.event",
|
|
273
|
+
},
|
|
274
|
+
linearReleaseRemoved: {
|
|
275
|
+
account: LINEAR_ACCOUNT,
|
|
276
|
+
type: "linear.release.removed",
|
|
277
|
+
},
|
|
278
|
+
linearReleaseUpdated: {
|
|
279
|
+
account: LINEAR_ACCOUNT,
|
|
280
|
+
type: "linear.release.updated",
|
|
281
|
+
},
|
|
282
|
+
linearUserCreated: {
|
|
283
|
+
account: LINEAR_ACCOUNT,
|
|
284
|
+
type: "linear.user.created",
|
|
285
|
+
},
|
|
286
|
+
linearUserEvent: {
|
|
287
|
+
account: LINEAR_ACCOUNT,
|
|
288
|
+
type: "linear.user.event",
|
|
289
|
+
},
|
|
290
|
+
linearUserRemoved: {
|
|
291
|
+
account: LINEAR_ACCOUNT,
|
|
292
|
+
type: "linear.user.removed",
|
|
293
|
+
},
|
|
294
|
+
linearUserUpdated: {
|
|
295
|
+
account: LINEAR_ACCOUNT,
|
|
296
|
+
type: "linear.user.updated",
|
|
297
|
+
},
|
|
61
298
|
} as const satisfies Record<string, TriggerDefinition>
|