@lightspeed/crane-api 2.0.0 → 2.1.0

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.mts CHANGED
@@ -448,12 +448,19 @@ declare const CollectionDescriptorSchema: z.ZodObject<{
448
448
  }>]>>;
449
449
  }, z.core.$strict>>;
450
450
  capitalization: z.ZodOptional<z.ZodEnum<{
451
+ small: "small";
451
452
  none: "none";
452
453
  all: "all";
453
- small: "small";
454
454
  }>>;
455
455
  }, z.core.$strict>, z.ZodObject<{
456
456
  type: z.ZodLiteral<"DIVIDER">;
457
+ }, z.core.$strict>, z.ZodObject<{
458
+ type: z.ZodLiteral<"INFO">;
459
+ description: z.ZodOptional<z.ZodString>;
460
+ button: z.ZodOptional<z.ZodObject<{
461
+ label: z.ZodOptional<z.ZodString>;
462
+ link: z.ZodOptional<z.ZodURL>;
463
+ }, z.core.$strict>>;
457
464
  }, z.core.$strict>], "type">>>;
458
465
  layoutId: z.ZodOptional<z.ZodString>;
459
466
  }, z.core.$strict>>;
@@ -697,6 +704,7 @@ declare const DesignEditorTypeSchema: z.ZodEnum<{
697
704
  TOGGLE: "TOGGLE";
698
705
  BUTTON: "BUTTON";
699
706
  LOGO: "LOGO";
707
+ INFO: "INFO";
700
708
  DIVIDER: "DIVIDER";
701
709
  TEXT: "TEXT";
702
710
  BACKGROUND: "BACKGROUND";
@@ -713,6 +721,7 @@ declare const DesignEditorType: {
713
721
  readonly COLOR_PICKER: "COLOR_PICKER";
714
722
  readonly LOGO: "LOGO";
715
723
  readonly DIVIDER: "DIVIDER";
724
+ readonly INFO: "INFO";
716
725
  };
717
726
  type DesignEditorType = z.infer<typeof DesignEditorTypeSchema>;
718
727
 
@@ -1232,9 +1241,9 @@ declare const LogoDesignEditorDefaultsSchema: z.ZodObject<{
1232
1241
  }>]>>;
1233
1242
  }, z.core.$strict>>;
1234
1243
  capitalization: z.ZodOptional<z.ZodEnum<{
1244
+ small: "small";
1235
1245
  none: "none";
1236
1246
  all: "all";
1237
- small: "small";
1238
1247
  }>>;
1239
1248
  }, z.core.$strict>;
1240
1249
  declare const LogoDesignEditorSchema: z.ZodObject<{
@@ -1279,9 +1288,9 @@ declare const LogoDesignEditorSchema: z.ZodObject<{
1279
1288
  }>]>>;
1280
1289
  }, z.core.$strict>>;
1281
1290
  capitalization: z.ZodOptional<z.ZodEnum<{
1291
+ small: "small";
1282
1292
  none: "none";
1283
1293
  all: "all";
1284
- small: "small";
1285
1294
  }>>;
1286
1295
  }, z.core.$strict>>;
1287
1296
  }, z.core.$strict>;
@@ -3484,12 +3493,19 @@ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3484
3493
  }>]>>;
3485
3494
  }, z.core.$strict>>;
3486
3495
  capitalization: z.ZodOptional<z.ZodEnum<{
3496
+ small: "small";
3487
3497
  none: "none";
3488
3498
  all: "all";
3489
- small: "small";
3490
3499
  }>>;
3491
3500
  }, z.core.$strict>, z.ZodObject<{
3492
3501
  type: z.ZodLiteral<"DIVIDER">;
3502
+ }, z.core.$strict>, z.ZodObject<{
3503
+ type: z.ZodLiteral<"INFO">;
3504
+ description: z.ZodOptional<z.ZodString>;
3505
+ button: z.ZodOptional<z.ZodObject<{
3506
+ label: z.ZodOptional<z.ZodString>;
3507
+ link: z.ZodOptional<z.ZodURL>;
3508
+ }, z.core.$strict>>;
3493
3509
  }, z.core.$strict>], "type">;
3494
3510
 
3495
3511
  type InputboxContentEditor = z.infer<typeof InputboxContentEditorSchema>;
@@ -3895,9 +3911,9 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3895
3911
  }>]>>;
3896
3912
  }, z.core.$strict>>;
3897
3913
  capitalization: z.ZodOptional<z.ZodEnum<{
3914
+ small: "small";
3898
3915
  none: "none";
3899
3916
  all: "all";
3900
- small: "small";
3901
3917
  }>>;
3902
3918
  }, z.core.$strict>>;
3903
3919
  }, z.core.$strict>, z.ZodObject<{
@@ -3906,6 +3922,22 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3906
3922
  defaults: z.ZodOptional<z.ZodObject<{
3907
3923
  type: z.ZodLiteral<"DIVIDER">;
3908
3924
  }, z.core.$strict>>;
3925
+ }, z.core.$strict>, z.ZodObject<{
3926
+ type: z.ZodLiteral<"INFO">;
3927
+ label: z.ZodString;
3928
+ description: z.ZodString;
3929
+ button: z.ZodOptional<z.ZodObject<{
3930
+ label: z.ZodString;
3931
+ link: z.ZodURL;
3932
+ }, z.core.$strict>>;
3933
+ defaults: z.ZodOptional<z.ZodObject<{
3934
+ type: z.ZodLiteral<"INFO">;
3935
+ description: z.ZodOptional<z.ZodString>;
3936
+ button: z.ZodOptional<z.ZodObject<{
3937
+ label: z.ZodOptional<z.ZodString>;
3938
+ link: z.ZodOptional<z.ZodURL>;
3939
+ }, z.core.$strict>>;
3940
+ }, z.core.$strict>>;
3909
3941
  }, z.core.$strict>], "type">;
3910
3942
  declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
3911
3943
  type: z.ZodLiteral<"TEXT">;
@@ -4120,9 +4152,9 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
4120
4152
  }>]>>;
