@moonbase.sh/storefront-api 0.2.21 → 0.2.22

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
@@ -474,6 +474,7 @@ declare const activationRequestSchema: z.ZodObject<{
474
474
  tagline: string;
475
475
  iconUrl: string | null;
476
476
  owned: boolean;
477
+ type?: void | undefined;
477
478
  website?: string | null | undefined;
478
479
  currentVersion?: string | undefined;
479
480
  downloads?: {
@@ -521,7 +522,6 @@ declare const activationRequestSchema: z.ZodObject<{
521
522
  description?: string | undefined;
522
523
  } | undefined;
523
524
  }[] | undefined;
524
- type?: void | undefined;
525
525
  }>;
526
526
  trialEligibility: z.ZodOptional<z.ZodObject<{
527
527
  eligible: z.ZodBoolean;
@@ -626,6 +626,7 @@ declare const activationRequestSchema: z.ZodObject<{
626
626
  tagline: string;
627
627
  iconUrl: string | null;
628
628
  owned: boolean;
629
+ type?: void | undefined;
629
630
  website?: string | null | undefined;
630
631
  currentVersion?: string | undefined;
631
632
  downloads?: {
@@ -673,7 +674,6 @@ declare const activationRequestSchema: z.ZodObject<{
673
674
  description?: string | undefined;
674
675
  } | undefined;
675
676
  }[] | undefined;
676
- type?: void | undefined;
677
677
  };
678
678
  trialEligibility?: {
679
679
  eligible: boolean;
@@ -1054,6 +1054,7 @@ declare const openProductLineItem: z.ZodObject<{
1054
1054
  tagline: string;
1055
1055
  iconUrl: string | null;
1056
1056
  owned: boolean;
1057
+ type?: void | undefined;
1057
1058
  website?: string | null | undefined;
1058
1059
  currentVersion?: string | undefined;
1059
1060
  downloads?: {
@@ -1101,7 +1102,6 @@ declare const openProductLineItem: z.ZodObject<{
1101
1102
  description?: string | undefined;
1102
1103
  } | undefined;
1103
1104
  }[] | undefined;
1104
- type?: void | undefined;
1105
1105
  }>>;
1106
1106
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1107
1107
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -1150,25 +1150,6 @@ declare const openProductLineItem: z.ZodObject<{
1150
1150
  productId: string;
1151
1151
  variationId: string;
1152
1152
  price?: Record<string, number> | undefined;
1153
- variation?: {
1154
- id: string;
1155
- name: string;
1156
- originalPrice: Record<string, number>;
1157
- price: Record<string, number>;
1158
- hasDiscount: boolean;
1159
- discount?: {
1160
- type: "PercentageOffDiscount";
1161
- name: string;
1162
- percentage: number;
1163
- total: Record<string, number>;
1164
- description?: string | undefined;
1165
- } | {
1166
- type: "FlatAmountOffDiscount";
1167
- name: string;
1168
- total: Record<string, number>;
1169
- description?: string | undefined;
1170
- } | undefined;
1171
- } | undefined;
1172
1153
  product?: {
1173
1154
  type: "product";
1174
1155
  id: string;
@@ -1224,6 +1205,25 @@ declare const openProductLineItem: z.ZodObject<{
1224
1205
  } | undefined;
1225
1206
  }[] | undefined;
1226
1207
  } | undefined;
1208
+ variation?: {
1209
+ id: string;
1210
+ name: string;
1211
+ originalPrice: Record<string, number>;
1212
+ price: Record<string, number>;
1213
+ hasDiscount: boolean;
1214
+ discount?: {
1215
+ type: "PercentageOffDiscount";
1216
+ name: string;
1217
+ percentage: number;
1218
+ total: Record<string, number>;
1219
+ description?: string | undefined;
1220
+ } | {
1221
+ type: "FlatAmountOffDiscount";
1222
+ name: string;
1223
+ total: Record<string, number>;
1224
+ description?: string | undefined;
1225
+ } | undefined;
1226
+ } | undefined;
1227
1227
  appliedDiscount?: {
1228
1228
  type: "PercentageOffDiscount";
1229
1229
  name: string;
@@ -1245,31 +1245,13 @@ declare const openProductLineItem: z.ZodObject<{
1245
1245
  productId: string;
1246
1246
  variationId: string;
1247
1247
  price?: Record<string, number> | undefined;
1248
- variation?: {
1249
- id: string;
1250
- name: string;
1251
- originalPrice: Record<string, number>;
1252
- price: Record<string, number>;
1253
- hasDiscount: boolean;
1254
- discount?: {
1255
- type: "PercentageOffDiscount";
1256
- name: string;
1257
- percentage: number;
1258
- total: Record<string, number>;
1259
- description?: string | undefined;
1260
- } | {
1261
- type: "FlatAmountOffDiscount";
1262
- name: string;
1263
- total: Record<string, number>;
1264
- description?: string | undefined;
1265
- } | undefined;
1266
- } | undefined;
1267
1248
  product?: {
1268
1249
  id: string;
1269
1250
  name: string;
1270
1251
  tagline: string;
1271
1252
  iconUrl: string | null;
1272
1253
  owned: boolean;
1254
+ type?: void | undefined;
1273
1255
  website?: string | null | undefined;
1274
1256
  currentVersion?: string | undefined;
1275
1257
  downloads?: {
@@ -1317,7 +1299,25 @@ declare const openProductLineItem: z.ZodObject<{
1317
1299
  description?: string | undefined;
1318
1300
  } | undefined;
1319
1301
  }[] | undefined;
1320
- type?: void | undefined;
1302
+ } | undefined;
1303
+ variation?: {
1304
+ id: string;
1305
+ name: string;
1306
+ originalPrice: Record<string, number>;
1307
+ price: Record<string, number>;
1308
+ hasDiscount: boolean;
1309
+ discount?: {
1310
+ type: "PercentageOffDiscount";
1311
+ name: string;
1312
+ percentage: number;
1313
+ total: Record<string, number>;
1314
+ description?: string | undefined;
1315
+ } | {
1316
+ type: "FlatAmountOffDiscount";
1317
+ name: string;
1318
+ total: Record<string, number>;
1319
+ description?: string | undefined;
1320
+ } | undefined;
1321
1321
  } | undefined;
1322
1322
  appliedDiscount?: {
1323
1323
  type: "PercentageOffDiscount";
@@ -1667,6 +1667,7 @@ declare const openBundleLineItem: z.ZodObject<{
1667
1667
  tagline: string;
1668
1668
  iconUrl: string | null;
1669
1669
  owned: boolean;
1670
+ type?: void | undefined;
1670
1671
  website?: string | null | undefined;
1671
1672
  currentVersion?: string | undefined;
1672
1673
  downloads?: {
@@ -1714,7 +1715,6 @@ declare const openBundleLineItem: z.ZodObject<{
1714
1715
  description?: string | undefined;
1715
1716
  } | undefined;
1716
1717
  }[] | undefined;
1717
- type?: void | undefined;
1718
1718
  }>, z.ZodObject<{
1719
1719
  included: z.ZodOptional<z.ZodBoolean>;
1720
1720
  }, "strip", z.ZodTypeAny, {
@@ -1993,6 +1993,7 @@ declare const openBundleLineItem: z.ZodObject<{
1993
1993
  tagline: string;
1994
1994
  iconUrl: string | null;
1995
1995
  owned: boolean;
1996
+ type?: void | undefined;
1996
1997
  website?: string | null | undefined;
1997
1998
  currentVersion?: string | undefined;
1998
1999
  downloads?: {
@@ -2040,10 +2041,10 @@ declare const openBundleLineItem: z.ZodObject<{
2040
2041
  description?: string | undefined;
2041
2042
  } | undefined;
2042
2043
  }[] | undefined;
2043
- type?: void | undefined;
2044
2044
  } & {
2045
2045
  included?: boolean | undefined;
2046
2046
  })[];
2047
+ type?: void | undefined;
2047
2048
  defaultVariation?: {
2048
2049
  id: string;
2049
2050
  name: string;
@@ -2082,7 +2083,6 @@ declare const openBundleLineItem: z.ZodObject<{
2082
2083
  description?: string | undefined;
2083
2084
  } | undefined;
2084
2085
  }[] | undefined;
2085
- type?: void | undefined;
2086
2086
  }>>;
2087
2087
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2088
2088
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -2131,25 +2131,6 @@ declare const openBundleLineItem: z.ZodObject<{
2131
2131
  variationId: string;
2132
2132
  bundleId: string;
2133
2133
  price?: Record<string, number> | undefined;
2134
- variation?: {
2135
- id: string;
2136
- name: string;
2137
- originalPrice: Record<string, number>;
2138
- price: Record<string, number>;
2139
- hasDiscount: boolean;
2140
- discount?: {
2141
- type: "PercentageOffDiscount";
2142
- name: string;
2143
- percentage: number;
2144
- total: Record<string, number>;
2145
- description?: string | undefined;
2146
- } | {
2147
- type: "FlatAmountOffDiscount";
2148
- name: string;
2149
- total: Record<string, number>;
2150
- description?: string | undefined;
2151
- } | undefined;
2152
- } | undefined;
2153
2134
  bundle?: {
2154
2135
  type: "bundle";
2155
2136
  id: string;
@@ -2254,6 +2235,25 @@ declare const openBundleLineItem: z.ZodObject<{
2254
2235
  } | undefined;
2255
2236
  }[] | undefined;
2256
2237
  } | undefined;
2238
+ variation?: {
2239
+ id: string;
2240
+ name: string;
2241
+ originalPrice: Record<string, number>;
2242
+ price: Record<string, number>;
2243
+ hasDiscount: boolean;
2244
+ discount?: {
2245
+ type: "PercentageOffDiscount";
2246
+ name: string;
2247
+ percentage: number;
2248
+ total: Record<string, number>;
2249
+ description?: string | undefined;
2250
+ } | {
2251
+ type: "FlatAmountOffDiscount";
2252
+ name: string;
2253
+ total: Record<string, number>;
2254
+ description?: string | undefined;
2255
+ } | undefined;
2256
+ } | undefined;
2257
2257
  appliedDiscount?: {
2258
2258
  type: "PercentageOffDiscount";
2259
2259
  name: string;
@@ -2275,25 +2275,6 @@ declare const openBundleLineItem: z.ZodObject<{
2275
2275
  variationId: string;
2276
2276
  bundleId: string;
2277
2277
  price?: Record<string, number> | undefined;
2278
- variation?: {
2279
- id: string;
2280
- name: string;
2281
- originalPrice: Record<string, number>;
2282
- price: Record<string, number>;
2283
- hasDiscount: boolean;
2284
- discount?: {
2285
- type: "PercentageOffDiscount";
2286
- name: string;
2287
- percentage: number;
2288
- total: Record<string, number>;
2289
- description?: string | undefined;
2290
- } | {
2291
- type: "FlatAmountOffDiscount";
2292
- name: string;
2293
- total: Record<string, number>;
2294
- description?: string | undefined;
2295
- } | undefined;
2296
- } | undefined;
2297
2278
  bundle?: {
2298
2279
  id: string;
2299
2280
  name: string;
@@ -2307,6 +2288,7 @@ declare const openBundleLineItem: z.ZodObject<{
2307
2288
  tagline: string;
2308
2289
  iconUrl: string | null;
2309
2290
  owned: boolean;
2291
+ type?: void | undefined;
2310
2292
  website?: string | null | undefined;
2311
2293
  currentVersion?: string | undefined;
2312
2294
  downloads?: {
@@ -2354,10 +2336,10 @@ declare const openBundleLineItem: z.ZodObject<{
2354
2336
  description?: string | undefined;
2355
2337
  } | undefined;
2356
2338
  }[] | undefined;
2357
- type?: void | undefined;
2358
2339
  } & {
2359
2340
  included?: boolean | undefined;
2360
2341
  })[];
2342
+ type?: void | undefined;
2361
2343
  defaultVariation?: {
2362
2344
  id: string;
2363
2345
  name: string;
@@ -2396,7 +2378,25 @@ declare const openBundleLineItem: z.ZodObject<{
2396
2378
  description?: string | undefined;
2397
2379
  } | undefined;
2398
2380
  }[] | undefined;
2399
- type?: void | undefined;
2381
+ } | undefined;
2382
+ variation?: {
2383
+ id: string;
2384
+ name: string;
2385
+ originalPrice: Record<string, number>;
2386
+ price: Record<string, number>;
2387
+ hasDiscount: boolean;
2388
+ discount?: {
2389
+ type: "PercentageOffDiscount";
2390
+ name: string;
2391
+ percentage: number;
2392
+ total: Record<string, number>;
2393
+ description?: string | undefined;
2394
+ } | {
2395
+ type: "FlatAmountOffDiscount";
2396
+ name: string;
2397
+ total: Record<string, number>;
2398
+ description?: string | undefined;
2399
+ } | undefined;
2400
2400
  } | undefined;
2401
2401
  appliedDiscount?: {
2402
2402
  type: "PercentageOffDiscount";
@@ -2739,6 +2739,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2739
2739
  tagline: string;
2740
2740
  iconUrl: string | null;
2741
2741
  owned: boolean;
2742
+ type?: void | undefined;
2742
2743
  website?: string | null | undefined;
2743
2744
  currentVersion?: string | undefined;
2744
2745
  downloads?: {
@@ -2786,7 +2787,6 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2786
2787
  description?: string | undefined;
2787
2788
  } | undefined;
2788
2789
  }[] | undefined;
2789
- type?: void | undefined;
2790
2790
  }>>;
2791
2791
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2792
2792
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -2835,25 +2835,6 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2835
2835
  productId: string;
2836
2836
  variationId: string;
2837
2837
  price?: Record<string, number> | undefined;
2838
- variation?: {
2839
- id: string;
2840
- name: string;
2841
- originalPrice: Record<string, number>;
2842
- price: Record<string, number>;
2843
- hasDiscount: boolean;
2844
- discount?: {
2845
- type: "PercentageOffDiscount";
2846
- name: string;
2847
- percentage: number;
2848
- total: Record<string, number>;
2849
- description?: string | undefined;
2850
- } | {
2851
- type: "FlatAmountOffDiscount";
2852
- name: string;
2853
- total: Record<string, number>;
2854
- description?: string | undefined;
2855
- } | undefined;
2856
- } | undefined;
2857
2838
  product?: {
2858
2839
  type: "product";
2859
2840
  id: string;
@@ -2909,6 +2890,25 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2909
2890
  } | undefined;
2910
2891
  }[] | undefined;
2911
2892
  } | undefined;
2893
+ variation?: {
2894
+ id: string;
2895
+ name: string;
2896
+ originalPrice: Record<string, number>;
2897
+ price: Record<string, number>;
2898
+ hasDiscount: boolean;
2899
+ discount?: {
2900
+ type: "PercentageOffDiscount";
2901
+ name: string;
2902
+ percentage: number;
2903
+ total: Record<string, number>;
2904
+ description?: string | undefined;
2905
+ } | {
2906
+ type: "FlatAmountOffDiscount";
2907
+ name: string;
2908
+ total: Record<string, number>;
2909
+ description?: string | undefined;
2910
+ } | undefined;
2911
+ } | undefined;
2912
2912
  appliedDiscount?: {
2913
2913
  type: "PercentageOffDiscount";
2914
2914
  name: string;
@@ -2930,31 +2930,13 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2930
2930
  productId: string;
2931
2931
  variationId: string;
2932
2932
  price?: Record<string, number> | undefined;
2933
- variation?: {
2934
- id: string;
2935
- name: string;
2936
- originalPrice: Record<string, number>;
2937
- price: Record<string, number>;
2938
- hasDiscount: boolean;
2939
- discount?: {
2940
- type: "PercentageOffDiscount";
2941
- name: string;
2942
- percentage: number;
2943
- total: Record<string, number>;
2944
- description?: string | undefined;
2945
- } | {
2946
- type: "FlatAmountOffDiscount";
2947
- name: string;
2948
- total: Record<string, number>;
2949
- description?: string | undefined;
2950
- } | undefined;
2951
- } | undefined;
2952
2933
  product?: {
2953
2934
  id: string;
2954
2935
  name: string;
2955
2936
  tagline: string;
2956
2937
  iconUrl: string | null;
2957
2938
  owned: boolean;
2939
+ type?: void | undefined;
2958
2940
  website?: string | null | undefined;
2959
2941
  currentVersion?: string | undefined;
2960
2942
  downloads?: {
@@ -3002,7 +2984,25 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3002
2984
  description?: string | undefined;
3003
2985
  } | undefined;
3004
2986
  }[] | undefined;
3005
- type?: void | undefined;
2987
+ } | undefined;
2988
+ variation?: {
2989
+ id: string;
2990
+ name: string;
2991
+ originalPrice: Record<string, number>;
2992
+ price: Record<string, number>;
2993
+ hasDiscount: boolean;
2994
+ discount?: {
2995
+ type: "PercentageOffDiscount";
2996
+ name: string;
2997
+ percentage: number;
2998
+ total: Record<string, number>;
2999
+ description?: string | undefined;
3000
+ } | {
3001
+ type: "FlatAmountOffDiscount";
3002
+ name: string;
3003
+ total: Record<string, number>;
3004
+ description?: string | undefined;
3005
+ } | undefined;
3006
3006
  } | undefined;
3007
3007
  appliedDiscount?: {
3008
3008
  type: "PercentageOffDiscount";
@@ -3351,6 +3351,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3351
3351
  tagline: string;
3352
3352
  iconUrl: string | null;
3353
3353
  owned: boolean;
3354
+ type?: void | undefined;
3354
3355
  website?: string | null | undefined;
3355
3356
  currentVersion?: string | undefined;
3356
3357
  downloads?: {
@@ -3398,7 +3399,6 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3398
3399
  description?: string | undefined;
3399
3400
  } | undefined;
3400
3401
  }[] | undefined;
3401
- type?: void | undefined;
3402
3402
  }>, z.ZodObject<{
3403
3403
  included: z.ZodOptional<z.ZodBoolean>;
3404
3404
  }, "strip", z.ZodTypeAny, {
@@ -3677,6 +3677,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3677
3677
  tagline: string;
3678
3678
  iconUrl: string | null;
3679
3679
  owned: boolean;
3680
+ type?: void | undefined;
3680
3681
  website?: string | null | undefined;
3681
3682
  currentVersion?: string | undefined;
3682
3683
  downloads?: {
@@ -3724,10 +3725,10 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3724
3725
  description?: string | undefined;
3725
3726
  } | undefined;
3726
3727
  }[] | undefined;
3727
- type?: void | undefined;
3728
3728
  } & {
3729
3729
  included?: boolean | undefined;
3730
3730
  })[];
