@clef-sh/core 0.1.11-beta.68 → 0.1.11-beta.74
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/cloud/bundled.d.ts +6 -0
- package/dist/cloud/bundled.d.ts.map +1 -0
- package/dist/cloud/constants.d.ts +2 -0
- package/dist/cloud/constants.d.ts.map +1 -0
- package/dist/cloud/credentials.d.ts +13 -0
- package/dist/cloud/credentials.d.ts.map +1 -0
- package/dist/cloud/device-flow.d.ts +36 -0
- package/dist/cloud/device-flow.d.ts.map +1 -0
- package/dist/cloud/index.d.ts +10 -0
- package/dist/cloud/index.d.ts.map +1 -0
- package/dist/cloud/keyservice.d.ts +20 -0
- package/dist/cloud/keyservice.d.ts.map +1 -0
- package/dist/cloud/pack-client.d.ts +34 -0
- package/dist/cloud/pack-client.d.ts.map +1 -0
- package/dist/cloud/resolver.d.ts +24 -0
- package/dist/cloud/resolver.d.ts.map +1 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +339 -12
- package/dist/index.js.map +4 -4
- package/dist/index.mjs +326 -8
- package/dist/index.mjs.map +4 -4
- package/dist/manifest/parser.d.ts.map +1 -1
- package/dist/migration/backend.d.ts.map +1 -1
- package/dist/sops/client.d.ts +4 -1
- package/dist/sops/client.d.ts.map +1 -1
- package/dist/types/index.d.ts +9 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Try to locate the bundled keyservice binary from the platform-specific npm package.
|
|
3
|
+
* Returns the resolved path or null if the package is not installed.
|
|
4
|
+
*/
|
|
5
|
+
export declare function tryBundledKeyservice(): string | null;
|
|
6
|
+
//# sourceMappingURL=bundled.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundled.d.ts","sourceRoot":"","sources":["../../src/cloud/bundled.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,wBAAgB,oBAAoB,IAAI,MAAM,GAAG,IAAI,CA4BpD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/cloud/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ClefCloudCredentials } from "../types";
|
|
2
|
+
/**
|
|
3
|
+
* Read Cloud credentials from ~/.clef/credentials.yaml.
|
|
4
|
+
* Returns null if the file does not exist or is malformed.
|
|
5
|
+
*/
|
|
6
|
+
export declare function readCloudCredentials(): ClefCloudCredentials | null;
|
|
7
|
+
/**
|
|
8
|
+
* Write Cloud credentials to ~/.clef/credentials.yaml.
|
|
9
|
+
* Creates ~/.clef/ with mode 0700 if it doesn't exist.
|
|
10
|
+
* File is written with mode 0600 (owner read/write only).
|
|
11
|
+
*/
|
|
12
|
+
export declare function writeCloudCredentials(credentials: ClefCloudCredentials): void;
|
|
13
|
+
//# sourceMappingURL=credentials.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"credentials.d.ts","sourceRoot":"","sources":["../../src/cloud/credentials.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAKrD;;;GAGG;AACH,wBAAgB,oBAAoB,IAAI,oBAAoB,GAAG,IAAI,CAkBlE;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,WAAW,EAAE,oBAAoB,GAAG,IAAI,CAS7E"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export interface DeviceSession {
|
|
2
|
+
sessionId: string;
|
|
3
|
+
loginUrl: string;
|
|
4
|
+
pollUrl: string;
|
|
5
|
+
/** Session lifetime in seconds. */
|
|
6
|
+
expiresIn: number;
|
|
7
|
+
}
|
|
8
|
+
export interface DevicePollResult {
|
|
9
|
+
status: "pending" | "awaiting_payment" | "complete" | "cancelled" | "expired";
|
|
10
|
+
/** Present when status is "complete". */
|
|
11
|
+
token?: string;
|
|
12
|
+
/** Present when status is "complete". */
|
|
13
|
+
integrationId?: string;
|
|
14
|
+
/** Present when status is "complete". */
|
|
15
|
+
keyId?: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Initiate a device flow session with the Cloud API.
|
|
19
|
+
*
|
|
20
|
+
* @param endpoint - Cloud API base URL. Defaults to https://api.clef.sh.
|
|
21
|
+
* @param options - Session metadata carried into the browser flow.
|
|
22
|
+
* @returns The session with a login URL to open in the browser.
|
|
23
|
+
*/
|
|
24
|
+
export declare function initiateDeviceFlow(endpoint: string | undefined, options: {
|
|
25
|
+
repoName: string;
|
|
26
|
+
environment: string;
|
|
27
|
+
clientVersion: string;
|
|
28
|
+
}): Promise<DeviceSession>;
|
|
29
|
+
/**
|
|
30
|
+
* Poll a device flow session for completion.
|
|
31
|
+
*
|
|
32
|
+
* @param pollUrl - The full poll URL returned by {@link initiateDeviceFlow}.
|
|
33
|
+
* @returns The current session state.
|
|
34
|
+
*/
|
|
35
|
+
export declare function pollDeviceFlow(pollUrl: string): Promise<DevicePollResult>;
|
|
36
|
+
//# sourceMappingURL=device-flow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"device-flow.d.ts","sourceRoot":"","sources":["../../src/cloud/device-flow.ts"],"names":[],"mappings":"AASA,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,mCAAmC;IACnC,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,SAAS,GAAG,kBAAkB,GAAG,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC;IAC9E,yCAAyC;IACzC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,yCAAyC;IACzC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,yCAAyC;IACzC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;GAMG;AACH,wBAAsB,kBAAkB,CACtC,QAAQ,EAAE,MAAM,GAAG,SAAS,EAC5B,OAAO,EAAE;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE,GACxE,OAAO,CAAC,aAAa,CAAC,CAmBxB;AAED;;;;;GAKG;AACH,wBAAsB,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAS/E"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { spawnKeyservice } from "./keyservice";
|
|
2
|
+
export type { KeyserviceHandle } from "./keyservice";
|
|
3
|
+
export { resolveKeyservicePath, resetKeyserviceResolution } from "./resolver";
|
|
4
|
+
export type { KeyserviceResolution, KeyserviceSource } from "./resolver";
|
|
5
|
+
export { readCloudCredentials, writeCloudCredentials } from "./credentials";
|
|
6
|
+
export { initiateDeviceFlow, pollDeviceFlow } from "./device-flow";
|
|
7
|
+
export type { DeviceSession, DevicePollResult } from "./device-flow";
|
|
8
|
+
export { CloudPackClient, CloudArtifactClient } from "./pack-client";
|
|
9
|
+
export type { RemotePackConfig, RemotePackResult } from "./pack-client";
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cloud/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAC/C,YAAY,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAC9E,YAAY,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACzE,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC5E,OAAO,EAAE,kBAAkB,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACnE,YAAY,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AACrE,YAAY,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface KeyserviceHandle {
|
|
2
|
+
/** Address for SOPS --keyservice flag, e.g. "tcp://127.0.0.1:12345". */
|
|
3
|
+
addr: string;
|
|
4
|
+
/** Gracefully stop the keyservice process. */
|
|
5
|
+
kill(): Promise<void>;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Spawn a clef-keyservice sidecar process and wait for it to report its port.
|
|
9
|
+
*
|
|
10
|
+
* @param options.binaryPath - Absolute path to the clef-keyservice binary.
|
|
11
|
+
* @param options.token - Cloud bearer token for API authentication.
|
|
12
|
+
* @param options.endpoint - Optional Cloud API endpoint override.
|
|
13
|
+
* @returns A handle with the keyservice address and a kill function.
|
|
14
|
+
*/
|
|
15
|
+
export declare function spawnKeyservice(options: {
|
|
16
|
+
binaryPath: string;
|
|
17
|
+
token: string;
|
|
18
|
+
endpoint?: string;
|
|
19
|
+
}): Promise<KeyserviceHandle>;
|
|
20
|
+
//# sourceMappingURL=keyservice.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyservice.d.ts","sourceRoot":"","sources":["../../src/cloud/keyservice.ts"],"names":[],"mappings":"AASA,MAAM,WAAW,gBAAgB;IAC/B,wEAAwE;IACxE,IAAI,EAAE,MAAM,CAAC;IACb,8CAA8C;IAC9C,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;CACvB;AAMD;;;;;;;GAOG;AACH,wBAAsB,eAAe,CAAC,OAAO,EAAE;IAC7C,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAmB5B"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { ClefManifest } from "../types";
|
|
2
|
+
export interface RemotePackConfig {
|
|
3
|
+
identity: string;
|
|
4
|
+
environment: string;
|
|
5
|
+
manifest: ClefManifest;
|
|
6
|
+
repoRoot: string;
|
|
7
|
+
ttl?: number;
|
|
8
|
+
}
|
|
9
|
+
export interface RemotePackResult {
|
|
10
|
+
revision: string;
|
|
11
|
+
artifactSize: number;
|
|
12
|
+
identity: string;
|
|
13
|
+
environment: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class CloudPackClient {
|
|
16
|
+
private readonly endpoint;
|
|
17
|
+
constructor(endpoint?: string);
|
|
18
|
+
pack(token: string, config: RemotePackConfig): Promise<RemotePackResult>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* HTTP client for uploading a locally-packed artifact to Cloud.
|
|
22
|
+
*
|
|
23
|
+
* Used by `clef pack --push`.
|
|
24
|
+
*/
|
|
25
|
+
export declare class CloudArtifactClient {
|
|
26
|
+
private readonly endpoint;
|
|
27
|
+
constructor(endpoint?: string);
|
|
28
|
+
upload(token: string, config: {
|
|
29
|
+
identity: string;
|
|
30
|
+
environment: string;
|
|
31
|
+
artifactPath: string;
|
|
32
|
+
}): Promise<void>;
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=pack-client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pack-client.d.ts","sourceRoot":"","sources":["../../src/cloud/pack-client.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,YAAY,EAAc,MAAM,UAAU,CAAC;AAIzD,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,YAAY,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;gBAEtB,QAAQ,CAAC,EAAE,MAAM;IAIvB,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;CAsC/E;AAED;;;;GAIG;AACH,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;gBAEtB,QAAQ,CAAC,EAAE,MAAM;IAIvB,MAAM,CACV,KAAK,EAAE,MAAM,EACb,MAAM,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,MAAM,CAAA;KAAE,GACtE,OAAO,CAAC,IAAI,CAAC;CAoBjB"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export type KeyserviceSource = "env" | "bundled" | "system";
|
|
2
|
+
export interface KeyserviceResolution {
|
|
3
|
+
/** Absolute path to the keyservice binary, or "clef-keyservice" for system PATH fallback. */
|
|
4
|
+
path: string;
|
|
5
|
+
/** How the binary was located. */
|
|
6
|
+
source: KeyserviceSource;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Resolve the clef-keyservice binary path.
|
|
10
|
+
*
|
|
11
|
+
* Resolution order:
|
|
12
|
+
* 1. `CLEF_KEYSERVICE_PATH` env var — explicit override, used as-is
|
|
13
|
+
* 2. Bundled `@clef-sh/keyservice-{platform}-{arch}` package
|
|
14
|
+
* 3. System PATH fallback — returns bare `"clef-keyservice"`
|
|
15
|
+
*
|
|
16
|
+
* The result is cached module-wide. Call {@link resetKeyserviceResolution} in tests
|
|
17
|
+
* to clear the cache.
|
|
18
|
+
*/
|
|
19
|
+
export declare function resolveKeyservicePath(): KeyserviceResolution;
|
|
20
|
+
/**
|
|
21
|
+
* Clear the cached resolution. Only intended for use in tests.
|
|
22
|
+
*/
|
|
23
|
+
export declare function resetKeyserviceResolution(): void;
|
|
24
|
+
//# sourceMappingURL=resolver.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolver.d.ts","sourceRoot":"","sources":["../../src/cloud/resolver.ts"],"names":[],"mappings":"AA0BA,MAAM,MAAM,gBAAgB,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,CAAC;AAE5D,MAAM,WAAW,oBAAoB;IACnC,6FAA6F;IAC7F,IAAI,EAAE,MAAM,CAAC;IACb,kCAAkC;IAClC,MAAM,EAAE,gBAAgB,CAAC;CAC1B;AAID;;;;;;;;;;GAUG;AACH,wBAAgB,qBAAqB,IAAI,oBAAoB,CAwB5D;AAED;;GAEG;AACH,wBAAgB,yBAAyB,IAAI,IAAI,CAEhD"}
|
package/dist/index.d.mts
CHANGED
|
@@ -41,4 +41,6 @@ export type { KmsProvider, KmsWrapResult, KmsProviderType } from "./kms";
|
|
|
41
41
|
export { VALID_KMS_PROVIDERS } from "./kms";
|
|
42
42
|
export { BackendMigrator } from "./migration/backend";
|
|
43
43
|
export type { MigrationTarget, MigrationOptions, MigrationResult, MigrationProgressEvent, } from "./migration/backend";
|
|
44
|
+
export { spawnKeyservice, resolveKeyservicePath, resetKeyserviceResolution, readCloudCredentials, writeCloudCredentials, initiateDeviceFlow, pollDeviceFlow, CloudPackClient, CloudArtifactClient, } from "./cloud";
|
|
45
|
+
export type { KeyserviceHandle, KeyserviceResolution, KeyserviceSource, DeviceSession, DevicePollResult, RemotePackConfig, RemotePackResult, } from "./cloud";
|
|
44
46
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -41,4 +41,6 @@ export type { KmsProvider, KmsWrapResult, KmsProviderType } from "./kms";
|
|
|
41
41
|
export { VALID_KMS_PROVIDERS } from "./kms";
|
|
42
42
|
export { BackendMigrator } from "./migration/backend";
|
|
43
43
|
export type { MigrationTarget, MigrationOptions, MigrationResult, MigrationProgressEvent, } from "./migration/backend";
|
|
44
|
+
export { spawnKeyservice, resolveKeyservicePath, resetKeyserviceResolution, readCloudCredentials, writeCloudCredentials, initiateDeviceFlow, pollDeviceFlow, CloudPackClient, CloudArtifactClient, } from "./cloud";
|
|
45
|
+
export type { KeyserviceHandle, KeyserviceResolution, KeyserviceSource, DeviceSession, DevicePollResult, RemotePackConfig, RemotePackResult, } from "./cloud";
|
|
44
46
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|