@slates-integrations/dbt-cloud 0.2.0-rc.6 → 0.2.0-rc.7

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/docs/SPEC.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  dbt Cloud is a managed platform for dbt (data build tool) that enables data teams to transform data in their warehouse using SQL. It provides job scheduling, CI/CD, an integrated development environment, project metadata and discovery APIs, and a semantic layer for defining and querying business metrics. The platform exposes Administrative, Discovery, and Semantic Layer APIs for programmatic access.
6
6
 
7
- This Slates integration focuses on the current Administrative API routes that are practical for agent workflows: account inspection, project and environment discovery, job discovery and triggering, run monitoring/cancel/retry flows, artifact listing and download, user listing, and webhook subscription management. Discovery API and Semantic Layer GraphQL endpoints are separate dbt APIs with endpoint URLs and token permissions that vary by account and are not exposed as tools in this package.
7
+ This Slates integration focuses on the current Administrative API routes that are practical for agent workflows: account discovery and inspection, project and environment discovery, job discovery and triggering, run monitoring/cancel/retry flows, artifact listing and download, user listing, and webhook subscription management. Discovery API and Semantic Layer GraphQL endpoints are separate dbt APIs with endpoint URLs and token permissions that vary by account and are not exposed as tools in this package.
8
8
 
9
9
  ## Authentication
10
10
 
@@ -31,7 +31,7 @@ Service account tokens belong to an account rather than a user. You can use serv
31
31
 
32
32
  Include the token in the Authorization header of your API requests. For example: `Authorization: Bearer <your-token>`.
33
33
 
34
- The base URL depends on your region and deployment type (e.g., `https://cloud.getdbt.com` for US multi-tenant, `https://emea.dbt.com` for EMEA). Single-tenant deployments have custom hostnames. All API requests require an `account_id` path parameter.
34
+ The base URL depends on your region and deployment type (e.g., `https://cloud.getdbt.com` for US multi-tenant, `https://emea.dbt.com` for EMEA). Single-tenant deployments have custom hostnames. Account-scoped API requests require an `account_id` path parameter. The integration keeps `accountId` optional: tools use a configured or per-call `accountId` when provided, single-account tokens can omit it, and multi-account tokens should call **List Accounts** before passing the selected account ID to account-scoped tools.
35
35
 
36
36
  ## Features
37
37
 
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "devDependencies": {
16
16
  "typescript": "^5"
17
17
  },
18
- "version": "0.2.0-rc.6",
18
+ "version": "0.2.0-rc.7",
19
19
  "files": [
20
20
  "dist/**",
21
21
  "docs/**",
package/slate.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@metorial/dbt-cloud",
3
- "description": "Manage dbt Cloud account operations for projects, environments, jobs, runs, artifacts, users, and webhook subscriptions. Discover projects and environments, inspect jobs, trigger or retry job runs, monitor run status, cancel queued or running jobs, list and download run artifacts as attachments, audit account users, and create, update, test, or delete webhook subscriptions for job run events.",
3
+ "description": "Manage dbt Cloud account operations for accounts, projects, environments, jobs, runs, artifacts, users, and webhook subscriptions. Discover accessible accounts, projects, and environments, inspect jobs, trigger or retry job runs, monitor run status, cancel queued or running jobs, list and download run artifacts as attachments, audit account users, and create, update, test, or delete webhook subscriptions for job run events.",
4
4
  "categories": ["apis-and-http-requests"],
5
5
  "skills": [
6
6
  "trigger dbt jobs",
7
7
  "retry failed runs",
8
8
  "monitor job run status",
9
9
  "fetch run artifacts",
10
+ "discover accessible accounts",
10
11
  "inspect projects and environments",
11
12
  "list account users",
12
13
  "configure webhook subscriptions",