run402 3.3.0 → 3.3.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/lib/admin.mjs +5 -5
- package/lib/allowance.mjs +1 -1
- package/lib/billing.mjs +9 -7
- package/lib/notifications.mjs +5 -5
- package/lib/operator.mjs +1 -1
- package/lib/org.mjs +14 -7
- package/lib/projects.mjs +2 -2
- package/lib/transfer.mjs +27 -20
- package/package.json +1 -1
- package/sdk/dist/namespaces/admin.d.ts +5 -7
- package/sdk/dist/namespaces/admin.d.ts.map +1 -1
- package/sdk/dist/namespaces/admin.js +2 -2
- package/sdk/dist/namespaces/admin.js.map +1 -1
- package/sdk/dist/namespaces/billing.d.ts +26 -10
- package/sdk/dist/namespaces/billing.d.ts.map +1 -1
- package/sdk/dist/namespaces/billing.js +28 -18
- package/sdk/dist/namespaces/billing.js.map +1 -1
- package/sdk/dist/namespaces/cache.d.ts +5 -5
- package/sdk/dist/namespaces/cache.d.ts.map +1 -1
- package/sdk/dist/namespaces/operator-session.d.ts +6 -0
- package/sdk/dist/namespaces/operator-session.d.ts.map +1 -1
- package/sdk/dist/namespaces/operator-session.js.map +1 -1
- package/sdk/dist/namespaces/org.d.ts +5 -3
- package/sdk/dist/namespaces/org.d.ts.map +1 -1
- package/sdk/dist/namespaces/org.js +10 -2
- package/sdk/dist/namespaces/org.js.map +1 -1
- package/sdk/dist/namespaces/org.types.d.ts +28 -15
- package/sdk/dist/namespaces/org.types.d.ts.map +1 -1
- package/sdk/dist/namespaces/projects.d.ts +1 -1
- package/sdk/dist/namespaces/projects.js +1 -1
- package/sdk/dist/namespaces/projects.types.d.ts +2 -2
- package/sdk/dist/namespaces/projects.types.d.ts.map +1 -1
- package/sdk/dist/namespaces/tier.d.ts +1 -1
- package/sdk/dist/namespaces/tier.d.ts.map +1 -1
- package/sdk/dist/namespaces/transfers.d.ts +10 -3
- package/sdk/dist/namespaces/transfers.d.ts.map +1 -1
- package/sdk/dist/namespaces/transfers.js +5 -7
- package/sdk/dist/namespaces/transfers.js.map +1 -1
package/lib/admin.mjs
CHANGED
|
@@ -8,7 +8,7 @@ Usage:
|
|
|
8
8
|
run402 admin <subcommand> [args...]
|
|
9
9
|
|
|
10
10
|
Subcommands:
|
|
11
|
-
lease-perpetual <
|
|
11
|
+
lease-perpetual <org_id> (--enable | --disable)
|
|
12
12
|
Toggle the organization-level escape hatch.
|
|
13
13
|
When enabled, the organization never advances
|
|
14
14
|
past 'active' regardless of lease expiry.
|
|
@@ -46,7 +46,7 @@ const SUB_HELP = {
|
|
|
46
46
|
"lease-perpetual": `run402 admin lease-perpetual — Toggle the organization-level escape hatch
|
|
47
47
|
|
|
48
48
|
Usage:
|
|
49
|
-
run402 admin lease-perpetual <
|
|
49
|
+
run402 admin lease-perpetual <org_id> (--enable | --disable)
|
|
50
50
|
|
|
51
51
|
Options:
|
|
52
52
|
--enable Set lease_perpetual = true (pins every project on the account)
|
|
@@ -116,15 +116,15 @@ async function leasePerpetual(args) {
|
|
|
116
116
|
if (!organizationId) {
|
|
117
117
|
fail({
|
|
118
118
|
code: "BAD_USAGE",
|
|
119
|
-
message: "Missing <
|
|
120
|
-
hint: "run402 admin lease-perpetual <
|
|
119
|
+
message: "Missing <org_id>.",
|
|
120
|
+
hint: "run402 admin lease-perpetual <org_id> --enable | --disable",
|
|
121
121
|
});
|
|
122
122
|
}
|
|
123
123
|
if (enable === disable) {
|
|
124
124
|
fail({
|
|
125
125
|
code: "BAD_USAGE",
|
|
126
126
|
message: "Pass exactly one of --enable / --disable.",
|
|
127
|
-
hint: "run402 admin lease-perpetual <
|
|
127
|
+
hint: "run402 admin lease-perpetual <org_id> --enable | --disable",
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
130
|
try {
|
package/lib/allowance.mjs
CHANGED
|
@@ -281,7 +281,7 @@ async function checkout(args) {
|
|
|
281
281
|
const amount = parseIntegerFlag("--amount", amountRaw, { min: 1 });
|
|
282
282
|
try {
|
|
283
283
|
const org = await getSdk().billing.lookupOrganization(w.address);
|
|
284
|
-
const data = await getSdk().billing.createCheckout(org.
|
|
284
|
+
const data = await getSdk().billing.createCheckout(org.org_id, {
|
|
285
285
|
product: "balance_topup",
|
|
286
286
|
amountUsdMicros: amount,
|
|
287
287
|
});
|
package/lib/billing.mjs
CHANGED
|
@@ -63,7 +63,7 @@ Examples:
|
|
|
63
63
|
history: `run402 billing history — Show ledger history for a organization
|
|
64
64
|
|
|
65
65
|
Usage:
|
|
66
|
-
run402 billing history <identifier> [--limit <n>]
|
|
66
|
+
run402 billing history <identifier> [--limit <n>] [--after <cursor>]
|
|
67
67
|
|
|
68
68
|
Arguments:
|
|
69
69
|
<identifier> Organization id (UUID), wallet (0x...), or email.
|
|
@@ -71,6 +71,7 @@ Arguments:
|
|
|
71
71
|
|
|
72
72
|
Options:
|
|
73
73
|
--limit <n> Max entries to return (default: 50)
|
|
74
|
+
--after <cursor> Opaque keyset cursor (next_cursor from a prior page)
|
|
74
75
|
|
|
75
76
|
Auth:
|
|
76
77
|
Requires SIWX from a wallet linked to the organization (signed automatically from
|
|
@@ -199,7 +200,7 @@ async function checkout(args) {
|
|
|
199
200
|
}
|
|
200
201
|
try {
|
|
201
202
|
const org = await getSdk().billing.lookupOrganization(identifier);
|
|
202
|
-
const data = await getSdk().billing.createCheckout(org.
|
|
203
|
+
const data = await getSdk().billing.createCheckout(org.org_id, checkoutRequest);
|
|
203
204
|
console.log(JSON.stringify(data, null, 2));
|
|
204
205
|
} catch (err) {
|
|
205
206
|
reportSdkError(err);
|
|
@@ -249,7 +250,7 @@ async function linkWallet(args) {
|
|
|
249
250
|
const data = await getSdk().billing.linkWallet(organizationId, wallet);
|
|
250
251
|
const output = {
|
|
251
252
|
status: data?.status ?? "ok",
|
|
252
|
-
|
|
253
|
+
org_id: data?.org_id ?? organizationId,
|
|
253
254
|
wallet: data?.wallet ?? wallet.toLowerCase(),
|
|
254
255
|
...(data?.pool_implications ? { pool_implications: data.pool_implications } : {}),
|
|
255
256
|
};
|
|
@@ -286,7 +287,7 @@ async function autoRecharge(args) {
|
|
|
286
287
|
enabled: state === "on",
|
|
287
288
|
threshold,
|
|
288
289
|
});
|
|
289
|
-
console.log(JSON.stringify({
|
|
290
|
+
console.log(JSON.stringify({ org_id: organizationId, enabled: state === "on", updated: true }));
|
|
290
291
|
} catch (err) {
|
|
291
292
|
reportSdkError(err);
|
|
292
293
|
}
|
|
@@ -317,7 +318,7 @@ async function balance(args) {
|
|
|
317
318
|
|
|
318
319
|
async function history(args) {
|
|
319
320
|
const parsedArgs = normalizeArgv(args);
|
|
320
|
-
const valueFlags = ["--limit"];
|
|
321
|
+
const valueFlags = ["--limit", "--after"];
|
|
321
322
|
assertKnownFlags(parsedArgs, [...valueFlags, "--help", "-h"], valueFlags);
|
|
322
323
|
const positionals = positionalArgs(parsedArgs, valueFlags);
|
|
323
324
|
const id = positionals[0];
|
|
@@ -328,14 +329,15 @@ async function history(args) {
|
|
|
328
329
|
fail({
|
|
329
330
|
code: "BAD_USAGE",
|
|
330
331
|
message: "Missing <identifier>.",
|
|
331
|
-
hint: "run402 billing history <org-id | wallet | email> [--limit <n>]",
|
|
332
|
+
hint: "run402 billing history <org-id | wallet | email> [--limit <n>] [--after <cursor>]",
|
|
332
333
|
});
|
|
333
334
|
}
|
|
334
335
|
const limit = parsedArgs.includes("--limit")
|
|
335
336
|
? parseIntegerFlag("--limit", flagValue(parsedArgs, "--limit"), { min: 1 })
|
|
336
337
|
: 50;
|
|
338
|
+
const after = flagValue(parsedArgs, "--after");
|
|
337
339
|
try {
|
|
338
|
-
const data = await getSdk().billing.getHistory(id, limit);
|
|
340
|
+
const data = await getSdk().billing.getHistory(id, { limit, after: after ?? undefined });
|
|
339
341
|
console.log(JSON.stringify(data, null, 2));
|
|
340
342
|
} catch (err) {
|
|
341
343
|
reportSdkError(err);
|
package/lib/notifications.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Wraps the v1.55 `add-operator-health-notifications` API surface:
|
|
5
5
|
*
|
|
6
|
-
* - run402 notifications list [--type ...] [--since ...] [--limit N] [--
|
|
6
|
+
* - run402 notifications list [--type ...] [--since ...] [--limit N] [--after <cursor>]
|
|
7
7
|
* - run402 notifications get <id>
|
|
8
8
|
* - run402 notifications preferences [get|set ...]
|
|
9
9
|
* - run402 notifications test
|
|
@@ -22,7 +22,7 @@ import { assertKnownFlags, flagValue, normalizeArgv, positionalArgs } from "./ar
|
|
|
22
22
|
const HELP = `run402 notifications — Operator health notifications
|
|
23
23
|
|
|
24
24
|
Usage:
|
|
25
|
-
run402 notifications list [--type <event_type>] [--since <iso>] [--limit N] [--
|
|
25
|
+
run402 notifications list [--type <event_type>] [--since <iso>] [--limit N] [--after <cursor>]
|
|
26
26
|
run402 notifications get <id>
|
|
27
27
|
run402 notifications preferences
|
|
28
28
|
run402 notifications preferences set <key>=<value> [<key>=<value> ...]
|
|
@@ -45,7 +45,7 @@ Auth ladder (enforced server-side):
|
|
|
45
45
|
|
|
46
46
|
async function list(args) {
|
|
47
47
|
const parsedArgs = normalizeArgv(args);
|
|
48
|
-
const valueFlags = ["--type", "--since", "--limit", "--
|
|
48
|
+
const valueFlags = ["--type", "--since", "--limit", "--after"];
|
|
49
49
|
assertKnownFlags(parsedArgs, [...valueFlags, "--help", "-h"], valueFlags);
|
|
50
50
|
const extra = positionalArgs(parsedArgs, valueFlags);
|
|
51
51
|
if (extra.length > 0) {
|
|
@@ -56,11 +56,11 @@ async function list(args) {
|
|
|
56
56
|
const type = flagValue(parsedArgs, "--type");
|
|
57
57
|
const since = flagValue(parsedArgs, "--since");
|
|
58
58
|
const limit = flagValue(parsedArgs, "--limit");
|
|
59
|
-
const
|
|
59
|
+
const after = flagValue(parsedArgs, "--after");
|
|
60
60
|
if (type) opts.type = type;
|
|
61
61
|
if (since) opts.since = since;
|
|
62
62
|
if (limit != null) opts.limit = Number(limit);
|
|
63
|
-
if (
|
|
63
|
+
if (after != null) opts.after = after;
|
|
64
64
|
try {
|
|
65
65
|
const data = await getSdk().admin.listNotifications(opts);
|
|
66
66
|
console.log(JSON.stringify(data, null, 2));
|
package/lib/operator.mjs
CHANGED
|
@@ -324,7 +324,7 @@ async function loopbackLogin(args, { stepUp }) {
|
|
|
324
324
|
if (memberships.length) {
|
|
325
325
|
process.stderr.write(
|
|
326
326
|
`Member of ${memberships.length} org(s):\n` +
|
|
327
|
-
memberships.map((m) => ` - ${m.display_name || m.org_id || m.
|
|
327
|
+
memberships.map((m) => ` - ${m.display_name || m.org_id || m.org_id || "unknown"} (${m.role}, ${m.status})`).join("\n") +
|
|
328
328
|
"\n",
|
|
329
329
|
);
|
|
330
330
|
}
|
package/lib/org.mjs
CHANGED
|
@@ -18,7 +18,7 @@ Usage:
|
|
|
18
18
|
run402 org get <org>
|
|
19
19
|
run402 org rename <org> <display_name> (or: --clear to remove the label)
|
|
20
20
|
run402 org whoami
|
|
21
|
-
run402 org audit <org> [--limit N] [--before <cursor>]
|
|
21
|
+
run402 org audit <org> [--limit N] [--after <cursor>] [--before <cursor>]
|
|
22
22
|
run402 org member list <org>
|
|
23
23
|
run402 org member add <org> <wallet> [--role <role>]
|
|
24
24
|
run402 org member role <org> <principal_id> <role>
|
|
@@ -92,7 +92,7 @@ the label.
|
|
|
92
92
|
Usage:
|
|
93
93
|
run402 org whoami
|
|
94
94
|
|
|
95
|
-
Calls GET /agent/v1/whoami. Returns the control-plane principal (id/type/
|
|
95
|
+
Calls GET /agent/v1/whoami. Returns the control-plane principal (id/type/display_name/created_at),
|
|
96
96
|
authenticator_id, and every org membership (org_id, display_name, role, status). REMOTE identity;
|
|
97
97
|
for local wallet/profile state use 'run402 status'.
|
|
98
98
|
`,
|
|
@@ -120,9 +120,11 @@ An invite is claimed at the recipient's first login. Mutations require an active
|
|
|
120
120
|
audit: `run402 org audit — control-plane audit trail
|
|
121
121
|
|
|
122
122
|
Usage:
|
|
123
|
-
run402 org audit <org> [--limit N] [--before <cursor>]
|
|
123
|
+
run402 org audit <org> [--limit N] [--after <cursor>] [--before <cursor>]
|
|
124
124
|
|
|
125
|
-
Requires an admin+ membership on the org. Newest-first
|
|
125
|
+
Requires an admin+ membership on the org. Newest-first. Page forward with --after
|
|
126
|
+
(next_cursor from a prior page); --before is the legacy cursor. Returns
|
|
127
|
+
{ events, has_more, next_cursor }.
|
|
126
128
|
`,
|
|
127
129
|
};
|
|
128
130
|
|
|
@@ -197,7 +199,7 @@ async function rename(args) {
|
|
|
197
199
|
|
|
198
200
|
async function audit(args) {
|
|
199
201
|
const a = normalizeArgv(args);
|
|
200
|
-
const valueFlags = ["--limit", "--before"];
|
|
202
|
+
const valueFlags = ["--limit", "--after", "--before"];
|
|
201
203
|
assertKnownFlags(a, [...valueFlags, "--help", "-h"], valueFlags);
|
|
202
204
|
const [org] = requirePositionalCount(a, valueFlags, {
|
|
203
205
|
min: 1,
|
|
@@ -206,11 +208,16 @@ async function audit(args) {
|
|
|
206
208
|
missing: "Missing <org>.",
|
|
207
209
|
});
|
|
208
210
|
const limitFlag = flagValue(a, "--limit");
|
|
211
|
+
const after = flagValue(a, "--after");
|
|
209
212
|
const before = flagValue(a, "--before");
|
|
210
213
|
const limit = limitFlag === null ? undefined : parseIntegerFlag("--limit", limitFlag, { min: 1, max: 1000 });
|
|
211
214
|
try {
|
|
212
|
-
const
|
|
213
|
-
|
|
215
|
+
const result = await getSdk().org(org).audit({
|
|
216
|
+
limit,
|
|
217
|
+
after: after ?? undefined,
|
|
218
|
+
before: before ?? undefined,
|
|
219
|
+
});
|
|
220
|
+
console.log(JSON.stringify(result, null, 2));
|
|
214
221
|
} catch (err) {
|
|
215
222
|
reportSdkError(err);
|
|
216
223
|
}
|
package/lib/projects.mjs
CHANGED
|
@@ -485,7 +485,7 @@ async function list(args = []) {
|
|
|
485
485
|
active: p.id === activeId,
|
|
486
486
|
site_url: p.site_url ?? null,
|
|
487
487
|
custom_domains: p.custom_domains ?? [],
|
|
488
|
-
org_id: p.
|
|
488
|
+
org_id: p.org_id ?? null,
|
|
489
489
|
status: p.status ?? p.effective_status ?? null,
|
|
490
490
|
}));
|
|
491
491
|
const out = { projects: rows };
|
|
@@ -756,7 +756,7 @@ export async function run(sub, args) {
|
|
|
756
756
|
fail({
|
|
757
757
|
code: "REMOVED_COMMAND",
|
|
758
758
|
message: "`run402 projects pin` was removed in v1.57.",
|
|
759
|
-
hint: "Per-project pin is superseded by the organization-level escape hatch. Use `run402 admin lease-perpetual <
|
|
759
|
+
hint: "Per-project pin is superseded by the organization-level escape hatch. Use `run402 admin lease-perpetual <org_id> --enable` (platform-admin only).",
|
|
760
760
|
});
|
|
761
761
|
}
|
|
762
762
|
args = normalizeArgv(args);
|
package/lib/transfer.mjs
CHANGED
|
@@ -15,9 +15,9 @@ const HELP = `run402 transfer — Project transfer, one noun for both recipient
|
|
|
15
15
|
Usage:
|
|
16
16
|
run402 transfer init --to <wallet|email> [--project <id>] [--billing-policy migrate] [--message <text>] [--kysigned <record_id>] [--retain-collaborator developer]
|
|
17
17
|
run402 transfer preview <transfer_id>
|
|
18
|
-
run402 transfer list [--incoming | --outgoing] [--limit N] [--
|
|
18
|
+
run402 transfer list [--incoming | --outgoing] [--limit N] [--after <cursor>]
|
|
19
19
|
run402 transfer accept <transfer_id>
|
|
20
|
-
run402 transfer claim <transfer_id> [--into <
|
|
20
|
+
run402 transfer claim <transfer_id> [--into <org_id>] [--accept-retained-collaborator]
|
|
21
21
|
run402 transfer cancel <transfer_id> [--reason <text>]
|
|
22
22
|
|
|
23
23
|
Subcommands:
|
|
@@ -72,16 +72,16 @@ party to the transfer may preview.
|
|
|
72
72
|
list: `run402 transfer list — List pending transfers
|
|
73
73
|
|
|
74
74
|
Usage:
|
|
75
|
-
run402 transfer list [--incoming | --outgoing] [--limit N] [--
|
|
75
|
+
run402 transfer list [--incoming | --outgoing] [--limit N] [--after <cursor>]
|
|
76
76
|
|
|
77
77
|
Lists both wallet- and email-addressed transfers, unioned; each row carries
|
|
78
78
|
recipient_kind.
|
|
79
79
|
|
|
80
80
|
Options:
|
|
81
|
-
--incoming
|
|
82
|
-
--outgoing
|
|
83
|
-
--limit N
|
|
84
|
-
--
|
|
81
|
+
--incoming List transfers OFFERED TO you (default).
|
|
82
|
+
--outgoing List transfers INITIATED BY you.
|
|
83
|
+
--limit N Page size (default 50).
|
|
84
|
+
--after <cursor> Opaque keyset cursor (next_cursor from a prior page).
|
|
85
85
|
`,
|
|
86
86
|
accept: `run402 transfer accept — Accept an incoming WALLET transfer
|
|
87
87
|
|
|
@@ -107,13 +107,13 @@ TRANSFER_ALREADY_PROCESSED.
|
|
|
107
107
|
claim: `run402 transfer claim — Claim an incoming EMAIL transfer
|
|
108
108
|
|
|
109
109
|
Usage:
|
|
110
|
-
run402 transfer claim <transfer_id> [--into <
|
|
110
|
+
run402 transfer claim <transfer_id> [--into <org_id>] [--accept-retained-collaborator]
|
|
111
111
|
|
|
112
112
|
Claims an email-addressed transfer into an org you own. Omit --into to claim into
|
|
113
113
|
a brand-new org. This is the email analog of 'accept'.
|
|
114
114
|
|
|
115
115
|
Options:
|
|
116
|
-
--into <
|
|
116
|
+
--into <org_id> Org to claim into (omit = brand-new org).
|
|
117
117
|
--accept-retained-collaborator Accept the sender's v1.91 retained-developer-membership offer
|
|
118
118
|
(see 'transfer preview' retain_collaborator). Omit = full severance.
|
|
119
119
|
`,
|
|
@@ -220,7 +220,7 @@ async function preview(args) {
|
|
|
220
220
|
|
|
221
221
|
async function list(args) {
|
|
222
222
|
const parsedArgs = normalizeArgv(args);
|
|
223
|
-
const valueFlags = ["--limit", "--
|
|
223
|
+
const valueFlags = ["--limit", "--after"];
|
|
224
224
|
assertKnownFlags(parsedArgs, [...valueFlags, "--incoming", "--outgoing", "--help", "-h"], valueFlags);
|
|
225
225
|
const extra = positionalArgs(parsedArgs, valueFlags);
|
|
226
226
|
if (extra.length > 0) {
|
|
@@ -235,26 +235,33 @@ async function list(args) {
|
|
|
235
235
|
const direction = outgoing ? "outgoing" : "incoming";
|
|
236
236
|
|
|
237
237
|
const limitFlag = flagValue(parsedArgs, "--limit");
|
|
238
|
-
const
|
|
238
|
+
const after = flagValue(parsedArgs, "--after");
|
|
239
239
|
const limit =
|
|
240
240
|
limitFlag === null
|
|
241
241
|
? undefined
|
|
242
242
|
: parseIntegerFlag("--limit", limitFlag, { min: 1, max: 1000 });
|
|
243
|
-
const offset =
|
|
244
|
-
offsetFlag === null
|
|
245
|
-
? undefined
|
|
246
|
-
: parseIntegerFlag("--offset", offsetFlag, { min: 0 });
|
|
247
243
|
|
|
248
244
|
// Incoming/outgoing are kind-agnostic — each returns the union of wallet- and
|
|
249
245
|
// email-addressed rows, tagged with recipient_kind.
|
|
250
246
|
allowanceAuthHeaders(`/agent/v1/transfers/${direction}`);
|
|
251
247
|
|
|
252
248
|
try {
|
|
253
|
-
const
|
|
249
|
+
const result =
|
|
254
250
|
direction === "incoming"
|
|
255
|
-
? await getSdk().admin.transfers.listIncoming({ limit,
|
|
256
|
-
: await getSdk().admin.transfers.listOutgoing({ limit,
|
|
257
|
-
console.log(
|
|
251
|
+
? await getSdk().admin.transfers.listIncoming({ limit, after: after ?? undefined })
|
|
252
|
+
: await getSdk().admin.transfers.listOutgoing({ limit, after: after ?? undefined });
|
|
253
|
+
console.log(
|
|
254
|
+
JSON.stringify(
|
|
255
|
+
{
|
|
256
|
+
direction,
|
|
257
|
+
transfers: result.transfers,
|
|
258
|
+
has_more: result.has_more,
|
|
259
|
+
next_cursor: result.next_cursor,
|
|
260
|
+
},
|
|
261
|
+
null,
|
|
262
|
+
2,
|
|
263
|
+
),
|
|
264
|
+
);
|
|
258
265
|
} catch (err) {
|
|
259
266
|
reportSdkError(err);
|
|
260
267
|
}
|
|
@@ -305,7 +312,7 @@ async function claim(args) {
|
|
|
305
312
|
assertKnownFlags(parsedArgs, [...valueFlags, "--accept-retained-collaborator", "--help", "-h"], valueFlags);
|
|
306
313
|
const positionals = positionalArgs(parsedArgs, valueFlags);
|
|
307
314
|
if (positionals.length !== 1) {
|
|
308
|
-
fail({ code: "BAD_USAGE", message: "Usage: run402 transfer claim <transfer_id> [--into <
|
|
315
|
+
fail({ code: "BAD_USAGE", message: "Usage: run402 transfer claim <transfer_id> [--into <org_id>] [--accept-retained-collaborator]" });
|
|
309
316
|
}
|
|
310
317
|
const transferId = positionals[0];
|
|
311
318
|
const into = flagValue(parsedArgs, "--into");
|
package/package.json
CHANGED
|
@@ -93,15 +93,13 @@ export interface ListNotificationsOptions {
|
|
|
93
93
|
since?: string;
|
|
94
94
|
/** Default 50, max 200. */
|
|
95
95
|
limit?: number;
|
|
96
|
-
|
|
96
|
+
/** Opaque keyset cursor — page forward from a prior page's `next_cursor`. */
|
|
97
|
+
after?: string;
|
|
97
98
|
}
|
|
98
99
|
export interface ListNotificationsResult {
|
|
99
100
|
notifications: NotificationRow[];
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
offset: number;
|
|
103
|
-
returned: number;
|
|
104
|
-
};
|
|
101
|
+
has_more: boolean;
|
|
102
|
+
next_cursor: string | null;
|
|
105
103
|
}
|
|
106
104
|
export interface NotificationPreferences {
|
|
107
105
|
channels: {
|
|
@@ -141,7 +139,7 @@ export interface RotateWebhookSecretResult {
|
|
|
141
139
|
}
|
|
142
140
|
export interface SetLeasePerpetualResult {
|
|
143
141
|
status: "ok";
|
|
144
|
-
|
|
142
|
+
org_id: string;
|
|
145
143
|
lease_perpetual: boolean;
|
|
146
144
|
/**
|
|
147
145
|
* `true` when the toggle was `lease_perpetual: true` AND the account was in
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"admin.d.ts","sourceRoot":"","sources":["../../src/namespaces/admin.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"admin.d.ts","sourceRoot":"","sources":["../../src/namespaces/admin.ts"],"names":[],"mappings":"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"}
|
|
@@ -74,8 +74,8 @@ export class Admin {
|
|
|
74
74
|
q.push(`since=${encodeURIComponent(opts.since)}`);
|
|
75
75
|
if (opts.limit != null)
|
|
76
76
|
q.push(`limit=${opts.limit}`);
|
|
77
|
-
if (opts.
|
|
78
|
-
q.push(`
|
|
77
|
+
if (opts.after != null)
|
|
78
|
+
q.push(`after=${encodeURIComponent(opts.after)}`);
|
|
79
79
|
const url = q.length > 0
|
|
80
80
|
? `/agent/v1/notifications?${q.join("&")}`
|
|
81
81
|
: "/agent/v1/notifications";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"admin.js","sourceRoot":"","sources":["../../src/namespaces/admin.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAsE3C,MAAM,eAAe,GAAG,IAAI,GAAG,CAAqB,CAAC,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"admin.js","sourceRoot":"","sources":["../../src/namespaces/admin.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* `billing` namespace — organizations and Stripe checkouts.
|
|
3
3
|
*
|
|
4
|
-
* Organizations are addressed by their canonical `
|
|
4
|
+
* Organizations are addressed by their canonical `org_id` (UUID). A
|
|
5
5
|
* wallet or email is resolved to that id through the
|
|
6
6
|
* `GET /orgs/v1/lookup?wallet=|?email=` lookup; `getOrganization` / `history`
|
|
7
7
|
* accept any of the three identifier forms and resolve internally. Organization
|
|
@@ -14,7 +14,7 @@ import type { Client } from "../kernel.js";
|
|
|
14
14
|
import type { ProjectTier } from "./projects.types.js";
|
|
15
15
|
export interface OrganizationDetail {
|
|
16
16
|
/** Canonical organization id (UUID). */
|
|
17
|
-
|
|
17
|
+
org_id: string;
|
|
18
18
|
available_usd_micros: number;
|
|
19
19
|
/** Held/reserved portion of the balance; absent on gateways that predate the field. */
|
|
20
20
|
held_usd_micros?: number;
|
|
@@ -38,11 +38,20 @@ export interface BillingHistoryEntry {
|
|
|
38
38
|
}
|
|
39
39
|
export interface BillingHistoryResult {
|
|
40
40
|
/** Canonical organization id (UUID) the entries belong to. */
|
|
41
|
-
|
|
41
|
+
org_id: string;
|
|
42
42
|
entries: BillingHistoryEntry[];
|
|
43
|
+
has_more: boolean;
|
|
44
|
+
next_cursor: string | null;
|
|
45
|
+
}
|
|
46
|
+
/** Options for {@link Billing.history} / {@link Billing.getHistory}. */
|
|
47
|
+
export interface BillingHistoryOptions {
|
|
48
|
+
/** Page size; gateway default applies when omitted. */
|
|
49
|
+
limit?: number;
|
|
50
|
+
/** Opaque keyset cursor — page forward from a prior page's `next_cursor`. */
|
|
51
|
+
after?: string;
|
|
43
52
|
}
|
|
44
53
|
export interface CreateCheckoutResult {
|
|
45
|
-
|
|
54
|
+
org_id: string;
|
|
46
55
|
product: CheckoutProduct;
|
|
47
56
|
checkout_url: string;
|
|
48
57
|
topup_id: string;
|
|
@@ -71,7 +80,7 @@ export interface LinkWalletPoolImplications {
|
|
|
71
80
|
}
|
|
72
81
|
export interface LinkWalletResult {
|
|
73
82
|
status: string;
|
|
74
|
-
|
|
83
|
+
org_id: string;
|
|
75
84
|
wallet: string;
|
|
76
85
|
/** Present on v1.46+ gateways; undefined when the gateway predates the field. */
|
|
77
86
|
pool_implications?: LinkWalletPoolImplications;
|
|
@@ -117,20 +126,27 @@ export declare class Billing {
|
|
|
117
126
|
getOrganization(identifier: OrganizationIdentifier): Promise<OrganizationDetail>;
|
|
118
127
|
/**
|
|
119
128
|
* Resolve a wallet or email to its organization detail — including the
|
|
120
|
-
* canonical `
|
|
129
|
+
* canonical `org_id` — via `GET /orgs/v1/lookup?wallet=|?email=`.
|
|
121
130
|
* An org-id (UUID) argument is read directly instead. SIWX must match the
|
|
122
131
|
* `?wallet`; email lookups are admin-only.
|
|
123
132
|
*/
|
|
124
133
|
lookupOrganization(identifier: OrganizationIdentifier): Promise<OrganizationDetail>;
|
|
125
|
-
/**
|
|
126
|
-
|
|
134
|
+
/**
|
|
135
|
+
* Fetch billing history by organization id (UUID), wallet, or email. Pass
|
|
136
|
+
* `{ limit, after }` to page; `after` is the opaque keyset cursor
|
|
137
|
+
* (`next_cursor` from a prior page).
|
|
138
|
+
*/
|
|
139
|
+
history(identifier: OrganizationIdentifier, opts?: BillingHistoryOptions): Promise<BillingHistoryResult>;
|
|
127
140
|
/**
|
|
128
141
|
* Fetch ledger history for a organization. History is keyed by organization id
|
|
129
142
|
* (UUID): a wallet/email identifier is first resolved to its organization via the
|
|
130
143
|
* lookup, then `GET /orgs/v1/:org_id/billing/history` is read.
|
|
131
144
|
* Requires SIWX from a wallet linked to the organization, or an admin key.
|
|
145
|
+
* Pass `{ limit, after }` to page; `after` is the opaque keyset cursor
|
|
146
|
+
* (`next_cursor` from a prior page). Returns `{ org_id, entries, has_more,
|
|
147
|
+
* next_cursor }`.
|
|
132
148
|
*/
|
|
133
|
-
getHistory(identifier: OrganizationIdentifier,
|
|
149
|
+
getHistory(identifier: OrganizationIdentifier, opts?: BillingHistoryOptions): Promise<BillingHistoryResult>;
|
|
134
150
|
/** Create a Stripe checkout URL for an organization. */
|
|
135
151
|
createCheckout(organizationId: string, checkout: CreateCheckoutOptions): Promise<CreateCheckoutResult>;
|
|
136
152
|
/** Create an email-only (no-wallet) organization. Sends a verification email. */
|
|
@@ -138,7 +154,7 @@ export declare class Billing {
|
|
|
138
154
|
/**
|
|
139
155
|
* Link a wallet to an existing email organization to enable hybrid
|
|
140
156
|
* Stripe + x402 payments. `organizationId` is the canonical
|
|
141
|
-
* `
|
|
157
|
+
* `org_id` (UUID) returned by `createEmailOrganization` /
|
|
142
158
|
* `lookupOrganization`; the gateway addresses the route as
|
|
143
159
|
* `POST /orgs/v1/:org_id/wallets`. Returns the gateway
|
|
144
160
|
* response; v1.46+ gateways include a {@link LinkWalletPoolImplications}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"billing.d.ts","sourceRoot":"","sources":["../../src/namespaces/billing.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAS3C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAEvD,MAAM,WAAW,kBAAkB;IACjC,wCAAwC;IACxC,
|
|
1
|
+
{"version":3,"file":"billing.d.ts","sourceRoot":"","sources":["../../src/namespaces/billing.ts"],"names":[],"mappings":"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"}
|