@moonbase.sh/storefront-api 0.1.122 → 0.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
@@ -237,6 +237,7 @@ declare const activationRequestSchema: z.ZodObject<{
237
237
  name: z.ZodString;
238
238
  tagline: z.ZodString;
239
239
  iconUrl: z.ZodNullable<z.ZodString>;
240
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
240
241
  owned: z.ZodBoolean;
241
242
  currentVersion: z.ZodOptional<z.ZodString>;
242
243
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -420,6 +421,7 @@ declare const activationRequestSchema: z.ZodObject<{
420
421
  tagline: string;
421
422
  iconUrl: string | null;
422
423
  owned: boolean;
424
+ website?: string | null | undefined;
423
425
  currentVersion?: string | undefined;
424
426
  downloads?: {
425
427
  path: string | null;
@@ -472,6 +474,7 @@ declare const activationRequestSchema: z.ZodObject<{
472
474
  tagline: string;
473
475
  iconUrl: string | null;
474
476
  owned: boolean;
477
+ website?: string | null | undefined;
475
478
  currentVersion?: string | undefined;
476
479
  downloads?: {
477
480
  path: string | null;
@@ -556,6 +559,7 @@ declare const activationRequestSchema: z.ZodObject<{
556
559
  tagline: string;
557
560
  iconUrl: string | null;
558
561
  owned: boolean;
562
+ website?: string | null | undefined;
559
563
  currentVersion?: string | undefined;
560
564
  downloads?: {
561
565
  path: string | null;
@@ -622,6 +626,7 @@ declare const activationRequestSchema: z.ZodObject<{
622
626
  tagline: string;
623
627
  iconUrl: string | null;
624
628
  owned: boolean;
629
+ website?: string | null | undefined;
625
630
  currentVersion?: string | undefined;
626
631
  downloads?: {
627
632
  path: string | null;
@@ -685,7 +690,8 @@ declare const activationRequestSchema: z.ZodObject<{
685
690
  declare enum ActivationRequestStatus {
686
691
  Requested = "Requested",
687
692
  Fulfilled = "Fulfilled",
688
- Completed = "Completed"
693
+ Completed = "Completed",
694
+ Cancelled = "Cancelled"
689
695
  }
690
696
  type ActivationRequest = z.infer<typeof activationRequestSchema>;
691
697
 
@@ -696,6 +702,7 @@ declare class ActivationRequestEndpoints {
696
702
  isCompleted(requestId: string): Promise<boolean>;
697
703
  fulfillLicense(requestId: string): Promise<ActivationRequest>;
698
704
  fulfillTrial(requestId: string): Promise<ActivationRequest>;
705
+ cancel(requestId: string): Promise<ActivationRequest>;
699
706
  }
700
707
 
701
708
  type CommunicationPreferences = z.infer<typeof communicationPreferencesSchema>;
@@ -810,6 +817,7 @@ declare const openProductLineItem: z.ZodObject<{
810
817
  name: z.ZodString;
811
818
  tagline: z.ZodString;
812
819
  iconUrl: z.ZodNullable<z.ZodString>;
820
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
813
821
  owned: z.ZodBoolean;
814
822
  currentVersion: z.ZodOptional<z.ZodString>;
815
823
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -993,6 +1001,7 @@ declare const openProductLineItem: z.ZodObject<{
993
1001
  tagline: string;
994
1002
  iconUrl: string | null;
995
1003
  owned: boolean;
1004
+ website?: string | null | undefined;
996
1005
  currentVersion?: string | undefined;
997
1006
  downloads?: {
998
1007
  path: string | null;
@@ -1045,6 +1054,7 @@ declare const openProductLineItem: z.ZodObject<{
1045
1054
  tagline: string;
1046
1055
  iconUrl: string | null;
1047
1056
  owned: boolean;
1057
+ website?: string | null | undefined;
1048
1058
  currentVersion?: string | undefined;
1049
1059
  downloads?: {
1050
1060
  path: string | null;
@@ -1166,6 +1176,7 @@ declare const openProductLineItem: z.ZodObject<{
1166
1176
  tagline: string;
1167
1177
  iconUrl: string | null;
1168
1178
  owned: boolean;
1179
+ website?: string | null | undefined;
1169
1180
  currentVersion?: string | undefined;
1170
1181
  downloads?: {
1171
1182
  path: string | null;
@@ -1259,6 +1270,7 @@ declare const openProductLineItem: z.ZodObject<{
1259
1270
  tagline: string;
1260
1271
  iconUrl: string | null;
1261
1272
  owned: boolean;
1273
+ website?: string | null | undefined;
1262
1274
  currentVersion?: string | undefined;
1263
1275
  downloads?: {
1264
1276
  path: string | null;
@@ -1418,6 +1430,7 @@ declare const openBundleLineItem: z.ZodObject<{
1418
1430
  name: z.ZodString;
1419
1431
  tagline: z.ZodString;
1420
1432
  iconUrl: z.ZodNullable<z.ZodString>;
1433
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1421
1434
  owned: z.ZodBoolean;
1422
1435
  currentVersion: z.ZodOptional<z.ZodString>;
1423
1436
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1601,6 +1614,7 @@ declare const openBundleLineItem: z.ZodObject<{
1601
1614
  tagline: string;
1602
1615
  iconUrl: string | null;
1603
1616
  owned: boolean;
1617
+ website?: string | null | undefined;
1604
1618
  currentVersion?: string | undefined;
1605
1619
  downloads?: {
1606
1620
  path: string | null;
@@ -1653,6 +1667,7 @@ declare const openBundleLineItem: z.ZodObject<{
1653
1667
  tagline: string;
1654
1668
  iconUrl: string | null;
1655
1669
  owned: boolean;
1670
+ website?: string | null | undefined;
1656
1671
  currentVersion?: string | undefined;
1657
1672
  downloads?: {
1658
1673
  path: string | null;
@@ -1877,6 +1892,7 @@ declare const openBundleLineItem: z.ZodObject<{
1877
1892
  tagline: string;
1878
1893
  iconUrl: string | null;
1879
1894
  owned: boolean;
1895
+ website?: string | null | undefined;
1880
1896
  currentVersion?: string | undefined;
1881
1897
  downloads?: {
1882
1898
  path: string | null;
@@ -1977,6 +1993,7 @@ declare const openBundleLineItem: z.ZodObject<{
1977
1993
  tagline: string;
1978
1994
  iconUrl: string | null;
1979
1995
  owned: boolean;
1996
+ website?: string | null | undefined;
1980
1997
  currentVersion?: string | undefined;
1981
1998
  downloads?: {
1982
1999
  path: string | null;
@@ -2148,6 +2165,7 @@ declare const openBundleLineItem: z.ZodObject<{
2148
2165
  tagline: string;
2149
2166
  iconUrl: string | null;
2150
2167
  owned: boolean;
2168
+ website?: string | null | undefined;
2151
2169
  currentVersion?: string | undefined;
2152
2170
  downloads?: {
2153
2171
  path: string | null;
@@ -2289,6 +2307,7 @@ declare const openBundleLineItem: z.ZodObject<{
2289
2307
  tagline: string;
2290
2308
  iconUrl: string | null;
2291
2309
  owned: boolean;
2310
+ website?: string | null | undefined;
2292
2311
  currentVersion?: string | undefined;
2293
2312
  downloads?: {
2294
2313
  path: string | null;
@@ -2483,6 +2502,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2483
2502
  name: z.ZodString;
2484
2503
  tagline: z.ZodString;
2485
2504
  iconUrl: z.ZodNullable<z.ZodString>;
2505
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2486
2506
  owned: z.ZodBoolean;
2487
2507
  currentVersion: z.ZodOptional<z.ZodString>;
2488
2508
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2666,6 +2686,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2666
2686
  tagline: string;
2667
2687
  iconUrl: string | null;
2668
2688
  owned: boolean;
2689
+ website?: string | null | undefined;
2669
2690
  currentVersion?: string | undefined;
2670
2691
  downloads?: {
2671
2692
  path: string | null;
@@ -2718,6 +2739,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2718
2739
  tagline: string;
2719
2740
  iconUrl: string | null;
2720
2741
  owned: boolean;
2742
+ website?: string | null | undefined;
2721
2743
  currentVersion?: string | undefined;
2722
2744
  downloads?: {
2723
2745
  path: string | null;
@@ -2839,6 +2861,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2839
2861
  tagline: string;
2840
2862
  iconUrl: string | null;
2841
2863
  owned: boolean;
2864
+ website?: string | null | undefined;
2842
2865
  currentVersion?: string | undefined;
2843
2866
  downloads?: {
2844
2867
  path: string | null;
@@ -2932,6 +2955,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2932
2955
  tagline: string;
2933
2956
  iconUrl: string | null;
2934
2957
  owned: boolean;
2958
+ website?: string | null | undefined;
2935
2959
  currentVersion?: string | undefined;
2936
2960
  downloads?: {
2937
2961
  path: string | null;
@@ -3090,6 +3114,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3090
3114
  name: z.ZodString;
3091
3115
  tagline: z.ZodString;
3092
3116
  iconUrl: z.ZodNullable<z.ZodString>;
3117
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3093
3118
  owned: z.ZodBoolean;
3094
3119
  currentVersion: z.ZodOptional<z.ZodString>;
3095
3120
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3273,6 +3298,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3273
3298
  tagline: string;
3274
3299
  iconUrl: string | null;
3275
3300
  owned: boolean;
3301
+ website?: string | null | undefined;
3276
3302
  currentVersion?: string | undefined;
3277
3303
  downloads?: {
3278
3304
  path: string | null;
@@ -3325,6 +3351,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3325
3351
  tagline: string;
3326
3352
  iconUrl: string | null;
3327
3353
  owned: boolean;
3354
+ website?: string | null | undefined;
3328
3355
  currentVersion?: string | undefined;
3329
3356
  downloads?: {
3330
3357
  path: string | null;
@@ -3549,6 +3576,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3549
3576
  tagline: string;
3550
3577
  iconUrl: string | null;
3551
3578
  owned: boolean;
3579
+ website?: string | null | undefined;
3552
3580
  currentVersion?: string | undefined;
3553
3581
  downloads?: {
3554
3582
  path: string | null;
@@ -3649,6 +3677,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3649
3677
  tagline: string;
3650
3678
  iconUrl: string | null;
3651
3679
  owned: boolean;
3680
+ website?: string | null | undefined;
3652
3681
  currentVersion?: string | undefined;
3653
3682
  downloads?: {
3654
3683
  path: string | null;
@@ -3820,6 +3849,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3820
3849
  tagline: string;
3821
3850
  iconUrl: string | null;
3822
3851
  owned: boolean;
3852
+ website?: string | null | undefined;
3823
3853
  currentVersion?: string | undefined;
3824
3854
  downloads?: {
3825
3855
  path: string | null;
@@ -3961,6 +3991,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3961
3991
  tagline: string;
3962
3992
  iconUrl: string | null;
3963
3993
  owned: boolean;
3994
+ website?: string | null | undefined;
3964
3995
  currentVersion?: string | undefined;
3965
3996
  downloads?: {
3966
3997
  path: string | null;
@@ -4159,6 +4190,7 @@ declare const openOrderSchema: z.ZodObject<{
4159
4190
  name: z.ZodString;
4160
4191
  tagline: z.ZodString;
4161
4192
  iconUrl: z.ZodNullable<z.ZodString>;
4193
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4162
4194
  owned: z.ZodBoolean;
4163
4195
  currentVersion: z.ZodOptional<z.ZodString>;
4164
4196
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4342,6 +4374,7 @@ declare const openOrderSchema: z.ZodObject<{
4342
4374
  tagline: string;
4343
4375
  iconUrl: string | null;
4344
4376
  owned: boolean;
4377
+ website?: string | null | undefined;
4345
4378
  currentVersion?: string | undefined;
4346
4379
  downloads?: {
4347
4380
  path: string | null;
@@ -4394,6 +4427,7 @@ declare const openOrderSchema: z.ZodObject<{
4394
4427
  tagline: string;
4395
4428
  iconUrl: string | null;
4396
4429
  owned: boolean;
4430
+ website?: string | null | undefined;
4397
4431
  currentVersion?: string | undefined;
4398
4432
  downloads?: {
4399
4433
  path: string | null;
@@ -4515,6 +4549,7 @@ declare const openOrderSchema: z.ZodObject<{
4515
4549
  tagline: string;
4516
4550
  iconUrl: string | null;
4517
4551
  owned: boolean;
4552
+ website?: string | null | undefined;
4518
4553
  currentVersion?: string | undefined;
4519
4554
  downloads?: {
4520
4555
  path: string | null;
@@ -4608,6 +4643,7 @@ declare const openOrderSchema: z.ZodObject<{
4608
4643
  tagline: string;
4609
4644
  iconUrl: string | null;
4610
4645
  owned: boolean;
4646
+ website?: string | null | undefined;
4611
4647
  currentVersion?: string | undefined;
4612
4648
  downloads?: {
4613
4649
  path: string | null;
@@ -4766,6 +4802,7 @@ declare const openOrderSchema: z.ZodObject<{
4766
4802
  name: z.ZodString;
4767
4803
  tagline: z.ZodString;
4768
4804
  iconUrl: z.ZodNullable<z.ZodString>;
4805
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4769
4806
  owned: z.ZodBoolean;
4770
4807
  currentVersion: z.ZodOptional<z.ZodString>;
4771
4808
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4949,6 +4986,7 @@ declare const openOrderSchema: z.ZodObject<{
4949
4986
  tagline: string;
4950
4987
  iconUrl: string | null;
4951
4988
  owned: boolean;
4989
+ website?: string | null | undefined;
4952
4990
  currentVersion?: string | undefined;
4953
4991
  downloads?: {
4954
4992
  path: string | null;
@@ -5001,6 +5039,7 @@ declare const openOrderSchema: z.ZodObject<{
5001
5039
  tagline: string;
5002
5040
  iconUrl: string | null;
5003
5041
  owned: boolean;
5042
+ website?: string | null | undefined;
5004
5043
  currentVersion?: string | undefined;
5005
5044
  downloads?: {
5006
5045
  path: string | null;
@@ -5225,6 +5264,7 @@ declare const openOrderSchema: z.ZodObject<{
5225
5264
  tagline: string;
5226
5265
  iconUrl: string | null;
5227
5266
  owned: boolean;
5267
+ website?: string | null | undefined;
5228
5268
  currentVersion?: string | undefined;
5229
5269
  downloads?: {
5230
5270
  path: string | null;
@@ -5325,6 +5365,7 @@ declare const openOrderSchema: z.ZodObject<{
5325
5365
  tagline: string;
5326
5366
  iconUrl: string | null;
5327
5367
  owned: boolean;
5368
+ website?: string | null | undefined;
5328
5369
  currentVersion?: string | undefined;
5329
5370
  downloads?: {
5330
5371
  path: string | null;
@@ -5496,6 +5537,7 @@ declare const openOrderSchema: z.ZodObject<{
5496
5537
  tagline: string;
5497
5538
  iconUrl: string | null;
5498
5539
  owned: boolean;
5540
+ website?: string | null | undefined;
5499
5541
  currentVersion?: string | undefined;
5500
5542
  downloads?: {
5501
5543
  path: string | null;
@@ -5637,6 +5679,7 @@ declare const openOrderSchema: z.ZodObject<{
5637
5679
  tagline: string;
5638
5680
  iconUrl: string | null;
5639
5681
  owned: boolean;
5682
+ website?: string | null | undefined;
5640
5683
  currentVersion?: string | undefined;
5641
5684
  downloads?: {
5642
5685
  path: string | null;
@@ -5792,6 +5835,7 @@ declare const openOrderSchema: z.ZodObject<{
5792
5835
  tagline: string;
5793
5836
  iconUrl: string | null;
5794
5837
  owned: boolean;
5838
+ website?: string | null | undefined;
5795
5839
  currentVersion?: string | undefined;
5796
5840
  downloads?: {
5797
5841
  path: string | null;
@@ -5894,6 +5938,7 @@ declare const openOrderSchema: z.ZodObject<{
5894
5938
  tagline: string;
5895
5939
  iconUrl: string | null;
5896
5940
  owned: boolean;
5941
+ website?: string | null | undefined;
5897
5942
  currentVersion?: string | undefined;
5898
5943
  downloads?: {
5899
5944
  path: string | null;
@@ -6039,6 +6084,7 @@ declare const openOrderSchema: z.ZodObject<{
6039
6084
  tagline: string;
6040
6085
  iconUrl: string | null;
6041
6086
  owned: boolean;
6087
+ website?: string | null | undefined;
6042
6088
  currentVersion?: string | undefined;
6043
6089
  downloads?: {
6044
6090
  path: string | null;
@@ -6140,6 +6186,7 @@ declare const openOrderSchema: z.ZodObject<{
6140
6186
  tagline: string;
6141
6187
  iconUrl: string | null;
6142
6188
  owned: boolean;
6189
+ website?: string | null | undefined;
6143
6190
  currentVersion?: string | undefined;
6144
6191
  downloads?: {
6145
6192
  path: string | null;
@@ -6346,6 +6393,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
6346
6393
  name: z.ZodString;
6347
6394
  tagline: z.ZodString;
6348
6395
  iconUrl: z.ZodNullable<z.ZodString>;
6396
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6349
6397
  owned: z.ZodBoolean;
6350
6398
  currentVersion: z.ZodOptional<z.ZodString>;
6351
6399
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6529,6 +6577,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
6529
6577
  tagline: string;
6530
6578
  iconUrl: string | null;
6531
6579
  owned: boolean;
6580
+ website?: string | null | undefined;
6532
6581
  currentVersion?: string | undefined;
6533
6582
  downloads?: {
6534
6583
  path: string | null;
@@ -6581,6 +6630,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
6581
6630
  tagline: string;
6582
6631
  iconUrl: string | null;
6583
6632
  owned: boolean;
6633
+ website?: string | null | undefined;
6584
6634
  currentVersion?: string | undefined;
6585
6635
  downloads?: {
6586
6636
  path: string | null;
@@ -6702,6 +6752,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
6702
6752
  tagline: string;
6703
6753
  iconUrl: string | null;
6704
6754
  owned: boolean;
6755
+ website?: string | null | undefined;
6705
6756
  currentVersion?: string | undefined;
6706
6757
  downloads?: {
6707
6758
  path: string | null;
@@ -6795,6 +6846,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
6795
6846
  tagline: string;
6796
6847
  iconUrl: string | null;
6797
6848
  owned: boolean;
6849
+ website?: string | null | undefined;
6798
6850
  currentVersion?: string | undefined;
6799
6851
  downloads?: {
6800
6852
  path: string | null;
@@ -6953,6 +7005,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
6953
7005
  name: z.ZodString;
6954
7006
  tagline: z.ZodString;
6955
7007
  iconUrl: z.ZodNullable<z.ZodString>;
7008
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6956
7009
  owned: z.ZodBoolean;
6957
7010
  currentVersion: z.ZodOptional<z.ZodString>;
6958
7011
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7136,6 +7189,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
7136
7189
  tagline: string;
7137
7190
  iconUrl: string | null;
7138
7191
  owned: boolean;
7192
+ website?: string | null | undefined;
7139
7193
  currentVersion?: string | undefined;
7140
7194
  downloads?: {
7141
7195
  path: string | null;
@@ -7188,6 +7242,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
7188
7242
  tagline: string;
7189
7243
  iconUrl: string | null;
7190
7244
  owned: boolean;
7245
+ website?: string | null | undefined;
7191
7246
  currentVersion?: string | undefined;
7192
7247
  downloads?: {
7193
7248
  path: string | null;
@@ -7412,6 +7467,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
7412
7467
  tagline: string;
7413
7468
  iconUrl: string | null;
7414
7469
  owned: boolean;
7470
+ website?: string | null | undefined;
7415
7471
  currentVersion?: string | undefined;
7416
7472
  downloads?: {
7417
7473
  path: string | null;
@@ -7512,6 +7568,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
7512
7568
  tagline: string;
7513
7569
  iconUrl: string | null;
7514
7570
  owned: boolean;
7571
+ website?: string | null | undefined;
7515
7572
  currentVersion?: string | undefined;
7516
7573
  downloads?: {
7517
7574
  path: string | null;
@@ -7683,6 +7740,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
7683
7740
  tagline: string;
7684
7741
  iconUrl: string | null;
7685
7742
  owned: boolean;
7743
+ website?: string | null | undefined;
7686
7744
  currentVersion?: string | undefined;
7687
7745
  downloads?: {
7688
7746
  path: string | null;
@@ -7824,6 +7882,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
7824
7882
  tagline: string;
7825
7883
  iconUrl: string | null;
7826
7884
  owned: boolean;
7885
+ website?: string | null | undefined;
7827
7886
  currentVersion?: string | undefined;
7828
7887
  downloads?: {
7829
7888
  path: string | null;
@@ -7979,6 +8038,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
7979
8038
  tagline: string;
7980
8039
  iconUrl: string | null;
7981
8040
  owned: boolean;
8041
+ website?: string | null | undefined;
7982
8042
  currentVersion?: string | undefined;
7983
8043
  downloads?: {
7984
8044
  path: string | null;
@@ -8081,6 +8141,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
8081
8141
  tagline: string;
8082
8142
  iconUrl: string | null;
8083
8143
  owned: boolean;
8144
+ website?: string | null | undefined;
8084
8145
  currentVersion?: string | undefined;
8085
8146
  downloads?: {
8086
8147
  path: string | null;
@@ -8226,6 +8287,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
8226
8287
  tagline: string;
8227
8288
  iconUrl: string | null;
8228
8289
  owned: boolean;
8290
+ website?: string | null | undefined;
8229
8291
  currentVersion?: string | undefined;
8230
8292
  downloads?: {
8231
8293
  path: string | null;
@@ -8327,6 +8389,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
8327
8389
  tagline: string;
8328
8390
  iconUrl: string | null;
8329
8391
  owned: boolean;
8392
+ website?: string | null | undefined;
8330
8393
  currentVersion?: string | undefined;
8331
8394
  downloads?: {
8332
8395
  path: string | null;
@@ -8492,6 +8555,7 @@ declare class OrderEndpoints {
8492
8555
  tagline: string;
8493
8556
  iconUrl: string | null;
8494
8557
  owned: boolean;
8558
+ website?: string | null | undefined;
8495
8559
  currentVersion?: string | undefined;
8496
8560
  downloads?: {
8497
8561
  path: string | null;
@@ -8594,6 +8658,7 @@ declare class OrderEndpoints {
8594
8658
  tagline: string;
8595
8659
  iconUrl: string | null;
8596
8660
  owned: boolean;
8661
+ website?: string | null | undefined;
8597
8662
  currentVersion?: string | undefined;
8598
8663
  downloads?: {
8599
8664
  path: string | null;
@@ -8819,6 +8884,7 @@ declare class StorefrontEndpoints {
8819
8884
  tagline: string;
8820
8885
  iconUrl: string | null;
8821
8886
  owned: boolean;
8887
+ website?: string | null | undefined;
8822
8888
  currentVersion?: string | undefined;
8823
8889
  downloads?: {
8824
8890
  path: string | null;
@@ -8882,6 +8948,7 @@ declare class StorefrontEndpoints {
8882
8948
  tagline: string;
8883
8949
  iconUrl: string | null;
8884
8950
  owned: boolean;
8951
+ website?: string | null | undefined;
8885
8952
  currentVersion?: string | undefined;
8886
8953
  downloads?: {
8887
8954
  path: string | null;
@@ -8985,6 +9052,7 @@ declare const voucherSchema: z.ZodObject<{
8985
9052
  name: z.ZodString;
8986
9053
  tagline: z.ZodString;
8987
9054
  iconUrl: z.ZodNullable<z.ZodString>;
9055
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8988
9056
  owned: z.ZodBoolean;
8989
9057
  currentVersion: z.ZodOptional<z.ZodString>;
8990
9058
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -9168,6 +9236,7 @@ declare const voucherSchema: z.ZodObject<{
9168
9236
  tagline: string;
9169
9237
  iconUrl: string | null;
9170
9238
  owned: boolean;
9239
+ website?: string | null | undefined;
9171
9240
  currentVersion?: string | undefined;
9172
9241
  downloads?: {
9173
9242
  path: string | null;
@@ -9220,6 +9289,7 @@ declare const voucherSchema: z.ZodObject<{
9220
9289
  tagline: string;
9221
9290
  iconUrl: string | null;
9222
9291
  owned: boolean;
9292
+ website?: string | null | undefined;
9223
9293
  currentVersion?: string | undefined;
9224
9294
  downloads?: {
9225
9295
  path: string | null;
@@ -9277,6 +9347,7 @@ declare const voucherSchema: z.ZodObject<{
9277
9347
  tagline: string;
9278
9348
  iconUrl: string | null;
9279
9349
  owned: boolean;
9350
+ website?: string | null | undefined;
9280
9351
  currentVersion?: string | undefined;
9281
9352
  downloads?: {
9282
9353
  path: string | null;
@@ -9332,6 +9403,7 @@ declare const voucherSchema: z.ZodObject<{
9332
9403
  tagline: string;
9333
9404
  iconUrl: string | null;
9334
9405
  owned: boolean;
9406
+ website?: string | null | undefined;
9335
9407
  currentVersion?: string | undefined;
9336
9408
  downloads?: {
9337
9409
  path: string | null;
@@ -9395,6 +9467,7 @@ declare const voucherSchema: z.ZodObject<{
9395
9467
  name: z.ZodString;
9396
9468
  tagline: z.ZodString;
9397
9469
  iconUrl: z.ZodNullable<z.ZodString>;
9470
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9398
9471
  owned: z.ZodBoolean;
9399
9472
  currentVersion: z.ZodOptional<z.ZodString>;
9400
9473
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -9578,6 +9651,7 @@ declare const voucherSchema: z.ZodObject<{
9578
9651
  tagline: string;
9579
9652
  iconUrl: string | null;
9580
9653
  owned: boolean;
9654
+ website?: string | null | undefined;
9581
9655
  currentVersion?: string | undefined;
9582
9656
  downloads?: {
9583
9657
  path: string | null;
@@ -9630,6 +9704,7 @@ declare const voucherSchema: z.ZodObject<{
9630
9704
  tagline: string;
9631
9705
  iconUrl: string | null;
9632
9706
  owned: boolean;
9707
+ website?: string | null | undefined;
9633
9708
  currentVersion?: string | undefined;
9634
9709
  downloads?: {
9635
9710
  path: string | null;
@@ -9854,6 +9929,7 @@ declare const voucherSchema: z.ZodObject<{
9854
9929
  tagline: string;
9855
9930
  iconUrl: string | null;
9856
9931
  owned: boolean;
9932
+ website?: string | null | undefined;
9857
9933
  currentVersion?: string | undefined;
9858
9934
  downloads?: {
9859
9935
  path: string | null;
@@ -9954,6 +10030,7 @@ declare const voucherSchema: z.ZodObject<{
9954
10030
  tagline: string;
9955
10031
  iconUrl: string | null;
9956
10032
  owned: boolean;
10033
+ website?: string | null | undefined;
9957
10034
  currentVersion?: string | undefined;
9958
10035
  downloads?: {
9959
10036
  path: string | null;
@@ -10061,6 +10138,7 @@ declare const voucherSchema: z.ZodObject<{
10061
10138
  tagline: string;
10062
10139
  iconUrl: string | null;
10063
10140
  owned: boolean;
10141
+ website?: string | null | undefined;
10064
10142
  currentVersion?: string | undefined;
10065
10143
  downloads?: {
10066
10144
  path: string | null;
@@ -10164,6 +10242,7 @@ declare const voucherSchema: z.ZodObject<{
10164
10242
  tagline: string;
10165
10243
  iconUrl: string | null;
10166
10244
  owned: boolean;
10245
+ website?: string | null | undefined;
10167
10246
  currentVersion?: string | undefined;
10168
10247
  downloads?: {
10169
10248
  path: string | null;
@@ -10270,6 +10349,7 @@ declare const voucherSchema: z.ZodObject<{
10270
10349
  tagline: string;
10271
10350
  iconUrl: string | null;
10272
10351
  owned: boolean;
10352
+ website?: string | null | undefined;
10273
10353
  currentVersion?: string | undefined;
10274
10354
  downloads?: {
10275
10355
  path: string | null;
@@ -10335,6 +10415,7 @@ declare const voucherSchema: z.ZodObject<{
10335
10415
  tagline: string;
10336
10416
  iconUrl: string | null;
10337
10417
  owned: boolean;
10418
+ website?: string | null | undefined;
10338
10419
  currentVersion?: string | undefined;
10339
10420
  downloads?: {
10340
10421
  path: string | null;
@@ -10438,6 +10519,7 @@ declare const voucherSchema: z.ZodObject<{
10438
10519
  tagline: string;
10439
10520
  iconUrl: string | null;
10440
10521
  owned: boolean;
10522
+ website?: string | null | undefined;
10441
10523
  currentVersion?: string | undefined;
10442
10524
  downloads?: {
10443
10525
  path: string | null;
@@ -10502,6 +10584,7 @@ declare const voucherSchema: z.ZodObject<{
10502
10584
  tagline: string;
10503
10585
  iconUrl: string | null;
10504
10586
  owned: boolean;
10587
+ website?: string | null | undefined;
10505
10588
  currentVersion?: string | undefined;
10506
10589
  downloads?: {
10507
10590
  path: string | null;
@@ -10917,6 +11000,7 @@ declare const storefrontProductSchema: z.ZodObject<{
10917
11000
  name: z.ZodString;
10918
11001
  tagline: z.ZodString;
10919
11002
  iconUrl: z.ZodNullable<z.ZodString>;
11003
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10920
11004
  owned: z.ZodBoolean;
10921
11005
  currentVersion: z.ZodOptional<z.ZodString>;
10922
11006
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -11100,6 +11184,7 @@ declare const storefrontProductSchema: z.ZodObject<{
11100
11184
  tagline: string;
11101
11185
  iconUrl: string | null;
11102
11186
  owned: boolean;
11187
+ website?: string | null | undefined;
11103
11188
  currentVersion?: string | undefined;
11104
11189
  downloads?: {
11105
11190
  path: string | null;
@@ -11152,6 +11237,7 @@ declare const storefrontProductSchema: z.ZodObject<{
11152
11237
  tagline: string;
11153
11238
  iconUrl: string | null;
11154
11239
  owned: boolean;
11240
+ website?: string | null | undefined;
11155
11241
  currentVersion?: string | undefined;
11156
11242
  downloads?: {
11157
11243
  path: string | null;
@@ -11212,6 +11298,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
11212
11298
  name: z.ZodString;
11213
11299
  tagline: z.ZodString;
11214
11300
  iconUrl: z.ZodNullable<z.ZodString>;
11301
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11215
11302
  owned: z.ZodBoolean;
11216
11303
  currentVersion: z.ZodOptional<z.ZodString>;
11217
11304
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -11395,6 +11482,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
11395
11482
  tagline: string;
11396
11483
  iconUrl: string | null;
11397
11484
  owned: boolean;
11485
+ website?: string | null | undefined;
11398
11486
  currentVersion?: string | undefined;
11399
11487
  downloads?: {
11400
11488
  path: string | null;
@@ -11447,6 +11535,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
11447
11535
  tagline: string;
11448
11536
  iconUrl: string | null;
11449
11537
  owned: boolean;
11538
+ website?: string | null | undefined;
11450
11539
  currentVersion?: string | undefined;
11451
11540
  downloads?: {
11452
11541
  path: string | null;
@@ -11671,6 +11760,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
11671
11760
  tagline: string;
11672
11761
  iconUrl: string | null;
11673
11762
  owned: boolean;
11763
+ website?: string | null | undefined;
11674
11764
  currentVersion?: string | undefined;
11675
11765
  downloads?: {
11676
11766
  path: string | null;
@@ -11771,6 +11861,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
11771
11861
  tagline: string;
11772
11862
  iconUrl: string | null;
11773
11863
  owned: boolean;
11864
+ website?: string | null | undefined;
11774
11865
  currentVersion?: string | undefined;
11775
11866
  downloads?: {
11776
11867
  path: string | null;
@@ -11868,6 +11959,7 @@ declare const storefrontSchema: z.ZodObject<{
11868
11959
  name: z.ZodString;
11869
11960
  tagline: z.ZodString;
11870
11961
  iconUrl: z.ZodNullable<z.ZodString>;
11962
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11871
11963
  owned: z.ZodBoolean;
11872
11964
  currentVersion: z.ZodOptional<z.ZodString>;
11873
11965
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -12051,6 +12143,7 @@ declare const storefrontSchema: z.ZodObject<{
12051
12143
  tagline: string;
12052
12144
  iconUrl: string | null;
12053
12145
  owned: boolean;
12146
+ website?: string | null | undefined;
12054
12147
  currentVersion?: string | undefined;
12055
12148
  downloads?: {
12056
12149
  path: string | null;
@@ -12103,6 +12196,7 @@ declare const storefrontSchema: z.ZodObject<{
12103
12196
  tagline: string;
12104
12197
  iconUrl: string | null;
12105
12198
  owned: boolean;
12199
+ website?: string | null | undefined;
12106
12200
  currentVersion?: string | undefined;
12107
12201
  downloads?: {
12108
12202
  path: string | null;
@@ -12163,6 +12257,7 @@ declare const storefrontSchema: z.ZodObject<{
12163
12257
  name: z.ZodString;
12164
12258
  tagline: z.ZodString;
12165
12259
  iconUrl: z.ZodNullable<z.ZodString>;
12260
+ website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12166
12261
  owned: z.ZodBoolean;
12167
12262
  currentVersion: z.ZodOptional<z.ZodString>;
12168
12263
  downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -12346,6 +12441,7 @@ declare const storefrontSchema: z.ZodObject<{
12346
12441
  tagline: string;
12347
12442
  iconUrl: string | null;
12348
12443
  owned: boolean;
12444
+ website?: string | null | undefined;
12349
12445
  currentVersion?: string | undefined;
12350
12446
  downloads?: {
12351
12447
  path: string | null;
@@ -12398,6 +12494,7 @@ declare const storefrontSchema: z.ZodObject<{
12398
12494
  tagline: string;
12399
12495
  iconUrl: string | null;
12400
12496
  owned: boolean;
12497
+ website?: string | null | undefined;
12401
12498
  currentVersion?: string | undefined;
12402
12499
  downloads?: {
12403
12500
  path: string | null;
@@ -12622,6 +12719,7 @@ declare const storefrontSchema: z.ZodObject<{
12622
12719
  tagline: string;
12623
12720
  iconUrl: string | null;
12624
12721
  owned: boolean;
12722
+ website?: string | null | undefined;
12625
12723
  currentVersion?: string | undefined;
12626
12724
  downloads?: {
12627
12725
  path: string | null;
@@ -12722,6 +12820,7 @@ declare const storefrontSchema: z.ZodObject<{
12722
12820
  tagline: string;
12723
12821
  iconUrl: string | null;
12724
12822
  owned: boolean;
12823
+ website?: string | null | undefined;
12725
12824
  currentVersion?: string | undefined;
12726
12825
  downloads?: {
12727
12826
  path: string | null;
@@ -12820,6 +12919,7 @@ declare const storefrontSchema: z.ZodObject<{
12820
12919
  tagline: string;
12821
12920
  iconUrl: string | null;
12822
12921
  owned: boolean;
12922
+ website?: string | null | undefined;
12823
12923
  currentVersion?: string | undefined;
12824
12924
  downloads?: {
12825
12925
  path: string | null;
@@ -12883,6 +12983,7 @@ declare const storefrontSchema: z.ZodObject<{
12883
12983
  tagline: string;
12884
12984
  iconUrl: string | null;
12885
12985
  owned: boolean;
12986
+ website?: string | null | undefined;
12886
12987
  currentVersion?: string | undefined;
12887
12988
  downloads?: {
12888
12989
  path: string | null;
@@ -12978,6 +13079,7 @@ declare const storefrontSchema: z.ZodObject<{
12978
13079
  tagline: string;
12979
13080
  iconUrl: string | null;
12980
13081
  owned: boolean;
13082
+ website?: string | null | undefined;
12981
13083
  currentVersion?: string | undefined;
12982
13084
  downloads?: {
12983
13085
  path: string | null;
@@ -13040,6 +13142,7 @@ declare const storefrontSchema: z.ZodObject<{
13040
13142
  tagline: string;
13041
13143
  iconUrl: string | null;
13042
13144
  owned: boolean;
13145
+ website?: string | null | undefined;
13043
13146
  currentVersion?: string | undefined;
13044
13147
  downloads?: {
13045
13148
  path: string | null;
@@ -13149,7 +13252,8 @@ declare class MoonbaseError extends Error {
13149
13252
  readonly title: string;
13150
13253
  readonly detail: string | undefined;
13151
13254
  readonly status: number;
13152
- constructor(title: string, detail: string | undefined, status: number);
13255
+ readonly errors: Record<string, string> | undefined;
13256
+ constructor(title: string, detail: string | undefined, status: number, errors: Record<string, string> | undefined);
13153
13257
  }
13154
13258
 
13155
13259
  interface MoonbaseConfiguration {