@moonbase.sh/storefront-api 1.0.17 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -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
- ILok = "ILok"
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: {
@@ -20833,6 +20877,7 @@ declare const voucherSchema: z.ZodObject<{
20833
20877
  minQuantity: number;
20834
20878
  }[] | null | undefined;
20835
20879
  }>, "many">>;
20880
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
20836
20881
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
20837
20882
  }, "strip", z.ZodTypeAny, {
20838
20883
  id: string;
@@ -20926,6 +20971,7 @@ declare const voucherSchema: z.ZodObject<{
20926
20971
  minQuantity: number;
20927
20972
  }[] | null | undefined;
20928
20973
  }[] | undefined;
20974
+ properties?: Record<string, RawPropertyValue> | null | undefined;
20929
20975
  }, {
20930
20976
  id: string;
20931
20977
  name: string;
@@ -21018,6 +21064,7 @@ declare const voucherSchema: z.ZodObject<{
21018
21064
  minQuantity: number;
21019
21065
  }[] | null | undefined;
21020
21066
  }[] | undefined;
21067
+ properties?: Record<string, RawPropertyValue> | null | undefined;
21021
21068
  }>;
21022
21069
  quantity: z.ZodNumber;
21023
21070
  }, "strip", z.ZodTypeAny, {
@@ -21113,6 +21160,7 @@ declare const voucherSchema: z.ZodObject<{
21113
21160
  minQuantity: number;
21114
21161
  }[] | null | undefined;
21115
21162
  }[] | undefined;
21163
+ properties?: Record<string, RawPropertyValue> | null | undefined;
21116
21164
  };
21117
21165
  quantity: number;
21118
21166
  }, {
@@ -21208,6 +21256,7 @@ declare const voucherSchema: z.ZodObject<{
21208
21256
  minQuantity: number;
21209
21257
  }[] | null | undefined;
21210
21258
  }[] | undefined;
21259
+ properties?: Record<string, RawPropertyValue> | null | undefined;
21211
21260
  };
21212
21261
  quantity: number;
21213
21262
  }>, "many">;
@@ -21583,6 +21632,7 @@ declare const voucherSchema: z.ZodObject<{
21583
21632
  minQuantity: number;
21584
21633
  }[] | null | undefined;
21585
21634
  }>, "many">>;
21635
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
21586
21636
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
21587
21637
  }, "strip", z.ZodTypeAny, {
21588
21638
  id: string;
@@ -21676,6 +21726,7 @@ declare const voucherSchema: z.ZodObject<{
21676
21726
  minQuantity: number;
21677
21727
  }[] | null | undefined;
21678
21728
  }[] | undefined;
21729
+ properties?: Record<string, RawPropertyValue> | null | undefined;
21679
21730
  }, {
21680
21731
  id: string;
21681
21732
  name: string;
@@ -21768,6 +21819,7 @@ declare const voucherSchema: z.ZodObject<{
21768
21819
  minQuantity: number;
21769
21820
  }[] | null | undefined;
21770
21821
  }[] | undefined;
21822
+ properties?: Record<string, RawPropertyValue> | null | undefined;
21771
21823
  }>, z.ZodObject<{
21772
21824
  included: z.ZodOptional<z.ZodBoolean>;
21773
21825
  }, "strip", z.ZodTypeAny, {
@@ -22071,6 +22123,7 @@ declare const voucherSchema: z.ZodObject<{
22071
22123
  minQuantity: number;
22072
22124
  }[] | null | undefined;
22073
22125
  }>, "many">>;
22126
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
22074
22127
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
22075
22128
  }, "strip", z.ZodTypeAny, {
22076
22129
  id: string;
@@ -22173,6 +22226,7 @@ declare const voucherSchema: z.ZodObject<{
22173
22226
  minQuantity: number;
22174
22227
  }[] | null | undefined;
22175
22228
  }[] | undefined;
22229
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22176
22230
  } & {
22177
22231
  included?: boolean | undefined;
22178
22232
  })[];
@@ -22244,6 +22298,7 @@ declare const voucherSchema: z.ZodObject<{
22244
22298
  minQuantity: number;
22245
22299
  }[] | null | undefined;
22246
22300
  }[] | undefined;
22301
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22247
22302
  }, {
22248
22303
  id: string;
22249
22304
  name: string;
@@ -22344,6 +22399,7 @@ declare const voucherSchema: z.ZodObject<{
22344
22399
  minQuantity: number;
22345
22400
  }[] | null | undefined;
22346
22401
  }[] | undefined;
22402
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22347
22403
  } & {
22348
22404
  included?: boolean | undefined;
22349
22405
  })[];
@@ -22416,6 +22472,7 @@ declare const voucherSchema: z.ZodObject<{
22416
22472
  minQuantity: number;
22417
22473
  }[] | null | undefined;
22418
22474
  }[] | undefined;
22475
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22419
22476
  }>;
22420
22477
  quantity: z.ZodNumber;
22421
22478
  }, "strip", z.ZodTypeAny, {
@@ -22520,6 +22577,7 @@ declare const voucherSchema: z.ZodObject<{
22520
22577
  minQuantity: number;
22521
22578
  }[] | null | undefined;
22522
22579
  }[] | undefined;
22580
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22523
22581
  } & {
22524
22582
  included?: boolean | undefined;
22525
22583
  })[];
@@ -22591,6 +22649,7 @@ declare const voucherSchema: z.ZodObject<{
22591
22649
  minQuantity: number;
22592
22650
  }[] | null | undefined;
22593
22651
  }[] | undefined;
22652
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22594
22653
  };
22595
22654
  quantity: number;
22596
22655
  }, {
@@ -22694,6 +22753,7 @@ declare const voucherSchema: z.ZodObject<{
22694
22753
  minQuantity: number;
22695
22754
  }[] | null | undefined;
22696
22755
  }[] | undefined;