3731
+ type?: void | undefined;
3731
3732
  defaultVariation?: {
3732
3733
  id: string;
3733
3734
  name: string;
@@ -3766,7 +3767,6 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3766
3767
  description?: string | undefined;
3767
3768
  } | undefined;
3768
3769
  }[] | undefined;
3769
- type?: void | undefined;
3770
3770
  }>>;
3771
3771
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3772
3772
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -3815,25 +3815,6 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3815
3815
  variationId: string;
3816
3816
  bundleId: string;
3817
3817
  price?: Record<string, number> | undefined;
3818
- variation?: {
3819
- id: string;
3820
- name: string;
3821
- originalPrice: Record<string, number>;
3822
- price: Record<string, number>;
3823
- hasDiscount: boolean;
3824
- discount?: {
3825
- type: "PercentageOffDiscount";
3826
- name: string;
3827
- percentage: number;
3828
- total: Record<string, number>;
3829
- description?: string | undefined;
3830
- } | {
3831
- type: "FlatAmountOffDiscount";
3832
- name: string;
3833
- total: Record<string, number>;
3834
- description?: string | undefined;
3835
- } | undefined;
3836
- } | undefined;
3837
3818
  bundle?: {
3838
3819
  type: "bundle";
3839
3820
  id: string;
@@ -3938,6 +3919,25 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3938
3919
  } | undefined;
3939
3920
  }[] | undefined;
3940
3921
  } | undefined;
3922
+ variation?: {
3923
+ id: string;
3924
+ name: string;
3925
+ originalPrice: Record<string, number>;
3926
+ price: Record<string, number>;
3927
+ hasDiscount: boolean;
3928
+ discount?: {
3929
+ type: "PercentageOffDiscount";
3930
+ name: string;
3931
+ percentage: number;
3932
+ total: Record<string, number>;
3933
+ description?: string | undefined;
3934
+ } | {
3935
+ type: "FlatAmountOffDiscount";
3936
+ name: string;
3937
+ total: Record<string, number>;
3938
+ description?: string | undefined;
3939
+ } | undefined;
3940
+ } | undefined;
3941
3941
  appliedDiscount?: {
3942
3942
  type: "PercentageOffDiscount";
3943
3943
  name: string;
@@ -3959,25 +3959,6 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3959
3959
  variationId: string;
3960
3960
  bundleId: string;
3961
3961
  price?: Record<string, number> | undefined;
3962
- variation?: {
3963
- id: string;
3964
- name: string;
3965
- originalPrice: Record<string, number>;
3966
- price: Record<string, number>;
3967
- hasDiscount: boolean;
3968
- discount?: {
3969
- type: "PercentageOffDiscount";
3970
- name: string;
3971
- percentage: number;
3972
- total: Record<string, number>;
3973
- description?: string | undefined;
3974
- } | {
3975
- type: "FlatAmountOffDiscount";
3976
- name: string;
3977
- total: Record<string, number>;
3978
- description?: string | undefined;
3979
- } | undefined;
3980
- } | undefined;
3981
3962
  bundle?: {
3982
3963
  id: string;
3983
3964
  name: string;
@@ -3991,6 +3972,7 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3991
3972
  tagline: string;
3992
3973
  iconUrl: string | null;
3993
3974
  owned: boolean;
3975
+ type?: void | undefined;
3994
3976
  website?: string | null | undefined;
3995
3977
  currentVersion?: string | undefined;
3996
3978
  downloads?: {
@@ -4038,10 +4020,10 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4038
4020
  description?: string | undefined;
4039
4021
  } | undefined;
4040
4022
  }[] | undefined;
4041
- type?: void | undefined;
4042
4023
  } & {
4043
4024
  included?: boolean | undefined;
4044
4025
  })[];
4026
+ type?: void | undefined;
4045
4027
  defaultVariation?: {
4046
4028
  id: string;
4047
4029
  name: string;
@@ -4080,7 +4062,25 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4080
4062
  description?: string | undefined;
4081
4063
  } | undefined;
4082
4064
  }[] | undefined;
4083
- type?: void | undefined;
4065
+ } | undefined;
4066
+ variation?: {
4067
+ id: string;
4068
+ name: string;
4069
+ originalPrice: Record<string, number>;
4070
+ price: Record<string, number>;
4071
+ hasDiscount: boolean;
4072
+ discount?: {
4073
+ type: "PercentageOffDiscount";
4074
+ name: string;
4075
+ percentage: number;
4076
+ total: Record<string, number>;
4077
+ description?: string | undefined;
4078
+ } | {
4079
+ type: "FlatAmountOffDiscount";
4080
+ name: string;
4081
+ total: Record<string, number>;
4082
+ description?: string | undefined;
4083
+ } | undefined;
4084
4084
  } | undefined;
