@junobuild/config 1.0.1 → 1.1.1

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.
@@ -51,14 +51,14 @@ export declare const JunoConfigSchema: z.ZodObject<{
51
51
  version: z.ZodOptional<z.ZodBigInt>;
52
52
  }, z.core.$strict>>;
53
53
  assertions: z.ZodOptional<z.ZodObject<{
54
- heapMemory: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodBoolean]>>;
54
+ heapMemory: z.ZodOptional<z.ZodUnion<readonly [z.ZodBigInt, z.ZodBoolean]>>;
55
55
  }, z.core.$strict>>;
56
56
  settings: z.ZodOptional<z.ZodObject<{
57
57
  freezingThreshold: z.ZodOptional<z.ZodBigInt>;
58
58
  reservedCyclesLimit: z.ZodOptional<z.ZodBigInt>;
59
59
  logVisibility: z.ZodOptional<z.ZodEnum<{
60
- controllers: "controllers";
61
60
  public: "public";
61
+ controllers: "controllers";
62
62
  }>>;
63
63
  heapMemoryLimit: z.ZodOptional<z.ZodBigInt>;
64
64
  memoryAllocation: z.ZodOptional<z.ZodBigInt>;
@@ -69,16 +69,16 @@ export declare const JunoConfigSchema: z.ZodObject<{
69
69
  version: z.ZodOptional<z.ZodBigInt>;
70
70
  collection: z.ZodString;
71
71
  read: z.ZodEnum<{
72
- controllers: "controllers";
73
72
  public: "public";
74
73
  private: "private";
75
74
  managed: "managed";
75
+ controllers: "controllers";
76
76
  }>;
77
77
  write: z.ZodEnum<{
78
- controllers: "controllers";
79
78
  public: "public";
80
79
  private: "private";
81
80
  managed: "managed";
81
+ controllers: "controllers";
82
82
  }>;
83
83
  memory: z.ZodEnum<{
84
84
  heap: "heap";
@@ -93,16 +93,16 @@ export declare const JunoConfigSchema: z.ZodObject<{
93
93
  version: z.ZodOptional<z.ZodBigInt>;
94
94
  collection: z.ZodString;
95
95
  read: z.ZodEnum<{
96
- controllers: "controllers";
97
96
  public: "public";
98
97
  private: "private";
99
98
  managed: "managed";
99
+ controllers: "controllers";
100
100
  }>;
101
101
  write: z.ZodEnum<{
102
- controllers: "controllers";
103
102
  public: "public";
104
103
  private: "private";
105
104
  managed: "managed";
105
+ controllers: "controllers";
106
106
  }>;
107
107
  memory: z.ZodEnum<{
108
108
  heap: "heap";
@@ -160,14 +160,14 @@ export declare const JunoConfigSchema: z.ZodObject<{
160
160
  version: z.ZodOptional<z.ZodBigInt>;
161
161
  }, z.core.$strict>>;
162
162
  assertions: z.ZodOptional<z.ZodObject<{
163
- heapMemory: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodBoolean]>>;
163
+ heapMemory: z.ZodOptional<z.ZodUnion<readonly [z.ZodBigInt, z.ZodBoolean]>>;
164
164
  }, z.core.$strict>>;
165
165
  settings: z.ZodOptional<z.ZodObject<{
166
166
  freezingThreshold: z.ZodOptional<z.ZodBigInt>;
167
167
  reservedCyclesLimit: z.ZodOptional<z.ZodBigInt>;
168
168
  logVisibility: z.ZodOptional<z.ZodEnum<{
169
- controllers: "controllers";
170
169
  public: "public";
170
+ controllers: "controllers";
171
171
  }>>;
172
172
  heapMemoryLimit: z.ZodOptional<z.ZodBigInt>;
173
173
  memoryAllocation: z.ZodOptional<z.ZodBigInt>;
@@ -178,16 +178,16 @@ export declare const JunoConfigSchema: z.ZodObject<{
178
178
  version: z.ZodOptional<z.ZodBigInt>;
179
179
  collection: z.ZodString;
180
180
  read: z.ZodEnum<{
181
- controllers: "controllers";
182
181
  public: "public";
183
182
  private: "private";
184
183
  managed: "managed";
184
+ controllers: "controllers";
185
185
  }>;
186
186
  write: z.ZodEnum<{
187
- controllers: "controllers";
188
187
  public: "public";
189
188
  private: "private";
190
189
  managed: "managed";
190
+ controllers: "controllers";
191
191
  }>;
192
192
  memory: z.ZodEnum<{
193
193
  heap: "heap";
@@ -202,16 +202,16 @@ export declare const JunoConfigSchema: z.ZodObject<{
202
202
  version: z.ZodOptional<z.ZodBigInt>;
203
203
  collection: z.ZodString;
204
204
  read: z.ZodEnum<{
205
- controllers: "controllers";
206
205
  public: "public";
207
206
  private: "private";
208
207
  managed: "managed";
208
+ controllers: "controllers";
209
209
  }>;
210
210
  write: z.ZodEnum<{
211
- controllers: "controllers";
212
211
  public: "public";
213
212
  private: "private";
214
213
  managed: "managed";
214
+ controllers: "controllers";
215
215
  }>;
216
216
  memory: z.ZodEnum<{
217
217
  heap: "heap";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/config",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "Configuration options for Juno CLI",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",
@@ -3,8 +3,8 @@ import * as z from 'zod/v4';
3
3
  * @see ModuleLogVisibility
4
4
  */
5
5
  export declare const ModuleLogVisibilitySchema: z.ZodEnum<{
6
- controllers: "controllers";
7
6
  public: "public";
7
+ controllers: "controllers";
8
8
  }>;
9
9
  /**
10
10
  * Specifies who can see the logs of the module.
@@ -22,8 +22,8 @@ export declare const ModuleSettingsSchema: z.ZodObject<{
22
22
  freezingThreshold: z.ZodOptional<z.ZodBigInt>;
23
23
  reservedCyclesLimit: z.ZodOptional<z.ZodBigInt>;
24
24
  logVisibility: z.ZodOptional<z.ZodEnum<{
25
- controllers: "controllers";
26
25
  public: "public";
26
+ controllers: "controllers";
27
27
  }>>;
28
28
  heapMemoryLimit: z.ZodOptional<z.ZodBigInt>;
29
29
  memoryAllocation: z.ZodOptional<z.ZodBigInt>;