22756
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22697
22757
  } & {
22698
22758
  included?: boolean | undefined;
22699
22759
  })[];
@@ -22766,6 +22826,7 @@ declare const voucherSchema: z.ZodObject<{
22766
22826
  minQuantity: number;
22767
22827
  }[] | null | undefined;
22768
22828
  }[] | undefined;
22829
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22769
22830
  };
22770
22831
  quantity: number;
22771
22832
  }>, "many">;
@@ -22868,6 +22929,7 @@ declare const voucherSchema: z.ZodObject<{
22868
22929
  minQuantity: number;
22869
22930
  }[] | null | undefined;
22870
22931
  }[] | undefined;
22932
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22871
22933
  };
22872
22934
  quantity: number;
22873
22935
  }[];
@@ -22973,6 +23035,7 @@ declare const voucherSchema: z.ZodObject<{
22973
23035
  minQuantity: number;
22974
23036
  }[] | null | undefined;
22975
23037
  }[] | undefined;
23038
+ properties?: Record<string, RawPropertyValue> | null | undefined;
22976
23039
  } & {
22977
23040
  included?: boolean | undefined;
22978
23041
  })[];
@@ -23044,6 +23107,7 @@ declare const voucherSchema: z.ZodObject<{
23044
23107
  minQuantity: number;
23045
23108
  }[] | null | undefined;
23046
23109
  }[] | undefined;
23110
+ properties?: Record<string, RawPropertyValue> | null | undefined;
23047
23111
  };
23048
23112
  quantity: number;
23049
23113
  }[];
@@ -23146,6 +23210,7 @@ declare const voucherSchema: z.ZodObject<{
23146
23210
  minQuantity: number;
23147
23211
  }[] | null | undefined;
23148
23212
  }[] | undefined;
23213
+ properties?: Record<string, RawPropertyValue> | null | undefined;
23149
23214
  };
23150
23215
  quantity: number;
23151
23216
  }[];
@@ -23250,6 +23315,7 @@ declare const voucherSchema: z.ZodObject<{
23250
23315
  minQuantity: number;
23251
23316
  }[] | null | undefined;
23252
23317
  }[] | undefined;
23318
+ properties?: Record<string, RawPropertyValue> | null | undefined;
23253
23319
  } & {
23254
23320
  included?: boolean | undefined;
23255
23321
  })[];
@@ -23322,6 +23388,7 @@ declare const voucherSchema: z.ZodObject<{
23322
23388
  minQuantity: number;
23323
23389
  }[] | null | undefined;
23324
23390
  }[] | undefined;
23391
+ properties?: Record<string, RawPropertyValue> | null | undefined;
23325
23392
  };
23326
23393
  quantity: number;
23327
23394
  }[];
@@ -23729,6 +23796,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23729
23796
  minQuantity: number;
23730
23797
  }[] | null | undefined;
23731
23798
  }>, "many">>;
23799
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
23732
23800
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
23733
23801
  }, "strip", z.ZodTypeAny, {
23734
23802
  id: string;
@@ -23822,6 +23890,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23822
23890
  minQuantity: number;
23823
23891
  }[] | null | undefined;
23824
23892
  }[] | undefined;
23893
+ properties?: Record<string, RawPropertyValue> | null | undefined;
23825
23894
  }, {
23826
23895
  id: string;
23827
23896
  name: string;
@@ -23914,6 +23983,7 @@ declare const storefrontProductSchema: z.ZodObject<{
23914
23983
  minQuantity: number;
23915
23984
  }[] | null | undefined;
23916
23985
  }[] | undefined;
23986
+ properties?: Record<string, RawPropertyValue> | null | undefined;
23917
23987
  }>;
23918
23988
  declare const storefrontBundleSchema: z.ZodObject<{
23919
23989
  id: z.ZodString;
@@ -24286,6 +24356,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24286
24356
  minQuantity: number;
24287
24357
  }[] | null | undefined;
24288
24358
  }>, "many">>;
24359
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
24289
24360
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
24290
24361
  }, "strip", z.ZodTypeAny, {
24291
24362
  id: string;
@@ -24379,6 +24450,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24379
24450
  minQuantity: number;
24380
24451
  }[] | null | undefined;
24381
24452
  }[] | undefined;
24453
+ properties?: Record<string, RawPropertyValue> | null | undefined;
24382
24454
  }, {
24383
24455
  id: string;
24384
24456
  name: string;
@@ -24471,6 +24543,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24471
24543
  minQuantity: number;
24472
24544
  }[] | null | undefined;
24473
24545
  }[] | undefined;
24546
+ properties?: Record<string, RawPropertyValue> | null | undefined;
24474
24547
  }>, z.ZodObject<{
24475
24548
  included: z.ZodOptional<z.ZodBoolean>;
24476
24549
  }, "strip", z.ZodTypeAny, {
@@ -24774,6 +24847,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24774
24847
  minQuantity: number;
24775
24848
  }[] | null | undefined;
24776
24849
  }>, "many">>;
24850
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
24777
24851
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
24778
24852
  }, "strip", z.ZodTypeAny, {
24779
24853
  id: string;
@@ -24876,6 +24950,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24876
24950
  minQuantity: number;
24877
24951
  }[] | null | undefined;
24878
24952
  }[] | undefined;
24953
+ properties?: Record<string, RawPropertyValue> | null | undefined;
24879
24954
  } & {
24880
24955
  included?: boolean | undefined;
24881
24956
  })[];
@@ -24947,6 +25022,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
24947
25022
  minQuantity: number;
24948
25023
  }[] | null | undefined;
24949
25024
  }[] | undefined;
25025
+ properties?: Record<string, RawPropertyValue> | null | undefined;
24950
25026
  }, {
24951
25027
  id: string;
24952
25028
  name: string;
@@ -25047,6 +25123,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
25047
25123
  minQuantity: number;
25048
25124
  }[] | null | undefined;
25049
25125
  }[] | undefined;
