@junobuild/admin 0.6.4 → 0.6.6
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.
|
@@ -30,9 +30,11 @@ declare const ReleaseMetadataSchema: z.ZodObject<{
|
|
|
30
30
|
console: z.ZodString;
|
|
31
31
|
/**
|
|
32
32
|
* Version of the Observatory module included in the release.
|
|
33
|
-
*
|
|
33
|
+
* This field is optional because it was introduced in Juno v0.0.10.
|
|
34
|
+
*
|
|
35
|
+
* @type {MetadataVersion | undefined}
|
|
34
36
|
*/
|
|
35
|
-
observatory: z.ZodString
|
|
37
|
+
observatory: z.ZodOptional<z.ZodString>;
|
|
36
38
|
/**
|
|
37
39
|
* Version of the Mission Control module included in the release.
|
|
38
40
|
* @type {MetadataVersion}
|
|
@@ -45,9 +47,11 @@ declare const ReleaseMetadataSchema: z.ZodObject<{
|
|
|
45
47
|
satellite: z.ZodString;
|
|
46
48
|
/**
|
|
47
49
|
* Version of the Orbiter module included in the release.
|
|
48
|
-
*
|
|
50
|
+
* This field is optional because it was introduced in Juno v0.0.17.
|
|
51
|
+
*
|
|
52
|
+
* @type {MetadataVersion | undefined}
|
|
49
53
|
*/
|
|
50
|
-
orbiter: z.ZodString
|
|
54
|
+
orbiter: z.ZodOptional<z.ZodString>;
|
|
51
55
|
/**
|
|
52
56
|
* Version of the Sputnik module included in the release.
|
|
53
57
|
* This field is optional because it was introduced in Juno v0.0.47.
|
|
@@ -95,9 +99,11 @@ export declare const ReleasesMetadataSchema: z.ZodObject<{
|
|
|
95
99
|
console: z.ZodString;
|
|
96
100
|
/**
|
|
97
101
|
* Version of the Observatory module included in the release.
|
|
98
|
-
*
|
|
102
|
+
* This field is optional because it was introduced in Juno v0.0.10.
|
|
103
|
+
*
|
|
104
|
+
* @type {MetadataVersion | undefined}
|
|
99
105
|
*/
|
|
100
|
-
observatory: z.ZodString
|
|
106
|
+
observatory: z.ZodOptional<z.ZodString>;
|
|
101
107
|
/**
|
|
102
108
|
* Version of the Mission Control module included in the release.
|
|
103
109
|
* @type {MetadataVersion}
|
|
@@ -110,9 +116,11 @@ export declare const ReleasesMetadataSchema: z.ZodObject<{
|
|
|
110
116
|
satellite: z.ZodString;
|
|
111
117
|
/**
|
|
112
118
|
* Version of the Orbiter module included in the release.
|
|
113
|
-
*
|
|
119
|
+
* This field is optional because it was introduced in Juno v0.0.17.
|
|
120
|
+
*
|
|
121
|
+
* @type {MetadataVersion | undefined}
|
|
114
122
|
*/
|
|
115
|
-
orbiter: z.ZodString
|
|
123
|
+
orbiter: z.ZodOptional<z.ZodString>;
|
|
116
124
|
/**
|
|
117
125
|
* Version of the Sputnik module included in the release.
|
|
118
126
|
* This field is optional because it was introduced in Juno v0.0.47.
|