@moonbase.sh/storefront-api 2.1.0 → 2.2.0
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/dist/index.cjs +12 -0
- package/dist/index.d.cts +177 -1
- package/dist/index.d.ts +177 -1
- package/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -24,6 +24,7 @@ __export(index_exports, {
|
|
|
24
24
|
ActivationRequestFulfillmentType: () => ActivationRequestFulfillmentType,
|
|
25
25
|
ActivationRequestStatus: () => ActivationRequestStatus,
|
|
26
26
|
ActivationStatus: () => ActivationStatus,
|
|
27
|
+
Architecture: () => Architecture,
|
|
27
28
|
ConnectableAccountProvider: () => ConnectableAccountProvider,
|
|
28
29
|
ConsoleLogger: () => ConsoleLogger,
|
|
29
30
|
CycleLength: () => CycleLength,
|
|
@@ -193,6 +194,15 @@ var Platform = /* @__PURE__ */ ((Platform2) => {
|
|
|
193
194
|
Platform2["Android"] = "Android";
|
|
194
195
|
return Platform2;
|
|
195
196
|
})(Platform || {});
|
|
197
|
+
var Architecture = /* @__PURE__ */ ((Architecture2) => {
|
|
198
|
+
Architecture2["Unknown"] = "Unknown";
|
|
199
|
+
Architecture2["Universal"] = "Universal";
|
|
200
|
+
Architecture2["X86"] = "X86";
|
|
201
|
+
Architecture2["X64"] = "X64";
|
|
202
|
+
Architecture2["Arm"] = "Arm";
|
|
203
|
+
Architecture2["Arm64"] = "Arm64";
|
|
204
|
+
return Architecture2;
|
|
205
|
+
})(Architecture || {});
|
|
196
206
|
|
|
197
207
|
// src/inventory/products/schemas.ts
|
|
198
208
|
var manifestSchema = import_zod2.z.object({
|
|
@@ -206,6 +216,7 @@ var downloadSchema = import_zod2.z.object({
|
|
|
206
216
|
name: import_zod2.z.string(),
|
|
207
217
|
key: import_zod2.z.string(),
|
|
208
218
|
platform: import_zod2.z.nativeEnum(Platform),
|
|
219
|
+
arch: import_zod2.z.nativeEnum(Architecture).nullish(),
|
|
209
220
|
size: import_zod2.z.number(),
|
|
210
221
|
path: import_zod2.z.string().nullable(),
|
|
211
222
|
manifest: manifestSchema.optional()
|
|
@@ -1733,6 +1744,7 @@ var MoonbaseClient = class {
|
|
|
1733
1744
|
ActivationRequestFulfillmentType,
|
|
1734
1745
|
ActivationRequestStatus,
|
|
1735
1746
|
ActivationStatus,
|
|
1747
|
+
Architecture,
|
|
1736
1748
|
ConnectableAccountProvider,
|
|
1737
1749
|
ConsoleLogger,
|
|
1738
1750
|
CycleLength,
|