4121
4153
  }, z.core.$strict>>;
4122
4154
  capitalization: z.ZodOptional<z.ZodEnum<{
4155
+ small: "small";
4123
4156
  none: "none";
4124
4157
  all: "all";
4125
- small: "small";
4126
4158
  }>>;
4127
4159
  }, z.core.$strict>>;
4128
4160
  }, z.core.$strict>, z.ZodObject<{
@@ -4131,6 +4163,22 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
4131
4163
  defaults: z.ZodOptional<z.ZodObject<{
4132
4164
  type: z.ZodLiteral<"DIVIDER">;
4133
4165
  }, z.core.$strict>>;
4166
+ }, z.core.$strict>, z.ZodObject<{
4167
+ type: z.ZodLiteral<"INFO">;
4168
+ label: z.ZodString;
4169
+ description: z.ZodString;
4170
+ button: z.ZodOptional<z.ZodObject<{
4171
+ label: z.ZodString;
4172
+ link: z.ZodURL;
4173
+ }, z.core.$strict>>;
4174
+ defaults: z.ZodOptional<z.ZodObject<{
4175
+ type: z.ZodLiteral<"INFO">;
4176
+ description: z.ZodOptional<z.ZodString>;
4177
+ button: z.ZodOptional<z.ZodObject<{
4178
+ label: z.ZodOptional<z.ZodString>;
4179
+ link: z.ZodOptional<z.ZodURL>;
4180
+ }, z.core.$strict>>;
4181
+ }, z.core.$strict>>;
4134
4182
  }, z.core.$strict>], "type">>;
4135
4183
 
4136
4184
  declare const ImageDesignEditorDefaultsSchema: z.ZodObject<{
@@ -4186,6 +4234,32 @@ declare const ImageDesignEditorSchema: z.ZodObject<{
4186
4234
  }, z.core.$strict>>;
4187
4235
  }, z.core.$strict>;
4188
4236
 
4237
+ declare const InfoDesignEditorDefaultsSchema: z.ZodObject<{
4238
+ type: z.ZodLiteral<"INFO">;
4239
+ description: z.ZodOptional<z.ZodString>;
4240
+ button: z.ZodOptional<z.ZodObject<{
4241
+ label: z.ZodOptional<z.ZodString>;
4242
+ link: z.ZodOptional<z.ZodURL>;
4243
+ }, z.core.$strict>>;
4244
+ }, z.core.$strict>;
4245
+ declare const InfoDesignEditorSchema: z.ZodObject<{
4246
+ type: z.ZodLiteral<"INFO">;
4247
+ label: z.ZodString;
4248
+ description: z.ZodString;
4249
+ button: z.ZodOptional<z.ZodObject<{
4250
+ label: z.ZodString;
4251
+ link: z.ZodURL;
4252
+ }, z.core.$strict>>;
4253
+ defaults: z.ZodOptional<z.ZodObject<{
4254
+ type: z.ZodLiteral<"INFO">;
4255
+ description: z.ZodOptional<z.ZodString>;
4256
+ button: z.ZodOptional<z.ZodObject<{
4257
+ label: z.ZodOptional<z.ZodString>;
4258
+ link: z.ZodOptional<z.ZodURL>;
4259
+ }, z.core.$strict>>;
4260
+ }, z.core.$strict>>;
4261
+ }, z.core.$strict>;
4262
+
4189
4263
  declare const SelectboxDesignEditorDefaultsSchema: z.ZodObject<{
4190
4264
  type: z.ZodLiteral<"SELECTBOX">;
4191
4265
  value: z.ZodOptional<z.ZodString>;
@@ -4275,6 +4349,7 @@ type BackgroundDesignEditor = z.infer<typeof BackgroundDesignEditorSchema>;
4275
4349
  type ColorPickerDesignEditor = z.infer<typeof ColorPickerDesignEditorSchema>;
4276
4350
  type LogoDesignEditor = z.infer<typeof LogoDesignEditorSchema>;
4277
4351
  type DividerDesignEditor = z.infer<typeof DividerDesignEditorSchema>;
4352
+ type InfoDesignEditor = z.infer<typeof InfoDesignEditorSchema>;
4278
4353
  type DesignEditor = z.infer<typeof DesignEditorSchema>;
4279
4354
  type DesignSettings = z.infer<typeof DesignSettingsSchema>;
4280
4355
 
@@ -4286,6 +4361,7 @@ type SelectboxDesignEditorDefaults = z.infer<typeof SelectboxDesignEditorDefault
4286
4361
  type ColorPickerDesignEditorDefaults = z.infer<typeof ColorPickerDesignEditorDefaultsSchema>;
4287
4362
  type BackgroundDesignEditorDefaults = z.infer<typeof BackgroundDesignEditorDefaultsSchema>;
4288
4363
  type LogoDesignEditorDefaults = z.infer<typeof LogoDesignEditorDefaultsSchema>;
4364
+ type InfoDesignEditorDefaults = z.infer<typeof InfoDesignEditorDefaultsSchema>;
4289
4365
  type DesignEditorDefaults = z.infer<typeof DesignEditorDefaultsSchema>;
4290
4366
 
4291
4367
  interface TextDesignEditorDefaultsTransformed {
@@ -4705,9 +4781,9 @@ declare const LayoutDesignOverrideSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4705
4781
  }>]>>;
4706
4782
  }, z.core.$strict>>;
4707
4783
  capitalization: z.ZodOptional<z.ZodEnum<{
4784
+ small: "small";
4708
4785
  none: "none";
4709
4786
  all: "all";
4710
- small: "small";
4711
4787
  }>>;
4712
4788
  }, z.core.$strict>>;