4085
4085
  appliedDiscount?: {
4086
4086
  type: "PercentageOffDiscount";
@@ -4427,6 +4427,7 @@ declare const openOrderSchema: z.ZodObject<{
4427
4427
  tagline: string;
4428
4428
  iconUrl: string | null;
4429
4429
  owned: boolean;
4430
+ type?: void | undefined;
4430
4431
  website?: string | null | undefined;
4431
4432
  currentVersion?: string | undefined;
4432
4433
  downloads?: {
@@ -4474,7 +4475,6 @@ declare const openOrderSchema: z.ZodObject<{
4474
4475
  description?: string | undefined;
4475
4476
  } | undefined;
4476
4477
  }[] | undefined;
4477
- type?: void | undefined;
4478
4478
  }>>;
4479
4479
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4480
4480
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -4523,25 +4523,6 @@ declare const openOrderSchema: z.ZodObject<{
4523
4523
  productId: string;
4524
4524
  variationId: string;
4525
4525
  price?: Record<string, number> | undefined;
4526
- variation?: {
4527
- id: string;
4528
- name: string;
4529
- originalPrice: Record<string, number>;
4530
- price: Record<string, number>;
4531
- hasDiscount: boolean;
4532
- discount?: {
4533
- type: "PercentageOffDiscount";
4534
- name: string;
4535
- percentage: number;
4536
- total: Record<string, number>;
4537
- description?: string | undefined;
4538
- } | {
4539
- type: "FlatAmountOffDiscount";
4540
- name: string;
4541
- total: Record<string, number>;
4542
- description?: string | undefined;
4543
- } | undefined;
4544
- } | undefined;
4545
4526
  product?: {
4546
4527
  type: "product";
4547
4528
  id: string;
@@ -4597,6 +4578,25 @@ declare const openOrderSchema: z.ZodObject<{
4597
4578
  } | undefined;
4598
4579
  }[] | undefined;
4599
4580
  } | undefined;
4581
+ variation?: {
4582
+ id: string;
4583
+ name: string;
4584
+ originalPrice: Record<string, number>;
4585
+ price: Record<string, number>;
4586
+ hasDiscount: boolean;
4587
+ discount?: {
4588
+ type: "PercentageOffDiscount";
4589
+ name: string;
4590
+ percentage: number;
4591
+ total: Record<string, number>;
4592
+ description?: string | undefined;
4593
+ } | {
4594
+ type: "FlatAmountOffDiscount";
4595
+ name: string;
4596
+ total: Record<string, number>;
4597
+ description?: string | undefined;
4598
+ } | undefined;
4599
+ } | undefined;
4600
4600
  appliedDiscount?: {
4601
4601
  type: "PercentageOffDiscount";
4602
4602
  name: string;
@@ -4618,31 +4618,13 @@ declare const openOrderSchema: z.ZodObject<{
4618
4618
  productId: string;
4619
4619
  variationId: string;
4620
4620
  price?: Record<string, number> | undefined;
4621
- variation?: {
4622
- id: string;
4623
- name: string;
4624
- originalPrice: Record<string, number>;
4625
- price: Record<string, number>;
4626
- hasDiscount: boolean;
4627
- discount?: {
4628
- type: "PercentageOffDiscount";
4629
- name: string;
4630
- percentage: number;
4631
- total: Record<string, number>;
4632
- description?: string | undefined;
4633
- } | {
4634
- type: "FlatAmountOffDiscount";
4635
- name: string;
4636
- total: Record<string, number>;
4637
- description?: string | undefined;
4638
- } | undefined;
4639
- } | undefined;
4640
4621
  product?: {
4641
4622
  id: string;
4642
4623
  name: string;
4643
4624
  tagline: string;
4644
4625
  iconUrl: string | null;
4645
4626
  owned: boolean;
4627
+ type?: void | undefined;
4646
4628
  website?: string | null | undefined;
4647
4629
  currentVersion?: string | undefined;
4648
4630
  downloads?: {
@@ -4690,7 +4672,25 @@ declare const openOrderSchema: z.ZodObject<{
4690
4672
  description?: string | undefined;
4691
4673
  } | undefined;
4692
4674
  }[] | undefined;
4693
- type?: void | undefined;
4675
+ } | undefined;
4676
+ variation?: {
4677
+ id: string;
4678
+ name: string;
4679
+ originalPrice: Record<string, number>;
4680
+ price: Record<string, number>;
4681
+ hasDiscount: boolean;
4682
+ discount?: {
4683
+ type: "PercentageOffDiscount";
4684
+ name: string;
4685
+ percentage: number;
4686
+ total: Record<string, number>;
4687
+ description?: string | undefined;
4688
+ } | {
4689
+ type: "FlatAmountOffDiscount";
4690
+ name: string;
4691
+ total: Record<string, number>;
4692
+ description?: string | undefined;
4693
+ } | undefined;
4694
4694
  } | undefined;
4695
4695
  appliedDiscount?: {
4696
4696
  type: "PercentageOffDiscount";
@@ -5039,6 +5039,7 @@ declare const openOrderSchema: z.ZodObject<{
5039
5039
  tagline: string;
5040
5040
  iconUrl: string | null;
5041
5041
  owned: boolean;
5042
+ type?: void | undefined;
5042
5043
  website?: string | null | undefined;
5043
5044
  currentVersion?: string | undefined;
5044
5045
  downloads?: {
@@ -5086,7 +5087,6 @@ declare const openOrderSchema: z.ZodObject<{
5086
5087
  description?: string | undefined;
5087
5088
  } | undefined;
5088
5089
  }[] | undefined;
5089
- type?: void | undefined;
5090
5090
  }>, z.ZodObject<{
5091
5091
  included: z.ZodOptional<z.ZodBoolean>;
5092
5092
  }, "strip", z.ZodTypeAny, {
@@ -5365,6 +5365,7 @@ declare const openOrderSchema: z.ZodObject<{
5365
5365
  tagline: string;
5366
5366
  iconUrl: string | null;
5367
5367
  owned: boolean;
5368
+ type?: void | undefined;
5368
5369
  website?: string | null | undefined;
5369
5370
  currentVersion?: string | undefined;
5370
5371
  downloads?: {
@@ -5412,10 +5413,10 @@ declare const openOrderSchema: z.ZodObject<{
5412
5413
  description?: string | undefined;
5413
5414
  } | undefined;
5414
5415
  }[] | undefined;
5415
- type?: void | undefined;
5416
5416
  } & {
5417
5417
  included?: boolean | undefined;
5418
5418
  })[];
5419
+ type?: void | undefined;
5419
5420
  defaultVariation?: {
5420
5421
  id: string;
5421
5422
  name: string;
@@ -5454,7 +5455,6 @@ declare const openOrderSchema: z.ZodObject<{
5454
5455
  description?: string | undefined;
5455
5456
  } | undefined;
5456
5457
  }[] | undefined;
5457
- type?: void | undefined;
5458
5458
  }>>;
5459
5459
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5460
5460
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -5503,25 +5503,6 @@ declare const openOrderSchema: z.ZodObject<{
5503
5503
  variationId: string;
5504
5504
  bundleId: string;
5505
5505
  price?: Record<string, number> | undefined;
5506
- variation?: {
5507
- id: string;
5508
- name: string;
5509
- originalPrice: Record<string, number>;
5510
- price: Record<string, number>;
5511
- hasDiscount: boolean;
5512
- discount?: {
5513
- type: "PercentageOffDiscount";
5514
- name: string;
5515
- percentage: number;
5516
- total: Record<string, number>;
5517
- description?: string | undefined;
5518
- } | {
5519
- type: "FlatAmountOffDiscount";
5520
- name: string;
5521
- total: Record<string, number>;
5522
- description?: string | undefined;
5523
- } | undefined;
5524
- } | undefined;
5525
5506
  bundle?: {
5526
5507
  type: "bundle";
5527
5508
  id: string;
@@ -5626,6 +5607,25 @@ declare const openOrderSchema: z.ZodObject<{
5626
5607
  } | undefined;
5627
5608
  }[] | undefined;
5628
5609
  } | undefined;
5610
+ variation?: {
5611
+ id: string;
5612
+ name: string;
5613
+ originalPrice: Record<string, number>;
5614
+ price: Record<string, number>;
5615
+ hasDiscount: boolean;
5616
+ discount?: {
5617
+ type: "PercentageOffDiscount";
5618
+ name: string;
5619
+ percentage: number;
5620
+ total: Record<string, number>;
5621
+ description?: string | undefined;
5622
+ } | {
5623
+ type: "FlatAmountOffDiscount";
5624
+ name: string;
5625
+ total: Record<string, number>;
5626
+ description?: string | undefined;
5627
+ } | undefined;
5628
+ } | undefined;
5629
5629
  appliedDiscount?: {
5630
5630
  type: "PercentageOffDiscount";
5631
5631
  name: string;
@@ -5647,25 +5647,6 @@ declare const openOrderSchema: z.ZodObject<{
5647
5647
  variationId: string;
5648
5648
  bundleId: string;
5649
5649
  price?: Record<string, number> | undefined;
5650
- variation?: {
5651
- id: string;
5652
- name: string;
5653
- originalPrice: Record<string, number>;
5654
- price: Record<string, number>;
5655
- hasDiscount: boolean;
5656
- discount?: {
5657
- type: "PercentageOffDiscount";
5658
- name: string;
5659
- percentage: number;
5660
- total: Record<string, number>;
5661
- description?: string | undefined;
5662
- } | {
5663
- type: "FlatAmountOffDiscount";
5664
- name: string;
5665
- total: Record<string, number>;
5666
- description?: string | undefined;
5667
- } | undefined;
5668
- } | undefined;
5669
5650
  bundle?: {
5670
5651
  id: string;
5671
5652
  name: string;
@@ -5679,6 +5660,7 @@ declare const openOrderSchema: z.ZodObject<{
5679
5660
  tagline: string;
5680
5661
  iconUrl: string | null;
5681
5662
  owned: boolean;
5663
+ type?: void | undefined;
5682
5664
  website?: string | null | undefined;
5683
5665
  currentVersion?: string | undefined;
5684
5666
  downloads?: {
@@ -5726,10 +5708,10 @@ declare const openOrderSchema: z.ZodObject<{
5726
5708
  description?: string | undefined;
5727
5709
  } | undefined;
5728
5710
  }[] | undefined;
5729
- type?: void | undefined;
5730
5711
  } & {
5731
5712
  included?: boolean | undefined;
5732
5713
  })[];
5714
+ type?: void | undefined;
5733
5715
  defaultVariation?: {
5734
5716
  id: string;
5735
5717
  name: string;
@@ -5768,7 +5750,25 @@ declare const openOrderSchema: z.ZodObject<{
5768
5750
  description?: string | undefined;
5769
5751
  } | undefined;
5770
5752
  }[] | undefined;
5771
- type?: void | undefined;
5753
+ } | undefined;
5754
+ variation?: {
5755
+ id: string;
5756
+ name: string;
5757
+ originalPrice: Record<string, number>;
5758
+ price: Record<string, number>;
5759
+ hasDiscount: boolean;
5760
+ discount?: {
5761
+ type: "PercentageOffDiscount";
5762
+ name: string;
5763
+ percentage: number;
5764
+ total: Record<string, number>;
5765
+ description?: string | undefined;
5766
+ } | {
5767
+ type: "FlatAmountOffDiscount";
5768
+ name: string;
5769
+ total: Record<string, number>;
5770
+ description?: string | undefined;
5771
+ } | undefined;
5772
5772
  } | undefined;
5773
5773
  appliedDiscount?: {
5774
5774
  type: "PercentageOffDiscount";
@@ -5810,27 +5810,8 @@ declare const openOrderSchema: z.ZodObject<{
5810
5810
  productId: string;
5811
5811
  variationId: string;
5812
5812
  price?: Record<string, number> | undefined;
5813
- variation?: {
5814
- id: string;
5815
- name: string;
5816
- originalPrice: Record<string, number>;
5817
- price: Record<string, number>;
5818
- hasDiscount: boolean;
5819
- discount?: {
5820
- type: "PercentageOffDiscount";
5821
- name: string;
5822
- percentage: number;
5823
- total: Record<string, number>;
5824
- description?: string | undefined;
5825
- } | {
5826
- type: "FlatAmountOffDiscount";
5827
- name: string;
5828
- total: Record<string, number>;
5829
- description?: string | undefined;
5830
- } | undefined;
5831
- } | undefined;
5832
- product?: {
5833
- type: "product";
5813
+ product?: {
5814
+ type: "product";
5834
5815
  id: string;
5835
5816
  name: string;
5836
5817
  tagline: string;
@@ -5884,6 +5865,25 @@ declare const openOrderSchema: z.ZodObject<{
5884
5865
  } | undefined;
5885
5866
  }[] | undefined;
5886
5867
  } | undefined;
5868
+ variation?: {
5869
+ id: string;
5870
+ name: string;
5871
+ originalPrice: Record<string, number>;
5872
+ price: Record<string, number>;
5873
+ hasDiscount: boolean;
5874
+ discount?: {
5875
+ type: "PercentageOffDiscount";
5876
+ name: string;
5877
+ percentage: number;
5878
+ total: Record<string, number>;
5879
+ description?: string | undefined;
5880
+ } | {
5881
+ type: "FlatAmountOffDiscount";
5882
+ name: string;
5883
+ total: Record<string, number>;
5884
+ description?: string | undefined;
5885
+ } | undefined;
5886
+ } | undefined;
5887
5887
  appliedDiscount?: {
5888
5888
  type: "PercentageOffDiscount";
5889
5889
  name: string;
@@ -5905,25 +5905,6 @@ declare const openOrderSchema: z.ZodObject<{
5905
5905
  variationId: string;
5906
5906
  bundleId: string;
5907
5907
  price?: Record<string, number> | undefined;
5908
- variation?: {
5909
- id: string;
5910
- name: string;
5911
- originalPrice: Record<string, number>;
5912
- price: Record<string, number>;
5913
- hasDiscount: boolean;
5914
- discount?: {
5915
- type: "PercentageOffDiscount";
5916
- name: string;
5917
- percentage: number;
5918
- total: Record<string, number>;
5919
- description?: string | undefined;
5920
- } | {
5921
- type: "FlatAmountOffDiscount";
5922
- name: string;
5923
- total: Record<string, number>;
5924
- description?: string | undefined;
5925
- } | undefined;
5926
- } | undefined;
5927
5908
  bundle?: {
5928
5909
  type: "bundle";
5929
5910
  id: string;
@@ -6028,6 +6009,25 @@ declare const openOrderSchema: z.ZodObject<{
6028
6009
  } | undefined;
6029
6010
  }[] | undefined;
6030
6011
  } | undefined;
6012
+ variation?: {
6013
+ id: string;
6014
+ name: string;
6015
+ originalPrice: Record<string, number>;
6016
+ price: Record<string, number>;
6017
+ hasDiscount: boolean;
6018
+ discount?: {
6019
+ type: "PercentageOffDiscount";
6020
+ name: string;
6021
+ percentage: number;
6022
+ total: Record<string, number>;
6023
+ description?: string | undefined;
6024
+ } | {
6025
+ type: "FlatAmountOffDiscount";
6026
+ name: string;
6027
+ total: Record<string, number>;
6028
+ description?: string | undefined;
6029
+ } | undefined;
6030
+ } | undefined;
6031
6031
  appliedDiscount?: {
6032
6032
  type: "PercentageOffDiscount";
6033
6033
  name: string;
@@ -6061,31 +6061,13 @@ declare const openOrderSchema: z.ZodObject<{
6061
6061
  productId: string;
6062
6062
  variationId: string;
6063
6063
  price?: Record<string, number> | undefined;
6064
- variation?: {
6065
- id: string;
6066
- name: string;
6067
- originalPrice: Record<string, number>;
6068
- price: Record<string, number>;
6069
- hasDiscount: boolean;
6070
- discount?: {
6071
- type: "PercentageOffDiscount";
6072
- name: string;
6073
- percentage: number;
6074
- total: Record<string, number>;
6075
- description?: string | undefined;
6076
- } | {
6077
- type: "FlatAmountOffDiscount";
6078
- name: string;
6079
- total: Record<string, number>;
6080
- description?: string | undefined;
6081
- } | undefined;
6082
- } | undefined;
6083
6064
  product?: {
6084
6065
  id: string;
6085
6066
  name: string;
6086
6067
  tagline: string;
6087
6068
  iconUrl: string | null;
6088
6069
  owned: boolean;
6070
+ type?: void | undefined;
6089
6071
  website?: string | null | undefined;
6090
6072
  currentVersion?: string | undefined;
6091
6073
  downloads?: {
@@ -6133,7 +6115,25 @@ declare const openOrderSchema: z.ZodObject<{
6133
6115
  description?: string | undefined;
6134
6116
  } | undefined;
6135
6117
  }[] | undefined;
6136
- type?: void | undefined;
6118
+ } | undefined;
6119
+ variation?: {
6120
+ id: string;
6121
+ name: string;
6122
+ originalPrice: Record<string, number>;
6123
+ price: Record<string, number>;
6124
+ hasDiscount: boolean;
6125
+ discount?: {
6126
+ type: "PercentageOffDiscount";
6127
+ name: string;
6128
+ percentage: number;
6129
+ total: Record<string, number>;
6130
+ description?: string | undefined;
6131
+ } | {
6132
+ type: "FlatAmountOffDiscount";
6133
+ name: string;
6134
+ total: Record<string, number>;
6135
+ description?: string | undefined;
6136
+ } | undefined;
6137
6137
  } | undefined;
6138
6138
  appliedDiscount?: {
6139
6139
  type: "PercentageOffDiscount";
@@ -6156,25 +6156,6 @@ declare const openOrderSchema: z.ZodObject<{
6156
6156
  variationId: string;
6157
6157
  bundleId: string;
6158
6158
  price?: Record<string, number> | undefined;
6159
- variation?: {
6160
- id: string;
6161
- name: string;
6162
- originalPrice: Record<string, number>;
6163
- price: Record<string, number>;
6164
- hasDiscount: boolean;
6165
- discount?: {
6166
- type: "PercentageOffDiscount";
6167
- name: string;
6168
- percentage: number;
6169
- total: Record<string, number>;
6170
- description?: string | undefined;
6171
- } | {
6172
- type: "FlatAmountOffDiscount";
6173
- name: string;
6174
- total: Record<string, number>;
6175
- description?: string | undefined;
6176
- } | undefined;
6177
- } | undefined;
6178
6159
  bundle?: {
6179
6160
  id: string;
6180
6161
  name: string;
@@ -6188,6 +6169,7 @@ declare const openOrderSchema: z.ZodObject<{
6188
6169
  tagline: string;
6189
6170
  iconUrl: string | null;
6190
6171
  owned: boolean;
6172
+ type?: void | undefined;
6191
6173
  website?: string | null | undefined;
6192
6174
  currentVersion?: string | undefined;
6193
6175
  downloads?: {
@@ -6235,10 +6217,10 @@ declare const openOrderSchema: z.ZodObject<{
6235
6217
  description?: string | undefined;
6236
6218
  } | undefined;
6237
6219
  }[] | undefined;
6238
- type?: void | undefined;
6239
6220
  } & {
6240
6221
  included?: boolean | undefined;
6241
6222
  })[];
6223
+ type?: void | undefined;
6242
6224
  defaultVariation?: {
6243
6225
  id: string;
6244
6226
  name: string;
@@ -6277,7 +6259,25 @@ declare const openOrderSchema: z.ZodObject<{
6277
6259
  description?: string | undefined;
6278
6260
  } | undefined;
6279
6261
  }[] | undefined;
6280
- type?: void | undefined;
6262
+ } | undefined;
6263
+ variation?: {
6264
+ id: string;
6265
+ name: string;
6266
+ originalPrice: Record<string, number>;
6267
+ price: Record<string, number>;
6268
+ hasDiscount: boolean;
6269
+ discount?: {
6270
+ type: "PercentageOffDiscount";
6271
+ name: string;
6272
+ percentage: number;
6273
+ total: Record<string, number>;
6274
+ description?: string | undefined;
6275
+ } | {
6276
+ type: "FlatAmountOffDiscount";
6277
+ name: string;
6278
+ total: Record<string, number>;
6279
+ description?: string | undefined;
6280
+ } | undefined;
6281
6281
  } | undefined;
6282
6282
  appliedDiscount?: {
6283
6283
  type: "PercentageOffDiscount";
@@ -6781,6 +6781,7 @@ declare const completedOrderSchema: z.ZodObject<{
6781
6781
  tagline: string;
6782
6782
  iconUrl: string | null;
6783
6783
  owned: boolean;
6784
+ type?: void | undefined;
6784
6785
  website?: string | null | undefined;
6785
6786
  currentVersion?: string | undefined;
6786
6787
  downloads?: {
@@ -6828,7 +6829,6 @@ declare const completedOrderSchema: z.ZodObject<{
6828
6829
  description?: string | undefined;
6829
6830
  } | undefined;
6830
6831
  }[] | undefined;
6831
- type?: void | undefined;
6832
6832
  }>>;
6833
6833
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
6834
6834
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -6877,25 +6877,6 @@ declare const completedOrderSchema: z.ZodObject<{
6877
6877
  productId: string;
6878
6878
  variationId: string;
6879
6879
  price?: Record<string, number> | undefined;
6880
- variation?: {
6881
- id: string;
6882
- name: string;
6883
- originalPrice: Record<string, number>;
6884
- price: Record<string, number>;
6885
- hasDiscount: boolean;
6886
- discount?: {
6887
- type: "PercentageOffDiscount";
6888
- name: string;
6889
- percentage: number;
6890
- total: Record<string, number>;
6891
- description?: string | undefined;
6892
- } | {
6893
- type: "FlatAmountOffDiscount";
6894
- name: string;
6895
- total: Record<string, number>;
6896
- description?: string | undefined;
6897
- } | undefined;
6898
- } | undefined;
6899
6880
  product?: {
6900
6881
  type: "product";
6901
6882
  id: string;
@@ -6951,6 +6932,25 @@ declare const completedOrderSchema: z.ZodObject<{
6951
6932
  } | undefined;
6952
6933
  }[] | undefined;
6953
6934
  } | undefined;
6935
+ variation?: {
6936
+ id: string;
6937
+ name: string;
6938
+ originalPrice: Record<string, number>;
6939
+ price: Record<string, number>;
6940
+ hasDiscount: boolean;
6941
+ discount?: {
6942
+ type: "PercentageOffDiscount";
6943
+ name: string;
6944
+ percentage: number;
6945
+ total: Record<string, number>;
6946
+ description?: string | undefined;
6947
+ } | {
6948
+ type: "FlatAmountOffDiscount";
6949
+ name: string;
6950
+ total: Record<string, number>;
6951
+ description?: string | undefined;
6952
+ } | undefined;
6953
+ } | undefined;
6954
6954
  appliedDiscount?: {
6955
6955
  type: "PercentageOffDiscount";
6956
6956
  name: string;
@@ -6972,31 +6972,13 @@ declare const completedOrderSchema: z.ZodObject<{
6972
6972
  productId: string;
6973
6973
  variationId: string;
6974
6974
  price?: Record<string, number> | undefined;
6975
- variation?: {
6976
- id: string;
6977
- name: string;
6978
- originalPrice: Record<string, number>;
6979
- price: Record<string, number>;
6980
- hasDiscount: boolean;
6981
- discount?: {
6982
- type: "PercentageOffDiscount";
6983
- name: string;
6984
- percentage: number;
6985
- total: Record<string, number>;
6986
- description?: string | undefined;
6987
- } | {
6988
- type: "FlatAmountOffDiscount";
6989
- name: string;
6990
- total: Record<string, number>;
6991
- description?: string | undefined;
6992
- } | undefined;
6993
- } | undefined;
6994
6975
  product?: {
6995
6976
  id: string;
6996
6977
  name: string;
6997
6978
  tagline: string;
6998
6979
  iconUrl: string | null;
6999
6980
  owned: boolean;
6981
+ type?: void | undefined;
7000
6982
  website?: string | null | undefined;
7001
6983
  currentVersion?: string | undefined;
7002
6984
  downloads?: {
@@ -7044,7 +7026,25 @@ declare const completedOrderSchema: z.ZodObject<{
7044
7026
  description?: string | undefined;
7045
7027
  } | undefined;
7046
7028
  }[] | undefined;
7047
- type?: void | undefined;
7029
+ } | undefined;
7030
+ variation?: {
7031
+ id: string;
7032
+ name: string;
7033
+ originalPrice: Record<string, number>;
7034
+ price: Record<string, number>;
7035
+ hasDiscount: boolean;
7036
+ discount?: {
7037
+ type: "PercentageOffDiscount";
7038
+ name: string;
7039
+ percentage: number;
7040
+ total: Record<string, number>;
7041
+ description?: string | undefined;
7042
+ } | {
7043
+ type: "FlatAmountOffDiscount";
7044
+ name: string;
7045
+ total: Record<string, number>;
7046
+ description?: string | undefined;
7047
+ } | undefined;
7048
7048
  } | undefined;
7049
7049
  appliedDiscount?: {
7050
7050
  type: "PercentageOffDiscount";
@@ -7393,6 +7393,7 @@ declare const completedOrderSchema: z.ZodObject<{
7393
7393
  tagline: string;
7394
7394
  iconUrl: string | null;
7395
7395
  owned: boolean;
7396
+ type?: void | undefined;
7396
7397
  website?: string | null | undefined;
7397
7398
  currentVersion?: string | undefined;
7398
7399
  downloads?: {
@@ -7440,7 +7441,6 @@ declare const completedOrderSchema: z.ZodObject<{
7440
7441
  description?: string | undefined;
7441
7442
  } | undefined;
7442
7443
  }[] | undefined;
7443
- type?: void | undefined;
7444
7444
  }>, z.ZodObject<{
7445
7445
  included: z.ZodOptional<z.ZodBoolean>;
7446
7446
  }, "strip", z.ZodTypeAny, {
@@ -7719,6 +7719,7 @@ declare const completedOrderSchema: z.ZodObject<{
7719
7719
  tagline: string;
7720
7720
  iconUrl: string | null;
7721
7721
  owned: boolean;
7722
+ type?: void | undefined;
7722
7723
  website?: string | null | undefined;
7723
7724
  currentVersion?: string | undefined;
7724
7725
  downloads?: {
@@ -7766,10 +7767,10 @@ declare const completedOrderSchema: z.ZodObject<{
7766
7767
  description?: string | undefined;
7767
7768
  } | undefined;
7768
7769
  }[] | undefined;
7769
- type?: void | undefined;
7770
7770
  } & {
7771
7771
  included?: boolean | undefined;
7772
7772
  })[];
7773
+ type?: void | undefined;
7773
7774
  defaultVariation?: {
7774
7775
  id: string;
7775
7776
  name: string;
@@ -7808,7 +7809,6 @@ declare const completedOrderSchema: z.ZodObject<{
7808
7809
  description?: string | undefined;
7809
7810
  } | undefined;
7810
7811
  }[] | undefined;
7811
- type?: void | undefined;
7812
7812
  }>>;
7813
7813
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
7814
7814
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -7857,36 +7857,17 @@ declare const completedOrderSchema: z.ZodObject<{
7857
7857
  variationId: string;
7858
7858
  bundleId: string;
7859
7859
  price?: Record<string, number> | undefined;
7860
- variation?: {
7860
+ bundle?: {
7861
+ type: "bundle";
7861
7862
  id: string;
7862
7863
  name: string;
7863
- originalPrice: Record<string, number>;
7864
- price: Record<string, number>;
7865
- hasDiscount: boolean;
7866
- discount?: {
7867
- type: "PercentageOffDiscount";
7868
- name: string;
7869
- percentage: number;
7870
- total: Record<string, number>;
7871
- description?: string | undefined;
7872
- } | {
7873
- type: "FlatAmountOffDiscount";
7874
- name: string;
7875
- total: Record<string, number>;
7876
- description?: string | undefined;
7877
- } | undefined;
7878
- } | undefined;
7879
- bundle?: {
7880
- type: "bundle";
7881
- id: string;
7882
- name: string;
7883
- tagline: string;
7884
- iconUrl: string | null;
7885
- owned: boolean;
7886
- partial: boolean;
7887
- products: ({
7888
- type: "product";
7889
- id: string;
7864
+ tagline: string;
7865
+ iconUrl: string | null;
7866
+ owned: boolean;
7867
+ partial: boolean;
7868
+ products: ({
7869
+ type: "product";
7870
+ id: string;
7890
7871
  name: string;
7891
7872
  tagline: string;
7892
7873
  iconUrl: string | null;
@@ -7980,6 +7961,25 @@ declare const completedOrderSchema: z.ZodObject<{
7980
7961
  } | undefined;
7981
7962
  }[] | undefined;
7982
7963
  } | undefined;
7964
+ variation?: {
7965
+ id: string;
7966
+ name: string;
7967
+ originalPrice: Record<string, number>;
7968
+ price: Record<string, number>;
7969
+ hasDiscount: boolean;
7970
+ discount?: {
7971
+ type: "PercentageOffDiscount";
7972
+ name: string;
7973
+ percentage: number;
7974
+ total: Record<string, number>;
7975
+ description?: string | undefined;
7976
+ } | {
7977
+ type: "FlatAmountOffDiscount";
7978
+ name: string;
7979
+ total: Record<string, number>;
7980
+ description?: string | undefined;
7981
+ } | undefined;
7982
+ } | undefined;
7983
7983
  appliedDiscount?: {
7984
7984
  type: "PercentageOffDiscount";
7985
7985
  name: string;
@@ -8001,25 +8001,6 @@ declare const completedOrderSchema: z.ZodObject<{
8001
8001
  variationId: string;
8002
8002
  bundleId: string;
8003
8003
  price?: Record<string, number> | undefined;
8004
- variation?: {
8005
- id: string;
8006
- name: string;
8007
- originalPrice: Record<string, number>;
8008
- price: Record<string, number>;
8009
- hasDiscount: boolean;
8010
- discount?: {
8011
- type: "PercentageOffDiscount";
8012
- name: string;
8013
- percentage: number;
8014
- total: Record<string, number>;
8015
- description?: string | undefined;
8016
- } | {
8017
- type: "FlatAmountOffDiscount";
8018
- name: string;
8019
- total: Record<string, number>;
8020
- description?: string | undefined;
8021
- } | undefined;
8022
- } | undefined;
8023
8004
  bundle?: {
8024
8005
  id: string;
8025
8006
  name: string;
@@ -8033,6 +8014,7 @@ declare const completedOrderSchema: z.ZodObject<{
8033
8014
  tagline: string;
8034
8015
  iconUrl: string | null;
8035
8016
  owned: boolean;
8017
+ type?: void | undefined;
8036
8018
  website?: string | null | undefined;
8037
8019
  currentVersion?: string | undefined;
8038
8020
  downloads?: {
@@ -8080,10 +8062,10 @@ declare const completedOrderSchema: z.ZodObject<{
8080
8062
  description?: string | undefined;
8081
8063
  } | undefined;
8082
8064
  }[] | undefined;
8083
- type?: void | undefined;
8084
8065
  } & {
8085
8066
  included?: boolean | undefined;
8086
8067
  })[];
8068
+ type?: void | undefined;
8087
8069
  defaultVariation?: {
8088
8070
  id: string;
8089
8071
  name: string;
@@ -8122,7 +8104,25 @@ declare const completedOrderSchema: z.ZodObject<{
8122
8104
  description?: string | undefined;
8123
8105
  } | undefined;
8124
8106
  }[] | undefined;
8125
- type?: void | undefined;
8107
+ } | undefined;
8108
+ variation?: {
8109
+ id: string;
8110
+ name: string;
8111
+ originalPrice: Record<string, number>;
8112
+ price: Record<string, number>;
8113
+ hasDiscount: boolean;
8114
+ discount?: {
8115
+ type: "PercentageOffDiscount";
8116
+ name: string;
8117
+ percentage: number;
8118
+ total: Record<string, number>;
8119
+ description?: string | undefined;
8120
+ } | {
8121
+ type: "FlatAmountOffDiscount";
8122
+ name: string;
8123
+ total: Record<string, number>;
8124
+ description?: string | undefined;
8125
+ } | undefined;
8126
8126
  } | undefined;
8127
8127
  appliedDiscount?: {
8128
8128
  type: "PercentageOffDiscount";
@@ -8184,25 +8184,6 @@ declare const completedOrderSchema: z.ZodObject<{
8184
8184
  productId: string;
8185
8185
  variationId: string;
8186
8186
  price?: Record<string, number> | undefined;
8187
- variation?: {
8188
- id: string;
8189
- name: string;
8190
- originalPrice: Record<string, number>;
8191
- price: Record<string, number>;
8192
- hasDiscount: boolean;
8193
- discount?: {
8194
- type: "PercentageOffDiscount";
8195
- name: string;
8196
- percentage: number;
8197
- total: Record<string, number>;
8198
- description?: string | undefined;
8199
- } | {
8200
- type: "FlatAmountOffDiscount";
8201
- name: string;
8202
- total: Record<string, number>;
8203
- description?: string | undefined;
8204
- } | undefined;
8205
- } | undefined;
8206
8187
  product?: {
8207
8188
  type: "product";
8208
8189
  id: string;
@@ -8258,6 +8239,25 @@ declare const completedOrderSchema: z.ZodObject<{
8258
8239
  } | undefined;
8259
8240
  }[] | undefined;
8260
8241
  } | undefined;
8242
+ variation?: {
8243
+ id: string;
8244
+ name: string;
8245
+ originalPrice: Record<string, number>;
8246
+ price: Record<string, number>;
8247
+ hasDiscount: boolean;
8248
+ discount?: {
8249
+ type: "PercentageOffDiscount";
8250
+ name: string;
8251
+ percentage: number;
8252
+ total: Record<string, number>;
8253
+ description?: string | undefined;
8254
+ } | {
8255
+ type: "FlatAmountOffDiscount";
8256
+ name: string;
8257
+ total: Record<string, number>;
8258
+ description?: string | undefined;
8259
+ } | undefined;
8260
+ } | undefined;
8261
8261
  appliedDiscount?: {
8262
8262
  type: "PercentageOffDiscount";
8263
8263
  name: string;
@@ -8279,25 +8279,6 @@ declare const completedOrderSchema: z.ZodObject<{
8279
8279
  variationId: string;
8280
8280
  bundleId: string;
8281
8281
  price?: Record<string, number> | undefined;
8282
- variation?: {
8283
- id: string;
8284
- name: string;
8285
- originalPrice: Record<string, number>;
8286
- price: Record<string, number>;
8287
- hasDiscount: boolean;
8288
- discount?: {
8289
- type: "PercentageOffDiscount";
8290
- name: string;
8291
- percentage: number;
8292
- total: Record<string, number>;
8293
- description?: string | undefined;
8294
- } | {
8295
- type: "FlatAmountOffDiscount";
8296
- name: string;
8297
- total: Record<string, number>;
8298
- description?: string | undefined;
8299
- } | undefined;
8300
- } | undefined;
8301
8282
  bundle?: {
8302
8283
  type: "bundle";
8303
8284
  id: string;
@@ -8402,6 +8383,25 @@ declare const completedOrderSchema: z.ZodObject<{
8402
8383
  } | undefined;
8403
8384
  }[] | undefined;
8404
8385
  } | undefined;
8386
+ variation?: {
8387
+ id: string;
8388
+ name: string;
8389
+ originalPrice: Record<string, number>;
8390
+ price: Record<string, number>;
8391
+ hasDiscount: boolean;
8392
+ discount?: {
8393
+ type: "PercentageOffDiscount";
8394
+ name: string;
8395
+ percentage: number;
8396
+ total: Record<string, number>;
8397
+ description?: string | undefined;
8398
+ } | {
8399
+ type: "FlatAmountOffDiscount";
8400
+ name: string;
8401
+ total: Record<string, number>;
8402
+ description?: string | undefined;
8403
+ } | undefined;
8404
+ } | undefined;
8405
8405
  appliedDiscount?: {
8406
8406
  type: "PercentageOffDiscount";
8407
8407
  name: string;
@@ -8469,31 +8469,13 @@ declare const completedOrderSchema: z.ZodObject<{
8469
8469
  productId: string;
8470
8470
  variationId: string;
8471
8471
  price?: Record<string, number> | undefined;
8472
- variation?: {
8473
- id: string;
8474
- name: string;
8475
- originalPrice: Record<string, number>;
8476
- price: Record<string, number>;
8477
- hasDiscount: boolean;
8478
- discount?: {
8479
- type: "PercentageOffDiscount";
8480
- name: string;
8481
- percentage: number;
8482
- total: Record<string, number>;
8483
- description?: string | undefined;
8484
- } | {
8485
- type: "FlatAmountOffDiscount";
8486
- name: string;
8487
- total: Record<string, number>;
8488
- description?: string | undefined;
8489
- } | undefined;
8490
- } | undefined;
8491
8472
  product?: {
8492
8473
  id: string;
8493
8474
  name: string;
8494
8475
  tagline: string;
8495
8476
  iconUrl: string | null;
8496
8477
  owned: boolean;
8478
+ type?: void | undefined;
8497
8479
  website?: string | null | undefined;
8498
8480
  currentVersion?: string | undefined;
8499
8481
  downloads?: {
@@ -8541,7 +8523,25 @@ declare const completedOrderSchema: z.ZodObject<{
8541
8523
  description?: string | undefined;
8542
8524
  } | undefined;
8543
8525
  }[] | undefined;
8544
- type?: void | undefined;
8526
+ } | undefined;
8527
+ variation?: {
8528
+ id: string;
8529
+ name: string;
8530
+ originalPrice: Record<string, number>;
8531
+ price: Record<string, number>;
8532
+ hasDiscount: boolean;
8533
+ discount?: {
8534
+ type: "PercentageOffDiscount";
8535
+ name: string;
8536
+ percentage: number;
8537
+ total: Record<string, number>;
8538
+ description?: string | undefined;
8539
+ } | {
8540
+ type: "FlatAmountOffDiscount";
8541
+ name: string;
8542
+ total: Record<string, number>;
8543
+ description?: string | undefined;
8544
+ } | undefined;
8545
8545
  } | undefined;
8546
8546
  appliedDiscount?: {
8547
8547
  type: "PercentageOffDiscount";
@@ -8564,25 +8564,6 @@ declare const completedOrderSchema: z.ZodObject<{
8564
8564
  variationId: string;
8565
8565
  bundleId: string;
8566
8566
  price?: Record<string, number> | undefined;
8567
- variation?: {
8568
- id: string;
8569
- name: string;
8570
- originalPrice: Record<string, number>;
8571
- price: Record<string, number>;
8572
- hasDiscount: boolean;
8573
- discount?: {
8574
- type: "PercentageOffDiscount";
8575
- name: string;
8576
- percentage: number;
8577
- total: Record<string, number>;
8578
- description?: string | undefined;
8579
- } | {
8580
- type: "FlatAmountOffDiscount";
8581
- name: string;
8582
- total: Record<string, number>;
8583
- description?: string | undefined;
8584
- } | undefined;
8585
- } | undefined;
8586
8567
  bundle?: {
8587
8568
  id: string;
8588
8569
  name: string;
@@ -8596,6 +8577,7 @@ declare const completedOrderSchema: z.ZodObject<{
8596
8577
  tagline: string;
8597
8578
  iconUrl: string | null;
8598
8579
  owned: boolean;
8580
+ type?: void | undefined;
8599
8581
  website?: string | null | undefined;
8600
8582
  currentVersion?: string | undefined;
8601
8583
  downloads?: {
@@ -8643,10 +8625,10 @@ declare const completedOrderSchema: z.ZodObject<{
8643
8625
  description?: string | undefined;
8644
8626
  } | undefined;
8645
8627
  }[] | undefined;
8646
- type?: void | undefined;
8647
8628
  } & {
8648
8629
  included?: boolean | undefined;
8649
8630
  })[];
8631
+ type?: void | undefined;
8650
8632
  defaultVariation?: {
8651
8633
  id: string;
8652
8634
  name: string;
@@ -8685,7 +8667,25 @@ declare const completedOrderSchema: z.ZodObject<{
8685
8667
  description?: string | undefined;
8686
8668
  } | undefined;
8687
8669
  }[] | undefined;
8688
- type?: void | undefined;
8670
+ } | undefined;
8671
+ variation?: {
8672
+ id: string;
8673
+ name: string;
8674
+ originalPrice: Record<string, number>;
8675
+ price: Record<string, number>;
8676
+ hasDiscount: boolean;
8677
+ discount?: {
8678
+ type: "PercentageOffDiscount";
8679
+ name: string;
8680
+ percentage: number;
8681
+ total: Record<string, number>;
8682
+ description?: string | undefined;
8683
+ } | {
8684
+ type: "FlatAmountOffDiscount";
8685
+ name: string;
8686
+ total: Record<string, number>;
8687
+ description?: string | undefined;
8688
+ } | undefined;
8689
8689
  } | undefined;
8690
8690
  appliedDiscount?: {
8691
8691
  type: "PercentageOffDiscount";
@@ -9053,6 +9053,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9053
9053
  tagline: string;
9054
9054
  iconUrl: string | null;
9055
9055
  owned: boolean;
9056
+ type?: void | undefined;
9056
9057
  website?: string | null | undefined;
9057
9058
  currentVersion?: string | undefined;
9058
9059
  downloads?: {
@@ -9100,7 +9101,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9100
9101
  description?: string | undefined;
9101
9102
  } | undefined;
9102
9103
  }[] | undefined;
9103
- type?: void | undefined;
9104
9104
  }>>;
9105
9105
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9106
9106
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -9149,25 +9149,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9149
9149
  productId: string;
9150
9150
  variationId: string;
9151
9151
  price?: Record<string, number> | undefined;
9152
- variation?: {
9153
- id: string;
9154
- name: string;
9155
- originalPrice: Record<string, number>;
9156
- price: Record<string, number>;
9157
- hasDiscount: boolean;
9158
- discount?: {
9159
- type: "PercentageOffDiscount";
9160
- name: string;
9161
- percentage: number;
9162
- total: Record<string, number>;
9163
- description?: string | undefined;
9164
- } | {
9165
- type: "FlatAmountOffDiscount";
9166
- name: string;
9167
- total: Record<string, number>;
9168
- description?: string | undefined;
9169
- } | undefined;
9170
- } | undefined;
9171
9152
  product?: {
9172
9153
  type: "product";
9173
9154
  id: string;
@@ -9223,6 +9204,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9223
9204
  } | undefined;
9224
9205
  }[] | undefined;
9225
9206
  } | undefined;
9207
+ variation?: {
9208
+ id: string;
9209
+ name: string;
9210
+ originalPrice: Record<string, number>;
9211
+ price: Record<string, number>;
9212
+ hasDiscount: boolean;
9213
+ discount?: {
9214
+ type: "PercentageOffDiscount";
9215
+ name: string;
9216
+ percentage: number;
9217
+ total: Record<string, number>;
9218
+ description?: string | undefined;
9219
+ } | {
9220
+ type: "FlatAmountOffDiscount";
9221
+ name: string;
9222
+ total: Record<string, number>;
9223
+ description?: string | undefined;
9224
+ } | undefined;
9225
+ } | undefined;
9226
9226
  appliedDiscount?: {
9227
9227
  type: "PercentageOffDiscount";
9228
9228
  name: string;
@@ -9244,31 +9244,13 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9244
9244
  productId: string;
9245
9245
  variationId: string;
9246
9246
  price?: Record<string, number> | undefined;
9247
- variation?: {
9248
- id: string;
9249
- name: string;
9250
- originalPrice: Record<string, number>;
9251
- price: Record<string, number>;
9252
- hasDiscount: boolean;
9253
- discount?: {
9254
- type: "PercentageOffDiscount";
9255
- name: string;
9256
- percentage: number;
9257
- total: Record<string, number>;
9258
- description?: string | undefined;
9259
- } | {
9260
- type: "FlatAmountOffDiscount";
9261
- name: string;
9262
- total: Record<string, number>;
9263
- description?: string | undefined;
9264
- } | undefined;
9265
- } | undefined;
9266
9247
  product?: {
9267
9248
  id: string;
9268
9249
  name: string;
9269
9250
  tagline: string;
9270
9251
  iconUrl: string | null;
9271
9252
  owned: boolean;
9253
+ type?: void | undefined;
9272
9254
  website?: string | null | undefined;
9273
9255
  currentVersion?: string | undefined;
9274
9256
  downloads?: {
@@ -9316,7 +9298,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9316
9298
  description?: string | undefined;
9317
9299
  } | undefined;
9318
9300
  }[] | undefined;
9319
- type?: void | undefined;
9301
+ } | undefined;
9302
+ variation?: {
9303
+ id: string;
9304
+ name: string;
9305
+ originalPrice: Record<string, number>;
9306
+ price: Record<string, number>;
9307
+ hasDiscount: boolean;
9308
+ discount?: {
9309
+ type: "PercentageOffDiscount";
9310
+ name: string;
9311
+ percentage: number;
9312
+ total: Record<string, number>;
9313
+ description?: string | undefined;
9314
+ } | {
9315
+ type: "FlatAmountOffDiscount";
9316
+ name: string;
9317
+ total: Record<string, number>;
9318
+ description?: string | undefined;
9319
+ } | undefined;
9320
9320
  } | undefined;
9321
9321
  appliedDiscount?: {
9322
9322
  type: "PercentageOffDiscount";
@@ -9665,6 +9665,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9665
9665
  tagline: string;
9666
9666
  iconUrl: string | null;
9667
9667
  owned: boolean;
9668
+ type?: void | undefined;
9668
9669
  website?: string | null | undefined;
9669
9670
  currentVersion?: string | undefined;
9670
9671
  downloads?: {
@@ -9712,7 +9713,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9712
9713
  description?: string | undefined;
9713
9714
  } | undefined;
9714
9715
  }[] | undefined;
9715
- type?: void | undefined;
9716
9716
  }>, z.ZodObject<{
9717
9717
  included: z.ZodOptional<z.ZodBoolean>;
9718
9718
  }, "strip", z.ZodTypeAny, {
@@ -9991,6 +9991,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
9991
9991
  tagline: string;
9992
9992
  iconUrl: string | null;
9993
9993
  owned: boolean;
9994
+ type?: void | undefined;
9994
9995
  website?: string | null | undefined;
9995
9996
  currentVersion?: string | undefined;
9996
9997
  downloads?: {
@@ -10038,10 +10039,10 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10038
10039
  description?: string | undefined;
10039
10040
  } | undefined;
10040
10041
  }[] | undefined;
10041
- type?: void | undefined;
10042
10042
  } & {
10043
10043
  included?: boolean | undefined;
10044
10044
  })[];
10045
+ type?: void | undefined;
10045
10046
  defaultVariation?: {
10046
10047
  id: string;
10047
10048
  name: string;
@@ -10080,7 +10081,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10080
10081
  description?: string | undefined;
10081
10082
  } | undefined;
10082
10083
  }[] | undefined;
10083
- type?: void | undefined;
10084
10084
  }>>;
10085
10085
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10086
10086
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -10128,26 +10128,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10128
10128
  quantity: number;
10129
10129
  variationId: string;
10130
10130
  bundleId: string;
10131
- price?: Record<string, number> | undefined;
10132
- variation?: {
10133
- id: string;
10134
- name: string;
10135
- originalPrice: Record<string, number>;
10136
- price: Record<string, number>;
10137
- hasDiscount: boolean;
10138
- discount?: {
10139
- type: "PercentageOffDiscount";
10140
- name: string;
10141
- percentage: number;
10142
- total: Record<string, number>;
10143
- description?: string | undefined;
10144
- } | {
10145
- type: "FlatAmountOffDiscount";
10146
- name: string;
10147
- total: Record<string, number>;
10148
- description?: string | undefined;
10149
- } | undefined;
10150
- } | undefined;
10131
+ price?: Record<string, number> | undefined;
10151
10132
  bundle?: {
10152
10133
  type: "bundle";
10153
10134
  id: string;
@@ -10252,6 +10233,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10252
10233
  } | undefined;
10253
10234
  }[] | undefined;
10254
10235
  } | undefined;
10236
+ variation?: {
10237
+ id: string;
10238
+ name: string;
10239
+ originalPrice: Record<string, number>;
10240
+ price: Record<string, number>;
10241
+ hasDiscount: boolean;
10242
+ discount?: {
10243
+ type: "PercentageOffDiscount";
10244
+ name: string;
10245
+ percentage: number;
10246
+ total: Record<string, number>;
10247
+ description?: string | undefined;
10248
+ } | {
10249
+ type: "FlatAmountOffDiscount";
10250
+ name: string;
10251
+ total: Record<string, number>;
10252
+ description?: string | undefined;
10253
+ } | undefined;
10254
+ } | undefined;
10255
10255
  appliedDiscount?: {
10256
10256
  type: "PercentageOffDiscount";
10257
10257
  name: string;
@@ -10273,25 +10273,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10273
10273
  variationId: string;
10274
10274
  bundleId: string;
10275
10275
  price?: Record<string, number> | undefined;
10276
- variation?: {
10277
- id: string;
10278
- name: string;
10279
- originalPrice: Record<string, number>;
10280
- price: Record<string, number>;
10281
- hasDiscount: boolean;
10282
- discount?: {
10283
- type: "PercentageOffDiscount";
10284
- name: string;
10285
- percentage: number;
10286
- total: Record<string, number>;
10287
- description?: string | undefined;
10288
- } | {
10289
- type: "FlatAmountOffDiscount";
10290
- name: string;
10291
- total: Record<string, number>;
10292
- description?: string | undefined;
10293
- } | undefined;
10294
- } | undefined;
10295
10276
  bundle?: {
10296
10277
  id: string;
10297
10278
  name: string;
@@ -10305,6 +10286,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10305
10286
  tagline: string;
10306
10287
  iconUrl: string | null;
10307
10288
  owned: boolean;
10289
+ type?: void | undefined;
10308
10290
  website?: string | null | undefined;
10309
10291
  currentVersion?: string | undefined;
10310
10292
  downloads?: {
@@ -10352,10 +10334,10 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10352
10334
  description?: string | undefined;
10353
10335
  } | undefined;
10354
10336
  }[] | undefined;
10355
- type?: void | undefined;
10356
10337
  } & {
10357
10338
  included?: boolean | undefined;
10358
10339
  })[];
10340
+ type?: void | undefined;
10359
10341
  defaultVariation?: {
10360
10342
  id: string;
10361
10343
  name: string;
@@ -10394,7 +10376,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10394
10376
  description?: string | undefined;
10395
10377
  } | undefined;
10396
10378
  }[] | undefined;
10397
- type?: void | undefined;
10379
+ } | undefined;
10380
+ variation?: {
10381
+ id: string;
10382
+ name: string;
10383
+ originalPrice: Record<string, number>;
10384
+ price: Record<string, number>;
10385
+ hasDiscount: boolean;
10386
+ discount?: {
10387
+ type: "PercentageOffDiscount";
10388
+ name: string;
10389
+ percentage: number;
10390
+ total: Record<string, number>;
10391
+ description?: string | undefined;
10392
+ } | {
10393
+ type: "FlatAmountOffDiscount";
10394
+ name: string;
10395
+ total: Record<string, number>;
10396
+ description?: string | undefined;
10397
+ } | undefined;
10398
10398
  } | undefined;
10399
10399
  appliedDiscount?: {
10400
10400
  type: "PercentageOffDiscount";
@@ -10436,25 +10436,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10436
10436
  productId: string;
10437
10437
  variationId: string;
10438
10438
  price?: Record<string, number> | undefined;
10439
- variation?: {
10440
- id: string;
10441
- name: string;
10442
- originalPrice: Record<string, number>;
10443
- price: Record<string, number>;
10444
- hasDiscount: boolean;
10445
- discount?: {
10446
- type: "PercentageOffDiscount";
10447
- name: string;
10448
- percentage: number;
10449
- total: Record<string, number>;
10450
- description?: string | undefined;
10451
- } | {
10452
- type: "FlatAmountOffDiscount";
10453
- name: string;
10454
- total: Record<string, number>;
10455
- description?: string | undefined;
10456
- } | undefined;
10457
- } | undefined;
10458
10439
  product?: {
10459
10440
  type: "product";
10460
10441
  id: string;
@@ -10510,6 +10491,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10510
10491
  } | undefined;
10511
10492
  }[] | undefined;
10512
10493
  } | undefined;
10494
+ variation?: {
10495
+ id: string;
10496
+ name: string;
10497
+ originalPrice: Record<string, number>;
10498
+ price: Record<string, number>;
10499
+ hasDiscount: boolean;
10500
+ discount?: {
10501
+ type: "PercentageOffDiscount";
10502
+ name: string;
10503
+ percentage: number;
10504
+ total: Record<string, number>;
10505
+ description?: string | undefined;
10506
+ } | {
10507
+ type: "FlatAmountOffDiscount";
10508
+ name: string;
10509
+ total: Record<string, number>;
10510
+ description?: string | undefined;
10511
+ } | undefined;
10512
+ } | undefined;
10513
10513
  appliedDiscount?: {
10514
10514
  type: "PercentageOffDiscount";
10515
10515
  name: string;
@@ -10531,25 +10531,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10531
10531
  variationId: string;
10532
10532
  bundleId: string;
10533
10533
  price?: Record<string, number> | undefined;
10534
- variation?: {
10535
- id: string;
10536
- name: string;
10537
- originalPrice: Record<string, number>;
10538
- price: Record<string, number>;
10539
- hasDiscount: boolean;
10540
- discount?: {
10541
- type: "PercentageOffDiscount";
10542
- name: string;
10543
- percentage: number;
10544
- total: Record<string, number>;
10545
- description?: string | undefined;
10546
- } | {
10547
- type: "FlatAmountOffDiscount";
10548
- name: string;
10549
- total: Record<string, number>;
10550
- description?: string | undefined;
10551
- } | undefined;
10552
- } | undefined;
10553
10534
  bundle?: {
10554
10535
  type: "bundle";
10555
10536
  id: string;
@@ -10654,6 +10635,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10654
10635
  } | undefined;
10655
10636
  }[] | undefined;
10656
10637
  } | undefined;
10638
+ variation?: {
10639
+ id: string;
10640
+ name: string;
10641
+ originalPrice: Record<string, number>;
10642
+ price: Record<string, number>;
10643
+ hasDiscount: boolean;
10644
+ discount?: {
10645
+ type: "PercentageOffDiscount";
10646
+ name: string;
10647
+ percentage: number;
10648
+ total: Record<string, number>;
10649
+ description?: string | undefined;
10650
+ } | {
10651
+ type: "FlatAmountOffDiscount";
10652
+ name: string;
10653
+ total: Record<string, number>;
10654
+ description?: string | undefined;
10655
+ } | undefined;
10656
+ } | undefined;
10657
10657
  appliedDiscount?: {
10658
10658
  type: "PercentageOffDiscount";
10659
10659
  name: string;
@@ -10687,31 +10687,13 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10687
10687
  productId: string;
10688
10688
  variationId: string;
10689
10689
  price?: Record<string, number> | undefined;
10690
- variation?: {
10691
- id: string;
10692
- name: string;
10693
- originalPrice: Record<string, number>;
10694
- price: Record<string, number>;
10695
- hasDiscount: boolean;
10696
- discount?: {
10697
- type: "PercentageOffDiscount";
10698
- name: string;
10699
- percentage: number;
10700
- total: Record<string, number>;
10701
- description?: string | undefined;
10702
- } | {
10703
- type: "FlatAmountOffDiscount";
10704
- name: string;
10705
- total: Record<string, number>;
10706
- description?: string | undefined;
10707
- } | undefined;
10708
- } | undefined;
10709
10690
  product?: {
10710
10691
  id: string;
10711
10692
  name: string;
10712
10693
  tagline: string;
10713
10694
  iconUrl: string | null;
10714
10695
  owned: boolean;
10696
+ type?: void | undefined;
10715
10697
  website?: string | null | undefined;
10716
10698
  currentVersion?: string | undefined;
10717
10699
  downloads?: {
@@ -10759,7 +10741,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10759
10741
  description?: string | undefined;
10760
10742
  } | undefined;
10761
10743
  }[] | undefined;
10762
- type?: void | undefined;
10744
+ } | undefined;
10745
+ variation?: {
10746
+ id: string;
10747
+ name: string;
10748
+ originalPrice: Record<string, number>;
10749
+ price: Record<string, number>;
10750
+ hasDiscount: boolean;
10751
+ discount?: {
10752
+ type: "PercentageOffDiscount";
10753
+ name: string;
10754
+ percentage: number;
10755
+ total: Record<string, number>;
10756
+ description?: string | undefined;
10757
+ } | {
10758
+ type: "FlatAmountOffDiscount";
10759
+ name: string;
10760
+ total: Record<string, number>;
10761
+ description?: string | undefined;
10762
+ } | undefined;
10763
10763
  } | undefined;
10764
10764
  appliedDiscount?: {
10765
10765
  type: "PercentageOffDiscount";
@@ -10782,25 +10782,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10782
10782
  variationId: string;
10783
10783
  bundleId: string;
10784
10784
  price?: Record<string, number> | undefined;
10785
- variation?: {
10786
- id: string;
10787
- name: string;
10788
- originalPrice: Record<string, number>;
10789
- price: Record<string, number>;
10790
- hasDiscount: boolean;
10791
- discount?: {
10792
- type: "PercentageOffDiscount";
10793
- name: string;
10794
- percentage: number;
10795
- total: Record<string, number>;
10796
- description?: string | undefined;
10797
- } | {
10798
- type: "FlatAmountOffDiscount";
10799
- name: string;
10800
- total: Record<string, number>;
10801
- description?: string | undefined;
10802
- } | undefined;
10803
- } | undefined;
10804
10785
  bundle?: {
10805
10786
  id: string;
10806
10787
  name: string;
@@ -10814,6 +10795,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10814
10795
  tagline: string;
10815
10796
  iconUrl: string | null;
10816
10797
  owned: boolean;
10798
+ type?: void | undefined;
10817
10799
  website?: string | null | undefined;
10818
10800
  currentVersion?: string | undefined;
10819
10801
  downloads?: {
@@ -10861,10 +10843,10 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10861
10843
  description?: string | undefined;
10862
10844
  } | undefined;
10863
10845
  }[] | undefined;
10864
- type?: void | undefined;
10865
10846
  } & {
10866
10847
  included?: boolean | undefined;
10867
10848
  })[];
10849
+ type?: void | undefined;
10868
10850
  defaultVariation?: {
10869
10851
  id: string;
10870
10852
  name: string;
@@ -10903,7 +10885,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
10903
10885
  description?: string | undefined;
10904
10886
  } | undefined;
10905
10887
  }[] | undefined;
10906
- type?: void | undefined;
10888
+ } | undefined;
10889
+ variation?: {
10890
+ id: string;
10891
+ name: string;
10892
+ originalPrice: Record<string, number>;
10893
+ price: Record<string, number>;
10894
+ hasDiscount: boolean;
10895
+ discount?: {
10896
+ type: "PercentageOffDiscount";
10897
+ name: string;
10898
+ percentage: number;
10899
+ total: Record<string, number>;
10900
+ description?: string | undefined;
10901
+ } | {
10902
+ type: "FlatAmountOffDiscount";
10903
+ name: string;
10904
+ total: Record<string, number>;
10905
+ description?: string | undefined;
10906
+ } | undefined;
10907
10907
  } | undefined;
10908
10908
  appliedDiscount?: {
10909
10909
  type: "PercentageOffDiscount";
@@ -11406,6 +11406,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
11406
11406
  tagline: string;
11407
11407
  iconUrl: string | null;
11408
11408
  owned: boolean;
11409
+ type?: void | undefined;
11409
11410
  website?: string | null | undefined;
11410
11411
  currentVersion?: string | undefined;
11411
11412
  downloads?: {
@@ -11453,7 +11454,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
11453
11454
  description?: string | undefined;
11454
11455
  } | undefined;
11455
11456
  }[] | undefined;
11456
- type?: void | undefined;
11457
11457
  }>>;
11458
11458
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11459
11459
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -11487,40 +11487,21 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
11487
11487
  name: string;
11488
11488
  isExclusive: boolean;
11489
11489
  description?: string | undefined;
11490
- total?: Record<string, number> | undefined;
11491
- }, {
11492
- type: "FlatAmountOffDiscount";
11493
- name: string;
11494
- isExclusive: boolean;
11495
- description?: string | undefined;
11496
- total?: Record<string, number> | undefined;
11497
- }>]>>;
11498
- }, "strip", z.ZodTypeAny, {
11499
- type: "Product";
11500
- id: string;
11501
- quantity: number;
11502
- productId: string;
11503
- variationId: string;
11504
- price?: Record<string, number> | undefined;
11505
- variation?: {
11506
- id: string;
11507
- name: string;
11508
- originalPrice: Record<string, number>;
11509
- price: Record<string, number>;
11510
- hasDiscount: boolean;
11511
- discount?: {
11512
- type: "PercentageOffDiscount";
11513
- name: string;
11514
- percentage: number;
11515
- total: Record<string, number>;
11516
- description?: string | undefined;
11517
- } | {
11518
- type: "FlatAmountOffDiscount";
11519
- name: string;
11520
- total: Record<string, number>;
11521
- description?: string | undefined;
11522
- } | undefined;
11523
- } | undefined;
11490
+ total?: Record<string, number> | undefined;
11491
+ }, {
11492
+ type: "FlatAmountOffDiscount";
11493
+ name: string;
11494
+ isExclusive: boolean;
11495
+ description?: string | undefined;
11496
+ total?: Record<string, number> | undefined;
11497
+ }>]>>;
11498
+ }, "strip", z.ZodTypeAny, {
11499
+ type: "Product";
11500
+ id: string;
11501
+ quantity: number;
11502
+ productId: string;
11503
+ variationId: string;
11504
+ price?: Record<string, number> | undefined;
11524
11505
  product?: {
11525
11506
  type: "product";
11526
11507
  id: string;
@@ -11576,6 +11557,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
11576
11557
  } | undefined;
11577
11558
  }[] | undefined;