25126
+ properties?: Record<string, RawPropertyValue> | null | undefined;
25050
25127
  } & {
25051
25128
  included?: boolean | undefined;
25052
25129
  })[];
@@ -25119,6 +25196,7 @@ declare const storefrontBundleSchema: z.ZodObject<{
25119
25196
  minQuantity: number;
25120
25197
  }[] | null | undefined;
25121
25198
  }[] | undefined;
25199
+ properties?: Record<string, RawPropertyValue> | null | undefined;
25122
25200
  }>;
25123
25201
  declare const offerConditionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
25124
25202
  type: z.ZodLiteral<"CartContainsItems">;
@@ -25498,6 +25576,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25498
25576
  minQuantity: number;
25499
25577
  }[] | null | undefined;
25500
25578
  }>, "many">>;
25579
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
25501
25580
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
25502
25581
  }, "strip", z.ZodTypeAny, {
25503
25582
  id: string;
@@ -25591,6 +25670,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25591
25670
  minQuantity: number;
25592
25671
  }[] | null | undefined;
25593
25672
  }[] | undefined;
25673
+ properties?: Record<string, RawPropertyValue> | null | undefined;
25594
25674
  }, {
25595
25675
  id: string;
25596
25676
  name: string;
@@ -25683,6 +25763,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
25683
25763
  minQuantity: number;
25684
25764
  }[] | null | undefined;
25685
25765
  }[] | undefined;
25766
+ properties?: Record<string, RawPropertyValue> | null | undefined;
25686
25767
  }>, z.ZodObject<{
25687
25768
  id: z.ZodString;
25688
25769
  name: z.ZodString;
@@ -26054,6 +26135,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26054
26135
  minQuantity: number;
26055
26136
  }[] | null | undefined;
26056
26137
  }>, "many">>;
26138
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
26057
26139
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
26058
26140
  }, "strip", z.ZodTypeAny, {
26059
26141
  id: string;
@@ -26147,6 +26229,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26147
26229
  minQuantity: number;
26148
26230
  }[] | null | undefined;
26149
26231
  }[] | undefined;
26232
+ properties?: Record<string, RawPropertyValue> | null | undefined;
26150
26233
  }, {
26151
26234
  id: string;
26152
26235
  name: string;
@@ -26239,6 +26322,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26239
26322
  minQuantity: number;
26240
26323
  }[] | null | undefined;
26241
26324
  }[] | undefined;
26325
+ properties?: Record<string, RawPropertyValue> | null | undefined;
26242
26326
  }>, z.ZodObject<{
26243
26327
  included: z.ZodOptional<z.ZodBoolean>;
26244
26328
  }, "strip", z.ZodTypeAny, {
@@ -26542,6 +26626,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26542
26626
  minQuantity: number;
26543
26627
  }[] | null | undefined;
26544
26628
  }>, "many">>;
26629
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
26545
26630
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
26546
26631
  }, "strip", z.ZodTypeAny, {
26547
26632
  id: string;
@@ -26644,6 +26729,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26644
26729
  minQuantity: number;
26645
26730
  }[] | null | undefined;
26646
26731
  }[] | undefined;
26732
+ properties?: Record<string, RawPropertyValue> | null | undefined;
26647
26733
  } & {
26648
26734
  included?: boolean | undefined;
26649
26735
  })[];
@@ -26715,6 +26801,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26715
26801
  minQuantity: number;
26716
26802
  }[] | null | undefined;
26717
26803
  }[] | undefined;
26804
+ properties?: Record<string, RawPropertyValue> | null | undefined;
26718
26805
  }, {
26719
26806
  id: string;
26720
26807
  name: string;
@@ -26815,6 +26902,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26815
26902
  minQuantity: number;
26816
26903
  }[] | null | undefined;
26817
26904
  }[] | undefined;
26905
+ properties?: Record<string, RawPropertyValue> | null | undefined;
26818
26906
  } & {
26819
26907
  included?: boolean | undefined;
26820
26908
  })[];
@@ -26887,6 +26975,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
26887
26975
  minQuantity: number;
26888
26976
  }[] | null | undefined;
26889
26977
  }[] | undefined;
26978
+ properties?: Record<string, RawPropertyValue> | null | undefined;
26890
26979
  }>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<{
26891
26980
  id: z.ZodString;
26892
26981
  name: z.ZodString;
@@ -27250,6 +27339,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27250
27339
  minQuantity: number;
27251
27340
  }[] | null | undefined;
27252
27341
  }>, "many">>;
27342
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
27253
27343
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
27254
27344
  }, "strip", z.ZodTypeAny, {
27255
27345
  id: string;
@@ -27343,6 +27433,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27343
27433
  minQuantity: number;
27344
27434
  }[] | null | undefined;
27345
27435
  }[] | undefined;
27436
+ properties?: Record<string, RawPropertyValue> | null | undefined;
27346
27437
  }, {
27347
27438
  id: string;
27348
27439
  name: string;
@@ -27435,6 +27526,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27435
27526
  minQuantity: number;
27436
27527
  }[] | null | undefined;
27437
27528
  }[] | undefined;
27529
+ properties?: Record<string, RawPropertyValue> | null | undefined;
27438
27530
  }>, z.ZodObject<{
27439
27531
  id: z.ZodString;
27440
27532
  name: z.ZodString;
@@ -27806,6 +27898,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27806
27898
  minQuantity: number;
27807
27899
  }[] | null | undefined;
27808
27900
  }>, "many">>;
27901
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
27809
27902
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
27810
27903
  }, "strip", z.ZodTypeAny, {
27811
27904
  id: string;
@@ -27899,6 +27992,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27899
27992
  minQuantity: number;
27900
27993
  }[] | null | undefined;
27901
27994
  }[] | undefined;
