@stacksjs/ts-cloud 0.7.58 → 0.7.60
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/auth/encryption.d.ts +2 -1
- package/dist/auth/index.d.ts +1 -1
- package/dist/aws/index.js +1 -1
- package/dist/bin/cli.js +2973 -2973
- package/dist/{chunk-fv1bj3yt.js → chunk-001z7khv.js} +36 -0
- package/dist/{chunk-fw3q88wk.js → chunk-cz17nhnx.js} +80 -68
- package/dist/{chunk-vvkd46k1.js → chunk-gcsv7g83.js} +3 -3
- package/dist/{chunk-e05phx5f.js → chunk-rxhqny6z.js} +2 -2
- package/dist/{chunk-9m6b4m74.js → chunk-sd9h1baj.js} +19 -11
- package/dist/{chunk-vdk53yyq.js → chunk-tq46tnxv.js} +102 -64
- package/dist/{chunk-0z43x8re.js → chunk-z3bakpnh.js} +2 -2
- package/dist/{chunk-exbcsab2.js → chunk-zvk0f89t.js} +1 -1
- package/dist/control-plane/index.d.ts +1 -1
- package/dist/control-plane/store.d.ts +2 -1
- package/dist/deploy/dashboard-config-module.d.ts +7 -1
- package/dist/deploy/dashboard-session.d.ts +2 -1
- package/dist/deploy/dashboard-users.d.ts +5 -4
- package/dist/deploy/index.d.ts +1 -1
- package/dist/deploy/index.js +9 -9
- package/dist/deploy/management-dashboard.d.ts +4 -3
- package/dist/dns/index.js +1 -1
- package/dist/dns/porkbun.d.ts +27 -0
- package/dist/dns/types.d.ts +8 -1
- package/dist/drivers/index.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +26 -12
- package/dist/ui/account/automation.html +3 -3
- package/dist/ui/account/security.html +2 -2
- package/dist/ui/applications/compose.html +4 -4
- package/dist/ui/applications/new.html +2 -2
- package/dist/ui/data/backups.html +4 -4
- package/dist/ui/data/services.html +4 -4
- package/dist/ui/data/volumes.html +4 -4
- package/dist/ui/index.html +4 -4
- package/dist/ui/integrations.html +2 -2
- package/dist/ui/operations/alerts.html +4 -4
- package/dist/ui/operations/configuration.html +4 -4
- package/dist/ui/operations/jobs.html +4 -4
- package/dist/ui/operations/maintenance.html +4 -4
- package/dist/ui/operations/observability.html +4 -4
- package/dist/ui/operations/previews.html +4 -4
- package/dist/ui/operations/queue.html +4 -4
- package/dist/ui/operations/regions.html +4 -4
- package/dist/ui/operations/releases.html +4 -4
- package/dist/ui/operations/workloads.html +4 -4
- package/dist/ui/security.html +2 -2
- package/dist/ui/server/actions.html +3 -3
- package/dist/ui/server/activity.html +2 -2
- package/dist/ui/server/capacity.html +4 -4
- package/dist/ui/server/database.html +4 -4
- package/dist/ui/server/deployments.html +4 -4
- package/dist/ui/server/diagnostics.html +2 -2
- package/dist/ui/server/firewall.html +4 -4
- package/dist/ui/server/fleet.html +4 -4
- package/dist/ui/server/logs.html +4 -4
- package/dist/ui/server/metrics.html +2 -2
- package/dist/ui/server/services.html +2 -2
- package/dist/ui/server/sites.html +3 -3
- package/dist/ui/server/ssh-keys.html +4 -4
- package/dist/ui/server/team.html +4 -4
- package/dist/ui/server/terminal.html +2 -2
- package/dist/ui/serverless/alarms.html +4 -4
- package/dist/ui/serverless/assets.html +2 -2
- package/dist/ui/serverless/data.html +4 -4
- package/dist/ui/serverless/deployments.html +2 -2
- package/dist/ui/serverless/firewall.html +2 -2
- package/dist/ui/serverless/functions.html +4 -4
- package/dist/ui/serverless/logs.html +4 -4
- package/dist/ui/serverless/metrics.html +2 -2
- package/dist/ui/serverless/queues.html +4 -4
- package/dist/ui/serverless/secrets.html +4 -4
- package/dist/ui/serverless/traces.html +4 -4
- package/dist/ui/serverless.html +4 -4
- package/package.json +3 -3
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/** Project-relative location of the MFA encryption key, for messages and docs. */
|
|
2
|
+
export declare function authEncryptionKeyFile(): string;
|
|
2
3
|
/** Keep MFA encryption independent from legacy session-signing-key rotation. */
|
|
3
4
|
export declare function resolveAuthEncryptionKey(cwd: string): string;
|
package/dist/auth/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export { AUTH_ACTION_TOKEN_TTL_MS, AUTH_MFA_CHALLENGE_TTL_MS, AUTH_OIDC_TRANSACT
|
|
|
2
2
|
export * from './types';
|
|
3
3
|
export { sendAuthenticationEmail } from './mailer';
|
|
4
4
|
export type { AuthenticationEmail } from './mailer';
|
|
5
|
-
export {
|
|
5
|
+
export { authEncryptionKeyFile, resolveAuthEncryptionKey } from './encryption';
|
|
6
6
|
export { decodeBase32, encodeBase32, hotp, matchTotpCounter, totp, totpUri, verifyTotp } from './totp';
|
|
7
7
|
export { beginOidcAuthorization, completeOidcAuthorization, discoverOidcProvider, sanitizeOidcReturnPath } from './oidc';
|
|
8
8
|
export type { OidcDiscoveryDocument, OidcFetch, VerifiedOidcIdentity } from './oidc';
|