@moonbase.sh/storefront-api 0.2.84 → 0.2.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +11 -4
- package/dist/index.d.cts +157 -2
- package/dist/index.d.ts +157 -2
- package/dist/index.js +11 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -241,6 +241,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
241
241
|
id: z.ZodString;
|
|
242
242
|
name: z.ZodString;
|
|
243
243
|
tagline: z.ZodString;
|
|
244
|
+
description: z.ZodString;
|
|
244
245
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
245
246
|
website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
246
247
|
owned: z.ZodBoolean;
|
|
@@ -262,16 +263,19 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
262
263
|
path: string;
|
|
263
264
|
name: string;
|
|
264
265
|
}>, "many">;
|
|
266
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
265
267
|
}, "strip", z.ZodTypeAny, {
|
|
266
268
|
files: {
|
|
267
269
|
path: string;
|
|
268
270
|
name: string;
|
|
269
271
|
}[];
|
|
272
|
+
licensePath: string | null;
|
|
270
273
|
}, {
|
|
271
274
|
files: {
|
|
272
275
|
path: string;
|
|
273
276
|
name: string;
|
|
274
277
|
}[];
|
|
278
|
+
licensePath: string | null;
|
|
275
279
|
}>>;
|
|
276
280
|
}, "strip", z.ZodTypeAny, {
|
|
277
281
|
path: string | null;
|
|
@@ -284,6 +288,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
284
288
|
path: string;
|
|
285
289
|
name: string;
|
|
286
290
|
}[];
|
|
291
|
+
licensePath: string | null;
|
|
287
292
|
} | undefined;
|
|
288
293
|
}, {
|
|
289
294
|
path: string | null;
|
|
@@ -296,6 +301,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
296
301
|
path: string;
|
|
297
302
|
name: string;
|
|
298
303
|
}[];
|
|
304
|
+
licensePath: string | null;
|
|
299
305
|
} | undefined;
|
|
300
306
|
}>, "many">>;
|
|
301
307
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -477,6 +483,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
477
483
|
type: "product";
|
|
478
484
|
id: string;
|
|
479
485
|
name: string;
|
|
486
|
+
description: string;
|
|
480
487
|
tagline: string;
|
|
481
488
|
iconUrl: string | null;
|
|
482
489
|
owned: boolean;
|
|
@@ -493,6 +500,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
493
500
|
path: string;
|
|
494
501
|
name: string;
|
|
495
502
|
}[];
|
|
503
|
+
licensePath: string | null;
|
|
496
504
|
} | undefined;
|
|
497
505
|
}[] | undefined;
|
|
498
506
|
defaultVariation?: {
|
|
@@ -540,6 +548,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
540
548
|
}, {
|
|
541
549
|
id: string;
|
|
542
550
|
name: string;
|
|
551
|
+
description: string;
|
|
543
552
|
tagline: string;
|
|
544
553
|
iconUrl: string | null;
|
|
545
554
|
owned: boolean;
|
|
@@ -557,6 +566,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
557
566
|
path: string;
|
|
558
567
|
name: string;
|
|
559
568
|
}[];
|
|
569
|
+
licensePath: string | null;
|
|
560
570
|
} | undefined;
|
|
561
571
|
}[] | undefined;
|
|
562
572
|
defaultVariation?: {
|
|
@@ -635,6 +645,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
635
645
|
type: "product";
|
|
636
646
|
id: string;
|
|
637
647
|
name: string;
|
|
648
|
+
description: string;
|
|
638
649
|
tagline: string;
|
|
639
650
|
iconUrl: string | null;
|
|
640
651
|
owned: boolean;
|
|
@@ -651,6 +662,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
651
662
|
path: string;
|
|
652
663
|
name: string;
|
|
653
664
|
}[];
|
|
665
|
+
licensePath: string | null;
|
|
654
666
|
} | undefined;
|
|
655
667
|
}[] | undefined;
|
|
656
668
|
defaultVariation?: {
|
|
@@ -712,6 +724,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
712
724
|
product: {
|
|
713
725
|
id: string;
|
|
714
726
|
name: string;
|
|
727
|
+
description: string;
|
|
715
728
|
tagline: string;
|
|
716
729
|
iconUrl: string | null;
|
|
717
730
|
owned: boolean;
|
|
@@ -729,6 +742,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
729
742
|
path: string;
|
|
730
743
|
name: string;
|
|
731
744
|
}[];
|
|
745
|
+
licensePath: string | null;
|
|
732
746
|
} | undefined;
|
|
733
747
|
}[] | undefined;
|
|
734
748
|
defaultVariation?: {
|
|
@@ -6023,13 +6037,15 @@ interface UrchinTrackingModule {
|
|
|
6023
6037
|
declare function utmToObject(utm?: UrchinTrackingModule): Record<string, string>;
|
|
6024
6038
|
|
|
6025
6039
|
declare class StorefrontEndpoints {
|
|
6026
|
-
private api;
|
|
6027
|
-
|
|
6040
|
+
private readonly api;
|
|
6041
|
+
private readonly configuration;
|
|
6042
|
+
constructor(api: MoonbaseApi, configuration: MoonbaseConfiguration);
|
|
6028
6043
|
get(utm?: UrchinTrackingModule): Promise<{
|
|
6029
6044
|
products: {
|
|
6030
6045
|
type: "product";
|
|
6031
6046
|
id: string;
|
|
6032
6047
|
name: string;
|
|
6048
|
+
description: string;
|
|
6033
6049
|
tagline: string;
|
|
6034
6050
|
iconUrl: string | null;
|
|
6035
6051
|
owned: boolean;
|
|
@@ -6046,6 +6062,7 @@ declare class StorefrontEndpoints {
|
|
|
6046
6062
|
path: string;
|
|
6047
6063
|
name: string;
|
|
6048
6064
|
}[];
|
|
6065
|
+
licensePath: string | null;
|
|
6049
6066
|
} | undefined;
|
|
6050
6067
|
}[] | undefined;
|
|
6051
6068
|
defaultVariation?: {
|
|
@@ -6096,6 +6113,7 @@ declare class StorefrontEndpoints {
|
|
|
6096
6113
|
type: "bundle";
|
|
6097
6114
|
id: string;
|
|
6098
6115
|
name: string;
|
|
6116
|
+
description: string;
|
|
6099
6117
|
tagline: string;
|
|
6100
6118
|
iconUrl: string | null;
|
|
6101
6119
|
owned: boolean;
|
|
@@ -6104,6 +6122,7 @@ declare class StorefrontEndpoints {
|
|
|
6104
6122
|
type: "product";
|
|
6105
6123
|
id: string;
|
|
6106
6124
|
name: string;
|
|
6125
|
+
description: string;
|
|
6107
6126
|
tagline: string;
|
|
6108
6127
|
iconUrl: string | null;
|
|
6109
6128
|
owned: boolean;
|
|
@@ -6120,6 +6139,7 @@ declare class StorefrontEndpoints {
|
|
|
6120
6139
|
path: string;
|
|
6121
6140
|
name: string;
|
|
6122
6141
|
}[];
|
|
6142
|
+
licensePath: string | null;
|
|
6123
6143
|
} | undefined;
|
|
6124
6144
|
}[] | undefined;
|
|
6125
6145
|
defaultVariation?: {
|
|
@@ -6224,6 +6244,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6224
6244
|
id: z.ZodString;
|
|
6225
6245
|
name: z.ZodString;
|
|
6226
6246
|
tagline: z.ZodString;
|
|
6247
|
+
description: z.ZodString;
|
|
6227
6248
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
6228
6249
|
website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6229
6250
|
owned: z.ZodBoolean;
|
|
@@ -6245,16 +6266,19 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6245
6266
|
path: string;
|
|
6246
6267
|
name: string;
|
|
6247
6268
|
}>, "many">;
|
|
6269
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
6248
6270
|
}, "strip", z.ZodTypeAny, {
|
|
6249
6271
|
files: {
|
|
6250
6272
|
path: string;
|
|
6251
6273
|
name: string;
|
|
6252
6274
|
}[];
|
|
6275
|
+
licensePath: string | null;
|
|
6253
6276
|
}, {
|
|
6254
6277
|
files: {
|
|
6255
6278
|
path: string;
|
|
6256
6279
|
name: string;
|
|
6257
6280
|
}[];
|
|
6281
|
+
licensePath: string | null;
|
|
6258
6282
|
}>>;
|
|
6259
6283
|
}, "strip", z.ZodTypeAny, {
|
|
6260
6284
|
path: string | null;
|
|
@@ -6267,6 +6291,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6267
6291
|
path: string;
|
|
6268
6292
|
name: string;
|
|
6269
6293
|
}[];
|
|
6294
|
+
licensePath: string | null;
|
|
6270
6295
|
} | undefined;
|
|
6271
6296
|
}, {
|
|
6272
6297
|
path: string | null;
|
|
@@ -6279,6 +6304,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6279
6304
|
path: string;
|
|
6280
6305
|
name: string;
|
|
6281
6306
|
}[];
|
|
6307
|
+
licensePath: string | null;
|
|
6282
6308
|
} | undefined;
|
|
6283
6309
|
}>, "many">>;
|
|
6284
6310
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -6460,6 +6486,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6460
6486
|
type: "product";
|
|
6461
6487
|
id: string;
|
|
6462
6488
|
name: string;
|
|
6489
|
+
description: string;
|
|
6463
6490
|
tagline: string;
|
|
6464
6491
|
iconUrl: string | null;
|
|
6465
6492
|
owned: boolean;
|
|
@@ -6476,6 +6503,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6476
6503
|
path: string;
|
|
6477
6504
|
name: string;
|
|
6478
6505
|
}[];
|
|
6506
|
+
licensePath: string | null;
|
|
6479
6507
|
} | undefined;
|
|
6480
6508
|
}[] | undefined;
|
|
6481
6509
|
defaultVariation?: {
|
|
@@ -6523,6 +6551,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6523
6551
|
}, {
|
|
6524
6552
|
id: string;
|
|
6525
6553
|
name: string;
|
|
6554
|
+
description: string;
|
|
6526
6555
|
tagline: string;
|
|
6527
6556
|
iconUrl: string | null;
|
|
6528
6557
|
owned: boolean;
|
|
@@ -6540,6 +6569,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6540
6569
|
path: string;
|
|
6541
6570
|
name: string;
|
|
6542
6571
|
}[];
|
|
6572
|
+
licensePath: string | null;
|
|
6543
6573
|
} | undefined;
|
|
6544
6574
|
}[] | undefined;
|
|
6545
6575
|
defaultVariation?: {
|
|
@@ -6591,6 +6621,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6591
6621
|
type: "product";
|
|
6592
6622
|
id: string;
|
|
6593
6623
|
name: string;
|
|
6624
|
+
description: string;
|
|
6594
6625
|
tagline: string;
|
|
6595
6626
|
iconUrl: string | null;
|
|
6596
6627
|
owned: boolean;
|
|
@@ -6607,6 +6638,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6607
6638
|
path: string;
|
|
6608
6639
|
name: string;
|
|
6609
6640
|
}[];
|
|
6641
|
+
licensePath: string | null;
|
|
6610
6642
|
} | undefined;
|
|
6611
6643
|
}[] | undefined;
|
|
6612
6644
|
defaultVariation?: {
|
|
@@ -6657,6 +6689,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6657
6689
|
value: {
|
|
6658
6690
|
id: string;
|
|
6659
6691
|
name: string;
|
|
6692
|
+
description: string;
|
|
6660
6693
|
tagline: string;
|
|
6661
6694
|
iconUrl: string | null;
|
|
6662
6695
|
owned: boolean;
|
|
@@ -6674,6 +6707,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6674
6707
|
path: string;
|
|
6675
6708
|
name: string;
|
|
6676
6709
|
}[];
|
|
6710
|
+
licensePath: string | null;
|
|
6677
6711
|
} | undefined;
|
|
6678
6712
|
}[] | undefined;
|
|
6679
6713
|
defaultVariation?: {
|
|
@@ -6726,6 +6760,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6726
6760
|
id: z.ZodString;
|
|
6727
6761
|
name: z.ZodString;
|
|
6728
6762
|
tagline: z.ZodString;
|
|
6763
|
+
description: z.ZodString;
|
|
6729
6764
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
6730
6765
|
owned: z.ZodBoolean;
|
|
6731
6766
|
partial: z.ZodBoolean;
|
|
@@ -6733,6 +6768,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6733
6768
|
id: z.ZodString;
|
|
6734
6769
|
name: z.ZodString;
|
|
6735
6770
|
tagline: z.ZodString;
|
|
6771
|
+
description: z.ZodString;
|
|
6736
6772
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
6737
6773
|
website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6738
6774
|
owned: z.ZodBoolean;
|
|
@@ -6754,16 +6790,19 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6754
6790
|
path: string;
|
|
6755
6791
|
name: string;
|
|
6756
6792
|
}>, "many">;
|
|
6793
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
6757
6794
|
}, "strip", z.ZodTypeAny, {
|
|
6758
6795
|
files: {
|
|
6759
6796
|
path: string;
|
|
6760
6797
|
name: string;
|
|
6761
6798
|
}[];
|
|
6799
|
+
licensePath: string | null;
|
|
6762
6800
|
}, {
|
|
6763
6801
|
files: {
|
|
6764
6802
|
path: string;
|
|
6765
6803
|
name: string;
|
|
6766
6804
|
}[];
|
|
6805
|
+
licensePath: string | null;
|
|
6767
6806
|
}>>;
|
|
6768
6807
|
}, "strip", z.ZodTypeAny, {
|
|
6769
6808
|
path: string | null;
|
|
@@ -6776,6 +6815,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6776
6815
|
path: string;
|
|
6777
6816
|
name: string;
|
|
6778
6817
|
}[];
|
|
6818
|
+
licensePath: string | null;
|
|
6779
6819
|
} | undefined;
|
|
6780
6820
|
}, {
|
|
6781
6821
|
path: string | null;
|
|
@@ -6788,6 +6828,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6788
6828
|
path: string;
|
|
6789
6829
|
name: string;
|
|
6790
6830
|
}[];
|
|
6831
|
+
licensePath: string | null;
|
|
6791
6832
|
} | undefined;
|
|
6792
6833
|
}>, "many">>;
|
|
6793
6834
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -6969,6 +7010,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6969
7010
|
type: "product";
|
|
6970
7011
|
id: string;
|
|
6971
7012
|
name: string;
|
|
7013
|
+
description: string;
|
|
6972
7014
|
tagline: string;
|
|
6973
7015
|
iconUrl: string | null;
|
|
6974
7016
|
owned: boolean;
|
|
@@ -6985,6 +7027,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6985
7027
|
path: string;
|
|
6986
7028
|
name: string;
|
|
6987
7029
|
}[];
|
|
7030
|
+
licensePath: string | null;
|
|
6988
7031
|
} | undefined;
|
|
6989
7032
|
}[] | undefined;
|
|
6990
7033
|
defaultVariation?: {
|
|
@@ -7032,6 +7075,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7032
7075
|
}, {
|
|
7033
7076
|
id: string;
|
|
7034
7077
|
name: string;
|
|
7078
|
+
description: string;
|
|
7035
7079
|
tagline: string;
|
|
7036
7080
|
iconUrl: string | null;
|
|
7037
7081
|
owned: boolean;
|
|
@@ -7049,6 +7093,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7049
7093
|
path: string;
|
|
7050
7094
|
name: string;
|
|
7051
7095
|
}[];
|
|
7096
|
+
licensePath: string | null;
|
|
7052
7097
|
} | undefined;
|
|
7053
7098
|
}[] | undefined;
|
|
7054
7099
|
defaultVariation?: {
|
|
@@ -7279,6 +7324,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7279
7324
|
type: "bundle";
|
|
7280
7325
|
id: string;
|
|
7281
7326
|
name: string;
|
|
7327
|
+
description: string;
|
|
7282
7328
|
tagline: string;
|
|
7283
7329
|
iconUrl: string | null;
|
|
7284
7330
|
owned: boolean;
|
|
@@ -7287,6 +7333,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7287
7333
|
type: "product";
|
|
7288
7334
|
id: string;
|
|
7289
7335
|
name: string;
|
|
7336
|
+
description: string;
|
|
7290
7337
|
tagline: string;
|
|
7291
7338
|
iconUrl: string | null;
|
|
7292
7339
|
owned: boolean;
|
|
@@ -7303,6 +7350,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7303
7350
|
path: string;
|
|
7304
7351
|
name: string;
|
|
7305
7352
|
}[];
|
|
7353
|
+
licensePath: string | null;
|
|
7306
7354
|
} | undefined;
|
|
7307
7355
|
}[] | undefined;
|
|
7308
7356
|
defaultVariation?: {
|
|
@@ -7395,6 +7443,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7395
7443
|
}, {
|
|
7396
7444
|
id: string;
|
|
7397
7445
|
name: string;
|
|
7446
|
+
description: string;
|
|
7398
7447
|
tagline: string;
|
|
7399
7448
|
iconUrl: string | null;
|
|
7400
7449
|
owned: boolean;
|
|
@@ -7402,6 +7451,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7402
7451
|
products: ({
|
|
7403
7452
|
id: string;
|
|
7404
7453
|
name: string;
|
|
7454
|
+
description: string;
|
|
7405
7455
|
tagline: string;
|
|
7406
7456
|
iconUrl: string | null;
|
|
7407
7457
|
owned: boolean;
|
|
@@ -7419,6 +7469,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7419
7469
|
path: string;
|
|
7420
7470
|
name: string;
|
|
7421
7471
|
}[];
|
|
7472
|
+
licensePath: string | null;
|
|
7422
7473
|
} | undefined;
|
|
7423
7474
|
}[] | undefined;
|
|
7424
7475
|
defaultVariation?: {
|
|
@@ -7516,6 +7567,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7516
7567
|
type: "bundle";
|
|
7517
7568
|
id: string;
|
|
7518
7569
|
name: string;
|
|
7570
|
+
description: string;
|
|
7519
7571
|
tagline: string;
|
|
7520
7572
|
iconUrl: string | null;
|
|
7521
7573
|
owned: boolean;
|
|
@@ -7524,6 +7576,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7524
7576
|
type: "product";
|
|
7525
7577
|
id: string;
|
|
7526
7578
|
name: string;
|
|
7579
|
+
description: string;
|
|
7527
7580
|
tagline: string;
|
|
7528
7581
|
iconUrl: string | null;
|
|
7529
7582
|
owned: boolean;
|
|
@@ -7540,6 +7593,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7540
7593
|
path: string;
|
|
7541
7594
|
name: string;
|
|
7542
7595
|
}[];
|
|
7596
|
+
licensePath: string | null;
|
|
7543
7597
|
} | undefined;
|
|
7544
7598
|
}[] | undefined;
|
|
7545
7599
|
defaultVariation?: {
|
|
@@ -7635,6 +7689,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7635
7689
|
value: {
|
|
7636
7690
|
id: string;
|
|
7637
7691
|
name: string;
|
|
7692
|
+
description: string;
|
|
7638
7693
|
tagline: string;
|
|
7639
7694
|
iconUrl: string | null;
|
|
7640
7695
|
owned: boolean;
|
|
@@ -7642,6 +7697,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7642
7697
|
products: ({
|
|
7643
7698
|
id: string;
|
|
7644
7699
|
name: string;
|
|
7700
|
+
description: string;
|
|
7645
7701
|
tagline: string;
|
|
7646
7702
|
iconUrl: string | null;
|
|
7647
7703
|
owned: boolean;
|
|
@@ -7659,6 +7715,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7659
7715
|
path: string;
|
|
7660
7716
|
name: string;
|
|
7661
7717
|
}[];
|
|
7718
|
+
licensePath: string | null;
|
|
7662
7719
|
} | undefined;
|
|
7663
7720
|
}[] | undefined;
|
|
7664
7721
|
defaultVariation?: {
|
|
@@ -7763,6 +7820,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7763
7820
|
type: "product";
|
|
7764
7821
|
id: string;
|
|
7765
7822
|
name: string;
|
|
7823
|
+
description: string;
|
|
7766
7824
|
tagline: string;
|
|
7767
7825
|
iconUrl: string | null;
|
|
7768
7826
|
owned: boolean;
|
|
@@ -7779,6 +7837,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7779
7837
|
path: string;
|
|
7780
7838
|
name: string;
|
|
7781
7839
|
}[];
|
|
7840
|
+
licensePath: string | null;
|
|
7782
7841
|
} | undefined;
|
|
7783
7842
|
}[] | undefined;
|
|
7784
7843
|
defaultVariation?: {
|
|
@@ -7831,6 +7890,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7831
7890
|
type: "bundle";
|
|
7832
7891
|
id: string;
|
|
7833
7892
|
name: string;
|
|
7893
|
+
description: string;
|
|
7834
7894
|
tagline: string;
|
|
7835
7895
|
iconUrl: string | null;
|
|
7836
7896
|
owned: boolean;
|
|
@@ -7839,6 +7899,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7839
7899
|
type: "product";
|
|
7840
7900
|
id: string;
|
|
7841
7901
|
name: string;
|
|
7902
|
+
description: string;
|
|
7842
7903
|
tagline: string;
|
|
7843
7904
|
iconUrl: string | null;
|
|
7844
7905
|
owned: boolean;
|
|
@@ -7855,6 +7916,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7855
7916
|
path: string;
|
|
7856
7917
|
name: string;
|
|
7857
7918
|
}[];
|
|
7919
|
+
licensePath: string | null;
|
|
7858
7920
|
} | undefined;
|
|
7859
7921
|
}[] | undefined;
|
|
7860
7922
|
defaultVariation?: {
|
|
@@ -7957,6 +8019,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7957
8019
|
value: {
|
|
7958
8020
|
id: string;
|
|
7959
8021
|
name: string;
|
|
8022
|
+
description: string;
|
|
7960
8023
|
tagline: string;
|
|
7961
8024
|
iconUrl: string | null;
|
|
7962
8025
|
owned: boolean;
|
|
@@ -7974,6 +8037,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7974
8037
|
path: string;
|
|
7975
8038
|
name: string;
|
|
7976
8039
|
}[];
|
|
8040
|
+
licensePath: string | null;
|
|
7977
8041
|
} | undefined;
|
|
7978
8042
|
}[] | undefined;
|
|
7979
8043
|
defaultVariation?: {
|
|
@@ -8025,6 +8089,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8025
8089
|
value: {
|
|
8026
8090
|
id: string;
|
|
8027
8091
|
name: string;
|
|
8092
|
+
description: string;
|
|
8028
8093
|
tagline: string;
|
|
8029
8094
|
iconUrl: string | null;
|
|
8030
8095
|
owned: boolean;
|
|
@@ -8032,6 +8097,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8032
8097
|
products: ({
|
|
8033
8098
|
id: string;
|
|
8034
8099
|
name: string;
|
|
8100
|
+
description: string;
|
|
8035
8101
|
tagline: string;
|
|
8036
8102
|
iconUrl: string | null;
|
|
8037
8103
|
owned: boolean;
|
|
@@ -8049,6 +8115,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8049
8115
|
path: string;
|
|
8050
8116
|
name: string;
|
|
8051
8117
|
}[];
|
|
8118
|
+
licensePath: string | null;
|
|
8052
8119
|
} | undefined;
|
|
8053
8120
|
}[] | undefined;
|
|
8054
8121
|
defaultVariation?: {
|
|
@@ -8190,16 +8257,19 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8190
8257
|
path: string;
|
|
8191
8258
|
name: string;
|
|
8192
8259
|
}>, "many">;
|
|
8260
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8193
8261
|
}, "strip", z.ZodTypeAny, {
|
|
8194
8262
|
files: {
|
|
8195
8263
|
path: string;
|
|
8196
8264
|
name: string;
|
|
8197
8265
|
}[];
|
|
8266
|
+
licensePath: string | null;
|
|
8198
8267
|
}, {
|
|
8199
8268
|
files: {
|
|
8200
8269
|
path: string;
|
|
8201
8270
|
name: string;
|
|
8202
8271
|
}[];
|
|
8272
|
+
licensePath: string | null;
|
|
8203
8273
|
}>>;
|
|
8204
8274
|
}, "strip", z.ZodTypeAny, {
|
|
8205
8275
|
path: string | null;
|
|
@@ -8212,6 +8282,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8212
8282
|
path: string;
|
|
8213
8283
|
name: string;
|
|
8214
8284
|
}[];
|
|
8285
|
+
licensePath: string | null;
|
|
8215
8286
|
} | undefined;
|
|
8216
8287
|
}, {
|
|
8217
8288
|
path: string | null;
|
|
@@ -8224,6 +8295,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8224
8295
|
path: string;
|
|
8225
8296
|
name: string;
|
|
8226
8297
|
}[];
|
|
8298
|
+
licensePath: string | null;
|
|
8227
8299
|
} | undefined;
|
|
8228
8300
|
}>, "many">>;
|
|
8229
8301
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8254,6 +8326,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8254
8326
|
path: string;
|
|
8255
8327
|
name: string;
|
|
8256
8328
|
}[];
|
|
8329
|
+
licensePath: string | null;
|
|
8257
8330
|
} | undefined;
|
|
8258
8331
|
}[] | undefined;
|
|
8259
8332
|
}, {
|
|
@@ -8284,6 +8357,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8284
8357
|
path: string;
|
|
8285
8358
|
name: string;
|
|
8286
8359
|
}[];
|
|
8360
|
+
licensePath: string | null;
|
|
8287
8361
|
} | undefined;
|
|
8288
8362
|
}[] | undefined;
|
|
8289
8363
|
}>;
|
|
@@ -8321,6 +8395,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8321
8395
|
path: string;
|
|
8322
8396
|
name: string;
|
|
8323
8397
|
}[];
|
|
8398
|
+
licensePath: string | null;
|
|
8324
8399
|
} | undefined;
|
|
8325
8400
|
}[] | undefined;
|
|
8326
8401
|
};
|
|
@@ -8358,6 +8433,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8358
8433
|
path: string;
|
|
8359
8434
|
name: string;
|
|
8360
8435
|
}[];
|
|
8436
|
+
licensePath: string | null;
|
|
8361
8437
|
} | undefined;
|
|
8362
8438
|
}[] | undefined;
|
|
8363
8439
|
};
|
|
@@ -8433,16 +8509,19 @@ declare const manifestSchema: z.ZodObject<{
|
|
|
8433
8509
|
path: string;
|
|
8434
8510
|
name: string;
|
|
8435
8511
|
}>, "many">;
|
|
8512
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8436
8513
|
}, "strip", z.ZodTypeAny, {
|
|
8437
8514
|
files: {
|
|
8438
8515
|
path: string;
|
|
8439
8516
|
name: string;
|
|
8440
8517
|
}[];
|
|
8518
|
+
licensePath: string | null;
|
|
8441
8519
|
}, {
|
|
8442
8520
|
files: {
|
|
8443
8521
|
path: string;
|
|
8444
8522
|
name: string;
|
|
8445
8523
|
}[];
|
|
8524
|
+
licensePath: string | null;
|
|
8446
8525
|
}>;
|
|
8447
8526
|
declare const downloadSchema: z.ZodObject<{
|
|
8448
8527
|
name: z.ZodString;
|
|
@@ -8461,16 +8540,19 @@ declare const downloadSchema: z.ZodObject<{
|
|
|
8461
8540
|
path: string;
|
|
8462
8541
|
name: string;
|
|
8463
8542
|
}>, "many">;
|
|
8543
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8464
8544
|
}, "strip", z.ZodTypeAny, {
|
|
8465
8545
|
files: {
|
|
8466
8546
|
path: string;
|
|
8467
8547
|
name: string;
|
|
8468
8548
|
}[];
|
|
8549
|
+
licensePath: string | null;
|
|
8469
8550
|
}, {
|
|
8470
8551
|
files: {
|
|
8471
8552
|
path: string;
|
|
8472
8553
|
name: string;
|
|
8473
8554
|
}[];
|
|
8555
|
+
licensePath: string | null;
|
|
8474
8556
|
}>>;
|
|
8475
8557
|
}, "strip", z.ZodTypeAny, {
|
|
8476
8558
|
path: string | null;
|
|
@@ -8483,6 +8565,7 @@ declare const downloadSchema: z.ZodObject<{
|
|
|
8483
8565
|
path: string;
|
|
8484
8566
|
name: string;
|
|
8485
8567
|
}[];
|
|
8568
|
+
licensePath: string | null;
|
|
8486
8569
|
} | undefined;
|
|
8487
8570
|
}, {
|
|
8488
8571
|
path: string | null;
|
|
@@ -8495,6 +8578,7 @@ declare const downloadSchema: z.ZodObject<{
|
|
|
8495
8578
|
path: string;
|
|
8496
8579
|
name: string;
|
|
8497
8580
|
}[];
|
|
8581
|
+
licensePath: string | null;
|
|
8498
8582
|
} | undefined;
|
|
8499
8583
|
}>;
|
|
8500
8584
|
declare const productSummarySchema: z.ZodObject<{
|
|
@@ -8531,16 +8615,19 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8531
8615
|
path: string;
|
|
8532
8616
|
name: string;
|
|
8533
8617
|
}>, "many">;
|
|
8618
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8534
8619
|
}, "strip", z.ZodTypeAny, {
|
|
8535
8620
|
files: {
|
|
8536
8621
|
path: string;
|
|
8537
8622
|
name: string;
|
|
8538
8623
|
}[];
|
|
8624
|
+
licensePath: string | null;
|
|
8539
8625
|
}, {
|
|
8540
8626
|
files: {
|
|
8541
8627
|
path: string;
|
|
8542
8628
|
name: string;
|
|
8543
8629
|
}[];
|
|
8630
|
+
licensePath: string | null;
|
|
8544
8631
|
}>>;
|
|
8545
8632
|
}, "strip", z.ZodTypeAny, {
|
|
8546
8633
|
path: string | null;
|
|
@@ -8553,6 +8640,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8553
8640
|
path: string;
|
|
8554
8641
|
name: string;
|
|
8555
8642
|
}[];
|
|
8643
|
+
licensePath: string | null;
|
|
8556
8644
|
} | undefined;
|
|
8557
8645
|
}, {
|
|
8558
8646
|
path: string | null;
|
|
@@ -8565,6 +8653,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8565
8653
|
path: string;
|
|
8566
8654
|
name: string;
|
|
8567
8655
|
}[];
|
|
8656
|
+
licensePath: string | null;
|
|
8568
8657
|
} | undefined;
|
|
8569
8658
|
}>, "many">>;
|
|
8570
8659
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8595,6 +8684,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8595
8684
|
path: string;
|
|
8596
8685
|
name: string;
|
|
8597
8686
|
}[];
|
|
8687
|
+
licensePath: string | null;
|
|
8598
8688
|
} | undefined;
|
|
8599
8689
|
}[] | undefined;
|
|
8600
8690
|
}, {
|
|
@@ -8625,6 +8715,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8625
8715
|
path: string;
|
|
8626
8716
|
name: string;
|
|
8627
8717
|
}[];
|
|
8718
|
+
licensePath: string | null;
|
|
8628
8719
|
} | undefined;
|
|
8629
8720
|
}[] | undefined;
|
|
8630
8721
|
}>;
|
|
@@ -8683,6 +8774,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8683
8774
|
id: z.ZodString;
|
|
8684
8775
|
name: z.ZodString;
|
|
8685
8776
|
tagline: z.ZodString;
|
|
8777
|
+
description: z.ZodString;
|
|
8686
8778
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
8687
8779
|
website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8688
8780
|
owned: z.ZodBoolean;
|
|
@@ -8704,16 +8796,19 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8704
8796
|
path: string;
|
|
8705
8797
|
name: string;
|
|
8706
8798
|
}>, "many">;
|
|
8799
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8707
8800
|
}, "strip", z.ZodTypeAny, {
|
|
8708
8801
|
files: {
|
|
8709
8802
|
path: string;
|
|
8710
8803
|
name: string;
|
|
8711
8804
|
}[];
|
|
8805
|
+
licensePath: string | null;
|
|
8712
8806
|
}, {
|
|
8713
8807
|
files: {
|
|
8714
8808
|
path: string;
|
|
8715
8809
|
name: string;
|
|
8716
8810
|
}[];
|
|
8811
|
+
licensePath: string | null;
|
|
8717
8812
|
}>>;
|
|
8718
8813
|
}, "strip", z.ZodTypeAny, {
|
|
8719
8814
|
path: string | null;
|
|
@@ -8726,6 +8821,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8726
8821
|
path: string;
|
|
8727
8822
|
name: string;
|
|
8728
8823
|
}[];
|
|
8824
|
+
licensePath: string | null;
|
|
8729
8825
|
} | undefined;
|
|
8730
8826
|
}, {
|
|
8731
8827
|
path: string | null;
|
|
@@ -8738,6 +8834,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8738
8834
|
path: string;
|
|
8739
8835
|
name: string;
|
|
8740
8836
|
}[];
|
|
8837
|
+
licensePath: string | null;
|
|
8741
8838
|
} | undefined;
|
|
8742
8839
|
}>, "many">>;
|
|
8743
8840
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -8919,6 +9016,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8919
9016
|
type: "product";
|
|
8920
9017
|
id: string;
|
|
8921
9018
|
name: string;
|
|
9019
|
+
description: string;
|
|
8922
9020
|
tagline: string;
|
|
8923
9021
|
iconUrl: string | null;
|
|
8924
9022
|
owned: boolean;
|
|
@@ -8935,6 +9033,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8935
9033
|
path: string;
|
|
8936
9034
|
name: string;
|
|
8937
9035
|
}[];
|
|
9036
|
+
licensePath: string | null;
|
|
8938
9037
|
} | undefined;
|
|
8939
9038
|
}[] | undefined;
|
|
8940
9039
|
defaultVariation?: {
|
|
@@ -8982,6 +9081,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8982
9081
|
}, {
|
|
8983
9082
|
id: string;
|
|
8984
9083
|
name: string;
|
|
9084
|
+
description: string;
|
|
8985
9085
|
tagline: string;
|
|
8986
9086
|
iconUrl: string | null;
|
|
8987
9087
|
owned: boolean;
|
|
@@ -8999,6 +9099,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8999
9099
|
path: string;
|
|
9000
9100
|
name: string;
|
|
9001
9101
|
}[];
|
|
9102
|
+
licensePath: string | null;
|
|
9002
9103
|
} | undefined;
|
|
9003
9104
|
}[] | undefined;
|
|
9004
9105
|
defaultVariation?: {
|
|
@@ -9048,6 +9149,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9048
9149
|
id: z.ZodString;
|
|
9049
9150
|
name: z.ZodString;
|
|
9050
9151
|
tagline: z.ZodString;
|
|
9152
|
+
description: z.ZodString;
|
|
9051
9153
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
9052
9154
|
owned: z.ZodBoolean;
|
|
9053
9155
|
partial: z.ZodBoolean;
|
|
@@ -9055,6 +9157,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9055
9157
|
id: z.ZodString;
|
|
9056
9158
|
name: z.ZodString;
|
|
9057
9159
|
tagline: z.ZodString;
|
|
9160
|
+
description: z.ZodString;
|
|
9058
9161
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
9059
9162
|
website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9060
9163
|
owned: z.ZodBoolean;
|
|
@@ -9076,16 +9179,19 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9076
9179
|
path: string;
|
|
9077
9180
|
name: string;
|
|
9078
9181
|
}>, "many">;
|
|
9182
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
9079
9183
|
}, "strip", z.ZodTypeAny, {
|
|
9080
9184
|
files: {
|
|
9081
9185
|
path: string;
|
|
9082
9186
|
name: string;
|
|
9083
9187
|
}[];
|
|
9188
|
+
licensePath: string | null;
|
|
9084
9189
|
}, {
|
|
9085
9190
|
files: {
|
|
9086
9191
|
path: string;
|
|
9087
9192
|
name: string;
|
|
9088
9193
|
}[];
|
|
9194
|
+
licensePath: string | null;
|
|
9089
9195
|
}>>;
|
|
9090
9196
|
}, "strip", z.ZodTypeAny, {
|
|
9091
9197
|
path: string | null;
|
|
@@ -9098,6 +9204,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9098
9204
|
path: string;
|
|
9099
9205
|
name: string;
|
|
9100
9206
|
}[];
|
|
9207
|
+
licensePath: string | null;
|
|
9101
9208
|
} | undefined;
|
|
9102
9209
|
}, {
|
|
9103
9210
|
path: string | null;
|
|
@@ -9110,6 +9217,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9110
9217
|
path: string;
|
|
9111
9218
|
name: string;
|
|
9112
9219
|
}[];
|
|
9220
|
+
licensePath: string | null;
|
|
9113
9221
|
} | undefined;
|
|
9114
9222
|
}>, "many">>;
|
|
9115
9223
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -9291,6 +9399,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9291
9399
|
type: "product";
|
|
9292
9400
|
id: string;
|
|
9293
9401
|
name: string;
|
|
9402
|
+
description: string;
|
|
9294
9403
|
tagline: string;
|
|
9295
9404
|
iconUrl: string | null;
|
|
9296
9405
|
owned: boolean;
|
|
@@ -9307,6 +9416,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9307
9416
|
path: string;
|
|
9308
9417
|
name: string;
|
|
9309
9418
|
}[];
|
|
9419
|
+
licensePath: string | null;
|
|
9310
9420
|
} | undefined;
|
|
9311
9421
|
}[] | undefined;
|
|
9312
9422
|
defaultVariation?: {
|
|
@@ -9354,6 +9464,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9354
9464
|
}, {
|
|
9355
9465
|
id: string;
|
|
9356
9466
|
name: string;
|
|
9467
|
+
description: string;
|
|
9357
9468
|
tagline: string;
|
|
9358
9469
|
iconUrl: string | null;
|
|
9359
9470
|
owned: boolean;
|
|
@@ -9371,6 +9482,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9371
9482
|
path: string;
|
|
9372
9483
|
name: string;
|
|
9373
9484
|
}[];
|
|
9485
|
+
licensePath: string | null;
|
|
9374
9486
|
} | undefined;
|
|
9375
9487
|
}[] | undefined;
|
|
9376
9488
|
defaultVariation?: {
|
|
@@ -9601,6 +9713,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9601
9713
|
type: "bundle";
|
|
9602
9714
|
id: string;
|
|
9603
9715
|
name: string;
|
|
9716
|
+
description: string;
|
|
9604
9717
|
tagline: string;
|
|
9605
9718
|
iconUrl: string | null;
|
|
9606
9719
|
owned: boolean;
|
|
@@ -9609,6 +9722,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9609
9722
|
type: "product";
|
|
9610
9723
|
id: string;
|
|
9611
9724
|
name: string;
|
|
9725
|
+
description: string;
|
|
9612
9726
|
tagline: string;
|
|
9613
9727
|
iconUrl: string | null;
|
|
9614
9728
|
owned: boolean;
|
|
@@ -9625,6 +9739,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9625
9739
|
path: string;
|
|
9626
9740
|
name: string;
|
|
9627
9741
|
}[];
|
|
9742
|
+
licensePath: string | null;
|
|
9628
9743
|
} | undefined;
|
|
9629
9744
|
}[] | undefined;
|
|
9630
9745
|
defaultVariation?: {
|
|
@@ -9717,6 +9832,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9717
9832
|
}, {
|
|
9718
9833
|
id: string;
|
|
9719
9834
|
name: string;
|
|
9835
|
+
description: string;
|
|
9720
9836
|
tagline: string;
|
|
9721
9837
|
iconUrl: string | null;
|
|
9722
9838
|
owned: boolean;
|
|
@@ -9724,6 +9840,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9724
9840
|
products: ({
|
|
9725
9841
|
id: string;
|
|
9726
9842
|
name: string;
|
|
9843
|
+
description: string;
|
|
9727
9844
|
tagline: string;
|
|
9728
9845
|
iconUrl: string | null;
|
|
9729
9846
|
owned: boolean;
|
|
@@ -9741,6 +9858,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9741
9858
|
path: string;
|
|
9742
9859
|
name: string;
|
|
9743
9860
|
}[];
|
|
9861
|
+
licensePath: string | null;
|
|
9744
9862
|
} | undefined;
|
|
9745
9863
|
}[] | undefined;
|
|
9746
9864
|
defaultVariation?: {
|
|
@@ -9838,6 +9956,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
9838
9956
|
id: z.ZodString;
|
|
9839
9957
|
name: z.ZodString;
|
|
9840
9958
|
tagline: z.ZodString;
|
|
9959
|
+
description: z.ZodString;
|
|
9841
9960
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
9842
9961
|
website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9843
9962
|
owned: z.ZodBoolean;
|
|
@@ -9859,16 +9978,19 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
9859
9978
|
path: string;
|
|
9860
9979
|
name: string;
|
|
9861
9980
|
}>, "many">;
|
|
9981
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
9862
9982
|
}, "strip", z.ZodTypeAny, {
|
|
9863
9983
|
files: {
|
|
9864
9984
|
path: string;
|
|
9865
9985
|
name: string;
|
|
9866
9986
|
}[];
|
|
9987
|
+
licensePath: string | null;
|
|
9867
9988
|
}, {
|
|
9868
9989
|
files: {
|
|
9869
9990
|
path: string;
|
|
9870
9991
|
name: string;
|
|
9871
9992
|
}[];
|
|
9993
|
+
licensePath: string | null;
|
|
9872
9994
|
}>>;
|
|
9873
9995
|
}, "strip", z.ZodTypeAny, {
|
|
9874
9996
|
path: string | null;
|
|
@@ -9881,6 +10003,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
9881
10003
|
path: string;
|
|
9882
10004
|
name: string;
|
|
9883
10005
|
}[];
|
|
10006
|
+
licensePath: string | null;
|
|
9884
10007
|
} | undefined;
|
|
9885
10008
|
}, {
|
|
9886
10009
|
path: string | null;
|
|
@@ -9893,6 +10016,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
9893
10016
|
path: string;
|
|
9894
10017
|
name: string;
|
|
9895
10018
|
}[];
|
|
10019
|
+
licensePath: string | null;
|
|
9896
10020
|
} | undefined;
|
|
9897
10021
|
}>, "many">>;
|
|
9898
10022
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -10074,6 +10198,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10074
10198
|
type: "product";
|
|
10075
10199
|
id: string;
|
|
10076
10200
|
name: string;
|
|
10201
|
+
description: string;
|
|
10077
10202
|
tagline: string;
|
|
10078
10203
|
iconUrl: string | null;
|
|
10079
10204
|
owned: boolean;
|
|
@@ -10090,6 +10215,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10090
10215
|
path: string;
|
|
10091
10216
|
name: string;
|
|
10092
10217
|
}[];
|
|
10218
|
+
licensePath: string | null;
|
|
10093
10219
|
} | undefined;
|
|
10094
10220
|
}[] | undefined;
|
|
10095
10221
|
defaultVariation?: {
|
|
@@ -10137,6 +10263,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10137
10263
|
}, {
|
|
10138
10264
|
id: string;
|
|
10139
10265
|
name: string;
|
|
10266
|
+
description: string;
|
|
10140
10267
|
tagline: string;
|
|
10141
10268
|
iconUrl: string | null;
|
|
10142
10269
|
owned: boolean;
|
|
@@ -10154,6 +10281,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10154
10281
|
path: string;
|
|
10155
10282
|
name: string;
|
|
10156
10283
|
}[];
|
|
10284
|
+
licensePath: string | null;
|
|
10157
10285
|
} | undefined;
|
|
10158
10286
|
}[] | undefined;
|
|
10159
10287
|
defaultVariation?: {
|
|
@@ -10203,6 +10331,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10203
10331
|
id: z.ZodString;
|
|
10204
10332
|
name: z.ZodString;
|
|
10205
10333
|
tagline: z.ZodString;
|
|
10334
|
+
description: z.ZodString;
|
|
10206
10335
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
10207
10336
|
owned: z.ZodBoolean;
|
|
10208
10337
|
partial: z.ZodBoolean;
|
|
@@ -10210,6 +10339,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10210
10339
|
id: z.ZodString;
|
|
10211
10340
|
name: z.ZodString;
|
|
10212
10341
|
tagline: z.ZodString;
|
|
10342
|
+
description: z.ZodString;
|
|
10213
10343
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
10214
10344
|
website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10215
10345
|
owned: z.ZodBoolean;
|
|
@@ -10231,16 +10361,19 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10231
10361
|
path: string;
|
|
10232
10362
|
name: string;
|
|
10233
10363
|
}>, "many">;
|
|
10364
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
10234
10365
|
}, "strip", z.ZodTypeAny, {
|
|
10235
10366
|
files: {
|
|
10236
10367
|
path: string;
|
|
10237
10368
|
name: string;
|
|
10238
10369
|
}[];
|
|
10370
|
+
licensePath: string | null;
|
|
10239
10371
|
}, {
|
|
10240
10372
|
files: {
|
|
10241
10373
|
path: string;
|
|
10242
10374
|
name: string;
|
|
10243
10375
|
}[];
|
|
10376
|
+
licensePath: string | null;
|
|
10244
10377
|
}>>;
|
|
10245
10378
|
}, "strip", z.ZodTypeAny, {
|
|
10246
10379
|
path: string | null;
|
|
@@ -10253,6 +10386,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10253
10386
|
path: string;
|
|
10254
10387
|
name: string;
|
|
10255
10388
|
}[];
|
|
10389
|
+
licensePath: string | null;
|
|
10256
10390
|
} | undefined;
|
|
10257
10391
|
}, {
|
|
10258
10392
|
path: string | null;
|
|
@@ -10265,6 +10399,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10265
10399
|
path: string;
|
|
10266
10400
|
name: string;
|
|
10267
10401
|
}[];
|
|
10402
|
+
licensePath: string | null;
|
|
10268
10403
|
} | undefined;
|
|
10269
10404
|
}>, "many">>;
|
|
10270
10405
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -10446,6 +10581,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10446
10581
|
type: "product";
|
|
10447
10582
|
id: string;
|
|
10448
10583
|
name: string;
|
|
10584
|
+
description: string;
|
|
10449
10585
|
tagline: string;
|
|
10450
10586
|
iconUrl: string | null;
|
|
10451
10587
|
owned: boolean;
|
|
@@ -10462,6 +10598,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10462
10598
|
path: string;
|
|
10463
10599
|
name: string;
|
|
10464
10600
|
}[];
|
|
10601
|
+
licensePath: string | null;
|
|
10465
10602
|
} | undefined;
|
|
10466
10603
|
}[] | undefined;
|
|
10467
10604
|
defaultVariation?: {
|
|
@@ -10509,6 +10646,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10509
10646
|
}, {
|
|
10510
10647
|
id: string;
|
|
10511
10648
|
name: string;
|
|
10649
|
+
description: string;
|
|
10512
10650
|
tagline: string;
|
|
10513
10651
|
iconUrl: string | null;
|
|
10514
10652
|
owned: boolean;
|
|
@@ -10526,6 +10664,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10526
10664
|
path: string;
|
|
10527
10665
|
name: string;
|
|
10528
10666
|
}[];
|
|
10667
|
+
licensePath: string | null;
|
|
10529
10668
|
} | undefined;
|
|
10530
10669
|
}[] | undefined;
|
|
10531
10670
|
defaultVariation?: {
|
|
@@ -10756,6 +10895,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10756
10895
|
type: "bundle";
|
|
10757
10896
|
id: string;
|
|
10758
10897
|
name: string;
|
|
10898
|
+
description: string;
|
|
10759
10899
|
tagline: string;
|
|
10760
10900
|
iconUrl: string | null;
|
|
10761
10901
|
owned: boolean;
|
|
@@ -10764,6 +10904,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10764
10904
|
type: "product";
|
|
10765
10905
|
id: string;
|
|
10766
10906
|
name: string;
|
|
10907
|
+
description: string;
|
|
10767
10908
|
tagline: string;
|
|
10768
10909
|
iconUrl: string | null;
|
|
10769
10910
|
owned: boolean;
|
|
@@ -10780,6 +10921,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10780
10921
|
path: string;
|
|
10781
10922
|
name: string;
|
|
10782
10923
|
}[];
|
|
10924
|
+
licensePath: string | null;
|
|
10783
10925
|
} | undefined;
|
|
10784
10926
|
}[] | undefined;
|
|
10785
10927
|
defaultVariation?: {
|
|
@@ -10872,6 +11014,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10872
11014
|
}, {
|
|
10873
11015
|
id: string;
|
|
10874
11016
|
name: string;
|
|
11017
|
+
description: string;
|
|
10875
11018
|
tagline: string;
|
|
10876
11019
|
iconUrl: string | null;
|
|
10877
11020
|
owned: boolean;
|
|
@@ -10879,6 +11022,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10879
11022
|
products: ({
|
|
10880
11023
|
id: string;
|
|
10881
11024
|
name: string;
|
|
11025
|
+
description: string;
|
|
10882
11026
|
tagline: string;
|
|
10883
11027
|
iconUrl: string | null;
|
|
10884
11028
|
owned: boolean;
|
|
@@ -10896,6 +11040,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10896
11040
|
path: string;
|
|
10897
11041
|
name: string;
|
|
10898
11042
|
}[];
|
|
11043
|
+
licensePath: string | null;
|
|
10899
11044
|
} | undefined;
|
|
10900
11045
|
}[] | undefined;
|
|
10901
11046
|
defaultVariation?: {
|
|
@@ -10992,6 +11137,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10992
11137
|
type: "product";
|
|
10993
11138
|
id: string;
|
|
10994
11139
|
name: string;
|
|
11140
|
+
description: string;
|
|
10995
11141
|
tagline: string;
|
|
10996
11142
|
iconUrl: string | null;
|
|
10997
11143
|
owned: boolean;
|
|
@@ -11008,6 +11154,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11008
11154
|
path: string;
|
|
11009
11155
|
name: string;
|
|
11010
11156
|
}[];
|
|
11157
|
+
licensePath: string | null;
|
|
11011
11158
|
} | undefined;
|
|
11012
11159
|
}[] | undefined;
|
|
11013
11160
|
defaultVariation?: {
|
|
@@ -11058,6 +11205,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11058
11205
|
type: "bundle";
|
|
11059
11206
|
id: string;
|
|
11060
11207
|
name: string;
|
|
11208
|
+
description: string;
|
|
11061
11209
|
tagline: string;
|
|
11062
11210
|
iconUrl: string | null;
|
|
11063
11211
|
owned: boolean;
|
|
@@ -11066,6 +11214,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11066
11214
|
type: "product";
|
|
11067
11215
|
id: string;
|
|
11068
11216
|
name: string;
|
|
11217
|
+
description: string;
|
|
11069
11218
|
tagline: string;
|
|
11070
11219
|
iconUrl: string | null;
|
|
11071
11220
|
owned: boolean;
|
|
@@ -11082,6 +11231,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11082
11231
|
path: string;
|
|
11083
11232
|
name: string;
|
|
11084
11233
|
}[];
|
|
11234
|
+
licensePath: string | null;
|
|
11085
11235
|
} | undefined;
|
|
11086
11236
|
}[] | undefined;
|
|
11087
11237
|
defaultVariation?: {
|
|
@@ -11176,6 +11326,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11176
11326
|
products: {
|
|
11177
11327
|
id: string;
|
|
11178
11328
|
name: string;
|
|
11329
|
+
description: string;
|
|
11179
11330
|
tagline: string;
|
|
11180
11331
|
iconUrl: string | null;
|
|
11181
11332
|
owned: boolean;
|
|
@@ -11193,6 +11344,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11193
11344
|
path: string;
|
|
11194
11345
|
name: string;
|
|
11195
11346
|
}[];
|
|
11347
|
+
licensePath: string | null;
|
|
11196
11348
|
} | undefined;
|
|
11197
11349
|
}[] | undefined;
|
|
11198
11350
|
defaultVariation?: {
|
|
@@ -11242,6 +11394,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11242
11394
|
bundles: {
|
|
11243
11395
|
id: string;
|
|
11244
11396
|
name: string;
|
|
11397
|
+
description: string;
|
|
11245
11398
|
tagline: string;
|
|
11246
11399
|
iconUrl: string | null;
|
|
11247
11400
|
owned: boolean;
|
|
@@ -11249,6 +11402,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11249
11402
|
products: ({
|
|
11250
11403
|
id: string;
|
|
11251
11404
|
name: string;
|
|
11405
|
+
description: string;
|
|
11252
11406
|
tagline: string;
|
|
11253
11407
|
iconUrl: string | null;
|
|
11254
11408
|
owned: boolean;
|
|
@@ -11266,6 +11420,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11266
11420
|
path: string;
|
|
11267
11421
|
name: string;
|
|
11268
11422
|
}[];
|
|
11423
|
+
licensePath: string | null;
|
|
11269
11424
|
} | undefined;
|
|
11270
11425
|
}[] | undefined;
|
|
11271
11426
|
defaultVariation?: {
|