27995
+ properties?: Record<string, RawPropertyValue> | null | undefined;
27902
27996
  }, {
27903
27997
  id: string;
27904
27998
  name: string;
@@ -27991,6 +28085,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
27991
28085
  minQuantity: number;
27992
28086
  }[] | null | undefined;
27993
28087
  }[] | undefined;
28088
+ properties?: Record<string, RawPropertyValue> | null | undefined;
27994
28089
  }>, z.ZodObject<{
27995
28090
  included: z.ZodOptional<z.ZodBoolean>;
27996
28091
  }, "strip", z.ZodTypeAny, {
@@ -28294,6 +28389,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28294
28389
  minQuantity: number;
28295
28390
  }[] | null | undefined;
28296
28391
  }>, "many">>;
28392
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
28297
28393
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
28298
28394
  }, "strip", z.ZodTypeAny, {
28299
28395
  id: string;
@@ -28396,6 +28492,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28396
28492
  minQuantity: number;
28397
28493
  }[] | null | undefined;
28398
28494
  }[] | undefined;
28495
+ properties?: Record<string, RawPropertyValue> | null | undefined;
28399
28496
  } & {
28400
28497
  included?: boolean | undefined;
28401
28498
  })[];
@@ -28467,6 +28564,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28467
28564
  minQuantity: number;
28468
28565
  }[] | null | undefined;
28469
28566
  }[] | undefined;
28567
+ properties?: Record<string, RawPropertyValue> | null | undefined;
28470
28568
  }, {
28471
28569
  id: string;
28472
28570
  name: string;
@@ -28567,6 +28665,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28567
28665
  minQuantity: number;
28568
28666
  }[] | null | undefined;
28569
28667
  }[] | undefined;
28668
+ properties?: Record<string, RawPropertyValue> | null | undefined;
28570
28669
  } & {
28571
28670
  included?: boolean | undefined;
28572
28671
  })[];
@@ -28639,6 +28738,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28639
28738
  minQuantity: number;
28640
28739
  }[] | null | undefined;
28641
28740
  }[] | undefined;
28741
+ properties?: Record<string, RawPropertyValue> | null | undefined;
28642
28742
  }>]>, "many">]>;
28643
28743
  targetVariations: z.ZodArray<z.ZodString, "many">;
28644
28744
  condition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -28810,6 +28910,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28810
28910
  minQuantity: number;
28811
28911
  }[] | null | undefined;
28812
28912
  }[] | undefined;
28913
+ properties?: Record<string, RawPropertyValue> | null | undefined;
28813
28914
  } | {
28814
28915
  id: string;
28815
28916
  name: string;
@@ -28911,6 +29012,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28911
29012
  minQuantity: number;
28912
29013
  }[] | null | undefined;
28913
29014
  }[] | undefined;
29015
+ properties?: Record<string, RawPropertyValue> | null | undefined;
28914
29016
  } & {
28915
29017
  included?: boolean | undefined;
28916
29018
  })[];
@@ -28982,6 +29084,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
28982
29084
  minQuantity: number;
28983
29085
  }[] | null | undefined;
28984
29086
  }[] | undefined;
29087
+ properties?: Record<string, RawPropertyValue> | null | undefined;
28985
29088
  } | ({
28986
29089
  id: string;
28987
29090
  name: string;
@@ -29074,6 +29177,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29074
29177
  minQuantity: number;
29075
29178
  }[] | null | undefined;
29076
29179
  }[] | undefined;
29180
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29077
29181
  } | {
29078
29182
  id: string;
29079
29183
  name: string;
@@ -29175,6 +29279,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29175
29279
  minQuantity: number;
29176
29280
  }[] | null | undefined;
29177
29281
  }[] | undefined;
29282
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29178
29283
  } & {
29179
29284
  included?: boolean | undefined;
29180
29285
  })[];
@@ -29246,6 +29351,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29246
29351
  minQuantity: number;
29247
29352
  }[] | null | undefined;
29248
29353
  }[] | undefined;
29354
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29249
29355
  })[];
29250
29356
  targetVariations: string[];
29251
29357
  condition: {
@@ -29363,6 +29469,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29363
29469
  minQuantity: number;
29364
29470
  }[] | null | undefined;
29365
29471
  }[] | undefined;
29472
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29366
29473
  } | {
29367
29474
  id: string;
29368
29475
  name: string;
@@ -29463,6 +29570,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29463
29570
  minQuantity: number;
29464
29571
  }[] | null | undefined;
29465
29572
  }[] | undefined;
29573
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29466
29574
  } & {
29467
29575
  included?: boolean | undefined;
29468
29576
  })[];
@@ -29535,6 +29643,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29535
29643
  minQuantity: number;
29536
29644
  }[] | null | undefined;
29537
29645
  }[] | undefined;
29646
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29538
29647
  } | ({
29539
29648
  id: string;
29540
29649
  name: string;
@@ -29627,6 +29736,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29627
29736
  minQuantity: number;
29628
29737
  }[] | null | undefined;
29629
29738
  }[] | undefined;
29739
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29630
29740
  } | {
29631
29741
  id: string;
29632
29742
  name: string;
@@ -29727,6 +29837,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29727
29837
  minQuantity: number;
29728
29838
  }[] | null | undefined;
29729
29839
  }[] | undefined;
29840
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29730
29841
  } & {
29731
29842
  included?: boolean | undefined;
29732
29843
  })[];
@@ -29799,6 +29910,7 @@ declare const storefrontOfferSchema: z.ZodObject<{
29799
29910
  minQuantity: number;
29800
29911
  }[] | null | undefined;
29801
29912
  }[] | undefined;
29913
+ properties?: Record<string, RawPropertyValue> | null | undefined;
29802
29914
  })[];
29803
29915
  targetVariations: string[];
29804
29916
  condition: {
@@ -30173,6 +30285,7 @@ declare const storefrontSchema: z.ZodObject<{
30173
30285
  minQuantity: number;
30174
30286
  }[] | null | undefined;
30175
30287
  }>, "many">>;