11578
11559
  } | undefined;
11560
+ variation?: {
11561
+ id: string;
11562
+ name: string;
11563
+ originalPrice: Record<string, number>;
11564
+ price: Record<string, number>;
11565
+ hasDiscount: boolean;
11566
+ discount?: {
11567
+ type: "PercentageOffDiscount";
11568
+ name: string;
11569
+ percentage: number;
11570
+ total: Record<string, number>;
11571
+ description?: string | undefined;
11572
+ } | {
11573
+ type: "FlatAmountOffDiscount";
11574
+ name: string;
11575
+ total: Record<string, number>;
11576
+ description?: string | undefined;
11577
+ } | undefined;
11578
+ } | undefined;
11579
11579
  appliedDiscount?: {
11580
11580
  type: "PercentageOffDiscount";
11581
11581
  name: string;
@@ -11597,31 +11597,13 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
11597
11597
  productId: string;
11598
11598
  variationId: string;
11599
11599
  price?: Record<string, number> | undefined;
11600
- variation?: {
11601
- id: string;
11602
- name: string;
11603
- originalPrice: Record<string, number>;
11604
- price: Record<string, number>;
11605
- hasDiscount: boolean;
11606
- discount?: {
11607
- type: "PercentageOffDiscount";
11608
- name: string;
11609
- percentage: number;
11610
- total: Record<string, number>;
11611
- description?: string | undefined;
11612
- } | {
11613
- type: "FlatAmountOffDiscount";
11614
- name: string;
11615
- total: Record<string, number>;
11616
- description?: string | undefined;
11617
- } | undefined;
11618
- } | undefined;
11619
11600
  product?: {
11620
11601
  id: string;
11621
11602
  name: string;
11622
11603
  tagline: string;
11623
11604
  iconUrl: string | null;
11624
11605
  owned: boolean;
11606
+ type?: void | undefined;
11625
11607
  website?: string | null | undefined;
11626
11608
  currentVersion?: string | undefined;
11627
11609
  downloads?: {
@@ -11669,7 +11651,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
11669
11651
  description?: string | undefined;
11670
11652
  } | undefined;
11671
11653
  }[] | undefined;
11672
- type?: void | undefined;
11654
+ } | undefined;
11655
+ variation?: {
11656
+ id: string;
11657
+ name: string;
11658
+ originalPrice: Record<string, number>;
11659
+ price: Record<string, number>;
11660
+ hasDiscount: boolean;
11661
+ discount?: {
11662
+ type: "PercentageOffDiscount";
11663
+ name: string;
11664
+ percentage: number;
11665
+ total: Record<string, number>;
11666
+ description?: string | undefined;
11667
+ } | {
11668
+ type: "FlatAmountOffDiscount";
11669
+ name: string;
11670
+ total: Record<string, number>;
11671
+ description?: string | undefined;
11672
+ } | undefined;
11673
11673
  } | undefined;
