@clef-sh/cloud 0.1.18-beta.85
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/bundled.d.ts +6 -0
- package/dist/bundled.d.ts.map +1 -0
- package/dist/cli.d.mts +9 -0
- package/dist/cli.d.ts +9 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +604 -0
- package/dist/cli.js.map +7 -0
- package/dist/cli.mjs +579 -0
- package/dist/cli.mjs.map +7 -0
- package/dist/commands/cloud.d.ts +20 -0
- package/dist/commands/cloud.d.ts.map +1 -0
- package/dist/constants.d.ts +2 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/credentials.d.ts +13 -0
- package/dist/credentials.d.ts.map +1 -0
- package/dist/device-flow.d.ts +46 -0
- package/dist/device-flow.d.ts.map +1 -0
- package/dist/index.d.mts +28 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +522 -0
- package/dist/index.js.map +7 -0
- package/dist/index.mjs +478 -0
- package/dist/index.mjs.map +7 -0
- package/dist/keyservice.d.ts +20 -0
- package/dist/keyservice.d.ts.map +1 -0
- package/dist/pack-client.d.ts +34 -0
- package/dist/pack-client.d.ts.map +1 -0
- package/dist/report-client.d.ts +18 -0
- package/dist/report-client.d.ts.map +1 -0
- package/dist/resolver.d.ts +24 -0
- package/dist/resolver.d.ts.map +1 -0
- package/dist/sops.d.ts +36 -0
- package/dist/sops.d.ts.map +1 -0
- package/dist/token-refresh.d.ts +27 -0
- package/dist/token-refresh.d.ts.map +1 -0
- package/dist/types.d.ts +96 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +95 -0
|
@@ -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/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/sops.d.ts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cloud-aware SopsClient factory.
|
|
3
|
+
*
|
|
4
|
+
* Spawns the keyservice sidecar and creates a SopsClient with the keyservice
|
|
5
|
+
* address for cloud backend decrypt/encrypt operations.
|
|
6
|
+
*/
|
|
7
|
+
import { SopsClient, SubprocessRunner } from "@clef-sh/core";
|
|
8
|
+
export interface CloudSopsResult {
|
|
9
|
+
client: SopsClient;
|
|
10
|
+
cleanup: () => Promise<void>;
|
|
11
|
+
}
|
|
12
|
+
export type CreateSopsClientFn = (repoRoot: string, runner: SubprocessRunner, keyserviceAddr?: string) => Promise<SopsClient>;
|
|
13
|
+
/**
|
|
14
|
+
* Resolve a fresh Cognito access token.
|
|
15
|
+
*
|
|
16
|
+
* Priority:
|
|
17
|
+
* 1. CLEF_CLOUD_REFRESH_TOKEN env var (CI)
|
|
18
|
+
* 2. ~/.clef/credentials.yaml refreshToken (interactive)
|
|
19
|
+
*
|
|
20
|
+
* If a cached access token exists and hasn't expired, returns it.
|
|
21
|
+
* Otherwise refreshes via the Cognito token endpoint.
|
|
22
|
+
*/
|
|
23
|
+
export declare function resolveAccessToken(): Promise<{
|
|
24
|
+
accessToken: string;
|
|
25
|
+
endpoint?: string;
|
|
26
|
+
}>;
|
|
27
|
+
/**
|
|
28
|
+
* Create a SopsClient backed by the cloud keyservice sidecar.
|
|
29
|
+
*
|
|
30
|
+
* @param repoRoot - Repository root directory.
|
|
31
|
+
* @param runner - Subprocess runner for SOPS invocations.
|
|
32
|
+
* @param createSopsClient - Factory function from the CLI to create a SopsClient
|
|
33
|
+
* (handles age credential resolution).
|
|
34
|
+
*/
|
|
35
|
+
export declare function createCloudSopsClient(repoRoot: string, runner: SubprocessRunner, createSopsClient: CreateSopsClientFn): Promise<CloudSopsResult>;
|
|
36
|
+
//# sourceMappingURL=sops.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sops.d.ts","sourceRoot":"","sources":["../src/sops.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAM7D,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,UAAU,CAAC;IACnB,OAAO,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC9B;AAED,MAAM,MAAM,kBAAkB,GAAG,CAC/B,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,gBAAgB,EACxB,cAAc,CAAC,EAAE,MAAM,KACpB,OAAO,CAAC,UAAU,CAAC,CAAC;AAEzB;;;;;;;;;GASG;AACH,wBAAsB,kBAAkB,IAAI,OAAO,CAAC;IAAE,WAAW,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC,CA0C9F;AAED;;;;;;;GAOG;AACH,wBAAsB,qBAAqB,CACzC,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,gBAAgB,EACxB,gBAAgB,EAAE,kBAAkB,GACnC,OAAO,CAAC,eAAe,CAAC,CAe1B"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cognito token refresh via the OAuth2 token endpoint.
|
|
3
|
+
*
|
|
4
|
+
* Uses plain HTTP — no AWS SDK dependency. The Cognito token endpoint
|
|
5
|
+
* accepts refresh tokens and returns fresh access tokens.
|
|
6
|
+
*/
|
|
7
|
+
export interface TokenRefreshConfig {
|
|
8
|
+
cognitoDomain: string;
|
|
9
|
+
clientId: string;
|
|
10
|
+
refreshToken: string;
|
|
11
|
+
}
|
|
12
|
+
export interface TokenRefreshResult {
|
|
13
|
+
accessToken: string;
|
|
14
|
+
idToken: string;
|
|
15
|
+
expiresIn: number;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Refresh a Cognito access token using a refresh token.
|
|
19
|
+
*
|
|
20
|
+
* Calls the Cognito OAuth2 token endpoint directly:
|
|
21
|
+
* POST https://<domain>.auth.<region>.amazoncognito.com/oauth2/token
|
|
22
|
+
*
|
|
23
|
+
* @returns Fresh access token, ID token, and expiry (seconds).
|
|
24
|
+
* @throws If the refresh token is expired or invalid.
|
|
25
|
+
*/
|
|
26
|
+
export declare function refreshAccessToken(config: TokenRefreshConfig): Promise<TokenRefreshResult>;
|
|
27
|
+
//# sourceMappingURL=token-refresh.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"token-refresh.d.ts","sourceRoot":"","sources":["../src/token-refresh.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,WAAW,kBAAkB;IACjC,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBAAkB;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;;;;;;;GAQG;AACH,wBAAsB,kBAAkB,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAqChG"}
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
/** User-scoped Cloud credentials stored in ~/.clef/credentials.yaml. */
|
|
2
|
+
export interface ClefCloudCredentials {
|
|
3
|
+
/** Cognito refresh token — long-lived, auto-refreshed to get access tokens. */
|
|
4
|
+
refreshToken: string;
|
|
5
|
+
/** Cached Cognito access token — short-lived, refreshed as needed. */
|
|
6
|
+
accessToken?: string;
|
|
7
|
+
/** Epoch ms when the cached access token expires. */
|
|
8
|
+
accessTokenExpiry?: number;
|
|
9
|
+
/** Cloud API endpoint override. Defaults to https://api.clef.sh. */
|
|
10
|
+
endpoint?: string;
|
|
11
|
+
/** Cognito OAuth2 domain for token refresh (e.g. https://clefcloud-123.auth.us-east-1.amazoncognito.com). */
|
|
12
|
+
cognitoDomain?: string;
|
|
13
|
+
/** Cognito CLI app client ID. */
|
|
14
|
+
clientId?: string;
|
|
15
|
+
}
|
|
16
|
+
/** Health status for a single matrix cell in a cloud report. */
|
|
17
|
+
export type CloudCellHealthStatus = "healthy" | "warning" | "critical" | "unknown";
|
|
18
|
+
/** A single cell summary sent to the Cloud API. */
|
|
19
|
+
export interface CloudReportCell {
|
|
20
|
+
namespace: string;
|
|
21
|
+
environment: string;
|
|
22
|
+
healthStatus: CloudCellHealthStatus;
|
|
23
|
+
description: string;
|
|
24
|
+
}
|
|
25
|
+
/** Summary section of a cloud API report. */
|
|
26
|
+
export interface CloudReportSummary {
|
|
27
|
+
filesScanned: number;
|
|
28
|
+
namespaces: string[];
|
|
29
|
+
environments: string[];
|
|
30
|
+
cells: CloudReportCell[];
|
|
31
|
+
violations: number;
|
|
32
|
+
passed: boolean;
|
|
33
|
+
}
|
|
34
|
+
/** Drift entry for a single namespace in a cloud report. */
|
|
35
|
+
export interface CloudReportDrift {
|
|
36
|
+
namespace: string;
|
|
37
|
+
isDrifted: boolean;
|
|
38
|
+
driftCount: number;
|
|
39
|
+
}
|
|
40
|
+
/** A single policy result in a cloud report. */
|
|
41
|
+
export interface CloudPolicyResult {
|
|
42
|
+
ruleId: string;
|
|
43
|
+
ruleName: string;
|
|
44
|
+
passed: boolean;
|
|
45
|
+
severity: string;
|
|
46
|
+
message: string;
|
|
47
|
+
scope?: {
|
|
48
|
+
namespace?: string;
|
|
49
|
+
environment?: string;
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
/** CI context attached to cloud reports when collectCIContext is enabled. */
|
|
53
|
+
export interface CloudCIContext {
|
|
54
|
+
provider: string;
|
|
55
|
+
pipelineUrl?: string;
|
|
56
|
+
trigger?: string;
|
|
57
|
+
}
|
|
58
|
+
/** The report payload sent to the Cloud API. */
|
|
59
|
+
export interface CloudApiReport {
|
|
60
|
+
commitSha: string;
|
|
61
|
+
branch: string;
|
|
62
|
+
commitTimestamp: number;
|
|
63
|
+
cliVersion: string;
|
|
64
|
+
summary: CloudReportSummary;
|
|
65
|
+
drift: CloudReportDrift[];
|
|
66
|
+
policyResults: CloudPolicyResult[];
|
|
67
|
+
ciContext?: CloudCIContext;
|
|
68
|
+
}
|
|
69
|
+
/** Batch payload for backfill submissions (max 500, oldest→newest). */
|
|
70
|
+
export interface CloudBatchPayload {
|
|
71
|
+
reports: CloudApiReport[];
|
|
72
|
+
}
|
|
73
|
+
/** Response from GET /api/v1/integrations/:integrationId. */
|
|
74
|
+
export interface CloudIntegrationResponse {
|
|
75
|
+
lastCommitSha: string | null;
|
|
76
|
+
config: {
|
|
77
|
+
collectCIContext: boolean;
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
/** Response from POST /api/v1/reports. */
|
|
81
|
+
export interface CloudReportResponse {
|
|
82
|
+
id: string;
|
|
83
|
+
commitSha: string;
|
|
84
|
+
}
|
|
85
|
+
/** Response from POST /api/v1/reports/batch. */
|
|
86
|
+
export interface CloudBatchResponse {
|
|
87
|
+
accepted: number;
|
|
88
|
+
reportIds: string[];
|
|
89
|
+
}
|
|
90
|
+
/** Thrown when a Cloud API request fails. */
|
|
91
|
+
export declare class CloudApiError extends Error {
|
|
92
|
+
readonly statusCode: number;
|
|
93
|
+
readonly fix?: string | undefined;
|
|
94
|
+
constructor(message: string, statusCode: number, fix?: string | undefined);
|
|
95
|
+
}
|
|
96
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clef-sh/cloud",
|
|
3
|
+
"version": "0.1.18-beta.85",
|
|
4
|
+
"description": "Clef Cloud integration — managed KMS, device-flow auth, artifact hosting",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/clef-sh/clef",
|
|
8
|
+
"directory": "packages/cloud"
|
|
9
|
+
},
|
|
10
|
+
"main": "dist/index.js",
|
|
11
|
+
"module": "dist/index.mjs",
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": {
|
|
16
|
+
"types": "./dist/index.d.mts",
|
|
17
|
+
"default": "./dist/index.mjs"
|
|
18
|
+
},
|
|
19
|
+
"require": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/index.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"./cli": {
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/cli.d.mts",
|
|
27
|
+
"default": "./dist/cli.mjs"
|
|
28
|
+
},
|
|
29
|
+
"require": {
|
|
30
|
+
"types": "./dist/cli.d.ts",
|
|
31
|
+
"default": "./dist/cli.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"./ui": {
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./dist/ui/index.d.mts",
|
|
37
|
+
"default": "./dist/ui/index.mjs"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./dist/ui/index.d.ts",
|
|
41
|
+
"default": "./dist/ui/index.js"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"typesVersions": {
|
|
46
|
+
"*": {
|
|
47
|
+
"cli": [
|
|
48
|
+
"dist/cli.d.ts"
|
|
49
|
+
],
|
|
50
|
+
"ui": [
|
|
51
|
+
"dist/ui/index.d.ts"
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"dist"
|
|
57
|
+
],
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsc --noEmit && node scripts/build.mjs",
|
|
60
|
+
"test": "jest",
|
|
61
|
+
"test:coverage": "jest --coverage"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"yaml": "^2.8.3"
|
|
65
|
+
},
|
|
66
|
+
"optionalDependencies": {
|
|
67
|
+
"@clef-sh/keyservice-darwin-arm64": "0.1.5",
|
|
68
|
+
"@clef-sh/keyservice-darwin-x64": "0.1.5",
|
|
69
|
+
"@clef-sh/keyservice-linux-x64": "0.1.5",
|
|
70
|
+
"@clef-sh/keyservice-linux-arm64": "0.1.5",
|
|
71
|
+
"@clef-sh/keyservice-win32-x64": "0.1.5"
|
|
72
|
+
},
|
|
73
|
+
"peerDependencies": {
|
|
74
|
+
"@clef-sh/core": ">=0.1.0"
|
|
75
|
+
},
|
|
76
|
+
"peerDependenciesMeta": {
|
|
77
|
+
"@clef-sh/core": {
|
|
78
|
+
"optional": false
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@clef-sh/core": "*",
|
|
83
|
+
"@types/jest": "^29.5.0",
|
|
84
|
+
"@types/node": "^20.11.0",
|
|
85
|
+
"esbuild": "^0.27.4",
|
|
86
|
+
"jest": "^29.7.0",
|
|
87
|
+
"ts-jest": "^29.1.0",
|
|
88
|
+
"typescript": "^5.4.0"
|
|
89
|
+
},
|
|
90
|
+
"publishConfig": {
|
|
91
|
+
"access": "public",
|
|
92
|
+
"provenance": true
|
|
93
|
+
},
|
|
94
|
+
"license": "MIT"
|
|
95
|
+
}
|