@junobuild/admin 0.6.3 → 0.6.4

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.
@@ -48,6 +48,13 @@ declare const ReleaseMetadataSchema: z.ZodObject<{
48
48
  * @type {MetadataVersion}
49
49
  */
50
50
  orbiter: z.ZodString;
51
+ /**
52
+ * Version of the Sputnik module included in the release.
53
+ * This field is optional because it was introduced in Juno v0.0.47.
54
+ *
55
+ * @type {MetadataVersion | undefined}
56
+ */
57
+ sputnik: z.ZodOptional<z.ZodString>;
51
58
  }, z.core.$strict>;
52
59
  /**
53
60
  * The metadata for a release provided by Juno.
@@ -106,6 +113,13 @@ export declare const ReleasesMetadataSchema: z.ZodObject<{
106
113
  * @type {MetadataVersion}
107
114
  */
108
115
  orbiter: z.ZodString;
116
+ /**
117
+ * Version of the Sputnik module included in the release.
118
+ * This field is optional because it was introduced in Juno v0.0.47.
119
+ *
120
+ * @type {MetadataVersion | undefined}
121
+ */
122
+ sputnik: z.ZodOptional<z.ZodString>;
109
123
  }, z.core.$strict>>;
110
124
  }, z.core.$strict>;
111
125
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/admin",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
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",