@junobuild/admin 0.6.3 → 0.6.5

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
- * @type {MetadataVersion}
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,18 @@ declare const ReleaseMetadataSchema: z.ZodObject<{
45
47
  satellite: z.ZodString;
46
48
  /**
47
49
  * Version of the Orbiter module included in the release.
48
- * @type {MetadataVersion}
50
+ * This field is optional because it was introduced in Juno v0.0.17.
51
+ *
52
+ * @type {MetadataVersion | undefined}
53
+ */
54
+ orbiter: z.ZodOptional<z.ZodString>;
55
+ /**
56
+ * Version of the Sputnik module included in the release.
57
+ * This field is optional because it was introduced in Juno v0.0.47.
58
+ *
59
+ * @type {MetadataVersion | undefined}
49
60
  */
50
- orbiter: z.ZodString;
61
+ sputnik: z.ZodOptional<z.ZodString>;
51
62
  }, z.core.$strict>;
52
63
  /**
53
64
  * The metadata for a release provided by Juno.
@@ -88,9 +99,11 @@ export declare const ReleasesMetadataSchema: z.ZodObject<{
88
99
  console: z.ZodString;
89
100
  /**
90
101
  * Version of the Observatory module included in the release.
91
- * @type {MetadataVersion}
102
+ * This field is optional because it was introduced in Juno v0.0.10.
103
+ *
104
+ * @type {MetadataVersion | undefined}
92
105
  */
93
- observatory: z.ZodString;
106
+ observatory: z.ZodOptional<z.ZodString>;
94
107
  /**
95
108
  * Version of the Mission Control module included in the release.
96
109
  * @type {MetadataVersion}
@@ -103,9 +116,18 @@ export declare const ReleasesMetadataSchema: z.ZodObject<{
103
116
  satellite: z.ZodString;
104
117
  /**
105
118
  * Version of the Orbiter module included in the release.
106
- * @type {MetadataVersion}
119
+ * This field is optional because it was introduced in Juno v0.0.17.
120
+ *
121
+ * @type {MetadataVersion | undefined}
122
+ */
123
+ orbiter: z.ZodOptional<z.ZodString>;
124
+ /**
125
+ * Version of the Sputnik module included in the release.
126
+ * This field is optional because it was introduced in Juno v0.0.47.
127
+ *
128
+ * @type {MetadataVersion | undefined}
107
129
  */
108
- orbiter: z.ZodString;
130
+ sputnik: z.ZodOptional<z.ZodString>;
109
131
  }, z.core.$strict>>;
110
132
  }, z.core.$strict>;
111
133
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/admin",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "description": "A library for interfacing with admin features of Juno",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",