sim-setup 1.0.10-preview.98.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 +668 -10
  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",
@@ -19615,6 +19905,360 @@ var init_integrations = __esm(() => {
19615
19905
  integrationType: "analytics",
19616
19906
  tags: ["data-analytics", "enrichment", "document-processing"]
19617
19907
  },
19908
+ {
19909
+ type: "quickbooks",
19910
+ slug: "quickbooks",
19911
+ name: "QuickBooks",
19912
+ description: "Manage QuickBooks Online company, transactions, reports, emails, PDFs, and attachments",
19913
+ longDescription: "Connect one QuickBooks Online company to manage bounded master-data, sales, purchasing, receivables, payables, accounting, reports, transaction delivery, and document workflows.",
19914
+ bgColor: "#2CA01C",
19915
+ iconName: "QuickBooksIcon",
19916
+ docsUrl: "https://docs.sim.ai/integrations/quickbooks",
19917
+ operations: [
19918
+ {
19919
+ name: "Get Company Info",
19920
+ description: "Get information about the connected QuickBooks Online company"
19921
+ },
19922
+ {
19923
+ name: "Read Master Data",
19924
+ description: "List or read one account, class, customer, department, employee, item, or vendor"
19925
+ },
19926
+ {
19927
+ name: "Create Customer",
19928
+ description: "Create a customer in the connected QuickBooks Online company"
19929
+ },
19930
+ {
19931
+ name: "Update Customer",
19932
+ description: "Sparse-update a customer in the connected QuickBooks Online company"
19933
+ },
19934
+ {
19935
+ name: "Create Employee",
19936
+ description: "Create a non-payroll employee profile in the connected QuickBooks Online company"
19937
+ },
19938
+ {
19939
+ name: "Update Employee",
19940
+ description: "Read, merge, and full-update a non-payroll employee profile"
19941
+ },
19942
+ {
19943
+ name: "Create Vendor",
19944
+ description: "Create a vendor in the connected QuickBooks Online company"
19945
+ },
19946
+ {
19947
+ name: "Update Vendor",
19948
+ description: "Read, merge, and full-update a vendor in QuickBooks Online"
19949
+ },
19950
+ {
19951
+ name: "Create Item",
19952
+ description: "Create a Service or Non-inventory item in QuickBooks Online"
19953
+ },
19954
+ {
19955
+ name: "Update Item",
19956
+ description: "Read, merge, and full-update an item without changing its type"
19957
+ },
19958
+ {
19959
+ name: "Read Sales Transactions",
19960
+ description: "List or read one estimate, invoice, sales receipt, payment, credit memo, or refund receipt"
19961
+ },
19962
+ {
19963
+ name: "Create Estimate",
19964
+ description: "Create an estimate with bounded item and description lines"
19965
+ },
19966
+ {
19967
+ name: "Update Estimate",
19968
+ description: "Sparse-update an estimate using its current sync token"
19969
+ },
19970
+ {
19971
+ name: "Create Invoice",
19972
+ description: "Create an invoice without emailing or collecting payment"
19973
+ },
19974
+ {
19975
+ name: "Update Invoice",
19976
+ description: "Sparse-update an invoice using its current sync token"
19977
+ },
19978
+ {
19979
+ name: "Void Invoice",
19980
+ description: "Void an invoice after explicit confirmation"
19981
+ },
19982
+ {
19983
+ name: "Create Sales Receipt",
19984
+ description: "Create a sales receipt for a completed customer sale"
19985
+ },
19986
+ {
19987
+ name: "Update Sales Receipt",
19988
+ description: "Sparse-update a sales receipt using its current sync token"
19989
+ },
19990
+ {
19991
+ name: "Create Customer Payment",
19992
+ description: "Record a customer payment with optional bounded invoice allocations"
19993
+ },
19994
+ {
19995
+ name: "Update Customer Payment",
19996
+ description: "Read, merge, and full-update a customer payment using its current sync token"
19997
+ },
19998
+ {
19999
+ name: "Void Customer Payment",
20000
+ description: "Void a customer payment after explicit confirmation"
20001
+ },
20002
+ {
20003
+ name: "Create Credit Memo",
20004
+ description: "Create a customer credit memo with bounded sales lines"
20005
+ },
20006
+ {
20007
+ name: "Update Credit Memo",
20008
+ description: "Read, merge, and full-update a credit memo using its current sync token"
20009
+ },
20010
+ {
20011
+ name: "Create Refund Receipt",
20012
+ description: "Create a customer refund receipt against a required deposit account"
20013
+ },
20014
+ {
20015
+ name: "Update Refund Receipt",
20016
+ description: "Read, merge, and full-update a refund receipt using its current sync token"
20017
+ },
20018
+ {
20019
+ name: "Read Purchasing Transactions",
20020
+ description: "List or read one purchase order, bill, bill payment, vendor credit, or purchase"
20021
+ },
20022
+ {
20023
+ name: "Create Purchase Order",
20024
+ description: "Create a purchase order with bounded expense lines"
20025
+ },
20026
+ {
20027
+ name: "Update Purchase Order",
20028
+ description: "Read, merge, and full-update purchase-order header fields"
20029
+ },
20030
+ {
20031
+ name: "Create Bill",
20032
+ description: "Create a vendor bill with optional Purchase Order line links without paying it"
20033
+ },
20034
+ {
20035
+ name: "Update Bill",
20036
+ description: "Read, merge, and full-update bill header fields using its current sync token"
20037
+ },
20038
+ {
20039
+ name: "Create Bill Payment",
20040
+ description: "Record a check or credit-card payment allocated to one or more bills"
20041
+ },
20042
+ {
20043
+ name: "Update Bill Payment",
20044
+ description: "Read, merge, and full-update a BillPayment without changing allocations"
20045
+ },
20046
+ {
20047
+ name: "Create Vendor Credit",
20048
+ description: "Create a vendor credit without applying it to a bill"
20049
+ },
20050
+ {
20051
+ name: "Update Vendor Credit",
20052
+ description: "Read, merge, and full-update vendor-credit header fields"
20053
+ },
20054
+ {
20055
+ name: "Create Purchase or Expense",
20056
+ description: "Record a cash, check, or credit-card purchase with bounded expense lines"
20057
+ },
20058
+ {
20059
+ name: "Update Purchase or Expense",
20060
+ description: "Read, merge, and full-update purchase header fields without changing lines"
20061
+ },
20062
+ {
20063
+ name: "Read Accounting Transactions",
20064
+ description: "List or read one journal entry, deposit, or transfer"
20065
+ },
20066
+ {
20067
+ name: "Create Journal Entry",
20068
+ description: "Post a balanced journal entry after explicit confirmation"
20069
+ },
20070
+ {
20071
+ name: "Update Journal Entry",
20072
+ description: "Sparse-update journal-entry header fields after explicit confirmation"
20073
+ },
20074
+ {
20075
+ name: "Create Deposit",
20076
+ description: "Create a deposit with bounded account lines"
20077
+ },
20078
+ {
20079
+ name: "Update Deposit",
20080
+ description: "Sparse-update deposit header fields using the current sync token and destination account"
20081
+ },
20082
+ {
20083
+ name: "Run Financial Report",
20084
+ description: "Run a fixed QuickBooks financial report with verified accountant-focused filters"
20085
+ },
20086
+ {
20087
+ name: "Email Transaction",
20088
+ description: "Send a supported QuickBooks transaction by email. This causes an external email and Intuit limits sandbox email delivery."
20089
+ },
20090
+ {
20091
+ name: "Download Transaction PDF",
20092
+ description: "Download a supported QuickBooks transaction as a bounded PDF file"
20093
+ },
20094
+ {
20095
+ name: "Read Attachments",
20096
+ description: "List attachment metadata for a fixed QuickBooks entity or read one attachment by ID"
20097
+ },
20098
+ {
20099
+ name: "Add Attachment",
20100
+ description: "Attach one supported file or one note to a fixed QuickBooks entity"
20101
+ },
20102
+ {
20103
+ name: "Download Attachment",
20104
+ description: "Download a QuickBooks file attachment as a stored Sim file"
20105
+ }
20106
+ ],
20107
+ operationCount: 47,
20108
+ triggers: [
20109
+ {
20110
+ id: "quickbooks_invoice_events",
20111
+ name: "QuickBooks Invoice Events",
20112
+ description: "Trigger when selected Invoice events occur in QuickBooks"
20113
+ },
20114
+ {
20115
+ id: "quickbooks_customer_events",
20116
+ name: "QuickBooks Customer Events",
20117
+ description: "Trigger when selected Customer events occur in QuickBooks"
20118
+ },
20119
+ {
20120
+ id: "quickbooks_estimate_events",
20121
+ name: "QuickBooks Estimate Events",
20122
+ description: "Trigger when selected Estimate events occur in QuickBooks"
20123
+ },
20124
+ {
20125
+ id: "quickbooks_payment_events",
20126
+ name: "QuickBooks Payment Events",
20127
+ description: "Trigger when selected Payment events occur in QuickBooks"
20128
+ },
20129
+ {
20130
+ id: "quickbooks_credit_memo_events",
20131
+ name: "QuickBooks Credit Memo Events",
20132
+ description: "Trigger when selected Credit Memo events occur in QuickBooks"
20133
+ },
20134
+ {
20135
+ id: "quickbooks_refund_receipt_events",
20136
+ name: "QuickBooks Refund Receipt Events",
20137
+ description: "Trigger when selected Refund Receipt events occur in QuickBooks"
20138
+ },
20139
+ {
20140
+ id: "quickbooks_sales_receipt_events",
20141
+ name: "QuickBooks Sales Receipt Events",
20142
+ description: "Trigger when selected Sales Receipt events occur in QuickBooks"
20143
+ },
20144
+ {
20145
+ id: "quickbooks_vendor_events",
20146
+ name: "QuickBooks Vendor Events",
20147
+ description: "Trigger when selected Vendor events occur in QuickBooks"
20148
+ },
20149
+ {
20150
+ id: "quickbooks_bill_events",
20151
+ name: "QuickBooks Bill Events",
20152
+ description: "Trigger when selected Bill events occur in QuickBooks"
20153
+ },
20154
+ {
20155
+ id: "quickbooks_bill_payment_events",
20156
+ name: "QuickBooks Bill Payment Events",
20157
+ description: "Trigger when selected Bill Payment events occur in QuickBooks"
20158
+ },
20159
+ {
20160
+ id: "quickbooks_purchase_order_events",
20161
+ name: "QuickBooks Purchase Order Events",
20162
+ description: "Trigger when selected Purchase Order events occur in QuickBooks"
20163
+ },
20164
+ {
20165
+ id: "quickbooks_purchase_events",
20166
+ name: "QuickBooks Purchase Events",
20167
+ description: "Trigger when selected Purchase events occur in QuickBooks"
20168
+ },
20169
+ {
20170
+ id: "quickbooks_vendor_credit_events",
20171
+ name: "QuickBooks Vendor Credit Events",
20172
+ description: "Trigger when selected Vendor Credit events occur in QuickBooks"
20173
+ },
20174
+ {
20175
+ id: "quickbooks_deposit_events",
20176
+ name: "QuickBooks Deposit Events",
20177
+ description: "Trigger when selected Deposit events occur in QuickBooks"
20178
+ },
20179
+ {
20180
+ id: "quickbooks_journal_entry_events",
20181
+ name: "QuickBooks Journal Entry Events",
20182
+ description: "Trigger when selected Journal Entry events occur in QuickBooks"
20183
+ },
20184
+ {
20185
+ id: "quickbooks_transfer_events",
20186
+ name: "QuickBooks Transfer Events",
20187
+ description: "Trigger when selected Transfer events occur in QuickBooks"
20188
+ },
20189
+ {
20190
+ id: "quickbooks_item_events",
20191
+ name: "QuickBooks Item Events",
20192
+ description: "Trigger when selected Item events occur in QuickBooks"
20193
+ },
20194
+ {
20195
+ id: "quickbooks_employee_events",
20196
+ name: "QuickBooks Employee Events",
20197
+ description: "Trigger when selected Employee events occur in QuickBooks"
20198
+ },
20199
+ {
20200
+ id: "quickbooks_time_activity_events",
20201
+ name: "QuickBooks Time Activity Events",
20202
+ description: "Trigger when selected Time Activity events occur in QuickBooks"
20203
+ },
20204
+ {
20205
+ id: "quickbooks_account_events",
20206
+ name: "QuickBooks Account Events",
20207
+ description: "Trigger when selected Account events occur in QuickBooks"
20208
+ },
20209
+ {
20210
+ id: "quickbooks_budget_events",
20211
+ name: "QuickBooks Budget Events",
20212
+ description: "Trigger when selected Budget events occur in QuickBooks"
20213
+ },
20214
+ {
20215
+ id: "quickbooks_class_events",
20216
+ name: "QuickBooks Class Events",
20217
+ description: "Trigger when selected Class events occur in QuickBooks"
20218
+ },
20219
+ {
20220
+ id: "quickbooks_currency_events",
20221
+ name: "QuickBooks Currency Events",
20222
+ description: "Trigger when selected Currency events occur in QuickBooks"
20223
+ },
20224
+ {
20225
+ id: "quickbooks_department_events",
20226
+ name: "QuickBooks Department Events",
20227
+ description: "Trigger when selected Department events occur in QuickBooks"
20228
+ },
20229
+ {
20230
+ id: "quickbooks_journal_code_events",
20231
+ name: "QuickBooks Journal Code Events",
20232
+ description: "Trigger when selected Journal Code events occur in QuickBooks"
20233
+ },
20234
+ {
20235
+ id: "quickbooks_payment_method_events",
20236
+ name: "QuickBooks Payment Method Events",
20237
+ description: "Trigger when selected Payment Method events occur in QuickBooks"
20238
+ },
20239
+ {
20240
+ id: "quickbooks_preferences_updated",
20241
+ name: "QuickBooks Preferences Updated",
20242
+ description: "Trigger when QuickBooks Preferences are updated"
20243
+ },
20244
+ {
20245
+ id: "quickbooks_tax_agency_events",
20246
+ name: "QuickBooks Tax Agency Events",
20247
+ description: "Trigger when selected Tax Agency events occur in QuickBooks"
20248
+ },
20249
+ {
20250
+ id: "quickbooks_term_events",
20251
+ name: "QuickBooks Term Events",
20252
+ description: "Trigger when selected Term events occur in QuickBooks"
20253
+ }
20254
+ ],
20255
+ triggerCount: 29,
20256
+ authType: "oauth",
20257
+ oauthServiceId: "quickbooks",
20258
+ category: "tools",
20259
+ integrationType: "commerce",
20260
+ tags: ["payments", "automation", "data-analytics"]
20261
+ },
19618
20262
  {
19619
20263
  type: "quiver",
19620
20264
  slug: "quiver",
@@ -28280,7 +28924,7 @@ var init_integrations = __esm(() => {
28280
28924
  });
28281
28925
 
28282
28926
  // ../deployment-config/src/service-account-providers.generated.ts
28283
- var SERVICE_ACCOUNT_PROVIDER_BY_OAUTH_SERVICE_ID;
28927
+ var SERVICE_ACCOUNT_PROVIDER_BY_OAUTH_SERVICE_ID, CREDENTIAL_CONFIGURED_OAUTH_SERVICE_IDS;
28284
28928
  var init_service_account_providers_generated = __esm(() => {
28285
28929
  SERVICE_ACCOUNT_PROVIDER_BY_OAUTH_SERVICE_ID = {
28286
28930
  airtable: "airtable-service-account",
@@ -28317,6 +28961,7 @@ var init_service_account_providers_generated = __esm(() => {
28317
28961
  "zoho-desk": "zoho-desk-service-account",
28318
28962
  zoom: "zoom-service-account"
28319
28963
  };
28964
+ CREDENTIAL_CONFIGURED_OAUTH_SERVICE_IDS = ["quickbooks"];
28320
28965
  });
28321
28966
 
28322
28967
  // ../deployment-config/src/service-account-metadata.ts
@@ -28360,6 +29005,17 @@ function resolveOAuthIntegrationAvailability(integration, values) {
28360
29005
  const capabilityId = resolveOAuthClientCapabilityId(oauthServiceId);
28361
29006
  const serviceAccount = getServiceAccountMetadata(oauthServiceId);
28362
29007
  if (!capabilityId) {
29008
+ if (credentialConfiguredOAuthServiceIds.has(oauthServiceId)) {
29009
+ return {
29010
+ type: integration.type,
29011
+ slug: integration.slug,
29012
+ name: integration.name,
29013
+ state: "ready",
29014
+ oauthAvailable: true,
29015
+ serviceAccountAvailable: false,
29016
+ missingFields: []
29017
+ };
29018
+ }
28363
29019
  throw new Error(`OAuth integration ${integration.slug} has no OAuth client capability definition`);
28364
29020
  }
28365
29021
  const oauth = inspectOAuthClientCapability(capabilityId, values);
@@ -28393,12 +29049,14 @@ function resolveIntegrationAvailability(values) {
28393
29049
  };
28394
29050
  });
28395
29051
  }
28396
- var integrations, deploymentGatedIntegrationTypes, integrationTypesByOAuthServiceId, previewServiceAccountProvidersByIntegrationType;
29052
+ var integrations, credentialConfiguredOAuthServiceIds, deploymentGatedIntegrationTypes, integrationTypesByOAuthServiceId, previewServiceAccountProvidersByIntegrationType;
28397
29053
  var init_integration_availability = __esm(() => {
28398
29054
  init_env_capabilities();
28399
29055
  init_integrations();
28400
29056
  init_service_account_metadata();
29057
+ init_service_account_providers_generated();
28401
29058
  integrations = integrations_default.integrations;
29059
+ credentialConfiguredOAuthServiceIds = new Set(CREDENTIAL_CONFIGURED_OAUTH_SERVICE_IDS);
28402
29060
  deploymentGatedIntegrationTypes = new Set(integrations.filter((integration) => integration.authType === "oauth").map((integration) => integration.type.toLowerCase()));
28403
29061
  integrationTypesByOAuthServiceId = new Map;
28404
29062
  previewServiceAccountProvidersByIntegrationType = new Map;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-setup",
3
- "version": "1.0.10-preview.98.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": {