4713
4789
  }, z.core.$strict>, z.ZodObject<{
@@ -4716,6 +4792,17 @@ declare const LayoutDesignOverrideSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4716
4792
  defaults: z.ZodOptional<z.ZodObject<{
4717
4793
  type: z.ZodLiteral<"DIVIDER">;
4718
4794
  }, z.core.$strict>>;
4795
+ }, z.core.$strict>, z.ZodObject<{
4796
+ type: z.ZodLiteral<"INFO">;
4797
+ fieldName: z.ZodString;
4798
+ defaults: z.ZodOptional<z.ZodObject<{
4799
+ type: z.ZodLiteral<"INFO">;
4800
+ description: z.ZodOptional<z.ZodString>;
4801
+ button: z.ZodOptional<z.ZodObject<{
4802
+ label: z.ZodOptional<z.ZodString>;
4803
+ link: z.ZodOptional<z.ZodURL>;
4804
+ }, z.core.$strict>>;
4805
+ }, z.core.$strict>>;
4719
4806
  }, z.core.$strict>], "type">;
4720
4807
  declare const LayoutSettingsSchema: z.ZodObject<{
4721
4808
  layoutId: z.ZodString;
@@ -4964,9 +5051,9 @@ declare const LayoutSettingsSchema: z.ZodObject<{
4964
5051
  }>]>>;
4965
5052
  }, z.core.$strict>>;
4966
5053
  capitalization: z.ZodOptional<z.ZodEnum<{
5054
+ small: "small";
4967
5055
  none: "none";
4968
5056
  all: "all";
4969
- small: "small";
4970
5057
  }>>;
4971
5058
  }, z.core.$strict>>;
4972
5059
  }, z.core.$strict>, z.ZodObject<{
@@ -4975,6 +5062,17 @@ declare const LayoutSettingsSchema: z.ZodObject<{
4975
5062
  defaults: z.ZodOptional<z.ZodObject<{
4976
5063
  type: z.ZodLiteral<"DIVIDER">;
4977
5064
  }, z.core.$strict>>;
5065
+ }, z.core.$strict>, z.ZodObject<{
5066
+ type: z.ZodLiteral<"INFO">;
5067
+ fieldName: z.ZodString;
5068
+ defaults: z.ZodOptional<z.ZodObject<{
5069
+ type: z.ZodLiteral<"INFO">;
5070
+ description: z.ZodOptional<z.ZodString>;
5071
+ button: z.ZodOptional<z.ZodObject<{
5072
+ label: z.ZodOptional<z.ZodString>;
5073
+ link: z.ZodOptional<z.ZodURL>;
5074
+ }, z.core.$strict>>;
5075
+ }, z.core.$strict>>;
4978
5076
  }, z.core.$strict>], "type">>;
4979
5077
  }, z.core.$strict>;
4980
5078
 
@@ -5615,9 +5713,9 @@ declare const ManifestSchema: z.ZodObject<{
5615
5713
  }>]>>;
5616
5714
  }, z.core.$strict>>;
5617
5715
  capitalization: z.ZodOptional<z.ZodEnum<{
5716
+ small: "small";
5618
5717
  none: "none";
5619
5718
  all: "all";
5620
- small: "small";
5621
5719
  }>>;
5622
5720
  }, z.core.$strict>>;
5623
5721
  }, z.core.$strict>, z.ZodObject<{
@@ -5626,6 +5724,22 @@ declare const ManifestSchema: z.ZodObject<{
5626
5724
  defaults: z.ZodOptional<z.ZodObject<{
5627
5725
  type: z.ZodLiteral<"DIVIDER">;
5628
5726
  }, z.core.$strict>>;
5727
+ }, z.core.$strict>, z.ZodObject<{
5728
+ type: z.ZodLiteral<"INFO">;
5729
+ label: z.ZodString;
5730
+ description: z.ZodString;
5731
+ button: z.ZodOptional<z.ZodObject<{
5732
+ label: z.ZodString;
5733
+ link: z.ZodURL;
5734
+ }, z.core.$strict>>;
5735
+ defaults: z.ZodOptional<z.ZodObject<{
5736
+ type: z.ZodLiteral<"INFO">;
5737
+ description: z.ZodOptional<z.ZodString>;
5738
+ button: z.ZodOptional<z.ZodObject<{
5739
+ label: z.ZodOptional<z.ZodString>;
5740
+ link: z.ZodOptional<z.ZodURL>;
5741
+ }, z.core.$strict>>;
5742
+ }, z.core.$strict>>;
5629
5743
  }, z.core.$strict>], "type">>;
5630
5744
  layout: z.ZodOptional<z.ZodArray<z.ZodObject<{
5631
5745
  layoutId: z.ZodString;
@@ -5874,9 +5988,9 @@ declare const ManifestSchema: z.ZodObject<{
5874
5988
  }>]>>;
5875
5989
  }, z.core.$strict>>;
5876
5990
  capitalization: z.ZodOptional<z.ZodEnum<{
5991
+ small: "small";
5877
5992
  none: "none";
5878
5993
  all: "all";
5879
- small: "small";
5880
5994
  }>>;
5881
5995
  }, z.core.$strict>>;
5882
5996
  }, z.core.$strict>, z.ZodObject<{
@@ -5885,6 +5999,17 @@ declare const ManifestSchema: z.ZodObject<{
5885
5999
  defaults: z.ZodOptional<z.ZodObject<{
5886
6000
  type: z.ZodLiteral<"DIVIDER">;
5887
6001
  }, z.core.$strict>>;
6002
+ }, z.core.$strict>, z.ZodObject<{
6003
+ type: z.ZodLiteral<"INFO">;
6004
+ fieldName: z.ZodString;
6005
+ defaults: z.ZodOptional<z.ZodObject<{
6006
+ type: z.ZodLiteral<"INFO">;
6007
+ description: z.ZodOptional<z.ZodString>;
6008
+ button: z.ZodOptional<z.ZodObject<{
6009
+ label: z.ZodOptional<z.ZodString>;
6010
+ link: z.ZodOptional<z.ZodURL>;
6011
+ }, z.core.$strict>>;
6012
+ }, z.core.$strict>>;
5888
6013
  }, z.core.$strict>], "type">>;
5889
6014
  }, z.core.$strict>>>;
