@secure-exec/s3 0.0.0-codex-claude-runtime-fixes.72f157a → 0.0.0-codex-claude-runtime-fixes.9cbef3a

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/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export type S3Credentials = MountConfigJsonObject & {
5
5
  };
6
6
  export interface S3FsOptions {
7
7
  bucket: string;
8
+ metadataPath: string;
8
9
  prefix?: string;
9
10
  region?: string;
10
11
  credentials?: S3Credentials;
@@ -14,6 +15,7 @@ export interface S3FsOptions {
14
15
  }
15
16
  export type S3MountPluginConfig = MountConfigJsonObject & {
16
17
  bucket: string;
18
+ metadataPath: string;
17
19
  prefix?: string;
18
20
  region?: string;
19
21
  credentials?: S3Credentials;
@@ -25,6 +27,6 @@ export type S3MountPluginConfig = MountConfigJsonObject & {
25
27
  * Create a declarative S3 mount plugin descriptor.
26
28
  *
27
29
  * This keeps the legacy helper name while routing first-party S3-backed mounts
28
- * through the native `s3` plugin instead of a TypeScript runtime package.
30
+ * through the native `chunked_s3` plugin instead of a TypeScript runtime package.
29
31
  */
30
32
  export declare function createS3Backend(options: S3FsOptions): NativeMountPluginDescriptor<S3MountPluginConfig>;
package/dist/index.js CHANGED
@@ -2,13 +2,14 @@
2
2
  * Create a declarative S3 mount plugin descriptor.
3
3
  *
4
4
  * This keeps the legacy helper name while routing first-party S3-backed mounts
5
- * through the native `s3` plugin instead of a TypeScript runtime package.
5
+ * through the native `chunked_s3` plugin instead of a TypeScript runtime package.
6
6
  */
7
7
  export function createS3Backend(options) {
8
8
  return {
9
- id: "s3",
9
+ id: "chunked_s3",
10
10
  config: {
11
11
  bucket: options.bucket,
12
+ metadataPath: options.metadataPath,
12
13
  ...(options.prefix ? { prefix: options.prefix } : {}),
13
14
  ...(options.region ? { region: options.region } : {}),
14
15
  ...(options.credentials ? { credentials: options.credentials } : {}),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secure-exec/s3",
3
- "version": "0.0.0-codex-claude-runtime-fixes.72f157a",
3
+ "version": "0.0.0-codex-claude-runtime-fixes.9cbef3a",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "test": "vitest run"
22
22
  },
23
23
  "dependencies": {
24
- "@secure-exec/core": "0.0.0-codex-claude-runtime-fixes.72f157a"
24
+ "@secure-exec/core": "0.0.0-codex-claude-runtime-fixes.9cbef3a"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^22.10.2",