@executor-js/plugin-file-secrets 1.5.2 → 1.5.4

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.
@@ -0,0 +1,13 @@
1
+ export declare const xdgDataHome: () => string;
2
+ export interface FileSecretsPluginConfig {
3
+ /** Override the directory for auth.json (default: XDG data dir) */
4
+ readonly directory?: string;
5
+ }
6
+ declare const makeFileSecretsExtension: (options: FileSecretsPluginConfig | undefined) => {
7
+ filePath: string;
8
+ };
9
+ export type FileSecretsExtension = ReturnType<typeof makeFileSecretsExtension>;
10
+ export declare const fileSecretsPlugin: import("@executor-js/sdk").ConfiguredPlugin<"fileSecrets", {
11
+ filePath: string;
12
+ }, {}, FileSecretsPluginConfig, undefined, import("effect/Layer").Layer<unknown, never, never>, import("effect/unstable/httpapi/HttpApiGroup").Any>;
13
+ export {};
@@ -0,0 +1,4 @@
1
+ import { type Plugin } from "@executor-js/sdk";
2
+ import { type FileSecretsExtension, type FileSecretsPluginConfig } from "./index";
3
+ export type { FileSecretsPluginConfig } from "./index";
4
+ export declare const fileSecretsPlugin: (config?: FileSecretsPluginConfig) => Plugin<"fileSecrets", FileSecretsExtension, Record<string, never>>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@executor-js/plugin-file-secrets",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/plugins/file-secrets",
5
5
  "bugs": {
6
6
  "url": "https://github.com/RhysSullivan/executor/issues"
@@ -40,16 +40,16 @@
40
40
  "typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
41
41
  },
42
42
  "dependencies": {
43
- "@executor-js/sdk": "1.5.2"
43
+ "@executor-js/sdk": "1.5.4"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/node": "catalog:",
47
- "bun-types": "catalog:",
48
- "effect": "catalog:",
49
- "tsup": "catalog:",
50
- "vitest": "catalog:"
46
+ "@types/node": "^24.3.1",
47
+ "bun-types": "^1.2.22",
48
+ "effect": "4.0.0-beta.59",
49
+ "tsup": "^8.5.0",
50
+ "vitest": "^4.1.5"
51
51
  },
52
52
  "peerDependencies": {
53
- "effect": "catalog:"
53
+ "effect": "4.0.0-beta.59"
54
54
  }
55
55
  }