5890
6015
  showcase: z.ZodArray<z.ZodObject<{
@@ -6309,12 +6434,19 @@ declare const ManifestSchema: z.ZodObject<{
6309
6434
  }>]>>;
6310
6435
  }, z.core.$strict>>;
6311
6436
  capitalization: z.ZodOptional<z.ZodEnum<{
6437
+ small: "small";
6312
6438
  none: "none";
6313
6439
  all: "all";
6314
- small: "small";
6315
6440
  }>>;
6316
6441
  }, z.core.$strict>, z.ZodObject<{
6317
6442
  type: z.ZodLiteral<"DIVIDER">;
6443
+ }, z.core.$strict>, z.ZodObject<{
6444
+ type: z.ZodLiteral<"INFO">;
6445
+ description: z.ZodOptional<z.ZodString>;
6446
+ button: z.ZodOptional<z.ZodObject<{
6447
+ label: z.ZodOptional<z.ZodString>;
6448
+ link: z.ZodOptional<z.ZodURL>;
6449
+ }, z.core.$strict>>;
6318
6450
  }, z.core.$strict>], "type">>;
6319
6451
  layoutId: z.ZodOptional<z.ZodString>;
6320
6452
  }, z.core.$strict>>;
@@ -6783,12 +6915,19 @@ declare const ManifestSchema: z.ZodObject<{
6783
6915
  }>]>>;
6784
6916
  }, z.core.$strict>>;
6785
6917
  capitalization: z.ZodOptional<z.ZodEnum<{
6918
+ small: "small";
6786
6919
  none: "none";
6787
6920
  all: "all";
6788
- small: "small";
6789
6921
  }>>;
6790
6922
  }, z.core.$strict>, z.ZodObject<{
6791
6923
  type: z.ZodLiteral<"DIVIDER">;
6924
+ }, z.core.$strict>, z.ZodObject<{
6925
+ type: z.ZodLiteral<"INFO">;
6926
+ description: z.ZodOptional<z.ZodString>;
6927
+ button: z.ZodOptional<z.ZodObject<{
6928
+ label: z.ZodOptional<z.ZodString>;
6929
+ link: z.ZodOptional<z.ZodURL>;
6930
+ }, z.core.$strict>>;
6792
6931
  }, z.core.$strict>], "type">>>;
6793
6932
  layoutId: z.ZodOptional<z.ZodString>;
6794
6933
  }, z.core.$strict>>;
@@ -7199,12 +7338,19 @@ declare const ManifestSchema: z.ZodObject<{
7199
7338
  }>]>>;
7200
7339
  }, z.core.$strict>>;
7201
7340
  capitalization: z.ZodOptional<z.ZodEnum<{
7341
+ small: "small";
7202
7342
  none: "none";
7203
7343
  all: "all";
7204
- small: "small";
7205
7344
  }>>;
7206
7345
  }, z.core.$strict>, z.ZodObject<{
7207
7346
  type: z.ZodLiteral<"DIVIDER">;
7347
+ }, z.core.$strict>, z.ZodObject<{
7348
+ type: z.ZodLiteral<"INFO">;
7349
+ description: z.ZodOptional<z.ZodString>;
7350
+ button: z.ZodOptional<z.ZodObject<{
7351
+ label: z.ZodOptional<z.ZodString>;
7352
+ link: z.ZodOptional<z.ZodURL>;
7353
+ }, z.core.$strict>>;
7208
7354
  }, z.core.$strict>], "type">>>;
7209
7355
  layoutId: z.ZodOptional<z.ZodString>;
7210
7356
  }, z.core.$strict>>;
@@ -7620,12 +7766,19 @@ declare const ManifestSchema: z.ZodObject<{
7620
7766
  }>]>>;
7621
7767
  }, z.core.$strict>>;
7622
7768
  capitalization: z.ZodOptional<z.ZodEnum<{
7769
+ small: "small";
7623
7770
  none: "none";
7624
7771
  all: "all";
7625
- small: "small";
7626
7772
  }>>;
7627
7773
  }, z.core.$strict>, z.ZodObject<{
7628
7774
  type: z.ZodLiteral<"DIVIDER">;
7775
+ }, z.core.$strict>, z.ZodObject<{
7776
+ type: z.ZodLiteral<"INFO">;
7777
+ description: z.ZodOptional<z.ZodString>;
7778
+ button: z.ZodOptional<z.ZodObject<{
7779
+ label: z.ZodOptional<z.ZodString>;
7780
+ link: z.ZodOptional<z.ZodURL>;
7781
+ }, z.core.$strict>>;
7629
7782
  }, z.core.$strict>], "type">>>;
7630
7783
  layoutId: z.ZodOptional<z.ZodString>;
7631
7784
  }, z.core.$strict>>;
@@ -8259,9 +8412,9 @@ declare const ManifestSchema: z.ZodObject<{
8259
8412
  }>]>>;
8260
8413
  }, z.core.$strict>>;
8261
8414
  capitalization: z.ZodOptional<z.ZodEnum<{
8415
+ small: "small";
8262
8416
  none: "none";
8263
8417
  all: "all";
8264
- small: "small";
8265
8418
  }>>;
8266
8419
  }, z.core.$strict>>;
8267
8420
  }, z.core.$strict>, z.ZodObject<{
@@ -8270,6 +8423,22 @@ declare const ManifestSchema: z.ZodObject<{
8270
8423
  defaults: z.ZodOptional<z.ZodObject<{
8271
8424
  type: z.ZodLiteral<"DIVIDER">;
8272
8425
  }, z.core.$strict>>;
8426
+ }, z.core.$strict>, z.ZodObject<{
8427
+ type: z.ZodLiteral<"INFO">;
8428
+ label: z.ZodString;
8429
+ description: z.ZodString;
8430
+ button: z.ZodOptional<z.ZodObject<{
8431
+ label: z.ZodString;
8432
+ link: z.ZodURL;
8433
+ }, z.core.$strict>>;
8434
+ defaults: z.ZodOptional<z.ZodObject<{
8435
+ type: z.ZodLiteral<"INFO">;
8436
+ description: z.ZodOptional<z.ZodString>;
8437
+ button: z.ZodOptional<z.ZodObject<{
8438
+ label: z.ZodOptional<z.ZodString>;
8439
+ link: z.ZodOptional<z.ZodURL>;
8440
+ }, z.core.$strict>>;
8441
+ }, z.core.$strict>>;
8273
8442
  }, z.core.$strict>], "type">>;
