sim-setup 1.0.1-preview.26.1 → 1.0.1-preview.27.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.
- package/dist/index.js +99 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4374,7 +4374,7 @@ var init_integrations = __esm(() => {
|
|
|
4374
4374
|
slug: "bitbucket",
|
|
4375
4375
|
name: "Bitbucket",
|
|
4376
4376
|
description: "Work with Bitbucket Cloud repositories, pull requests, and pipelines",
|
|
4377
|
-
longDescription: "Connect Bitbucket Cloud to inspect repositories and source, collaborate on pull requests,
|
|
4377
|
+
longDescription: "Connect Bitbucket Cloud to inspect repositories and source, collaborate on pull requests, diagnose or control pipelines, and start workflows from repository and pull request events. OAuth is used for actions and automatic webhook management.",
|
|
4378
4378
|
bgColor: "#FFFFFF",
|
|
4379
4379
|
iconName: "BitbucketIcon",
|
|
4380
4380
|
docsUrl: "https://docs.sim.ai/integrations/bitbucket",
|
|
@@ -4501,8 +4501,104 @@ var init_integrations = __esm(() => {
|
|
|
4501
4501
|
}
|
|
4502
4502
|
],
|
|
4503
4503
|
operationCount: 30,
|
|
4504
|
-
triggers: [
|
|
4505
|
-
|
|
4504
|
+
triggers: [
|
|
4505
|
+
{
|
|
4506
|
+
id: "bitbucket_push",
|
|
4507
|
+
name: "Bitbucket Push",
|
|
4508
|
+
description: "Trigger workflow when commits are pushed to a Bitbucket repository"
|
|
4509
|
+
},
|
|
4510
|
+
{
|
|
4511
|
+
id: "bitbucket_repository_forked",
|
|
4512
|
+
name: "Bitbucket Repository Forked",
|
|
4513
|
+
description: "Trigger workflow when a Bitbucket repository is forked"
|
|
4514
|
+
},
|
|
4515
|
+
{
|
|
4516
|
+
id: "bitbucket_repository_updated",
|
|
4517
|
+
name: "Bitbucket Repository Updated",
|
|
4518
|
+
description: "Trigger workflow when a Bitbucket repository is updated"
|
|
4519
|
+
},
|
|
4520
|
+
{
|
|
4521
|
+
id: "bitbucket_commit_comment_created",
|
|
4522
|
+
name: "Bitbucket Commit Comment Created",
|
|
4523
|
+
description: "Trigger workflow when a comment is created on a Bitbucket commit"
|
|
4524
|
+
},
|
|
4525
|
+
{
|
|
4526
|
+
id: "bitbucket_build_status_created",
|
|
4527
|
+
name: "Bitbucket Build Status Created",
|
|
4528
|
+
description: "Trigger workflow when a build status is created for a Bitbucket commit"
|
|
4529
|
+
},
|
|
4530
|
+
{
|
|
4531
|
+
id: "bitbucket_build_status_updated",
|
|
4532
|
+
name: "Bitbucket Build Status Updated",
|
|
4533
|
+
description: "Trigger workflow when a build status is updated for a Bitbucket commit"
|
|
4534
|
+
},
|
|
4535
|
+
{
|
|
4536
|
+
id: "bitbucket_pull_request_created",
|
|
4537
|
+
name: "Bitbucket Pull Request Created",
|
|
4538
|
+
description: "Trigger workflow when a Bitbucket pull request is created"
|
|
4539
|
+
},
|
|
4540
|
+
{
|
|
4541
|
+
id: "bitbucket_pull_request_updated",
|
|
4542
|
+
name: "Bitbucket Pull Request Updated",
|
|
4543
|
+
description: "Trigger workflow when a Bitbucket pull request is updated"
|
|
4544
|
+
},
|
|
4545
|
+
{
|
|
4546
|
+
id: "bitbucket_pull_request_approved",
|
|
4547
|
+
name: "Bitbucket Pull Request Approved",
|
|
4548
|
+
description: "Trigger workflow when a Bitbucket pull request is approved"
|
|
4549
|
+
},
|
|
4550
|
+
{
|
|
4551
|
+
id: "bitbucket_pull_request_approval_removed",
|
|
4552
|
+
name: "Bitbucket Pull Request Approval Removed",
|
|
4553
|
+
description: "Trigger workflow when approval is removed from a Bitbucket pull request"
|
|
4554
|
+
},
|
|
4555
|
+
{
|
|
4556
|
+
id: "bitbucket_pull_request_changes_requested",
|
|
4557
|
+
name: "Bitbucket Pull Request Changes Requested",
|
|
4558
|
+
description: "Trigger workflow when changes are requested on a Bitbucket pull request"
|
|
4559
|
+
},
|
|
4560
|
+
{
|
|
4561
|
+
id: "bitbucket_pull_request_changes_request_removed",
|
|
4562
|
+
name: "Bitbucket Pull Request Changes Request Removed",
|
|
4563
|
+
description: "Trigger workflow when a changes request is removed from a Bitbucket pull request"
|
|
4564
|
+
},
|
|
4565
|
+
{
|
|
4566
|
+
id: "bitbucket_pull_request_merged",
|
|
4567
|
+
name: "Bitbucket Pull Request Merged",
|
|
4568
|
+
description: "Trigger workflow when a Bitbucket pull request is merged"
|
|
4569
|
+
},
|
|
4570
|
+
{
|
|
4571
|
+
id: "bitbucket_pull_request_declined",
|
|
4572
|
+
name: "Bitbucket Pull Request Declined",
|
|
4573
|
+
description: "Trigger workflow when a Bitbucket pull request is declined"
|
|
4574
|
+
},
|
|
4575
|
+
{
|
|
4576
|
+
id: "bitbucket_pull_request_comment_created",
|
|
4577
|
+
name: "Bitbucket Pull Request Comment Created",
|
|
4578
|
+
description: "Trigger workflow when a comment is created on a Bitbucket pull request"
|
|
4579
|
+
},
|
|
4580
|
+
{
|
|
4581
|
+
id: "bitbucket_pull_request_comment_updated",
|
|
4582
|
+
name: "Bitbucket Pull Request Comment Updated",
|
|
4583
|
+
description: "Trigger workflow when a comment is updated on a Bitbucket pull request"
|
|
4584
|
+
},
|
|
4585
|
+
{
|
|
4586
|
+
id: "bitbucket_pull_request_comment_deleted",
|
|
4587
|
+
name: "Bitbucket Pull Request Comment Deleted",
|
|
4588
|
+
description: "Trigger workflow when a comment is deleted from a Bitbucket pull request"
|
|
4589
|
+
},
|
|
4590
|
+
{
|
|
4591
|
+
id: "bitbucket_pull_request_comment_resolved",
|
|
4592
|
+
name: "Bitbucket Pull Request Comment Resolved",
|
|
4593
|
+
description: "Trigger workflow when a comment is resolved on a Bitbucket pull request"
|
|
4594
|
+
},
|
|
4595
|
+
{
|
|
4596
|
+
id: "bitbucket_pull_request_comment_reopened",
|
|
4597
|
+
name: "Bitbucket Pull Request Comment Reopened",
|
|
4598
|
+
description: "Trigger workflow when a resolved comment is reopened on a Bitbucket pull request"
|
|
4599
|
+
}
|
|
4600
|
+
],
|
|
4601
|
+
triggerCount: 19,
|
|
4506
4602
|
authType: "oauth",
|
|
4507
4603
|
oauthServiceId: "bitbucket",
|
|
4508
4604
|
category: "tools",
|