@odla-ai/cli 0.14.0 → 0.14.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/dist/bin.cjs +62 -45
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-3AC74CD2.js → chunk-AN6KZMR5.js} +62 -45
- package/dist/chunk-AN6KZMR5.js.map +1 -0
- package/dist/index.cjs +62 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/skills/odla/references/co-owners.md +7 -0
- package/dist/chunk-3AC74CD2.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -748,8 +748,9 @@ interface HostedSecurityRequestOptions {
|
|
|
748
748
|
interface ConnectGitHubSecuritySourceOptions extends HostedSecurityRequestOptions {
|
|
749
749
|
appId: string;
|
|
750
750
|
env: string;
|
|
751
|
-
/**
|
|
752
|
-
|
|
751
|
+
/** Optional owner/name cross-check. The server always scans the app's one
|
|
752
|
+
* Studio-connected repository; a mismatch fails the connect. */
|
|
753
|
+
repository?: string;
|
|
753
754
|
/** false prints but does not launch the install URL. Defaults to true. */
|
|
754
755
|
open?: boolean;
|
|
755
756
|
openInstallUrl?: (url: string) => Promise<void>;
|
package/dist/index.d.ts
CHANGED
|
@@ -748,8 +748,9 @@ interface HostedSecurityRequestOptions {
|
|
|
748
748
|
interface ConnectGitHubSecuritySourceOptions extends HostedSecurityRequestOptions {
|
|
749
749
|
appId: string;
|
|
750
750
|
env: string;
|
|
751
|
-
/**
|
|
752
|
-
|
|
751
|
+
/** Optional owner/name cross-check. The server always scans the app's one
|
|
752
|
+
* Studio-connected repository; a mismatch fails the connect. */
|
|
753
|
+
repository?: string;
|
|
753
754
|
/** false prints but does not launch the install URL. Defaults to true. */
|
|
754
755
|
open?: boolean;
|
|
755
756
|
openInstallUrl?: (url: string) => Promise<void>;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odla-ai/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "Agent-operable CLI for odla provisioning, calendar consent and sync lifecycle, System AI administration, Worker secrets, security jobs, and smoke checks.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://odla.ai/docs/packages/cli",
|
|
@@ -47,6 +47,13 @@ own key. Treat first-prod provision/deploy as the usual human checkpoint
|
|
|
47
47
|
(`provision --dry-run` review, then `provision --yes --push-secrets`), and never
|
|
48
48
|
rotate another owner's credentials on their behalf.
|
|
49
49
|
|
|
50
|
+
## If provision says "you are not an owner"
|
|
51
|
+
|
|
52
|
+
provision checks tenant admin access up front and aborts **before** anything is
|
|
53
|
+
minted or written — no credential lands on disk, in the vault, or in a Worker.
|
|
54
|
+
It means the registry doesn't list you as an owner yet: ask an existing owner
|
|
55
|
+
to run `npx @odla-ai/cli app owners add <your-email>`, then re-run provision.
|
|
56
|
+
|
|
50
57
|
## If a co-owner loses their local key
|
|
51
58
|
|
|
52
59
|
Keys are shown once and stored hashed — there is no reveal. Re-mint instead:
|