8274
8443
  translationsSettings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
8275
8444
  assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -8711,12 +8880,19 @@ declare const CustomSectionSchema: z.ZodObject<{
8711
8880
  }>]>>;
8712
8881
  }, z.core.$strict>>;
8713
8882
  capitalization: z.ZodOptional<z.ZodEnum<{
8883
+ small: "small";
8714
8884
  none: "none";
8715
8885
  all: "all";
8716
- small: "small";
8717
8886
  }>>;
8718
8887
  }, z.core.$strict>, z.ZodObject<{
8719
8888
  type: z.ZodLiteral<"DIVIDER">;
8889
+ }, z.core.$strict>, z.ZodObject<{
8890
+ type: z.ZodLiteral<"INFO">;
8891
+ description: z.ZodOptional<z.ZodString>;
8892
+ button: z.ZodOptional<z.ZodObject<{
8893
+ label: z.ZodOptional<z.ZodString>;
8894
+ link: z.ZodOptional<z.ZodURL>;
8895
+ }, z.core.$strict>>;
8720
8896
  }, z.core.$strict>], "type">>>;
8721
8897
  layoutId: z.ZodOptional<z.ZodString>;
8722
8898
  }, z.core.$strict>>;
@@ -9131,12 +9307,19 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9131
9307
  }>]>>;
9132
9308
  }, z.core.$strict>>;
9133
9309
  capitalization: z.ZodOptional<z.ZodEnum<{
9310
+ small: "small";
9134
9311
  none: "none";
9135
9312
  all: "all";
9136
- small: "small";
9137
9313
  }>>;
9138
9314
  }, z.core.$strict>, z.ZodObject<{
9139
9315
  type: z.ZodLiteral<"DIVIDER">;
9316
+ }, z.core.$strict>, z.ZodObject<{
9317
+ type: z.ZodLiteral<"INFO">;
9318
+ description: z.ZodOptional<z.ZodString>;
9319
+ button: z.ZodOptional<z.ZodObject<{
9320
+ label: z.ZodOptional<z.ZodString>;
9321
+ link: z.ZodOptional<z.ZodURL>;
9322
+ }, z.core.$strict>>;
9140
9323
  }, z.core.$strict>], "type">>>;
9141
9324
  layoutId: z.ZodOptional<z.ZodString>;
9142
9325
  }, z.core.$strict>>;
@@ -9554,12 +9737,19 @@ declare const TemplatePageSchema: z.ZodObject<{
9554
9737
  }>]>>;
9555
9738
  }, z.core.$strict>>;
9556
9739
  capitalization: z.ZodOptional<z.ZodEnum<{
9740
+ small: "small";
9557
9741
  none: "none";
9558
9742
  all: "all";
9559
- small: "small";
9560
9743
  }>>;
9561
9744
  }, z.core.$strict>, z.ZodObject<{
9562
9745
  type: z.ZodLiteral<"DIVIDER">;
9746
+ }, z.core.$strict>, z.ZodObject<{
9747
+ type: z.ZodLiteral<"INFO">;
9748
+ description: z.ZodOptional<z.ZodString>;
9749
+ button: z.ZodOptional<z.ZodObject<{
9750
+ label: z.ZodOptional<z.ZodString>;
9751
+ link: z.ZodOptional<z.ZodURL>;
9752
+ }, z.core.$strict>>;
9563
9753
  }, z.core.$strict>], "type">>>;
9564
9754
  layoutId: z.ZodOptional<z.ZodString>;
9565
9755
  }, z.core.$strict>>;
@@ -9978,12 +10168,19 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
9978
10168
  }>]>>;
9979
10169
  }, z.core.$strict>>;
9980
10170
  capitalization: z.ZodOptional<z.ZodEnum<{
10171
+ small: "small";
9981
10172
  none: "none";
9982
10173
  all: "all";
9983
- small: "small";
9984
10174
  }>>;
9985
10175
  }, z.core.$strict>, z.ZodObject<{
9986
10176
  type: z.ZodLiteral<"DIVIDER">;
10177
+ }, z.core.$strict>, z.ZodObject<{
10178
+ type: z.ZodLiteral<"INFO">;
10179
+ description: z.ZodOptional<z.ZodString>;
10180
+ button: z.ZodOptional<z.ZodObject<{
10181
+ label: z.ZodOptional<z.ZodString>;
10182
+ link: z.ZodOptional<z.ZodURL>;
10183
+ }, z.core.$strict>>;
9987
10184
  }, z.core.$strict>], "type">>>;
9988
10185
  layoutId: z.ZodOptional<z.ZodString>;
9989
10186
  }, z.core.$strict>>;
@@ -10462,12 +10659,19 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
10462
10659
  }>]>>;
10463
10660
  }, z.core.$strict>>;
10464
10661
  capitalization: z.ZodOptional<z.ZodEnum<{
10662
+ small: "small";
10465
10663
  none: "none";
10466
10664
  all: "all";
10467
- small: "small";
10468
10665
  }>>;
10469
10666
  }, z.core.$strict>, z.ZodObject<{
10470
10667
  type: z.ZodLiteral<"DIVIDER">;
10668
+ }, z.core.$strict>, z.ZodObject<{
10669
+ type: z.ZodLiteral<"INFO">;
10670
+ description: z.ZodOptional<z.ZodString>;
10671
+ button: z.ZodOptional<z.ZodObject<{
10672
+ label: z.ZodOptional<z.ZodString>;
10673
+ link: z.ZodOptional<z.ZodURL>;
10674
+ }, z.core.$strict>>;
10471
10675
  }, z.core.$strict>], "type">>>;
