@automate.ax/catalog 0.99.5 → 0.102.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 CHANGED
@@ -75,7 +75,7 @@ export declare const automateService: {
75
75
  readonly name: "Organization API key";
76
76
  readonly type: "form";
77
77
  }];
78
- readonly description: "Connect an Automate.ax organization for cross-account actions.";
78
+ readonly description: "Connect an Automate.ax organization for management actions and lifecycle triggers.";
79
79
  readonly id: "automate";
80
80
  readonly name: "Automate.ax";
81
81
  };
@@ -915,7 +915,7 @@ export declare const integrationCatalog: readonly [{
915
915
  readonly name: "Organization API key";
916
916
  readonly type: "form";
917
917
  }];
918
- readonly description: "Connect an Automate.ax organization for cross-account actions.";
918
+ readonly description: "Connect an Automate.ax organization for management actions and lifecycle triggers.";
919
919
  readonly id: "automate";
920
920
  readonly name: "Automate.ax";
921
921
  }, {
package/dist/catalog.js CHANGED
@@ -56,7 +56,7 @@ export const automateService = defineIntegrationService({
56
56
  type: "form",
57
57
  },
58
58
  ],
59
- description: "Connect an Automate.ax organization for cross-account actions.",
59
+ description: "Connect an Automate.ax organization for management actions and lifecycle triggers.",
60
60
  id: "automate",
61
61
  name: "Automate.ax",
62
62
  });
