modal 0.3.18 → 0.3.19

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.cts CHANGED
@@ -226,7 +226,7 @@ type ExecOptions = {
226
226
  /** Timeout for the process in milliseconds. Defaults to 0 (no timeout). */
227
227
  timeout?: number;
228
228
  /** Secrets with environment variables for the command. */
229
- secrets?: [Secret];
229
+ secrets?: Secret[];
230
230
  };
231
231
  /** A port forwarded from within a running Modal sandbox. */
232
232
  declare class Tunnel {
package/dist/index.d.ts CHANGED
@@ -226,7 +226,7 @@ type ExecOptions = {
226
226
  /** Timeout for the process in milliseconds. Defaults to 0 (no timeout). */
227
227
  timeout?: number;
228
228
  /** Secrets with environment variables for the command. */
229
- secrets?: [Secret];
229
+ secrets?: Secret[];
230
230
  };
231
231
  /** A port forwarded from within a running Modal sandbox. */
232
232
  declare class Tunnel {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "modal",
3
- "version": "0.3.18",
3
+ "version": "0.3.19",
4
4
  "description": "Modal client library for JavaScript",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://modal.com/docs",