@moonbase.sh/storefront-api 2.1.0 → 2.3.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.d.ts CHANGED
@@ -87,6 +87,7 @@ declare const activationRequestSchema: z.ZodObject<{
87
87
  name: z.ZodString;
88
88
  key: z.ZodString;
89
89
  platform: z.ZodNativeEnum<typeof Platform>;
90
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
90
91
  size: z.ZodNumber;
91
92
  path: z.ZodNullable<z.ZodString>;
92
93
  manifest: z.ZodOptional<z.ZodObject<{
@@ -120,6 +121,7 @@ declare const activationRequestSchema: z.ZodObject<{
120
121
  key: string;
121
122
  platform: Platform;
122
123
  size: number;
124
+ arch?: Architecture | null | undefined;
123
125
  manifest?: {
124
126
  files: {
125
127
  name: string;
@@ -133,6 +135,7 @@ declare const activationRequestSchema: z.ZodObject<{
133
135
  key: string;
134
136
  platform: Platform;
135
137
  size: number;
138
+ arch?: Architecture | null | undefined;
136
139
  manifest?: {
137
140
  files: {
138
141
  name: string;
@@ -455,6 +458,7 @@ declare const activationRequestSchema: z.ZodObject<{
455
458
  key: string;
456
459
  platform: Platform;
457
460
  size: number;
461
+ arch?: Architecture | null | undefined;
458
462
  manifest?: {
459
463
  files: {
460
464
  name: string;
@@ -548,6 +552,7 @@ declare const activationRequestSchema: z.ZodObject<{
548
552
  key: string;
549
553
  platform: Platform;
550
554
  size: number;
555
+ arch?: Architecture | null | undefined;
551
556
  manifest?: {
552
557
  files: {
553
558
  name: string;
@@ -675,6 +680,7 @@ declare const activationRequestSchema: z.ZodObject<{
675
680
  key: string;
676
681
  platform: Platform;
677
682
  size: number;
683
+ arch?: Architecture | null | undefined;
678
684
  manifest?: {
679
685
  files: {
680
686
  name: string;
@@ -784,6 +790,7 @@ declare const activationRequestSchema: z.ZodObject<{
784
790
  key: string;
785
791
  platform: Platform;
786
792
  size: number;
793
+ arch?: Architecture | null | undefined;
787
794
  manifest?: {
788
795
  files: {
789
796
  name: string;
@@ -1550,6 +1557,7 @@ declare const licenseSchema: z.ZodObject<{
1550
1557
  name: z.ZodString;
1551
1558
  key: z.ZodString;
1552
1559
  platform: z.ZodNativeEnum<typeof Platform>;
1560
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
1553
1561
  size: z.ZodNumber;
1554
1562
  path: z.ZodNullable<z.ZodString>;
1555
1563
  manifest: z.ZodOptional<z.ZodObject<{
@@ -1583,6 +1591,7 @@ declare const licenseSchema: z.ZodObject<{
1583
1591
  key: string;
1584
1592
  platform: Platform;
1585
1593
  size: number;
1594
+ arch?: Architecture | null | undefined;
1586
1595
  manifest?: {
1587
1596
  files: {
1588
1597
  name: string;
@@ -1596,6 +1605,7 @@ declare const licenseSchema: z.ZodObject<{
1596
1605
  key: string;
1597
1606
  platform: Platform;
1598
1607
  size: number;
1608
+ arch?: Architecture | null | undefined;
1599
1609
  manifest?: {
1600
1610
  files: {
1601
1611
  name: string;
@@ -1629,6 +1639,7 @@ declare const licenseSchema: z.ZodObject<{
1629
1639
  key: string;
1630
1640
  platform: Platform;
1631
1641
  size: number;
1642
+ arch?: Architecture | null | undefined;
1632
1643
  manifest?: {
1633
1644
  files: {
1634
1645
  name: string;
@@ -1662,6 +1673,7 @@ declare const licenseSchema: z.ZodObject<{
1662
1673
  key: string;
1663
1674
  platform: Platform;
1664
1675
  size: number;
1676
+ arch?: Architecture | null | undefined;
1665
1677
  manifest?: {
1666
1678
  files: {
1667
1679
  name: string;
@@ -1728,6 +1740,7 @@ declare const licenseSchema: z.ZodObject<{
1728
1740
  key: string;
1729
1741
  platform: Platform;
1730
1742
  size: number;
1743
+ arch?: Architecture | null | undefined;
1731
1744
  manifest?: {
1732
1745
  files: {
1733
1746
  name: string;
@@ -1780,6 +1793,7 @@ declare const licenseSchema: z.ZodObject<{
1780
1793
  key: string;
1781
1794
  platform: Platform;
1782
1795
  size: number;
1796
+ arch?: Architecture | null | undefined;
1783
1797
  manifest?: {
1784
1798
  files: {
1785
1799
  name: string;
@@ -2115,7 +2129,8 @@ type SingleOrMultiple<T> = T | T[];
2115
2129
  interface RawPropertyObject {
2116
2130
  [key: string]: RawPropertyValue;
2117
2131
  }
2118
- type RawPropertyValue = string | number | boolean | RawPropertyObject;
2132
+ type RawPropertyArray = RawPropertyValue[];
2133
+ type RawPropertyValue = string | number | boolean | RawPropertyObject | RawPropertyArray;
2119
2134
  declare enum CycleLength {
2120
2135
  Daily = "Daily",
2121
2136
  Weekly = "Weekly",
@@ -2182,6 +2197,7 @@ declare const downloadSchema: z.ZodObject<{
2182
2197
  name: z.ZodString;
2183
2198
  key: z.ZodString;
2184
2199
  platform: z.ZodNativeEnum<typeof Platform>;
2200
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
2185
2201
  size: z.ZodNumber;
2186
2202
  path: z.ZodNullable<z.ZodString>;
2187
2203
  manifest: z.ZodOptional<z.ZodObject<{
@@ -2215,6 +2231,7 @@ declare const downloadSchema: z.ZodObject<{
2215
2231
  key: string;
2216
2232
  platform: Platform;
2217
2233
  size: number;
2234
+ arch?: Architecture | null | undefined;
2218
2235
  manifest?: {
2219
2236
  files: {
2220
2237
  name: string;
@@ -2228,6 +2245,7 @@ declare const downloadSchema: z.ZodObject<{
2228
2245
  key: string;
2229
2246
  platform: Platform;
2230
2247
  size: number;
2248
+ arch?: Architecture | null | undefined;
2231
2249
  manifest?: {
2232
2250
  files: {
2233
2251
  name: string;
@@ -2259,6 +2277,7 @@ declare const productSummarySchema: z.ZodObject<{
2259
2277
  name: z.ZodString;
2260
2278
  key: z.ZodString;
2261
2279
  platform: z.ZodNativeEnum<typeof Platform>;
2280
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
2262
2281
  size: z.ZodNumber;
2263
2282
  path: z.ZodNullable<z.ZodString>;
2264
2283
  manifest: z.ZodOptional<z.ZodObject<{
@@ -2292,6 +2311,7 @@ declare const productSummarySchema: z.ZodObject<{
2292
2311
  key: string;
2293
2312
  platform: Platform;
2294
2313
  size: number;
2314
+ arch?: Architecture | null | undefined;
2295
2315
  manifest?: {
2296
2316
  files: {
2297
2317
  name: string;
@@ -2305,6 +2325,7 @@ declare const productSummarySchema: z.ZodObject<{
2305
2325
  key: string;
2306
2326
  platform: Platform;
2307
2327
  size: number;
2328
+ arch?: Architecture | null | undefined;
2308
2329
  manifest?: {
2309
2330
  files: {
2310
2331
  name: string;
@@ -2338,6 +2359,7 @@ declare const productSummarySchema: z.ZodObject<{
2338
2359
  key: string;
2339
2360
  platform: Platform;
2340
2361
  size: number;
2362
+ arch?: Architecture | null | undefined;
2341
2363
  manifest?: {
2342
2364
  files: {
2343
2365
  name: string;
@@ -2371,6 +2393,7 @@ declare const productSummarySchema: z.ZodObject<{
2371
2393
  key: string;
2372
2394
  platform: Platform;
2373
2395
  size: number;
2396
+ arch?: Architecture | null | undefined;
2374
2397
  manifest?: {
2375
2398
  files: {
2376
2399
  name: string;
@@ -2396,6 +2419,14 @@ declare enum Platform {
2396
2419
  iOS = "iOS",
2397
2420
  Android = "Android"
2398
2421
  }
2422
+ declare enum Architecture {
2423
+ Unknown = "Unknown",
2424
+ Universal = "Universal",
2425
+ X86 = "X86",
2426
+ X64 = "X64",
2427
+ Arm = "Arm",
2428
+ Arm64 = "Arm64"
2429
+ }
2399
2430
  type DownloadManifest = z.infer<typeof manifestSchema>;
2400
2431
  type Download = z.infer<typeof downloadSchema>;
2401
2432
  type OwnedProduct = z.infer<typeof productSummarySchema>;
@@ -2765,6 +2796,7 @@ declare const subscriptionSchema: z.ZodObject<{
2765
2796
  name: z.ZodString;
2766
2797
  key: z.ZodString;
2767
2798
  platform: z.ZodNativeEnum<typeof Platform>;
2799
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
2768
2800
  size: z.ZodNumber;
2769
2801
  path: z.ZodNullable<z.ZodString>;
2770
2802
  manifest: z.ZodOptional<z.ZodObject<{
@@ -2798,6 +2830,7 @@ declare const subscriptionSchema: z.ZodObject<{
2798
2830
  key: string;
2799
2831
  platform: Platform;
2800
2832
  size: number;
2833
+ arch?: Architecture | null | undefined;
2801
2834
  manifest?: {
2802
2835
  files: {
2803
2836
  name: string;
@@ -2811,6 +2844,7 @@ declare const subscriptionSchema: z.ZodObject<{
2811
2844
  key: string;
2812
2845
  platform: Platform;
2813
2846
  size: number;
2847
+ arch?: Architecture | null | undefined;
2814
2848
  manifest?: {
2815
2849
  files: {
2816
2850
  name: string;
@@ -3133,6 +3167,7 @@ declare const subscriptionSchema: z.ZodObject<{
3133
3167
  key: string;
3134
3168
  platform: Platform;
3135
3169
  size: number;
3170
+ arch?: Architecture | null | undefined;
3136
3171
  manifest?: {
3137
3172
  files: {
3138
3173
  name: string;
@@ -3226,6 +3261,7 @@ declare const subscriptionSchema: z.ZodObject<{
3226
3261
  key: string;
3227
3262
  platform: Platform;
3228
3263
  size: number;
3264
+ arch?: Architecture | null | undefined;
3229
3265
  manifest?: {
3230
3266
  files: {
3231
3267
  name: string;
@@ -3323,6 +3359,7 @@ declare const subscriptionSchema: z.ZodObject<{
3323
3359
  key: string;
3324
3360
  platform: Platform;
3325
3361
  size: number;
3362
+ arch?: Architecture | null | undefined;
3326
3363
  manifest?: {
3327
3364
  files: {
3328
3365
  name: string;
@@ -3420,6 +3457,7 @@ declare const subscriptionSchema: z.ZodObject<{
3420
3457
  key: string;
3421
3458
  platform: Platform;
3422
3459
  size: number;
3460
+ arch?: Architecture | null | undefined;
3423
3461
  manifest?: {
3424
3462
  files: {
3425
3463
  name: string;
@@ -3522,6 +3560,7 @@ declare const subscriptionSchema: z.ZodObject<{
3522
3560
  name: z.ZodString;
3523
3561
  key: z.ZodString;
3524
3562
  platform: z.ZodNativeEnum<typeof Platform>;
3563
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
3525
3564
  size: z.ZodNumber;
3526
3565
  path: z.ZodNullable<z.ZodString>;
3527
3566
  manifest: z.ZodOptional<z.ZodObject<{
@@ -3555,6 +3594,7 @@ declare const subscriptionSchema: z.ZodObject<{
3555
3594
  key: string;
3556
3595
  platform: Platform;
3557
3596
  size: number;
3597
+ arch?: Architecture | null | undefined;
3558
3598
  manifest?: {
3559
3599
  files: {
3560
3600
  name: string;
@@ -3568,6 +3608,7 @@ declare const subscriptionSchema: z.ZodObject<{
3568
3608
  key: string;
3569
3609
  platform: Platform;
3570
3610
  size: number;
3611
+ arch?: Architecture | null | undefined;
3571
3612
  manifest?: {
3572
3613
  files: {
3573
3614
  name: string;
@@ -3890,6 +3931,7 @@ declare const subscriptionSchema: z.ZodObject<{
3890
3931
  key: string;
3891
3932
  platform: Platform;
3892
3933
  size: number;
3934
+ arch?: Architecture | null | undefined;
3893
3935
  manifest?: {
3894
3936
  files: {
3895
3937
  name: string;
@@ -3983,6 +4025,7 @@ declare const subscriptionSchema: z.ZodObject<{
3983
4025
  key: string;
3984
4026
  platform: Platform;
3985
4027
  size: number;
4028
+ arch?: Architecture | null | undefined;
3986
4029
  manifest?: {
3987
4030
  files: {
3988
4031
  name: string;
@@ -4390,6 +4433,7 @@ declare const subscriptionSchema: z.ZodObject<{
4390
4433
  key: string;
4391
4434
  platform: Platform;
4392
4435
  size: number;
4436
+ arch?: Architecture | null | undefined;
4393
4437
  manifest?: {
4394
4438
  files: {
4395
4439
  name: string;
@@ -4563,6 +4607,7 @@ declare const subscriptionSchema: z.ZodObject<{
4563
4607
  key: string;
4564
4608
  platform: Platform;
4565
4609
  size: number;
4610
+ arch?: Architecture | null | undefined;
4566
4611
  manifest?: {
4567
4612
  files: {
4568
4613
  name: string;
@@ -4742,6 +4787,7 @@ declare const subscriptionSchema: z.ZodObject<{
4742
4787
  key: string;
4743
4788
  platform: Platform;
4744
4789
  size: number;
4790
+ arch?: Architecture | null | undefined;
4745
4791
  manifest?: {
4746
4792
  files: {
4747
4793
  name: string;
@@ -4919,6 +4965,7 @@ declare const subscriptionSchema: z.ZodObject<{
4919
4965
  key: string;
4920
4966
  platform: Platform;
4921
4967
  size: number;
4968
+ arch?: Architecture | null | undefined;
4922
4969
  manifest?: {
4923
4970
  files: {
4924
4971
  name: string;
@@ -5122,6 +5169,7 @@ declare const subscriptionSchema: z.ZodObject<{
5122
5169
  key: string;
5123
5170
  platform: Platform;
5124
5171
  size: number;
5172
+ arch?: Architecture | null | undefined;
5125
5173
  manifest?: {
5126
5174
  files: {
5127
5175
  name: string;
@@ -5228,6 +5276,7 @@ declare const subscriptionSchema: z.ZodObject<{
5228
5276
  key: string;
5229
5277
  platform: Platform;
5230
5278
  size: number;
5279
+ arch?: Architecture | null | undefined;
5231
5280
  manifest?: {
5232
5281
  files: {
5233
5282
  name: string;
@@ -5460,6 +5509,7 @@ declare const subscriptionSchema: z.ZodObject<{
5460
5509
  key: string;
5461
5510
  platform: Platform;
5462
5511
  size: number;
5512
+ arch?: Architecture | null | undefined;
5463
5513
  manifest?: {
5464
5514
  files: {
5465
5515
  name: string;
@@ -5565,6 +5615,7 @@ declare const subscriptionSchema: z.ZodObject<{
5565
5615
  key: string;
5566
5616
  platform: Platform;
5567
5617
  size: number;
5618
+ arch?: Architecture | null | undefined;
5568
5619
  manifest?: {
5569
5620
  files: {
5570
5621
  name: string;
@@ -19891,6 +19942,7 @@ declare class StorefrontEndpoints {
19891
19942
  key: string;
19892
19943
  platform: Platform;
19893
19944
  size: number;
19945
+ arch?: Architecture | null | undefined;
19894
19946
  manifest?: {
19895
19947
  files: {
19896
19948
  name: string;
@@ -19995,6 +20047,7 @@ declare class StorefrontEndpoints {
19995
20047
  key: string;
19996
20048
  platform: Platform;
19997
20049
  size: number;
20050
+ arch?: Architecture | null | undefined;
19998
20051
  manifest?: {
19999
20052
  files: {
20000
20053
  name: string;
@@ -20180,6 +20233,7 @@ declare class StorefrontEndpoints {
20180
20233
  key: string;
20181
20234
  platform: Platform;
20182
20235
  size: number;
20236
+ arch?: Architecture | null | undefined;
20183
20237
  manifest?: {
20184
20238
  files: {
20185
20239
  name: string;
@@ -20282,6 +20336,7 @@ declare class StorefrontEndpoints {
20282
20336
  key: string;
20283
20337
  platform: Platform;
20284
20338
  size: number;
20339
+ arch?: Architecture | null | undefined;
20285
20340
  manifest?: {
20286
20341
  files: {
20287
20342
  name: string;
@@ -20447,6 +20502,7 @@ declare class StorefrontEndpoints {
20447
20502
  key: string;
20448
20503
  platform: Platform;
20449
20504
  size: number;
20505
+ arch?: Architecture | null | undefined;
20450
20506
  manifest?: {
20451
20507
  files: {
20452
20508
  name: string;
@@ -20549,6 +20605,7 @@ declare class StorefrontEndpoints {
20549
20605
  key: string;
20550
20606
  platform: Platform;
20551
20607
  size: number;
20608
+ arch?: Architecture | null | undefined;
20552
20609
  manifest?: {
20553
20610
  files: {
20554
20611
  name: string;
@@ -20762,6 +20819,7 @@ declare const voucherSchema: z.ZodObject<{
20762
20819
  name: z.ZodString;
20763
20820
  key: z.ZodString;
20764
20821
  platform: z.ZodNativeEnum<typeof Platform>;
20822
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
20765
20823
  size: z.ZodNumber;
20766
20824
  path: z.ZodNullable<z.ZodString>;
20767
20825
  manifest: z.ZodOptional<z.ZodObject<{
@@ -20795,6 +20853,7 @@ declare const voucherSchema: z.ZodObject<{
20795
20853
  key: string;
20796
20854
  platform: Platform;
20797
20855
  size: number;
20856
+ arch?: Architecture | null | undefined;
20798
20857
  manifest?: {
20799
20858
  files: {
20800
20859
  name: string;
@@ -20808,6 +20867,7 @@ declare const voucherSchema: z.ZodObject<{
20808
20867
  key: string;
20809
20868
  platform: Platform;
20810
20869
  size: number;
20870
+ arch?: Architecture | null | undefined;
20811
20871
  manifest?: {
20812
20872
  files: {
20813
20873
  name: string;
@@ -21130,6 +21190,7 @@ declare const voucherSchema: z.ZodObject<{
21130
21190
  key: string;
21131
21191
  platform: Platform;
21132
21192
  size: number;
21193
+ arch?: Architecture | null | undefined;
21133
21194
  manifest?: {
21134
21195
  files: {
21135
21196
  name: string;
@@ -21223,6 +21284,7 @@ declare const voucherSchema: z.ZodObject<{
21223
21284
  key: string;
21224
21285
  platform: Platform;
21225
21286
  size: number;
21287
+ arch?: Architecture | null | undefined;
21226
21288
  manifest?: {
21227
21289
  files: {
21228
21290
  name: string;
@@ -21319,6 +21381,7 @@ declare const voucherSchema: z.ZodObject<{
21319
21381
  key: string;
21320
21382
  platform: Platform;
21321
21383
  size: number;
21384
+ arch?: Architecture | null | undefined;
21322
21385
  manifest?: {
21323
21386
  files: {
21324
21387
  name: string;
@@ -21415,6 +21478,7 @@ declare const voucherSchema: z.ZodObject<{
21415
21478
  key: string;
21416
21479
  platform: Platform;
21417
21480
  size: number;
21481
+ arch?: Architecture | null | undefined;
21418
21482
  manifest?: {
21419
21483
  files: {
21420
21484
  name: string;
@@ -21517,6 +21581,7 @@ declare const voucherSchema: z.ZodObject<{
21517
21581
  name: z.ZodString;
21518
21582
  key: z.ZodString;
21519
21583
  platform: z.ZodNativeEnum<typeof Platform>;
21584
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
21520
21585
  size: z.ZodNumber;
21521
21586
  path: z.ZodNullable<z.ZodString>;
21522
21587
  manifest: z.ZodOptional<z.ZodObject<{
@@ -21550,6 +21615,7 @@ declare const voucherSchema: z.ZodObject<{
21550
21615
  key: string;
21551
21616
  platform: Platform;
21552
21617
  size: number;
21618
+ arch?: Architecture | null | undefined;
21553
21619
  manifest?: {
21554
21620
  files: {
21555
21621
  name: string;
@@ -21563,6 +21629,7 @@ declare const voucherSchema: z.ZodObject<{
21563
21629
  key: string;
21564
21630
  platform: Platform;
21565
21631
  size: number;
21632
+ arch?: Architecture | null | undefined;
21566
21633
  manifest?: {
21567
21634
  files: {
21568
21635
  name: string;
@@ -21885,6 +21952,7 @@ declare const voucherSchema: z.ZodObject<{
21885
21952
  key: string;
21886
21953
  platform: Platform;
21887
21954
  size: number;
21955
+ arch?: Architecture | null | undefined;
21888
21956
  manifest?: {
21889
21957
  files: {
21890
21958
  name: string;
@@ -21978,6 +22046,7 @@ declare const voucherSchema: z.ZodObject<{
21978
22046
  key: string;
21979
22047
  platform: Platform;
21980
22048
  size: number;
22049
+ arch?: Architecture | null | undefined;
21981
22050
  manifest?: {
21982
22051
  files: {
21983
22052
  name: string;
@@ -22385,6 +22454,7 @@ declare const voucherSchema: z.ZodObject<{
22385
22454
  key: string;
22386
22455
  platform: Platform;
22387
22456
  size: number;
22457
+ arch?: Architecture | null | undefined;
22388
22458
  manifest?: {
22389
22459
  files: {
22390
22460
  name: string;
@@ -22558,6 +22628,7 @@ declare const voucherSchema: z.ZodObject<{
22558
22628
  key: string;
22559
22629
  platform: Platform;
22560
22630
  size: number;
22631
+ arch?: Architecture | null | undefined;
22561
22632
  manifest?: {
22562
22633
  files: {
22563
22634
  name: string;
@@ -22736,6 +22807,7 @@ declare const voucherSchema: z.ZodObject<{
22736
22807
  key: string;
22737
22808
  platform: Platform;
22738
22809
  size: number;
22810
+ arch?: Architecture | null | undefined;
22739
22811
  manifest?: {
22740
22812
  files: {
22741
22813
  name: string;
@@ -22912,6 +22984,7 @@ declare const voucherSchema: z.ZodObject<{
22912
22984
  key: string;
22913
22985
  platform: Platform;
22914
22986
  size: number;
22987
+ arch?: Architecture | null | undefined;
22915
22988
  manifest?: {
22916
22989
  files: {
22917
22990
  name: string;
@@ -23089,6 +23162,7 @@ declare const voucherSchema: z.ZodObject<{
23089
23162
  key: string;
23090
23163
  platform: Platform;
23091
23164
  size: number;
23165
+ arch?: Architecture | null | undefined;
23092
23166
  manifest?: {
23093
23167
  files: {
23094
23168
  name: string;
@@ -23195,6 +23269,7 @@ declare const voucherSchema: z.ZodObject<{
23195
23269
  key: string;
23196
23270
  platform: Platform;
23197
23271
  size: number;
23272
+ arch?: Architecture | null | undefined;
23198
23273
  manifest?: {
23199
23274
  files: {
23200
23275
  name: string;
@@ -23371,6 +23446,7 @@ declare const voucherSchema: z.ZodObject<{
23371
23446
  key: string;
23372
23447
  platform: Platform;
23373
23448
  size: number;
23449
+ arch?: Architecture | null | undefined;
23374
23450
  manifest?: {
23375
23451
  files: {
23376
23452
  name: string;
@@ -23476,6 +23552,7 @@ declare const voucherSchema: z.ZodObject<{
23476
23552
  key: string;
23477
23553
  platform: Platform;
23478
23554
  size: number;
23555
+ arch?: Architecture | null | undefined;
23479
23556
  manifest?: {
23480
23557
  files: {
23481
23558
  name: string;
@@ -23684,6 +23761,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23684
23761
  name: z.ZodString;
23685
23762
  key: z.ZodString;
23686
23763
  platform: z.ZodNativeEnum<typeof Platform>;
23764
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
23687
23765
  size: z.ZodNumber;
23688
23766
  path: z.ZodNullable<z.ZodString>;
23689
23767
  manifest: z.ZodOptional<z.ZodObject<{
@@ -23717,6 +23795,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23717
23795
  key: string;
23718
23796
  platform: Platform;
23719
23797
  size: number;
23798
+ arch?: Architecture | null | undefined;
23720
23799
  manifest?: {
23721
23800
  files: {
23722
23801
  name: string;
@@ -23730,6 +23809,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23730
23809
  key: string;
23731
23810
  platform: Platform;
23732
23811
  size: number;
23812
+ arch?: Architecture | null | undefined;
23733
23813
  manifest?: {
23734
23814
  files: {
23735
23815
  name: string;
@@ -24052,6 +24132,7 @@ declare const storefrontProductSchema: z.ZodObject<{
24052
24132
  key: string;
24053
24133
  platform: Platform;
24054
24134
  size: number;
24135
+ arch?: Architecture | null | undefined;
24055
24136
  manifest?: {
24056
24137
  files: {
24057
24138
  name: string;
@@ -24145,6 +24226,7 @@ declare const storefrontProductSchema: z.ZodObject<{
24145
24226
  key: string;
24146
24227
  platform: Platform;
24147
24228
  size: number;
24229
+ arch?: Architecture | null | undefined;
24148
24230
  manifest?: {
24149
24231
  files: {
24150
24232
  name: string;
@@ -24244,6 +24326,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24244
24326
  name: z.ZodString;
24245
24327
  key: z.ZodString;
24246
24328
  platform: z.ZodNativeEnum<typeof Platform>;
24329
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
24247
24330
  size: z.ZodNumber;
24248
24331
  path: z.ZodNullable<z.ZodString>;
24249
24332
  manifest: z.ZodOptional<z.ZodObject<{
@@ -24277,6 +24360,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24277
24360
  key: string;
24278
24361
  platform: Platform;
24279
24362
  size: number;
24363
+ arch?: Architecture | null | undefined;
24280
24364
  manifest?: {
24281
24365
  files: {
24282
24366
  name: string;
@@ -24290,6 +24374,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24290
24374
  key: string;
24291
24375
  platform: Platform;
24292
24376
  size: number;
24377
+ arch?: Architecture | null | undefined;
24293
24378
  manifest?: {
24294
24379
  files: {
24295
24380
  name: string;
@@ -24612,6 +24697,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24612
24697
  key: string;
24613
24698
  platform: Platform;
24614
24699
  size: number;
24700
+ arch?: Architecture | null | undefined;
24615
24701
  manifest?: {
24616
24702
  files: {
24617
24703
  name: string;
@@ -24705,6 +24791,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24705
24791
  key: string;
24706
24792
  platform: Platform;
24707
24793
  size: number;
24794
+ arch?: Architecture | null | undefined;
24708
24795
  manifest?: {
24709
24796
  files: {
24710
24797
  name: string;
@@ -25112,6 +25199,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
25112
25199
  key: string;
25113
25200
  platform: Platform;
25114
25201
  size: number;
25202
+ arch?: Architecture | null | undefined;
25115
25203
  manifest?: {
25116
25204
  files: {
25117
25205
  name: string;
@@ -25285,6 +25373,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
25285
25373
  key: string;
25286
25374
  platform: Platform;
25287
25375
  size: number;
25376
+ arch?: Architecture | null | undefined;
25288
25377
  manifest?: {
25289
25378
  files: {
25290
25379
  name: string;
@@ -25464,6 +25553,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25464
25553
  name: z.ZodString;
25465
25554
  key: z.ZodString;
25466
25555
  platform: z.ZodNativeEnum<typeof Platform>;
25556
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
25467
25557
  size: z.ZodNumber;
25468
25558
  path: z.ZodNullable<z.ZodString>;
25469
25559
  manifest: z.ZodOptional<z.ZodObject<{
@@ -25497,6 +25587,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25497
25587
  key: string;
25498
25588
  platform: Platform;
25499
25589
  size: number;
25590
+ arch?: Architecture | null | undefined;
25500
25591
  manifest?: {
25501
25592
  files: {
25502
25593
  name: string;
@@ -25510,6 +25601,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25510
25601
  key: string;
25511
25602
  platform: Platform;
25512
25603
  size: number;
25604
+ arch?: Architecture | null | undefined;
25513
25605
  manifest?: {
25514
25606
  files: {
25515
25607
  name: string;
@@ -25832,6 +25924,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25832
25924
  key: string;
25833
25925
  platform: Platform;
25834
25926
  size: number;
25927
+ arch?: Architecture | null | undefined;
25835
25928
  manifest?: {
25836
25929
  files: {
25837
25930
  name: string;
@@ -25925,6 +26018,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25925
26018
  key: string;
25926
26019
  platform: Platform;
25927
26020
  size: number;
26021
+ arch?: Architecture | null | undefined;
25928
26022
  manifest?: {
25929
26023
  files: {
25930
26024
  name: string;
@@ -26023,6 +26117,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26023
26117
  name: z.ZodString;
26024
26118
  key: z.ZodString;
26025
26119
  platform: z.ZodNativeEnum<typeof Platform>;
26120
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
26026
26121
  size: z.ZodNumber;
26027
26122
  path: z.ZodNullable<z.ZodString>;
26028
26123
  manifest: z.ZodOptional<z.ZodObject<{
@@ -26056,6 +26151,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26056
26151
  key: string;
26057
26152
  platform: Platform;
26058
26153
  size: number;
26154
+ arch?: Architecture | null | undefined;
26059
26155
  manifest?: {
26060
26156
  files: {
26061
26157
  name: string;
@@ -26069,6 +26165,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26069
26165
  key: string;
26070
26166
  platform: Platform;
26071
26167
  size: number;
26168
+ arch?: Architecture | null | undefined;
26072
26169
  manifest?: {
26073
26170
  files: {
26074
26171
  name: string;
@@ -26391,6 +26488,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26391
26488
  key: string;
26392
26489
  platform: Platform;
26393
26490
  size: number;
26491
+ arch?: Architecture | null | undefined;
26394
26492
  manifest?: {
26395
26493
  files: {
26396
26494
  name: string;
@@ -26484,6 +26582,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26484
26582
  key: string;
26485
26583
  platform: Platform;
26486
26584
  size: number;
26585
+ arch?: Architecture | null | undefined;
26487
26586
  manifest?: {
26488
26587
  files: {
26489
26588
  name: string;
@@ -26891,6 +26990,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26891
26990
  key: string;
26892
26991
  platform: Platform;
26893
26992
  size: number;
26993
+ arch?: Architecture | null | undefined;
26894
26994
  manifest?: {
26895
26995
  files: {
26896
26996
  name: string;
@@ -27064,6 +27164,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27064
27164
  key: string;
27065
27165
  platform: Platform;
27066
27166
  size: number;
27167
+ arch?: Architecture | null | undefined;
27067
27168
  manifest?: {
27068
27169
  files: {
27069
27170
  name: string;
@@ -27227,6 +27328,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27227
27328
  name: z.ZodString;
27228
27329
  key: z.ZodString;
27229
27330
  platform: z.ZodNativeEnum<typeof Platform>;
27331
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
27230
27332
  size: z.ZodNumber;
27231
27333
  path: z.ZodNullable<z.ZodString>;
27232
27334
  manifest: z.ZodOptional<z.ZodObject<{
@@ -27260,6 +27362,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27260
27362
  key: string;
27261
27363
  platform: Platform;
27262
27364
  size: number;
27365
+ arch?: Architecture | null | undefined;
27263
27366
  manifest?: {
27264
27367
  files: {
27265
27368
  name: string;
@@ -27273,6 +27376,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27273
27376
  key: string;
27274
27377
  platform: Platform;
27275
27378
  size: number;
27379
+ arch?: Architecture | null | undefined;
27276
27380
  manifest?: {
27277
27381
  files: {
27278
27382
  name: string;
@@ -27595,6 +27699,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27595
27699
  key: string;
27596
27700
  platform: Platform;
27597
27701
  size: number;
27702
+ arch?: Architecture | null | undefined;
27598
27703
  manifest?: {
27599
27704
  files: {
27600
27705
  name: string;
@@ -27688,6 +27793,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27688
27793
  key: string;
27689
27794
  platform: Platform;
27690
27795
  size: number;
27796
+ arch?: Architecture | null | undefined;
27691
27797
  manifest?: {
27692
27798
  files: {
27693
27799
  name: string;
@@ -27786,6 +27892,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27786
27892
  name: z.ZodString;
27787
27893
  key: z.ZodString;
27788
27894
  platform: z.ZodNativeEnum<typeof Platform>;
27895
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
27789
27896
  size: z.ZodNumber;
27790
27897
  path: z.ZodNullable<z.ZodString>;
27791
27898
  manifest: z.ZodOptional<z.ZodObject<{
@@ -27819,6 +27926,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27819
27926
  key: string;
27820
27927
  platform: Platform;
27821
27928
  size: number;
27929
+ arch?: Architecture | null | undefined;
27822
27930
  manifest?: {
27823
27931
  files: {
27824
27932
  name: string;
@@ -27832,6 +27940,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27832
27940
  key: string;
27833
27941
  platform: Platform;
27834
27942
  size: number;
27943
+ arch?: Architecture | null | undefined;
27835
27944
  manifest?: {
27836
27945
  files: {
27837
27946
  name: string;
@@ -28154,6 +28263,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28154
28263
  key: string;
28155
28264
  platform: Platform;
28156
28265
  size: number;
28266
+ arch?: Architecture | null | undefined;
28157
28267
  manifest?: {
28158
28268
  files: {
28159
28269
  name: string;
@@ -28247,6 +28357,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28247
28357
  key: string;
28248
28358
  platform: Platform;
28249
28359
  size: number;
28360
+ arch?: Architecture | null | undefined;
28250
28361
  manifest?: {
28251
28362
  files: {
28252
28363
  name: string;
@@ -28654,6 +28765,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28654
28765
  key: string;
28655
28766
  platform: Platform;
28656
28767
  size: number;
28768
+ arch?: Architecture | null | undefined;
28657
28769
  manifest?: {
28658
28770
  files: {
28659
28771
  name: string;
@@ -28827,6 +28939,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28827
28939
  key: string;
28828
28940
  platform: Platform;
28829
28941
  size: number;
28942
+ arch?: Architecture | null | undefined;
28830
28943
  manifest?: {
28831
28944
  files: {
28832
28945
  name: string;
@@ -29072,6 +29185,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29072
29185
  key: string;
29073
29186
  platform: Platform;
29074
29187
  size: number;
29188
+ arch?: Architecture | null | undefined;
29075
29189
  manifest?: {
29076
29190
  files: {
29077
29191
  name: string;
@@ -29174,6 +29288,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29174
29288
  key: string;
29175
29289
  platform: Platform;
29176
29290
  size: number;
29291
+ arch?: Architecture | null | undefined;
29177
29292
  manifest?: {
29178
29293
  files: {
29179
29294
  name: string;
@@ -29339,6 +29454,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29339
29454
  key: string;
29340
29455
  platform: Platform;
29341
29456
  size: number;
29457
+ arch?: Architecture | null | undefined;
29342
29458
  manifest?: {
29343
29459
  files: {
29344
29460
  name: string;
@@ -29441,6 +29557,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29441
29557
  key: string;
29442
29558
  platform: Platform;
29443
29559
  size: number;
29560
+ arch?: Architecture | null | undefined;
29444
29561
  manifest?: {
29445
29562
  files: {
29446
29563
  name: string;
@@ -29631,6 +29748,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29631
29748
  key: string;
29632
29749
  platform: Platform;
29633
29750
  size: number;
29751
+ arch?: Architecture | null | undefined;
29634
29752
  manifest?: {
29635
29753
  files: {
29636
29754
  name: string;
@@ -29732,6 +29850,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29732
29850
  key: string;
29733
29851
  platform: Platform;
29734
29852
  size: number;
29853
+ arch?: Architecture | null | undefined;
29735
29854
  manifest?: {
29736
29855
  files: {
29737
29856
  name: string;
@@ -29898,6 +30017,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29898
30017
  key: string;
29899
30018
  platform: Platform;
29900
30019
  size: number;
30020
+ arch?: Architecture | null | undefined;
29901
30021
  manifest?: {
29902
30022
  files: {
29903
30023
  name: string;
@@ -29999,6 +30119,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29999
30119
  key: string;
30000
30120
  platform: Platform;
30001
30121
  size: number;
30122
+ arch?: Architecture | null | undefined;
30002
30123
  manifest?: {
30003
30124
  files: {
30004
30125
  name: string;
@@ -30189,6 +30310,7 @@ declare const storefrontSchema: z.ZodObject<{
30189
30310
  name: z.ZodString;
30190
30311
  key: z.ZodString;
30191
30312
  platform: z.ZodNativeEnum<typeof Platform>;
30313
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
30192
30314
  size: z.ZodNumber;
30193
30315
  path: z.ZodNullable<z.ZodString>;
30194
30316
  manifest: z.ZodOptional<z.ZodObject<{
@@ -30222,6 +30344,7 @@ declare const storefrontSchema: z.ZodObject<{
30222
30344
  key: string;
30223
30345
  platform: Platform;
30224
30346
  size: number;
30347
+ arch?: Architecture | null | undefined;
30225
30348
  manifest?: {
30226
30349
  files: {
30227
30350
  name: string;
@@ -30235,6 +30358,7 @@ declare const storefrontSchema: z.ZodObject<{
30235
30358
  key: string;
30236
30359
  platform: Platform;
30237
30360
  size: number;
30361
+ arch?: Architecture | null | undefined;
30238
30362
  manifest?: {
30239
30363
  files: {
30240
30364
  name: string;
@@ -30557,6 +30681,7 @@ declare const storefrontSchema: z.ZodObject<{
30557
30681
  key: string;
30558
30682
  platform: Platform;
30559
30683
  size: number;
30684
+ arch?: Architecture | null | undefined;
30560
30685
  manifest?: {
30561
30686
  files: {
30562
30687
  name: string;
@@ -30650,6 +30775,7 @@ declare const storefrontSchema: z.ZodObject<{
30650
30775
  key: string;
30651
30776
  platform: Platform;
30652
30777
  size: number;
30778
+ arch?: Architecture | null | undefined;
30653
30779
  manifest?: {
30654
30780
  files: {
30655
30781
  name: string;
@@ -30749,6 +30875,7 @@ declare const storefrontSchema: z.ZodObject<{
30749
30875
  name: z.ZodString;
30750
30876
  key: z.ZodString;
30751
30877
  platform: z.ZodNativeEnum<typeof Platform>;
30878
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
30752
30879
  size: z.ZodNumber;
30753
30880
  path: z.ZodNullable<z.ZodString>;
30754
30881
  manifest: z.ZodOptional<z.ZodObject<{
@@ -30782,6 +30909,7 @@ declare const storefrontSchema: z.ZodObject<{
30782
30909
  key: string;
30783
30910
  platform: Platform;
30784
30911
  size: number;
30912
+ arch?: Architecture | null | undefined;
30785
30913
  manifest?: {
30786
30914
  files: {
30787
30915
  name: string;
@@ -30795,6 +30923,7 @@ declare const storefrontSchema: z.ZodObject<{
30795
30923
  key: string;
30796
30924
  platform: Platform;
30797
30925
  size: number;
30926
+ arch?: Architecture | null | undefined;
30798
30927
  manifest?: {
30799
30928
  files: {
30800
30929
  name: string;
@@ -31117,6 +31246,7 @@ declare const storefrontSchema: z.ZodObject<{
31117
31246
  key: string;
31118
31247
  platform: Platform;
31119
31248
  size: number;
31249
+ arch?: Architecture | null | undefined;
31120
31250
  manifest?: {
31121
31251
  files: {
31122
31252
  name: string;
@@ -31210,6 +31340,7 @@ declare const storefrontSchema: z.ZodObject<{
31210
31340
  key: string;
31211
31341
  platform: Platform;
31212
31342
  size: number;
31343
+ arch?: Architecture | null | undefined;
31213
31344
  manifest?: {
31214
31345
  files: {
31215
31346
  name: string;
@@ -31617,6 +31748,7 @@ declare const storefrontSchema: z.ZodObject<{
31617
31748
  key: string;
31618
31749
  platform: Platform;
31619
31750
  size: number;
31751
+ arch?: Architecture | null | undefined;
31620
31752
  manifest?: {
31621
31753
  files: {
31622
31754
  name: string;
@@ -31790,6 +31922,7 @@ declare const storefrontSchema: z.ZodObject<{
31790
31922
  key: string;
31791
31923
  platform: Platform;
31792
31924
  size: number;
31925
+ arch?: Architecture | null | undefined;
31793
31926
  manifest?: {
31794
31927
  files: {
31795
31928
  name: string;
@@ -31956,6 +32089,7 @@ declare const storefrontSchema: z.ZodObject<{
31956
32089
  name: z.ZodString;
31957
32090
  key: z.ZodString;
31958
32091
  platform: z.ZodNativeEnum<typeof Platform>;
32092
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
31959
32093
  size: z.ZodNumber;
31960
32094
  path: z.ZodNullable<z.ZodString>;
31961
32095
  manifest: z.ZodOptional<z.ZodObject<{
@@ -31989,6 +32123,7 @@ declare const storefrontSchema: z.ZodObject<{
31989
32123
  key: string;
31990
32124
  platform: Platform;
31991
32125
  size: number;
32126
+ arch?: Architecture | null | undefined;
31992
32127
  manifest?: {
31993
32128
  files: {
31994
32129
  name: string;
@@ -32002,6 +32137,7 @@ declare const storefrontSchema: z.ZodObject<{
32002
32137
  key: string;
32003
32138
  platform: Platform;
32004
32139
  size: number;
32140
+ arch?: Architecture | null | undefined;
32005
32141
  manifest?: {
32006
32142
  files: {
32007
32143
  name: string;
@@ -32324,6 +32460,7 @@ declare const storefrontSchema: z.ZodObject<{
32324
32460
  key: string;
32325
32461
  platform: Platform;
32326
32462
  size: number;
32463
+ arch?: Architecture | null | undefined;
32327
32464
  manifest?: {
32328
32465
  files: {
32329
32466
  name: string;
@@ -32417,6 +32554,7 @@ declare const storefrontSchema: z.ZodObject<{
32417
32554
  key: string;
32418
32555
  platform: Platform;
32419
32556
  size: number;
32557
+ arch?: Architecture | null | undefined;
32420
32558
  manifest?: {
32421
32559
  files: {
32422
32560
  name: string;
@@ -32515,6 +32653,7 @@ declare const storefrontSchema: z.ZodObject<{
32515
32653
  name: z.ZodString;
32516
32654
  key: z.ZodString;
32517
32655
  platform: z.ZodNativeEnum<typeof Platform>;
32656
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
32518
32657
  size: z.ZodNumber;
32519
32658
  path: z.ZodNullable<z.ZodString>;
32520
32659
  manifest: z.ZodOptional<z.ZodObject<{
@@ -32548,6 +32687,7 @@ declare const storefrontSchema: z.ZodObject<{
32548
32687
  key: string;
32549
32688
  platform: Platform;
32550
32689
  size: number;
32690
+ arch?: Architecture | null | undefined;
32551
32691
  manifest?: {
32552
32692
  files: {
32553
32693
  name: string;
@@ -32561,6 +32701,7 @@ declare const storefrontSchema: z.ZodObject<{
32561
32701
  key: string;
32562
32702
  platform: Platform;
32563
32703
  size: number;
32704
+ arch?: Architecture | null | undefined;
32564
32705
  manifest?: {
32565
32706
  files: {
32566
32707
  name: string;
@@ -32883,6 +33024,7 @@ declare const storefrontSchema: z.ZodObject<{
32883
33024
  key: string;
32884
33025
  platform: Platform;
32885
33026
  size: number;
33027
+ arch?: Architecture | null | undefined;
32886
33028
  manifest?: {
32887
33029
  files: {
32888
33030
  name: string;
@@ -32976,6 +33118,7 @@ declare const storefrontSchema: z.ZodObject<{
32976
33118
  key: string;
32977
33119
  platform: Platform;
32978
33120
  size: number;
33121
+ arch?: Architecture | null | undefined;
32979
33122
  manifest?: {
32980
33123
  files: {
32981
33124
  name: string;
@@ -33383,6 +33526,7 @@ declare const storefrontSchema: z.ZodObject<{
33383
33526
  key: string;
33384
33527
  platform: Platform;
33385
33528
  size: number;
33529
+ arch?: Architecture | null | undefined;
33386
33530
  manifest?: {
33387
33531
  files: {
33388
33532
  name: string;
@@ -33556,6 +33700,7 @@ declare const storefrontSchema: z.ZodObject<{
33556
33700
  key: string;
33557
33701
  platform: Platform;
33558
33702
  size: number;
33703
+ arch?: Architecture | null | undefined;
33559
33704
  manifest?: {
33560
33705
  files: {
33561
33706
  name: string;
@@ -33719,6 +33864,7 @@ declare const storefrontSchema: z.ZodObject<{
33719
33864
  name: z.ZodString;
33720
33865
  key: z.ZodString;
33721
33866
  platform: z.ZodNativeEnum<typeof Platform>;
33867
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
33722
33868
  size: z.ZodNumber;
33723
33869
  path: z.ZodNullable<z.ZodString>;
33724
33870
  manifest: z.ZodOptional<z.ZodObject<{
@@ -33752,6 +33898,7 @@ declare const storefrontSchema: z.ZodObject<{
33752
33898
  key: string;
33753
33899
  platform: Platform;
33754
33900
  size: number;
33901
+ arch?: Architecture | null | undefined;
33755
33902
  manifest?: {
33756
33903
  files: {
33757
33904
  name: string;
@@ -33765,6 +33912,7 @@ declare const storefrontSchema: z.ZodObject<{
33765
33912
  key: string;
33766
33913
  platform: Platform;
33767
33914
  size: number;
33915
+ arch?: Architecture | null | undefined;
33768
33916
  manifest?: {
33769
33917
  files: {
33770
33918
  name: string;
@@ -34087,6 +34235,7 @@ declare const storefrontSchema: z.ZodObject<{
34087
34235
  key: string;
34088
34236
  platform: Platform;
34089
34237
  size: number;
34238
+ arch?: Architecture | null | undefined;
34090
34239
  manifest?: {
34091
34240
  files: {
34092
34241
  name: string;
@@ -34180,6 +34329,7 @@ declare const storefrontSchema: z.ZodObject<{
34180
34329
  key: string;
34181
34330
  platform: Platform;
34182
34331
  size: number;
34332
+ arch?: Architecture | null | undefined;
34183
34333
  manifest?: {
34184
34334
  files: {
34185
34335
  name: string;
@@ -34278,6 +34428,7 @@ declare const storefrontSchema: z.ZodObject<{
34278
34428
  name: z.ZodString;
34279
34429
  key: z.ZodString;
34280
34430
  platform: z.ZodNativeEnum<typeof Platform>;
34431
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
34281
34432
  size: z.ZodNumber;
34282
34433
  path: z.ZodNullable<z.ZodString>;
34283
34434
  manifest: z.ZodOptional<z.ZodObject<{
@@ -34311,6 +34462,7 @@ declare const storefrontSchema: z.ZodObject<{
34311
34462
  key: string;
34312
34463
  platform: Platform;
34313
34464
  size: number;
34465
+ arch?: Architecture | null | undefined;
34314
34466
  manifest?: {
34315
34467
  files: {
34316
34468
  name: string;
@@ -34324,6 +34476,7 @@ declare const storefrontSchema: z.ZodObject<{
34324
34476
  key: string;
34325
34477
  platform: Platform;
34326
34478
  size: number;
34479
+ arch?: Architecture | null | undefined;
34327
34480
  manifest?: {
34328
34481
  files: {
34329
34482
  name: string;
@@ -34646,6 +34799,7 @@ declare const storefrontSchema: z.ZodObject<{
34646
34799
  key: string;
34647
34800
  platform: Platform;
34648
34801
  size: number;
34802
+ arch?: Architecture | null | undefined;
34649
34803
  manifest?: {
34650
34804
  files: {
34651
34805
  name: string;
@@ -34739,6 +34893,7 @@ declare const storefrontSchema: z.ZodObject<{
34739
34893
  key: string;
34740
34894
  platform: Platform;
34741
34895
  size: number;
34896
+ arch?: Architecture | null | undefined;
34742
34897
  manifest?: {
34743
34898
  files: {
34744
34899
  name: string;
@@ -35146,6 +35301,7 @@ declare const storefrontSchema: z.ZodObject<{
35146
35301
  key: string;
35147
35302
  platform: Platform;
35148
35303
  size: number;
35304
+ arch?: Architecture | null | undefined;
35149
35305
  manifest?: {
35150
35306
  files: {
35151
35307
  name: string;
@@ -35319,6 +35475,7 @@ declare const storefrontSchema: z.ZodObject<{
35319
35475
  key: string;
35320
35476
  platform: Platform;
35321
35477
  size: number;
35478
+ arch?: Architecture | null | undefined;
35322
35479
  manifest?: {
35323
35480
  files: {
35324
35481
  name: string;
@@ -35564,6 +35721,7 @@ declare const storefrontSchema: z.ZodObject<{
35564
35721
  key: string;
35565
35722
  platform: Platform;
35566
35723
  size: number;
35724
+ arch?: Architecture | null | undefined;
35567
35725
  manifest?: {
35568
35726
  files: {
35569
35727
  name: string;
@@ -35666,6 +35824,7 @@ declare const storefrontSchema: z.ZodObject<{
35666
35824
  key: string;
35667
35825
  platform: Platform;
35668
35826
  size: number;
35827
+ arch?: Architecture | null | undefined;
35669
35828
  manifest?: {
35670
35829
  files: {
35671
35830
  name: string;
@@ -35831,6 +35990,7 @@ declare const storefrontSchema: z.ZodObject<{
35831
35990
  key: string;
35832
35991
  platform: Platform;
35833
35992
  size: number;
35993
+ arch?: Architecture | null | undefined;
35834
35994
  manifest?: {
35835
35995
  files: {
35836
35996
  name: string;
@@ -35933,6 +36093,7 @@ declare const storefrontSchema: z.ZodObject<{
35933
36093
  key: string;
35934
36094
  platform: Platform;
35935
36095
  size: number;
36096
+ arch?: Architecture | null | undefined;
35936
36097
  manifest?: {
35937
36098
  files: {
35938
36099
  name: string;
@@ -36123,6 +36284,7 @@ declare const storefrontSchema: z.ZodObject<{
36123
36284
  key: string;
36124
36285
  platform: Platform;
36125
36286
  size: number;
36287
+ arch?: Architecture | null | undefined;
36126
36288
  manifest?: {
36127
36289
  files: {
36128
36290
  name: string;
@@ -36224,6 +36386,7 @@ declare const storefrontSchema: z.ZodObject<{
36224
36386
  key: string;
36225
36387
  platform: Platform;
36226
36388
  size: number;
36389
+ arch?: Architecture | null | undefined;
36227
36390
  manifest?: {
36228
36391
  files: {
36229
36392
  name: string;
@@ -36390,6 +36553,7 @@ declare const storefrontSchema: z.ZodObject<{
36390
36553
  key: string;
36391
36554
  platform: Platform;
36392
36555
  size: number;
36556
+ arch?: Architecture | null | undefined;
36393
36557
  manifest?: {
36394
36558
  files: {
36395
36559
  name: string;
@@ -36491,6 +36655,7 @@ declare const storefrontSchema: z.ZodObject<{
36491
36655
  key: string;
36492
36656
  platform: Platform;
36493
36657
  size: number;
36658
+ arch?: Architecture | null | undefined;
36494
36659
  manifest?: {
36495
36660
  files: {
36496
36661
  name: string;
@@ -36682,6 +36847,7 @@ declare const storefrontSchema: z.ZodObject<{
36682
36847
  key: string;
36683
36848
  platform: Platform;
36684
36849
  size: number;
36850
+ arch?: Architecture | null | undefined;
36685
36851
  manifest?: {
36686
36852
  files: {
36687
36853
  name: string;
@@ -36786,6 +36952,7 @@ declare const storefrontSchema: z.ZodObject<{
36786
36952
  key: string;
36787
36953
  platform: Platform;
36788
36954
  size: number;
36955
+ arch?: Architecture | null | undefined;
36789
36956
  manifest?: {
36790
36957
  files: {
36791
36958
  name: string;
@@ -36971,6 +37138,7 @@ declare const storefrontSchema: z.ZodObject<{
36971
37138
  key: string;
36972
37139
  platform: Platform;
36973
37140
  size: number;
37141
+ arch?: Architecture | null | undefined;
36974
37142
  manifest?: {
36975
37143
  files: {
36976
37144
  name: string;
@@ -37073,6 +37241,7 @@ declare const storefrontSchema: z.ZodObject<{
37073
37241
  key: string;
37074
37242
  platform: Platform;
37075
37243
  size: number;
37244
+ arch?: Architecture | null | undefined;
37076
37245
  manifest?: {
37077
37246
  files: {
37078
37247
  name: string;
@@ -37238,6 +37407,7 @@ declare const storefrontSchema: z.ZodObject<{
37238
37407
  key: string;
37239
37408
  platform: Platform;
37240
37409
  size: number;
37410
+ arch?: Architecture | null | undefined;
37241
37411
  manifest?: {
37242
37412
  files: {
37243
37413
  name: string;
@@ -37340,6 +37510,7 @@ declare const storefrontSchema: z.ZodObject<{
37340
37510
  key: string;
37341
37511
  platform: Platform;
37342
37512
  size: number;
37513
+ arch?: Architecture | null | undefined;
37343
37514
  manifest?: {
37344
37515
  files: {
37345
37516
  name: string;
@@ -37520,6 +37691,7 @@ declare const storefrontSchema: z.ZodObject<{
37520
37691
  key: string;
37521
37692
  platform: Platform;
37522
37693
  size: number;
37694
+ arch?: Architecture | null | undefined;
37523
37695
  manifest?: {
37524
37696
  files: {
37525
37697
  name: string;
@@ -37623,6 +37795,7 @@ declare const storefrontSchema: z.ZodObject<{
37623
37795
  key: string;
37624
37796
  platform: Platform;
37625
37797
  size: number;
37798
+ arch?: Architecture | null | undefined;
37626
37799
  manifest?: {
37627
37800
  files: {
37628
37801
  name: string;
@@ -37809,6 +37982,7 @@ declare const storefrontSchema: z.ZodObject<{
37809
37982
  key: string;
37810
37983
  platform: Platform;
37811
37984
  size: number;
37985
+ arch?: Architecture | null | undefined;
37812
37986
  manifest?: {
37813
37987
  files: {
37814
37988
  name: string;
@@ -37910,6 +38084,7 @@ declare const storefrontSchema: z.ZodObject<{
37910
38084
  key: string;
37911
38085
  platform: Platform;
37912
38086
  size: number;
38087
+ arch?: Architecture | null | undefined;
37913
38088
  manifest?: {
37914
38089
  files: {
37915
38090
  name: string;
@@ -38076,6 +38251,7 @@ declare const storefrontSchema: z.ZodObject<{
38076
38251
  key: string;
38077
38252
  platform: Platform;
38078
38253
  size: number;
38254
+ arch?: Architecture | null | undefined;
38079
38255
  manifest?: {
38080
38256
  files: {
38081
38257
  name: string;
@@ -38177,6 +38353,7 @@ declare const storefrontSchema: z.ZodObject<{
38177
38353
  key: string;
38178
38354
  platform: Platform;
38179
38355
  size: number;
38356
+ arch?: Architecture | null | undefined;
38180
38357
  manifest?: {
38181
38358
  files: {
38182
38359
  name: string;
@@ -38470,4 +38647,4 @@ declare class MoonbaseClient {
38470
38647
  orders: OrderEndpoints;
38471
38648
  }
38472
38649
 
38473
- export { type Activation, ActivationMethod, type ActivationRequest, ActivationRequestFulfillmentType, ActivationRequestStatus, ActivationStatus, type Address, type BundleLineItem, type CommunicationPreferences, type CommunicationPreferencesInput, type CommunicationPreferencesView, type CompletedOrder, ConnectableAccountProvider, type ConnectedAccount, ConsoleLogger, CycleLength, type Discount, DiscountUtils, type Download, type DownloadManifest, type ILogger, type IRecurrence, type IStore, type ITokenStore, type Identity, InMemoryStore, type License, LicenseStatus, type LineItem, LocalStorageStore, LogLevel, MarketingConsentType, type MilestoneProgress, type Money, type MoneyCollection, MoneyCollectionUtils, MoonbaseApi, MoonbaseClient, type MoonbaseConfiguration, MoonbaseError, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OfferCondition, OfferUtils, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingTier, type PricingVariation, type ProblemDetails, type ProductLineItem, type Quantifiable, type RawPropertyObject, type RawPropertyValue, type SignUpResult, type SingleOrMultiple, type Storefront, type StorefrontBundle, type StorefrontOffer, type StorefrontProduct, type SubscribeInput, type SubscribeResponse, type Subscription, SubscriptionStatus, type TaxEstimate, TokenStore, type UrchinTrackingModule, type User, type UserAccountConfirmed, type UserAccountConfirmedStatus, type Vendor, type Voucher, objectToQuery, parseOffSiteReferrer, problemDetailsSchema, resolveUtm, schemas, utmToObject };
38650
+ export { type Activation, ActivationMethod, type ActivationRequest, ActivationRequestFulfillmentType, ActivationRequestStatus, ActivationStatus, type Address, Architecture, type BundleLineItem, type CommunicationPreferences, type CommunicationPreferencesInput, type CommunicationPreferencesView, type CompletedOrder, ConnectableAccountProvider, type ConnectedAccount, ConsoleLogger, CycleLength, type Discount, DiscountUtils, type Download, type DownloadManifest, type ILogger, type IRecurrence, type IStore, type ITokenStore, type Identity, InMemoryStore, type License, LicenseStatus, type LineItem, LocalStorageStore, LogLevel, MarketingConsentType, type MilestoneProgress, type Money, type MoneyCollection, MoneyCollectionUtils, MoonbaseApi, MoonbaseClient, type MoonbaseConfiguration, MoonbaseError, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OfferCondition, OfferUtils, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingTier, type PricingVariation, type ProblemDetails, type ProductLineItem, type Quantifiable, type RawPropertyArray, type RawPropertyObject, type RawPropertyValue, type SignUpResult, type SingleOrMultiple, type Storefront, type StorefrontBundle, type StorefrontOffer, type StorefrontProduct, type SubscribeInput, type SubscribeResponse, type Subscription, SubscriptionStatus, type TaxEstimate, TokenStore, type UrchinTrackingModule, type User, type UserAccountConfirmed, type UserAccountConfirmedStatus, type Vendor, type Voucher, objectToQuery, parseOffSiteReferrer, problemDetailsSchema, resolveUtm, schemas, utmToObject };