11674
11674
  appliedDiscount?: {
11675
11675
  type: "PercentageOffDiscount";
@@ -12018,6 +12018,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12018
12018
  tagline: string;
12019
12019
  iconUrl: string | null;
12020
12020
  owned: boolean;
12021
+ type?: void | undefined;
12021
12022
  website?: string | null | undefined;
12022
12023
  currentVersion?: string | undefined;
12023
12024
  downloads?: {
@@ -12065,7 +12066,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12065
12066
  description?: string | undefined;
12066
12067
  } | undefined;
12067
12068
  }[] | undefined;
12068
- type?: void | undefined;
12069
12069
  }>, z.ZodObject<{
12070
12070
  included: z.ZodOptional<z.ZodBoolean>;
12071
12071
  }, "strip", z.ZodTypeAny, {
@@ -12344,6 +12344,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12344
12344
  tagline: string;
12345
12345
  iconUrl: string | null;
12346
12346
  owned: boolean;
12347
+ type?: void | undefined;
12347
12348
  website?: string | null | undefined;
12348
12349
  currentVersion?: string | undefined;
12349
12350
  downloads?: {
@@ -12391,10 +12392,10 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12391
12392
  description?: string | undefined;
12392
12393
  } | undefined;
12393
12394
  }[] | undefined;