30288
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
30176
30289
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
30177
30290
  }, "strip", z.ZodTypeAny, {
30178
30291
  id: string;
@@ -30266,6 +30379,7 @@ declare const storefrontSchema: z.ZodObject<{
30266
30379
  minQuantity: number;
30267
30380
  }[] | null | undefined;
30268
30381
  }[] | undefined;
30382
+ properties?: Record<string, RawPropertyValue> | null | undefined;
30269
30383
  }, {
30270
30384
  id: string;
30271
30385
  name: string;
@@ -30358,6 +30472,7 @@ declare const storefrontSchema: z.ZodObject<{
30358
30472
  minQuantity: number;
30359
30473
  }[] | null | undefined;
30360
30474
  }[] | undefined;
30475
+ properties?: Record<string, RawPropertyValue> | null | undefined;
30361
30476
  }>, "many">;
30362
30477
  bundles: z.ZodArray<z.ZodObject<{
30363
30478
  id: z.ZodString;
@@ -30730,6 +30845,7 @@ declare const storefrontSchema: z.ZodObject<{
30730
30845
  minQuantity: number;
30731
30846
  }[] | null | undefined;
30732
30847
  }>, "many">>;
30848
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
30733
30849
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
30734
30850
  }, "strip", z.ZodTypeAny, {
30735
30851
  id: string;
@@ -30823,6 +30939,7 @@ declare const storefrontSchema: z.ZodObject<{
30823
30939
  minQuantity: number;
30824
30940
  }[] | null | undefined;
30825
30941
  }[] | undefined;
30942
+ properties?: Record<string, RawPropertyValue> | null | undefined;
30826
30943
  }, {
30827
30944
  id: string;
30828
30945
  name: string;
@@ -30915,6 +31032,7 @@ declare const storefrontSchema: z.ZodObject<{
30915
31032
  minQuantity: number;
30916
31033
  }[] | null | undefined;
30917
31034
  }[] | undefined;
31035
+ properties?: Record<string, RawPropertyValue> | null | undefined;
30918
31036
  }>, z.ZodObject<{
30919
31037
  included: z.ZodOptional<z.ZodBoolean>;
30920
31038
  }, "strip", z.ZodTypeAny, {
@@ -31218,6 +31336,7 @@ declare const storefrontSchema: z.ZodObject<{
31218
31336
  minQuantity: number;
31219
31337
  }[] | null | undefined;
31220
31338
  }>, "many">>;
31339
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
31221
31340
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
31222
31341
  }, "strip", z.ZodTypeAny, {
31223
31342
  id: string;
@@ -31320,6 +31439,7 @@ declare const storefrontSchema: z.ZodObject<{
31320
31439
  minQuantity: number;
31321
31440
  }[] | null | undefined;
31322
31441
  }[] | undefined;
31442
+ properties?: Record<string, RawPropertyValue> | null | undefined;
31323
31443
  } & {
31324
31444
  included?: boolean | undefined;
31325
31445
  })[];
@@ -31391,6 +31511,7 @@ declare const storefrontSchema: z.ZodObject<{
31391
31511
  minQuantity: number;
31392
31512
  }[] | null | undefined;
31393
31513
  }[] | undefined;
31514
+ properties?: Record<string, RawPropertyValue> | null | undefined;
31394
31515
  }, {
31395
31516
  id: string;
31396
31517
  name: string;
@@ -31491,6 +31612,7 @@ declare const storefrontSchema: z.ZodObject<{
31491
31612
  minQuantity: number;
31492
31613
  }[] | null | undefined;
31493
31614
  }[] | undefined;
31615
+ properties?: Record<string, RawPropertyValue> | null | undefined;
31494
31616
  } & {
31495
31617
  included?: boolean | undefined;
31496
31618
  })[];
@@ -31563,6 +31685,7 @@ declare const storefrontSchema: z.ZodObject<{
31563
31685
  minQuantity: number;
31564
31686
  }[] | null | undefined;
31565
31687
  }[] | undefined;
31688
+ properties?: Record<string, RawPropertyValue> | null | undefined;
31566
31689
  }>, "many">;
31567
31690
  offers: z.ZodOptional<z.ZodArray<z.ZodObject<{
31568
31691
  id: z.ZodString;
@@ -31929,6 +32052,7 @@ declare const storefrontSchema: z.ZodObject<{
31929
32052
  minQuantity: number;
31930
32053
  }[] | null | undefined;
31931
32054
  }>, "many">>;
32055
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
31932
32056
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
31933
32057
  }, "strip", z.ZodTypeAny, {
31934
32058
  id: string;
@@ -32022,6 +32146,7 @@ declare const storefrontSchema: z.ZodObject<{
32022
32146
  minQuantity: number;
32023
32147
  }[] | null | undefined;
32024
32148
  }[] | undefined;
32149
+ properties?: Record<string, RawPropertyValue> | null | undefined;
32025
32150
  }, {
32026
32151
  id: string;
32027
32152
  name: string;
@@ -32114,6 +32239,7 @@ declare const storefrontSchema: z.ZodObject<{
32114
32239
  minQuantity: number;
32115
32240
  }[] | null | undefined;
32116
32241
  }[] | undefined;
32242
+ properties?: Record<string, RawPropertyValue> | null | undefined;
32117
32243
  }>, z.ZodObject<{
32118
32244
  id: z.ZodString;
32119
32245
  name: z.ZodString;
@@ -32485,6 +32611,7 @@ declare const storefrontSchema: z.ZodObject<{
32485
32611
  minQuantity: number;
32486
32612
  }[] | null | undefined;
32487
32613
  }>, "many">>;
32614
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
32488
32615
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
32489
32616
  }, "strip", z.ZodTypeAny, {
32490
32617
  id: string;
@@ -32578,6 +32705,7 @@ declare const storefrontSchema: z.ZodObject<{
32578
32705
  minQuantity: number;
32579
32706
  }[] | null | undefined;
32580
32707
  }[] | undefined;
