@moonbase.sh/storefront-api 0.1.82 → 0.1.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +957 -1
- package/dist/index.d.ts +957 -1
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -580,6 +580,26 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
580
580
|
tagline: z.ZodString;
|
|
581
581
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
582
582
|
owned: z.ZodBoolean;
|
|
583
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
584
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
585
|
+
name: z.ZodString;
|
|
586
|
+
key: z.ZodString;
|
|
587
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
588
|
+
size: z.ZodNumber;
|
|
589
|
+
path: z.ZodNullable<z.ZodString>;
|
|
590
|
+
}, "strip", z.ZodTypeAny, {
|
|
591
|
+
path: string | null;
|
|
592
|
+
name: string;
|
|
593
|
+
key: string;
|
|
594
|
+
platform: Platform;
|
|
595
|
+
size: number;
|
|
596
|
+
}, {
|
|
597
|
+
path: string | null;
|
|
598
|
+
name: string;
|
|
599
|
+
key: string;
|
|
600
|
+
platform: Platform;
|
|
601
|
+
size: number;
|
|
602
|
+
}>, "many">>;
|
|
583
603
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
584
604
|
id: z.ZodString;
|
|
585
605
|
name: z.ZodString;
|
|
@@ -742,6 +762,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
742
762
|
tagline: string;
|
|
743
763
|
iconUrl: string | null;
|
|
744
764
|
owned: boolean;
|
|
765
|
+
currentVersion?: string | undefined;
|
|
766
|
+
downloads?: {
|
|
767
|
+
path: string | null;
|
|
768
|
+
name: string;
|
|
769
|
+
key: string;
|
|
770
|
+
platform: Platform;
|
|
771
|
+
size: number;
|
|
772
|
+
}[] | undefined;
|
|
745
773
|
defaultVariation?: {
|
|
746
774
|
id: string;
|
|
747
775
|
name: string;
|
|
@@ -786,6 +814,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
786
814
|
tagline: string;
|
|
787
815
|
iconUrl: string | null;
|
|
788
816
|
owned: boolean;
|
|
817
|
+
currentVersion?: string | undefined;
|
|
818
|
+
downloads?: {
|
|
819
|
+
path: string | null;
|
|
820
|
+
name: string;
|
|
821
|
+
key: string;
|
|
822
|
+
platform: Platform;
|
|
823
|
+
size: number;
|
|
824
|
+
}[] | undefined;
|
|
789
825
|
defaultVariation?: {
|
|
790
826
|
id: string;
|
|
791
827
|
name: string;
|
|
@@ -899,6 +935,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
899
935
|
tagline: string;
|
|
900
936
|
iconUrl: string | null;
|
|
901
937
|
owned: boolean;
|
|
938
|
+
currentVersion?: string | undefined;
|
|
939
|
+
downloads?: {
|
|
940
|
+
path: string | null;
|
|
941
|
+
name: string;
|
|
942
|
+
key: string;
|
|
943
|
+
platform: Platform;
|
|
944
|
+
size: number;
|
|
945
|
+
}[] | undefined;
|
|
902
946
|
defaultVariation?: {
|
|
903
947
|
id: string;
|
|
904
948
|
name: string;
|
|
@@ -984,6 +1028,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
984
1028
|
tagline: string;
|
|
985
1029
|
iconUrl: string | null;
|
|
986
1030
|
owned: boolean;
|
|
1031
|
+
currentVersion?: string | undefined;
|
|
1032
|
+
downloads?: {
|
|
1033
|
+
path: string | null;
|
|
1034
|
+
name: string;
|
|
1035
|
+
key: string;
|
|
1036
|
+
platform: Platform;
|
|
1037
|
+
size: number;
|
|
1038
|
+
}[] | undefined;
|
|
987
1039
|
defaultVariation?: {
|
|
988
1040
|
id: string;
|
|
989
1041
|
name: string;
|
|
@@ -1136,6 +1188,26 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1136
1188
|
tagline: z.ZodString;
|
|
1137
1189
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
1138
1190
|
owned: z.ZodBoolean;
|
|
1191
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
1192
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1193
|
+
name: z.ZodString;
|
|
1194
|
+
key: z.ZodString;
|
|
1195
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
1196
|
+
size: z.ZodNumber;
|
|
1197
|
+
path: z.ZodNullable<z.ZodString>;
|
|
1198
|
+
}, "strip", z.ZodTypeAny, {
|
|
1199
|
+
path: string | null;
|
|
1200
|
+
name: string;
|
|
1201
|
+
key: string;
|
|
1202
|
+
platform: Platform;
|
|
1203
|
+
size: number;
|
|
1204
|
+
}, {
|
|
1205
|
+
path: string | null;
|
|
1206
|
+
name: string;
|
|
1207
|
+
key: string;
|
|
1208
|
+
platform: Platform;
|
|
1209
|
+
size: number;
|
|
1210
|
+
}>, "many">>;
|
|
1139
1211
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
1140
1212
|
id: z.ZodString;
|
|
1141
1213
|
name: z.ZodString;
|
|
@@ -1298,6 +1370,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1298
1370
|
tagline: string;
|
|
1299
1371
|
iconUrl: string | null;
|
|
1300
1372
|
owned: boolean;
|
|
1373
|
+
currentVersion?: string | undefined;
|
|
1374
|
+
downloads?: {
|
|
1375
|
+
path: string | null;
|
|
1376
|
+
name: string;
|
|
1377
|
+
key: string;
|
|
1378
|
+
platform: Platform;
|
|
1379
|
+
size: number;
|
|
1380
|
+
}[] | undefined;
|
|
1301
1381
|
defaultVariation?: {
|
|
1302
1382
|
id: string;
|
|
1303
1383
|
name: string;
|
|
@@ -1342,6 +1422,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1342
1422
|
tagline: string;
|
|
1343
1423
|
iconUrl: string | null;
|
|
1344
1424
|
owned: boolean;
|
|
1425
|
+
currentVersion?: string | undefined;
|
|
1426
|
+
downloads?: {
|
|
1427
|
+
path: string | null;
|
|
1428
|
+
name: string;
|
|
1429
|
+
key: string;
|
|
1430
|
+
platform: Platform;
|
|
1431
|
+
size: number;
|
|
1432
|
+
}[] | undefined;
|
|
1345
1433
|
defaultVariation?: {
|
|
1346
1434
|
id: string;
|
|
1347
1435
|
name: string;
|
|
@@ -1558,6 +1646,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1558
1646
|
tagline: string;
|
|
1559
1647
|
iconUrl: string | null;
|
|
1560
1648
|
owned: boolean;
|
|
1649
|
+
currentVersion?: string | undefined;
|
|
1650
|
+
downloads?: {
|
|
1651
|
+
path: string | null;
|
|
1652
|
+
name: string;
|
|
1653
|
+
key: string;
|
|
1654
|
+
platform: Platform;
|
|
1655
|
+
size: number;
|
|
1656
|
+
}[] | undefined;
|
|
1561
1657
|
defaultVariation?: {
|
|
1562
1658
|
id: string;
|
|
1563
1659
|
name: string;
|
|
@@ -1650,6 +1746,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1650
1746
|
tagline: string;
|
|
1651
1747
|
iconUrl: string | null;
|
|
1652
1748
|
owned: boolean;
|
|
1749
|
+
currentVersion?: string | undefined;
|
|
1750
|
+
downloads?: {
|
|
1751
|
+
path: string | null;
|
|
1752
|
+
name: string;
|
|
1753
|
+
key: string;
|
|
1754
|
+
platform: Platform;
|
|
1755
|
+
size: number;
|
|
1756
|
+
}[] | undefined;
|
|
1653
1757
|
defaultVariation?: {
|
|
1654
1758
|
id: string;
|
|
1655
1759
|
name: string;
|
|
@@ -1813,6 +1917,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1813
1917
|
tagline: string;
|
|
1814
1918
|
iconUrl: string | null;
|
|
1815
1919
|
owned: boolean;
|
|
1920
|
+
currentVersion?: string | undefined;
|
|
1921
|
+
downloads?: {
|
|
1922
|
+
path: string | null;
|
|
1923
|
+
name: string;
|
|
1924
|
+
key: string;
|
|
1925
|
+
platform: Platform;
|
|
1926
|
+
size: number;
|
|
1927
|
+
}[] | undefined;
|
|
1816
1928
|
defaultVariation?: {
|
|
1817
1929
|
id: string;
|
|
1818
1930
|
name: string;
|
|
@@ -1946,6 +2058,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1946
2058
|
tagline: string;
|
|
1947
2059
|
iconUrl: string | null;
|
|
1948
2060
|
owned: boolean;
|
|
2061
|
+
currentVersion?: string | undefined;
|
|
2062
|
+
downloads?: {
|
|
2063
|
+
path: string | null;
|
|
2064
|
+
name: string;
|
|
2065
|
+
key: string;
|
|
2066
|
+
platform: Platform;
|
|
2067
|
+
size: number;
|
|
2068
|
+
}[] | undefined;
|
|
1949
2069
|
defaultVariation?: {
|
|
1950
2070
|
id: string;
|
|
1951
2071
|
name: string;
|
|
@@ -2133,6 +2253,26 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2133
2253
|
tagline: z.ZodString;
|
|
2134
2254
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
2135
2255
|
owned: z.ZodBoolean;
|
|
2256
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
2257
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2258
|
+
name: z.ZodString;
|
|
2259
|
+
key: z.ZodString;
|
|
2260
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
2261
|
+
size: z.ZodNumber;
|
|
2262
|
+
path: z.ZodNullable<z.ZodString>;
|
|
2263
|
+
}, "strip", z.ZodTypeAny, {
|
|
2264
|
+
path: string | null;
|
|
2265
|
+
name: string;
|
|
2266
|
+
key: string;
|
|
2267
|
+
platform: Platform;
|
|
2268
|
+
size: number;
|
|
2269
|
+
}, {
|
|
2270
|
+
path: string | null;
|
|
2271
|
+
name: string;
|
|
2272
|
+
key: string;
|
|
2273
|
+
platform: Platform;
|
|
2274
|
+
size: number;
|
|
2275
|
+
}>, "many">>;
|
|
2136
2276
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
2137
2277
|
id: z.ZodString;
|
|
2138
2278
|
name: z.ZodString;
|
|
@@ -2295,6 +2435,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2295
2435
|
tagline: string;
|
|
2296
2436
|
iconUrl: string | null;
|
|
2297
2437
|
owned: boolean;
|
|
2438
|
+
currentVersion?: string | undefined;
|
|
2439
|
+
downloads?: {
|
|
2440
|
+
path: string | null;
|
|
2441
|
+
name: string;
|
|
2442
|
+
key: string;
|
|
2443
|
+
platform: Platform;
|
|
2444
|
+
size: number;
|
|
2445
|
+
}[] | undefined;
|
|
2298
2446
|
defaultVariation?: {
|
|
2299
2447
|
id: string;
|
|
2300
2448
|
name: string;
|
|
@@ -2339,6 +2487,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2339
2487
|
tagline: string;
|
|
2340
2488
|
iconUrl: string | null;
|
|
2341
2489
|
owned: boolean;
|
|
2490
|
+
currentVersion?: string | undefined;
|
|
2491
|
+
downloads?: {
|
|
2492
|
+
path: string | null;
|
|
2493
|
+
name: string;
|
|
2494
|
+
key: string;
|
|
2495
|
+
platform: Platform;
|
|
2496
|
+
size: number;
|
|
2497
|
+
}[] | undefined;
|
|
2342
2498
|
defaultVariation?: {
|
|
2343
2499
|
id: string;
|
|
2344
2500
|
name: string;
|
|
@@ -2452,6 +2608,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2452
2608
|
tagline: string;
|
|
2453
2609
|
iconUrl: string | null;
|
|
2454
2610
|
owned: boolean;
|
|
2611
|
+
currentVersion?: string | undefined;
|
|
2612
|
+
downloads?: {
|
|
2613
|
+
path: string | null;
|
|
2614
|
+
name: string;
|
|
2615
|
+
key: string;
|
|
2616
|
+
platform: Platform;
|
|
2617
|
+
size: number;
|
|
2618
|
+
}[] | undefined;
|
|
2455
2619
|
defaultVariation?: {
|
|
2456
2620
|
id: string;
|
|
2457
2621
|
name: string;
|
|
@@ -2537,6 +2701,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2537
2701
|
tagline: string;
|
|
2538
2702
|
iconUrl: string | null;
|
|
2539
2703
|
owned: boolean;
|
|
2704
|
+
currentVersion?: string | undefined;
|
|
2705
|
+
downloads?: {
|
|
2706
|
+
path: string | null;
|
|
2707
|
+
name: string;
|
|
2708
|
+
key: string;
|
|
2709
|
+
platform: Platform;
|
|
2710
|
+
size: number;
|
|
2711
|
+
}[] | undefined;
|
|
2540
2712
|
defaultVariation?: {
|
|
2541
2713
|
id: string;
|
|
2542
2714
|
name: string;
|
|
@@ -2688,6 +2860,26 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2688
2860
|
tagline: z.ZodString;
|
|
2689
2861
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
2690
2862
|
owned: z.ZodBoolean;
|
|
2863
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
2864
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2865
|
+
name: z.ZodString;
|
|
2866
|
+
key: z.ZodString;
|
|
2867
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
2868
|
+
size: z.ZodNumber;
|
|
2869
|
+
path: z.ZodNullable<z.ZodString>;
|
|
2870
|
+
}, "strip", z.ZodTypeAny, {
|
|
2871
|
+
path: string | null;
|
|
2872
|
+
name: string;
|
|
2873
|
+
key: string;
|
|
2874
|
+
platform: Platform;
|
|
2875
|
+
size: number;
|
|
2876
|
+
}, {
|
|
2877
|
+
path: string | null;
|
|
2878
|
+
name: string;
|
|
2879
|
+
key: string;
|
|
2880
|
+
platform: Platform;
|
|
2881
|
+
size: number;
|
|
2882
|
+
}>, "many">>;
|
|
2691
2883
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
2692
2884
|
id: z.ZodString;
|
|
2693
2885
|
name: z.ZodString;
|
|
@@ -2850,6 +3042,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2850
3042
|
tagline: string;
|
|
2851
3043
|
iconUrl: string | null;
|
|
2852
3044
|
owned: boolean;
|
|
3045
|
+
currentVersion?: string | undefined;
|
|
3046
|
+
downloads?: {
|
|
3047
|
+
path: string | null;
|
|
3048
|
+
name: string;
|
|
3049
|
+
key: string;
|
|
3050
|
+
platform: Platform;
|
|
3051
|
+
size: number;
|
|
3052
|
+
}[] | undefined;
|
|
2853
3053
|
defaultVariation?: {
|
|
2854
3054
|
id: string;
|
|
2855
3055
|
name: string;
|
|
@@ -2894,6 +3094,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2894
3094
|
tagline: string;
|
|
2895
3095
|
iconUrl: string | null;
|
|
2896
3096
|
owned: boolean;
|
|
3097
|
+
currentVersion?: string | undefined;
|
|
3098
|
+
downloads?: {
|
|
3099
|
+
path: string | null;
|
|
3100
|
+
name: string;
|
|
3101
|
+
key: string;
|
|
3102
|
+
platform: Platform;
|
|
3103
|
+
size: number;
|
|
3104
|
+
}[] | undefined;
|
|
2897
3105
|
defaultVariation?: {
|
|
2898
3106
|
id: string;
|
|
2899
3107
|
name: string;
|
|
@@ -3110,6 +3318,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3110
3318
|
tagline: string;
|
|
3111
3319
|
iconUrl: string | null;
|
|
3112
3320
|
owned: boolean;
|
|
3321
|
+
currentVersion?: string | undefined;
|
|
3322
|
+
downloads?: {
|
|
3323
|
+
path: string | null;
|
|
3324
|
+
name: string;
|
|
3325
|
+
key: string;
|
|
3326
|
+
platform: Platform;
|
|
3327
|
+
size: number;
|
|
3328
|
+
}[] | undefined;
|
|
3113
3329
|
defaultVariation?: {
|
|
3114
3330
|
id: string;
|
|
3115
3331
|
name: string;
|
|
@@ -3202,6 +3418,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3202
3418
|
tagline: string;
|
|
3203
3419
|
iconUrl: string | null;
|
|
3204
3420
|
owned: boolean;
|
|
3421
|
+
currentVersion?: string | undefined;
|
|
3422
|
+
downloads?: {
|
|
3423
|
+
path: string | null;
|
|
3424
|
+
name: string;
|
|
3425
|
+
key: string;
|
|
3426
|
+
platform: Platform;
|
|
3427
|
+
size: number;
|
|
3428
|
+
}[] | undefined;
|
|
3205
3429
|
defaultVariation?: {
|
|
3206
3430
|
id: string;
|
|
3207
3431
|
name: string;
|
|
@@ -3365,6 +3589,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3365
3589
|
tagline: string;
|
|
3366
3590
|
iconUrl: string | null;
|
|
3367
3591
|
owned: boolean;
|
|
3592
|
+
currentVersion?: string | undefined;
|
|
3593
|
+
downloads?: {
|
|
3594
|
+
path: string | null;
|
|
3595
|
+
name: string;
|
|
3596
|
+
key: string;
|
|
3597
|
+
platform: Platform;
|
|
3598
|
+
size: number;
|
|
3599
|
+
}[] | undefined;
|
|
3368
3600
|
defaultVariation?: {
|
|
3369
3601
|
id: string;
|
|
3370
3602
|
name: string;
|
|
@@ -3498,6 +3730,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3498
3730
|
tagline: string;
|
|
3499
3731
|
iconUrl: string | null;
|
|
3500
3732
|
owned: boolean;
|
|
3733
|
+
currentVersion?: string | undefined;
|
|
3734
|
+
downloads?: {
|
|
3735
|
+
path: string | null;
|
|
3736
|
+
name: string;
|
|
3737
|
+
key: string;
|
|
3738
|
+
platform: Platform;
|
|
3739
|
+
size: number;
|
|
3740
|
+
}[] | undefined;
|
|
3501
3741
|
defaultVariation?: {
|
|
3502
3742
|
id: string;
|
|
3503
3743
|
name: string;
|
|
@@ -3689,6 +3929,26 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
3689
3929
|
tagline: z.ZodString;
|
|
3690
3930
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
3691
3931
|
owned: z.ZodBoolean;
|
|
3932
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
3933
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3934
|
+
name: z.ZodString;
|
|
3935
|
+
key: z.ZodString;
|
|
3936
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
3937
|
+
size: z.ZodNumber;
|
|
3938
|
+
path: z.ZodNullable<z.ZodString>;
|
|
3939
|
+
}, "strip", z.ZodTypeAny, {
|
|
3940
|
+
path: string | null;
|
|
3941
|
+
name: string;
|
|
3942
|
+
key: string;
|
|
3943
|
+
platform: Platform;
|
|
3944
|
+
size: number;
|
|
3945
|
+
}, {
|
|
3946
|
+
path: string | null;
|
|
3947
|
+
name: string;
|
|
3948
|
+
key: string;
|
|
3949
|
+
platform: Platform;
|
|
3950
|
+
size: number;
|
|
3951
|
+
}>, "many">>;
|
|
3692
3952
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
3693
3953
|
id: z.ZodString;
|
|
3694
3954
|
name: z.ZodString;
|
|
@@ -3851,6 +4111,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
3851
4111
|
tagline: string;
|
|
3852
4112
|
iconUrl: string | null;
|
|
3853
4113
|
owned: boolean;
|
|
4114
|
+
currentVersion?: string | undefined;
|
|
4115
|
+
downloads?: {
|
|
4116
|
+
path: string | null;
|
|
4117
|
+
name: string;
|
|
4118
|
+
key: string;
|
|
4119
|
+
platform: Platform;
|
|
4120
|
+
size: number;
|
|
4121
|
+
}[] | undefined;
|
|
3854
4122
|
defaultVariation?: {
|
|
3855
4123
|
id: string;
|
|
3856
4124
|
name: string;
|
|
@@ -3895,6 +4163,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
3895
4163
|
tagline: string;
|
|
3896
4164
|
iconUrl: string | null;
|
|
3897
4165
|
owned: boolean;
|
|
4166
|
+
currentVersion?: string | undefined;
|
|
4167
|
+
downloads?: {
|
|
4168
|
+
path: string | null;
|
|
4169
|
+
name: string;
|
|
4170
|
+
key: string;
|
|
4171
|
+
platform: Platform;
|
|
4172
|
+
size: number;
|
|
4173
|
+
}[] | undefined;
|
|
3898
4174
|
defaultVariation?: {
|
|
3899
4175
|
id: string;
|
|
3900
4176
|
name: string;
|
|
@@ -4008,6 +4284,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4008
4284
|
tagline: string;
|
|
4009
4285
|
iconUrl: string | null;
|
|
4010
4286
|
owned: boolean;
|
|
4287
|
+
currentVersion?: string | undefined;
|
|
4288
|
+
downloads?: {
|
|
4289
|
+
path: string | null;
|
|
4290
|
+
name: string;
|
|
4291
|
+
key: string;
|
|
4292
|
+
platform: Platform;
|
|
4293
|
+
size: number;
|
|
4294
|
+
}[] | undefined;
|
|
4011
4295
|
defaultVariation?: {
|
|
4012
4296
|
id: string;
|
|
4013
4297
|
name: string;
|
|
@@ -4093,6 +4377,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4093
4377
|
tagline: string;
|
|
4094
4378
|
iconUrl: string | null;
|
|
4095
4379
|
owned: boolean;
|
|
4380
|
+
currentVersion?: string | undefined;
|
|
4381
|
+
downloads?: {
|
|
4382
|
+
path: string | null;
|
|
4383
|
+
name: string;
|
|
4384
|
+
key: string;
|
|
4385
|
+
platform: Platform;
|
|
4386
|
+
size: number;
|
|
4387
|
+
}[] | undefined;
|
|
4096
4388
|
defaultVariation?: {
|
|
4097
4389
|
id: string;
|
|
4098
4390
|
name: string;
|
|
@@ -4244,6 +4536,26 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4244
4536
|
tagline: z.ZodString;
|
|
4245
4537
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
4246
4538
|
owned: z.ZodBoolean;
|
|
4539
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
4540
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4541
|
+
name: z.ZodString;
|
|
4542
|
+
key: z.ZodString;
|
|
4543
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
4544
|
+
size: z.ZodNumber;
|
|
4545
|
+
path: z.ZodNullable<z.ZodString>;
|
|
4546
|
+
}, "strip", z.ZodTypeAny, {
|
|
4547
|
+
path: string | null;
|
|
4548
|
+
name: string;
|
|
4549
|
+
key: string;
|
|
4550
|
+
platform: Platform;
|
|
4551
|
+
size: number;
|
|
4552
|
+
}, {
|
|
4553
|
+
path: string | null;
|
|
4554
|
+
name: string;
|
|
4555
|
+
key: string;
|
|
4556
|
+
platform: Platform;
|
|
4557
|
+
size: number;
|
|
4558
|
+
}>, "many">>;
|
|
4247
4559
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
4248
4560
|
id: z.ZodString;
|
|
4249
4561
|
name: z.ZodString;
|
|
@@ -4406,6 +4718,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4406
4718
|
tagline: string;
|
|
4407
4719
|
iconUrl: string | null;
|
|
4408
4720
|
owned: boolean;
|
|
4721
|
+
currentVersion?: string | undefined;
|
|
4722
|
+
downloads?: {
|
|
4723
|
+
path: string | null;
|
|
4724
|
+
name: string;
|
|
4725
|
+
key: string;
|
|
4726
|
+
platform: Platform;
|
|
4727
|
+
size: number;
|
|
4728
|
+
}[] | undefined;
|
|
4409
4729
|
defaultVariation?: {
|
|
4410
4730
|
id: string;
|
|
4411
4731
|
name: string;
|
|
@@ -4450,6 +4770,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4450
4770
|
tagline: string;
|
|
4451
4771
|
iconUrl: string | null;
|
|
4452
4772
|
owned: boolean;
|
|
4773
|
+
currentVersion?: string | undefined;
|
|
4774
|
+
downloads?: {
|
|
4775
|
+
path: string | null;
|
|
4776
|
+
name: string;
|
|
4777
|
+
key: string;
|
|
4778
|
+
platform: Platform;
|
|
4779
|
+
size: number;
|
|
4780
|
+
}[] | undefined;
|
|
4453
4781
|
defaultVariation?: {
|
|
4454
4782
|
id: string;
|
|
4455
4783
|
name: string;
|
|
@@ -4666,6 +4994,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4666
4994
|
tagline: string;
|
|
4667
4995
|
iconUrl: string | null;
|
|
4668
4996
|
owned: boolean;
|
|
4997
|
+
currentVersion?: string | undefined;
|
|
4998
|
+
downloads?: {
|
|
4999
|
+
path: string | null;
|
|
5000
|
+
name: string;
|
|
5001
|
+
key: string;
|
|
5002
|
+
platform: Platform;
|
|
5003
|
+
size: number;
|
|
5004
|
+
}[] | undefined;
|
|
4669
5005
|
defaultVariation?: {
|
|
4670
5006
|
id: string;
|
|
4671
5007
|
name: string;
|
|
@@ -4758,6 +5094,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4758
5094
|
tagline: string;
|
|
4759
5095
|
iconUrl: string | null;
|
|
4760
5096
|
owned: boolean;
|
|
5097
|
+
currentVersion?: string | undefined;
|
|
5098
|
+
downloads?: {
|
|
5099
|
+
path: string | null;
|
|
5100
|
+
name: string;
|
|
5101
|
+
key: string;
|
|
5102
|
+
platform: Platform;
|
|
5103
|
+
size: number;
|
|
5104
|
+
}[] | undefined;
|
|
4761
5105
|
defaultVariation?: {
|
|
4762
5106
|
id: string;
|
|
4763
5107
|
name: string;
|
|
@@ -4921,6 +5265,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4921
5265
|
tagline: string;
|
|
4922
5266
|
iconUrl: string | null;
|
|
4923
5267
|
owned: boolean;
|
|
5268
|
+
currentVersion?: string | undefined;
|
|
5269
|
+
downloads?: {
|
|
5270
|
+
path: string | null;
|
|
5271
|
+
name: string;
|
|
5272
|
+
key: string;
|
|
5273
|
+
platform: Platform;
|
|
5274
|
+
size: number;
|
|
5275
|
+
}[] | undefined;
|
|
4924
5276
|
defaultVariation?: {
|
|
4925
5277
|
id: string;
|
|
4926
5278
|
name: string;
|
|
@@ -5054,6 +5406,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5054
5406
|
tagline: string;
|
|
5055
5407
|
iconUrl: string | null;
|
|
5056
5408
|
owned: boolean;
|
|
5409
|
+
currentVersion?: string | undefined;
|
|
5410
|
+
downloads?: {
|
|
5411
|
+
path: string | null;
|
|
5412
|
+
name: string;
|
|
5413
|
+
key: string;
|
|
5414
|
+
platform: Platform;
|
|
5415
|
+
size: number;
|
|
5416
|
+
}[] | undefined;
|
|
5057
5417
|
defaultVariation?: {
|
|
5058
5418
|
id: string;
|
|
5059
5419
|
name: string;
|
|
@@ -5201,6 +5561,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5201
5561
|
tagline: string;
|
|
5202
5562
|
iconUrl: string | null;
|
|
5203
5563
|
owned: boolean;
|
|
5564
|
+
currentVersion?: string | undefined;
|
|
5565
|
+
downloads?: {
|
|
5566
|
+
path: string | null;
|
|
5567
|
+
name: string;
|
|
5568
|
+
key: string;
|
|
5569
|
+
platform: Platform;
|
|
5570
|
+
size: number;
|
|
5571
|
+
}[] | undefined;
|
|
5204
5572
|
defaultVariation?: {
|
|
5205
5573
|
id: string;
|
|
5206
5574
|
name: string;
|
|
@@ -5295,6 +5663,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5295
5663
|
tagline: string;
|
|
5296
5664
|
iconUrl: string | null;
|
|
5297
5665
|
owned: boolean;
|
|
5666
|
+
currentVersion?: string | undefined;
|
|
5667
|
+
downloads?: {
|
|
5668
|
+
path: string | null;
|
|
5669
|
+
name: string;
|
|
5670
|
+
key: string;
|
|
5671
|
+
platform: Platform;
|
|
5672
|
+
size: number;
|
|
5673
|
+
}[] | undefined;
|
|
5298
5674
|
defaultVariation?: {
|
|
5299
5675
|
id: string;
|
|
5300
5676
|
name: string;
|
|
@@ -5432,6 +5808,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5432
5808
|
tagline: string;
|
|
5433
5809
|
iconUrl: string | null;
|
|
5434
5810
|
owned: boolean;
|
|
5811
|
+
currentVersion?: string | undefined;
|
|
5812
|
+
downloads?: {
|
|
5813
|
+
path: string | null;
|
|
5814
|
+
name: string;
|
|
5815
|
+
key: string;
|
|
5816
|
+
platform: Platform;
|
|
5817
|
+
size: number;
|
|
5818
|
+
}[] | undefined;
|
|
5435
5819
|
defaultVariation?: {
|
|
5436
5820
|
id: string;
|
|
5437
5821
|
name: string;
|
|
@@ -5525,6 +5909,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5525
5909
|
tagline: string;
|
|
5526
5910
|
iconUrl: string | null;
|
|
5527
5911
|
owned: boolean;
|
|
5912
|
+
currentVersion?: string | undefined;
|
|
5913
|
+
downloads?: {
|
|
5914
|
+
path: string | null;
|
|
5915
|
+
name: string;
|
|
5916
|
+
key: string;
|
|
5917
|
+
platform: Platform;
|
|
5918
|
+
size: number;
|
|
5919
|
+
}[] | undefined;
|
|
5528
5920
|
defaultVariation?: {
|
|
5529
5921
|
id: string;
|
|
5530
5922
|
name: string;
|
|
@@ -5724,6 +6116,26 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
5724
6116
|
tagline: z.ZodString;
|
|
5725
6117
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
5726
6118
|
owned: z.ZodBoolean;
|
|
6119
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
6120
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6121
|
+
name: z.ZodString;
|
|
6122
|
+
key: z.ZodString;
|
|
6123
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
6124
|
+
size: z.ZodNumber;
|
|
6125
|
+
path: z.ZodNullable<z.ZodString>;
|
|
6126
|
+
}, "strip", z.ZodTypeAny, {
|
|
6127
|
+
path: string | null;
|
|
6128
|
+
name: string;
|
|
6129
|
+
key: string;
|
|
6130
|
+
platform: Platform;
|
|
6131
|
+
size: number;
|
|
6132
|
+
}, {
|
|
6133
|
+
path: string | null;
|
|
6134
|
+
name: string;
|
|
6135
|
+
key: string;
|
|
6136
|
+
platform: Platform;
|
|
6137
|
+
size: number;
|
|
6138
|
+
}>, "many">>;
|
|
5727
6139
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
5728
6140
|
id: z.ZodString;
|
|
5729
6141
|
name: z.ZodString;
|
|
@@ -5886,6 +6298,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
5886
6298
|
tagline: string;
|
|
5887
6299
|
iconUrl: string | null;
|
|
5888
6300
|
owned: boolean;
|
|
6301
|
+
currentVersion?: string | undefined;
|
|
6302
|
+
downloads?: {
|
|
6303
|
+
path: string | null;
|
|
6304
|
+
name: string;
|
|
6305
|
+
key: string;
|
|
6306
|
+
platform: Platform;
|
|
6307
|
+
size: number;
|
|
6308
|
+
}[] | undefined;
|
|
5889
6309
|
defaultVariation?: {
|
|
5890
6310
|
id: string;
|
|
5891
6311
|
name: string;
|
|
@@ -5930,6 +6350,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
5930
6350
|
tagline: string;
|
|
5931
6351
|
iconUrl: string | null;
|
|
5932
6352
|
owned: boolean;
|
|
6353
|
+
currentVersion?: string | undefined;
|
|
6354
|
+
downloads?: {
|
|
6355
|
+
path: string | null;
|
|
6356
|
+
name: string;
|
|
6357
|
+
key: string;
|
|
6358
|
+
platform: Platform;
|
|
6359
|
+
size: number;
|
|
6360
|
+
}[] | undefined;
|
|
5933
6361
|
defaultVariation?: {
|
|
5934
6362
|
id: string;
|
|
5935
6363
|
name: string;
|
|
@@ -6043,6 +6471,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6043
6471
|
tagline: string;
|
|
6044
6472
|
iconUrl: string | null;
|
|
6045
6473
|
owned: boolean;
|
|
6474
|
+
currentVersion?: string | undefined;
|
|
6475
|
+
downloads?: {
|
|
6476
|
+
path: string | null;
|
|
6477
|
+
name: string;
|
|
6478
|
+
key: string;
|
|
6479
|
+
platform: Platform;
|
|
6480
|
+
size: number;
|
|
6481
|
+
}[] | undefined;
|
|
6046
6482
|
defaultVariation?: {
|
|
6047
6483
|
id: string;
|
|
6048
6484
|
name: string;
|
|
@@ -6128,6 +6564,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6128
6564
|
tagline: string;
|
|
6129
6565
|
iconUrl: string | null;
|
|
6130
6566
|
owned: boolean;
|
|
6567
|
+
currentVersion?: string | undefined;
|
|
6568
|
+
downloads?: {
|
|
6569
|
+
path: string | null;
|
|
6570
|
+
name: string;
|
|
6571
|
+
key: string;
|
|
6572
|
+
platform: Platform;
|
|
6573
|
+
size: number;
|
|
6574
|
+
}[] | undefined;
|
|
6131
6575
|
defaultVariation?: {
|
|
6132
6576
|
id: string;
|
|
6133
6577
|
name: string;
|
|
@@ -6279,6 +6723,26 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6279
6723
|
tagline: z.ZodString;
|
|
6280
6724
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
6281
6725
|
owned: z.ZodBoolean;
|
|
6726
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
6727
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6728
|
+
name: z.ZodString;
|
|
6729
|
+
key: z.ZodString;
|
|
6730
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
6731
|
+
size: z.ZodNumber;
|
|
6732
|
+
path: z.ZodNullable<z.ZodString>;
|
|
6733
|
+
}, "strip", z.ZodTypeAny, {
|
|
6734
|
+
path: string | null;
|
|
6735
|
+
name: string;
|
|
6736
|
+
key: string;
|
|
6737
|
+
platform: Platform;
|
|
6738
|
+
size: number;
|
|
6739
|
+
}, {
|
|
6740
|
+
path: string | null;
|
|
6741
|
+
name: string;
|
|
6742
|
+
key: string;
|
|
6743
|
+
platform: Platform;
|
|
6744
|
+
size: number;
|
|
6745
|
+
}>, "many">>;
|
|
6282
6746
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
6283
6747
|
id: z.ZodString;
|
|
6284
6748
|
name: z.ZodString;
|
|
@@ -6441,6 +6905,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6441
6905
|
tagline: string;
|
|
6442
6906
|
iconUrl: string | null;
|
|
6443
6907
|
owned: boolean;
|
|
6908
|
+
currentVersion?: string | undefined;
|
|
6909
|
+
downloads?: {
|
|
6910
|
+
path: string | null;
|
|
6911
|
+
name: string;
|
|
6912
|
+
key: string;
|
|
6913
|
+
platform: Platform;
|
|
6914
|
+
size: number;
|
|
6915
|
+
}[] | undefined;
|
|
6444
6916
|
defaultVariation?: {
|
|
6445
6917
|
id: string;
|
|
6446
6918
|
name: string;
|
|
@@ -6485,6 +6957,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6485
6957
|
tagline: string;
|
|
6486
6958
|
iconUrl: string | null;
|
|
6487
6959
|
owned: boolean;
|
|
6960
|
+
currentVersion?: string | undefined;
|
|
6961
|
+
downloads?: {
|
|
6962
|
+
path: string | null;
|
|
6963
|
+
name: string;
|
|
6964
|
+
key: string;
|
|
6965
|
+
platform: Platform;
|
|
6966
|
+
size: number;
|
|
6967
|
+
}[] | undefined;
|
|
6488
6968
|
defaultVariation?: {
|
|
6489
6969
|
id: string;
|
|
6490
6970
|
name: string;
|
|
@@ -6701,6 +7181,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6701
7181
|
tagline: string;
|
|
6702
7182
|
iconUrl: string | null;
|
|
6703
7183
|
owned: boolean;
|
|
7184
|
+
currentVersion?: string | undefined;
|
|
7185
|
+
downloads?: {
|
|
7186
|
+
path: string | null;
|
|
7187
|
+
name: string;
|
|
7188
|
+
key: string;
|
|
7189
|
+
platform: Platform;
|
|
7190
|
+
size: number;
|
|
7191
|
+
}[] | undefined;
|
|
6704
7192
|
defaultVariation?: {
|
|
6705
7193
|
id: string;
|
|
6706
7194
|
name: string;
|
|
@@ -6793,6 +7281,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6793
7281
|
tagline: string;
|
|
6794
7282
|
iconUrl: string | null;
|
|
6795
7283
|
owned: boolean;
|
|
7284
|
+
currentVersion?: string | undefined;
|
|
7285
|
+
downloads?: {
|
|
7286
|
+
path: string | null;
|
|
7287
|
+
name: string;
|
|
7288
|
+
key: string;
|
|
7289
|
+
platform: Platform;
|
|
7290
|
+
size: number;
|
|
7291
|
+
}[] | undefined;
|
|
6796
7292
|
defaultVariation?: {
|
|
6797
7293
|
id: string;
|
|
6798
7294
|
name: string;
|
|
@@ -6956,6 +7452,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6956
7452
|
tagline: string;
|
|
6957
7453
|
iconUrl: string | null;
|
|
6958
7454
|
owned: boolean;
|
|
7455
|
+
currentVersion?: string | undefined;
|
|
7456
|
+
downloads?: {
|
|
7457
|
+
path: string | null;
|
|
7458
|
+
name: string;
|
|
7459
|
+
key: string;
|
|
7460
|
+
platform: Platform;
|
|
7461
|
+
size: number;
|
|
7462
|
+
}[] | undefined;
|
|
6959
7463
|
defaultVariation?: {
|
|
6960
7464
|
id: string;
|
|
6961
7465
|
name: string;
|
|
@@ -7089,6 +7593,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7089
7593
|
tagline: string;
|
|
7090
7594
|
iconUrl: string | null;
|
|
7091
7595
|
owned: boolean;
|
|
7596
|
+
currentVersion?: string | undefined;
|
|
7597
|
+
downloads?: {
|
|
7598
|
+
path: string | null;
|
|
7599
|
+
name: string;
|
|
7600
|
+
key: string;
|
|
7601
|
+
platform: Platform;
|
|
7602
|
+
size: number;
|
|
7603
|
+
}[] | undefined;
|
|
7092
7604
|
defaultVariation?: {
|
|
7093
7605
|
id: string;
|
|
7094
7606
|
name: string;
|
|
@@ -7236,6 +7748,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7236
7748
|
tagline: string;
|
|
7237
7749
|
iconUrl: string | null;
|
|
7238
7750
|
owned: boolean;
|
|
7751
|
+
currentVersion?: string | undefined;
|
|
7752
|
+
downloads?: {
|
|
7753
|
+
path: string | null;
|
|
7754
|
+
name: string;
|
|
7755
|
+
key: string;
|
|
7756
|
+
platform: Platform;
|
|
7757
|
+
size: number;
|
|
7758
|
+
}[] | undefined;
|
|
7239
7759
|
defaultVariation?: {
|
|
7240
7760
|
id: string;
|
|
7241
7761
|
name: string;
|
|
@@ -7330,6 +7850,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7330
7850
|
tagline: string;
|
|
7331
7851
|
iconUrl: string | null;
|
|
7332
7852
|
owned: boolean;
|
|
7853
|
+
currentVersion?: string | undefined;
|
|
7854
|
+
downloads?: {
|
|
7855
|
+
path: string | null;
|
|
7856
|
+
name: string;
|
|
7857
|
+
key: string;
|
|
7858
|
+
platform: Platform;
|
|
7859
|
+
size: number;
|
|
7860
|
+
}[] | undefined;
|
|
7333
7861
|
defaultVariation?: {
|
|
7334
7862
|
id: string;
|
|
7335
7863
|
name: string;
|
|
@@ -7467,6 +7995,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7467
7995
|
tagline: string;
|
|
7468
7996
|
iconUrl: string | null;
|
|
7469
7997
|
owned: boolean;
|
|
7998
|
+
currentVersion?: string | undefined;
|
|
7999
|
+
downloads?: {
|
|
8000
|
+
path: string | null;
|
|
8001
|
+
name: string;
|
|
8002
|
+
key: string;
|
|
8003
|
+
platform: Platform;
|
|
8004
|
+
size: number;
|
|
8005
|
+
}[] | undefined;
|
|
7470
8006
|
defaultVariation?: {
|
|
7471
8007
|
id: string;
|
|
7472
8008
|
name: string;
|
|
@@ -7560,6 +8096,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7560
8096
|
tagline: string;
|
|
7561
8097
|
iconUrl: string | null;
|
|
7562
8098
|
owned: boolean;
|
|
8099
|
+
currentVersion?: string | undefined;
|
|
8100
|
+
downloads?: {
|
|
8101
|
+
path: string | null;
|
|
8102
|
+
name: string;
|
|
8103
|
+
key: string;
|
|
8104
|
+
platform: Platform;
|
|
8105
|
+
size: number;
|
|
8106
|
+
}[] | undefined;
|
|
7563
8107
|
defaultVariation?: {
|
|
7564
8108
|
id: string;
|
|
7565
8109
|
name: string;
|
|
@@ -7719,6 +8263,14 @@ declare class OrderEndpoints {
|
|
|
7719
8263
|
tagline: string;
|
|
7720
8264
|
iconUrl: string | null;
|
|
7721
8265
|
owned: boolean;
|
|
8266
|
+
currentVersion?: string | undefined;
|
|
8267
|
+
downloads?: {
|
|
8268
|
+
path: string | null;
|
|
8269
|
+
name: string;
|
|
8270
|
+
key: string;
|
|
8271
|
+
platform: Platform;
|
|
8272
|
+
size: number;
|
|
8273
|
+
}[] | undefined;
|
|
7722
8274
|
defaultVariation?: {
|
|
7723
8275
|
id: string;
|
|
7724
8276
|
name: string;
|
|
@@ -7813,6 +8365,14 @@ declare class OrderEndpoints {
|
|
|
7813
8365
|
tagline: string;
|
|
7814
8366
|
iconUrl: string | null;
|
|
7815
8367
|
owned: boolean;
|
|
8368
|
+
currentVersion?: string | undefined;
|
|
8369
|
+
downloads?: {
|
|
8370
|
+
path: string | null;
|
|
8371
|
+
name: string;
|
|
8372
|
+
key: string;
|
|
8373
|
+
platform: Platform;
|
|
8374
|
+
size: number;
|
|
8375
|
+
}[] | undefined;
|
|
7816
8376
|
defaultVariation?: {
|
|
7817
8377
|
id: string;
|
|
7818
8378
|
name: string;
|
|
@@ -7921,6 +8481,25 @@ declare class OrderEndpoints {
|
|
|
7921
8481
|
}): Promise<OpenOrder>;
|
|
7922
8482
|
}
|
|
7923
8483
|
|
|
8484
|
+
declare const downloadSchema: z.ZodObject<{
|
|
8485
|
+
name: z.ZodString;
|
|
8486
|
+
key: z.ZodString;
|
|
8487
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
8488
|
+
size: z.ZodNumber;
|
|
8489
|
+
path: z.ZodNullable<z.ZodString>;
|
|
8490
|
+
}, "strip", z.ZodTypeAny, {
|
|
8491
|
+
path: string | null;
|
|
8492
|
+
name: string;
|
|
8493
|
+
key: string;
|
|
8494
|
+
platform: Platform;
|
|
8495
|
+
size: number;
|
|
8496
|
+
}, {
|
|
8497
|
+
path: string | null;
|
|
8498
|
+
name: string;
|
|
8499
|
+
key: string;
|
|
8500
|
+
platform: Platform;
|
|
8501
|
+
size: number;
|
|
8502
|
+
}>;
|
|
7924
8503
|
declare const productSummarySchema: z.ZodObject<{
|
|
7925
8504
|
id: z.ZodString;
|
|
7926
8505
|
name: z.ZodString;
|
|
@@ -8001,6 +8580,7 @@ declare enum Platform {
|
|
|
8001
8580
|
Linux = "Linux",
|
|
8002
8581
|
Mac = "Mac"
|
|
8003
8582
|
}
|
|
8583
|
+
type Download = z.infer<typeof downloadSchema>;
|
|
8004
8584
|
type OwnedProduct = z.infer<typeof productSummarySchema>;
|
|
8005
8585
|
|
|
8006
8586
|
declare class ProductEndpoints {
|
|
@@ -8022,6 +8602,14 @@ declare class StorefrontEndpoints {
|
|
|
8022
8602
|
tagline: string;
|
|
8023
8603
|
iconUrl: string | null;
|
|
8024
8604
|
owned: boolean;
|
|
8605
|
+
currentVersion?: string | undefined;
|
|
8606
|
+
downloads?: {
|
|
8607
|
+
path: string | null;
|
|
8608
|
+
name: string;
|
|
8609
|
+
key: string;
|
|
8610
|
+
platform: Platform;
|
|
8611
|
+
size: number;
|
|
8612
|
+
}[] | undefined;
|
|
8025
8613
|
defaultVariation?: {
|
|
8026
8614
|
id: string;
|
|
8027
8615
|
name: string;
|
|
@@ -8077,6 +8665,14 @@ declare class StorefrontEndpoints {
|
|
|
8077
8665
|
tagline: string;
|
|
8078
8666
|
iconUrl: string | null;
|
|
8079
8667
|
owned: boolean;
|
|
8668
|
+
currentVersion?: string | undefined;
|
|
8669
|
+
downloads?: {
|
|
8670
|
+
path: string | null;
|
|
8671
|
+
name: string;
|
|
8672
|
+
key: string;
|
|
8673
|
+
platform: Platform;
|
|
8674
|
+
size: number;
|
|
8675
|
+
}[] | undefined;
|
|
8080
8676
|
defaultVariation?: {
|
|
8081
8677
|
id: string;
|
|
8082
8678
|
name: string;
|
|
@@ -8173,6 +8769,26 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8173
8769
|
tagline: z.ZodString;
|
|
8174
8770
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
8175
8771
|
owned: z.ZodBoolean;
|
|
8772
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
8773
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8774
|
+
name: z.ZodString;
|
|
8775
|
+
key: z.ZodString;
|
|
8776
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
8777
|
+
size: z.ZodNumber;
|
|
8778
|
+
path: z.ZodNullable<z.ZodString>;
|
|
8779
|
+
}, "strip", z.ZodTypeAny, {
|
|
8780
|
+
path: string | null;
|
|
8781
|
+
name: string;
|
|
8782
|
+
key: string;
|
|
8783
|
+
platform: Platform;
|
|
8784
|
+
size: number;
|
|
8785
|
+
}, {
|
|
8786
|
+
path: string | null;
|
|
8787
|
+
name: string;
|
|
8788
|
+
key: string;
|
|
8789
|
+
platform: Platform;
|
|
8790
|
+
size: number;
|
|
8791
|
+
}>, "many">>;
|
|
8176
8792
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
8177
8793
|
id: z.ZodString;
|
|
8178
8794
|
name: z.ZodString;
|
|
@@ -8335,6 +8951,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8335
8951
|
tagline: string;
|
|
8336
8952
|
iconUrl: string | null;
|
|
8337
8953
|
owned: boolean;
|
|
8954
|
+
currentVersion?: string | undefined;
|
|
8955
|
+
downloads?: {
|
|
8956
|
+
path: string | null;
|
|
8957
|
+
name: string;
|
|
8958
|
+
key: string;
|
|
8959
|
+
platform: Platform;
|
|
8960
|
+
size: number;
|
|
8961
|
+
}[] | undefined;
|
|
8338
8962
|
defaultVariation?: {
|
|
8339
8963
|
id: string;
|
|
8340
8964
|
name: string;
|
|
@@ -8379,6 +9003,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8379
9003
|
tagline: string;
|
|
8380
9004
|
iconUrl: string | null;
|
|
8381
9005
|
owned: boolean;
|
|
9006
|
+
currentVersion?: string | undefined;
|
|
9007
|
+
downloads?: {
|
|
9008
|
+
path: string | null;
|
|
9009
|
+
name: string;
|
|
9010
|
+
key: string;
|
|
9011
|
+
platform: Platform;
|
|
9012
|
+
size: number;
|
|
9013
|
+
}[] | undefined;
|
|
8382
9014
|
defaultVariation?: {
|
|
8383
9015
|
id: string;
|
|
8384
9016
|
name: string;
|
|
@@ -8428,6 +9060,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8428
9060
|
tagline: string;
|
|
8429
9061
|
iconUrl: string | null;
|
|
8430
9062
|
owned: boolean;
|
|
9063
|
+
currentVersion?: string | undefined;
|
|
9064
|
+
downloads?: {
|
|
9065
|
+
path: string | null;
|
|
9066
|
+
name: string;
|
|
9067
|
+
key: string;
|
|
9068
|
+
platform: Platform;
|
|
9069
|
+
size: number;
|
|
9070
|
+
}[] | undefined;
|
|
8431
9071
|
defaultVariation?: {
|
|
8432
9072
|
id: string;
|
|
8433
9073
|
name: string;
|
|
@@ -8475,6 +9115,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8475
9115
|
tagline: string;
|
|
8476
9116
|
iconUrl: string | null;
|
|
8477
9117
|
owned: boolean;
|
|
9118
|
+
currentVersion?: string | undefined;
|
|
9119
|
+
downloads?: {
|
|
9120
|
+
path: string | null;
|
|
9121
|
+
name: string;
|
|
9122
|
+
key: string;
|
|
9123
|
+
platform: Platform;
|
|
9124
|
+
size: number;
|
|
9125
|
+
}[] | undefined;
|
|
8478
9126
|
defaultVariation?: {
|
|
8479
9127
|
id: string;
|
|
8480
9128
|
name: string;
|
|
@@ -8531,6 +9179,26 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8531
9179
|
tagline: z.ZodString;
|
|
8532
9180
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
8533
9181
|
owned: z.ZodBoolean;
|
|
9182
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
9183
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9184
|
+
name: z.ZodString;
|
|
9185
|
+
key: z.ZodString;
|
|
9186
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
9187
|
+
size: z.ZodNumber;
|
|
9188
|
+
path: z.ZodNullable<z.ZodString>;
|
|
9189
|
+
}, "strip", z.ZodTypeAny, {
|
|
9190
|
+
path: string | null;
|
|
9191
|
+
name: string;
|
|
9192
|
+
key: string;
|
|
9193
|
+
platform: Platform;
|
|
9194
|
+
size: number;
|
|
9195
|
+
}, {
|
|
9196
|
+
path: string | null;
|
|
9197
|
+
name: string;
|
|
9198
|
+
key: string;
|
|
9199
|
+
platform: Platform;
|
|
9200
|
+
size: number;
|
|
9201
|
+
}>, "many">>;
|
|
8534
9202
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
8535
9203
|
id: z.ZodString;
|
|
8536
9204
|
name: z.ZodString;
|
|
@@ -8693,6 +9361,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8693
9361
|
tagline: string;
|
|
8694
9362
|
iconUrl: string | null;
|
|
8695
9363
|
owned: boolean;
|
|
9364
|
+
currentVersion?: string | undefined;
|
|
9365
|
+
downloads?: {
|
|
9366
|
+
path: string | null;
|
|
9367
|
+
name: string;
|
|
9368
|
+
key: string;
|
|
9369
|
+
platform: Platform;
|
|
9370
|
+
size: number;
|
|
9371
|
+
}[] | undefined;
|
|
8696
9372
|
defaultVariation?: {
|
|
8697
9373
|
id: string;
|
|
8698
9374
|
name: string;
|
|
@@ -8737,6 +9413,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8737
9413
|
tagline: string;
|
|
8738
9414
|
iconUrl: string | null;
|
|
8739
9415
|
owned: boolean;
|
|
9416
|
+
currentVersion?: string | undefined;
|
|
9417
|
+
downloads?: {
|
|
9418
|
+
path: string | null;
|
|
9419
|
+
name: string;
|
|
9420
|
+
key: string;
|
|
9421
|
+
platform: Platform;
|
|
9422
|
+
size: number;
|
|
9423
|
+
}[] | undefined;
|
|
8740
9424
|
defaultVariation?: {
|
|
8741
9425
|
id: string;
|
|
8742
9426
|
name: string;
|
|
@@ -8953,6 +9637,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8953
9637
|
tagline: string;
|
|
8954
9638
|
iconUrl: string | null;
|
|
8955
9639
|
owned: boolean;
|
|
9640
|
+
currentVersion?: string | undefined;
|
|
9641
|
+
downloads?: {
|
|
9642
|
+
path: string | null;
|
|
9643
|
+
name: string;
|
|
9644
|
+
key: string;
|
|
9645
|
+
platform: Platform;
|
|
9646
|
+
size: number;
|
|
9647
|
+
}[] | undefined;
|
|
8956
9648
|
defaultVariation?: {
|
|
8957
9649
|
id: string;
|
|
8958
9650
|
name: string;
|
|
@@ -9045,6 +9737,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9045
9737
|
tagline: string;
|
|
9046
9738
|
iconUrl: string | null;
|
|
9047
9739
|
owned: boolean;
|
|
9740
|
+
currentVersion?: string | undefined;
|
|
9741
|
+
downloads?: {
|
|
9742
|
+
path: string | null;
|
|
9743
|
+
name: string;
|
|
9744
|
+
key: string;
|
|
9745
|
+
platform: Platform;
|
|
9746
|
+
size: number;
|
|
9747
|
+
}[] | undefined;
|
|
9048
9748
|
defaultVariation?: {
|
|
9049
9749
|
id: string;
|
|
9050
9750
|
name: string;
|
|
@@ -9144,6 +9844,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9144
9844
|
tagline: string;
|
|
9145
9845
|
iconUrl: string | null;
|
|
9146
9846
|
owned: boolean;
|
|
9847
|
+
currentVersion?: string | undefined;
|
|
9848
|
+
downloads?: {
|
|
9849
|
+
path: string | null;
|
|
9850
|
+
name: string;
|
|
9851
|
+
key: string;
|
|
9852
|
+
platform: Platform;
|
|
9853
|
+
size: number;
|
|
9854
|
+
}[] | undefined;
|
|
9147
9855
|
defaultVariation?: {
|
|
9148
9856
|
id: string;
|
|
9149
9857
|
name: string;
|
|
@@ -9239,6 +9947,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9239
9947
|
tagline: string;
|
|
9240
9948
|
iconUrl: string | null;
|
|
9241
9949
|
owned: boolean;
|
|
9950
|
+
currentVersion?: string | undefined;
|
|
9951
|
+
downloads?: {
|
|
9952
|
+
path: string | null;
|
|
9953
|
+
name: string;
|
|
9954
|
+
key: string;
|
|
9955
|
+
platform: Platform;
|
|
9956
|
+
size: number;
|
|
9957
|
+
}[] | undefined;
|
|
9242
9958
|
defaultVariation?: {
|
|
9243
9959
|
id: string;
|
|
9244
9960
|
name: string;
|
|
@@ -9337,6 +10053,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9337
10053
|
tagline: string;
|
|
9338
10054
|
iconUrl: string | null;
|
|
9339
10055
|
owned: boolean;
|
|
10056
|
+
currentVersion?: string | undefined;
|
|
10057
|
+
downloads?: {
|
|
10058
|
+
path: string | null;
|
|
10059
|
+
name: string;
|
|
10060
|
+
key: string;
|
|
10061
|
+
platform: Platform;
|
|
10062
|
+
size: number;
|
|
10063
|
+
}[] | undefined;
|
|
9340
10064
|
defaultVariation?: {
|
|
9341
10065
|
id: string;
|
|
9342
10066
|
name: string;
|
|
@@ -9394,6 +10118,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9394
10118
|
tagline: string;
|
|
9395
10119
|
iconUrl: string | null;
|
|
9396
10120
|
owned: boolean;
|
|
10121
|
+
currentVersion?: string | undefined;
|
|
10122
|
+
downloads?: {
|
|
10123
|
+
path: string | null;
|
|
10124
|
+
name: string;
|
|
10125
|
+
key: string;
|
|
10126
|
+
platform: Platform;
|
|
10127
|
+
size: number;
|
|
10128
|
+
}[] | undefined;
|
|
9397
10129
|
defaultVariation?: {
|
|
9398
10130
|
id: string;
|
|
9399
10131
|
name: string;
|
|
@@ -9489,6 +10221,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9489
10221
|
tagline: string;
|
|
9490
10222
|
iconUrl: string | null;
|
|
9491
10223
|
owned: boolean;
|
|
10224
|
+
currentVersion?: string | undefined;
|
|
10225
|
+
downloads?: {
|
|
10226
|
+
path: string | null;
|
|
10227
|
+
name: string;
|
|
10228
|
+
key: string;
|
|
10229
|
+
platform: Platform;
|
|
10230
|
+
size: number;
|
|
10231
|
+
}[] | undefined;
|
|
9492
10232
|
defaultVariation?: {
|
|
9493
10233
|
id: string;
|
|
9494
10234
|
name: string;
|
|
@@ -9545,6 +10285,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9545
10285
|
tagline: string;
|
|
9546
10286
|
iconUrl: string | null;
|
|
9547
10287
|
owned: boolean;
|
|
10288
|
+
currentVersion?: string | undefined;
|
|
10289
|
+
downloads?: {
|
|
10290
|
+
path: string | null;
|
|
10291
|
+
name: string;
|
|
10292
|
+
key: string;
|
|
10293
|
+
platform: Platform;
|
|
10294
|
+
size: number;
|
|
10295
|
+
}[] | undefined;
|
|
9548
10296
|
defaultVariation?: {
|
|
9549
10297
|
id: string;
|
|
9550
10298
|
name: string;
|
|
@@ -9646,6 +10394,26 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
9646
10394
|
tagline: z.ZodString;
|
|
9647
10395
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
9648
10396
|
owned: z.ZodBoolean;
|
|
10397
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
10398
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10399
|
+
name: z.ZodString;
|
|
10400
|
+
key: z.ZodString;
|
|
10401
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
10402
|
+
size: z.ZodNumber;
|
|
10403
|
+
path: z.ZodNullable<z.ZodString>;
|
|
10404
|
+
}, "strip", z.ZodTypeAny, {
|
|
10405
|
+
path: string | null;
|
|
10406
|
+
name: string;
|
|
10407
|
+
key: string;
|
|
10408
|
+
platform: Platform;
|
|
10409
|
+
size: number;
|
|
10410
|
+
}, {
|
|
10411
|
+
path: string | null;
|
|
10412
|
+
name: string;
|
|
10413
|
+
key: string;
|
|
10414
|
+
platform: Platform;
|
|
10415
|
+
size: number;
|
|
10416
|
+
}>, "many">>;
|
|
9649
10417
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
9650
10418
|
id: z.ZodString;
|
|
9651
10419
|
name: z.ZodString;
|
|
@@ -9808,6 +10576,14 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
9808
10576
|
tagline: string;
|
|
9809
10577
|
iconUrl: string | null;
|
|
9810
10578
|
owned: boolean;
|
|
10579
|
+
currentVersion?: string | undefined;
|
|
10580
|
+
downloads?: {
|
|
10581
|
+
path: string | null;
|
|
10582
|
+
name: string;
|
|
10583
|
+
key: string;
|
|
10584
|
+
platform: Platform;
|
|
10585
|
+
size: number;
|
|
10586
|
+
}[] | undefined;
|
|
9811
10587
|
defaultVariation?: {
|
|
9812
10588
|
id: string;
|
|
9813
10589
|
name: string;
|
|
@@ -9852,6 +10628,14 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
9852
10628
|
tagline: string;
|
|
9853
10629
|
iconUrl: string | null;
|
|
9854
10630
|
owned: boolean;
|
|
10631
|
+
currentVersion?: string | undefined;
|
|
10632
|
+
downloads?: {
|
|
10633
|
+
path: string | null;
|
|
10634
|
+
name: string;
|
|
10635
|
+
key: string;
|
|
10636
|
+
platform: Platform;
|
|
10637
|
+
size: number;
|
|
10638
|
+
}[] | undefined;
|
|
9855
10639
|
defaultVariation?: {
|
|
9856
10640
|
id: string;
|
|
9857
10641
|
name: string;
|
|
@@ -9905,6 +10689,26 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9905
10689
|
tagline: z.ZodString;
|
|
9906
10690
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
9907
10691
|
owned: z.ZodBoolean;
|
|
10692
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
10693
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10694
|
+
name: z.ZodString;
|
|
10695
|
+
key: z.ZodString;
|
|
10696
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
10697
|
+
size: z.ZodNumber;
|
|
10698
|
+
path: z.ZodNullable<z.ZodString>;
|
|
10699
|
+
}, "strip", z.ZodTypeAny, {
|
|
10700
|
+
path: string | null;
|
|
10701
|
+
name: string;
|
|
10702
|
+
key: string;
|
|
10703
|
+
platform: Platform;
|
|
10704
|
+
size: number;
|
|
10705
|
+
}, {
|
|
10706
|
+
path: string | null;
|
|
10707
|
+
name: string;
|
|
10708
|
+
key: string;
|
|
10709
|
+
platform: Platform;
|
|
10710
|
+
size: number;
|
|
10711
|
+
}>, "many">>;
|
|
9908
10712
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
9909
10713
|
id: z.ZodString;
|
|
9910
10714
|
name: z.ZodString;
|
|
@@ -10067,6 +10871,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10067
10871
|
tagline: string;
|
|
10068
10872
|
iconUrl: string | null;
|
|
10069
10873
|
owned: boolean;
|
|
10874
|
+
currentVersion?: string | undefined;
|
|
10875
|
+
downloads?: {
|
|
10876
|
+
path: string | null;
|
|
10877
|
+
name: string;
|
|
10878
|
+
key: string;
|
|
10879
|
+
platform: Platform;
|
|
10880
|
+
size: number;
|
|
10881
|
+
}[] | undefined;
|
|
10070
10882
|
defaultVariation?: {
|
|
10071
10883
|
id: string;
|
|
10072
10884
|
name: string;
|
|
@@ -10111,6 +10923,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10111
10923
|
tagline: string;
|
|
10112
10924
|
iconUrl: string | null;
|
|
10113
10925
|
owned: boolean;
|
|
10926
|
+
currentVersion?: string | undefined;
|
|
10927
|
+
downloads?: {
|
|
10928
|
+
path: string | null;
|
|
10929
|
+
name: string;
|
|
10930
|
+
key: string;
|
|
10931
|
+
platform: Platform;
|
|
10932
|
+
size: number;
|
|
10933
|
+
}[] | undefined;
|
|
10114
10934
|
defaultVariation?: {
|
|
10115
10935
|
id: string;
|
|
10116
10936
|
name: string;
|
|
@@ -10327,6 +11147,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10327
11147
|
tagline: string;
|
|
10328
11148
|
iconUrl: string | null;
|
|
10329
11149
|
owned: boolean;
|
|
11150
|
+
currentVersion?: string | undefined;
|
|
11151
|
+
downloads?: {
|
|
11152
|
+
path: string | null;
|
|
11153
|
+
name: string;
|
|
11154
|
+
key: string;
|
|
11155
|
+
platform: Platform;
|
|
11156
|
+
size: number;
|
|
11157
|
+
}[] | undefined;
|
|
10330
11158
|
defaultVariation?: {
|
|
10331
11159
|
id: string;
|
|
10332
11160
|
name: string;
|
|
@@ -10419,6 +11247,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10419
11247
|
tagline: string;
|
|
10420
11248
|
iconUrl: string | null;
|
|
10421
11249
|
owned: boolean;
|
|
11250
|
+
currentVersion?: string | undefined;
|
|
11251
|
+
downloads?: {
|
|
11252
|
+
path: string | null;
|
|
11253
|
+
name: string;
|
|
11254
|
+
key: string;
|
|
11255
|
+
platform: Platform;
|
|
11256
|
+
size: number;
|
|
11257
|
+
}[] | undefined;
|
|
10422
11258
|
defaultVariation?: {
|
|
10423
11259
|
id: string;
|
|
10424
11260
|
name: string;
|
|
@@ -10509,6 +11345,26 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10509
11345
|
tagline: z.ZodString;
|
|
10510
11346
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
10511
11347
|
owned: z.ZodBoolean;
|
|
11348
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
11349
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11350
|
+
name: z.ZodString;
|
|
11351
|
+
key: z.ZodString;
|
|
11352
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
11353
|
+
size: z.ZodNumber;
|
|
11354
|
+
path: z.ZodNullable<z.ZodString>;
|
|
11355
|
+
}, "strip", z.ZodTypeAny, {
|
|
11356
|
+
path: string | null;
|
|
11357
|
+
name: string;
|
|
11358
|
+
key: string;
|
|
11359
|
+
platform: Platform;
|
|
11360
|
+
size: number;
|
|
11361
|
+
}, {
|
|
11362
|
+
path: string | null;
|
|
11363
|
+
name: string;
|
|
11364
|
+
key: string;
|
|
11365
|
+
platform: Platform;
|
|
11366
|
+
size: number;
|
|
11367
|
+
}>, "many">>;
|
|
10512
11368
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
10513
11369
|
id: z.ZodString;
|
|
10514
11370
|
name: z.ZodString;
|
|
@@ -10671,6 +11527,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10671
11527
|
tagline: string;
|
|
10672
11528
|
iconUrl: string | null;
|
|
10673
11529
|
owned: boolean;
|
|
11530
|
+
currentVersion?: string | undefined;
|
|
11531
|
+
downloads?: {
|
|
11532
|
+
path: string | null;
|
|
11533
|
+
name: string;
|
|
11534
|
+
key: string;
|
|
11535
|
+
platform: Platform;
|
|
11536
|
+
size: number;
|
|
11537
|
+
}[] | undefined;
|
|
10674
11538
|
defaultVariation?: {
|
|
10675
11539
|
id: string;
|
|
10676
11540
|
name: string;
|
|
@@ -10715,6 +11579,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10715
11579
|
tagline: string;
|
|
10716
11580
|
iconUrl: string | null;
|
|
10717
11581
|
owned: boolean;
|
|
11582
|
+
currentVersion?: string | undefined;
|
|
11583
|
+
downloads?: {
|
|
11584
|
+
path: string | null;
|
|
11585
|
+
name: string;
|
|
11586
|
+
key: string;
|
|
11587
|
+
platform: Platform;
|
|
11588
|
+
size: number;
|
|
11589
|
+
}[] | undefined;
|
|
10718
11590
|
defaultVariation?: {
|
|
10719
11591
|
id: string;
|
|
10720
11592
|
name: string;
|
|
@@ -10768,6 +11640,26 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10768
11640
|
tagline: z.ZodString;
|
|
10769
11641
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
10770
11642
|
owned: z.ZodBoolean;
|
|
11643
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
11644
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11645
|
+
name: z.ZodString;
|
|
11646
|
+
key: z.ZodString;
|
|
11647
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
11648
|
+
size: z.ZodNumber;
|
|
11649
|
+
path: z.ZodNullable<z.ZodString>;
|
|
11650
|
+
}, "strip", z.ZodTypeAny, {
|
|
11651
|
+
path: string | null;
|
|
11652
|
+
name: string;
|
|
11653
|
+
key: string;
|
|
11654
|
+
platform: Platform;
|
|
11655
|
+
size: number;
|
|
11656
|
+
}, {
|
|
11657
|
+
path: string | null;
|
|
11658
|
+
name: string;
|
|
11659
|
+
key: string;
|
|
11660
|
+
platform: Platform;
|
|
11661
|
+
size: number;
|
|
11662
|
+
}>, "many">>;
|
|
10771
11663
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
10772
11664
|
id: z.ZodString;
|
|
10773
11665
|
name: z.ZodString;
|
|
@@ -10930,6 +11822,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10930
11822
|
tagline: string;
|
|
10931
11823
|
iconUrl: string | null;
|
|
10932
11824
|
owned: boolean;
|
|
11825
|
+
currentVersion?: string | undefined;
|
|
11826
|
+
downloads?: {
|
|
11827
|
+
path: string | null;
|
|
11828
|
+
name: string;
|
|
11829
|
+
key: string;
|
|
11830
|
+
platform: Platform;
|
|
11831
|
+
size: number;
|
|
11832
|
+
}[] | undefined;
|
|
10933
11833
|
defaultVariation?: {
|
|
10934
11834
|
id: string;
|
|
10935
11835
|
name: string;
|
|
@@ -10974,6 +11874,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10974
11874
|
tagline: string;
|
|
10975
11875
|
iconUrl: string | null;
|
|
10976
11876
|
owned: boolean;
|
|
11877
|
+
currentVersion?: string | undefined;
|
|
11878
|
+
downloads?: {
|
|
11879
|
+
path: string | null;
|
|
11880
|
+
name: string;
|
|
11881
|
+
key: string;
|
|
11882
|
+
platform: Platform;
|
|
11883
|
+
size: number;
|
|
11884
|
+
}[] | undefined;
|
|
10977
11885
|
defaultVariation?: {
|
|
10978
11886
|
id: string;
|
|
10979
11887
|
name: string;
|
|
@@ -11190,6 +12098,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11190
12098
|
tagline: string;
|
|
11191
12099
|
iconUrl: string | null;
|
|
11192
12100
|
owned: boolean;
|
|
12101
|
+
currentVersion?: string | undefined;
|
|
12102
|
+
downloads?: {
|
|
12103
|
+
path: string | null;
|
|
12104
|
+
name: string;
|
|
12105
|
+
key: string;
|
|
12106
|
+
platform: Platform;
|
|
12107
|
+
size: number;
|
|
12108
|
+
}[] | undefined;
|
|
11193
12109
|
defaultVariation?: {
|
|
11194
12110
|
id: string;
|
|
11195
12111
|
name: string;
|
|
@@ -11282,6 +12198,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11282
12198
|
tagline: string;
|
|
11283
12199
|
iconUrl: string | null;
|
|
11284
12200
|
owned: boolean;
|
|
12201
|
+
currentVersion?: string | undefined;
|
|
12202
|
+
downloads?: {
|
|
12203
|
+
path: string | null;
|
|
12204
|
+
name: string;
|
|
12205
|
+
key: string;
|
|
12206
|
+
platform: Platform;
|
|
12207
|
+
size: number;
|
|
12208
|
+
}[] | undefined;
|
|
11285
12209
|
defaultVariation?: {
|
|
11286
12210
|
id: string;
|
|
11287
12211
|
name: string;
|
|
@@ -11372,6 +12296,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11372
12296
|
tagline: string;
|
|
11373
12297
|
iconUrl: string | null;
|
|
11374
12298
|
owned: boolean;
|
|
12299
|
+
currentVersion?: string | undefined;
|
|
12300
|
+
downloads?: {
|
|
12301
|
+
path: string | null;
|
|
12302
|
+
name: string;
|
|
12303
|
+
key: string;
|
|
12304
|
+
platform: Platform;
|
|
12305
|
+
size: number;
|
|
12306
|
+
}[] | undefined;
|
|
11375
12307
|
defaultVariation?: {
|
|
11376
12308
|
id: string;
|
|
11377
12309
|
name: string;
|
|
@@ -11427,6 +12359,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11427
12359
|
tagline: string;
|
|
11428
12360
|
iconUrl: string | null;
|
|
11429
12361
|
owned: boolean;
|
|
12362
|
+
currentVersion?: string | undefined;
|
|
12363
|
+
downloads?: {
|
|
12364
|
+
path: string | null;
|
|
12365
|
+
name: string;
|
|
12366
|
+
key: string;
|
|
12367
|
+
platform: Platform;
|
|
12368
|
+
size: number;
|
|
12369
|
+
}[] | undefined;
|
|
11430
12370
|
defaultVariation?: {
|
|
11431
12371
|
id: string;
|
|
11432
12372
|
name: string;
|
|
@@ -11514,6 +12454,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11514
12454
|
tagline: string;
|
|
11515
12455
|
iconUrl: string | null;
|
|
11516
12456
|
owned: boolean;
|
|
12457
|
+
currentVersion?: string | undefined;
|
|
12458
|
+
downloads?: {
|
|
12459
|
+
path: string | null;
|
|
12460
|
+
name: string;
|
|
12461
|
+
key: string;
|
|
12462
|
+
platform: Platform;
|
|
12463
|
+
size: number;
|
|
12464
|
+
}[] | undefined;
|
|
11517
12465
|
defaultVariation?: {
|
|
11518
12466
|
id: string;
|
|
11519
12467
|
name: string;
|
|
@@ -11568,6 +12516,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11568
12516
|
tagline: string;
|
|
11569
12517
|
iconUrl: string | null;
|
|
11570
12518
|
owned: boolean;
|
|
12519
|
+
currentVersion?: string | undefined;
|
|
12520
|
+
downloads?: {
|
|
12521
|
+
path: string | null;
|
|
12522
|
+
name: string;
|
|
12523
|
+
key: string;
|
|
12524
|
+
platform: Platform;
|
|
12525
|
+
size: number;
|
|
12526
|
+
}[] | undefined;
|
|
11571
12527
|
defaultVariation?: {
|
|
11572
12528
|
id: string;
|
|
11573
12529
|
name: string;
|
|
@@ -11681,4 +12637,4 @@ declare class MoonbaseClient {
|
|
|
11681
12637
|
orders: OrderEndpoints;
|
|
11682
12638
|
}
|
|
11683
12639
|
|
|
11684
|
-
export { type Activation, ActivationMethod, ActivationStatus, type Address, type BundleLineItem, type CommunicationPreferences, type License, LicenseStatus, type LineItem, MoonbaseClient, type MoonbaseConfiguration, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingVariation, type ProductLineItem, type Quantifiable, type Storefront, type StorefrontBundle, type StorefrontProduct, type User, type Voucher };
|
|
12640
|
+
export { type Activation, ActivationMethod, ActivationStatus, type Address, type BundleLineItem, type CommunicationPreferences, type Download, type License, LicenseStatus, type LineItem, MoonbaseClient, type MoonbaseConfiguration, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingVariation, type ProductLineItem, type Quantifiable, type Storefront, type StorefrontBundle, type StorefrontProduct, type User, type Voucher };
|