12394
- type?: void | undefined;
12395
12395
  } & {
12396
12396
  included?: boolean | undefined;
12397
12397
  })[];
12398
+ type?: void | undefined;
12398
12399
  defaultVariation?: {
12399
12400
  id: string;
12400
12401
  name: string;
@@ -12433,7 +12434,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12433
12434
  description?: string | undefined;
12434
12435
  } | undefined;
12435
12436
  }[] | undefined;
12436
- type?: void | undefined;
12437
12437
  }>>;
12438
12438
  appliedDiscount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12439
12439
  type: z.ZodLiteral<"PercentageOffDiscount">;
@@ -12482,25 +12482,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12482
12482
  variationId: string;
12483
12483
  bundleId: string;
12484
12484
  price?: Record<string, number> | undefined;
12485
- variation?: {
12486
- id: string;
12487
- name: string;
12488
- originalPrice: Record<string, number>;
12489
- price: Record<string, number>;
12490
- hasDiscount: boolean;
12491
- discount?: {
12492
- type: "PercentageOffDiscount";
12493
- name: string;
12494
- percentage: number;
12495
- total: Record<string, number>;
12496
- description?: string | undefined;
12497
- } | {
12498
- type: "FlatAmountOffDiscount";
12499
- name: string;
12500
- total: Record<string, number>;
12501
- description?: string | undefined;
12502
- } | undefined;
12503
- } | undefined;
12504
12485
  bundle?: {
12505
12486
  type: "bundle";
12506
12487
  id: string;
@@ -12605,6 +12586,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12605
12586
  } | undefined;
12606
12587
  }[] | undefined;
12607
12588
  } | undefined;
12589
+ variation?: {
12590
+ id: string;
12591
+ name: string;
12592
+ originalPrice: Record<string, number>;
12593
+ price: Record<string, number>;
12594
+ hasDiscount: boolean;
12595
+ discount?: {
12596
+ type: "PercentageOffDiscount";
12597
+ name: string;
12598
+ percentage: number;
12599
+ total: Record<string, number>;
12600
+ description?: string | undefined;
12601
+ } | {
12602
+ type: "FlatAmountOffDiscount";
12603
+ name: string;
12604
+ total: Record<string, number>;
12605
+ description?: string | undefined;
12606
+ } | undefined;
12607
+ } | undefined;
12608
12608
  appliedDiscount?: {
12609
12609
  type: "PercentageOffDiscount";
12610
12610
  name: string;
@@ -12626,25 +12626,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12626
12626
  variationId: string;
12627
12627
  bundleId: string;
12628
12628
  price?: Record<string, number> | undefined;
12629
- variation?: {
12630
- id: string;
12631
- name: string;
12632
- originalPrice: Record<string, number>;
12633
- price: Record<string, number>;
12634
- hasDiscount: boolean;
12635
- discount?: {
12636
- type: "PercentageOffDiscount";
12637
- name: string;
12638
- percentage: number;
12639
- total: Record<string, number>;
12640
- description?: string | undefined;
12641
- } | {
12642
- type: "FlatAmountOffDiscount";
12643
- name: string;
12644
- total: Record<string, number>;
12645
- description?: string | undefined;
12646
- } | undefined;
12647
- } | undefined;
12648
12629
  bundle?: {
12649
12630
  id: string;
12650
12631
  name: string;
@@ -12658,6 +12639,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12658
12639
  tagline: string;
12659
12640
  iconUrl: string | null;
12660
12641
  owned: boolean;
12642
+ type?: void | undefined;
12661
12643
  website?: string | null | undefined;
12662
12644
  currentVersion?: string | undefined;
12663
12645
  downloads?: {
@@ -12705,10 +12687,10 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12705
12687
  description?: string | undefined;
12706
12688
  } | undefined;
12707
12689
  }[] | undefined;
12708
- type?: void | undefined;
12709
12690
  } & {
12710
12691
  included?: boolean | undefined;
12711
12692
  })[];