10472
10676
  layoutId: z.ZodOptional<z.ZodString>;
10473
10677
  }, z.core.$strict>>;
@@ -10935,12 +11139,19 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
10935
11139
  }>]>>;
10936
11140
  }, z.core.$strict>>;
10937
11141
  capitalization: z.ZodOptional<z.ZodEnum<{
11142
+ small: "small";
10938
11143
  none: "none";
10939
11144
  all: "all";
10940
- small: "small";
10941
11145
  }>>;
10942
11146
  }, z.core.$strict>, z.ZodObject<{
10943
11147
  type: z.ZodLiteral<"DIVIDER">;
11148
+ }, z.core.$strict>, z.ZodObject<{
11149
+ type: z.ZodLiteral<"INFO">;
11150
+ description: z.ZodOptional<z.ZodString>;
11151
+ button: z.ZodOptional<z.ZodObject<{
11152
+ label: z.ZodOptional<z.ZodString>;
11153
+ link: z.ZodOptional<z.ZodURL>;
11154
+ }, z.core.$strict>>;
10944
11155
  }, z.core.$strict>], "type">>>;
10945
11156
  layoutId: z.ZodOptional<z.ZodString>;
10946
11157
  }, z.core.$strict>>;
@@ -11351,12 +11562,19 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
11351
11562
  }>]>>;
11352
11563
  }, z.core.$strict>>;
11353
11564
  capitalization: z.ZodOptional<z.ZodEnum<{
11565
+ small: "small";
11354
11566
  none: "none";
11355
11567
  all: "all";
11356
- small: "small";
11357
11568
  }>>;
11358
11569
  }, z.core.$strict>, z.ZodObject<{
11359
11570
  type: z.ZodLiteral<"DIVIDER">;
11571
+ }, z.core.$strict>, z.ZodObject<{
11572
+ type: z.ZodLiteral<"INFO">;
11573
+ description: z.ZodOptional<z.ZodString>;
11574
+ button: z.ZodOptional<z.ZodObject<{
11575
+ label: z.ZodOptional<z.ZodString>;
11576
+ link: z.ZodOptional<z.ZodURL>;
11577
+ }, z.core.$strict>>;
11360
11578
  }, z.core.$strict>], "type">>>;
11361
11579
  layoutId: z.ZodOptional<z.ZodString>;
11362
11580
  }, z.core.$strict>>;
@@ -11831,12 +12049,19 @@ declare const TemplateSchema: z.ZodObject<{
11831
12049
  }>]>>;
11832
12050
  }, z.core.$strict>>;
11833
12051
  capitalization: z.ZodOptional<z.ZodEnum<{
12052
+ small: "small";
11834
12053
  none: "none";
11835
12054
  all: "all";
11836
- small: "small";
11837
12055
  }>>;
11838
12056
  }, z.core.$strict>, z.ZodObject<{
11839
12057
  type: z.ZodLiteral<"DIVIDER">;
12058
+ }, z.core.$strict>, z.ZodObject<{
12059
+ type: z.ZodLiteral<"INFO">;
12060
+ description: z.ZodOptional<z.ZodString>;
12061
+ button: z.ZodOptional<z.ZodObject<{
12062
+ label: z.ZodOptional<z.ZodString>;
12063
+ link: z.ZodOptional<z.ZodURL>;
12064
+ }, z.core.$strict>>;
11840
12065
  }, z.core.$strict>], "type">>>;
11841
12066
  layoutId: z.ZodOptional<z.ZodString>;
11842
12067
  }, z.core.$strict>>;
@@ -12247,12 +12472,19 @@ declare const TemplateSchema: z.ZodObject<{
12247
12472
  }>]>>;
12248
12473
  }, z.core.$strict>>;
12249
12474
  capitalization: z.ZodOptional<z.ZodEnum<{
12475
+ small: "small";
12250
12476
  none: "none";
12251
12477
  all: "all";
12252
- small: "small";
12253
12478
  }>>;
12254
12479
  }, z.core.$strict>, z.ZodObject<{
12255
12480
  type: z.ZodLiteral<"DIVIDER">;
12481
+ }, z.core.$strict>, z.ZodObject<{
12482
+ type: z.ZodLiteral<"INFO">;
12483
+ description: z.ZodOptional<z.ZodString>;
12484
+ button: z.ZodOptional<z.ZodObject<{
12485
+ label: z.ZodOptional<z.ZodString>;
12486
+ link: z.ZodOptional<z.ZodURL>;
12487
+ }, z.core.$strict>>;
12256
12488
  }, z.core.$strict>], "type">>>;
12257
12489
  layoutId: z.ZodOptional<z.ZodString>;
12258
12490
  }, z.core.$strict>>;
@@ -12668,12 +12900,19 @@ declare const TemplateSchema: z.ZodObject<{
12668
12900
  }>]>>;
12669
12901
  }, z.core.$strict>>;
12670
12902
  capitalization: z.ZodOptional<z.ZodEnum<{
12903
+ small: "small";
12671
12904
  none: "none";
12672
12905
  all: "all";
12673
- small: "small";
12674
12906
  }>>;
12675
12907
  }, z.core.$strict>, z.ZodObject<{
12676
12908
  type: z.ZodLiteral<"DIVIDER">;
12909
+ }, z.core.$strict>, z.ZodObject<{
12910
+ type: z.ZodLiteral<"INFO">;
12911
+ description: z.ZodOptional<z.ZodString>;
12912
+ button: z.ZodOptional<z.ZodObject<{
12913
+ label: z.ZodOptional<z.ZodString>;
12914
+ link: z.ZodOptional<z.ZodURL>;
12915
+ }, z.core.$strict>>;
12677
12916
  }, z.core.$strict>], "type">>>;
12678
12917
  layoutId: z.ZodOptional<z.ZodString>;
12679
12918
  }, z.core.$strict>>;
