bun-types 1.3.6-canary.20260105T140815 → 1.3.6-canary.20260107T140751

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.
@@ -33,7 +33,7 @@ Alternatively, you can create a PM2 configuration file. Create a file named `pm2
33
33
 
34
34
  ```js pm2.config.js icon="file-code"
35
35
  module.exports = {
36
- title: "app", // Name of your application
36
+ name: "app", // Name of your application
37
37
  script: "index.ts", // Entry point of your application
38
38
  interpreter: "bun", // Bun interpreter
39
39
  env: {
package/package.json CHANGED
@@ -33,5 +33,5 @@
33
33
  "bun.js",
34
34
  "types"
35
35
  ],
36
- "version": "1.3.6-canary.20260105T140815"
36
+ "version": "1.3.6-canary.20260107T140751"
37
37
  }
package/s3.d.ts CHANGED
@@ -321,6 +321,30 @@ declare module "bun" {
321
321
  | "SNOW"
322
322
  | "STANDARD_IA";
323
323
 
324
+ /**
325
+ * When set to `true`, confirms that the requester knows they will be charged
326
+ * for the request and data transfer costs. Required for accessing objects
327
+ * in Requester Pays buckets.
328
+ *
329
+ * @see https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html
330
+ *
331
+ * @example
332
+ * // Accessing a file in a Requester Pays bucket
333
+ * const file = s3.file("data.csv", {
334
+ * bucket: "requester-pays-bucket",
335
+ * requestPayer: true
336
+ * });
337
+ * const content = await file.text();
338
+ *
339
+ * @example
340
+ * // Uploading to a Requester Pays bucket
341
+ * await s3.write("output.json", data, {
342
+ * bucket: "requester-pays-bucket",
343
+ * requestPayer: true
344
+ * });
345
+ */
346
+ requestPayer?: boolean;
347
+
324
348
  /**
325
349
  * @deprecated The size of the internal buffer in bytes. Defaults to 5 MiB. use `partSize` and `queueSize` instead.
326
350
  */