@junobuild/config 0.0.7-next-2024-05-21 → 0.0.8
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.
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import type { Rule } from '../types/rules';
|
|
2
2
|
/**
|
|
3
3
|
* Represents a database collection configuration for a satellite in a development environment.
|
|
4
|
-
* @typedef {Omit<Rule, 'createdAt' | 'updatedAt' | 'maxSize'>} SatelliteDevDbCollection
|
|
4
|
+
* @typedef {Omit<Rule, 'createdAt' | 'updatedAt' | 'maxSize' | 'version'>} SatelliteDevDbCollection
|
|
5
5
|
*/
|
|
6
|
-
export type SatelliteDevDbCollection = Omit<Rule, 'createdAt' | 'updatedAt' | 'maxSize'>;
|
|
6
|
+
export type SatelliteDevDbCollection = Omit<Rule, 'createdAt' | 'updatedAt' | 'maxSize' | 'version'>;
|
|
7
7
|
/**
|
|
8
8
|
* Represents a storage collection configuration for a satellite in a development environment.
|
|
9
|
-
* @typedef {Omit<Rule, 'createdAt' | 'updatedAt' | 'maxCapacity'>} SatelliteDevStorageCollection
|
|
9
|
+
* @typedef {Omit<Rule, 'createdAt' | 'updatedAt' | 'maxCapacity' | 'version'>} SatelliteDevStorageCollection
|
|
10
10
|
*/
|
|
11
|
-
export type SatelliteDevStorageCollection = Omit<Rule, 'createdAt' | 'updatedAt' | 'maxCapacity'>;
|
|
11
|
+
export type SatelliteDevStorageCollection = Omit<Rule, 'createdAt' | 'updatedAt' | 'maxCapacity' | 'version'>;
|
|
12
12
|
/**
|
|
13
13
|
* Represents the collections configuration for a satellite in a development environment.
|
|
14
14
|
* @interface SatelliteDevCollections
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/config",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Configuration options for Juno CLI",
|
|
5
5
|
"author": "David Dal Busco (https://daviddalbusco.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,4 +40,4 @@
|
|
|
40
40
|
"url": "https://github.com/junobuild/juno-js"
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://juno.build"
|
|
43
|
-
}
|
|
43
|
+
}
|