@@ -14012,6 +14251,10 @@ declare const design: {
14012
14251
  * Factory function to create a divider design editor configuration.
14013
14252
  */
14014
14253
  readonly divider: (config: DesignEditorConfig<DividerDesignEditor>) => DividerDesignEditor;
14254
+ /**
14255
+ * Factory function to create an info design editor configuration.
14256
+ */
14257
+ readonly info: (config: DesignEditorConfig<InfoDesignEditor>) => InfoDesignEditor;
14015
14258
  /**
14016
14259
  * Factory functions for creating editor default configurations directly.
14017
14260
  */
@@ -14064,6 +14307,12 @@ declare const design: {
14064
14307
  readonly logo: (config: Omit<LogoDesignEditorDefaults, "type"> & {
14065
14308
  type?: "LOGO";
14066
14309
  }) => LogoDesignEditorDefaults;
14310
+ /**
14311
+ * Factory function to create an info design editor default configuration.
14312
+ */
14313
+ readonly info: (config: Omit<InfoDesignEditorDefaults, "type"> & {
14314
+ type?: "INFO";
14315
+ }) => InfoDesignEditorDefaults;
14067
14316
  };
14068
14317
  };
14069
14318
 
@@ -14083,6 +14332,7 @@ type BackgroundLayoutDesignOverride = LayoutDesignOverrideByType<'BACKGROUND'>;
14083
14332
  type ColorPickerLayoutDesignOverride = LayoutDesignOverrideByType<'COLOR_PICKER'>;
14084
14333
  type LogoLayoutDesignOverride = LayoutDesignOverrideByType<'LOGO'>;
14085
14334
  type DividerLayoutDesignOverride = LayoutDesignOverrideByType<'DIVIDER'>;
14335
+ type InfoLayoutDesignOverride = LayoutDesignOverrideByType<'INFO'>;
14086
14336
  /**
14087
14337
  * Factory functions for creating layout settings and design override configurations.
14088
14338
  *
@@ -14161,6 +14411,10 @@ declare const layout: {
14161
14411
  * Factory function to create a divider layout design override configuration.
14162
14412
  */
14163
14413
  readonly divider: (config: LayoutDesignOverrideConfig<DividerLayoutDesignOverride>) => DividerLayoutDesignOverride;
14414
+ /**
14415
+ * Factory function to create an info layout design override configuration.
14416
+ */
14417
+ readonly info: (config: LayoutDesignOverrideConfig<InfoLayoutDesignOverride>) => InfoLayoutDesignOverride;
14164
14418
  };
14165
14419
  };
14166
14420
 
@@ -14438,4 +14692,4 @@ declare const translation: {
14438
14692
  };
14439
14693
 
14440
14694
  export { ActionLinkTypeEnum, BackgroundStyleEnum, ButtonAppearanceEnum, ButtonShapeEnum, ButtonSizeEnum, ButtonTypeEnum, CatalogLayoutSlot, CategoryLayoutSlot, ConfigTypeEnum, DesignEditorType, EditorTypes, ImageSet, InstantsiteJsEvent, LogoTypeEnum, OverlayTypeEnum, PluginTypeEnum, ProductLayoutSlot, SectionTypeEnum, TemplateCategoriesList, ValidationTypeEnum, content, createVueClientApp, createVueServerApp, design, layout, section, showcase, template, translation, useBackgroundElementDesign, useButtonElementContent, useButtonElementDesign, useCategorySelectorElementContent, useDeckElementContent, useImageElementContent, useImageElementDesign, useInputboxElementContent, useInstantsiteJsApi, useLayoutElementDesign, useLogoElementContent, useLogoElementDesign, useMenuElementContent, useNavigationMenuElementContent, useProductSelectorElementContent, useSelectboxElementContent, useSelectboxElementDesign, useTextElementDesign, useTextareaElementContent, useTextareaElementDesign, useToggleElementContent, useToggleElementDesign, useTranslation, useVueBaseProps };
