@junobuild/config 2.4.2 → 2.5.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.
@@ -14,6 +14,11 @@ export interface EmulatorPorts {
14
14
  * @default 5999
15
15
  */
16
16
  admin?: number;
17
+ /**
18
+ * Max number of seconds to wait for emulator ports to become ready.
19
+ * @default 30
20
+ */
21
+ timeoutInSeconds?: number;
17
22
  }
18
23
  /**
19
24
  * Configuration for the Skylab emulator.
@@ -170,6 +175,7 @@ export declare const EmulatorConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
170
175
  ports: z.ZodOptional<z.ZodObject<{
171
176
  server: z.ZodOptional<z.ZodNumber>;
172
177
  admin: z.ZodOptional<z.ZodNumber>;
178
+ timeoutInSeconds: z.ZodOptional<z.ZodNumber>;
173
179
  console: z.ZodOptional<z.ZodNumber>;
174
180
  }, z.core.$strict>>;
175
181
  }, z.core.$strict>;
@@ -210,6 +216,10 @@ export declare const EmulatorConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
210
216
  * @default 5999
211
217
  */
212
218
  admin: z.ZodOptional<z.ZodNumber>;
219
+ /**
220
+ * @default 30
221
+ */
222
+ timeoutInSeconds: z.ZodOptional<z.ZodNumber>;
213
223
  }, z.core.$strict>>;
214
224
  }, z.core.$strict>;
215
225
  }, z.core.$strict>, z.ZodObject<{
@@ -249,6 +259,10 @@ export declare const EmulatorConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
249
259
  * @default 5999
250
260
  */
251
261
  admin: z.ZodOptional<z.ZodNumber>;
262
+ /**
263
+ * @default 30
264
+ */
265
+ timeoutInSeconds: z.ZodOptional<z.ZodNumber>;
252
266
  }, z.core.$strict>>;
253
267
  }, z.core.$strict>;
254
268
  }, z.core.$strict>]>;
@@ -261,6 +261,7 @@ export declare const JunoConfigSchema: z.ZodObject<{
261
261
  ports: z.ZodOptional<z.ZodObject<{
262
262
  server: z.ZodOptional<z.ZodNumber>;
263
263
  admin: z.ZodOptional<z.ZodNumber>;
264
+ timeoutInSeconds: z.ZodOptional<z.ZodNumber>;
264
265
  console: z.ZodOptional<z.ZodNumber>;
265
266
  }, z.core.$strict>>;
266
267
  }, z.core.$strict>;
@@ -295,6 +296,7 @@ export declare const JunoConfigSchema: z.ZodObject<{
295
296
  ports: z.ZodOptional<z.ZodObject<{
296
297
  server: z.ZodOptional<z.ZodNumber>;
297
298
  admin: z.ZodOptional<z.ZodNumber>;
299
+ timeoutInSeconds: z.ZodOptional<z.ZodNumber>;
298
300
  }, z.core.$strict>>;
299
301
  }, z.core.$strict>;
300
302
  }, z.core.$strict>, z.ZodObject<{
@@ -328,6 +330,7 @@ export declare const JunoConfigSchema: z.ZodObject<{
328
330
  ports: z.ZodOptional<z.ZodObject<{
329
331
  server: z.ZodOptional<z.ZodNumber>;
330
332
  admin: z.ZodOptional<z.ZodNumber>;
333
+ timeoutInSeconds: z.ZodOptional<z.ZodNumber>;
331
334
  }, z.core.$strict>>;
332
335
  }, z.core.$strict>;
333
336
  }, z.core.$strict>]>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/config",
3
- "version": "2.4.2",
3
+ "version": "2.5.0",
4
4
  "description": "Configuration options for Juno CLI",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",