@aiaiai-pt/frankctl 0.9.7 → 0.13.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.
- package/CHANGELOG.md +5 -11
- package/README.md +2 -6
- package/dist/index.js +215 -223
- package/package.json +1 -1
- package/skills/frank-cli/SKILL.md +9 -12
package/CHANGELOG.md
CHANGED
|
@@ -3,18 +3,12 @@
|
|
|
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.
|
|
6
|
+
## 0.13.1
|
|
7
7
|
|
|
8
|
-
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
## 0.9.1
|
|
13
|
-
|
|
14
|
-
- Restore the Source create/update schema module after the `main` to `uio`
|
|
15
|
-
merge duplicated stale declarations and prevented `frankctl` from building.
|
|
16
|
-
- Make `sinks sync --json` preserve the structured error receipt while exiting
|
|
17
|
-
with the API error code, matching the human-output failure contract.
|
|
8
|
+
- Preserve every Iceberg snapshot ID as an exact decimal string across dataset,
|
|
9
|
+
BackingDataset, lineage, and pipeline output. Transitional API `_exact`
|
|
10
|
+
companions are normalized into the canonical field, and unsafe numeric-only
|
|
11
|
+
responses fail closed instead of emitting rounded identities.
|
|
18
12
|
|
|
19
13
|
## 0.9.0
|
|
20
14
|
|
package/README.md
CHANGED
|
@@ -116,13 +116,9 @@ 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` —
|
|
119
|
+
- `FRANKCTL_CLIENT_ID` — OAuth client id (default `frank-low-code` for user flows, `frank-api` for service account)
|
|
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
|
-
- `FRANKCTL_TENANT_ID=<
|
|
123
|
+
- `FRANK_DEV_MODE=true` + `FRANKCTL_TENANT_ID=<uuid>` — forward `X-Tenant-ID` header (required today for transforms and source sync routes)
|
|
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.
|