14441
- export type { ActionLink, AppBaseContext, AppBaseData, AppBaseState, Background, BackgroundDesignData$1 as BackgroundDesignData, BackgroundDesignEditor, BackgroundDesignEditorDefaults, BackgroundDesignEditorDefaultsTransformed, BackgroundType, ButtonAppearance, ButtonContentData, ButtonContentEditor, ButtonContentEditorDefaults, ButtonDesignData, ButtonDesignEditor, ButtonDesignEditorDefaults, ButtonDesignEditorDefaultsTransformed, ButtonSize, ButtonStyle, CapitalizationType, Card, CategorySelectorContent, CategorySelectorContentEditor, CategorySelectorContentEditorDefaults, CategorySelectorData, CollectionDescriptor, Color$1 as Color, ColorPickerDesignEditor, ColorPickerDesignEditorDefaults, ColorPickerDesignEditorDefaultsTransformed, ContentEditor, ContentEditorDefaults, ContentSettings, CustomSection, Deck, DeckContent, DeckContentEditor, DefaultSection, DesignEditor, DesignEditorDefaults, DesignEditorDefaultsTransformed, DesignSettings, DividerContentEditor, DividerContentEditorDefaults, DividerDesignEditor, Font, Frame, GlobalColorsString, GlobalDesign$1 as GlobalDesign, GlobalFontsString, GlobalTextSizeString, GradientColor, HSLColor, ImageBorderInfoData, ImageContent, ImageContentData, ImageContentEditor, ImageContentEditorDefaults, ImageDesignData$1 as ImageDesignData, ImageDesignEditor, ImageDesignEditorDefaults, ImageDesignEditorDefaultsTransformed, ImageInfoData, InfoContentEditor, InfoContentEditorDefaults, InputBoxContent, InputboxContentEditor, InputboxContentEditorDefaults, InstantsiteJSAPI$1 as InstantsiteJSAPI, InstantsiteTilePromise$1 as InstantsiteTilePromise, LayoutDesignData, LayoutDesignOverride, LayoutSettings, LogoContent, LogoContentData, LogoContentEditor, LogoContentEditorDefaults, LogoDesignData$1 as LogoDesignData, LogoDesignEditor, LogoDesignEditorDefaults, LogoDesignEditorDefaultsTransformed, LogoType, MandatoryContentSettings, MandatoryDesignSettings, Manifest, MenuContent, MenuContentData, MenuContentEditor, MenuItem, NavigationMenuContentEditor, Overlay, OverlayType, ProductSelectorContent, ProductSelectorContentEditor, ProductSelectorContentEditorDefaults, ProductSelectorData, RGBAColor, Section, SelectBoxContent, SelectboxContentEditor, SelectboxContentEditorDefaults, SelectboxContentOption, SelectboxDesignData, SelectboxDesignEditor, SelectboxDesignEditorDefaults, Showcase, ShowcaseContentEditorsDefaults, ShowcaseDeckContentEditorDefaults, ShowcaseImageContentEditorDefaults, ShowcaseInputboxContentEditorDefaults, ShowcaseLogoContentEditorDefaults, ShowcaseMenuContentEditorDefaults, ShowcaseNavigationMenuContentEditorDefaults, ShowcaseOverride, ShowcaseTextareaContentEditorDefaults, SolidColor, StorePageConfiguration, StorefrontSection, StorefrontSectionId, Template, TemplateConfiguration, TemplateConfigurationSection, TemplateCustomSection, TemplateDefaultSection, TemplateMetadata, TemplatePage, TemplatePageNamed, TemplateStorefrontSection, TextAreaContent, TextDesignData$1 as TextDesignData, TextDesignEditor, TextDesignEditorDefaults, TextDesignEditorDefaultsTransformed, TextSize, TextareaContentEditor, TextareaContentEditorDefaults, TextareaDesignData$1 as TextareaDesignData, ToggleContent, ToggleContentData, ToggleContentEditor, ToggleContentEditorDefaults, ToggleDesignData, ToggleDesignEditor, ToggleDesignEditorDefaults, TransformedFrame, TranslationSettings, VuegaPageId };
14695
+ export type { ActionLink, AppBaseContext, AppBaseData, AppBaseState, Background, BackgroundDesignData$1 as BackgroundDesignData, BackgroundDesignEditor, BackgroundDesignEditorDefaults, BackgroundDesignEditorDefaultsTransformed, BackgroundType, ButtonAppearance, ButtonContentData, ButtonContentEditor, ButtonContentEditorDefaults, ButtonDesignData, ButtonDesignEditor, ButtonDesignEditorDefaults, ButtonDesignEditorDefaultsTransformed, ButtonSize, ButtonStyle, CapitalizationType, Card, CategorySelectorContent, CategorySelectorContentEditor, CategorySelectorContentEditorDefaults, CategorySelectorData, CollectionDescriptor, Color$1 as Color, ColorPickerDesignEditor, ColorPickerDesignEditorDefaults, ColorPickerDesignEditorDefaultsTransformed, ContentEditor, ContentEditorDefaults, ContentSettings, CustomSection, Deck, DeckContent, DeckContentEditor, DefaultSection, DesignEditor, DesignEditorDefaults, DesignEditorDefaultsTransformed, DesignSettings, DividerContentEditor, DividerContentEditorDefaults, DividerDesignEditor, Font, Frame, GlobalColorsString, GlobalDesign$1 as GlobalDesign, GlobalFontsString, GlobalTextSizeString, GradientColor, HSLColor, ImageBorderInfoData, ImageContent, ImageContentData, ImageContentEditor, ImageContentEditorDefaults, ImageDesignData$1 as ImageDesignData, ImageDesignEditor, ImageDesignEditorDefaults, ImageDesignEditorDefaultsTransformed, ImageInfoData, InfoContentEditor, InfoContentEditorDefaults, InfoDesignEditor, InfoDesignEditorDefaults, InputBoxContent, InputboxContentEditor, InputboxContentEditorDefaults, InstantsiteJSAPI$1 as InstantsiteJSAPI, InstantsiteTilePromise$1 as InstantsiteTilePromise, LayoutDesignData, LayoutDesignOverride, LayoutSettings, LogoContent, LogoContentData, LogoContentEditor, LogoContentEditorDefaults, LogoDesignData$1 as LogoDesignData, LogoDesignEditor, LogoDesignEditorDefaults, LogoDesignEditorDefaultsTransformed, LogoType, MandatoryContentSettings, MandatoryDesignSettings, Manifest, MenuContent, MenuContentData, MenuContentEditor, MenuItem, NavigationMenuContentEditor, Overlay, OverlayType, ProductSelectorContent, ProductSelectorContentEditor, ProductSelectorContentEditorDefaults, ProductSelectorData, RGBAColor, Section, SelectBoxContent, SelectboxContentEditor, SelectboxContentEditorDefaults, SelectboxContentOption, SelectboxDesignData, SelectboxDesignEditor, SelectboxDesignEditorDefaults, Showcase, ShowcaseContentEditorsDefaults, ShowcaseDeckContentEditorDefaults, ShowcaseImageContentEditorDefaults, ShowcaseInputboxContentEditorDefaults, ShowcaseLogoContentEditorDefaults, ShowcaseMenuContentEditorDefaults, ShowcaseNavigationMenuContentEditorDefaults, ShowcaseOverride, ShowcaseTextareaContentEditorDefaults, SolidColor, StorePageConfiguration, StorefrontSection, StorefrontSectionId, Template, TemplateConfiguration, TemplateConfigurationSection, TemplateCustomSection, TemplateDefaultSection, TemplateMetadata, TemplatePage, TemplatePageNamed, TemplateStorefrontSection, TextAreaContent, TextDesignData$1 as TextDesignData, TextDesignEditor, TextDesignEditorDefaults, TextDesignEditorDefaultsTransformed, TextSize, TextareaContentEditor, TextareaContentEditorDefaults, TextareaDesignData$1 as TextareaDesignData, ToggleContent, ToggleContentData, ToggleContentEditor, ToggleContentEditorDefaults, ToggleDesignData, ToggleDesignEditor, ToggleDesignEditorDefaults, TransformedFrame, TranslationSettings, VuegaPageId };