@moonbase.sh/storefront-api 0.2.86 → 0.2.106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -1
- package/dist/index.d.cts +95 -0
- package/dist/index.d.ts +95 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -263,16 +263,19 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
263
263
|
path: string;
|
|
264
264
|
name: string;
|
|
265
265
|
}>, "many">;
|
|
266
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
266
267
|
}, "strip", z.ZodTypeAny, {
|
|
267
268
|
files: {
|
|
268
269
|
path: string;
|
|
269
270
|
name: string;
|
|
270
271
|
}[];
|
|
272
|
+
licensePath: string | null;
|
|
271
273
|
}, {
|
|
272
274
|
files: {
|
|
273
275
|
path: string;
|
|
274
276
|
name: string;
|
|
275
277
|
}[];
|
|
278
|
+
licensePath: string | null;
|
|
276
279
|
}>>;
|
|
277
280
|
}, "strip", z.ZodTypeAny, {
|
|
278
281
|
path: string | null;
|
|
@@ -285,6 +288,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
285
288
|
path: string;
|
|
286
289
|
name: string;
|
|
287
290
|
}[];
|
|
291
|
+
licensePath: string | null;
|
|
288
292
|
} | undefined;
|
|
289
293
|
}, {
|
|
290
294
|
path: string | null;
|
|
@@ -297,6 +301,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
297
301
|
path: string;
|
|
298
302
|
name: string;
|
|
299
303
|
}[];
|
|
304
|
+
licensePath: string | null;
|
|
300
305
|
} | undefined;
|
|
301
306
|
}>, "many">>;
|
|
302
307
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -495,6 +500,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
495
500
|
path: string;
|
|
496
501
|
name: string;
|
|
497
502
|
}[];
|
|
503
|
+
licensePath: string | null;
|
|
498
504
|
} | undefined;
|
|
499
505
|
}[] | undefined;
|
|
500
506
|
defaultVariation?: {
|
|
@@ -560,6 +566,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
560
566
|
path: string;
|
|
561
567
|
name: string;
|
|
562
568
|
}[];
|
|
569
|
+
licensePath: string | null;
|
|
563
570
|
} | undefined;
|
|
564
571
|
}[] | undefined;
|
|
565
572
|
defaultVariation?: {
|
|
@@ -655,6 +662,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
655
662
|
path: string;
|
|
656
663
|
name: string;
|
|
657
664
|
}[];
|
|
665
|
+
licensePath: string | null;
|
|
658
666
|
} | undefined;
|
|
659
667
|
}[] | undefined;
|
|
660
668
|
defaultVariation?: {
|
|
@@ -734,6 +742,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
734
742
|
path: string;
|
|
735
743
|
name: string;
|
|
736
744
|
}[];
|
|
745
|
+
licensePath: string | null;
|
|
737
746
|
} | undefined;
|
|
738
747
|
}[] | undefined;
|
|
739
748
|
defaultVariation?: {
|
|
@@ -6053,6 +6062,7 @@ declare class StorefrontEndpoints {
|
|
|
6053
6062
|
path: string;
|
|
6054
6063
|
name: string;
|
|
6055
6064
|
}[];
|
|
6065
|
+
licensePath: string | null;
|
|
6056
6066
|
} | undefined;
|
|
6057
6067
|
}[] | undefined;
|
|
6058
6068
|
defaultVariation?: {
|
|
@@ -6129,6 +6139,7 @@ declare class StorefrontEndpoints {
|
|
|
6129
6139
|
path: string;
|
|
6130
6140
|
name: string;
|
|
6131
6141
|
}[];
|
|
6142
|
+
licensePath: string | null;
|
|
6132
6143
|
} | undefined;
|
|
6133
6144
|
}[] | undefined;
|
|
6134
6145
|
defaultVariation?: {
|
|
@@ -6255,16 +6266,19 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6255
6266
|
path: string;
|
|
6256
6267
|
name: string;
|
|
6257
6268
|
}>, "many">;
|
|
6269
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
6258
6270
|
}, "strip", z.ZodTypeAny, {
|
|
6259
6271
|
files: {
|
|
6260
6272
|
path: string;
|
|
6261
6273
|
name: string;
|
|
6262
6274
|
}[];
|
|
6275
|
+
licensePath: string | null;
|
|
6263
6276
|
}, {
|
|
6264
6277
|
files: {
|
|
6265
6278
|
path: string;
|
|
6266
6279
|
name: string;
|
|
6267
6280
|
}[];
|
|
6281
|
+
licensePath: string | null;
|
|
6268
6282
|
}>>;
|
|
6269
6283
|
}, "strip", z.ZodTypeAny, {
|
|
6270
6284
|
path: string | null;
|
|
@@ -6277,6 +6291,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6277
6291
|
path: string;
|
|
6278
6292
|
name: string;
|
|
6279
6293
|
}[];
|
|
6294
|
+
licensePath: string | null;
|
|
6280
6295
|
} | undefined;
|
|
6281
6296
|
}, {
|
|
6282
6297
|
path: string | null;
|
|
@@ -6289,6 +6304,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6289
6304
|
path: string;
|
|
6290
6305
|
name: string;
|
|
6291
6306
|
}[];
|
|
6307
|
+
licensePath: string | null;
|
|
6292
6308
|
} | undefined;
|
|
6293
6309
|
}>, "many">>;
|
|
6294
6310
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -6487,6 +6503,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6487
6503
|
path: string;
|
|
6488
6504
|
name: string;
|
|
6489
6505
|
}[];
|
|
6506
|
+
licensePath: string | null;
|
|
6490
6507
|
} | undefined;
|
|
6491
6508
|
}[] | undefined;
|
|
6492
6509
|
defaultVariation?: {
|
|
@@ -6552,6 +6569,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6552
6569
|
path: string;
|
|
6553
6570
|
name: string;
|
|
6554
6571
|
}[];
|
|
6572
|
+
licensePath: string | null;
|
|
6555
6573
|
} | undefined;
|
|
6556
6574
|
}[] | undefined;
|
|
6557
6575
|
defaultVariation?: {
|
|
@@ -6620,6 +6638,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6620
6638
|
path: string;
|
|
6621
6639
|
name: string;
|
|
6622
6640
|
}[];
|
|
6641
|
+
licensePath: string | null;
|
|
6623
6642
|
} | undefined;
|
|
6624
6643
|
}[] | undefined;
|
|
6625
6644
|
defaultVariation?: {
|
|
@@ -6688,6 +6707,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6688
6707
|
path: string;
|
|
6689
6708
|
name: string;
|
|
6690
6709
|
}[];
|
|
6710
|
+
licensePath: string | null;
|
|
6691
6711
|
} | undefined;
|
|
6692
6712
|
}[] | undefined;
|
|
6693
6713
|
defaultVariation?: {
|
|
@@ -6770,16 +6790,19 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6770
6790
|
path: string;
|
|
6771
6791
|
name: string;
|
|
6772
6792
|
}>, "many">;
|
|
6793
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
6773
6794
|
}, "strip", z.ZodTypeAny, {
|
|
6774
6795
|
files: {
|
|
6775
6796
|
path: string;
|
|
6776
6797
|
name: string;
|
|
6777
6798
|
}[];
|
|
6799
|
+
licensePath: string | null;
|
|
6778
6800
|
}, {
|
|
6779
6801
|
files: {
|
|
6780
6802
|
path: string;
|
|
6781
6803
|
name: string;
|
|
6782
6804
|
}[];
|
|
6805
|
+
licensePath: string | null;
|
|
6783
6806
|
}>>;
|
|
6784
6807
|
}, "strip", z.ZodTypeAny, {
|
|
6785
6808
|
path: string | null;
|
|
@@ -6792,6 +6815,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6792
6815
|
path: string;
|
|
6793
6816
|
name: string;
|
|
6794
6817
|
}[];
|
|
6818
|
+
licensePath: string | null;
|
|
6795
6819
|
} | undefined;
|
|
6796
6820
|
}, {
|
|
6797
6821
|
path: string | null;
|
|
@@ -6804,6 +6828,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
6804
6828
|
path: string;
|
|
6805
6829
|
name: string;
|
|
6806
6830
|
}[];
|
|
6831
|
+
licensePath: string | null;
|
|
6807
6832
|
} | undefined;
|
|
6808
6833
|
}>, "many">>;
|
|
6809
6834
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -7002,6 +7027,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7002
7027
|
path: string;
|
|
7003
7028
|
name: string;
|
|
7004
7029
|
}[];
|
|
7030
|
+
licensePath: string | null;
|
|
7005
7031
|
} | undefined;
|
|
7006
7032
|
}[] | undefined;
|
|
7007
7033
|
defaultVariation?: {
|
|
@@ -7067,6 +7093,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7067
7093
|
path: string;
|
|
7068
7094
|
name: string;
|
|
7069
7095
|
}[];
|
|
7096
|
+
licensePath: string | null;
|
|
7070
7097
|
} | undefined;
|
|
7071
7098
|
}[] | undefined;
|
|
7072
7099
|
defaultVariation?: {
|
|
@@ -7323,6 +7350,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7323
7350
|
path: string;
|
|
7324
7351
|
name: string;
|
|
7325
7352
|
}[];
|
|
7353
|
+
licensePath: string | null;
|
|
7326
7354
|
} | undefined;
|
|
7327
7355
|
}[] | undefined;
|
|
7328
7356
|
defaultVariation?: {
|
|
@@ -7441,6 +7469,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7441
7469
|
path: string;
|
|
7442
7470
|
name: string;
|
|
7443
7471
|
}[];
|
|
7472
|
+
licensePath: string | null;
|
|
7444
7473
|
} | undefined;
|
|
7445
7474
|
}[] | undefined;
|
|
7446
7475
|
defaultVariation?: {
|
|
@@ -7564,6 +7593,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7564
7593
|
path: string;
|
|
7565
7594
|
name: string;
|
|
7566
7595
|
}[];
|
|
7596
|
+
licensePath: string | null;
|
|
7567
7597
|
} | undefined;
|
|
7568
7598
|
}[] | undefined;
|
|
7569
7599
|
defaultVariation?: {
|
|
@@ -7685,6 +7715,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7685
7715
|
path: string;
|
|
7686
7716
|
name: string;
|
|
7687
7717
|
}[];
|
|
7718
|
+
licensePath: string | null;
|
|
7688
7719
|
} | undefined;
|
|
7689
7720
|
}[] | undefined;
|
|
7690
7721
|
defaultVariation?: {
|
|
@@ -7806,6 +7837,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7806
7837
|
path: string;
|
|
7807
7838
|
name: string;
|
|
7808
7839
|
}[];
|
|
7840
|
+
licensePath: string | null;
|
|
7809
7841
|
} | undefined;
|
|
7810
7842
|
}[] | undefined;
|
|
7811
7843
|
defaultVariation?: {
|
|
@@ -7884,6 +7916,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
7884
7916
|
path: string;
|
|
7885
7917
|
name: string;
|
|
7886
7918
|
}[];
|
|
7919
|
+
licensePath: string | null;
|
|
7887
7920
|
} | undefined;
|
|
7888
7921
|
}[] | undefined;
|
|
7889
7922
|
defaultVariation?: {
|
|
@@ -8004,6 +8037,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8004
8037
|
path: string;
|
|
8005
8038
|
name: string;
|
|
8006
8039
|
}[];
|
|
8040
|
+
licensePath: string | null;
|
|
8007
8041
|
} | undefined;
|
|
8008
8042
|
}[] | undefined;
|
|
8009
8043
|
defaultVariation?: {
|
|
@@ -8081,6 +8115,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8081
8115
|
path: string;
|
|
8082
8116
|
name: string;
|
|
8083
8117
|
}[];
|
|
8118
|
+
licensePath: string | null;
|
|
8084
8119
|
} | undefined;
|
|
8085
8120
|
}[] | undefined;
|
|
8086
8121
|
defaultVariation?: {
|
|
@@ -8222,16 +8257,19 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8222
8257
|
path: string;
|
|
8223
8258
|
name: string;
|
|
8224
8259
|
}>, "many">;
|
|
8260
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8225
8261
|
}, "strip", z.ZodTypeAny, {
|
|
8226
8262
|
files: {
|
|
8227
8263
|
path: string;
|
|
8228
8264
|
name: string;
|
|
8229
8265
|
}[];
|
|
8266
|
+
licensePath: string | null;
|
|
8230
8267
|
}, {
|
|
8231
8268
|
files: {
|
|
8232
8269
|
path: string;
|
|
8233
8270
|
name: string;
|
|
8234
8271
|
}[];
|
|
8272
|
+
licensePath: string | null;
|
|
8235
8273
|
}>>;
|
|
8236
8274
|
}, "strip", z.ZodTypeAny, {
|
|
8237
8275
|
path: string | null;
|
|
@@ -8244,6 +8282,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8244
8282
|
path: string;
|
|
8245
8283
|
name: string;
|
|
8246
8284
|
}[];
|
|
8285
|
+
licensePath: string | null;
|
|
8247
8286
|
} | undefined;
|
|
8248
8287
|
}, {
|
|
8249
8288
|
path: string | null;
|
|
@@ -8256,6 +8295,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8256
8295
|
path: string;
|
|
8257
8296
|
name: string;
|
|
8258
8297
|
}[];
|
|
8298
|
+
licensePath: string | null;
|
|
8259
8299
|
} | undefined;
|
|
8260
8300
|
}>, "many">>;
|
|
8261
8301
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8286,6 +8326,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8286
8326
|
path: string;
|
|
8287
8327
|
name: string;
|
|
8288
8328
|
}[];
|
|
8329
|
+
licensePath: string | null;
|
|
8289
8330
|
} | undefined;
|
|
8290
8331
|
}[] | undefined;
|
|
8291
8332
|
}, {
|
|
@@ -8316,6 +8357,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8316
8357
|
path: string;
|
|
8317
8358
|
name: string;
|
|
8318
8359
|
}[];
|
|
8360
|
+
licensePath: string | null;
|
|
8319
8361
|
} | undefined;
|
|
8320
8362
|
}[] | undefined;
|
|
8321
8363
|
}>;
|
|
@@ -8353,6 +8395,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8353
8395
|
path: string;
|
|
8354
8396
|
name: string;
|
|
8355
8397
|
}[];
|
|
8398
|
+
licensePath: string | null;
|
|
8356
8399
|
} | undefined;
|
|
8357
8400
|
}[] | undefined;
|
|
8358
8401
|
};
|
|
@@ -8390,6 +8433,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
8390
8433
|
path: string;
|
|
8391
8434
|
name: string;
|
|
8392
8435
|
}[];
|
|
8436
|
+
licensePath: string | null;
|
|
8393
8437
|
} | undefined;
|
|
8394
8438
|
}[] | undefined;
|
|
8395
8439
|
};
|
|
@@ -8465,16 +8509,19 @@ declare const manifestSchema: z.ZodObject<{
|
|
|
8465
8509
|
path: string;
|
|
8466
8510
|
name: string;
|
|
8467
8511
|
}>, "many">;
|
|
8512
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8468
8513
|
}, "strip", z.ZodTypeAny, {
|
|
8469
8514
|
files: {
|
|
8470
8515
|
path: string;
|
|
8471
8516
|
name: string;
|
|
8472
8517
|
}[];
|
|
8518
|
+
licensePath: string | null;
|
|
8473
8519
|
}, {
|
|
8474
8520
|
files: {
|
|
8475
8521
|
path: string;
|
|
8476
8522
|
name: string;
|
|
8477
8523
|
}[];
|
|
8524
|
+
licensePath: string | null;
|
|
8478
8525
|
}>;
|
|
8479
8526
|
declare const downloadSchema: z.ZodObject<{
|
|
8480
8527
|
name: z.ZodString;
|
|
@@ -8493,16 +8540,19 @@ declare const downloadSchema: z.ZodObject<{
|
|
|
8493
8540
|
path: string;
|
|
8494
8541
|
name: string;
|
|
8495
8542
|
}>, "many">;
|
|
8543
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8496
8544
|
}, "strip", z.ZodTypeAny, {
|
|
8497
8545
|
files: {
|
|
8498
8546
|
path: string;
|
|
8499
8547
|
name: string;
|
|
8500
8548
|
}[];
|
|
8549
|
+
licensePath: string | null;
|
|
8501
8550
|
}, {
|
|
8502
8551
|
files: {
|
|
8503
8552
|
path: string;
|
|
8504
8553
|
name: string;
|
|
8505
8554
|
}[];
|
|
8555
|
+
licensePath: string | null;
|
|
8506
8556
|
}>>;
|
|
8507
8557
|
}, "strip", z.ZodTypeAny, {
|
|
8508
8558
|
path: string | null;
|
|
@@ -8515,6 +8565,7 @@ declare const downloadSchema: z.ZodObject<{
|
|
|
8515
8565
|
path: string;
|
|
8516
8566
|
name: string;
|
|
8517
8567
|
}[];
|
|
8568
|
+
licensePath: string | null;
|
|
8518
8569
|
} | undefined;
|
|
8519
8570
|
}, {
|
|
8520
8571
|
path: string | null;
|
|
@@ -8527,6 +8578,7 @@ declare const downloadSchema: z.ZodObject<{
|
|
|
8527
8578
|
path: string;
|
|
8528
8579
|
name: string;
|
|
8529
8580
|
}[];
|
|
8581
|
+
licensePath: string | null;
|
|
8530
8582
|
} | undefined;
|
|
8531
8583
|
}>;
|
|
8532
8584
|
declare const productSummarySchema: z.ZodObject<{
|
|
@@ -8563,16 +8615,19 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8563
8615
|
path: string;
|
|
8564
8616
|
name: string;
|
|
8565
8617
|
}>, "many">;
|
|
8618
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8566
8619
|
}, "strip", z.ZodTypeAny, {
|
|
8567
8620
|
files: {
|
|
8568
8621
|
path: string;
|
|
8569
8622
|
name: string;
|
|
8570
8623
|
}[];
|
|
8624
|
+
licensePath: string | null;
|
|
8571
8625
|
}, {
|
|
8572
8626
|
files: {
|
|
8573
8627
|
path: string;
|
|
8574
8628
|
name: string;
|
|
8575
8629
|
}[];
|
|
8630
|
+
licensePath: string | null;
|
|
8576
8631
|
}>>;
|
|
8577
8632
|
}, "strip", z.ZodTypeAny, {
|
|
8578
8633
|
path: string | null;
|
|
@@ -8585,6 +8640,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8585
8640
|
path: string;
|
|
8586
8641
|
name: string;
|
|
8587
8642
|
}[];
|
|
8643
|
+
licensePath: string | null;
|
|
8588
8644
|
} | undefined;
|
|
8589
8645
|
}, {
|
|
8590
8646
|
path: string | null;
|
|
@@ -8597,6 +8653,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8597
8653
|
path: string;
|
|
8598
8654
|
name: string;
|
|
8599
8655
|
}[];
|
|
8656
|
+
licensePath: string | null;
|
|
8600
8657
|
} | undefined;
|
|
8601
8658
|
}>, "many">>;
|
|
8602
8659
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8627,6 +8684,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8627
8684
|
path: string;
|
|
8628
8685
|
name: string;
|
|
8629
8686
|
}[];
|
|
8687
|
+
licensePath: string | null;
|
|
8630
8688
|
} | undefined;
|
|
8631
8689
|
}[] | undefined;
|
|
8632
8690
|
}, {
|
|
@@ -8657,6 +8715,7 @@ declare const productSummarySchema: z.ZodObject<{
|
|
|
8657
8715
|
path: string;
|
|
8658
8716
|
name: string;
|
|
8659
8717
|
}[];
|
|
8718
|
+
licensePath: string | null;
|
|
8660
8719
|
} | undefined;
|
|
8661
8720
|
}[] | undefined;
|
|
8662
8721
|
}>;
|
|
@@ -8737,16 +8796,19 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8737
8796
|
path: string;
|
|
8738
8797
|
name: string;
|
|
8739
8798
|
}>, "many">;
|
|
8799
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
8740
8800
|
}, "strip", z.ZodTypeAny, {
|
|
8741
8801
|
files: {
|
|
8742
8802
|
path: string;
|
|
8743
8803
|
name: string;
|
|
8744
8804
|
}[];
|
|
8805
|
+
licensePath: string | null;
|
|
8745
8806
|
}, {
|
|
8746
8807
|
files: {
|
|
8747
8808
|
path: string;
|
|
8748
8809
|
name: string;
|
|
8749
8810
|
}[];
|
|
8811
|
+
licensePath: string | null;
|
|
8750
8812
|
}>>;
|
|
8751
8813
|
}, "strip", z.ZodTypeAny, {
|
|
8752
8814
|
path: string | null;
|
|
@@ -8759,6 +8821,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8759
8821
|
path: string;
|
|
8760
8822
|
name: string;
|
|
8761
8823
|
}[];
|
|
8824
|
+
licensePath: string | null;
|
|
8762
8825
|
} | undefined;
|
|
8763
8826
|
}, {
|
|
8764
8827
|
path: string | null;
|
|
@@ -8771,6 +8834,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8771
8834
|
path: string;
|
|
8772
8835
|
name: string;
|
|
8773
8836
|
}[];
|
|
8837
|
+
licensePath: string | null;
|
|
8774
8838
|
} | undefined;
|
|
8775
8839
|
}>, "many">>;
|
|
8776
8840
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -8969,6 +9033,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
8969
9033
|
path: string;
|
|
8970
9034
|
name: string;
|
|
8971
9035
|
}[];
|
|
9036
|
+
licensePath: string | null;
|
|
8972
9037
|
} | undefined;
|
|
8973
9038
|
}[] | undefined;
|
|
8974
9039
|
defaultVariation?: {
|
|
@@ -9034,6 +9099,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
9034
9099
|
path: string;
|
|
9035
9100
|
name: string;
|
|
9036
9101
|
}[];
|
|
9102
|
+
licensePath: string | null;
|
|
9037
9103
|
} | undefined;
|
|
9038
9104
|
}[] | undefined;
|
|
9039
9105
|
defaultVariation?: {
|
|
@@ -9113,16 +9179,19 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9113
9179
|
path: string;
|
|
9114
9180
|
name: string;
|
|
9115
9181
|
}>, "many">;
|
|
9182
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
9116
9183
|
}, "strip", z.ZodTypeAny, {
|
|
9117
9184
|
files: {
|
|
9118
9185
|
path: string;
|
|
9119
9186
|
name: string;
|
|
9120
9187
|
}[];
|
|
9188
|
+
licensePath: string | null;
|
|
9121
9189
|
}, {
|
|
9122
9190
|
files: {
|
|
9123
9191
|
path: string;
|
|
9124
9192
|
name: string;
|
|
9125
9193
|
}[];
|
|
9194
|
+
licensePath: string | null;
|
|
9126
9195
|
}>>;
|
|
9127
9196
|
}, "strip", z.ZodTypeAny, {
|
|
9128
9197
|
path: string | null;
|
|
@@ -9135,6 +9204,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9135
9204
|
path: string;
|
|
9136
9205
|
name: string;
|
|
9137
9206
|
}[];
|
|
9207
|
+
licensePath: string | null;
|
|
9138
9208
|
} | undefined;
|
|
9139
9209
|
}, {
|
|
9140
9210
|
path: string | null;
|
|
@@ -9147,6 +9217,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9147
9217
|
path: string;
|
|
9148
9218
|
name: string;
|
|
9149
9219
|
}[];
|
|
9220
|
+
licensePath: string | null;
|
|
9150
9221
|
} | undefined;
|
|
9151
9222
|
}>, "many">>;
|
|
9152
9223
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -9345,6 +9416,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9345
9416
|
path: string;
|
|
9346
9417
|
name: string;
|
|
9347
9418
|
}[];
|
|
9419
|
+
licensePath: string | null;
|
|
9348
9420
|
} | undefined;
|
|
9349
9421
|
}[] | undefined;
|
|
9350
9422
|
defaultVariation?: {
|
|
@@ -9410,6 +9482,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9410
9482
|
path: string;
|
|
9411
9483
|
name: string;
|
|
9412
9484
|
}[];
|
|
9485
|
+
licensePath: string | null;
|
|
9413
9486
|
} | undefined;
|
|
9414
9487
|
}[] | undefined;
|
|
9415
9488
|
defaultVariation?: {
|
|
@@ -9666,6 +9739,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9666
9739
|
path: string;
|
|
9667
9740
|
name: string;
|
|
9668
9741
|
}[];
|
|
9742
|
+
licensePath: string | null;
|
|
9669
9743
|
} | undefined;
|
|
9670
9744
|
}[] | undefined;
|
|
9671
9745
|
defaultVariation?: {
|
|
@@ -9784,6 +9858,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9784
9858
|
path: string;
|
|
9785
9859
|
name: string;
|
|
9786
9860
|
}[];
|
|
9861
|
+
licensePath: string | null;
|
|
9787
9862
|
} | undefined;
|
|
9788
9863
|
}[] | undefined;
|
|
9789
9864
|
defaultVariation?: {
|
|
@@ -9903,16 +9978,19 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
9903
9978
|
path: string;
|
|
9904
9979
|
name: string;
|
|
9905
9980
|
}>, "many">;
|
|
9981
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
9906
9982
|
}, "strip", z.ZodTypeAny, {
|
|
9907
9983
|
files: {
|
|
9908
9984
|
path: string;
|
|
9909
9985
|
name: string;
|
|
9910
9986
|
}[];
|
|
9987
|
+
licensePath: string | null;
|
|
9911
9988
|
}, {
|
|
9912
9989
|
files: {
|
|
9913
9990
|
path: string;
|
|
9914
9991
|
name: string;
|
|
9915
9992
|
}[];
|
|
9993
|
+
licensePath: string | null;
|
|
9916
9994
|
}>>;
|
|
9917
9995
|
}, "strip", z.ZodTypeAny, {
|
|
9918
9996
|
path: string | null;
|
|
@@ -9925,6 +10003,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
9925
10003
|
path: string;
|
|
9926
10004
|
name: string;
|
|
9927
10005
|
}[];
|
|
10006
|
+
licensePath: string | null;
|
|
9928
10007
|
} | undefined;
|
|
9929
10008
|
}, {
|
|
9930
10009
|
path: string | null;
|
|
@@ -9937,6 +10016,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
9937
10016
|
path: string;
|
|
9938
10017
|
name: string;
|
|
9939
10018
|
}[];
|
|
10019
|
+
licensePath: string | null;
|
|
9940
10020
|
} | undefined;
|
|
9941
10021
|
}>, "many">>;
|
|
9942
10022
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -10135,6 +10215,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10135
10215
|
path: string;
|
|
10136
10216
|
name: string;
|
|
10137
10217
|
}[];
|
|
10218
|
+
licensePath: string | null;
|
|
10138
10219
|
} | undefined;
|
|
10139
10220
|
}[] | undefined;
|
|
10140
10221
|
defaultVariation?: {
|
|
@@ -10200,6 +10281,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10200
10281
|
path: string;
|
|
10201
10282
|
name: string;
|
|
10202
10283
|
}[];
|
|
10284
|
+
licensePath: string | null;
|
|
10203
10285
|
} | undefined;
|
|
10204
10286
|
}[] | undefined;
|
|
10205
10287
|
defaultVariation?: {
|
|
@@ -10279,16 +10361,19 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10279
10361
|
path: string;
|
|
10280
10362
|
name: string;
|
|
10281
10363
|
}>, "many">;
|
|
10364
|
+
licensePath: z.ZodNullable<z.ZodString>;
|
|
10282
10365
|
}, "strip", z.ZodTypeAny, {
|
|
10283
10366
|
files: {
|
|
10284
10367
|
path: string;
|
|
10285
10368
|
name: string;
|
|
10286
10369
|
}[];
|
|
10370
|
+
licensePath: string | null;
|
|
10287
10371
|
}, {
|
|
10288
10372
|
files: {
|
|
10289
10373
|
path: string;
|
|
10290
10374
|
name: string;
|
|
10291
10375
|
}[];
|
|
10376
|
+
licensePath: string | null;
|
|
10292
10377
|
}>>;
|
|
10293
10378
|
}, "strip", z.ZodTypeAny, {
|
|
10294
10379
|
path: string | null;
|
|
@@ -10301,6 +10386,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10301
10386
|
path: string;
|
|
10302
10387
|
name: string;
|
|
10303
10388
|
}[];
|
|
10389
|
+
licensePath: string | null;
|
|
10304
10390
|
} | undefined;
|
|
10305
10391
|
}, {
|
|
10306
10392
|
path: string | null;
|
|
@@ -10313,6 +10399,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10313
10399
|
path: string;
|
|
10314
10400
|
name: string;
|
|
10315
10401
|
}[];
|
|
10402
|
+
licensePath: string | null;
|
|
10316
10403
|
} | undefined;
|
|
10317
10404
|
}>, "many">>;
|
|
10318
10405
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
@@ -10511,6 +10598,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10511
10598
|
path: string;
|
|
10512
10599
|
name: string;
|
|
10513
10600
|
}[];
|
|
10601
|
+
licensePath: string | null;
|
|
10514
10602
|
} | undefined;
|
|
10515
10603
|
}[] | undefined;
|
|
10516
10604
|
defaultVariation?: {
|
|
@@ -10576,6 +10664,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10576
10664
|
path: string;
|
|
10577
10665
|
name: string;
|
|
10578
10666
|
}[];
|
|
10667
|
+
licensePath: string | null;
|
|
10579
10668
|
} | undefined;
|
|
10580
10669
|
}[] | undefined;
|
|
10581
10670
|
defaultVariation?: {
|
|
@@ -10832,6 +10921,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10832
10921
|
path: string;
|
|
10833
10922
|
name: string;
|
|
10834
10923
|
}[];
|
|
10924
|
+
licensePath: string | null;
|
|
10835
10925
|
} | undefined;
|
|
10836
10926
|
}[] | undefined;
|
|
10837
10927
|
defaultVariation?: {
|
|
@@ -10950,6 +11040,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10950
11040
|
path: string;
|
|
10951
11041
|
name: string;
|
|
10952
11042
|
}[];
|
|
11043
|
+
licensePath: string | null;
|
|
10953
11044
|
} | undefined;
|
|
10954
11045
|
}[] | undefined;
|
|
10955
11046
|
defaultVariation?: {
|
|
@@ -11063,6 +11154,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11063
11154
|
path: string;
|
|
11064
11155
|
name: string;
|
|
11065
11156
|
}[];
|
|
11157
|
+
licensePath: string | null;
|
|
11066
11158
|
} | undefined;
|
|
11067
11159
|
}[] | undefined;
|
|
11068
11160
|
defaultVariation?: {
|
|
@@ -11139,6 +11231,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11139
11231
|
path: string;
|
|
11140
11232
|
name: string;
|
|
11141
11233
|
}[];
|
|
11234
|
+
licensePath: string | null;
|
|
11142
11235
|
} | undefined;
|
|
11143
11236
|
}[] | undefined;
|
|
11144
11237
|
defaultVariation?: {
|
|
@@ -11251,6 +11344,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11251
11344
|
path: string;
|
|
11252
11345
|
name: string;
|
|
11253
11346
|
}[];
|
|
11347
|
+
licensePath: string | null;
|
|
11254
11348
|
} | undefined;
|
|
11255
11349
|
}[] | undefined;
|
|
11256
11350
|
defaultVariation?: {
|
|
@@ -11326,6 +11420,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11326
11420
|
path: string;
|
|
11327
11421
|
name: string;
|
|
11328
11422
|
}[];
|
|
11423
|
+
licensePath: string | null;
|
|
11329
11424
|
} | undefined;
|
|
11330
11425
|
}[] | undefined;
|
|
11331
11426
|
defaultVariation?: {
|
package/dist/index.js
CHANGED