sim-setup 1.0.10-preview.99.1 → 1.0.10

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 (2) hide show
  1. package/dist/index.js +298 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1670,7 +1670,7 @@ var init_env_capabilities = __esm(() => {
1670
1670
  var integrations_default;
1671
1671
  var init_integrations = __esm(() => {
1672
1672
  integrations_default = {
1673
- updatedAt: "2026-09-04",
1673
+ updatedAt: "2026-09-05",
1674
1674
  integrations: [
1675
1675
  {
1676
1676
  type: "onepassword",
@@ -2704,7 +2704,7 @@ var init_integrations = __esm(() => {
2704
2704
  slug: "amazon-sqs",
2705
2705
  name: "Amazon SQS",
2706
2706
  description: "Connect to Amazon SQS",
2707
- longDescription: "Integrate Amazon SQS into the workflow. Can send messages to SQS queues.",
2707
+ longDescription: "Integrate Amazon SQS into the workflow. Send and receive messages one at a time or in batches of ten, delete messages, extend visibility timeouts, manage queues along with their attributes and tags, and redrive messages out of a dead-letter queue.",
2708
2708
  bgColor: "linear-gradient(45deg, #2E27AD 0%, #527FFF 100%)",
2709
2709
  iconName: "SQSIcon",
2710
2710
  docsUrl: "https://docs.sim.ai/integrations/sqs",
@@ -2712,12 +2712,92 @@ var init_integrations = __esm(() => {
2712
2712
  {
2713
2713
  name: "Send Message",
2714
2714
  description: "Send a message to an Amazon SQS queue"
2715
+ },
2716
+ {
2717
+ name: "Send Message Batch",
2718
+ description: "Send up to 10 messages to an Amazon SQS queue in a single request"
2719
+ },
2720
+ {
2721
+ name: "Receive Message",
2722
+ description: "Receive up to 10 messages from an Amazon SQS queue, with optional long polling"
2723
+ },
2724
+ {
2725
+ name: "Delete Message",
2726
+ description: "Delete a received message from an Amazon SQS queue using its receipt handle"
2727
+ },
2728
+ {
2729
+ name: "Delete Message Batch",
2730
+ description: "Delete up to 10 received messages from an Amazon SQS queue in a single request"
2731
+ },
2732
+ {
2733
+ name: "Change Message Visibility",
2734
+ description: "Change how long a received Amazon SQS message stays hidden from other consumers"
2735
+ },
2736
+ {
2737
+ name: "Change Message Visibility Batch",
2738
+ description: "Change the visibility timeout of up to 10 received Amazon SQS messages at once"
2739
+ },
2740
+ {
2741
+ name: "List Queues",
2742
+ description: "List Amazon SQS queue URLs in a region, optionally filtered by name prefix"
2743
+ },
2744
+ {
2745
+ name: "Get Queue URL",
2746
+ description: "Resolve an Amazon SQS queue name to its queue URL"
2747
+ },
2748
+ {
2749
+ name: "Get Queue Attributes",
2750
+ description: "Read configuration and message-count attributes of an Amazon SQS queue"
2751
+ },
2752
+ {
2753
+ name: "Set Queue Attributes",
2754
+ description: "Update configuration attributes of an existing Amazon SQS queue"
2755
+ },
2756
+ {
2757
+ name: "Create Queue",
2758
+ description: "Create a standard or FIFO Amazon SQS queue"
2759
+ },
2760
+ {
2761
+ name: "Delete Queue",
2762
+ description: "Delete an Amazon SQS queue and every message still in it"
2763
+ },
2764
+ {
2765
+ name: "Purge Queue",
2766
+ description: "Delete every message in an Amazon SQS queue while keeping the queue itself"
2767
+ },
2768
+ {
2769
+ name: "List Dead-Letter Source Queues",
2770
+ description: "List the Amazon SQS queues that use a given queue as their dead-letter queue"
2771
+ },
2772
+ {
2773
+ name: "List Queue Tags",
2774
+ description: "List the cost-allocation tags attached to an Amazon SQS queue"
2775
+ },
2776
+ {
2777
+ name: "Tag Queue",
2778
+ description: "Add or overwrite cost-allocation tags on an Amazon SQS queue"
2779
+ },
2780
+ {
2781
+ name: "Untag Queue",
2782
+ description: "Remove cost-allocation tags from an Amazon SQS queue"
2783
+ },
2784
+ {
2785
+ name: "Start Message Move Task",
2786
+ description: "Start redriving messages out of an Amazon SQS dead-letter queue"
2787
+ },
2788
+ {
2789
+ name: "List Message Move Tasks",
2790
+ description: "List the most recent message move tasks for an Amazon SQS source queue"
2791
+ },
2792
+ {
2793
+ name: "Cancel Message Move Task",
2794
+ description: "Cancel an in-progress Amazon SQS message move task"
2715
2795
  }
2716
2796
  ],
2717
- operationCount: 1,
2797
+ operationCount: 21,
2718
2798
  triggers: [],
2719
2799
  triggerCount: 0,
2720
- authType: "none",
2800
+ authType: "api-key",
2721
2801
  category: "tools",
2722
2802
  integrationType: "devops",
2723
2803
  tags: ["cloud", "messaging", "automation"]
@@ -3898,6 +3978,10 @@ var init_integrations = __esm(() => {
3898
3978
  name: "List Policies",
3899
3979
  description: "List managed IAM policies"
3900
3980
  },
3981
+ {
3982
+ name: "Get Policy",
3983
+ description: "Get details about a managed IAM policy, including its description — the field ListPolicies never returns"
3984
+ },
3901
3985
  {
3902
3986
  name: "Create Access Key",
3903
3987
  description: "Create a new access key pair for an IAM user"
@@ -3906,6 +3990,14 @@ var init_integrations = __esm(() => {
3906
3990
  name: "Delete Access Key",
3907
3991
  description: "Delete an access key pair for an IAM user"
3908
3992
  },
3993
+ {
3994
+ name: "List Access Keys",
3995
+ description: "List an IAM user's access key IDs with their status and age — use to find stale keys and to confirm which keys remain after a rotation"
3996
+ },
3997
+ {
3998
+ name: "Update Access Key",
3999
+ description: "Activate or deactivate an IAM access key — deactivate an old key and verify nothing breaks before deleting it"
4000
+ },
3909
4001
  {
3910
4002
  name: "List Groups",
3911
4003
  description: "List IAM groups in your AWS account"
@@ -3931,7 +4023,7 @@ var init_integrations = __esm(() => {
3931
4023
  description: "Simulate whether a user, role, or group is allowed to perform specific AWS actions — useful for pre-flight access checks"
3932
4024
  }
3933
4025
  ],
3934
- operationCount: 21,
4026
+ operationCount: 24,
3935
4027
  triggers: [],
3936
4028
  triggerCount: 0,
3937
4029
  authType: "api-key",
@@ -3969,14 +4061,26 @@ var init_integrations = __esm(() => {
3969
4061
  name: "Get User",
3970
4062
  description: "Look up a user in the Identity Store by email address"
3971
4063
  },
4064
+ {
4065
+ name: "Describe User",
4066
+ description: "Resolve an Identity Store user ID to the user behind it. Use to turn the principalId on an account assignment into a name and email."
4067
+ },
3972
4068
  {
3973
4069
  name: "Get Group",
3974
4070
  description: "Look up a group in the Identity Store by display name"
3975
4071
  },
4072
+ {
4073
+ name: "Describe Group",
4074
+ description: "Resolve an Identity Store group ID to the group behind it. Use to turn the principalId on an account assignment into a group name."
4075
+ },
3976
4076
  {
3977
4077
  name: "List Groups",
3978
4078
  description: "List all groups in the Identity Store"
3979
4079
  },
4080
+ {
4081
+ name: "List Group Memberships",
4082
+ description: "List the users who belong to an Identity Store group"
4083
+ },
3980
4084
  {
3981
4085
  name: "Create Account Assignment",
3982
4086
  description: "Grant a user or group access to an AWS account via a permission set (temporary elevated access)"
@@ -3994,11 +4098,15 @@ var init_integrations = __esm(() => {
3994
4098
  description: "Check the deprovisioning status of an account assignment deletion request"
3995
4099
  },
3996
4100
  {
3997
- name: "List Account Assignments",
3998
- description: "List all account assignments for a specific user or group across all accounts"
4101
+ name: "List Account Assignments For Principal",
4102
+ description: "List every account and permission set a specific user or group is assigned. Use List Assignments For Account to go the other way, from an account to its principals."
4103
+ },
4104
+ {
4105
+ name: "List Assignments For Account",
4106
+ description: "List every principal assigned a specific permission set on a specific AWS account. Use for per-account access reviews."
3999
4107
  }
4000
4108
  ],
4001
- operationCount: 12,
4109
+ operationCount: 16,
4002
4110
  triggers: [],
4003
4111
  triggerCount: 0,
4004
4112
  authType: "api-key",
@@ -4203,6 +4311,113 @@ var init_integrations = __esm(() => {
4203
4311
  integrationType: "security",
4204
4312
  tags: ["cloud", "identity"]
4205
4313
  },
4314
+ {
4315
+ type: "ssm",
4316
+ slug: "aws-systems-manager",
4317
+ name: "AWS Systems Manager",
4318
+ description: "Run commands, manage parameters, and audit managed nodes",
4319
+ longDescription: "Integrate AWS Systems Manager into your workflow. Run commands on managed nodes, read and write Parameter Store values, inspect node inventory and patch compliance, and drive Automation runbooks.",
4320
+ bgColor: "#E7157B",
4321
+ iconName: "SSMIcon",
4322
+ docsUrl: "https://docs.sim.ai/integrations/ssm",
4323
+ operations: [
4324
+ {
4325
+ name: "Send Command",
4326
+ description: "Run an SSM document on managed nodes with AWS Systems Manager Run Command"
4327
+ },
4328
+ {
4329
+ name: "List Commands",
4330
+ description: "List Run Command executions in an AWS account"
4331
+ },
4332
+ {
4333
+ name: "List Command Invocations",
4334
+ description: "List the per-node invocations of Run Command executions"
4335
+ },
4336
+ {
4337
+ name: "Get Command Invocation",
4338
+ description: "Read the output and status of a Run Command execution on one managed node"
4339
+ },
4340
+ {
4341
+ name: "Cancel Command",
4342
+ description: "Cancel an in-flight Run Command execution"
4343
+ },
4344
+ {
4345
+ name: "Get Parameter",
4346
+ description: "Read one parameter from AWS Systems Manager Parameter Store"
4347
+ },
4348
+ {
4349
+ name: "Get Parameters",
4350
+ description: "Read up to ten parameters from AWS Systems Manager Parameter Store by name"
4351
+ },
4352
+ {
4353
+ name: "Get Parameters By Path",
4354
+ description: "Read parameters under a Parameter Store hierarchy path"
4355
+ },
4356
+ {
4357
+ name: "Put Parameter",
4358
+ description: "Create or update a parameter in AWS Systems Manager Parameter Store"
4359
+ },
4360
+ {
4361
+ name: "Delete Parameter",
4362
+ description: "Delete a parameter from AWS Systems Manager Parameter Store"
4363
+ },
4364
+ {
4365
+ name: "Describe Parameters",
4366
+ description: "List Parameter Store parameter metadata without reading any values"
4367
+ },
4368
+ {
4369
+ name: "Describe Instance Information",
4370
+ description: "List managed nodes registered with AWS Systems Manager and their agent status"
4371
+ },
4372
+ {
4373
+ name: "Describe Instance Patches",
4374
+ description: "List the patches reported for one managed node"
4375
+ },
4376
+ {
4377
+ name: "Describe Instance Patch States",
4378
+ description: "Read patch compliance summaries for a set of managed nodes"
4379
+ },
4380
+ {
4381
+ name: "List Compliance Items",
4382
+ description: "List individual compliance findings reported to AWS Systems Manager"
4383
+ },
4384
+ {
4385
+ name: "List Compliance Summaries",
4386
+ description: "Read compliant and non-compliant counts per compliance type"
4387
+ },
4388
+ {
4389
+ name: "Start Automation Execution",
4390
+ description: "Start an AWS Systems Manager Automation runbook execution"
4391
+ },
4392
+ {
4393
+ name: "Describe Automation Executions",
4394
+ description: "List Automation runbook executions in an AWS account"
4395
+ },
4396
+ {
4397
+ name: "Get Automation Execution",
4398
+ description: "Read the status, outputs, and step results of one Automation execution"
4399
+ },
4400
+ {
4401
+ name: "Stop Automation Execution",
4402
+ description: "Stop a running AWS Systems Manager Automation execution"
4403
+ },
4404
+ {
4405
+ name: "List Documents",
4406
+ description: "List SSM documents and runbooks available to an AWS account"
4407
+ },
4408
+ {
4409
+ name: "Get Document",
4410
+ description: "Read the content of an SSM document or Automation runbook"
4411
+ }
4412
+ ],
4413
+ operationCount: 22,
4414
+ triggers: [],
4415
+ triggerCount: 0,
4416
+ authType: "api-key",
4417
+ category: "tools",
4418
+ integrationType: "devops",
4419
+ tags: ["cloud", "automation"]
4420
+ },
4206
4421
  {
4207
4422
  type: "textract_v2",
4208
4423
  slug: "aws-textract",
@@ -6728,6 +6943,81 @@ var init_integrations = __esm(() => {
6728
6943
  integrationType: "devops",
6729
6944
  tags: ["cloud"]
6730
6945
  },
6946
+ {
6947
+ type: "cloudtrail",
6948
+ slug: "cloudtrail",
6949
+ name: "CloudTrail",
6950
+ description: "Audit who did what in AWS with CloudTrail event history and Lake queries",
6951
+ longDescription: "Integrate AWS CloudTrail into workflows. Look up the last 90 days of management and Insights events by user, event name, resource, or access key; inspect trail configuration, logging status, and event selectors; and run SQL queries against CloudTrail Lake event data stores. This block never changes trail or event data store configuration, and never starts or stops logging. Starting and cancelling a Lake query are the only actions that are not reads, and AWS bills Lake queries on the data they scan. Requires AWS access key and secret access key.",
6952
+ bgColor: "linear-gradient(45deg, #B0084D 0%, #FF4F8B 100%)",
6953
+ iconName: "CloudTrailIcon",
6954
+ docsUrl: "https://docs.sim.ai/integrations/cloudtrail",
6955
+ operations: [
6956
+ {
6957
+ name: "Look Up Events",
6958
+ description: "Look up AWS CloudTrail management or Insights events from the last 90 days in a Region"
6959
+ },
6960
+ {
6961
+ name: "Describe Trails",
6962
+ description: "Retrieve the full configuration of one or more CloudTrail trails in the current Region"
6963
+ },
6964
+ {
6965
+ name: "Get Trail",
6966
+ description: "Retrieve the settings of a single CloudTrail trail by name or ARN"
6967
+ },
6968
+ {
6969
+ name: "Get Trail Status",
6970
+ description: "Check whether a CloudTrail trail is logging and surface its most recent delivery errors"
6971
+ },
6972
+ {
6973
+ name: "List Trails",
6974
+ description: "List the ARN, name, and home Region of every CloudTrail trail visible to the account"
6975
+ },
6976
+ {
6977
+ name: "Get Event Selectors",
6978
+ description: "Read which management, data, and network activity events a CloudTrail trail is configured to log"
6979
+ },
6980
+ {
6981
+ name: "Get Insight Selectors",
6982
+ description: "Read which CloudTrail Insights types are enabled on a trail or event data store"
6983
+ },
6984
+ {
6985
+ name: "Start Lake Query",
6986
+ description: "Start a CloudTrail Lake SQL query over an event data store"
6987
+ },
6988
+ {
6989
+ name: "Describe Lake Query",
6990
+ description: "Check the status, run time, and scan statistics of a CloudTrail Lake query"
6991
+ },
6992
+ {
6993
+ name: "Get Lake Query Results",
6994
+ description: "Fetch a page of result rows from a finished CloudTrail Lake query"
6995
+ },
6996
+ {
6997
+ name: "Cancel Lake Query",
6998
+ description: "Cancel a running CloudTrail Lake query"
6999
+ },
7000
+ {
7001
+ name: "List Event Data Stores",
7002
+ description: "List the CloudTrail Lake event data stores in the account for the current Region"
7003
+ },
7004
+ {
7005
+ name: "Get Event Data Store",
7006
+ description: "Retrieve the configuration of a single CloudTrail Lake event data store"
7007
+ },
7008
+ {
7009
+ name: "List Tags",
7010
+ description: "List the tags on CloudTrail trails, event data stores, dashboards, or channels"
7011
+ }
7012
+ ],
7013
+ operationCount: 14,
7014
+ triggers: [],
7015
+ triggerCount: 0,
7016
+ authType: "api-key",
7017
+ category: "tools",
7018
+ integrationType: "security",
7019
+ tags: ["cloud", "monitoring", "identity"]
7020
+ },
6731
7021
  {
6732
7022
  type: "cloudwatch",
6733
7023
  slug: "cloudwatch",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-setup",
3
- "version": "1.0.10-preview.99.1",
3
+ "version": "1.0.10",
4
4
  "description": "Set up and manage a self-hosted Sim installation",
5
5
  "type": "module",
6
6
  "bin": {