@moonbase.sh/storefront-api 2.0.1 → 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.d.cts 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;
@@ -2182,6 +2196,7 @@ declare const downloadSchema: z.ZodObject<{
2182
2196
  name: z.ZodString;
2183
2197
  key: z.ZodString;
2184
2198
  platform: z.ZodNativeEnum<typeof Platform>;
2199
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
2185
2200
  size: z.ZodNumber;
2186
2201
  path: z.ZodNullable<z.ZodString>;
2187
2202
  manifest: z.ZodOptional<z.ZodObject<{
@@ -2215,6 +2230,7 @@ declare const downloadSchema: z.ZodObject<{
2215
2230
  key: string;
2216
2231
  platform: Platform;
2217
2232
  size: number;
2233
+ arch?: Architecture | null | undefined;
2218
2234
  manifest?: {
2219
2235
  files: {
2220
2236
  name: string;
@@ -2228,6 +2244,7 @@ declare const downloadSchema: z.ZodObject<{
2228
2244
  key: string;
2229
2245
  platform: Platform;
2230
2246
  size: number;
2247
+ arch?: Architecture | null | undefined;
2231
2248
  manifest?: {
2232
2249
  files: {
2233
2250
  name: string;
@@ -2259,6 +2276,7 @@ declare const productSummarySchema: z.ZodObject<{
2259
2276
  name: z.ZodString;
2260
2277
  key: z.ZodString;
2261
2278
  platform: z.ZodNativeEnum<typeof Platform>;
2279
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
2262
2280
  size: z.ZodNumber;
2263
2281
  path: z.ZodNullable<z.ZodString>;
2264
2282
  manifest: z.ZodOptional<z.ZodObject<{
@@ -2292,6 +2310,7 @@ declare const productSummarySchema: z.ZodObject<{
2292
2310
  key: string;
2293
2311
  platform: Platform;
2294
2312
  size: number;
2313
+ arch?: Architecture | null | undefined;
2295
2314
  manifest?: {
2296
2315
  files: {
2297
2316
  name: string;
@@ -2305,6 +2324,7 @@ declare const productSummarySchema: z.ZodObject<{
2305
2324
  key: string;
2306
2325
  platform: Platform;
2307
2326
  size: number;
2327
+ arch?: Architecture | null | undefined;
2308
2328
  manifest?: {
2309
2329
  files: {
2310
2330
  name: string;
@@ -2338,6 +2358,7 @@ declare const productSummarySchema: z.ZodObject<{
2338
2358
  key: string;
2339
2359
  platform: Platform;
2340
2360
  size: number;
2361
+ arch?: Architecture | null | undefined;
2341
2362
  manifest?: {
2342
2363
  files: {
2343
2364
  name: string;
@@ -2371,6 +2392,7 @@ declare const productSummarySchema: z.ZodObject<{
2371
2392
  key: string;
2372
2393
  platform: Platform;
2373
2394
  size: number;
2395
+ arch?: Architecture | null | undefined;
2374
2396
  manifest?: {
2375
2397
  files: {
2376
2398
  name: string;
@@ -2396,6 +2418,14 @@ declare enum Platform {
2396
2418
  iOS = "iOS",
2397
2419
  Android = "Android"
2398
2420
  }
2421
+ declare enum Architecture {
2422
+ Unknown = "Unknown",
2423
+ Universal = "Universal",
2424
+ X86 = "X86",
2425
+ X64 = "X64",
2426
+ Arm = "Arm",
2427
+ Arm64 = "Arm64"
2428
+ }
2399
2429
  type DownloadManifest = z.infer<typeof manifestSchema>;
2400
2430
  type Download = z.infer<typeof downloadSchema>;
2401
2431
  type OwnedProduct = z.infer<typeof productSummarySchema>;
@@ -2765,6 +2795,7 @@ declare const subscriptionSchema: z.ZodObject<{
2765
2795
  name: z.ZodString;
2766
2796
  key: z.ZodString;
2767
2797
  platform: z.ZodNativeEnum<typeof Platform>;
2798
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
2768
2799
  size: z.ZodNumber;
2769
2800
  path: z.ZodNullable<z.ZodString>;
2770
2801
  manifest: z.ZodOptional<z.ZodObject<{
@@ -2798,6 +2829,7 @@ declare const subscriptionSchema: z.ZodObject<{
2798
2829
  key: string;
2799
2830
  platform: Platform;
2800
2831
  size: number;
2832
+ arch?: Architecture | null | undefined;
2801
2833
  manifest?: {
2802
2834
  files: {
2803
2835
  name: string;
@@ -2811,6 +2843,7 @@ declare const subscriptionSchema: z.ZodObject<{
2811
2843
  key: string;
2812
2844
  platform: Platform;
2813
2845
  size: number;
2846
+ arch?: Architecture | null | undefined;
2814
2847
  manifest?: {
2815
2848
  files: {
2816
2849
  name: string;
@@ -3133,6 +3166,7 @@ declare const subscriptionSchema: z.ZodObject<{
3133
3166
  key: string;
3134
3167
  platform: Platform;
3135
3168
  size: number;
3169
+ arch?: Architecture | null | undefined;
3136
3170
  manifest?: {
3137
3171
  files: {
3138
3172
  name: string;
@@ -3226,6 +3260,7 @@ declare const subscriptionSchema: z.ZodObject<{
3226
3260
  key: string;
3227
3261
  platform: Platform;
3228
3262
  size: number;
3263
+ arch?: Architecture | null | undefined;
3229
3264
  manifest?: {
3230
3265
  files: {
3231
3266
  name: string;
@@ -3323,6 +3358,7 @@ declare const subscriptionSchema: z.ZodObject<{
3323
3358
  key: string;
3324
3359
  platform: Platform;
3325
3360
  size: number;
3361
+ arch?: Architecture | null | undefined;
3326
3362
  manifest?: {
3327
3363
  files: {
3328
3364
  name: string;
@@ -3420,6 +3456,7 @@ declare const subscriptionSchema: z.ZodObject<{
3420
3456
  key: string;
3421
3457
  platform: Platform;
3422
3458
  size: number;
3459
+ arch?: Architecture | null | undefined;
3423
3460
  manifest?: {
3424
3461
  files: {
3425
3462
  name: string;
@@ -3522,6 +3559,7 @@ declare const subscriptionSchema: z.ZodObject<{
3522
3559
  name: z.ZodString;
3523
3560
  key: z.ZodString;
3524
3561
  platform: z.ZodNativeEnum<typeof Platform>;
3562
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
3525
3563
  size: z.ZodNumber;
3526
3564
  path: z.ZodNullable<z.ZodString>;
3527
3565
  manifest: z.ZodOptional<z.ZodObject<{
@@ -3555,6 +3593,7 @@ declare const subscriptionSchema: z.ZodObject<{
3555
3593
  key: string;
3556
3594
  platform: Platform;
3557
3595
  size: number;
3596
+ arch?: Architecture | null | undefined;
3558
3597
  manifest?: {
3559
3598
  files: {
3560
3599
  name: string;
@@ -3568,6 +3607,7 @@ declare const subscriptionSchema: z.ZodObject<{
3568
3607
  key: string;
3569
3608
  platform: Platform;
3570
3609
  size: number;
3610
+ arch?: Architecture | null | undefined;
3571
3611
  manifest?: {
3572
3612
  files: {
3573
3613
  name: string;
@@ -3890,6 +3930,7 @@ declare const subscriptionSchema: z.ZodObject<{
3890
3930
  key: string;
3891
3931
  platform: Platform;
3892
3932
  size: number;
3933
+ arch?: Architecture | null | undefined;
3893
3934
  manifest?: {
3894
3935
  files: {
3895
3936
  name: string;
@@ -3983,6 +4024,7 @@ declare const subscriptionSchema: z.ZodObject<{
3983
4024
  key: string;
3984
4025
  platform: Platform;
3985
4026
  size: number;
4027
+ arch?: Architecture | null | undefined;
3986
4028
  manifest?: {
3987
4029
  files: {
3988
4030
  name: string;
@@ -4390,6 +4432,7 @@ declare const subscriptionSchema: z.ZodObject<{
4390
4432
  key: string;
4391
4433
  platform: Platform;
4392
4434
  size: number;
4435
+ arch?: Architecture | null | undefined;
4393
4436
  manifest?: {
4394
4437
  files: {
4395
4438
  name: string;
@@ -4563,6 +4606,7 @@ declare const subscriptionSchema: z.ZodObject<{
4563
4606
  key: string;
4564
4607
  platform: Platform;
4565
4608
  size: number;
4609
+ arch?: Architecture | null | undefined;
4566
4610
  manifest?: {
4567
4611
  files: {
4568
4612
  name: string;
@@ -4742,6 +4786,7 @@ declare const subscriptionSchema: z.ZodObject<{
4742
4786
  key: string;
4743
4787
  platform: Platform;
4744
4788
  size: number;
4789
+ arch?: Architecture | null | undefined;
4745
4790
  manifest?: {
4746
4791
  files: {
4747
4792
  name: string;
@@ -4919,6 +4964,7 @@ declare const subscriptionSchema: z.ZodObject<{
4919
4964
  key: string;
4920
4965
  platform: Platform;
4921
4966
  size: number;
4967
+ arch?: Architecture | null | undefined;
4922
4968
  manifest?: {
4923
4969
  files: {
4924
4970
  name: string;
@@ -5122,6 +5168,7 @@ declare const subscriptionSchema: z.ZodObject<{
5122
5168
  key: string;
5123
5169
  platform: Platform;
5124
5170
  size: number;
5171
+ arch?: Architecture | null | undefined;
5125
5172
  manifest?: {
5126
5173
  files: {
5127
5174
  name: string;
@@ -5228,6 +5275,7 @@ declare const subscriptionSchema: z.ZodObject<{
5228
5275
  key: string;
5229
5276
  platform: Platform;
5230
5277
  size: number;
5278
+ arch?: Architecture | null | undefined;
5231
5279
  manifest?: {
5232
5280
  files: {
5233
5281
  name: string;
@@ -5460,6 +5508,7 @@ declare const subscriptionSchema: z.ZodObject<{
5460
5508
  key: string;
5461
5509
  platform: Platform;
5462
5510
  size: number;
5511
+ arch?: Architecture | null | undefined;
5463
5512
  manifest?: {
5464
5513
  files: {
5465
5514
  name: string;
@@ -5565,6 +5614,7 @@ declare const subscriptionSchema: z.ZodObject<{
5565
5614
  key: string;
5566
5615
  platform: Platform;
5567
5616
  size: number;
5617
+ arch?: Architecture | null | undefined;
5568
5618
  manifest?: {
5569
5619
  files: {
5570
5620
  name: string;
@@ -19891,6 +19941,7 @@ declare class StorefrontEndpoints {
19891
19941
  key: string;
19892
19942
  platform: Platform;
19893
19943
  size: number;
19944
+ arch?: Architecture | null | undefined;
19894
19945
  manifest?: {
19895
19946
  files: {
19896
19947
  name: string;
@@ -19995,6 +20046,7 @@ declare class StorefrontEndpoints {
19995
20046
  key: string;
19996
20047
  platform: Platform;
19997
20048
  size: number;
20049
+ arch?: Architecture | null | undefined;
19998
20050
  manifest?: {
19999
20051
  files: {
20000
20052
  name: string;
@@ -20180,6 +20232,7 @@ declare class StorefrontEndpoints {
20180
20232
  key: string;
20181
20233
  platform: Platform;
20182
20234
  size: number;
20235
+ arch?: Architecture | null | undefined;
20183
20236
  manifest?: {
20184
20237
  files: {
20185
20238
  name: string;
@@ -20282,6 +20335,7 @@ declare class StorefrontEndpoints {
20282
20335
  key: string;
20283
20336
  platform: Platform;
20284
20337
  size: number;
20338
+ arch?: Architecture | null | undefined;
20285
20339
  manifest?: {
20286
20340
  files: {
20287
20341
  name: string;
@@ -20447,6 +20501,7 @@ declare class StorefrontEndpoints {
20447
20501
  key: string;
20448
20502
  platform: Platform;
20449
20503
  size: number;
20504
+ arch?: Architecture | null | undefined;
20450
20505
  manifest?: {
20451
20506
  files: {
20452
20507
  name: string;
@@ -20549,6 +20604,7 @@ declare class StorefrontEndpoints {
20549
20604
  key: string;
20550
20605
  platform: Platform;
20551
20606
  size: number;
20607
+ arch?: Architecture | null | undefined;
20552
20608
  manifest?: {
20553
20609
  files: {
20554
20610
  name: string;
@@ -20762,6 +20818,7 @@ declare const voucherSchema: z.ZodObject<{
20762
20818
  name: z.ZodString;
20763
20819
  key: z.ZodString;
20764
20820
  platform: z.ZodNativeEnum<typeof Platform>;
20821
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
20765
20822
  size: z.ZodNumber;
20766
20823
  path: z.ZodNullable<z.ZodString>;
20767
20824
  manifest: z.ZodOptional<z.ZodObject<{
@@ -20795,6 +20852,7 @@ declare const voucherSchema: z.ZodObject<{
20795
20852
  key: string;
20796
20853
  platform: Platform;
20797
20854
  size: number;
20855
+ arch?: Architecture | null | undefined;
20798
20856
  manifest?: {
20799
20857
  files: {
20800
20858
  name: string;
@@ -20808,6 +20866,7 @@ declare const voucherSchema: z.ZodObject<{
20808
20866
  key: string;
20809
20867
  platform: Platform;
20810
20868
  size: number;
20869
+ arch?: Architecture | null | undefined;
20811
20870
  manifest?: {
20812
20871
  files: {
20813
20872
  name: string;
@@ -21130,6 +21189,7 @@ declare const voucherSchema: z.ZodObject<{
21130
21189
  key: string;
21131
21190
  platform: Platform;
21132
21191
  size: number;
21192
+ arch?: Architecture | null | undefined;
21133
21193
  manifest?: {
21134
21194
  files: {
21135
21195
  name: string;
@@ -21223,6 +21283,7 @@ declare const voucherSchema: z.ZodObject<{
21223
21283
  key: string;
21224
21284
  platform: Platform;
21225
21285
  size: number;
21286
+ arch?: Architecture | null | undefined;
21226
21287
  manifest?: {
21227
21288
  files: {
21228
21289
  name: string;
@@ -21319,6 +21380,7 @@ declare const voucherSchema: z.ZodObject<{
21319
21380
  key: string;
21320
21381
  platform: Platform;
21321
21382
  size: number;
21383
+ arch?: Architecture | null | undefined;
21322
21384
  manifest?: {
21323
21385
  files: {
21324
21386
  name: string;
@@ -21415,6 +21477,7 @@ declare const voucherSchema: z.ZodObject<{
21415
21477
  key: string;
21416
21478
  platform: Platform;
21417
21479
  size: number;
21480
+ arch?: Architecture | null | undefined;
21418
21481
  manifest?: {
21419
21482
  files: {
21420
21483
  name: string;
@@ -21517,6 +21580,7 @@ declare const voucherSchema: z.ZodObject<{
21517
21580
  name: z.ZodString;
21518
21581
  key: z.ZodString;
21519
21582
  platform: z.ZodNativeEnum<typeof Platform>;
21583
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
21520
21584
  size: z.ZodNumber;
21521
21585
  path: z.ZodNullable<z.ZodString>;
21522
21586
  manifest: z.ZodOptional<z.ZodObject<{
@@ -21550,6 +21614,7 @@ declare const voucherSchema: z.ZodObject<{
21550
21614
  key: string;
21551
21615
  platform: Platform;
21552
21616
  size: number;
21617
+ arch?: Architecture | null | undefined;
21553
21618
  manifest?: {
21554
21619
  files: {
21555
21620
  name: string;
@@ -21563,6 +21628,7 @@ declare const voucherSchema: z.ZodObject<{
21563
21628
  key: string;
21564
21629
  platform: Platform;
21565
21630
  size: number;
21631
+ arch?: Architecture | null | undefined;
21566
21632
  manifest?: {
21567
21633
  files: {
21568
21634
  name: string;
@@ -21885,6 +21951,7 @@ declare const voucherSchema: z.ZodObject<{
21885
21951
  key: string;
21886
21952
  platform: Platform;
21887
21953
  size: number;
21954
+ arch?: Architecture | null | undefined;
21888
21955
  manifest?: {
21889
21956
  files: {
21890
21957
  name: string;
@@ -21978,6 +22045,7 @@ declare const voucherSchema: z.ZodObject<{
21978
22045
  key: string;
21979
22046
  platform: Platform;
21980
22047
  size: number;
22048
+ arch?: Architecture | null | undefined;
21981
22049
  manifest?: {
21982
22050
  files: {
21983
22051
  name: string;
@@ -22385,6 +22453,7 @@ declare const voucherSchema: z.ZodObject<{
22385
22453
  key: string;
22386
22454
  platform: Platform;
22387
22455
  size: number;
22456
+ arch?: Architecture | null | undefined;
22388
22457
  manifest?: {
22389
22458
  files: {
22390
22459
  name: string;
@@ -22558,6 +22627,7 @@ declare const voucherSchema: z.ZodObject<{
22558
22627
  key: string;
22559
22628
  platform: Platform;
22560
22629
  size: number;
22630
+ arch?: Architecture | null | undefined;
22561
22631
  manifest?: {
22562
22632
  files: {
22563
22633
  name: string;
@@ -22736,6 +22806,7 @@ declare const voucherSchema: z.ZodObject<{
22736
22806
  key: string;
22737
22807
  platform: Platform;
22738
22808
  size: number;
22809
+ arch?: Architecture | null | undefined;
22739
22810
  manifest?: {
22740
22811
  files: {
22741
22812
  name: string;
@@ -22912,6 +22983,7 @@ declare const voucherSchema: z.ZodObject<{
22912
22983
  key: string;
22913
22984
  platform: Platform;
22914
22985
  size: number;
22986
+ arch?: Architecture | null | undefined;
22915
22987
  manifest?: {
22916
22988
  files: {
22917
22989
  name: string;
@@ -23089,6 +23161,7 @@ declare const voucherSchema: z.ZodObject<{
23089
23161
  key: string;
23090
23162
  platform: Platform;
23091
23163
  size: number;
23164
+ arch?: Architecture | null | undefined;
23092
23165
  manifest?: {
23093
23166
  files: {
23094
23167
  name: string;
@@ -23195,6 +23268,7 @@ declare const voucherSchema: z.ZodObject<{
23195
23268
  key: string;
23196
23269
  platform: Platform;
23197
23270
  size: number;
23271
+ arch?: Architecture | null | undefined;
23198
23272
  manifest?: {
23199
23273
  files: {
23200
23274
  name: string;
@@ -23371,6 +23445,7 @@ declare const voucherSchema: z.ZodObject<{
23371
23445
  key: string;
23372
23446
  platform: Platform;
23373
23447
  size: number;
23448
+ arch?: Architecture | null | undefined;
23374
23449
  manifest?: {
23375
23450
  files: {
23376
23451
  name: string;
@@ -23476,6 +23551,7 @@ declare const voucherSchema: z.ZodObject<{
23476
23551
  key: string;
23477
23552
  platform: Platform;
23478
23553
  size: number;
23554
+ arch?: Architecture | null | undefined;
23479
23555
  manifest?: {
23480
23556
  files: {
23481
23557
  name: string;
@@ -23684,6 +23760,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23684
23760
  name: z.ZodString;
23685
23761
  key: z.ZodString;
23686
23762
  platform: z.ZodNativeEnum<typeof Platform>;
23763
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
23687
23764
  size: z.ZodNumber;
23688
23765
  path: z.ZodNullable<z.ZodString>;
23689
23766
  manifest: z.ZodOptional<z.ZodObject<{
@@ -23717,6 +23794,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23717
23794
  key: string;
23718
23795
  platform: Platform;
23719
23796
  size: number;
23797
+ arch?: Architecture | null | undefined;
23720
23798
  manifest?: {
23721
23799
  files: {
23722
23800
  name: string;
@@ -23730,6 +23808,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23730
23808
  key: string;
23731
23809
  platform: Platform;
23732
23810
  size: number;
23811
+ arch?: Architecture | null | undefined;
23733
23812
  manifest?: {
23734
23813
  files: {
23735
23814
  name: string;
@@ -24052,6 +24131,7 @@ declare const storefrontProductSchema: z.ZodObject<{
24052
24131
  key: string;
24053
24132
  platform: Platform;
24054
24133
  size: number;
24134
+ arch?: Architecture | null | undefined;
24055
24135
  manifest?: {
24056
24136
  files: {
24057
24137
  name: string;
@@ -24145,6 +24225,7 @@ declare const storefrontProductSchema: z.ZodObject<{
24145
24225
  key: string;
24146
24226
  platform: Platform;
24147
24227
  size: number;
24228
+ arch?: Architecture | null | undefined;
24148
24229
  manifest?: {
24149
24230
  files: {
24150
24231
  name: string;
@@ -24244,6 +24325,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24244
24325
  name: z.ZodString;
24245
24326
  key: z.ZodString;
24246
24327
  platform: z.ZodNativeEnum<typeof Platform>;
24328
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
24247
24329
  size: z.ZodNumber;
24248
24330
  path: z.ZodNullable<z.ZodString>;
24249
24331
  manifest: z.ZodOptional<z.ZodObject<{
@@ -24277,6 +24359,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24277
24359
  key: string;
24278
24360
  platform: Platform;
24279
24361
  size: number;
24362
+ arch?: Architecture | null | undefined;
24280
24363
  manifest?: {
24281
24364
  files: {
24282
24365
  name: string;
@@ -24290,6 +24373,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24290
24373
  key: string;
24291
24374
  platform: Platform;
24292
24375
  size: number;
24376
+ arch?: Architecture | null | undefined;
24293
24377
  manifest?: {
24294
24378
  files: {
24295
24379
  name: string;
@@ -24612,6 +24696,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24612
24696
  key: string;
24613
24697
  platform: Platform;
24614
24698
  size: number;
24699
+ arch?: Architecture | null | undefined;
24615
24700
  manifest?: {
24616
24701
  files: {
24617
24702
  name: string;
@@ -24705,6 +24790,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24705
24790
  key: string;
24706
24791
  platform: Platform;
24707
24792
  size: number;
24793
+ arch?: Architecture | null | undefined;
24708
24794
  manifest?: {
24709
24795
  files: {
24710
24796
  name: string;
@@ -25112,6 +25198,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
25112
25198
  key: string;
25113
25199
  platform: Platform;
25114
25200
  size: number;
25201
+ arch?: Architecture | null | undefined;
25115
25202
  manifest?: {
25116
25203
  files: {
25117
25204
  name: string;
@@ -25285,6 +25372,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
25285
25372
  key: string;
25286
25373
  platform: Platform;
25287
25374
  size: number;
25375
+ arch?: Architecture | null | undefined;
25288
25376
  manifest?: {
25289
25377
  files: {
25290
25378
  name: string;
@@ -25464,6 +25552,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25464
25552
  name: z.ZodString;
25465
25553
  key: z.ZodString;
25466
25554
  platform: z.ZodNativeEnum<typeof Platform>;
25555
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
25467
25556
  size: z.ZodNumber;
25468
25557
  path: z.ZodNullable<z.ZodString>;
25469
25558
  manifest: z.ZodOptional<z.ZodObject<{
@@ -25497,6 +25586,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25497
25586
  key: string;
25498
25587
  platform: Platform;
25499
25588
  size: number;
25589
+ arch?: Architecture | null | undefined;
25500
25590
  manifest?: {
25501
25591
  files: {
25502
25592
  name: string;
@@ -25510,6 +25600,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25510
25600
  key: string;
25511
25601
  platform: Platform;
25512
25602
  size: number;
25603
+ arch?: Architecture | null | undefined;
25513
25604
  manifest?: {
25514
25605
  files: {
25515
25606
  name: string;
@@ -25832,6 +25923,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25832
25923
  key: string;
25833
25924
  platform: Platform;
25834
25925
  size: number;
25926
+ arch?: Architecture | null | undefined;
25835
25927
  manifest?: {
25836
25928
  files: {
25837
25929
  name: string;
@@ -25925,6 +26017,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25925
26017
  key: string;
25926
26018
  platform: Platform;
25927
26019
  size: number;
26020
+ arch?: Architecture | null | undefined;
25928
26021
  manifest?: {
25929
26022
  files: {
25930
26023
  name: string;
@@ -26023,6 +26116,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26023
26116
  name: z.ZodString;
26024
26117
  key: z.ZodString;
26025
26118
  platform: z.ZodNativeEnum<typeof Platform>;
26119
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
26026
26120
  size: z.ZodNumber;
26027
26121
  path: z.ZodNullable<z.ZodString>;
26028
26122
  manifest: z.ZodOptional<z.ZodObject<{
@@ -26056,6 +26150,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26056
26150
  key: string;
26057
26151
  platform: Platform;
26058
26152
  size: number;
26153
+ arch?: Architecture | null | undefined;
26059
26154
  manifest?: {
26060
26155
  files: {
26061
26156
  name: string;
@@ -26069,6 +26164,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26069
26164
  key: string;
26070
26165
  platform: Platform;
26071
26166
  size: number;
26167
+ arch?: Architecture | null | undefined;
26072
26168
  manifest?: {
26073
26169
  files: {
26074
26170
  name: string;
@@ -26391,6 +26487,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26391
26487
  key: string;
26392
26488
  platform: Platform;
26393
26489
  size: number;
26490
+ arch?: Architecture | null | undefined;
26394
26491
  manifest?: {
26395
26492
  files: {
26396
26493
  name: string;
@@ -26484,6 +26581,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26484
26581
  key: string;
26485
26582
  platform: Platform;
26486
26583
  size: number;
26584
+ arch?: Architecture | null | undefined;
26487
26585
  manifest?: {
26488
26586
  files: {
26489
26587
  name: string;
@@ -26891,6 +26989,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26891
26989
  key: string;
26892
26990
  platform: Platform;
26893
26991
  size: number;
26992
+ arch?: Architecture | null | undefined;
26894
26993
  manifest?: {
26895
26994
  files: {
26896
26995
  name: string;
@@ -27064,6 +27163,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27064
27163
  key: string;
27065
27164
  platform: Platform;
27066
27165
  size: number;
27166
+ arch?: Architecture | null | undefined;
27067
27167
  manifest?: {
27068
27168
  files: {
27069
27169
  name: string;
@@ -27227,6 +27327,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27227
27327
  name: z.ZodString;
27228
27328
  key: z.ZodString;
27229
27329
  platform: z.ZodNativeEnum<typeof Platform>;
27330
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
27230
27331
  size: z.ZodNumber;
27231
27332
  path: z.ZodNullable<z.ZodString>;
27232
27333
  manifest: z.ZodOptional<z.ZodObject<{
@@ -27260,6 +27361,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27260
27361
  key: string;
27261
27362
  platform: Platform;
27262
27363
  size: number;
27364
+ arch?: Architecture | null | undefined;
27263
27365
  manifest?: {
27264
27366
  files: {
27265
27367
  name: string;
@@ -27273,6 +27375,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27273
27375
  key: string;
27274
27376
  platform: Platform;
27275
27377
  size: number;
27378
+ arch?: Architecture | null | undefined;
27276
27379
  manifest?: {
27277
27380
  files: {
27278
27381
  name: string;
@@ -27595,6 +27698,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27595
27698
  key: string;
27596
27699
  platform: Platform;
27597
27700
  size: number;
27701
+ arch?: Architecture | null | undefined;
27598
27702
  manifest?: {
27599
27703
  files: {
27600
27704
  name: string;
@@ -27688,6 +27792,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27688
27792
  key: string;
27689
27793
  platform: Platform;
27690
27794
  size: number;
27795
+ arch?: Architecture | null | undefined;
27691
27796
  manifest?: {
27692
27797
  files: {
27693
27798
  name: string;
@@ -27786,6 +27891,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27786
27891
  name: z.ZodString;
27787
27892
  key: z.ZodString;
27788
27893
  platform: z.ZodNativeEnum<typeof Platform>;
27894
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
27789
27895
  size: z.ZodNumber;
27790
27896
  path: z.ZodNullable<z.ZodString>;
27791
27897
  manifest: z.ZodOptional<z.ZodObject<{
@@ -27819,6 +27925,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27819
27925
  key: string;
27820
27926
  platform: Platform;
27821
27927
  size: number;
27928
+ arch?: Architecture | null | undefined;
27822
27929
  manifest?: {
27823
27930
  files: {
27824
27931
  name: string;
@@ -27832,6 +27939,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27832
27939
  key: string;
27833
27940
  platform: Platform;
27834
27941
  size: number;
27942
+ arch?: Architecture | null | undefined;
27835
27943
  manifest?: {
27836
27944
  files: {
27837
27945
  name: string;
@@ -28154,6 +28262,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28154
28262
  key: string;
28155
28263
  platform: Platform;
28156
28264
  size: number;
28265
+ arch?: Architecture | null | undefined;
28157
28266
  manifest?: {
28158
28267
  files: {
28159
28268
  name: string;
@@ -28247,6 +28356,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28247
28356
  key: string;
28248
28357
  platform: Platform;
28249
28358
  size: number;
28359
+ arch?: Architecture | null | undefined;
28250
28360
  manifest?: {
28251
28361
  files: {
28252
28362
  name: string;
@@ -28654,6 +28764,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28654
28764
  key: string;
28655
28765
  platform: Platform;
28656
28766
  size: number;
28767
+ arch?: Architecture | null | undefined;
28657
28768
  manifest?: {
28658
28769
  files: {
28659
28770
  name: string;
@@ -28827,6 +28938,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28827
28938
  key: string;
28828
28939
  platform: Platform;
28829
28940
  size: number;
28941
+ arch?: Architecture | null | undefined;
28830
28942
  manifest?: {
28831
28943
  files: {
28832
28944
  name: string;
@@ -29072,6 +29184,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29072
29184
  key: string;
29073
29185
  platform: Platform;
29074
29186
  size: number;
29187
+ arch?: Architecture | null | undefined;
29075
29188
  manifest?: {
29076
29189
  files: {
29077
29190
  name: string;
@@ -29174,6 +29287,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29174
29287
  key: string;
29175
29288
  platform: Platform;
29176
29289
  size: number;
29290
+ arch?: Architecture | null | undefined;
29177
29291
  manifest?: {
29178
29292
  files: {
29179
29293
  name: string;
@@ -29339,6 +29453,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29339
29453
  key: string;
29340
29454
  platform: Platform;
29341
29455
  size: number;
29456
+ arch?: Architecture | null | undefined;
29342
29457
  manifest?: {
29343
29458
  files: {
29344
29459
  name: string;
@@ -29441,6 +29556,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29441
29556
  key: string;
29442
29557
  platform: Platform;
29443
29558
  size: number;
29559
+ arch?: Architecture | null | undefined;
29444
29560
  manifest?: {
29445
29561
  files: {
29446
29562
  name: string;
@@ -29631,6 +29747,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29631
29747
  key: string;
29632
29748
  platform: Platform;
29633
29749
  size: number;
29750
+ arch?: Architecture | null | undefined;
29634
29751
  manifest?: {
29635
29752
  files: {
29636
29753
  name: string;
@@ -29732,6 +29849,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29732
29849
  key: string;
29733
29850
  platform: Platform;
29734
29851
  size: number;
29852
+ arch?: Architecture | null | undefined;
29735
29853
  manifest?: {
29736
29854
  files: {
29737
29855
  name: string;
@@ -29898,6 +30016,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29898
30016
  key: string;
29899
30017
  platform: Platform;
29900
30018
  size: number;
30019
+ arch?: Architecture | null | undefined;
29901
30020
  manifest?: {
29902
30021
  files: {
29903
30022
  name: string;
@@ -29999,6 +30118,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29999
30118
  key: string;
30000
30119
  platform: Platform;
30001
30120
  size: number;
30121
+ arch?: Architecture | null | undefined;
30002
30122
  manifest?: {
30003
30123
  files: {
30004
30124
  name: string;
@@ -30189,6 +30309,7 @@ declare const storefrontSchema: z.ZodObject<{
30189
30309
  name: z.ZodString;
30190
30310
  key: z.ZodString;
30191
30311
  platform: z.ZodNativeEnum<typeof Platform>;
30312
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
30192
30313
  size: z.ZodNumber;
30193
30314
  path: z.ZodNullable<z.ZodString>;
30194
30315
  manifest: z.ZodOptional<z.ZodObject<{
@@ -30222,6 +30343,7 @@ declare const storefrontSchema: z.ZodObject<{
30222
30343
  key: string;
30223
30344
  platform: Platform;
30224
30345
  size: number;
30346
+ arch?: Architecture | null | undefined;
30225
30347
  manifest?: {
30226
30348
  files: {
30227
30349
  name: string;
@@ -30235,6 +30357,7 @@ declare const storefrontSchema: z.ZodObject<{
30235
30357
  key: string;
30236
30358
  platform: Platform;
30237
30359
  size: number;
30360
+ arch?: Architecture | null | undefined;
30238
30361
  manifest?: {
30239
30362
  files: {
30240
30363
  name: string;
@@ -30557,6 +30680,7 @@ declare const storefrontSchema: z.ZodObject<{
30557
30680
  key: string;
30558
30681
  platform: Platform;
30559
30682
  size: number;
30683
+ arch?: Architecture | null | undefined;
30560
30684
  manifest?: {
30561
30685
  files: {
30562
30686
  name: string;
@@ -30650,6 +30774,7 @@ declare const storefrontSchema: z.ZodObject<{
30650
30774
  key: string;
30651
30775
  platform: Platform;
30652
30776
  size: number;
30777
+ arch?: Architecture | null | undefined;
30653
30778
  manifest?: {
30654
30779
  files: {
30655
30780
  name: string;
@@ -30749,6 +30874,7 @@ declare const storefrontSchema: z.ZodObject<{
30749
30874
  name: z.ZodString;
30750
30875
  key: z.ZodString;
30751
30876
  platform: z.ZodNativeEnum<typeof Platform>;
30877
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
30752
30878
  size: z.ZodNumber;
30753
30879
  path: z.ZodNullable<z.ZodString>;
30754
30880
  manifest: z.ZodOptional<z.ZodObject<{
@@ -30782,6 +30908,7 @@ declare const storefrontSchema: z.ZodObject<{
30782
30908
  key: string;
30783
30909
  platform: Platform;
30784
30910
  size: number;
30911
+ arch?: Architecture | null | undefined;
30785
30912
  manifest?: {
30786
30913
  files: {
30787
30914
  name: string;
@@ -30795,6 +30922,7 @@ declare const storefrontSchema: z.ZodObject<{
30795
30922
  key: string;
30796
30923
  platform: Platform;
30797
30924
  size: number;
30925
+ arch?: Architecture | null | undefined;
30798
30926
  manifest?: {
30799
30927
  files: {
30800
30928
  name: string;
@@ -31117,6 +31245,7 @@ declare const storefrontSchema: z.ZodObject<{
31117
31245
  key: string;
31118
31246
  platform: Platform;
31119
31247
  size: number;
31248
+ arch?: Architecture | null | undefined;
31120
31249
  manifest?: {
31121
31250
  files: {
31122
31251
  name: string;
@@ -31210,6 +31339,7 @@ declare const storefrontSchema: z.ZodObject<{
31210
31339
  key: string;
31211
31340
  platform: Platform;
31212
31341
  size: number;
31342
+ arch?: Architecture | null | undefined;
31213
31343
  manifest?: {
31214
31344
  files: {
31215
31345
  name: string;
@@ -31617,6 +31747,7 @@ declare const storefrontSchema: z.ZodObject<{
31617
31747
  key: string;
31618
31748
  platform: Platform;
31619
31749
  size: number;
31750
+ arch?: Architecture | null | undefined;
31620
31751
  manifest?: {
31621
31752
  files: {
31622
31753
  name: string;
@@ -31790,6 +31921,7 @@ declare const storefrontSchema: z.ZodObject<{
31790
31921
  key: string;
31791
31922
  platform: Platform;
31792
31923
  size: number;
31924
+ arch?: Architecture | null | undefined;
31793
31925
  manifest?: {
31794
31926
  files: {
31795
31927
  name: string;
@@ -31956,6 +32088,7 @@ declare const storefrontSchema: z.ZodObject<{
31956
32088
  name: z.ZodString;
31957
32089
  key: z.ZodString;
31958
32090
  platform: z.ZodNativeEnum<typeof Platform>;
32091
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
31959
32092
  size: z.ZodNumber;
31960
32093
  path: z.ZodNullable<z.ZodString>;
31961
32094
  manifest: z.ZodOptional<z.ZodObject<{
@@ -31989,6 +32122,7 @@ declare const storefrontSchema: z.ZodObject<{
31989
32122
  key: string;
31990
32123
  platform: Platform;
31991
32124
  size: number;
32125
+ arch?: Architecture | null | undefined;
31992
32126
  manifest?: {
31993
32127
  files: {
31994
32128
  name: string;
@@ -32002,6 +32136,7 @@ declare const storefrontSchema: z.ZodObject<{
32002
32136
  key: string;
32003
32137
  platform: Platform;
32004
32138
  size: number;
32139
+ arch?: Architecture | null | undefined;
32005
32140
  manifest?: {
32006
32141
  files: {
32007
32142
  name: string;
@@ -32324,6 +32459,7 @@ declare const storefrontSchema: z.ZodObject<{
32324
32459
  key: string;
32325
32460
  platform: Platform;
32326
32461
  size: number;
32462
+ arch?: Architecture | null | undefined;
32327
32463
  manifest?: {
32328
32464
  files: {
32329
32465
  name: string;
@@ -32417,6 +32553,7 @@ declare const storefrontSchema: z.ZodObject<{
32417
32553
  key: string;
32418
32554
  platform: Platform;
32419
32555
  size: number;
32556
+ arch?: Architecture | null | undefined;
32420
32557
  manifest?: {
32421
32558
  files: {
32422
32559
  name: string;
@@ -32515,6 +32652,7 @@ declare const storefrontSchema: z.ZodObject<{
32515
32652
  name: z.ZodString;
32516
32653
  key: z.ZodString;
32517
32654
  platform: z.ZodNativeEnum<typeof Platform>;
32655
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
32518
32656
  size: z.ZodNumber;
32519
32657
  path: z.ZodNullable<z.ZodString>;
32520
32658
  manifest: z.ZodOptional<z.ZodObject<{
@@ -32548,6 +32686,7 @@ declare const storefrontSchema: z.ZodObject<{
32548
32686
  key: string;
32549
32687
  platform: Platform;
32550
32688
  size: number;
32689
+ arch?: Architecture | null | undefined;
32551
32690
  manifest?: {
32552
32691
  files: {
32553
32692
  name: string;
@@ -32561,6 +32700,7 @@ declare const storefrontSchema: z.ZodObject<{
32561
32700
  key: string;
32562
32701
  platform: Platform;
32563
32702
  size: number;
32703
+ arch?: Architecture | null | undefined;
32564
32704
  manifest?: {
32565
32705
  files: {
32566
32706
  name: string;
@@ -32883,6 +33023,7 @@ declare const storefrontSchema: z.ZodObject<{
32883
33023
  key: string;
32884
33024
  platform: Platform;
32885
33025
  size: number;
33026
+ arch?: Architecture | null | undefined;
32886
33027
  manifest?: {
32887
33028
  files: {
32888
33029
  name: string;
@@ -32976,6 +33117,7 @@ declare const storefrontSchema: z.ZodObject<{
32976
33117
  key: string;
32977
33118
  platform: Platform;
32978
33119
  size: number;
33120
+ arch?: Architecture | null | undefined;
32979
33121
  manifest?: {
32980
33122
  files: {
32981
33123
  name: string;
@@ -33383,6 +33525,7 @@ declare const storefrontSchema: z.ZodObject<{
33383
33525
  key: string;
33384
33526
  platform: Platform;
33385
33527
  size: number;
33528
+ arch?: Architecture | null | undefined;
33386
33529
  manifest?: {
33387
33530
  files: {
33388
33531
  name: string;
@@ -33556,6 +33699,7 @@ declare const storefrontSchema: z.ZodObject<{
33556
33699
  key: string;
33557
33700
  platform: Platform;
33558
33701
  size: number;
33702
+ arch?: Architecture | null | undefined;
33559
33703
  manifest?: {
33560
33704
  files: {
33561
33705
  name: string;
@@ -33719,6 +33863,7 @@ declare const storefrontSchema: z.ZodObject<{
33719
33863
  name: z.ZodString;
33720
33864
  key: z.ZodString;
33721
33865
  platform: z.ZodNativeEnum<typeof Platform>;
33866
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
33722
33867
  size: z.ZodNumber;
33723
33868
  path: z.ZodNullable<z.ZodString>;
33724
33869
  manifest: z.ZodOptional<z.ZodObject<{
@@ -33752,6 +33897,7 @@ declare const storefrontSchema: z.ZodObject<{
33752
33897
  key: string;
33753
33898
  platform: Platform;
33754
33899
  size: number;
33900
+ arch?: Architecture | null | undefined;
33755
33901
  manifest?: {
33756
33902
  files: {
33757
33903
  name: string;
@@ -33765,6 +33911,7 @@ declare const storefrontSchema: z.ZodObject<{
33765
33911
  key: string;
33766
33912
  platform: Platform;
33767
33913
  size: number;
33914
+ arch?: Architecture | null | undefined;
33768
33915
  manifest?: {
33769
33916
  files: {
33770
33917
  name: string;
@@ -34087,6 +34234,7 @@ declare const storefrontSchema: z.ZodObject<{
34087
34234
  key: string;
34088
34235
  platform: Platform;
34089
34236
  size: number;
34237
+ arch?: Architecture | null | undefined;
34090
34238
  manifest?: {
34091
34239
  files: {
34092
34240
  name: string;
@@ -34180,6 +34328,7 @@ declare const storefrontSchema: z.ZodObject<{
34180
34328
  key: string;
34181
34329
  platform: Platform;
34182
34330
  size: number;
34331
+ arch?: Architecture | null | undefined;
34183
34332
  manifest?: {
34184
34333
  files: {
34185
34334
  name: string;
@@ -34278,6 +34427,7 @@ declare const storefrontSchema: z.ZodObject<{
34278
34427
  name: z.ZodString;
34279
34428
  key: z.ZodString;
34280
34429
  platform: z.ZodNativeEnum<typeof Platform>;
34430
+ arch: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof Architecture>>>;
34281
34431
  size: z.ZodNumber;
34282
34432
  path: z.ZodNullable<z.ZodString>;
34283
34433
  manifest: z.ZodOptional<z.ZodObject<{
@@ -34311,6 +34461,7 @@ declare const storefrontSchema: z.ZodObject<{
34311
34461
  key: string;
34312
34462
  platform: Platform;
34313
34463
  size: number;
34464
+ arch?: Architecture | null | undefined;
34314
34465
  manifest?: {
34315
34466
  files: {
34316
34467
  name: string;
@@ -34324,6 +34475,7 @@ declare const storefrontSchema: z.ZodObject<{
34324
34475
  key: string;
34325
34476
  platform: Platform;
34326
34477
  size: number;
34478
+ arch?: Architecture | null | undefined;
34327
34479
  manifest?: {
34328
34480
  files: {
34329
34481
  name: string;
@@ -34646,6 +34798,7 @@ declare const storefrontSchema: z.ZodObject<{
34646
34798
  key: string;
34647
34799
  platform: Platform;
34648
34800
  size: number;
34801
+ arch?: Architecture | null | undefined;
34649
34802
  manifest?: {
34650
34803
  files: {
34651
34804
  name: string;
@@ -34739,6 +34892,7 @@ declare const storefrontSchema: z.ZodObject<{
34739
34892
  key: string;
34740
34893
  platform: Platform;
34741
34894
  size: number;
34895
+ arch?: Architecture | null | undefined;
34742
34896
  manifest?: {
34743
34897
  files: {
34744
34898
  name: string;
@@ -35146,6 +35300,7 @@ declare const storefrontSchema: z.ZodObject<{
35146
35300
  key: string;
35147
35301
  platform: Platform;
35148
35302
  size: number;
35303
+ arch?: Architecture | null | undefined;
35149
35304
  manifest?: {
35150
35305
  files: {
35151
35306
  name: string;
@@ -35319,6 +35474,7 @@ declare const storefrontSchema: z.ZodObject<{
35319
35474
  key: string;
35320
35475
  platform: Platform;
35321
35476
  size: number;
35477
+ arch?: Architecture | null | undefined;
35322
35478
  manifest?: {
35323
35479
  files: {
35324
35480
  name: string;
@@ -35564,6 +35720,7 @@ declare const storefrontSchema: z.ZodObject<{
35564
35720
  key: string;
35565
35721
  platform: Platform;
35566
35722
  size: number;
35723
+ arch?: Architecture | null | undefined;
35567
35724
  manifest?: {
35568
35725
  files: {
35569
35726
  name: string;
@@ -35666,6 +35823,7 @@ declare const storefrontSchema: z.ZodObject<{
35666
35823
  key: string;
35667
35824
  platform: Platform;
35668
35825
  size: number;
35826
+ arch?: Architecture | null | undefined;
35669
35827
  manifest?: {
35670
35828
  files: {
35671
35829
  name: string;
@@ -35831,6 +35989,7 @@ declare const storefrontSchema: z.ZodObject<{
35831
35989
  key: string;
35832
35990
  platform: Platform;
35833
35991
  size: number;
35992
+ arch?: Architecture | null | undefined;
35834
35993
  manifest?: {
35835
35994
  files: {
35836
35995
  name: string;
@@ -35933,6 +36092,7 @@ declare const storefrontSchema: z.ZodObject<{
35933
36092
  key: string;
35934
36093
  platform: Platform;
35935
36094
  size: number;
36095
+ arch?: Architecture | null | undefined;
35936
36096
  manifest?: {
35937
36097
  files: {
35938
36098
  name: string;
@@ -36123,6 +36283,7 @@ declare const storefrontSchema: z.ZodObject<{
36123
36283
  key: string;
36124
36284
  platform: Platform;
36125
36285
  size: number;
36286
+ arch?: Architecture | null | undefined;
36126
36287
  manifest?: {
36127
36288
  files: {
36128
36289
  name: string;
@@ -36224,6 +36385,7 @@ declare const storefrontSchema: z.ZodObject<{
36224
36385
  key: string;
36225
36386
  platform: Platform;
36226
36387
  size: number;
36388
+ arch?: Architecture | null | undefined;
36227
36389
  manifest?: {
36228
36390
  files: {
36229
36391
  name: string;
@@ -36390,6 +36552,7 @@ declare const storefrontSchema: z.ZodObject<{
36390
36552
  key: string;
36391
36553
  platform: Platform;
36392
36554
  size: number;
36555
+ arch?: Architecture | null | undefined;
36393
36556
  manifest?: {
36394
36557
  files: {
36395
36558
  name: string;
@@ -36491,6 +36654,7 @@ declare const storefrontSchema: z.ZodObject<{
36491
36654
  key: string;
36492
36655
  platform: Platform;
36493
36656
  size: number;
36657
+ arch?: Architecture | null | undefined;
36494
36658
  manifest?: {
36495
36659
  files: {
36496
36660
  name: string;
@@ -36682,6 +36846,7 @@ declare const storefrontSchema: z.ZodObject<{
36682
36846
  key: string;
36683
36847
  platform: Platform;
36684
36848
  size: number;
36849
+ arch?: Architecture | null | undefined;
36685
36850
  manifest?: {
36686
36851
  files: {
36687
36852
  name: string;
@@ -36786,6 +36951,7 @@ declare const storefrontSchema: z.ZodObject<{
36786
36951
  key: string;
36787
36952
  platform: Platform;
36788
36953
  size: number;
36954
+ arch?: Architecture | null | undefined;
36789
36955
  manifest?: {
36790
36956
  files: {
36791
36957
  name: string;
@@ -36971,6 +37137,7 @@ declare const storefrontSchema: z.ZodObject<{
36971
37137
  key: string;
36972
37138
  platform: Platform;
36973
37139
  size: number;
37140
+ arch?: Architecture | null | undefined;
36974
37141
  manifest?: {
36975
37142
  files: {
36976
37143
  name: string;
@@ -37073,6 +37240,7 @@ declare const storefrontSchema: z.ZodObject<{
37073
37240
  key: string;
37074
37241
  platform: Platform;
37075
37242
  size: number;
37243
+ arch?: Architecture | null | undefined;
37076
37244
  manifest?: {
37077
37245
  files: {
37078
37246
  name: string;
@@ -37238,6 +37406,7 @@ declare const storefrontSchema: z.ZodObject<{
37238
37406
  key: string;
37239
37407
  platform: Platform;
37240
37408
  size: number;
37409
+ arch?: Architecture | null | undefined;
37241
37410
  manifest?: {
37242
37411
  files: {
37243
37412
  name: string;
@@ -37340,6 +37509,7 @@ declare const storefrontSchema: z.ZodObject<{
37340
37509
  key: string;
37341
37510
  platform: Platform;
37342
37511
  size: number;
37512
+ arch?: Architecture | null | undefined;
37343
37513
  manifest?: {
37344
37514
  files: {
37345
37515
  name: string;
@@ -37520,6 +37690,7 @@ declare const storefrontSchema: z.ZodObject<{
37520
37690
  key: string;
37521
37691
  platform: Platform;
37522
37692
  size: number;
37693
+ arch?: Architecture | null | undefined;
37523
37694
  manifest?: {
37524
37695
  files: {
37525
37696
  name: string;
@@ -37623,6 +37794,7 @@ declare const storefrontSchema: z.ZodObject<{
37623
37794
  key: string;
37624
37795
  platform: Platform;
37625
37796
  size: number;
37797
+ arch?: Architecture | null | undefined;
37626
37798
  manifest?: {
37627
37799
  files: {
37628
37800
  name: string;
@@ -37809,6 +37981,7 @@ declare const storefrontSchema: z.ZodObject<{
37809
37981
  key: string;
37810
37982
  platform: Platform;
37811
37983
  size: number;
37984
+ arch?: Architecture | null | undefined;
37812
37985
  manifest?: {
37813
37986
  files: {
37814
37987
  name: string;
@@ -37910,6 +38083,7 @@ declare const storefrontSchema: z.ZodObject<{
37910
38083
  key: string;
37911
38084
  platform: Platform;
37912
38085
  size: number;
38086
+ arch?: Architecture | null | undefined;
37913
38087
  manifest?: {
37914
38088
  files: {
37915
38089
  name: string;
@@ -38076,6 +38250,7 @@ declare const storefrontSchema: z.ZodObject<{
38076
38250
  key: string;
38077
38251
  platform: Platform;
38078
38252
  size: number;
38253
+ arch?: Architecture | null | undefined;
38079
38254
  manifest?: {
38080
38255
  files: {
38081
38256
  name: string;
@@ -38177,6 +38352,7 @@ declare const storefrontSchema: z.ZodObject<{
38177
38352
  key: string;
38178
38353
  platform: Platform;
38179
38354
  size: number;
38355
+ arch?: Architecture | null | undefined;
38180
38356
  manifest?: {
38181
38357
  files: {
38182
38358
  name: string;
@@ -38421,6 +38597,32 @@ declare class DiscountUtils {
38421
38597
  static apply(discount: Discount, price: MoneyCollection): MoneyCollection;
38422
38598
  }
38423
38599
 
38600
+ /**
38601
+ * Returns the host of `rawReferrer` if it parses as a URL with a different
38602
+ * origin from `currentOrigin`. Returns `undefined` for same-origin (internal
38603
+ * navigation), empty, or unparseable referrers — these should not count as
38604
+ * attribution signals.
38605
+ */
38606
+ declare function parseOffSiteReferrer(rawReferrer: string | undefined, currentOrigin: string): string | undefined;
38607
+ /**
38608
+ * Resolves the effective attribution state given the cached attribution from
38609
+ * a previous pageview and the freshly captured attribution on the current
38610
+ * page.
38611
+ *
38612
+ * Model: session-last-touch with atomic attribution events. UTM fields and
38613
+ * the referrer describe one and the same arrival, so they move together.
38614
+ *
38615
+ * - If the current page has any external signal — a UTM field or an off-site
38616
+ * referrer — that's a new attribution event and `fresh` is adopted
38617
+ * wholesale. No mixing with prior attribution.
38618
+ * - Otherwise (typically internal navigation, where same-origin referrers
38619
+ * are filtered to undefined upstream), the cached attribution is restored
38620
+ * verbatim so it carries through the session.
38621
+ * - With nothing fresh and nothing cached, the result is an empty
38622
+ * attribution (direct visit, no signal).
38623
+ */
38624
+ declare function resolveUtm(cached: UrchinTrackingModule | undefined, fresh: UrchinTrackingModule): UrchinTrackingModule;
38625
+
38424
38626
  interface MoonbaseConfiguration {
38425
38627
  endpoint: string;
38426
38628
  persistUtm?: boolean;
@@ -38444,4 +38646,4 @@ declare class MoonbaseClient {
38444
38646
  orders: OrderEndpoints;
38445
38647
  }
38446
38648
 
38447
- 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, problemDetailsSchema, schemas, utmToObject };
38649
+ 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 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 };