@moonbase.sh/storefront-api 1.0.17 → 1.0.20
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 +19 -4
- package/dist/index.d.cts +230 -3
- package/dist/index.d.ts +230 -3
- package/dist/index.js +19 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -437,6 +437,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
437
437
|
minQuantity: number;
|
|
438
438
|
}[] | null | undefined;
|
|
439
439
|
}>, "many">>;
|
|
440
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
440
441
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
441
442
|
}, "strip", z.ZodTypeAny, {
|
|
442
443
|
id: string;
|
|
@@ -530,6 +531,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
530
531
|
minQuantity: number;
|
|
531
532
|
}[] | null | undefined;
|
|
532
533
|
}[] | undefined;
|
|
534
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
533
535
|
}, {
|
|
534
536
|
id: string;
|
|
535
537
|
name: string;
|
|
@@ -622,6 +624,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
622
624
|
minQuantity: number;
|
|
623
625
|
}[] | null | undefined;
|
|
624
626
|
}[] | undefined;
|
|
627
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
625
628
|
}>;
|
|
626
629
|
fulfillmentType: z.ZodOptional<z.ZodNativeEnum<typeof ActivationRequestFulfillmentType>>;
|
|
627
630
|
trialEligibility: z.ZodOptional<z.ZodObject<{
|
|
@@ -745,6 +748,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
745
748
|
minQuantity: number;
|
|
746
749
|
}[] | null | undefined;
|
|
747
750
|
}[] | undefined;
|
|
751
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
748
752
|
};
|
|
749
753
|
fulfillmentType?: ActivationRequestFulfillmentType | undefined;
|
|
750
754
|
trialEligibility?: {
|
|
@@ -852,6 +856,7 @@ declare const activationRequestSchema: z.ZodObject<{
|
|
|
852
856
|
minQuantity: number;
|
|
853
857
|
}[] | null | undefined;
|
|
854
858
|
}[] | undefined;
|
|
859
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
855
860
|
};
|
|
856
861
|
fulfillmentType?: ActivationRequestFulfillmentType | undefined;
|
|
857
862
|
trialEligibility?: {
|
|
@@ -1227,7 +1232,7 @@ declare namespace schemas$9 {
|
|
|
1227
1232
|
|
|
1228
1233
|
type CommunicationPreferences = z.infer<typeof communicationPreferencesSchema>;
|
|
1229
1234
|
declare enum ConnectableAccountProvider {
|
|
1230
|
-
|
|
1235
|
+
iLok = "iLok"
|
|
1231
1236
|
}
|
|
1232
1237
|
type ConnectedAccount = z.infer<typeof connectedAccountSchema>;
|
|
1233
1238
|
type User = z.infer<typeof userSchema>;
|
|
@@ -1482,6 +1487,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1482
1487
|
}>]>]>>;
|
|
1483
1488
|
requiredConnectedAccount: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof ConnectableAccountProvider>>>;
|
|
1484
1489
|
fulfillmentMessage: z.ZodOptional<z.ZodString>;
|
|
1490
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
1485
1491
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
1486
1492
|
createdAt: z.ZodDate;
|
|
1487
1493
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1525,6 +1531,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1525
1531
|
maxNumberOfActivations: number;
|
|
1526
1532
|
createdAt: Date;
|
|
1527
1533
|
expiresAt?: Date | undefined;
|
|
1534
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
1528
1535
|
externalFulfillment?: string | {
|
|
1529
1536
|
type: "file";
|
|
1530
1537
|
data: string;
|
|
@@ -1576,6 +1583,7 @@ declare const licenseSchema: z.ZodObject<{
|
|
|
1576
1583
|
maxNumberOfActivations: number;
|
|
1577
1584
|
createdAt: Date;
|
|
1578
1585
|
expiresAt?: Date | undefined;
|
|
1586
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
1579
1587
|
externalFulfillment?: string | {
|
|
1580
1588
|
type: "file";
|
|
1581
1589
|
data: string;
|
|
@@ -1894,6 +1902,10 @@ interface Quantifiable<T> {
|
|
|
1894
1902
|
quantity: number;
|
|
1895
1903
|
}
|
|
1896
1904
|
type SingleOrMultiple<T> = T | T[];
|
|
1905
|
+
interface RawPropertyObject {
|
|
1906
|
+
[key: string]: RawPropertyValue;
|
|
1907
|
+
}
|
|
1908
|
+
type RawPropertyValue = string | number | boolean | RawPropertyObject;
|
|
1897
1909
|
declare enum CycleLength {
|
|
1898
1910
|
Daily = "Daily",
|
|
1899
1911
|
Weekly = "Weekly",
|
|
@@ -2893,6 +2905,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
2893
2905
|
minQuantity: number;
|
|
2894
2906
|
}[] | null | undefined;
|
|
2895
2907
|
}>, "many">>;
|
|
2908
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
2896
2909
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
2897
2910
|
}, "strip", z.ZodTypeAny, {
|
|
2898
2911
|
id: string;
|
|
@@ -2986,6 +2999,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
2986
2999
|
minQuantity: number;
|
|
2987
3000
|
}[] | null | undefined;
|
|
2988
3001
|
}[] | undefined;
|
|
3002
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
2989
3003
|
}, {
|
|
2990
3004
|
id: string;
|
|
2991
3005
|
name: string;
|
|
@@ -3078,6 +3092,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
3078
3092
|
minQuantity: number;
|
|
3079
3093
|
}[] | null | undefined;
|
|
3080
3094
|
}[] | undefined;
|
|
3095
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
3081
3096
|
}>;
|
|
3082
3097
|
}, "strip", z.ZodTypeAny, {
|
|
3083
3098
|
type: "Product";
|
|
@@ -3174,6 +3189,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
3174
3189
|
minQuantity: number;
|
|
3175
3190
|
}[] | null | undefined;
|
|
3176
3191
|
}[] | undefined;
|
|
3192
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
3177
3193
|
};
|
|
3178
3194
|
}, {
|
|
3179
3195
|
type: "Product";
|
|
@@ -3270,6 +3286,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
3270
3286
|
minQuantity: number;
|
|
3271
3287
|
}[] | null | undefined;
|
|
3272
3288
|
}[] | undefined;
|
|
3289
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
3273
3290
|
};
|
|
3274
3291
|
}>, z.ZodObject<{
|
|
3275
3292
|
type: z.ZodLiteral<"Bundle">;
|
|
@@ -3645,6 +3662,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
3645
3662
|
minQuantity: number;
|
|
3646
3663
|
}[] | null | undefined;
|
|
3647
3664
|
}>, "many">>;
|
|
3665
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
3648
3666
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
3649
3667
|
}, "strip", z.ZodTypeAny, {
|
|
3650
3668
|
id: string;
|
|
@@ -3738,6 +3756,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
3738
3756
|
minQuantity: number;
|
|
3739
3757
|
}[] | null | undefined;
|
|
3740
3758
|
}[] | undefined;
|
|
3759
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
3741
3760
|
}, {
|
|
3742
3761
|
id: string;
|
|
3743
3762
|
name: string;
|
|
@@ -3830,6 +3849,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
3830
3849
|
minQuantity: number;
|
|
3831
3850
|
}[] | null | undefined;
|
|
3832
3851
|
}[] | undefined;
|
|
3852
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
3833
3853
|
}>, z.ZodObject<{
|
|
3834
3854
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
3835
3855
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4133,6 +4153,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4133
4153
|
minQuantity: number;
|
|
4134
4154
|
}[] | null | undefined;
|
|
4135
4155
|
}>, "many">>;
|
|
4156
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
4136
4157
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
4137
4158
|
}, "strip", z.ZodTypeAny, {
|
|
4138
4159
|
id: string;
|
|
@@ -4235,6 +4256,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4235
4256
|
minQuantity: number;
|
|
4236
4257
|
}[] | null | undefined;
|
|
4237
4258
|
}[] | undefined;
|
|
4259
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4238
4260
|
} & {
|
|
4239
4261
|
included?: boolean | undefined;
|
|
4240
4262
|
})[];
|
|
@@ -4306,6 +4328,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4306
4328
|
minQuantity: number;
|
|
4307
4329
|
}[] | null | undefined;
|
|
4308
4330
|
}[] | undefined;
|
|
4331
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4309
4332
|
}, {
|
|
4310
4333
|
id: string;
|
|
4311
4334
|
name: string;
|
|
@@ -4406,6 +4429,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4406
4429
|
minQuantity: number;
|
|
4407
4430
|
}[] | null | undefined;
|
|
4408
4431
|
}[] | undefined;
|
|
4432
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4409
4433
|
} & {
|
|
4410
4434
|
included?: boolean | undefined;
|
|
4411
4435
|
})[];
|
|
@@ -4478,6 +4502,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4478
4502
|
minQuantity: number;
|
|
4479
4503
|
}[] | null | undefined;
|
|
4480
4504
|
}[] | undefined;
|
|
4505
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4481
4506
|
}>;
|
|
4482
4507
|
}, "strip", z.ZodTypeAny, {
|
|
4483
4508
|
type: "Bundle";
|
|
@@ -4583,6 +4608,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4583
4608
|
minQuantity: number;
|
|
4584
4609
|
}[] | null | undefined;
|
|
4585
4610
|
}[] | undefined;
|
|
4611
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4586
4612
|
} & {
|
|
4587
4613
|
included?: boolean | undefined;
|
|
4588
4614
|
})[];
|
|
@@ -4654,6 +4680,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4654
4680
|
minQuantity: number;
|
|
4655
4681
|
}[] | null | undefined;
|
|
4656
4682
|
}[] | undefined;
|
|
4683
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4657
4684
|
};
|
|
4658
4685
|
}, {
|
|
4659
4686
|
type: "Bundle";
|
|
@@ -4758,6 +4785,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4758
4785
|
minQuantity: number;
|
|
4759
4786
|
}[] | null | undefined;
|
|
4760
4787
|
}[] | undefined;
|
|
4788
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4761
4789
|
} & {
|
|
4762
4790
|
included?: boolean | undefined;
|
|
4763
4791
|
})[];
|
|
@@ -4830,6 +4858,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4830
4858
|
minQuantity: number;
|
|
4831
4859
|
}[] | null | undefined;
|
|
4832
4860
|
}[] | undefined;
|
|
4861
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4833
4862
|
};
|
|
4834
4863
|
}>]>;
|
|
4835
4864
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4959,6 +4988,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
4959
4988
|
minQuantity: number;
|
|
4960
4989
|
}[] | null | undefined;
|
|
4961
4990
|
}[] | undefined;
|
|
4991
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
4962
4992
|
};
|
|
4963
4993
|
} | {
|
|
4964
4994
|
type: "Bundle";
|
|
@@ -5064,6 +5094,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
5064
5094
|
minQuantity: number;
|
|
5065
5095
|
}[] | null | undefined;
|
|
5066
5096
|
}[] | undefined;
|
|
5097
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
5067
5098
|
} & {
|
|
5068
5099
|
included?: boolean | undefined;
|
|
5069
5100
|
})[];
|
|
@@ -5135,6 +5166,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
5135
5166
|
minQuantity: number;
|
|
5136
5167
|
}[] | null | undefined;
|
|
5137
5168
|
}[] | undefined;
|
|
5169
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
5138
5170
|
};
|
|
5139
5171
|
};
|
|
5140
5172
|
paymentMethod?: string | undefined;
|
|
@@ -5294,6 +5326,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
5294
5326
|
minQuantity: number;
|
|
5295
5327
|
}[] | null | undefined;
|
|
5296
5328
|
}[] | undefined;
|
|
5329
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
5297
5330
|
};
|
|
5298
5331
|
} | {
|
|
5299
5332
|
type: "Bundle";
|
|
@@ -5398,6 +5431,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
5398
5431
|
minQuantity: number;
|
|
5399
5432
|
}[] | null | undefined;
|
|
5400
5433
|
}[] | undefined;
|
|
5434
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
5401
5435
|
} & {
|
|
5402
5436
|
included?: boolean | undefined;
|
|
5403
5437
|
})[];
|
|
@@ -5470,6 +5504,7 @@ declare const subscriptionSchema: z.ZodObject<{
|
|
|
5470
5504
|
minQuantity: number;
|
|
5471
5505
|
}[] | null | undefined;
|
|
5472
5506
|
}[] | undefined;
|
|
5507
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
5473
5508
|
};
|
|
5474
5509
|
};
|
|
5475
5510
|
paymentMethod?: string | undefined;
|
|
@@ -19703,6 +19738,7 @@ declare class StorefrontEndpoints {
|
|
|
19703
19738
|
minQuantity: number;
|
|
19704
19739
|
}[] | null | undefined;
|
|
19705
19740
|
}[] | undefined;
|
|
19741
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
19706
19742
|
}[];
|
|
19707
19743
|
suggestedCurrency: string;
|
|
19708
19744
|
bundles: {
|
|
@@ -19806,6 +19842,7 @@ declare class StorefrontEndpoints {
|
|
|
19806
19842
|
minQuantity: number;
|
|
19807
19843
|
}[] | null | undefined;
|
|
19808
19844
|
}[] | undefined;
|
|
19845
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
19809
19846
|
} & {
|
|
19810
19847
|
included?: boolean | undefined;
|
|
19811
19848
|
})[];
|
|
@@ -19877,6 +19914,7 @@ declare class StorefrontEndpoints {
|
|
|
19877
19914
|
minQuantity: number;
|
|
19878
19915
|
}[] | null | undefined;
|
|
19879
19916
|
}[] | undefined;
|
|
19917
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
19880
19918
|
}[];
|
|
19881
19919
|
enabledCurrencies?: string[] | undefined;
|
|
19882
19920
|
offers?: {
|
|
@@ -19989,6 +20027,7 @@ declare class StorefrontEndpoints {
|
|
|
19989
20027
|
minQuantity: number;
|
|
19990
20028
|
}[] | null | undefined;
|
|
19991
20029
|
}[] | undefined;
|
|
20030
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
19992
20031
|
} | {
|
|
19993
20032
|
id: string;
|
|
19994
20033
|
name: string;
|
|
@@ -20090,6 +20129,7 @@ declare class StorefrontEndpoints {
|
|
|
20090
20129
|
minQuantity: number;
|
|
20091
20130
|
}[] | null | undefined;
|
|
20092
20131
|
}[] | undefined;
|
|
20132
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
20093
20133
|
} & {
|
|
20094
20134
|
included?: boolean | undefined;
|
|
20095
20135
|
})[];
|
|
@@ -20161,6 +20201,7 @@ declare class StorefrontEndpoints {
|
|
|
20161
20201
|
minQuantity: number;
|
|
20162
20202
|
}[] | null | undefined;
|
|
20163
20203
|
}[] | undefined;
|
|
20204
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
20164
20205
|
} | ({
|
|
20165
20206
|
id: string;
|
|
20166
20207
|
name: string;
|
|
@@ -20253,6 +20294,7 @@ declare class StorefrontEndpoints {
|
|
|
20253
20294
|
minQuantity: number;
|
|
20254
20295
|
}[] | null | undefined;
|
|
20255
20296
|
}[] | undefined;
|
|
20297
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
20256
20298
|
} | {
|
|
20257
20299
|
id: string;
|
|
20258
20300
|
name: string;
|
|
@@ -20354,6 +20396,7 @@ declare class StorefrontEndpoints {
|
|
|
20354
20396
|
minQuantity: number;
|
|
20355
20397
|
}[] | null | undefined;
|
|
20356
20398
|
}[] | undefined;
|
|
20399
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
20357
20400
|
} & {
|
|
20358
20401
|
included?: boolean | undefined;
|
|
20359
20402
|
})[];
|
|
@@ -20425,6 +20468,7 @@ declare class StorefrontEndpoints {
|
|
|
20425
20468
|
minQuantity: number;
|
|
20426
20469
|
}[] | null | undefined;
|
|
20427
20470
|
}[] | undefined;
|
|
20471
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
20428
20472
|
})[];
|
|
20429
20473
|
targetVariations: string[];
|
|
20430
20474
|
condition: {
|
|
@@ -20433,6 +20477,12 @@ declare class StorefrontEndpoints {
|
|
|
20433
20477
|
relevantItemVariations: Record<string, string[]>;
|
|
20434
20478
|
};
|
|
20435
20479
|
}[] | undefined;
|
|
20480
|
+
estimatedTax?: {
|
|
20481
|
+
countryCode: string;
|
|
20482
|
+
mode: "Exclusive" | "Inclusive";
|
|
20483
|
+
rate: number;
|
|
20484
|
+
region?: string | undefined;
|
|
20485
|
+
} | undefined;
|
|
20436
20486
|
}>;
|
|
20437
20487
|
}
|
|
20438
20488
|
|
|
@@ -20833,6 +20883,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
20833
20883
|
minQuantity: number;
|
|
20834
20884
|
}[] | null | undefined;
|
|
20835
20885
|
}>, "many">>;
|
|
20886
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
20836
20887
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
20837
20888
|
}, "strip", z.ZodTypeAny, {
|
|
20838
20889
|
id: string;
|
|
@@ -20926,6 +20977,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
20926
20977
|
minQuantity: number;
|
|
20927
20978
|
}[] | null | undefined;
|
|
20928
20979
|
}[] | undefined;
|
|
20980
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
20929
20981
|
}, {
|
|
20930
20982
|
id: string;
|
|
20931
20983
|
name: string;
|
|
@@ -21018,6 +21070,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
21018
21070
|
minQuantity: number;
|
|
21019
21071
|
}[] | null | undefined;
|
|
21020
21072
|
}[] | undefined;
|
|
21073
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
21021
21074
|
}>;
|
|
21022
21075
|
quantity: z.ZodNumber;
|
|
21023
21076
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21113,6 +21166,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
21113
21166
|
minQuantity: number;
|
|
21114
21167
|
}[] | null | undefined;
|
|
21115
21168
|
}[] | undefined;
|
|
21169
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
21116
21170
|
};
|
|
21117
21171
|
quantity: number;
|
|
21118
21172
|
}, {
|
|
@@ -21208,6 +21262,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
21208
21262
|
minQuantity: number;
|
|
21209
21263
|
}[] | null | undefined;
|
|
21210
21264
|
}[] | undefined;
|
|
21265
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
21211
21266
|
};
|
|
21212
21267
|
quantity: number;
|
|
21213
21268
|
}>, "many">;
|
|
@@ -21583,6 +21638,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
21583
21638
|
minQuantity: number;
|
|
21584
21639
|
}[] | null | undefined;
|
|
21585
21640
|
}>, "many">>;
|
|
21641
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
21586
21642
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
21587
21643
|
}, "strip", z.ZodTypeAny, {
|
|
21588
21644
|
id: string;
|
|
@@ -21676,6 +21732,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
21676
21732
|
minQuantity: number;
|
|
21677
21733
|
}[] | null | undefined;
|
|
21678
21734
|
}[] | undefined;
|
|
21735
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
21679
21736
|
}, {
|
|
21680
21737
|
id: string;
|
|
21681
21738
|
name: string;
|
|
@@ -21768,6 +21825,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
21768
21825
|
minQuantity: number;
|
|
21769
21826
|
}[] | null | undefined;
|
|
21770
21827
|
}[] | undefined;
|
|
21828
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
21771
21829
|
}>, z.ZodObject<{
|
|
21772
21830
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
21773
21831
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22071,6 +22129,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22071
22129
|
minQuantity: number;
|
|
22072
22130
|
}[] | null | undefined;
|
|
22073
22131
|
}>, "many">>;
|
|
22132
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
22074
22133
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
22075
22134
|
}, "strip", z.ZodTypeAny, {
|
|
22076
22135
|
id: string;
|
|
@@ -22173,6 +22232,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22173
22232
|
minQuantity: number;
|
|
22174
22233
|
}[] | null | undefined;
|
|
22175
22234
|
}[] | undefined;
|
|
22235
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22176
22236
|
} & {
|
|
22177
22237
|
included?: boolean | undefined;
|
|
22178
22238
|
})[];
|
|
@@ -22244,6 +22304,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22244
22304
|
minQuantity: number;
|
|
22245
22305
|
}[] | null | undefined;
|
|
22246
22306
|
}[] | undefined;
|
|
22307
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22247
22308
|
}, {
|
|
22248
22309
|
id: string;
|
|
22249
22310
|
name: string;
|
|
@@ -22344,6 +22405,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22344
22405
|
minQuantity: number;
|
|
22345
22406
|
}[] | null | undefined;
|
|
22346
22407
|
}[] | undefined;
|
|
22408
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22347
22409
|
} & {
|
|
22348
22410
|
included?: boolean | undefined;
|
|
22349
22411
|
})[];
|
|
@@ -22416,6 +22478,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22416
22478
|
minQuantity: number;
|
|
22417
22479
|
}[] | null | undefined;
|
|
22418
22480
|
}[] | undefined;
|
|
22481
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22419
22482
|
}>;
|
|
22420
22483
|
quantity: z.ZodNumber;
|
|
22421
22484
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22520,6 +22583,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22520
22583
|
minQuantity: number;
|
|
22521
22584
|
}[] | null | undefined;
|
|
22522
22585
|
}[] | undefined;
|
|
22586
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22523
22587
|
} & {
|
|
22524
22588
|
included?: boolean | undefined;
|
|
22525
22589
|
})[];
|
|
@@ -22591,6 +22655,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22591
22655
|
minQuantity: number;
|
|
22592
22656
|
}[] | null | undefined;
|
|
22593
22657
|
}[] | undefined;
|
|
22658
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22594
22659
|
};
|
|
22595
22660
|
quantity: number;
|
|
22596
22661
|
}, {
|
|
@@ -22694,6 +22759,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22694
22759
|
minQuantity: number;
|
|
22695
22760
|
}[] | null | undefined;
|
|
22696
22761
|
}[] | undefined;
|
|
22762
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22697
22763
|
} & {
|
|
22698
22764
|
included?: boolean | undefined;
|
|
22699
22765
|
})[];
|
|
@@ -22766,6 +22832,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22766
22832
|
minQuantity: number;
|
|
22767
22833
|
}[] | null | undefined;
|
|
22768
22834
|
}[] | undefined;
|
|
22835
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22769
22836
|
};
|
|
22770
22837
|
quantity: number;
|
|
22771
22838
|
}>, "many">;
|
|
@@ -22868,6 +22935,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22868
22935
|
minQuantity: number;
|
|
22869
22936
|
}[] | null | undefined;
|
|
22870
22937
|
}[] | undefined;
|
|
22938
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22871
22939
|
};
|
|
22872
22940
|
quantity: number;
|
|
22873
22941
|
}[];
|
|
@@ -22973,6 +23041,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
22973
23041
|
minQuantity: number;
|
|
22974
23042
|
}[] | null | undefined;
|
|
22975
23043
|
}[] | undefined;
|
|
23044
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
22976
23045
|
} & {
|
|
22977
23046
|
included?: boolean | undefined;
|
|
22978
23047
|
})[];
|
|
@@ -23044,6 +23113,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
23044
23113
|
minQuantity: number;
|
|
23045
23114
|
}[] | null | undefined;
|
|
23046
23115
|
}[] | undefined;
|
|
23116
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
23047
23117
|
};
|
|
23048
23118
|
quantity: number;
|
|
23049
23119
|
}[];
|
|
@@ -23146,6 +23216,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
23146
23216
|
minQuantity: number;
|
|
23147
23217
|
}[] | null | undefined;
|
|
23148
23218
|
}[] | undefined;
|
|
23219
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
23149
23220
|
};
|
|
23150
23221
|
quantity: number;
|
|
23151
23222
|
}[];
|
|
@@ -23250,6 +23321,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
23250
23321
|
minQuantity: number;
|
|
23251
23322
|
}[] | null | undefined;
|
|
23252
23323
|
}[] | undefined;
|
|
23324
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
23253
23325
|
} & {
|
|
23254
23326
|
included?: boolean | undefined;
|
|
23255
23327
|
})[];
|
|
@@ -23322,6 +23394,7 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
23322
23394
|
minQuantity: number;
|
|
23323
23395
|
}[] | null | undefined;
|
|
23324
23396
|
}[] | undefined;
|
|
23397
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
23325
23398
|
};
|
|
23326
23399
|
quantity: number;
|
|
23327
23400
|
}[];
|
|
@@ -23729,6 +23802,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
23729
23802
|
minQuantity: number;
|
|
23730
23803
|
}[] | null | undefined;
|
|
23731
23804
|
}>, "many">>;
|
|
23805
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
23732
23806
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
23733
23807
|
}, "strip", z.ZodTypeAny, {
|
|
23734
23808
|
id: string;
|
|
@@ -23822,6 +23896,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
23822
23896
|
minQuantity: number;
|
|
23823
23897
|
}[] | null | undefined;
|
|
23824
23898
|
}[] | undefined;
|
|
23899
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
23825
23900
|
}, {
|
|
23826
23901
|
id: string;
|
|
23827
23902
|
name: string;
|
|
@@ -23914,6 +23989,7 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
23914
23989
|
minQuantity: number;
|
|
23915
23990
|
}[] | null | undefined;
|
|
23916
23991
|
}[] | undefined;
|
|
23992
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
23917
23993
|
}>;
|
|
23918
23994
|
declare const storefrontBundleSchema: z.ZodObject<{
|
|
23919
23995
|
id: z.ZodString;
|
|
@@ -24286,6 +24362,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
24286
24362
|
minQuantity: number;
|
|
24287
24363
|
}[] | null | undefined;
|
|
24288
24364
|
}>, "many">>;
|
|
24365
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
24289
24366
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
24290
24367
|
}, "strip", z.ZodTypeAny, {
|
|
24291
24368
|
id: string;
|
|
@@ -24379,6 +24456,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
24379
24456
|
minQuantity: number;
|
|
24380
24457
|
}[] | null | undefined;
|
|
24381
24458
|
}[] | undefined;
|
|
24459
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
24382
24460
|
}, {
|
|
24383
24461
|
id: string;
|
|
24384
24462
|
name: string;
|
|
@@ -24471,6 +24549,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
24471
24549
|
minQuantity: number;
|
|
24472
24550
|
}[] | null | undefined;
|
|
24473
24551
|
}[] | undefined;
|
|
24552
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
24474
24553
|
}>, z.ZodObject<{
|
|
24475
24554
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
24476
24555
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24774,6 +24853,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
24774
24853
|
minQuantity: number;
|
|
24775
24854
|
}[] | null | undefined;
|
|
24776
24855
|
}>, "many">>;
|
|
24856
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
24777
24857
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
24778
24858
|
}, "strip", z.ZodTypeAny, {
|
|
24779
24859
|
id: string;
|
|
@@ -24876,6 +24956,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
24876
24956
|
minQuantity: number;
|
|
24877
24957
|
}[] | null | undefined;
|
|
24878
24958
|
}[] | undefined;
|
|
24959
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
24879
24960
|
} & {
|
|
24880
24961
|
included?: boolean | undefined;
|
|
24881
24962
|
})[];
|
|
@@ -24947,6 +25028,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
24947
25028
|
minQuantity: number;
|
|
24948
25029
|
}[] | null | undefined;
|
|
24949
25030
|
}[] | undefined;
|
|
25031
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
24950
25032
|
}, {
|
|
24951
25033
|
id: string;
|
|
24952
25034
|
name: string;
|
|
@@ -25047,6 +25129,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
25047
25129
|
minQuantity: number;
|
|
25048
25130
|
}[] | null | undefined;
|
|
25049
25131
|
}[] | undefined;
|
|
25132
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
25050
25133
|
} & {
|
|
25051
25134
|
included?: boolean | undefined;
|
|
25052
25135
|
})[];
|
|
@@ -25119,6 +25202,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
25119
25202
|
minQuantity: number;
|
|
25120
25203
|
}[] | null | undefined;
|
|
25121
25204
|
}[] | undefined;
|
|
25205
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
25122
25206
|
}>;
|
|
25123
25207
|
declare const offerConditionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
25124
25208
|
type: z.ZodLiteral<"CartContainsItems">;
|
|
@@ -25498,6 +25582,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
25498
25582
|
minQuantity: number;
|
|
25499
25583
|
}[] | null | undefined;
|
|
25500
25584
|
}>, "many">>;
|
|
25585
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
25501
25586
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
25502
25587
|
}, "strip", z.ZodTypeAny, {
|
|
25503
25588
|
id: string;
|
|
@@ -25591,6 +25676,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
25591
25676
|
minQuantity: number;
|
|
25592
25677
|
}[] | null | undefined;
|
|
25593
25678
|
}[] | undefined;
|
|
25679
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
25594
25680
|
}, {
|
|
25595
25681
|
id: string;
|
|
25596
25682
|
name: string;
|
|
@@ -25683,6 +25769,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
25683
25769
|
minQuantity: number;
|
|
25684
25770
|
}[] | null | undefined;
|
|
25685
25771
|
}[] | undefined;
|
|
25772
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
25686
25773
|
}>, z.ZodObject<{
|
|
25687
25774
|
id: z.ZodString;
|
|
25688
25775
|
name: z.ZodString;
|
|
@@ -26054,6 +26141,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26054
26141
|
minQuantity: number;
|
|
26055
26142
|
}[] | null | undefined;
|
|
26056
26143
|
}>, "many">>;
|
|
26144
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
26057
26145
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
26058
26146
|
}, "strip", z.ZodTypeAny, {
|
|
26059
26147
|
id: string;
|
|
@@ -26147,6 +26235,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26147
26235
|
minQuantity: number;
|
|
26148
26236
|
}[] | null | undefined;
|
|
26149
26237
|
}[] | undefined;
|
|
26238
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
26150
26239
|
}, {
|
|
26151
26240
|
id: string;
|
|
26152
26241
|
name: string;
|
|
@@ -26239,6 +26328,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26239
26328
|
minQuantity: number;
|
|
26240
26329
|
}[] | null | undefined;
|
|
26241
26330
|
}[] | undefined;
|
|
26331
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
26242
26332
|
}>, z.ZodObject<{
|
|
26243
26333
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
26244
26334
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26542,6 +26632,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26542
26632
|
minQuantity: number;
|
|
26543
26633
|
}[] | null | undefined;
|
|
26544
26634
|
}>, "many">>;
|
|
26635
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
26545
26636
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
26546
26637
|
}, "strip", z.ZodTypeAny, {
|
|
26547
26638
|
id: string;
|
|
@@ -26644,6 +26735,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26644
26735
|
minQuantity: number;
|
|
26645
26736
|
}[] | null | undefined;
|
|
26646
26737
|
}[] | undefined;
|
|
26738
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
26647
26739
|
} & {
|
|
26648
26740
|
included?: boolean | undefined;
|
|
26649
26741
|
})[];
|
|
@@ -26715,6 +26807,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26715
26807
|
minQuantity: number;
|
|
26716
26808
|
}[] | null | undefined;
|
|
26717
26809
|
}[] | undefined;
|
|
26810
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
26718
26811
|
}, {
|
|
26719
26812
|
id: string;
|
|
26720
26813
|
name: string;
|
|
@@ -26815,6 +26908,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26815
26908
|
minQuantity: number;
|
|
26816
26909
|
}[] | null | undefined;
|
|
26817
26910
|
}[] | undefined;
|
|
26911
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
26818
26912
|
} & {
|
|
26819
26913
|
included?: boolean | undefined;
|
|
26820
26914
|
})[];
|
|
@@ -26887,6 +26981,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
26887
26981
|
minQuantity: number;
|
|
26888
26982
|
}[] | null | undefined;
|
|
26889
26983
|
}[] | undefined;
|
|
26984
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
26890
26985
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
26891
26986
|
id: z.ZodString;
|
|
26892
26987
|
name: z.ZodString;
|
|
@@ -27250,6 +27345,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
27250
27345
|
minQuantity: number;
|
|
27251
27346
|
}[] | null | undefined;
|
|
27252
27347
|
}>, "many">>;
|
|
27348
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
27253
27349
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
27254
27350
|
}, "strip", z.ZodTypeAny, {
|
|
27255
27351
|
id: string;
|
|
@@ -27343,6 +27439,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
27343
27439
|
minQuantity: number;
|
|
27344
27440
|
}[] | null | undefined;
|
|
27345
27441
|
}[] | undefined;
|
|
27442
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
27346
27443
|
}, {
|
|
27347
27444
|
id: string;
|
|
27348
27445
|
name: string;
|
|
@@ -27435,6 +27532,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
27435
27532
|
minQuantity: number;
|
|
27436
27533
|
}[] | null | undefined;
|
|
27437
27534
|
}[] | undefined;
|
|
27535
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
27438
27536
|
}>, z.ZodObject<{
|
|
27439
27537
|
id: z.ZodString;
|
|
27440
27538
|
name: z.ZodString;
|
|
@@ -27806,6 +27904,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
27806
27904
|
minQuantity: number;
|
|
27807
27905
|
}[] | null | undefined;
|
|
27808
27906
|
}>, "many">>;
|
|
27907
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
27809
27908
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
27810
27909
|
}, "strip", z.ZodTypeAny, {
|
|
27811
27910
|
id: string;
|
|
@@ -27899,6 +27998,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
27899
27998
|
minQuantity: number;
|
|
27900
27999
|
}[] | null | undefined;
|
|
27901
28000
|
}[] | undefined;
|
|
28001
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
27902
28002
|
}, {
|
|
27903
28003
|
id: string;
|
|
27904
28004
|
name: string;
|
|
@@ -27991,6 +28091,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
27991
28091
|
minQuantity: number;
|
|
27992
28092
|
}[] | null | undefined;
|
|
27993
28093
|
}[] | undefined;
|
|
28094
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
27994
28095
|
}>, z.ZodObject<{
|
|
27995
28096
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
27996
28097
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28294,6 +28395,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28294
28395
|
minQuantity: number;
|
|
28295
28396
|
}[] | null | undefined;
|
|
28296
28397
|
}>, "many">>;
|
|
28398
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
28297
28399
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
28298
28400
|
}, "strip", z.ZodTypeAny, {
|
|
28299
28401
|
id: string;
|
|
@@ -28396,6 +28498,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28396
28498
|
minQuantity: number;
|
|
28397
28499
|
}[] | null | undefined;
|
|
28398
28500
|
}[] | undefined;
|
|
28501
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
28399
28502
|
} & {
|
|
28400
28503
|
included?: boolean | undefined;
|
|
28401
28504
|
})[];
|
|
@@ -28467,6 +28570,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28467
28570
|
minQuantity: number;
|
|
28468
28571
|
}[] | null | undefined;
|
|
28469
28572
|
}[] | undefined;
|
|
28573
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
28470
28574
|
}, {
|
|
28471
28575
|
id: string;
|
|
28472
28576
|
name: string;
|
|
@@ -28567,6 +28671,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28567
28671
|
minQuantity: number;
|
|
28568
28672
|
}[] | null | undefined;
|
|
28569
28673
|
}[] | undefined;
|
|
28674
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
28570
28675
|
} & {
|
|
28571
28676
|
included?: boolean | undefined;
|
|
28572
28677
|
})[];
|
|
@@ -28639,6 +28744,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28639
28744
|
minQuantity: number;
|
|
28640
28745
|
}[] | null | undefined;
|
|
28641
28746
|
}[] | undefined;
|
|
28747
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
28642
28748
|
}>]>, "many">]>;
|
|
28643
28749
|
targetVariations: z.ZodArray<z.ZodString, "many">;
|
|
28644
28750
|
condition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -28810,6 +28916,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28810
28916
|
minQuantity: number;
|
|
28811
28917
|
}[] | null | undefined;
|
|
28812
28918
|
}[] | undefined;
|
|
28919
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
28813
28920
|
} | {
|
|
28814
28921
|
id: string;
|
|
28815
28922
|
name: string;
|
|
@@ -28911,6 +29018,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28911
29018
|
minQuantity: number;
|
|
28912
29019
|
}[] | null | undefined;
|
|
28913
29020
|
}[] | undefined;
|
|
29021
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
28914
29022
|
} & {
|
|
28915
29023
|
included?: boolean | undefined;
|
|
28916
29024
|
})[];
|
|
@@ -28982,6 +29090,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
28982
29090
|
minQuantity: number;
|
|
28983
29091
|
}[] | null | undefined;
|
|
28984
29092
|
}[] | undefined;
|
|
29093
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
28985
29094
|
} | ({
|
|
28986
29095
|
id: string;
|
|
28987
29096
|
name: string;
|
|
@@ -29074,6 +29183,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29074
29183
|
minQuantity: number;
|
|
29075
29184
|
}[] | null | undefined;
|
|
29076
29185
|
}[] | undefined;
|
|
29186
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29077
29187
|
} | {
|
|
29078
29188
|
id: string;
|
|
29079
29189
|
name: string;
|
|
@@ -29175,6 +29285,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29175
29285
|
minQuantity: number;
|
|
29176
29286
|
}[] | null | undefined;
|
|
29177
29287
|
}[] | undefined;
|
|
29288
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29178
29289
|
} & {
|
|
29179
29290
|
included?: boolean | undefined;
|
|
29180
29291
|
})[];
|
|
@@ -29246,6 +29357,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29246
29357
|
minQuantity: number;
|
|
29247
29358
|
}[] | null | undefined;
|
|
29248
29359
|
}[] | undefined;
|
|
29360
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29249
29361
|
})[];
|
|
29250
29362
|
targetVariations: string[];
|
|
29251
29363
|
condition: {
|
|
@@ -29363,6 +29475,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29363
29475
|
minQuantity: number;
|
|
29364
29476
|
}[] | null | undefined;
|
|
29365
29477
|
}[] | undefined;
|
|
29478
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29366
29479
|
} | {
|
|
29367
29480
|
id: string;
|
|
29368
29481
|
name: string;
|
|
@@ -29463,6 +29576,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29463
29576
|
minQuantity: number;
|
|
29464
29577
|
}[] | null | undefined;
|
|
29465
29578
|
}[] | undefined;
|
|
29579
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29466
29580
|
} & {
|
|
29467
29581
|
included?: boolean | undefined;
|
|
29468
29582
|
})[];
|
|
@@ -29535,6 +29649,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29535
29649
|
minQuantity: number;
|
|
29536
29650
|
}[] | null | undefined;
|
|
29537
29651
|
}[] | undefined;
|
|
29652
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29538
29653
|
} | ({
|
|
29539
29654
|
id: string;
|
|
29540
29655
|
name: string;
|
|
@@ -29627,6 +29742,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29627
29742
|
minQuantity: number;
|
|
29628
29743
|
}[] | null | undefined;
|
|
29629
29744
|
}[] | undefined;
|
|
29745
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29630
29746
|
} | {
|
|
29631
29747
|
id: string;
|
|
29632
29748
|
name: string;
|
|
@@ -29727,6 +29843,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29727
29843
|
minQuantity: number;
|
|
29728
29844
|
}[] | null | undefined;
|
|
29729
29845
|
}[] | undefined;
|
|
29846
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29730
29847
|
} & {
|
|
29731
29848
|
included?: boolean | undefined;
|
|
29732
29849
|
})[];
|
|
@@ -29799,6 +29916,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29799
29916
|
minQuantity: number;
|
|
29800
29917
|
}[] | null | undefined;
|
|
29801
29918
|
}[] | undefined;
|
|
29919
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
29802
29920
|
})[];
|
|
29803
29921
|
targetVariations: string[];
|
|
29804
29922
|
condition: {
|
|
@@ -29807,6 +29925,22 @@ declare const storefrontOfferSchema: z.ZodObject<{
|
|
|
29807
29925
|
relevantItemVariations: Record<string, string[]>;
|
|
29808
29926
|
};
|
|
29809
29927
|
}>;
|
|
29928
|
+
declare const taxEstimateSchema: z.ZodObject<{
|
|
29929
|
+
rate: z.ZodNumber;
|
|
29930
|
+
mode: z.ZodEnum<["Exclusive", "Inclusive"]>;
|
|
29931
|
+
countryCode: z.ZodString;
|
|
29932
|
+
region: z.ZodOptional<z.ZodString>;
|
|
29933
|
+
}, "strip", z.ZodTypeAny, {
|
|
29934
|
+
countryCode: string;
|
|
29935
|
+
mode: "Exclusive" | "Inclusive";
|
|
29936
|
+
rate: number;
|
|
29937
|
+
region?: string | undefined;
|
|
29938
|
+
}, {
|
|
29939
|
+
countryCode: string;
|
|
29940
|
+
mode: "Exclusive" | "Inclusive";
|
|
29941
|
+
rate: number;
|
|
29942
|
+
region?: string | undefined;
|
|
29943
|
+
}>;
|
|
29810
29944
|
declare const storefrontSchema: z.ZodObject<{
|
|
29811
29945
|
suggestedCurrency: z.ZodString;
|
|
29812
29946
|
enabledCurrencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -30173,6 +30307,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
30173
30307
|
minQuantity: number;
|
|
30174
30308
|
}[] | null | undefined;
|
|
30175
30309
|
}>, "many">>;
|
|
30310
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
30176
30311
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
30177
30312
|
}, "strip", z.ZodTypeAny, {
|
|
30178
30313
|
id: string;
|
|
@@ -30266,6 +30401,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
30266
30401
|
minQuantity: number;
|
|
30267
30402
|
}[] | null | undefined;
|
|
30268
30403
|
}[] | undefined;
|
|
30404
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
30269
30405
|
}, {
|
|
30270
30406
|
id: string;
|
|
30271
30407
|
name: string;
|
|
@@ -30358,6 +30494,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
30358
30494
|
minQuantity: number;
|
|
30359
30495
|
}[] | null | undefined;
|
|
30360
30496
|
}[] | undefined;
|
|
30497
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
30361
30498
|
}>, "many">;
|
|
30362
30499
|
bundles: z.ZodArray<z.ZodObject<{
|
|
30363
30500
|
id: z.ZodString;
|
|
@@ -30730,6 +30867,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
30730
30867
|
minQuantity: number;
|
|
30731
30868
|
}[] | null | undefined;
|
|
30732
30869
|
}>, "many">>;
|
|
30870
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
30733
30871
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
30734
30872
|
}, "strip", z.ZodTypeAny, {
|
|
30735
30873
|
id: string;
|
|
@@ -30823,6 +30961,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
30823
30961
|
minQuantity: number;
|
|
30824
30962
|
}[] | null | undefined;
|
|
30825
30963
|
}[] | undefined;
|
|
30964
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
30826
30965
|
}, {
|
|
30827
30966
|
id: string;
|
|
30828
30967
|
name: string;
|
|
@@ -30915,6 +31054,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
30915
31054
|
minQuantity: number;
|
|
30916
31055
|
}[] | null | undefined;
|
|
30917
31056
|
}[] | undefined;
|
|
31057
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
30918
31058
|
}>, z.ZodObject<{
|
|
30919
31059
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
30920
31060
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31218,6 +31358,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
31218
31358
|
minQuantity: number;
|
|
31219
31359
|
}[] | null | undefined;
|
|
31220
31360
|
}>, "many">>;
|
|
31361
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
31221
31362
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
31222
31363
|
}, "strip", z.ZodTypeAny, {
|
|
31223
31364
|
id: string;
|
|
@@ -31320,6 +31461,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
31320
31461
|
minQuantity: number;
|
|
31321
31462
|
}[] | null | undefined;
|
|
31322
31463
|
}[] | undefined;
|
|
31464
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
31323
31465
|
} & {
|
|
31324
31466
|
included?: boolean | undefined;
|
|
31325
31467
|
})[];
|
|
@@ -31391,6 +31533,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
31391
31533
|
minQuantity: number;
|
|
31392
31534
|
}[] | null | undefined;
|
|
31393
31535
|
}[] | undefined;
|
|
31536
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
31394
31537
|
}, {
|
|
31395
31538
|
id: string;
|
|
31396
31539
|
name: string;
|
|
@@ -31491,6 +31634,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
31491
31634
|
minQuantity: number;
|
|
31492
31635
|
}[] | null | undefined;
|
|
31493
31636
|
}[] | undefined;
|
|
31637
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
31494
31638
|
} & {
|
|
31495
31639
|
included?: boolean | undefined;
|
|
31496
31640
|
})[];
|
|
@@ -31563,6 +31707,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
31563
31707
|
minQuantity: number;
|
|
31564
31708
|
}[] | null | undefined;
|
|
31565
31709
|
}[] | undefined;
|
|
31710
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
31566
31711
|
}>, "many">;
|
|
31567
31712
|
offers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
31568
31713
|
id: z.ZodString;
|
|
@@ -31929,6 +32074,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
31929
32074
|
minQuantity: number;
|
|
31930
32075
|
}[] | null | undefined;
|
|
31931
32076
|
}>, "many">>;
|
|
32077
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
31932
32078
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
31933
32079
|
}, "strip", z.ZodTypeAny, {
|
|
31934
32080
|
id: string;
|
|
@@ -32022,6 +32168,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
32022
32168
|
minQuantity: number;
|
|
32023
32169
|
}[] | null | undefined;
|
|
32024
32170
|
}[] | undefined;
|
|
32171
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
32025
32172
|
}, {
|
|
32026
32173
|
id: string;
|
|
32027
32174
|
name: string;
|
|
@@ -32114,6 +32261,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
32114
32261
|
minQuantity: number;
|
|
32115
32262
|
}[] | null | undefined;
|
|
32116
32263
|
}[] | undefined;
|
|
32264
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
32117
32265
|
}>, z.ZodObject<{
|
|
32118
32266
|
id: z.ZodString;
|
|
32119
32267
|
name: z.ZodString;
|
|
@@ -32485,6 +32633,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
32485
32633
|
minQuantity: number;
|
|
32486
32634
|
}[] | null | undefined;
|
|
32487
32635
|
}>, "many">>;
|
|
32636
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
32488
32637
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
32489
32638
|
}, "strip", z.ZodTypeAny, {
|
|
32490
32639
|
id: string;
|
|
@@ -32578,6 +32727,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
32578
32727
|
minQuantity: number;
|
|
32579
32728
|
}[] | null | undefined;
|
|
32580
32729
|
}[] | undefined;
|
|
32730
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
32581
32731
|
}, {
|
|
32582
32732
|
id: string;
|
|
32583
32733
|
name: string;
|
|
@@ -32670,6 +32820,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
32670
32820
|
minQuantity: number;
|
|
32671
32821
|
}[] | null | undefined;
|
|
32672
32822
|
}[] | undefined;
|
|
32823
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
32673
32824
|
}>, z.ZodObject<{
|
|
32674
32825
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
32675
32826
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -32973,6 +33124,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
32973
33124
|
minQuantity: number;
|
|
32974
33125
|
}[] | null | undefined;
|
|
32975
33126
|
}>, "many">>;
|
|
33127
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
32976
33128
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
32977
33129
|
}, "strip", z.ZodTypeAny, {
|
|
32978
33130
|
id: string;
|
|
@@ -33075,6 +33227,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
33075
33227
|
minQuantity: number;
|
|
33076
33228
|
}[] | null | undefined;
|
|
33077
33229
|
}[] | undefined;
|
|
33230
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
33078
33231
|
} & {
|
|
33079
33232
|
included?: boolean | undefined;
|
|
33080
33233
|
})[];
|
|
@@ -33146,6 +33299,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
33146
33299
|
minQuantity: number;
|
|
33147
33300
|
}[] | null | undefined;
|
|
33148
33301
|
}[] | undefined;
|
|
33302
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
33149
33303
|
}, {
|
|
33150
33304
|
id: string;
|
|
33151
33305
|
name: string;
|
|
@@ -33246,6 +33400,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
33246
33400
|
minQuantity: number;
|
|
33247
33401
|
}[] | null | undefined;
|
|
33248
33402
|
}[] | undefined;
|
|
33403
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
33249
33404
|
} & {
|
|
33250
33405
|
included?: boolean | undefined;
|
|
33251
33406
|
})[];
|
|
@@ -33318,6 +33473,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
33318
33473
|
minQuantity: number;
|
|
33319
33474
|
}[] | null | undefined;
|
|
33320
33475
|
}[] | undefined;
|
|
33476
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
33321
33477
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
33322
33478
|
id: z.ZodString;
|
|
33323
33479
|
name: z.ZodString;
|
|
@@ -33681,6 +33837,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
33681
33837
|
minQuantity: number;
|
|
33682
33838
|
}[] | null | undefined;
|
|
33683
33839
|
}>, "many">>;
|
|
33840
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
33684
33841
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
33685
33842
|
}, "strip", z.ZodTypeAny, {
|
|
33686
33843
|
id: string;
|
|
@@ -33774,6 +33931,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
33774
33931
|
minQuantity: number;
|
|
33775
33932
|
}[] | null | undefined;
|
|
33776
33933
|
}[] | undefined;
|
|
33934
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
33777
33935
|
}, {
|
|
33778
33936
|
id: string;
|
|
33779
33937
|
name: string;
|
|
@@ -33866,6 +34024,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
33866
34024
|
minQuantity: number;
|
|
33867
34025
|
}[] | null | undefined;
|
|
33868
34026
|
}[] | undefined;
|
|
34027
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
33869
34028
|
}>, z.ZodObject<{
|
|
33870
34029
|
id: z.ZodString;
|
|
33871
34030
|
name: z.ZodString;
|
|
@@ -34237,6 +34396,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
34237
34396
|
minQuantity: number;
|
|
34238
34397
|
}[] | null | undefined;
|
|
34239
34398
|
}>, "many">>;
|
|
34399
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
34240
34400
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
|
|
34241
34401
|
}, "strip", z.ZodTypeAny, {
|
|
34242
34402
|
id: string;
|
|
@@ -34330,6 +34490,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
34330
34490
|
minQuantity: number;
|
|
34331
34491
|
}[] | null | undefined;
|
|
34332
34492
|
}[] | undefined;
|
|
34493
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
34333
34494
|
}, {
|
|
34334
34495
|
id: string;
|
|
34335
34496
|
name: string;
|
|
@@ -34422,6 +34583,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
34422
34583
|
minQuantity: number;
|
|
34423
34584
|
}[] | null | undefined;
|
|
34424
34585
|
}[] | undefined;
|
|
34586
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
34425
34587
|
}>, z.ZodObject<{
|
|
34426
34588
|
included: z.ZodOptional<z.ZodBoolean>;
|
|
34427
34589
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -34725,6 +34887,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
34725
34887
|
minQuantity: number;
|
|
34726
34888
|
}[] | null | undefined;
|
|
34727
34889
|
}>, "many">>;
|
|
34890
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
|
|
34728
34891
|
type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
|
|
34729
34892
|
}, "strip", z.ZodTypeAny, {
|
|
34730
34893
|
id: string;
|
|
@@ -34827,6 +34990,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
34827
34990
|
minQuantity: number;
|
|
34828
34991
|
}[] | null | undefined;
|
|
34829
34992
|
}[] | undefined;
|
|
34993
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
34830
34994
|
} & {
|
|
34831
34995
|
included?: boolean | undefined;
|
|
34832
34996
|
})[];
|
|
@@ -34898,6 +35062,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
34898
35062
|
minQuantity: number;
|
|
34899
35063
|
}[] | null | undefined;
|
|
34900
35064
|
}[] | undefined;
|
|
35065
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
34901
35066
|
}, {
|
|
34902
35067
|
id: string;
|
|
34903
35068
|
name: string;
|
|
@@ -34998,6 +35163,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
34998
35163
|
minQuantity: number;
|
|
34999
35164
|
}[] | null | undefined;
|
|
35000
35165
|
}[] | undefined;
|
|
35166
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35001
35167
|
} & {
|
|
35002
35168
|
included?: boolean | undefined;
|
|
35003
35169
|
})[];
|
|
@@ -35070,6 +35236,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35070
35236
|
minQuantity: number;
|
|
35071
35237
|
}[] | null | undefined;
|
|
35072
35238
|
}[] | undefined;
|
|
35239
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35073
35240
|
}>]>, "many">]>;
|
|
35074
35241
|
targetVariations: z.ZodArray<z.ZodString, "many">;
|
|
35075
35242
|
condition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -35241,6 +35408,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35241
35408
|
minQuantity: number;
|
|
35242
35409
|
}[] | null | undefined;
|
|
35243
35410
|
}[] | undefined;
|
|
35411
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35244
35412
|
} | {
|
|
35245
35413
|
id: string;
|
|
35246
35414
|
name: string;
|
|
@@ -35342,6 +35510,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35342
35510
|
minQuantity: number;
|
|
35343
35511
|
}[] | null | undefined;
|
|
35344
35512
|
}[] | undefined;
|
|
35513
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35345
35514
|
} & {
|
|
35346
35515
|
included?: boolean | undefined;
|
|
35347
35516
|
})[];
|
|
@@ -35413,6 +35582,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35413
35582
|
minQuantity: number;
|
|
35414
35583
|
}[] | null | undefined;
|
|
35415
35584
|
}[] | undefined;
|
|
35585
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35416
35586
|
} | ({
|
|
35417
35587
|
id: string;
|
|
35418
35588
|
name: string;
|
|
@@ -35505,6 +35675,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35505
35675
|
minQuantity: number;
|
|
35506
35676
|
}[] | null | undefined;
|
|
35507
35677
|
}[] | undefined;
|
|
35678
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35508
35679
|
} | {
|
|
35509
35680
|
id: string;
|
|
35510
35681
|
name: string;
|
|
@@ -35606,6 +35777,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35606
35777
|
minQuantity: number;
|
|
35607
35778
|
}[] | null | undefined;
|
|
35608
35779
|
}[] | undefined;
|
|
35780
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35609
35781
|
} & {
|
|
35610
35782
|
included?: boolean | undefined;
|
|
35611
35783
|
})[];
|
|
@@ -35677,6 +35849,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35677
35849
|
minQuantity: number;
|
|
35678
35850
|
}[] | null | undefined;
|
|
35679
35851
|
}[] | undefined;
|
|
35852
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35680
35853
|
})[];
|
|
35681
35854
|
targetVariations: string[];
|
|
35682
35855
|
condition: {
|
|
@@ -35794,6 +35967,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35794
35967
|
minQuantity: number;
|
|
35795
35968
|
}[] | null | undefined;
|
|
35796
35969
|
}[] | undefined;
|
|
35970
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35797
35971
|
} | {
|
|
35798
35972
|
id: string;
|
|
35799
35973
|
name: string;
|
|
@@ -35894,6 +36068,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35894
36068
|
minQuantity: number;
|
|
35895
36069
|
}[] | null | undefined;
|
|
35896
36070
|
}[] | undefined;
|
|
36071
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35897
36072
|
} & {
|
|
35898
36073
|
included?: boolean | undefined;
|
|
35899
36074
|
})[];
|
|
@@ -35966,6 +36141,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
35966
36141
|
minQuantity: number;
|
|
35967
36142
|
}[] | null | undefined;
|
|
35968
36143
|
}[] | undefined;
|
|
36144
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
35969
36145
|
} | ({
|
|
35970
36146
|
id: string;
|
|
35971
36147
|
name: string;
|
|
@@ -36058,6 +36234,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36058
36234
|
minQuantity: number;
|
|
36059
36235
|
}[] | null | undefined;
|
|
36060
36236
|
}[] | undefined;
|
|
36237
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36061
36238
|
} | {
|
|
36062
36239
|
id: string;
|
|
36063
36240
|
name: string;
|
|
@@ -36158,6 +36335,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36158
36335
|
minQuantity: number;
|
|
36159
36336
|
}[] | null | undefined;
|
|
36160
36337
|
}[] | undefined;
|
|
36338
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36161
36339
|
} & {
|
|
36162
36340
|
included?: boolean | undefined;
|
|
36163
36341
|
})[];
|
|
@@ -36230,6 +36408,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36230
36408
|
minQuantity: number;
|
|
36231
36409
|
}[] | null | undefined;
|
|
36232
36410
|
}[] | undefined;
|
|
36411
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36233
36412
|
})[];
|
|
36234
36413
|
targetVariations: string[];
|
|
36235
36414
|
condition: {
|
|
@@ -36238,6 +36417,22 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36238
36417
|
relevantItemVariations: Record<string, string[]>;
|
|
36239
36418
|
};
|
|
36240
36419
|
}>, "many">>;
|
|
36420
|
+
estimatedTax: z.ZodOptional<z.ZodObject<{
|
|
36421
|
+
rate: z.ZodNumber;
|
|
36422
|
+
mode: z.ZodEnum<["Exclusive", "Inclusive"]>;
|
|
36423
|
+
countryCode: z.ZodString;
|
|
36424
|
+
region: z.ZodOptional<z.ZodString>;
|
|
36425
|
+
}, "strip", z.ZodTypeAny, {
|
|
36426
|
+
countryCode: string;
|
|
36427
|
+
mode: "Exclusive" | "Inclusive";
|
|
36428
|
+
rate: number;
|
|
36429
|
+
region?: string | undefined;
|
|
36430
|
+
}, {
|
|
36431
|
+
countryCode: string;
|
|
36432
|
+
mode: "Exclusive" | "Inclusive";
|
|
36433
|
+
rate: number;
|
|
36434
|
+
region?: string | undefined;
|
|
36435
|
+
}>>;
|
|
36241
36436
|
}, "strip", z.ZodTypeAny, {
|
|
36242
36437
|
products: {
|
|
36243
36438
|
id: string;
|
|
@@ -36331,6 +36526,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36331
36526
|
minQuantity: number;
|
|
36332
36527
|
}[] | null | undefined;
|
|
36333
36528
|
}[] | undefined;
|
|
36529
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36334
36530
|
}[];
|
|
36335
36531
|
suggestedCurrency: string;
|
|
36336
36532
|
bundles: {
|
|
@@ -36434,6 +36630,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36434
36630
|
minQuantity: number;
|
|
36435
36631
|
}[] | null | undefined;
|
|
36436
36632
|
}[] | undefined;
|
|
36633
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36437
36634
|
} & {
|
|
36438
36635
|
included?: boolean | undefined;
|
|
36439
36636
|
})[];
|
|
@@ -36505,6 +36702,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36505
36702
|
minQuantity: number;
|
|
36506
36703
|
}[] | null | undefined;
|
|
36507
36704
|
}[] | undefined;
|
|
36705
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36508
36706
|
}[];
|
|
36509
36707
|
enabledCurrencies?: string[] | undefined;
|
|
36510
36708
|
offers?: {
|
|
@@ -36617,6 +36815,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36617
36815
|
minQuantity: number;
|
|
36618
36816
|
}[] | null | undefined;
|
|
36619
36817
|
}[] | undefined;
|
|
36818
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36620
36819
|
} | {
|
|
36621
36820
|
id: string;
|
|
36622
36821
|
name: string;
|
|
@@ -36718,6 +36917,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36718
36917
|
minQuantity: number;
|
|
36719
36918
|
}[] | null | undefined;
|
|
36720
36919
|
}[] | undefined;
|
|
36920
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36721
36921
|
} & {
|
|
36722
36922
|
included?: boolean | undefined;
|
|
36723
36923
|
})[];
|
|
@@ -36789,6 +36989,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36789
36989
|
minQuantity: number;
|
|
36790
36990
|
}[] | null | undefined;
|
|
36791
36991
|
}[] | undefined;
|
|
36992
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36792
36993
|
} | ({
|
|
36793
36994
|
id: string;
|
|
36794
36995
|
name: string;
|
|
@@ -36881,6 +37082,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36881
37082
|
minQuantity: number;
|
|
36882
37083
|
}[] | null | undefined;
|
|
36883
37084
|
}[] | undefined;
|
|
37085
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36884
37086
|
} | {
|
|
36885
37087
|
id: string;
|
|
36886
37088
|
name: string;
|
|
@@ -36982,6 +37184,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
36982
37184
|
minQuantity: number;
|
|
36983
37185
|
}[] | null | undefined;
|
|
36984
37186
|
}[] | undefined;
|
|
37187
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
36985
37188
|
} & {
|
|
36986
37189
|
included?: boolean | undefined;
|
|
36987
37190
|
})[];
|
|
@@ -37053,6 +37256,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37053
37256
|
minQuantity: number;
|
|
37054
37257
|
}[] | null | undefined;
|
|
37055
37258
|
}[] | undefined;
|
|
37259
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37056
37260
|
})[];
|
|
37057
37261
|
targetVariations: string[];
|
|
37058
37262
|
condition: {
|
|
@@ -37061,6 +37265,12 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37061
37265
|
relevantItemVariations: Record<string, string[]>;
|
|
37062
37266
|
};
|
|
37063
37267
|
}[] | undefined;
|
|
37268
|
+
estimatedTax?: {
|
|
37269
|
+
countryCode: string;
|
|
37270
|
+
mode: "Exclusive" | "Inclusive";
|
|
37271
|
+
rate: number;
|
|
37272
|
+
region?: string | undefined;
|
|
37273
|
+
} | undefined;
|
|
37064
37274
|
}, {
|
|
37065
37275
|
products: {
|
|
37066
37276
|
id: string;
|
|
@@ -37154,6 +37364,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37154
37364
|
minQuantity: number;
|
|
37155
37365
|
}[] | null | undefined;
|
|
37156
37366
|
}[] | undefined;
|
|
37367
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37157
37368
|
}[];
|
|
37158
37369
|
suggestedCurrency: string;
|
|
37159
37370
|
bundles: {
|
|
@@ -37256,6 +37467,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37256
37467
|
minQuantity: number;
|
|
37257
37468
|
}[] | null | undefined;
|
|
37258
37469
|
}[] | undefined;
|
|
37470
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37259
37471
|
} & {
|
|
37260
37472
|
included?: boolean | undefined;
|
|
37261
37473
|
})[];
|
|
@@ -37328,6 +37540,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37328
37540
|
minQuantity: number;
|
|
37329
37541
|
}[] | null | undefined;
|
|
37330
37542
|
}[] | undefined;
|
|
37543
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37331
37544
|
}[];
|
|
37332
37545
|
enabledCurrencies?: string[] | undefined;
|
|
37333
37546
|
offers?: {
|
|
@@ -37440,6 +37653,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37440
37653
|
minQuantity: number;
|
|
37441
37654
|
}[] | null | undefined;
|
|
37442
37655
|
}[] | undefined;
|
|
37656
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37443
37657
|
} | {
|
|
37444
37658
|
id: string;
|
|
37445
37659
|
name: string;
|
|
@@ -37540,6 +37754,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37540
37754
|
minQuantity: number;
|
|
37541
37755
|
}[] | null | undefined;
|
|
37542
37756
|
}[] | undefined;
|
|
37757
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37543
37758
|
} & {
|
|
37544
37759
|
included?: boolean | undefined;
|
|
37545
37760
|
})[];
|
|
@@ -37612,6 +37827,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37612
37827
|
minQuantity: number;
|
|
37613
37828
|
}[] | null | undefined;
|
|
37614
37829
|
}[] | undefined;
|
|
37830
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37615
37831
|
} | ({
|
|
37616
37832
|
id: string;
|
|
37617
37833
|
name: string;
|
|
@@ -37704,6 +37920,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37704
37920
|
minQuantity: number;
|
|
37705
37921
|
}[] | null | undefined;
|
|
37706
37922
|
}[] | undefined;
|
|
37923
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37707
37924
|
} | {
|
|
37708
37925
|
id: string;
|
|
37709
37926
|
name: string;
|
|
@@ -37804,6 +38021,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37804
38021
|
minQuantity: number;
|
|
37805
38022
|
}[] | null | undefined;
|
|
37806
38023
|
}[] | undefined;
|
|
38024
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37807
38025
|
} & {
|
|
37808
38026
|
included?: boolean | undefined;
|
|
37809
38027
|
})[];
|
|
@@ -37876,6 +38094,7 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37876
38094
|
minQuantity: number;
|
|
37877
38095
|
}[] | null | undefined;
|
|
37878
38096
|
}[] | undefined;
|
|
38097
|
+
properties?: Record<string, RawPropertyValue> | null | undefined;
|
|
37879
38098
|
})[];
|
|
37880
38099
|
targetVariations: string[];
|
|
37881
38100
|
condition: {
|
|
@@ -37884,6 +38103,12 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
37884
38103
|
relevantItemVariations: Record<string, string[]>;
|
|
37885
38104
|
};
|
|
37886
38105
|
}[] | undefined;
|
|
38106
|
+
estimatedTax?: {
|
|
38107
|
+
countryCode: string;
|
|
38108
|
+
mode: "Exclusive" | "Inclusive";
|
|
38109
|
+
rate: number;
|
|
38110
|
+
region?: string | undefined;
|
|
38111
|
+
} | undefined;
|
|
37887
38112
|
}>;
|
|
37888
38113
|
|
|
37889
38114
|
declare const schemas$1_offerConditionSchema: typeof offerConditionSchema;
|
|
@@ -37891,8 +38116,9 @@ declare const schemas$1_storefrontBundleSchema: typeof storefrontBundleSchema;
|
|
|
37891
38116
|
declare const schemas$1_storefrontOfferSchema: typeof storefrontOfferSchema;
|
|
37892
38117
|
declare const schemas$1_storefrontProductSchema: typeof storefrontProductSchema;
|
|
37893
38118
|
declare const schemas$1_storefrontSchema: typeof storefrontSchema;
|
|
38119
|
+
declare const schemas$1_taxEstimateSchema: typeof taxEstimateSchema;
|
|
37894
38120
|
declare namespace schemas$1 {
|
|
37895
|
-
export { schemas$1_offerConditionSchema as offerConditionSchema, schemas$1_storefrontBundleSchema as storefrontBundleSchema, schemas$1_storefrontOfferSchema as storefrontOfferSchema, schemas$1_storefrontProductSchema as storefrontProductSchema, schemas$1_storefrontSchema as storefrontSchema };
|
|
38121
|
+
export { schemas$1_offerConditionSchema as offerConditionSchema, schemas$1_storefrontBundleSchema as storefrontBundleSchema, schemas$1_storefrontOfferSchema as storefrontOfferSchema, schemas$1_storefrontProductSchema as storefrontProductSchema, schemas$1_storefrontSchema as storefrontSchema, schemas$1_taxEstimateSchema as taxEstimateSchema };
|
|
37896
38122
|
}
|
|
37897
38123
|
|
|
37898
38124
|
declare namespace schemas {
|
|
@@ -37904,6 +38130,7 @@ type StorefrontBundle = z.infer<typeof storefrontBundleSchema>;
|
|
|
37904
38130
|
type OfferCondition = z.infer<typeof offerConditionSchema>;
|
|
37905
38131
|
type StorefrontOffer = z.infer<typeof storefrontOfferSchema>;
|
|
37906
38132
|
type Storefront = z.infer<typeof storefrontSchema>;
|
|
38133
|
+
type TaxEstimate = z.infer<typeof taxEstimateSchema>;
|
|
37907
38134
|
|
|
37908
38135
|
declare class NotAuthorizedError extends Error {
|
|
37909
38136
|
constructor();
|
|
@@ -37984,4 +38211,4 @@ declare class MoonbaseClient {
|
|
|
37984
38211
|
orders: OrderEndpoints;
|
|
37985
38212
|
}
|
|
37986
38213
|
|
|
37987
|
-
export { type Activation, ActivationMethod, type ActivationRequest, ActivationRequestFulfillmentType, ActivationRequestStatus, ActivationStatus, type Address, type BundleLineItem, type CommunicationPreferences, type CompletedOrder, ConnectableAccountProvider, type ConnectedAccount, ConsoleLogger, CycleLength, type Discount, DiscountUtils, type Download, type DownloadManifest, type ILogger, type IRecurrence, type IStore, type ITokenStore, type Identity, InMemoryStore, type License, LicenseStatus, type LineItem, LocalStorageStore, LogLevel, MarketingConsentType, type MilestoneProgress, type Money, type MoneyCollection, MoneyCollectionUtils, MoonbaseApi, MoonbaseClient, type MoonbaseConfiguration, MoonbaseError, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OfferCondition, OfferUtils, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingTier, type PricingVariation, type ProblemDetails, type ProductLineItem, type Quantifiable, type SingleOrMultiple, type Storefront, type StorefrontBundle, type StorefrontOffer, type StorefrontProduct, type Subscription, SubscriptionStatus, TokenStore, type UrchinTrackingModule, type User, type UserAccountConfirmed, type Vendor, type Voucher, objectToQuery, problemDetailsSchema, schemas, utmToObject };
|
|
38214
|
+
export { type Activation, ActivationMethod, type ActivationRequest, ActivationRequestFulfillmentType, ActivationRequestStatus, ActivationStatus, type Address, type BundleLineItem, type CommunicationPreferences, type CompletedOrder, ConnectableAccountProvider, type ConnectedAccount, ConsoleLogger, CycleLength, type Discount, DiscountUtils, type Download, type DownloadManifest, type ILogger, type IRecurrence, type IStore, type ITokenStore, type Identity, InMemoryStore, type License, LicenseStatus, type LineItem, LocalStorageStore, LogLevel, MarketingConsentType, type MilestoneProgress, type Money, type MoneyCollection, MoneyCollectionUtils, MoonbaseApi, MoonbaseClient, type MoonbaseConfiguration, MoonbaseError, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OfferCondition, OfferUtils, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingTier, type PricingVariation, type ProblemDetails, type ProductLineItem, type Quantifiable, type RawPropertyObject, type RawPropertyValue, type SingleOrMultiple, type Storefront, type StorefrontBundle, type StorefrontOffer, type StorefrontProduct, type Subscription, SubscriptionStatus, type TaxEstimate, TokenStore, type UrchinTrackingModule, type User, type UserAccountConfirmed, type Vendor, type Voucher, objectToQuery, problemDetailsSchema, schemas, utmToObject };
|