32708
+ properties?: Record<string, RawPropertyValue> | null | undefined;
32581
32709
  }, {
32582
32710
  id: string;
32583
32711
  name: string;
@@ -32670,6 +32798,7 @@ declare const storefrontSchema: z.ZodObject<{
32670
32798
  minQuantity: number;
32671
32799
  }[] | null | undefined;
32672
32800
  }[] | undefined;
32801
+ properties?: Record<string, RawPropertyValue> | null | undefined;
32673
32802
  }>, z.ZodObject<{
32674
32803
  included: z.ZodOptional<z.ZodBoolean>;
32675
32804
  }, "strip", z.ZodTypeAny, {
@@ -32973,6 +33102,7 @@ declare const storefrontSchema: z.ZodObject<{
32973
33102
  minQuantity: number;
32974
33103
  }[] | null | undefined;
32975
33104
  }>, "many">>;
33105
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
32976
33106
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
32977
33107
  }, "strip", z.ZodTypeAny, {
32978
33108
  id: string;
@@ -33075,6 +33205,7 @@ declare const storefrontSchema: z.ZodObject<{
33075
33205
  minQuantity: number;
33076
33206
  }[] | null | undefined;
33077
33207
  }[] | undefined;
33208
+ properties?: Record<string, RawPropertyValue> | null | undefined;
33078
33209
  } & {
33079
33210
  included?: boolean | undefined;
33080
33211
  })[];
@@ -33146,6 +33277,7 @@ declare const storefrontSchema: z.ZodObject<{
33146
33277
  minQuantity: number;
33147
33278
  }[] | null | undefined;
33148
33279
  }[] | undefined;
33280
+ properties?: Record<string, RawPropertyValue> | null | undefined;
33149
33281
  }, {
33150
33282
  id: string;
33151
33283
  name: string;
@@ -33246,6 +33378,7 @@ declare const storefrontSchema: z.ZodObject<{
33246
33378
  minQuantity: number;
33247
33379
  }[] | null | undefined;
33248
33380
  }[] | undefined;
33381
+ properties?: Record<string, RawPropertyValue> | null | undefined;
33249
33382
  } & {
33250
33383
  included?: boolean | undefined;
33251
33384
  })[];
@@ -33318,6 +33451,7 @@ declare const storefrontSchema: z.ZodObject<{
33318
33451
  minQuantity: number;
33319
33452
  }[] | null | undefined;
33320
33453
  }[] | undefined;
33454
+ properties?: Record<string, RawPropertyValue> | null | undefined;
33321
33455
  }>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<{
33322
33456
  id: z.ZodString;
33323
33457
  name: z.ZodString;
@@ -33681,6 +33815,7 @@ declare const storefrontSchema: z.ZodObject<{
33681
33815
  minQuantity: number;
33682
33816
  }[] | null | undefined;
33683
33817
  }>, "many">>;
33818
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
33684
33819
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
33685
33820
  }, "strip", z.ZodTypeAny, {
33686
33821
  id: string;
@@ -33774,6 +33909,7 @@ declare const storefrontSchema: z.ZodObject<{
33774
33909
  minQuantity: number;
33775
33910
  }[] | null | undefined;
33776
33911
  }[] | undefined;
33912
+ properties?: Record<string, RawPropertyValue> | null | undefined;
33777
33913
  }, {
33778
33914
  id: string;
33779
33915
  name: string;
@@ -33866,6 +34002,7 @@ declare const storefrontSchema: z.ZodObject<{
33866
34002
  minQuantity: number;
33867
34003
  }[] | null | undefined;
33868
34004
  }[] | undefined;
34005
+ properties?: Record<string, RawPropertyValue> | null | undefined;
33869
34006
  }>, z.ZodObject<{
33870
34007
  id: z.ZodString;
33871
34008
  name: z.ZodString;
@@ -34237,6 +34374,7 @@ declare const storefrontSchema: z.ZodObject<{
34237
34374
  minQuantity: number;
34238
34375
  }[] | null | undefined;
34239
34376
  }>, "many">>;
34377
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
34240
34378
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Product">>;
34241
34379
  }, "strip", z.ZodTypeAny, {
34242
34380
  id: string;
@@ -34330,6 +34468,7 @@ declare const storefrontSchema: z.ZodObject<{
34330
34468
  minQuantity: number;
34331
34469
  }[] | null | undefined;
34332
34470
  }[] | undefined;
34471
+ properties?: Record<string, RawPropertyValue> | null | undefined;
34333
34472
  }, {
34334
34473
  id: string;
34335
34474
  name: string;
@@ -34422,6 +34561,7 @@ declare const storefrontSchema: z.ZodObject<{
34422
34561
  minQuantity: number;
34423
34562
  }[] | null | undefined;
34424
34563
  }[] | undefined;
34564
+ properties?: Record<string, RawPropertyValue> | null | undefined;
34425
34565
  }>, z.ZodObject<{
34426
34566
  included: z.ZodOptional<z.ZodBoolean>;
34427
34567
  }, "strip", z.ZodTypeAny, {
@@ -34725,6 +34865,7 @@ declare const storefrontSchema: z.ZodObject<{
34725
34865
  minQuantity: number;
34726
34866
  }[] | null | undefined;
34727
34867
  }>, "many">>;
34868
+ properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodType<RawPropertyValue, z.ZodTypeDef, RawPropertyValue>>>>;
34728
34869
  type: z.ZodPipeline<z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodLiteral<"Bundle">>;
34729
34870
  }, "strip", z.ZodTypeAny, {
34730
34871
  id: string;
@@ -34827,6 +34968,7 @@ declare const storefrontSchema: z.ZodObject<{
34827
34968
  minQuantity: number;
34828
34969
  }[] | null | undefined;
34829
34970
  }[] | undefined;
