@junobuild/config 0.0.11 → 0.0.12
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.
|
@@ -22,7 +22,7 @@ export interface ModuleSettings {
|
|
|
22
22
|
*
|
|
23
23
|
* @type {bigint}
|
|
24
24
|
*/
|
|
25
|
-
freezingThreshold
|
|
25
|
+
freezingThreshold?: bigint;
|
|
26
26
|
/**
|
|
27
27
|
* The number of cycles reserved for the module's operations to ensure it has enough cycles to function.
|
|
28
28
|
*
|
|
@@ -30,13 +30,13 @@ export interface ModuleSettings {
|
|
|
30
30
|
*
|
|
31
31
|
* @type {bigint}
|
|
32
32
|
*/
|
|
33
|
-
reservedCyclesLimit
|
|
33
|
+
reservedCyclesLimit?: bigint;
|
|
34
34
|
/**
|
|
35
35
|
* Controls who can see the module's logs.
|
|
36
36
|
*
|
|
37
37
|
* @type {ModuleLogVisibility}
|
|
38
38
|
*/
|
|
39
|
-
logVisibility
|
|
39
|
+
logVisibility?: ModuleLogVisibility;
|
|
40
40
|
/**
|
|
41
41
|
* The maximum amount of WebAssembly (Wasm) memory the module can use on the heap.
|
|
42
42
|
*
|
|
@@ -44,7 +44,7 @@ export interface ModuleSettings {
|
|
|
44
44
|
*
|
|
45
45
|
* @type {bigint}
|
|
46
46
|
*/
|
|
47
|
-
wasmMemoryLimit
|
|
47
|
+
wasmMemoryLimit?: bigint;
|
|
48
48
|
/**
|
|
49
49
|
* The amount of memory explicitly allocated to the module.
|
|
50
50
|
*
|
|
@@ -52,7 +52,7 @@ export interface ModuleSettings {
|
|
|
52
52
|
*
|
|
53
53
|
* @type {bigint}
|
|
54
54
|
*/
|
|
55
|
-
memoryAllocation
|
|
55
|
+
memoryAllocation?: bigint;
|
|
56
56
|
/**
|
|
57
57
|
* The proportion of compute capacity allocated to the module.
|
|
58
58
|
*
|
|
@@ -60,5 +60,5 @@ export interface ModuleSettings {
|
|
|
60
60
|
*
|
|
61
61
|
* @type {bigint}
|
|
62
62
|
*/
|
|
63
|
-
computeAllocation
|
|
63
|
+
computeAllocation?: bigint;
|
|
64
64
|
}
|