@@ -0,0 +1,114 @@
1
+ export declare const automateTriggerDefinitions: {
2
+ readonly automateAutomationDisabled: {
3
+ readonly account: {
4
+ readonly connectionOptions: readonly [{
5
+ readonly connectionMethodId: "organization-api-key";
6
+ readonly requiredScopes: readonly ["project:read"];
7
+ }];
8
+ readonly serviceId: "automate";
9
+ };
10
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
11
+ label: string;
12
+ value: string;
13
+ }[];
14
+ readonly type: "automate.automation.disabled";
15
+ };
16
+ readonly automateAutomationEnabled: {
17
+ readonly account: {
18
+ readonly connectionOptions: readonly [{
19
+ readonly connectionMethodId: "organization-api-key";
20
+ readonly requiredScopes: readonly ["project:read"];
21
+ }];
22
+ readonly serviceId: "automate";
23
+ };
24
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
25
+ label: string;
26
+ value: string;
27
+ }[];
28
+ readonly type: "automate.automation.enabled";
29
+ };
30
+ readonly automateAutomationStateChanged: {
31
+ readonly account: {
32
+ readonly connectionOptions: readonly [{
33
+ readonly connectionMethodId: "organization-api-key";
34
+ readonly requiredScopes: readonly ["project:read"];
35
+ }];
36
+ readonly serviceId: "automate";
37
+ };
38
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
39
+ label: string;
40
+ value: string;
41
+ }[];
42
+ readonly type: "automate.automation.stateChanged";
43
+ };
44
+ readonly automateDeploymentAwaitingAuthorization: {
45
+ readonly account: {
46
+ readonly connectionOptions: readonly [{
47
+ readonly connectionMethodId: "organization-api-key";
48
+ readonly requiredScopes: readonly ["deployment:read"];
49
+ }];
50
+ readonly serviceId: "automate";
51
+ };
52
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
53
+ label: string;
54
+ value: string;
55
+ }[];
56
+ readonly type: "automate.deployment.awaitingAuthorization";
57
+ };
58
+ readonly automateDeploymentCancelled: {
59
+ readonly account: {
60
+ readonly connectionOptions: readonly [{
61
+ readonly connectionMethodId: "organization-api-key";
62
+ readonly requiredScopes: readonly ["deployment:read"];
63
+ }];
64
+ readonly serviceId: "automate";
65
+ };
66
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
67
+ label: string;
68
+ value: string;
69
+ }[];
70
+ readonly type: "automate.deployment.cancelled";
71
+ };
72
+ readonly automateDeploymentEvent: {
73
+ readonly account: {
74
+ readonly connectionOptions: readonly [{
75
+ readonly connectionMethodId: "organization-api-key";
76
+ readonly requiredScopes: readonly ["deployment:read"];
77
+ }];
78
+ readonly serviceId: "automate";
79
+ };
80
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
81
+ label: string;
82
+ value: string;
83
+ }[];
84
+ readonly type: "automate.deployment.event";
85
+ };
86
+ readonly automateDeploymentFailed: {
87
+ readonly account: {
88
+ readonly connectionOptions: readonly [{
89
+ readonly connectionMethodId: "organization-api-key";
90
+ readonly requiredScopes: readonly ["deployment:read"];
91
+ }];
92
+ readonly serviceId: "automate";
93
+ };
94
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
95
+ label: string;
96
+ value: string;
97
+ }[];
98
+ readonly type: "automate.deployment.failed";
99
+ };
100
+ readonly automateDeploymentSucceeded: {
101
+ readonly account: {
102
+ readonly connectionOptions: readonly [{
103
+ readonly connectionMethodId: "organization-api-key";
104
+ readonly requiredScopes: readonly ["deployment:read"];
105
+ }];
106
+ readonly serviceId: "automate";
107
+ };
108
+ readonly getDetails: ({ config }: import("..").TriggerPresentationContext) => {
109
+ label: string;
110
+ value: string;
111
+ }[];
112
+ readonly type: "automate.deployment.succeeded";
113
+ };
114
+ };
@@ -0,0 +1,65 @@
1
+ import * as z from "zod/mini";
2
+ const AUTOMATE_PROJECT_READ_ACCOUNT = {
3
+ connectionOptions: [
4
+ {
5
+ connectionMethodId: "organization-api-key",
6
+ requiredScopes: ["project:read"],
7
+ },
8
+ ],
9
+ serviceId: "automate",
10
+ };
11
+ const AUTOMATE_DEPLOYMENT_READ_ACCOUNT = {
12
+ connectionOptions: [
13
+ {
14
+ connectionMethodId: "organization-api-key",
15
+ requiredScopes: ["deployment:read"],
16
+ },
17
+ ],
18
+ serviceId: "automate",
19
+ };
20
+ const AUTOMATION_CONFIG_SCHEMA = z.object({ automationId: z.string() });
21
+ const DEPLOYMENT_CONFIG_SCHEMA = z.object({ projectId: z.string() });
22
+ export const automateTriggerDefinitions = {
23
+ automateAutomationDisabled: automationTrigger("automate.automation.disabled"),
24
+ automateAutomationEnabled: automationTrigger("automate.automation.enabled"),
25
+ automateAutomationStateChanged: automationTrigger("automate.automation.stateChanged"),
26
+ automateDeploymentAwaitingAuthorization: deploymentTrigger("automate.deployment.awaitingAuthorization"),
27
+ automateDeploymentCancelled: deploymentTrigger("automate.deployment.cancelled"),
28
+ automateDeploymentEvent: deploymentTrigger("automate.deployment.event"),
29
+ automateDeploymentFailed: deploymentTrigger("automate.deployment.failed"),
30
+ automateDeploymentSucceeded: deploymentTrigger("automate.deployment.succeeded"),
31
+ };
32
+ /**
33
+ * Defines an automation-scoped lifecycle trigger.
34
+ *
35
+ * @param type - Registered trigger type.
36
+ */
37
+ function automationTrigger(type) {
38
+ return {
39
+ account: AUTOMATE_PROJECT_READ_ACCOUNT,
40
+ getDetails: ({ config }) => [
41
+ {
42
+ label: "Automation ID",
43
+ value: AUTOMATION_CONFIG_SCHEMA.parse(config).automationId,
44
+ },
45
+ ],
46
+ type,
47
+ };
48
+ }
49
+ /**
50
+ * Defines a project-scoped deployment lifecycle trigger.
51
+ *
52
+ * @param type - Registered trigger type.
53
+ */
54
+ function deploymentTrigger(type) {
55
+ return {
56
+ account: AUTOMATE_DEPLOYMENT_READ_ACCOUNT,
57
+ getDetails: ({ config }) => [
58
+ {
59
+ label: "Project ID",
60
+ value: DEPLOYMENT_CONFIG_SCHEMA.parse(config).projectId,
61
+ },
62
+ ],
63
+ type,
64
+ };
65
+ }
@@ -4252,6 +4252,118 @@ export declare const triggerDefinitions: {
4252
4252
  };