34971
+ properties?: Record<string, RawPropertyValue> | null | undefined;
34830
34972
  } & {
34831
34973
  included?: boolean | undefined;
34832
34974
  })[];
@@ -34898,6 +35040,7 @@ declare const storefrontSchema: z.ZodObject<{
34898
35040
  minQuantity: number;
34899
35041
  }[] | null | undefined;
34900
35042
  }[] | undefined;
35043
+ properties?: Record<string, RawPropertyValue> | null | undefined;
34901
35044
  }, {
34902
35045
  id: string;
34903
35046
  name: string;
@@ -34998,6 +35141,7 @@ declare const storefrontSchema: z.ZodObject<{
34998
35141
  minQuantity: number;
34999
35142
  }[] | null | undefined;
35000
35143
  }[] | undefined;
35144
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35001
35145
  } & {
35002
35146
  included?: boolean | undefined;
35003
35147
  })[];
@@ -35070,6 +35214,7 @@ declare const storefrontSchema: z.ZodObject<{
35070
35214
  minQuantity: number;
35071
35215
  }[] | null | undefined;
35072
35216
  }[] | undefined;
35217
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35073
35218
  }>]>, "many">]>;
35074
35219
  targetVariations: z.ZodArray<z.ZodString, "many">;
35075
35220
  condition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -35241,6 +35386,7 @@ declare const storefrontSchema: z.ZodObject<{
35241
35386
  minQuantity: number;
35242
35387
  }[] | null | undefined;
35243
35388
  }[] | undefined;
35389
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35244
35390
  } | {
35245
35391
  id: string;
35246
35392
  name: string;
@@ -35342,6 +35488,7 @@ declare const storefrontSchema: z.ZodObject<{
35342
35488
  minQuantity: number;
35343
35489
  }[] | null | undefined;
35344
35490
  }[] | undefined;
35491
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35345
35492
  } & {
35346
35493
  included?: boolean | undefined;
35347
35494
  })[];
@@ -35413,6 +35560,7 @@ declare const storefrontSchema: z.ZodObject<{
35413
35560
  minQuantity: number;
35414
35561
  }[] | null | undefined;
35415
35562
  }[] | undefined;
35563
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35416
35564
  } | ({
35417
35565
  id: string;
35418
35566
  name: string;
@@ -35505,6 +35653,7 @@ declare const storefrontSchema: z.ZodObject<{
35505
35653
  minQuantity: number;
35506
35654
  }[] | null | undefined;
35507
35655
  }[] | undefined;
35656
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35508
35657
  } | {
35509
35658
  id: string;
35510
35659
  name: string;
@@ -35606,6 +35755,7 @@ declare const storefrontSchema: z.ZodObject<{
35606
35755
  minQuantity: number;
35607
35756
  }[] | null | undefined;
35608
35757
  }[] | undefined;
35758
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35609
35759
  } & {
35610
35760
  included?: boolean | undefined;
35611
35761
  })[];
@@ -35677,6 +35827,7 @@ declare const storefrontSchema: z.ZodObject<{
35677
35827
  minQuantity: number;
35678
35828
  }[] | null | undefined;
35679
35829
  }[] | undefined;
35830
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35680
35831
  })[];
35681
35832
  targetVariations: string[];
35682
35833
  condition: {
@@ -35794,6 +35945,7 @@ declare const storefrontSchema: z.ZodObject<{
35794
35945
  minQuantity: number;
35795
35946
  }[] | null | undefined;
35796
35947
  }[] | undefined;
35948
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35797
35949
  } | {
35798
35950
  id: string;
35799
35951
  name: string;
@@ -35894,6 +36046,7 @@ declare const storefrontSchema: z.ZodObject<{
35894
36046
  minQuantity: number;
35895
36047
  }[] | null | undefined;
35896
36048
  }[] | undefined;
36049
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35897
36050
  } & {
35898
36051
  included?: boolean | undefined;
35899
36052
  })[];
@@ -35966,6 +36119,7 @@ declare const storefrontSchema: z.ZodObject<{
35966
36119
  minQuantity: number;
35967
36120
  }[] | null | undefined;
35968
36121
  }[] | undefined;
36122
+ properties?: Record<string, RawPropertyValue> | null | undefined;
35969
36123
  } | ({
35970
36124
  id: string;
35971
36125
  name: string;
@@ -36058,6 +36212,7 @@ declare const storefrontSchema: z.ZodObject<{
36058
36212
  minQuantity: number;
36059
36213
  }[] | null | undefined;
36060
36214
  }[] | undefined;
36215
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36061
36216
  } | {
36062
36217
  id: string;
36063
36218
  name: string;
@@ -36158,6 +36313,7 @@ declare const storefrontSchema: z.ZodObject<{
36158
36313
  minQuantity: number;
36159
36314
  }[] | null | undefined;
36160
36315
  }[] | undefined;
36316
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36161
36317
  } & {
36162
36318
  included?: boolean | undefined;
36163
36319
  })[];
@@ -36230,6 +36386,7 @@ declare const storefrontSchema: z.ZodObject<{
36230
36386
  minQuantity: number;
36231
36387
  }[] | null | undefined;
36232
36388
  }[] | undefined;
36389
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36233
36390
  })[];
36234
36391
  targetVariations: string[];
36235
36392
  condition: {
@@ -36331,6 +36488,7 @@ declare const storefrontSchema: z.ZodObject<{
36331
36488
  minQuantity: number;
36332
36489
  }[] | null | undefined;
36333
36490
  }[] | undefined;
36491
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36334
36492
  }[];
36335
36493
  suggestedCurrency: string;
36336
36494
  bundles: {
@@ -36434,6 +36592,7 @@ declare const storefrontSchema: z.ZodObject<{
36434
36592
  minQuantity: number;
36435
36593
  }[] | null | undefined;
36436
36594
  }[] | undefined;
36595
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36437
36596
  } & {
36438
36597
  included?: boolean | undefined;
36439
36598
  })[];