12693
+ type?: void | undefined;
12712
12694
  defaultVariation?: {
12713
12695
  id: string;
12714
12696
  name: string;
@@ -12747,7 +12729,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12747
12729
  description?: string | undefined;
12748
12730
  } | undefined;
12749
12731
  }[] | undefined;
12750
- type?: void | undefined;
12732
+ } | undefined;
12733
+ variation?: {
12734
+ id: string;
12735
+ name: string;
12736
+ originalPrice: Record<string, number>;
12737
+ price: Record<string, number>;
12738
+ hasDiscount: boolean;
12739
+ discount?: {
12740
+ type: "PercentageOffDiscount";
12741
+ name: string;
12742
+ percentage: number;
12743
+ total: Record<string, number>;
12744
+ description?: string | undefined;
12745
+ } | {
12746
+ type: "FlatAmountOffDiscount";
12747
+ name: string;
12748
+ total: Record<string, number>;
12749
+ description?: string | undefined;
12750
+ } | undefined;
12751
12751
  } | undefined;
12752
12752
  appliedDiscount?: {
12753
12753
  type: "PercentageOffDiscount";
@@ -12809,25 +12809,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12809
12809
  productId: string;
12810
12810
  variationId: string;
12811
12811
  price?: Record<string, number> | undefined;
12812
- variation?: {
12813
- id: string;
12814
- name: string;
12815
- originalPrice: Record<string, number>;
12816
- price: Record<string, number>;
12817
- hasDiscount: boolean;
12818
- discount?: {
12819
- type: "PercentageOffDiscount";
12820
- name: string;
12821
- percentage: number;
12822
- total: Record<string, number>;
12823
- description?: string | undefined;
12824
- } | {
12825
- type: "FlatAmountOffDiscount";
12826
- name: string;
12827
- total: Record<string, number>;
12828
- description?: string | undefined;
12829
- } | undefined;
12830
- } | undefined;
12831
12812
  product?: {
12832
12813
  type: "product";
12833
12814
  id: string;
@@ -12883,6 +12864,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12883
12864
  } | undefined;
12884
12865
  }[] | undefined;
12885
12866
  } | undefined;
12867
+ variation?: {
12868
+ id: string;
12869
+ name: string;
12870
+ originalPrice: Record<string, number>;
12871
+ price: Record<string, number>;
12872
+ hasDiscount: boolean;
12873
+ discount?: {
12874
+ type: "PercentageOffDiscount";
12875
+ name: string;
12876
+ percentage: number;
12877
+ total: Record<string, number>;
12878
+ description?: string | undefined;
12879
+ } | {
12880
+ type: "FlatAmountOffDiscount";
12881
+ name: string;
12882
+ total: Record<string, number>;
12883
+ description?: string | undefined;
12884
+ } | undefined;
12885
+ } | undefined;
12886
12886
  appliedDiscount?: {
12887
12887
  type: "PercentageOffDiscount";
12888
12888
  name: string;
@@ -12904,25 +12904,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
12904
12904
  variationId: string;
12905
12905
  bundleId: string;
12906
12906
  price?: Record<string, number> | undefined;
12907
- variation?: {
12908
- id: string;
12909
- name: string;
12910
- originalPrice: Record<string, number>;
12911
- price: Record<string, number>;
12912
- hasDiscount: boolean;
12913
- discount?: {
12914
- type: "PercentageOffDiscount";
12915
- name: string;
12916
- percentage: number;
12917
- total: Record<string, number>;
12918
- description?: string | undefined;
12919
- } | {
12920
- type: "FlatAmountOffDiscount";
12921
- name: string;
12922
- total: Record<string, number>;
12923
- description?: string | undefined;
12924
- } | undefined;
12925
- } | undefined;
12926
12907
  bundle?: {
12927
12908
  type: "bundle";
12928
12909
  id: string;
@@ -13027,6 +13008,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
13027
13008
  } | undefined;
13028
13009
  }[] | undefined;
13029
13010
  } | undefined;
13011
+ variation?: {
13012
+ id: string;
13013
+ name: string;
13014
+ originalPrice: Record<string, number>;
13015
+ price: Record<string, number>;
13016
+ hasDiscount: boolean;
13017
+ discount?: {
13018
+ type: "PercentageOffDiscount";
13019
+ name: string;
13020
+ percentage: number;
13021
+ total: Record<string, number>;
13022
+ description?: string | undefined;
13023
+ } | {
13024
+ type: "FlatAmountOffDiscount";
13025
+ name: string;
13026
+ total: Record<string, number>;
13027
+ description?: string | undefined;
13028
+ } | undefined;
13029
+ } | undefined;
13030
13030
  appliedDiscount?: {
13031
13031
  type: "PercentageOffDiscount";
13032
13032
  name: string;
@@ -13094,31 +13094,13 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
13094
13094
  productId: string;
13095
13095
  variationId: string;
13096
13096
  price?: Record<string, number> | undefined;
13097
- variation?: {
13098
- id: string;
13099
- name: string;
13100
- originalPrice: Record<string, number>;
13101
- price: Record<string, number>;
13102
- hasDiscount: boolean;
13103
- discount?: {
13104
- type: "PercentageOffDiscount";
13105
- name: string;
13106
- percentage: number;
13107
- total: Record<string, number>;
13108
- description?: string | undefined;
13109
- } | {
13110
- type: "FlatAmountOffDiscount";
13111
- name: string;
13112
- total: Record<string, number>;
13113
- description?: string | undefined;
13114
- } | undefined;
13115
- } | undefined;
13116
13097
  product?: {
13117
13098
  id: string;
13118
13099
  name: string;
13119
13100
  tagline: string;
13120
13101
  iconUrl: string | null;
13121
13102
  owned: boolean;
13103
+ type?: void | undefined;
13122
13104
  website?: string | null | undefined;
13123
13105
  currentVersion?: string | undefined;
13124
13106
  downloads?: {
@@ -13166,7 +13148,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
13166
13148
  description?: string | undefined;
13167
13149
  } | undefined;
13168
13150
  }[] | undefined;
13169
- type?: void | undefined;
13151
+ } | undefined;
13152
+ variation?: {
13153
+ id: string;
13154
+ name: string;
13155
+ originalPrice: Record<string, number>;
13156
+ price: Record<string, number>;
13157
+ hasDiscount: boolean;
13158
+ discount?: {
13159
+ type: "PercentageOffDiscount";
13160
+ name: string;
13161
+ percentage: number;
13162
+ total: Record<string, number>;
13163
+ description?: string | undefined;
13164
+ } | {
13165
+ type: "FlatAmountOffDiscount";
13166
+ name: string;
13167
+ total: Record<string, number>;
13168
+ description?: string | undefined;
13169
+ } | undefined;
13170
13170
  } | undefined;
13171
13171
  appliedDiscount?: {
13172
13172
  type: "PercentageOffDiscount";
@@ -13189,25 +13189,6 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
13189
13189
  variationId: string;
13190
13190
  bundleId: string;
13191
13191
  price?: Record<string, number> | undefined;
13192
- variation?: {
13193
- id: string;
13194
- name: string;
13195
- originalPrice: Record<string, number>;
13196
- price: Record<string, number>;
13197
- hasDiscount: boolean;
13198
- discount?: {
13199
- type: "PercentageOffDiscount";
13200
- name: string;
13201
- percentage: number;
13202
- total: Record<string, number>;
13203
- description?: string | undefined;
13204
- } | {
13205
- type: "FlatAmountOffDiscount";
13206
- name: string;
13207
- total: Record<string, number>;
13208
- description?: string | undefined;
13209
- } | undefined;
13210
- } | undefined;
13211
13192
  bundle?: {
13212
13193
  id: string;
13213
13194
  name: string;
@@ -13221,6 +13202,7 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
13221
13202
  tagline: string;
13222
13203
  iconUrl: string | null;
13223
13204
  owned: boolean;
13205
+ type?: void | undefined;
13224
13206
  website?: string | null | undefined;
13225
13207
  currentVersion?: string | undefined;
13226
13208
  downloads?: {
@@ -13268,10 +13250,10 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
13268
13250
  description?: string | undefined;
13269
13251
  } | undefined;
13270
13252
  }[] | undefined;
13271
- type?: void | undefined;
13272
13253
  } & {
13273
13254
  included?: boolean | undefined;
13274
13255
  })[];
13256
+ type?: void | undefined;
13275
13257
  defaultVariation?: {
13276
13258
  id: string;
13277
13259
  name: string;
@@ -13310,7 +13292,25 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
13310
13292
  description?: string | undefined;
13311
13293
  } | undefined;
13312
13294
  }[] | undefined;
13313
- type?: void | undefined;
13295
+ } | undefined;
13296
+ variation?: {
13297
+ id: string;
13298
+ name: string;
13299
+ originalPrice: Record<string, number>;
13300
+ price: Record<string, number>;
13301
+ hasDiscount: boolean;
13302
+ discount?: {
13303
+ type: "PercentageOffDiscount";
13304
+ name: string;
13305
+ percentage: number;
13306
+ total: Record<string, number>;
13307
+ description?: string | undefined;
13308
+ } | {
13309
+ type: "FlatAmountOffDiscount";
13310
+ name: string;
13311
+ total: Record<string, number>;
13312
+ description?: string | undefined;
13313
+ } | undefined;
13314
13314
  } | undefined;