4253
4253
  readonly type: "asana.task.removed";
4254
4254
  };
4255
+ readonly automateAutomationDisabled: {
4256
+ readonly account: {
4257
+ readonly connectionOptions: readonly [{
4258
+ readonly connectionMethodId: "organization-api-key";
4259
+ readonly requiredScopes: readonly ["project:read"];
4260
+ }];
4261
+ readonly serviceId: "automate";
4262
+ };
4263
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4264
+ label: string;
4265
+ value: string;
4266
+ }[];
4267
+ readonly type: "automate.automation.disabled";
4268
+ };
4269
+ readonly automateAutomationEnabled: {
4270
+ readonly account: {
4271
+ readonly connectionOptions: readonly [{
4272
+ readonly connectionMethodId: "organization-api-key";
4273
+ readonly requiredScopes: readonly ["project:read"];
4274
+ }];
4275
+ readonly serviceId: "automate";
4276
+ };
4277
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4278
+ label: string;
4279
+ value: string;
4280
+ }[];
4281
+ readonly type: "automate.automation.enabled";
4282
+ };
4283
+ readonly automateAutomationStateChanged: {
4284
+ readonly account: {
4285
+ readonly connectionOptions: readonly [{
4286
+ readonly connectionMethodId: "organization-api-key";
4287
+ readonly requiredScopes: readonly ["project:read"];
4288
+ }];
4289
+ readonly serviceId: "automate";
4290
+ };
4291
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4292
+ label: string;
4293
+ value: string;
4294
+ }[];
4295
+ readonly type: "automate.automation.stateChanged";
4296
+ };
4297
+ readonly automateDeploymentAwaitingAuthorization: {
4298
+ readonly account: {
4299
+ readonly connectionOptions: readonly [{
4300
+ readonly connectionMethodId: "organization-api-key";
4301
+ readonly requiredScopes: readonly ["deployment:read"];
4302
+ }];
4303
+ readonly serviceId: "automate";
4304
+ };
4305
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4306
+ label: string;
4307
+ value: string;
4308
+ }[];
4309
+ readonly type: "automate.deployment.awaitingAuthorization";
4310
+ };
4311
+ readonly automateDeploymentCancelled: {
4312
+ readonly account: {
4313
+ readonly connectionOptions: readonly [{
4314
+ readonly connectionMethodId: "organization-api-key";
4315
+ readonly requiredScopes: readonly ["deployment:read"];
4316
+ }];
4317
+ readonly serviceId: "automate";
4318
+ };
4319
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4320
+ label: string;
4321
+ value: string;
4322
+ }[];
4323
+ readonly type: "automate.deployment.cancelled";
4324
+ };
4325
+ readonly automateDeploymentEvent: {
4326
+ readonly account: {
4327
+ readonly connectionOptions: readonly [{
4328
+ readonly connectionMethodId: "organization-api-key";
4329
+ readonly requiredScopes: readonly ["deployment:read"];
4330
+ }];
4331
+ readonly serviceId: "automate";
4332
+ };
4333
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4334
+ label: string;
4335
+ value: string;
4336
+ }[];
4337
+ readonly type: "automate.deployment.event";
4338
+ };
4339
+ readonly automateDeploymentFailed: {
4340
+ readonly account: {
4341
+ readonly connectionOptions: readonly [{
4342
+ readonly connectionMethodId: "organization-api-key";
4343
+ readonly requiredScopes: readonly ["deployment:read"];
4344
+ }];
4345
+ readonly serviceId: "automate";
4346
+ };
4347
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4348
+ label: string;
4349
+ value: string;
4350
+ }[];
4351
+ readonly type: "automate.deployment.failed";
4352
+ };
4353
+ readonly automateDeploymentSucceeded: {
4354
+ readonly account: {
4355
+ readonly connectionOptions: readonly [{
4356
+ readonly connectionMethodId: "organization-api-key";
4357
+ readonly requiredScopes: readonly ["deployment:read"];
4358
+ }];
4359
+ readonly serviceId: "automate";
4360
+ };
4361
+ readonly getDetails: ({ config }: TriggerPresentationContext) => {
4362
+ label: string;
4363
+ value: string;
4364
+ }[];
4365
+ readonly type: "automate.deployment.succeeded";
4366
+ };
4255
4367
  readonly airtableRecordCreated: {
4256
4368
  readonly account: {
4257
4369
  readonly connectionOptions: readonly [{
@@ -4374,6 +4486,118 @@ export declare const triggerCatalog: ({
4374
4486
  readonly serviceId: "airtable";
4375
4487
  };
4376
4488
  type: "airtable.record.updated";
4489
+ } | {
4490
+ name: string;
4491
+ account: {
4492
+ readonly connectionOptions: readonly [{
4493
+ readonly connectionMethodId: "organization-api-key";
4494
+ readonly requiredScopes: readonly ["project:read"];
4495
+ }];
4496
+ readonly serviceId: "automate";
4497
+ };
4498
+ getDetails: ({ config }: TriggerPresentationContext) => {
4499
+ label: string;
4500
+ value: string;
4501
+ }[];
4502
+ type: "automate.automation.disabled";
4503
+ } | {
4504
+ name: string;
4505
+ account: {
4506
+ readonly connectionOptions: readonly [{
4507
+ readonly connectionMethodId: "organization-api-key";
4508
+ readonly requiredScopes: readonly ["project:read"];
4509
+ }];
4510
+ readonly serviceId: "automate";
4511
+ };
4512
+ getDetails: ({ config }: TriggerPresentationContext) => {
4513
+ label: string;
4514
+ value: string;
4515
+ }[];
4516
+ type: "automate.automation.enabled";
4517
+ } | {
4518
+ name: string;
4519
+ account: {
4520
+ readonly connectionOptions: readonly [{
4521
+ readonly connectionMethodId: "organization-api-key";
4522
+ readonly requiredScopes: readonly ["project:read"];
4523
+ }];
4524
+ readonly serviceId: "automate";
4525
+ };
4526
+ getDetails: ({ config }: TriggerPresentationContext) => {
4527
+ label: string;
4528
+ value: string;
4529
+ }[];
4530
+ type: "automate.automation.stateChanged";
4531
+ } | {
4532
+ name: string;
4533
+ account: {
4534
+ readonly connectionOptions: readonly [{
4535
+ readonly connectionMethodId: "organization-api-key";
4536
+ readonly requiredScopes: readonly ["deployment:read"];
4537
+ }];
4538
+ readonly serviceId: "automate";
4539
+ };
4540
+ getDetails: ({ config }: TriggerPresentationContext) => {
4541
+ label: string;
4542
+ value: string;
4543
+ }[];
4544
+ type: "automate.deployment.awaitingAuthorization";
4545
+ } | {
4546
+ name: string;
4547
+ account: {
4548
+ readonly connectionOptions: readonly [{
4549
+ readonly connectionMethodId: "organization-api-key";
4550
+ readonly requiredScopes: readonly ["deployment:read"];
4551
+ }];
4552
+ readonly serviceId: "automate";
4553
+ };
4554
+ getDetails: ({ config }: TriggerPresentationContext) => {
4555
+ label: string;
4556
+ value: string;
4557
+ }[];
4558
+ type: "automate.deployment.cancelled";
4559
+ } | {
4560
+ name: string;
4561
+ account: {
4562
+ readonly connectionOptions: readonly [{
4563
+ readonly connectionMethodId: "organization-api-key";
4564
+ readonly requiredScopes: readonly ["deployment:read"];
4565
+ }];
4566
+ readonly serviceId: "automate";
4567
+ };
4568
+ getDetails: ({ config }: TriggerPresentationContext) => {
4569
+ label: string;
4570
+ value: string;
4571
+ }[];
4572
+ type: "automate.deployment.event";
4573
+ } | {
4574
+ name: string;
4575
+ account: {
4576
+ readonly connectionOptions: readonly [{
4577
+ readonly connectionMethodId: "organization-api-key";
4578
+ readonly requiredScopes: readonly ["deployment:read"];
4579
+ }];
4580
+ readonly serviceId: "automate";
4581
+ };
4582
+ getDetails: ({ config }: TriggerPresentationContext) => {
4583
+ label: string;
4584
+ value: string;
4585
+ }[];
4586
+ type: "automate.deployment.failed";
4587
+ } | {
4588
+ name: string;
4589
+ account: {
4590
+ readonly connectionOptions: readonly [{
4591
+ readonly connectionMethodId: "organization-api-key";
4592
+ readonly requiredScopes: readonly ["deployment:read"];
4593
+ }];
4594
+ readonly serviceId: "automate";
4595
+ };
4596
+ getDetails: ({ config }: TriggerPresentationContext) => {
4597
+ label: string;
4598
+ value: string;
4599
+ }[];
4600
+ type: "automate.deployment.succeeded";
4377
4601
  } | {
4378
4602
  name: string;
4379
4603
  account: {
@@ -1,4 +1,5 @@
1
1
  import { airtableTriggerDefinitions } from "./airtable.js";
2
+ import { automateTriggerDefinitions } from "./automate.js";
2
3
  import { asanaTriggerDefinitions } from "./asana.js";
3
4
  import { brevoTriggerDefinitions } from "./brevo.js";
4
5
  import { convexTriggerDefinitions } from "./convex.js";
@@ -22,6 +23,7 @@ export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndp
22
23
  /** Plain shared definitions for every public trigger type. */
23
24
  export const triggerDefinitions = {
24
25
  ...airtableTriggerDefinitions,
26
+ ...automateTriggerDefinitions,
25
27
  ...asanaTriggerDefinitions,
26
28
  ...brevoTriggerDefinitions,
27
29
  ...convexTriggerDefinitions,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/catalog",
3
- "version": "0.99.5",
3
+ "version": "0.102.0",
4
4
  "description": "Shared integration service and trigger definitions for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -21,6 +21,7 @@
21
21
  ".": "./src/index.ts",
22
22
  "./authoring": "./src/authoring.ts",
23
23
  "./triggers/airtable": "./src/triggers/airtable.ts",
24
+ "./triggers/automate": "./src/triggers/automate.ts",
24
25
  "./triggers/asana": "./src/triggers/asana.ts",
25
26
  "./triggers/brevo": "./src/triggers/brevo.ts",
26
27
  "./triggers/convex": "./src/triggers/convex.ts",
@@ -96,6 +97,11 @@
96
97
  "types": "./dist/triggers/airtable.d.ts",
97
98
  "default": "./dist/triggers/airtable.js"
98
99
  },
100
+ "./triggers/automate": {
101
+ "bun": "./src/triggers/automate.ts",
102
+ "types": "./dist/triggers/automate.d.ts",
103
+ "default": "./dist/triggers/automate.js"
104
+ },
99
105
  "./triggers/asana": {
100
106
  "bun": "./src/triggers/asana.ts",
101
107
  "types": "./dist/triggers/asana.d.ts",
package/src/catalog.ts CHANGED
@@ -64,7 +64,8 @@ export const automateService = defineIntegrationService({
64
64
  type: "form",
65
65
  },
66
66
  ],
67
- description: "Connect an Automate.ax organization for cross-account actions.",
67
+ description:
68
+ "Connect an Automate.ax organization for management actions and lifecycle triggers.",
68
69
  id: "automate",
69
70
  name: "Automate.ax",
70
71
  })
@@ -0,0 +1,80 @@
1
+ import type { IntegrationAccountRequirement, TriggerDefinition } from "../types"
2
+ import * as z from "zod/mini"
3
+
4
+ const AUTOMATE_PROJECT_READ_ACCOUNT = {
5
+ connectionOptions: [
6
+ {
7
+ connectionMethodId: "organization-api-key",
8
+ requiredScopes: ["project:read"],
9
+ },
10
+ ],
11
+ serviceId: "automate",
12
+ } as const satisfies IntegrationAccountRequirement
13
+
14
+ const AUTOMATE_DEPLOYMENT_READ_ACCOUNT = {
15
+ connectionOptions: [
16
+ {
17
+ connectionMethodId: "organization-api-key",
18
+ requiredScopes: ["deployment:read"],
19
+ },
20
+ ],
21
+ serviceId: "automate",
22
+ } as const satisfies IntegrationAccountRequirement
23
+
24
+ const AUTOMATION_CONFIG_SCHEMA = z.object({ automationId: z.string() })
25
+ const DEPLOYMENT_CONFIG_SCHEMA = z.object({ projectId: z.string() })
26
+
27
+ export const automateTriggerDefinitions = {
28
+ automateAutomationDisabled: automationTrigger("automate.automation.disabled"),
29
+ automateAutomationEnabled: automationTrigger("automate.automation.enabled"),
30
+ automateAutomationStateChanged: automationTrigger(
31
+ "automate.automation.stateChanged",
32
+ ),
33
+ automateDeploymentAwaitingAuthorization: deploymentTrigger(
34
+ "automate.deployment.awaitingAuthorization",
35
+ ),
36
+ automateDeploymentCancelled: deploymentTrigger(
37
+ "automate.deployment.cancelled",
38
+ ),
39
+ automateDeploymentEvent: deploymentTrigger("automate.deployment.event"),
40
+ automateDeploymentFailed: deploymentTrigger("automate.deployment.failed"),
41
+ automateDeploymentSucceeded: deploymentTrigger(
42
+ "automate.deployment.succeeded",
43
+ ),
44
+ } as const satisfies Record<string, TriggerDefinition>
45
+
46
+ /**
47
+ * Defines an automation-scoped lifecycle trigger.
48
+ *
49
+ * @param type - Registered trigger type.
50
+ */
51
+ function automationTrigger<TType extends string>(type: TType) {
52
+ return {
53
+ account: AUTOMATE_PROJECT_READ_ACCOUNT,
54
+ getDetails: ({ config }) => [
55
+ {
56
+ label: "Automation ID",
57
+ value: AUTOMATION_CONFIG_SCHEMA.parse(config).automationId,
58
+ },
59
+ ],
60
+ type,
61
+ } as const satisfies TriggerDefinition
62
+ }
63
+
64
+ /**
65
+ * Defines a project-scoped deployment lifecycle trigger.
66
+ *
67
+ * @param type - Registered trigger type.
68
+ */
69
+ function deploymentTrigger<TType extends string>(type: TType) {
70
+ return {
71
+ account: AUTOMATE_DEPLOYMENT_READ_ACCOUNT,
72
+ getDetails: ({ config }) => [
73
+ {
74
+ label: "Project ID",
75
+ value: DEPLOYMENT_CONFIG_SCHEMA.parse(config).projectId,
76
+ },
77
+ ],
78
+ type,
79
+ } as const satisfies TriggerDefinition
80
+ }
@@ -1,4 +1,5 @@
1
1
  import { airtableTriggerDefinitions } from "./airtable"
2
+ import { automateTriggerDefinitions } from "./automate"
2
3
  import { asanaTriggerDefinitions } from "./asana"
3
4
  import { brevoTriggerDefinitions } from "./brevo"
4
5
  import { convexTriggerDefinitions } from "./convex"
@@ -46,6 +47,7 @@ export {
46
47
  /** Plain shared definitions for every public trigger type. */
47
48
  export const triggerDefinitions = {
48
49
  ...airtableTriggerDefinitions,
50
+ ...automateTriggerDefinitions,
49
51
  ...asanaTriggerDefinitions,
50
52
  ...brevoTriggerDefinitions,
51
53
  ...convexTriggerDefinitions,