@whatalo/cli-kit 1.0.0
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/LICENSE +21 -0
- package/README.md +43 -0
- package/dist/config/index.cjs +250 -0
- package/dist/config/index.d.cts +75 -0
- package/dist/config/index.d.ts +75 -0
- package/dist/config/index.mjs +205 -0
- package/dist/env-file-KvUHlLtI.d.cts +67 -0
- package/dist/env-file-KvUHlLtI.d.ts +67 -0
- package/dist/http/index.cjs +194 -0
- package/dist/http/index.d.cts +56 -0
- package/dist/http/index.d.ts +56 -0
- package/dist/http/index.mjs +166 -0
- package/dist/index.cjs +1055 -0
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.mjs +978 -0
- package/dist/output/index.cjs +276 -0
- package/dist/output/index.d.cts +149 -0
- package/dist/output/index.d.ts +149 -0
- package/dist/output/index.mjs +221 -0
- package/dist/session/index.cjs +184 -0
- package/dist/session/index.d.cts +82 -0
- package/dist/session/index.d.ts +82 -0
- package/dist/session/index.mjs +139 -0
- package/dist/tunnel/index.cjs +252 -0
- package/dist/tunnel/index.d.cts +70 -0
- package/dist/tunnel/index.d.ts +70 -0
- package/dist/tunnel/index.mjs +214 -0
- package/dist/types-DunvRQ0f.d.cts +63 -0
- package/dist/types-DunvRQ0f.d.ts +63 -0
- package/dist/version/index.cjs +204 -0
- package/dist/version/index.d.cts +41 -0
- package/dist/version/index.d.ts +41 -0
- package/dist/version/index.mjs +164 -0
- package/package.json +95 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { clearSession, getSession, getSessionDir, isSessionValid, pollForToken, refreshAccessToken, requestDeviceCode, saveSession } from './session/index.cjs';
|
|
2
|
+
export { D as DeviceCodeResponse, b as POLL_STATUS, P as PollResult, a as PollStatus, T as TokenResponse, W as WhataloSession } from './types-DunvRQ0f.cjs';
|
|
3
|
+
export { Spinner, TaskStatus, WhataloAuthError, WhataloConfigError, WhataloNetworkError, WhataloValidationError, banner, code, createSpinner, error, failMissingNonTTYFlags, handleCliError, info, link, renderInfoPanel, renderTable, renderTasks, success, table, warn, withErrorHandler } from './output/index.cjs';
|
|
4
|
+
export { HttpClientOptions, WhataloApiClient } from './http/index.cjs';
|
|
5
|
+
export { C as CONFIG_FILE_NAME, E as EnvEntry, W as WhataloAppConfig, p as parseEnvFile, r as readConfig, u as updateEnvFile, w as writeConfig } from './env-file-KvUHlLtI.cjs';
|
|
6
|
+
export { TunnelDownloadProgress, TunnelOptions, TunnelProcess, createTunnel, ensureCloudflared } from './tunnel/index.cjs';
|
|
7
|
+
export { VersionCheckResult, checkSdkCompatibility, getUpgradeCommand, isNewerVersion, scheduleVersionCheck } from './version/index.cjs';
|
|
8
|
+
import 'node:child_process';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { clearSession, getSession, getSessionDir, isSessionValid, pollForToken, refreshAccessToken, requestDeviceCode, saveSession } from './session/index.js';
|
|
2
|
+
export { D as DeviceCodeResponse, b as POLL_STATUS, P as PollResult, a as PollStatus, T as TokenResponse, W as WhataloSession } from './types-DunvRQ0f.js';
|
|
3
|
+
export { Spinner, TaskStatus, WhataloAuthError, WhataloConfigError, WhataloNetworkError, WhataloValidationError, banner, code, createSpinner, error, failMissingNonTTYFlags, handleCliError, info, link, renderInfoPanel, renderTable, renderTasks, success, table, warn, withErrorHandler } from './output/index.js';
|
|
4
|
+
export { HttpClientOptions, WhataloApiClient } from './http/index.js';
|
|
5
|
+
export { C as CONFIG_FILE_NAME, E as EnvEntry, W as WhataloAppConfig, p as parseEnvFile, r as readConfig, u as updateEnvFile, w as writeConfig } from './env-file-KvUHlLtI.js';
|
|
6
|
+
export { TunnelDownloadProgress, TunnelOptions, TunnelProcess, createTunnel, ensureCloudflared } from './tunnel/index.js';
|
|
7
|
+
export { VersionCheckResult, checkSdkCompatibility, getUpgradeCommand, isNewerVersion, scheduleVersionCheck } from './version/index.js';
|
|
8
|
+
import 'node:child_process';
|