@byok-sdk/keys 0.2.1 → 0.3.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/README.md +7 -0
- package/dist/bin/pi-provider-launcher.js +57 -19
- package/dist/bin/pi-provider-launcher.js.map +1 -1
- package/dist/index.js +26 -14
- package/dist/index.js.map +1 -1
- package/dist/macos-keychain.d.ts +2 -0
- package/dist/pi-provider-launcher-core.d.ts +1 -0
- package/package.json +2 -2
package/dist/macos-keychain.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export interface MacOsKeychainSecretStoreOptions {
|
|
|
23
23
|
*/
|
|
24
24
|
allowUnprefixedRead?: boolean;
|
|
25
25
|
commandRunner?: CommandRunner;
|
|
26
|
+
/** Explicit macOS keychain file; omitted means the user default keychain. */
|
|
27
|
+
keychainPath?: string;
|
|
26
28
|
platform?: NodeJS.Platform;
|
|
27
29
|
servicePrefix?: string;
|
|
28
30
|
storagePrefix?: string;
|
|
@@ -7,6 +7,7 @@ export interface PiProviderLauncherOptions {
|
|
|
7
7
|
modelId: string;
|
|
8
8
|
sessionDir: string;
|
|
9
9
|
secretServicePrefix?: string;
|
|
10
|
+
macosKeychainPath?: string;
|
|
10
11
|
piArgs: string[];
|
|
11
12
|
}
|
|
12
13
|
export declare function parsePiProviderLauncherOptions(args: string[]): PiProviderLauncherOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byok-sdk/keys",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "BYOK SDK key management: provider profiles, credential-backed auth headers, and direct provider transports",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"clean": "rm -rf dist"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@byok-sdk/core": "0.
|
|
51
|
+
"@byok-sdk/core": "0.7.0",
|
|
52
52
|
"zod": "^4.4.3"
|
|
53
53
|
}
|
|
54
54
|
}
|