@junobuild/config 0.1.7 → 0.1.8-next-2025-04-30
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/README.md
CHANGED
|
@@ -252,10 +252,10 @@ changes, typically through CLI commands (e.g., `juno config`).
|
|
|
252
252
|
|
|
253
253
|
Represents the overall configuration for Juno.
|
|
254
254
|
|
|
255
|
-
| Property | Type
|
|
256
|
-
| ----------- |
|
|
257
|
-
| `satellite` | `SatelliteConfig`
|
|
258
|
-
| `orbiter` | `undefined`
|
|
255
|
+
| Property | Type | Description |
|
|
256
|
+
| ----------- | ---------------------------- | ------------------------------------------------------------------------- |
|
|
257
|
+
| `satellite` | `SatelliteConfig` | The configuration for the satellite. type: {SatelliteConfig} |
|
|
258
|
+
| `orbiter` | `OrbiterConfig or undefined` | The optional configuration for the orbiter. type: {OrbiterConfig}optional |
|
|
259
259
|
|
|
260
260
|
#### :gear: SatelliteDevCollections
|
|
261
261
|
|
|
@@ -317,9 +317,9 @@ Represents the development configuration for Juno.
|
|
|
317
317
|
|
|
318
318
|
#### :gear: OrbiterConfig
|
|
319
319
|
|
|
320
|
-
| Type | Type
|
|
321
|
-
| --------------- |
|
|
322
|
-
| `OrbiterConfig` | `Either<OrbiterId,
|
|
320
|
+
| Type | Type |
|
|
321
|
+
| --------------- | ------------------------------- |
|
|
322
|
+
| `OrbiterConfig` | `Either<OrbiterId, OrbiterIds>` |
|
|
323
323
|
|
|
324
324
|
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/mainnet/configs/orbiter.config.ts#L49)
|
|
325
325
|
|
|
@@ -40,6 +40,6 @@ export interface OrbiterIds {
|
|
|
40
40
|
* Represents the configuration for an orbiter (analytics).
|
|
41
41
|
*
|
|
42
42
|
* @typedef {Either<OrbiterId, OrbiterIds>} OrbiterConfig
|
|
43
|
-
* @property {OrbiterId | OrbiterIds} OrbiterId or
|
|
43
|
+
* @property {OrbiterId | OrbiterIds} OrbiterId or OrbiterIds - Defines a unique Orbiter or a collection of Orbiters.
|
|
44
44
|
*/
|
|
45
|
-
export type OrbiterConfig = Either<OrbiterId,
|
|
45
|
+
export type OrbiterConfig = Either<OrbiterId, OrbiterIds>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/config",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8-next-2025-04-30",
|
|
4
4
|
"description": "Configuration options for Juno CLI",
|
|
5
5
|
"author": "David Dal Busco (https://daviddalbusco.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,6 +41,6 @@
|
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://juno.build",
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"zod": "
|
|
44
|
+
"zod": "*"
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
}
|