13315
13315
  appliedDiscount?: {
13316
13316
  type: "PercentageOffDiscount";
@@ -13375,25 +13375,6 @@ declare class OrderEndpoints {
13375
13375
  productId: string;
13376
13376
  variationId: string;
13377
13377
  price?: Record<string, number> | undefined;
13378
- variation?: {
13379
- id: string;
13380
- name: string;
13381
- originalPrice: Record<string, number>;
13382
- price: Record<string, number>;
13383
- hasDiscount: boolean;
13384
- discount?: {
13385
- type: "PercentageOffDiscount";
13386
- name: string;
13387
- percentage: number;
13388
- total: Record<string, number>;
13389
- description?: string | undefined;
13390
- } | {
13391
- type: "FlatAmountOffDiscount";
13392
- name: string;
13393
- total: Record<string, number>;
13394
- description?: string | undefined;
13395
- } | undefined;
13396
- } | undefined;
13397
13378
  product?: {
13398
13379
  type: "product";
13399
13380
  id: string;
@@ -13449,6 +13430,25 @@ declare class OrderEndpoints {
13449
13430
  } | undefined;
13450
13431
  }[] | undefined;
13451
13432
  } | undefined;
13433
+ variation?: {
13434
+ id: string;
13435
+ name: string;
13436
+ originalPrice: Record<string, number>;
13437
+ price: Record<string, number>;
13438
+ hasDiscount: boolean;
13439
+ discount?: {
13440
+ type: "PercentageOffDiscount";
13441
+ name: string;
13442
+ percentage: number;
13443
+ total: Record<string, number>;
13444
+ description?: string | undefined;
13445
+ } | {
13446
+ type: "FlatAmountOffDiscount";
13447
+ name: string;
13448
+ total: Record<string, number>;
13449
+ description?: string | undefined;
13450
+ } | undefined;
13451
+ } | undefined;
13452
13452
  appliedDiscount?: {
13453
13453
  type: "PercentageOffDiscount";
13454
13454
  name: string;
@@ -13470,25 +13470,6 @@ declare class OrderEndpoints {
13470
13470
  variationId: string;
13471
13471
  bundleId: string;
13472
13472
  price?: Record<string, number> | undefined;
13473
- variation?: {
13474
- id: string;
13475
- name: string;
13476
- originalPrice: Record<string, number>;
13477
- price: Record<string, number>;
13478
- hasDiscount: boolean;
13479
- discount?: {
13480
- type: "PercentageOffDiscount";
13481
- name: string;
13482
- percentage: number;
13483
- total: Record<string, number>;
13484
- description?: string | undefined;
13485
- } | {
13486
- type: "FlatAmountOffDiscount";
13487
- name: string;
13488
- total: Record<string, number>;
13489
- description?: string | undefined;
13490
- } | undefined;
13491
- } | undefined;
13492
13473
  bundle?: {
13493
13474
  type: "bundle";
13494
13475
  id: string;
@@ -13593,6 +13574,25 @@ declare class OrderEndpoints {
13593
13574
  } | undefined;
13594
13575
  }[] | undefined;
13595
13576
  } | undefined;
13577
+ variation?: {
13578
+ id: string;
13579
+ name: string;
13580
+ originalPrice: Record<string, number>;
13581
+ price: Record<string, number>;
13582
+ hasDiscount: boolean;
13583
+ discount?: {
13584
+ type: "PercentageOffDiscount";
13585
+ name: string;
13586
+ percentage: number;
13587
+ total: Record<string, number>;
13588
+ description?: string | undefined;
13589
+ } | {
13590
+ type: "FlatAmountOffDiscount";
13591
+ name: string;
13592
+ total: Record<string, number>;
13593
+ description?: string | undefined;
13594
+ } | undefined;
13595
+ } | undefined;
13596
13596
  appliedDiscount?: {
13597
13597
  type: "PercentageOffDiscount";
13598
13598
  name: string;
@@ -13648,25 +13648,6 @@ declare class OrderEndpoints {
13648
13648
  productId: string;
13649
13649
  variationId: string;
13650
13650
  price?: Record<string, number> | undefined;
13651
- variation?: {
13652
- id: string;
13653
- name: string;
13654
- originalPrice: Record<string, number>;
13655
- price: Record<string, number>;
13656
- hasDiscount: boolean;
13657
- discount?: {
13658
- type: "PercentageOffDiscount";
13659
- name: string;
13660
- percentage: number;
13661
- total: Record<string, number>;
13662
- description?: string | undefined;
13663
- } | {
13664
- type: "FlatAmountOffDiscount";
13665
- name: string;
13666
- total: Record<string, number>;
13667
- description?: string | undefined;
13668
- } | undefined;
13669
- } | undefined;
13670
13651
  product?: {
13671
13652
  type: "product";
13672
13653
  id: string;
@@ -13722,6 +13703,25 @@ declare class OrderEndpoints {
13722
13703
  } | undefined;
13723
13704
  }[] | undefined;
13724
13705
  } | undefined;
13706
+ variation?: {
13707
+ id: string;
13708
+ name: string;
13709
+ originalPrice: Record<string, number>;
13710
+ price: Record<string, number>;
13711
+ hasDiscount: boolean;
13712
+ discount?: {
13713
+ type: "PercentageOffDiscount";
13714
+ name: string;
13715
+ percentage: number;
13716
+ total: Record<string, number>;
13717
+ description?: string | undefined;
13718
+ } | {
13719
+ type: "FlatAmountOffDiscount";
13720
+ name: string;
13721
+ total: Record<string, number>;
13722
+ description?: string | undefined;
13723
+ } | undefined;
13724
+ } | undefined;
13725
13725
  appliedDiscount?: {
13726
13726
  type: "PercentageOffDiscount";
13727
13727
  name: string;
@@ -13743,25 +13743,6 @@ declare class OrderEndpoints {
13743
13743
  variationId: string;
13744
13744
  bundleId: string;
13745
13745
  price?: Record<string, number> | undefined;
13746
- variation?: {
13747
- id: string;
13748
- name: string;
13749
- originalPrice: Record<string, number>;
13750
- price: Record<string, number>;
13751
- hasDiscount: boolean;
13752
- discount?: {
13753
- type: "PercentageOffDiscount";
13754
- name: string;
13755
- percentage: number;
13756
- total: Record<string, number>;
13757
- description?: string | undefined;
13758
- } | {
13759
- type: "FlatAmountOffDiscount";
13760
- name: string;
13761
- total: Record<string, number>;
13762
- description?: string | undefined;
13763
- } | undefined;
13764
- } | undefined;
13765
13746
  bundle?: {
13766
13747
  type: "bundle";
13767
13748
  id: string;
@@ -13866,6 +13847,25 @@ declare class OrderEndpoints {
13866
13847
  } | undefined;
13867
13848
  }[] | undefined;
13868
13849
  } | undefined;
13850
+ variation?: {
13851
+ id: string;
13852
+ name: string;
13853
+ originalPrice: Record<string, number>;
13854
+ price: Record<string, number>;
13855
+ hasDiscount: boolean;
13856
+ discount?: {
13857
+ type: "PercentageOffDiscount";
13858
+ name: string;
13859
+ percentage: number;
13860
+ total: Record<string, number>;
13861
+ description?: string | undefined;
13862
+ } | {
13863
+ type: "FlatAmountOffDiscount";
13864
+ name: string;
13865
+ total: Record<string, number>;
13866
+ description?: string | undefined;
13867
+ } | undefined;
13868
+ } | undefined;
13869
13869
  appliedDiscount?: {
13870
13870
  type: "PercentageOffDiscount";
13871
13871
  name: string;
@@ -14421,6 +14421,7 @@ declare const voucherSchema: z.ZodObject<{
14421
14421
  tagline: string;
14422
14422
  iconUrl: string | null;
14423
14423
  owned: boolean;
14424
+ type?: void | undefined;
14424
14425
  website?: string | null | undefined;
14425
14426
  currentVersion?: string | undefined;
14426
14427
  downloads?: {
@@ -14468,7 +14469,6 @@ declare const voucherSchema: z.ZodObject<{
14468
14469
  description?: string | undefined;
14469
14470
  } | undefined;
14470
14471
  }[] | undefined;
14471
- type?: void | undefined;
14472
14472
  }>;
14473
14473
  quantity: z.ZodNumber;
14474
14474
  }, "strip", z.ZodTypeAny, {
@@ -14535,6 +14535,7 @@ declare const voucherSchema: z.ZodObject<{
14535
14535
  tagline: string;
14536
14536
  iconUrl: string | null;
14537
14537
  owned: boolean;
14538
+ type?: void | undefined;
14538
14539
  website?: string | null | undefined;
14539
14540
  currentVersion?: string | undefined;
14540
14541
  downloads?: {
@@ -14582,7 +14583,6 @@ declare const voucherSchema: z.ZodObject<{
14582
14583
  description?: string | undefined;
14583
14584
  } | undefined;
14584
14585
  }[] | undefined;
14585
- type?: void | undefined;
14586
14586
  };
14587
14587
  quantity: number;
14588
14588
  }>, "many">;
@@ -14836,6 +14836,7 @@ declare const voucherSchema: z.ZodObject<{
14836
14836
  tagline: string;
14837
14837
  iconUrl: string | null;
14838
14838
  owned: boolean;
14839
+ type?: void | undefined;
14839
14840
  website?: string | null | undefined;
14840
14841
  currentVersion?: string | undefined;
14841
14842
  downloads?: {
@@ -14883,7 +14884,6 @@ declare const voucherSchema: z.ZodObject<{
14883
14884
  description?: string | undefined;
14884
14885
  } | undefined;
14885
14886
  }[] | undefined;
14886
- type?: void | undefined;
14887
14887
  }>, z.ZodObject<{
14888
14888
  included: z.ZodOptional<z.ZodBoolean>;
14889
14889
  }, "strip", z.ZodTypeAny, {
@@ -15162,6 +15162,7 @@ declare const voucherSchema: z.ZodObject<{
15162
15162
  tagline: string;
15163
15163
  iconUrl: string | null;
15164
15164
  owned: boolean;
15165
+ type?: void | undefined;
15165
15166
  website?: string | null | undefined;
15166
15167
  currentVersion?: string | undefined;
15167
15168
  downloads?: {
@@ -15209,10 +15210,10 @@ declare const voucherSchema: z.ZodObject<{
15209
15210
  description?: string | undefined;
15210
15211
  } | undefined;
15211
15212
  }[] | undefined;
15212
- type?: void | undefined;
15213
15213
  } & {
15214
15214
  included?: boolean | undefined;
15215
15215
  })[];
15216
+ type?: void | undefined;
15216
15217
  defaultVariation?: {
15217
15218
  id: string;
15218
15219
  name: string;
@@ -15251,7 +15252,6 @@ declare const voucherSchema: z.ZodObject<{
15251
15252
  description?: string | undefined;
15252
15253
  } | undefined;
15253
15254
  }[] | undefined;
15254
- type?: void | undefined;
15255
15255
  }>;
15256
15256
  quantity: z.ZodNumber;
15257
15257
  }, "strip", z.ZodTypeAny, {
@@ -15374,6 +15374,7 @@ declare const voucherSchema: z.ZodObject<{
15374
15374
  tagline: string;
15375
15375
  iconUrl: string | null;
15376
15376
  owned: boolean;
15377
+ type?: void | undefined;
15377
15378
  website?: string | null | undefined;
15378
15379
  currentVersion?: string | undefined;
15379
15380
  downloads?: {
@@ -15421,10 +15422,10 @@ declare const voucherSchema: z.ZodObject<{
15421
15422
  description?: string | undefined;
15422
15423
  } | undefined;
15423
15424
  }[] | undefined;
15424
- type?: void | undefined;
15425
15425
  } & {
15426
15426
  included?: boolean | undefined;
15427
15427
  })[];
15428
+ type?: void | undefined;
15428
15429
  defaultVariation?: {
15429
15430
  id: string;
15430
15431
  name: string;
@@ -15463,7 +15464,6 @@ declare const voucherSchema: z.ZodObject<{
15463
15464
  description?: string | undefined;
15464
15465
  } | undefined;
15465
15466
  }[] | undefined;
15466
- type?: void | undefined;
15467
15467
  };
15468
15468
  quantity: number;
15469
15469
  }>, "many">;
@@ -15651,6 +15651,7 @@ declare const voucherSchema: z.ZodObject<{
15651
15651
  tagline: string;
15652
15652
  iconUrl: string | null;
15653
15653
  owned: boolean;
15654
+ type?: void | undefined;
15654
15655
  website?: string | null | undefined;
15655
15656
  currentVersion?: string | undefined;
15656
15657
  downloads?: {
@@ -15698,7 +15699,6 @@ declare const voucherSchema: z.ZodObject<{
15698
15699
  description?: string | undefined;
15699
15700
  } | undefined;
15700
15701
  }[] | undefined;
15701
- type?: void | undefined;
15702
15702
  };
15703
15703
  quantity: number;
15704
15704
  }[];
@@ -15716,6 +15716,7 @@ declare const voucherSchema: z.ZodObject<{
15716
15716
  tagline: string;
15717
15717
  iconUrl: string | null;
15718
15718
  owned: boolean;
15719
+ type?: void | undefined;
15719
15720
  website?: string | null | undefined;
15720
15721
  currentVersion?: string | undefined;
15721
15722
  downloads?: {
@@ -15763,10 +15764,10 @@ declare const voucherSchema: z.ZodObject<{
15763
15764
  description?: string | undefined;
15764
15765
  } | undefined;
15765
15766
  }[] | undefined;
15766
- type?: void | undefined;
15767
15767
  } & {
15768
15768
  included?: boolean | undefined;
15769
15769
  })[];
15770
+ type?: void | undefined;
15770
15771
  defaultVariation?: {
15771
15772
  id: string;
15772
15773
  name: string;
@@ -15805,7 +15806,6 @@ declare const voucherSchema: z.ZodObject<{
15805
15806
  description?: string | undefined;
15806
15807
  } | undefined;
15807
15808
  }[] | undefined;
15808
- type?: void | undefined;
15809
15809
  };
15810
15810
  quantity: number;
15811
15811
  }[];
@@ -16386,6 +16386,7 @@ declare const storefrontProductSchema: z.ZodObject<{
16386
16386
  tagline: string;
16387
16387
  iconUrl: string | null;
16388
16388
  owned: boolean;
16389
+ type?: void | undefined;
16389
16390
  website?: string | null | undefined;
16390
16391
  currentVersion?: string | undefined;
16391
16392
  downloads?: {
@@ -16433,7 +16434,6 @@ declare const storefrontProductSchema: z.ZodObject<{
16433
16434
  description?: string | undefined;
16434
16435
  } | undefined;
16435
16436
  }[] | undefined;
16436
- type?: void | undefined;
16437
16437
  }>;
16438
16438
  declare const storefrontBundleSchema: z.ZodObject<{
16439
16439
  id: z.ZodString;
@@ -16684,6 +16684,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
16684
16684
  tagline: string;
16685
16685
  iconUrl: string | null;
16686
16686
  owned: boolean;
16687
+ type?: void | undefined;
16687
16688
  website?: string | null | undefined;
16688
16689
  currentVersion?: string | undefined;
16689
16690
  downloads?: {
@@ -16731,7 +16732,6 @@ declare const storefrontBundleSchema: z.ZodObject<{
16731
16732
  description?: string | undefined;
16732
16733
  } | undefined;
16733
16734
  }[] | undefined;
16734
- type?: void | undefined;
16735
16735
  }>, z.ZodObject<{
16736
16736
  included: z.ZodOptional<z.ZodBoolean>;
16737
16737
  }, "strip", z.ZodTypeAny, {
@@ -17010,6 +17010,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
17010
17010
  tagline: string;
17011
17011
  iconUrl: string | null;
17012
17012
  owned: boolean;
17013
+ type?: void | undefined;
17013
17014
  website?: string | null | undefined;
17014
17015
  currentVersion?: string | undefined;
17015
17016
  downloads?: {
@@ -17057,10 +17058,10 @@ declare const storefrontBundleSchema: z.ZodObject<{
17057
17058
  description?: string | undefined;
17058
17059
  } | undefined;
17059
17060
  }[] | undefined;
17060
- type?: void | undefined;
17061
17061
  } & {
17062
17062
  included?: boolean | undefined;
17063
17063
  })[];
17064
+ type?: void | undefined;
17064
17065
  defaultVariation?: {
17065
17066
  id: string;
17066
17067
  name: string;
@@ -17099,7 +17100,6 @@ declare const storefrontBundleSchema: z.ZodObject<{
17099
17100
  description?: string | undefined;
17100
17101
  } | undefined;
17101
17102
  }[] | undefined;
17102
- type?: void | undefined;
17103
17103
  }>;
17104
17104
  declare const storefrontSchema: z.ZodObject<{
17105
17105
  suggestedCurrency: z.ZodString;
@@ -17345,6 +17345,7 @@ declare const storefrontSchema: z.ZodObject<{
17345
17345
  tagline: string;
17346
17346
  iconUrl: string | null;
17347
17347
  owned: boolean;
17348
+ type?: void | undefined;
17348
17349
  website?: string | null | undefined;
17349
17350
  currentVersion?: string | undefined;
17350
17351
  downloads?: {
@@ -17392,7 +17393,6 @@ declare const storefrontSchema: z.ZodObject<{
17392
17393
  description?: string | undefined;
17393
17394
  } | undefined;
17394
17395
  }[] | undefined;
17395
- type?: void | undefined;
17396
17396
  }>, "many">;
17397
17397
  bundles: z.ZodArray<z.ZodObject<{
17398
17398
  id: z.ZodString;
@@ -17643,6 +17643,7 @@ declare const storefrontSchema: z.ZodObject<{
17643
17643
  tagline: string;
17644
17644
  iconUrl: string | null;
17645
17645
  owned: boolean;
17646
+ type?: void | undefined;
17646
17647
  website?: string | null | undefined;
17647
17648
  currentVersion?: string | undefined;
17648
17649
  downloads?: {
@@ -17690,7 +17691,6 @@ declare const storefrontSchema: z.ZodObject<{
17690
17691
  description?: string | undefined;
17691
17692
  } | undefined;
17692
17693
  }[] | undefined;
17693
- type?: void | undefined;
17694
17694
  }>, z.ZodObject<{
17695
17695
  included: z.ZodOptional<z.ZodBoolean>;
17696
17696
  }, "strip", z.ZodTypeAny, {
@@ -17969,6 +17969,7 @@ declare const storefrontSchema: z.ZodObject<{
17969
17969
  tagline: string;
17970
17970
  iconUrl: string | null;
17971
17971
  owned: boolean;
17972
+ type?: void | undefined;
17972
17973
  website?: string | null | undefined;
17973
17974
  currentVersion?: string | undefined;
17974
17975
  downloads?: {
@@ -18016,10 +18017,10 @@ declare const storefrontSchema: z.ZodObject<{
18016
18017
  description?: string | undefined;
18017
18018
  } | undefined;
18018
18019
  }[] | undefined;
18019
- type?: void | undefined;
18020
18020
  } & {
18021
18021
  included?: boolean | undefined;
18022
18022
  })[];
18023
+ type?: void | undefined;
18023
18024
  defaultVariation?: {
18024
18025
  id: string;
18025
18026
  name: string;
@@ -18058,7 +18059,6 @@ declare const storefrontSchema: z.ZodObject<{
18058
18059
  description?: string | undefined;
18059
18060
  } | undefined;
18060
18061
  }[] | undefined;
18061
- type?: void | undefined;
18062
18062
  }>, "many">;
18063
18063
  }, "strip", z.ZodTypeAny, {
18064
18064
  products: {
@@ -18228,6 +18228,7 @@ declare const storefrontSchema: z.ZodObject<{
18228
18228
  tagline: string;
18229
18229
  iconUrl: string | null;
18230
18230
  owned: boolean;
18231
+ type?: void | undefined;
18231
18232
  website?: string | null | undefined;
18232
18233
  currentVersion?: string | undefined;
18233
18234
  downloads?: {
@@ -18275,7 +18276,6 @@ declare const storefrontSchema: z.ZodObject<{
18275
18276
  description?: string | undefined;
18276
18277
  } | undefined;
18277
18278
  }[] | undefined;
18278
- type?: void | undefined;
18279
18279
  }[];
18280
18280
  suggestedCurrency: string;
18281
18281
  bundles: {
@@ -18291,6 +18291,7 @@ declare const storefrontSchema: z.ZodObject<{
18291
18291
  tagline: string;
18292
18292
  iconUrl: string | null;
18293
18293
  owned: boolean;
18294
+ type?: void | undefined;
18294
18295
  website?: string | null | undefined;
18295
18296
  currentVersion?: string | undefined;
18296
18297
  downloads?: {
@@ -18338,10 +18339,10 @@ declare const storefrontSchema: z.ZodObject<{
18338
18339
  description?: string | undefined;
18339
18340
  } | undefined;
18340
18341
  }[] | undefined;
18341
- type?: void | undefined;
18342
18342
  } & {
18343
18343
  included?: boolean | undefined;
18344
18344
  })[];
18345
+ type?: void | undefined;
18345
18346
  defaultVariation?: {
18346
18347
  id: string;
18347
18348
  name: string;
@@ -18380,7 +18381,6 @@ declare const storefrontSchema: z.ZodObject<{
18380
18381
  description?: string | undefined;
18381
18382
  } | undefined;
18382
18383
  }[] | undefined;
18383
- type?: void | undefined;
18384
18384
  }[];
18385
18385
  }>;
18386
18386