sim-setup 1.0.13 → 1.0.14-preview.117.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.
Files changed (2) hide show
  1. package/dist/index.js +62 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3425,7 +3425,7 @@ var init_integrations = __esm(() => {
3425
3425
  slug: "athena",
3426
3426
  name: "Athena",
3427
3427
  description: "Run SQL queries on data in Amazon S3 using AWS Athena",
3428
- longDescription: "Integrate AWS Athena into workflows. Execute SQL queries against data in S3, check query status, retrieve results, manage named queries, and list executions. Requires AWS access key and secret access key.",
3428
+ longDescription: "Integrate AWS Athena into workflows. Execute SQL queries against data in S3, check query status and runtime statistics, retrieve results, manage named queries and prepared statements, and inspect data catalogs, databases, tables, and workgroups. Requires AWS access key and secret access key.",
3429
3429
  bgColor: "linear-gradient(45deg, #4D27A8 0%, #A166FF 100%)",
3430
3430
  iconName: "AthenaIcon",
3431
3431
  docsUrl: "https://docs.sim.ai/integrations/athena",
@@ -3442,6 +3442,10 @@ var init_integrations = __esm(() => {
3442
3442
  name: "Get Query Results",
3443
3443
  description: "Retrieve the results of a completed Athena query execution"
3444
3444
  },
3445
+ {
3446
+ name: "Get Query Runtime Statistics",
3447
+ description: "Get runtime statistics (timeline, row counts, and output stage) for a completed Athena query execution"
3448
+ },
3445
3449
  {
3446
3450
  name: "Stop Query",
3447
3451
  description: "Stop a running Athena query execution"
@@ -3462,6 +3466,14 @@ var init_integrations = __esm(() => {
3462
3466
  name: "Get Named Query",
3463
3467
  description: "Get details of a saved/named query in AWS Athena"
3464
3468
  },
3469
+ {
3470
+ name: "Batch Get Named Queries",
3471
+ description: "Get the details of up to 50 Athena named queries by ID in a single call"
3472
+ },
3473
+ {
3474
+ name: "Update Named Query",
3475
+ description: "Update the name, description, or SQL of an existing Athena named query (database and workgroup cannot change)"
3476
+ },
3465
3477
  {
3466
3478
  name: "List Named Queries",
3467
3479
  description: "List saved/named query IDs in AWS Athena"
@@ -3470,16 +3482,64 @@ var init_integrations = __esm(() => {
3470
3482
  name: "Delete Named Query",
3471
3483
  description: "Delete a saved/named query in AWS Athena"
3472
3484
  },
3485
+ {
3486
+ name: "Create Prepared Statement",
3487
+ description: "Create a parameterized prepared statement in an Athena workgroup for use with EXECUTE or execution parameters"
3488
+ },
3489
+ {
3490
+ name: "Get Prepared Statement",
3491
+ description: "Get the SQL and metadata of a prepared statement in an Athena workgroup"
3492
+ },
3493
+ {
3494
+ name: "Batch Get Prepared Statements",
3495
+ description: "Get the details of up to 256 prepared statements in an Athena workgroup by name in a single call"
3496
+ },
3497
+ {
3498
+ name: "Update Prepared Statement",
3499
+ description: "Replace the SQL and description of an existing prepared statement in an Athena workgroup"
3500
+ },
3501
+ {
3502
+ name: "List Prepared Statements",
3503
+ description: "List the prepared statements saved in an Athena workgroup"
3504
+ },
3505
+ {
3506
+ name: "Delete Prepared Statement",
3507
+ description: "Delete a prepared statement from an Athena workgroup"
3508
+ },
3509
+ {
3510
+ name: "List Data Catalogs",
3511
+ description: "List the data catalogs (data sources) registered in the AWS account"
3512
+ },
3513
+ {
3514
+ name: "Get Data Catalog",
3515
+ description: "Get the type, status, and connection parameters of an Athena data catalog"
3516
+ },
3473
3517
  {
3474
3518
  name: "List Databases",
3475
3519
  description: "List the databases available in an Athena data catalog"
3476
3520
  },
3521
+ {
3522
+ name: "Get Database",
3523
+ description: "Get a single database (name, description, and parameters) from an Athena data catalog"
3524
+ },
3477
3525
  {
3478
3526
  name: "List Table Metadata",
3479
3527
  description: "List tables and their column/partition metadata for an Athena database"
3528
+ },
3529
+ {
3530
+ name: "Get Table Metadata",
3531
+ description: "Get the columns, partition keys, and properties of a single table in an Athena data catalog database"
3532
+ },
3533
+ {
3534
+ name: "List Workgroups",
3535
+ description: "List the Athena workgroups available in the AWS account"
3536
+ },
3537
+ {
3538
+ name: "Get Workgroup",
3539
+ description: "Get the configuration of an Athena workgroup, including its result location, encryption, and limits"
3480
3540
  }
3481
3541
  ],
3482
- operationCount: 12,
3542
+ operationCount: 27,
3483
3543
  triggers: [],
3484
3544
  triggerCount: 0,
3485
3545
  authType: "none",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-setup",
3
- "version": "1.0.13",
3
+ "version": "1.0.14-preview.117.1",
4
4
  "description": "Set up and manage a self-hosted Sim installation",
5
5
  "type": "module",
6
6
  "bin": {