@@ -36505,6 +36664,7 @@ declare const storefrontSchema: z.ZodObject<{
36505
36664
  minQuantity: number;
36506
36665
  }[] | null | undefined;
36507
36666
  }[] | undefined;
36667
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36508
36668
  }[];
36509
36669
  enabledCurrencies?: string[] | undefined;
36510
36670
  offers?: {
@@ -36617,6 +36777,7 @@ declare const storefrontSchema: z.ZodObject<{
36617
36777
  minQuantity: number;
36618
36778
  }[] | null | undefined;
36619
36779
  }[] | undefined;
36780
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36620
36781
  } | {
36621
36782
  id: string;
36622
36783
  name: string;
@@ -36718,6 +36879,7 @@ declare const storefrontSchema: z.ZodObject<{
36718
36879
  minQuantity: number;
36719
36880
  }[] | null | undefined;
36720
36881
  }[] | undefined;
36882
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36721
36883
  } & {
36722
36884
  included?: boolean | undefined;
36723
36885
  })[];
@@ -36789,6 +36951,7 @@ declare const storefrontSchema: z.ZodObject<{
36789
36951
  minQuantity: number;
36790
36952
  }[] | null | undefined;
36791
36953
  }[] | undefined;
36954
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36792
36955
  } | ({
36793
36956
  id: string;
36794
36957
  name: string;
@@ -36881,6 +37044,7 @@ declare const storefrontSchema: z.ZodObject<{
36881
37044
  minQuantity: number;
36882
37045
  }[] | null | undefined;
36883
37046
  }[] | undefined;
37047
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36884
37048
  } | {
36885
37049
  id: string;
36886
37050
  name: string;
@@ -36982,6 +37146,7 @@ declare const storefrontSchema: z.ZodObject<{
36982
37146
  minQuantity: number;
36983
37147
  }[] | null | undefined;
36984
37148
  }[] | undefined;
37149
+ properties?: Record<string, RawPropertyValue> | null | undefined;
36985
37150
  } & {
36986
37151
  included?: boolean | undefined;
36987
37152
  })[];
@@ -37053,6 +37218,7 @@ declare const storefrontSchema: z.ZodObject<{
37053
37218
  minQuantity: number;
37054
37219
  }[] | null | undefined;
37055
37220
  }[] | undefined;
37221
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37056
37222
  })[];
37057
37223
  targetVariations: string[];
37058
37224
  condition: {
@@ -37154,6 +37320,7 @@ declare const storefrontSchema: z.ZodObject<{
37154
37320
  minQuantity: number;
37155
37321
  }[] | null | undefined;
37156
37322
  }[] | undefined;
37323
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37157
37324
  }[];
37158
37325
  suggestedCurrency: string;
37159
37326
  bundles: {
@@ -37256,6 +37423,7 @@ declare const storefrontSchema: z.ZodObject<{
37256
37423
  minQuantity: number;
37257
37424
  }[] | null | undefined;
37258
37425
  }[] | undefined;
37426
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37259
37427
  } & {
37260
37428
  included?: boolean | undefined;
37261
37429
  })[];
@@ -37328,6 +37496,7 @@ declare const storefrontSchema: z.ZodObject<{
37328
37496
  minQuantity: number;
37329
37497
  }[] | null | undefined;
37330
37498
  }[] | undefined;
37499
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37331
37500
  }[];
37332
37501
  enabledCurrencies?: string[] | undefined;
37333
37502
  offers?: {
@@ -37440,6 +37609,7 @@ declare const storefrontSchema: z.ZodObject<{
37440
37609
  minQuantity: number;
37441
37610
  }[] | null | undefined;
37442
37611
  }[] | undefined;
37612
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37443
37613
  } | {
37444
37614
  id: string;
37445
37615
  name: string;
@@ -37540,6 +37710,7 @@ declare const storefrontSchema: z.ZodObject<{
37540
37710
  minQuantity: number;
37541
37711
  }[] | null | undefined;
37542
37712
  }[] | undefined;
37713
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37543
37714
  } & {
37544
37715
  included?: boolean | undefined;
37545
37716
  })[];
@@ -37612,6 +37783,7 @@ declare const storefrontSchema: z.ZodObject<{
37612
37783
  minQuantity: number;
37613
37784
  }[] | null | undefined;
37614
37785
  }[] | undefined;
37786
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37615
37787
  } | ({
37616
37788
  id: string;
37617
37789
  name: string;
@@ -37704,6 +37876,7 @@ declare const storefrontSchema: z.ZodObject<{
37704
37876
  minQuantity: number;
37705
37877
  }[] | null | undefined;
37706
37878
  }[] | undefined;
37879
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37707
37880
  } | {
37708
37881
  id: string;
37709
37882
  name: string;
@@ -37804,6 +37977,7 @@ declare const storefrontSchema: z.ZodObject<{
37804
37977
  minQuantity: number;
37805
37978
  }[] | null | undefined;
37806
37979
  }[] | undefined;
37980
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37807
37981
  } & {
37808
37982
  included?: boolean | undefined;
37809
37983
  })[];
@@ -37876,6 +38050,7 @@ declare const storefrontSchema: z.ZodObject<{
37876
38050
  minQuantity: number;
37877
38051
  }[] | null | undefined;
37878
38052
  }[] | undefined;
38053
+ properties?: Record<string, RawPropertyValue> | null | undefined;
37879
38054
  })[];
37880
38055
  targetVariations: string[];
37881
38056
  condition: {
@@ -37984,4 +38159,4 @@ declare class MoonbaseClient {
37984
38159
  orders: OrderEndpoints;
37985
38160
  }
37986
38161
 
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 };
38162
+ 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, TokenStore, type UrchinTrackingModule, type User, type UserAccountConfirmed, type Vendor, type Voucher, objectToQuery, problemDetailsSchema, schemas, utmToObject };