@aiaiai-pt/frankctl 0.13.1 → 0.13.2
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/CHANGELOG.md +20 -0
- package/README.md +6 -2
- package/dist/index.js +241 -233
- package/package.json +1 -1
- package/skills/frank-cli/SKILL.md +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
All notable changes to `@aiaiai-pt/frankctl` are documented here. This project
|
|
4
4
|
adheres to [Semantic Versioning](https://semver.org/).
|
|
5
5
|
|
|
6
|
+
## 0.13.2
|
|
7
|
+
|
|
8
|
+
- Publish the tenant-aware CLI contract used by UIO: `--tenant` and
|
|
9
|
+
`FRANKCTL_TENANT_ID` send the required `X-Tenant-ID` header, allowing the
|
|
10
|
+
exact snapshot-ID support from 0.13.1 to be exercised against tenant-scoped
|
|
11
|
+
staging APIs.
|
|
12
|
+
|
|
6
13
|
## 0.13.1
|
|
7
14
|
|
|
8
15
|
- Preserve every Iceberg snapshot ID as an exact decimal string across dataset,
|
|
@@ -10,6 +17,19 @@ adheres to [Semantic Versioning](https://semver.org/).
|
|
|
10
17
|
companions are normalized into the canonical field, and unsafe numeric-only
|
|
11
18
|
responses fail closed instead of emitting rounded identities.
|
|
12
19
|
|
|
20
|
+
## 0.9.2
|
|
21
|
+
|
|
22
|
+
- Retire `transforms gate-status` with the duplicate Frank source-update
|
|
23
|
+
scheduler; eager transform diagnostics now use Dagster's native DataVersion
|
|
24
|
+
automation and Source/Pipeline runtime readback.
|
|
25
|
+
|
|
26
|
+
## 0.9.1
|
|
27
|
+
|
|
28
|
+
- Restore the Source create/update schema module after the `main` to `uio`
|
|
29
|
+
merge duplicated stale declarations and prevented `frankctl` from building.
|
|
30
|
+
- Make `sinks sync --json` preserve the structured error receipt while exiting
|
|
31
|
+
with the API error code, matching the human-output failure contract.
|
|
32
|
+
|
|
13
33
|
## 0.9.0
|
|
14
34
|
|
|
15
35
|
- Add Pipeline schedule readback and mutation commands, together with pause,
|
package/README.md
CHANGED
|
@@ -116,9 +116,13 @@ ontology SyncRun; credentials and row payloads are never included.
|
|
|
116
116
|
- `FRANKCTL_API_URL` — Frank API base (default `http://localhost:8000`)
|
|
117
117
|
- `FRANKCTL_KEYCLOAK_URL` — Keycloak base (default `http://localhost:8180`)
|
|
118
118
|
- `FRANKCTL_KEYCLOAK_REALM` — realm (default `frank`)
|
|
119
|
-
- `FRANKCTL_CLIENT_ID` — OAuth client id
|
|
119
|
+
- `FRANKCTL_CLIENT_ID` — override the OAuth client id. Browser PKCE defaults to the dedicated public `frank-cli` client; headless password login retains `frank-low-code`; service-account login requires its own client id.
|
|
120
120
|
- `FRANKCTL_CLIENT_SECRET` — client secret (service account only)
|
|
121
121
|
- `FRANKCTL_PROFILE` — active config profile
|
|
122
122
|
- `FRANKCTL_TOKEN` — bypass token store entirely
|
|
123
|
-
- `
|
|
123
|
+
- `FRANKCTL_TENANT_ID=<organization-slug>` — explicit tenant context for tenant-scoped API requests; use `--tenant <organization-slug>` for a one-command override or persist `profiles.<name>.tenantId`
|
|
124
124
|
- `PATTERN_WEBHOOK_SECRET` — HMAC-SHA256 signing key for `frankctl patterns register` (CI only; command exits 6 when unset)
|
|
125
|
+
|
|
126
|
+
Browser login stores the OAuth client id beside the token and reuses that same
|
|
127
|
+
client for refresh. Profile, environment, and `--client-id` overrides therefore
|
|
128
|
+
remain valid without refresh silently switching back to a built-in default.
|