@superbright/indexeddb-orm 1.0.59 → 1.0.61

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.
@@ -713,9 +713,9 @@ export declare const FloorplanStylesSchema: z.ZodObject<{
713
713
  } | undefined;
714
714
  } | undefined;
715
715
  }>>;
716
- status: z.ZodOptional<z.ZodEnum<["UN_RENDERED", "RENDERING", "RENDERED", "FAILED"]>>;
716
+ status: z.ZodOptional<z.ZodEnum<["UN_RENDERED", "IN_QUEUE", "RENDERING", "RENDERED", "FAILED"]>>;
717
717
  }, "strip", z.ZodTypeAny, {
718
- status?: "UN_RENDERED" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
718
+ status?: "UN_RENDERED" | "IN_QUEUE" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
719
719
  id?: number | undefined;
720
720
  style_id?: number | undefined;
721
721
  style?: {
@@ -735,7 +735,7 @@ export declare const FloorplanStylesSchema: z.ZodObject<{
735
735
  } | undefined;
736
736
  floor_plan_id?: number | undefined;
737
737
  }, {
738
- status?: "UN_RENDERED" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
738
+ status?: "UN_RENDERED" | "IN_QUEUE" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
739
739
  id?: number | undefined;
740
740
  style_id?: number | undefined;
741
741
  style?: {
@@ -909,9 +909,9 @@ export declare const FloorPlanSchema: z.ZodObject<{
909
909
  } | undefined;
910
910
  } | undefined;
911
911
  }>>;
912
- status: z.ZodOptional<z.ZodEnum<["UN_RENDERED", "RENDERING", "RENDERED", "FAILED"]>>;
912
+ status: z.ZodOptional<z.ZodEnum<["UN_RENDERED", "IN_QUEUE", "RENDERING", "RENDERED", "FAILED"]>>;
913
913
  }, "strip", z.ZodTypeAny, {
914
- status?: "UN_RENDERED" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
914
+ status?: "UN_RENDERED" | "IN_QUEUE" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
915
915
  id?: number | undefined;
916
916
  style_id?: number | undefined;
917
917
  style?: {
@@ -931,7 +931,7 @@ export declare const FloorPlanSchema: z.ZodObject<{
931
931
  } | undefined;
932
932
  floor_plan_id?: number | undefined;
933
933
  }, {
934
- status?: "UN_RENDERED" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
934
+ status?: "UN_RENDERED" | "IN_QUEUE" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
935
935
  id?: number | undefined;
936
936
  style_id?: number | undefined;
937
937
  style?: {
@@ -956,7 +956,7 @@ export declare const FloorPlanSchema: z.ZodObject<{
956
956
  id?: number | undefined;
957
957
  description?: string | undefined;
958
958
  styles?: {
959
- status?: "UN_RENDERED" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
959
+ status?: "UN_RENDERED" | "IN_QUEUE" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
960
960
  id?: number | undefined;
961
961
  style_id?: number | undefined;
962
962
  style?: {
@@ -1007,7 +1007,7 @@ export declare const FloorPlanSchema: z.ZodObject<{
1007
1007
  id?: number | undefined;
1008
1008
  description?: string | undefined;
1009
1009
  styles?: {
1010
- status?: "UN_RENDERED" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
1010
+ status?: "UN_RENDERED" | "IN_QUEUE" | "RENDERING" | "RENDERED" | "FAILED" | undefined;
1011
1011
  id?: number | undefined;
1012
1012
  style_id?: number | undefined;
1013
1013
  style?: {
@@ -4522,12 +4522,12 @@ export declare const FurnitureSchema: z.ZodObject<{
4522
4522
  id: z.ZodOptional<z.ZodNumber>;
4523
4523
  name: z.ZodOptional<z.ZodString>;
4524
4524
  category: z.ZodOptional<z.ZodString>;
4525
- width: z.ZodOptional<z.ZodString>;
4526
- depth: z.ZodOptional<z.ZodString>;
4527
- height: z.ZodOptional<z.ZodString>;
4528
- availability: z.ZodOptional<z.ZodEnum<["IN_STOCK", "OUT_OF_STOCK"]>>;
4525
+ width: z.ZodOptional<z.ZodNumber>;
4526
+ depth: z.ZodOptional<z.ZodNumber>;
4527
+ height: z.ZodOptional<z.ZodNumber>;
4528
+ availability: z.ZodOptional<z.ZodEnum<["IN_STOCK", "OUT_OF_STOCK", "SOLD_OUT", "WAIT_LIST"]>>;
4529
4529
  price: z.ZodOptional<z.ZodString>;
4530
- currency: z.ZodOptional<z.ZodEnum<["USD", "EUR"]>>;
4530
+ currency: z.ZodOptional<z.ZodEnum<["USD", "EUR", "GBP"]>>;
4531
4531
  brand_name: z.ZodOptional<z.ZodString>;
4532
4532
  store_name: z.ZodOptional<z.ZodString>;
4533
4533
  media: z.ZodOptional<z.ZodObject<{
@@ -4649,12 +4649,12 @@ export declare const FurnitureSchema: z.ZodObject<{
4649
4649
  } | undefined;
4650
4650
  } | undefined;
4651
4651
  category?: string | undefined;
4652
- width?: string | undefined;
4653
- depth?: string | undefined;
4654
- height?: string | undefined;
4655
- availability?: "IN_STOCK" | "OUT_OF_STOCK" | undefined;
4652
+ width?: number | undefined;
4653
+ depth?: number | undefined;
4654
+ height?: number | undefined;
4655
+ availability?: "IN_STOCK" | "SOLD_OUT" | "WAIT_LIST" | "OUT_OF_STOCK" | undefined;
4656
4656
  price?: string | undefined;
4657
- currency?: "USD" | "EUR" | undefined;
4657
+ currency?: "USD" | "GBP" | "EUR" | undefined;
4658
4658
  brand_name?: string | undefined;
4659
4659
  store_name?: string | undefined;
4660
4660
  styles?: {
@@ -4686,12 +4686,12 @@ export declare const FurnitureSchema: z.ZodObject<{
4686
4686
  } | undefined;
4687
4687
  } | undefined;
4688
4688
  category?: string | undefined;
4689
- width?: string | undefined;
4690
- depth?: string | undefined;
4691
- height?: string | undefined;
4692
- availability?: "IN_STOCK" | "OUT_OF_STOCK" | undefined;
4689
+ width?: number | undefined;
4690
+ depth?: number | undefined;
4691
+ height?: number | undefined;
4692
+ availability?: "IN_STOCK" | "SOLD_OUT" | "WAIT_LIST" | "OUT_OF_STOCK" | undefined;
4693
4693
  price?: string | undefined;
4694
- currency?: "USD" | "EUR" | undefined;
4694
+ currency?: "USD" | "GBP" | "EUR" | undefined;
4695
4695
  brand_name?: string | undefined;
4696
4696
  store_name?: string | undefined;
4697
4697
  styles?: {
@@ -4720,12 +4720,12 @@ export declare const FurnitureInRoomsSchema: z.ZodObject<{
4720
4720
  id: z.ZodOptional<z.ZodNumber>;
4721
4721
  name: z.ZodOptional<z.ZodString>;
4722
4722
  category: z.ZodOptional<z.ZodString>;
4723
- width: z.ZodOptional<z.ZodString>;
4724
- depth: z.ZodOptional<z.ZodString>;
4725
- height: z.ZodOptional<z.ZodString>;
4726
- availability: z.ZodOptional<z.ZodEnum<["IN_STOCK", "OUT_OF_STOCK"]>>;
4723
+ width: z.ZodOptional<z.ZodNumber>;
4724
+ depth: z.ZodOptional<z.ZodNumber>;
4725
+ height: z.ZodOptional<z.ZodNumber>;
4726
+ availability: z.ZodOptional<z.ZodEnum<["IN_STOCK", "OUT_OF_STOCK", "SOLD_OUT", "WAIT_LIST"]>>;
4727
4727
  price: z.ZodOptional<z.ZodString>;
4728
- currency: z.ZodOptional<z.ZodEnum<["USD", "EUR"]>>;
4728
+ currency: z.ZodOptional<z.ZodEnum<["USD", "EUR", "GBP"]>>;
4729
4729
  brand_name: z.ZodOptional<z.ZodString>;
4730
4730
  store_name: z.ZodOptional<z.ZodString>;
4731
4731
  media: z.ZodOptional<z.ZodObject<{
@@ -4847,12 +4847,12 @@ export declare const FurnitureInRoomsSchema: z.ZodObject<{
4847
4847
  } | undefined;
4848
4848
  } | undefined;
4849
4849
  category?: string | undefined;
4850
- width?: string | undefined;
4851
- depth?: string | undefined;
4852
- height?: string | undefined;
4853
- availability?: "IN_STOCK" | "OUT_OF_STOCK" | undefined;
4850
+ width?: number | undefined;
4851
+ depth?: number | undefined;
4852
+ height?: number | undefined;
4853
+ availability?: "IN_STOCK" | "SOLD_OUT" | "WAIT_LIST" | "OUT_OF_STOCK" | undefined;
4854
4854
  price?: string | undefined;
4855
- currency?: "USD" | "EUR" | undefined;
4855
+ currency?: "USD" | "GBP" | "EUR" | undefined;
4856
4856
  brand_name?: string | undefined;
4857
4857
  store_name?: string | undefined;
4858
4858
  styles?: {
@@ -4884,12 +4884,12 @@ export declare const FurnitureInRoomsSchema: z.ZodObject<{
4884
4884
  } | undefined;
4885
4885
  } | undefined;
4886
4886
  category?: string | undefined;
4887
- width?: string | undefined;
4888
- depth?: string | undefined;
4889
- height?: string | undefined;
4890
- availability?: "IN_STOCK" | "OUT_OF_STOCK" | undefined;
4887
+ width?: number | undefined;
4888
+ depth?: number | undefined;
4889
+ height?: number | undefined;
4890
+ availability?: "IN_STOCK" | "SOLD_OUT" | "WAIT_LIST" | "OUT_OF_STOCK" | undefined;
4891
4891
  price?: string | undefined;
4892
- currency?: "USD" | "EUR" | undefined;
4892
+ currency?: "USD" | "GBP" | "EUR" | undefined;
4893
4893
  brand_name?: string | undefined;
4894
4894
  store_name?: string | undefined;
4895
4895
  styles?: {
@@ -5013,12 +5013,12 @@ export declare const FurnitureInRoomsSchema: z.ZodObject<{
5013
5013
  } | undefined;
5014
5014
  } | undefined;
5015
5015
  category?: string | undefined;
5016
- width?: string | undefined;
5017
- depth?: string | undefined;
5018
- height?: string | undefined;
5019
- availability?: "IN_STOCK" | "OUT_OF_STOCK" | undefined;
5016
+ width?: number | undefined;
5017
+ depth?: number | undefined;
5018
+ height?: number | undefined;
5019
+ availability?: "IN_STOCK" | "SOLD_OUT" | "WAIT_LIST" | "OUT_OF_STOCK" | undefined;
5020
5020
  price?: string | undefined;
5021
- currency?: "USD" | "EUR" | undefined;
5021
+ currency?: "USD" | "GBP" | "EUR" | undefined;
5022
5022
  brand_name?: string | undefined;
5023
5023
  store_name?: string | undefined;
5024
5024
  styles?: {
@@ -5072,12 +5072,12 @@ export declare const FurnitureInRoomsSchema: z.ZodObject<{
5072
5072
  } | undefined;
5073
5073
  } | undefined;
5074
5074
  category?: string | undefined;
5075
- width?: string | undefined;
5076
- depth?: string | undefined;
5077
- height?: string | undefined;
5078
- availability?: "IN_STOCK" | "OUT_OF_STOCK" | undefined;
5075
+ width?: number | undefined;
5076
+ depth?: number | undefined;
5077
+ height?: number | undefined;
5078
+ availability?: "IN_STOCK" | "SOLD_OUT" | "WAIT_LIST" | "OUT_OF_STOCK" | undefined;
5079
5079
  price?: string | undefined;
5080
- currency?: "USD" | "EUR" | undefined;
5080
+ currency?: "USD" | "GBP" | "EUR" | undefined;
5081
5081
  brand_name?: string | undefined;
5082
5082
  store_name?: string | undefined;
5083
5083
  styles?: {
@@ -5430,6 +5430,349 @@ export declare const ExternalServiceConfigSchema: z.ZodObject<{
5430
5430
  }[] | undefined;
5431
5431
  }>;
5432
5432
  export type ExternalServiceConfig = z.infer<typeof ExternalServiceConfigSchema>;
5433
+ export declare const ThemeConfigSchema: z.ZodObject<{
5434
+ heading_size: z.ZodNumber;
5435
+ subheading_size: z.ZodNumber;
5436
+ body_size: z.ZodNumber;
5437
+ small_body_size: z.ZodNumber;
5438
+ color_bg: z.ZodString;
5439
+ color_text: z.ZodString;
5440
+ color_text_muted: z.ZodString;
5441
+ color_primary_btn_bg: z.ZodString;
5442
+ color_primary_btn_text: z.ZodString;
5443
+ color_secondary_border: z.ZodString;
5444
+ color_link: z.ZodString;
5445
+ color_card_text: z.ZodString;
5446
+ radius_button: z.ZodNumber;
5447
+ radius_card: z.ZodNumber;
5448
+ }, "strip", z.ZodTypeAny, {
5449
+ heading_size: number;
5450
+ subheading_size: number;
5451
+ body_size: number;
5452
+ small_body_size: number;
5453
+ color_bg: string;
5454
+ color_text: string;
5455
+ color_text_muted: string;
5456
+ color_primary_btn_bg: string;
5457
+ color_primary_btn_text: string;
5458
+ color_secondary_border: string;
5459
+ color_link: string;
5460
+ color_card_text: string;
5461
+ radius_button: number;
5462
+ radius_card: number;
5463
+ }, {
5464
+ heading_size: number;
5465
+ subheading_size: number;
5466
+ body_size: number;
5467
+ small_body_size: number;
5468
+ color_bg: string;
5469
+ color_text: string;
5470
+ color_text_muted: string;
5471
+ color_primary_btn_bg: string;
5472
+ color_primary_btn_text: string;
5473
+ color_secondary_border: string;
5474
+ color_link: string;
5475
+ color_card_text: string;
5476
+ radius_button: number;
5477
+ radius_card: number;
5478
+ }>;
5479
+ export type ThemeConfig = z.infer<typeof ThemeConfigSchema>;
5480
+ export declare const ThemeFontRoleSchema: z.ZodEnum<["BODY", "HEADING"]>;
5481
+ export type ThemeFontRole = z.infer<typeof ThemeFontRoleSchema>;
5482
+ export declare const FontStyleSchema: z.ZodEnum<["NORMAL", "ITALIC"]>;
5483
+ export type FontStyle = z.infer<typeof FontStyleSchema>;
5484
+ export declare const FontFormatSchema: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
5485
+ export type FontFormat = z.infer<typeof FontFormatSchema>;
5486
+ export declare const UserFontSchema: z.ZodObject<{
5487
+ id: z.ZodNumber;
5488
+ family: z.ZodString;
5489
+ weight: z.ZodNumber;
5490
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
5491
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
5492
+ is_archived: z.ZodBoolean;
5493
+ asset_key: z.ZodString;
5494
+ url: z.ZodString;
5495
+ created_at: z.ZodString;
5496
+ updated_at: z.ZodString;
5497
+ }, "strip", z.ZodTypeAny, {
5498
+ id: number;
5499
+ url: string;
5500
+ created_at: string;
5501
+ updated_at: string;
5502
+ style: "NORMAL" | "ITALIC";
5503
+ family: string;
5504
+ weight: number;
5505
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5506
+ is_archived: boolean;
5507
+ asset_key: string;
5508
+ }, {
5509
+ id: number;
5510
+ url: string;
5511
+ created_at: string;
5512
+ updated_at: string;
5513
+ style: "NORMAL" | "ITALIC";
5514
+ family: string;
5515
+ weight: number;
5516
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5517
+ is_archived: boolean;
5518
+ asset_key: string;
5519
+ }>;
5520
+ export type UserFont = z.infer<typeof UserFontSchema>;
5521
+ export declare const ThemeFontRefSchema: z.ZodObject<{
5522
+ font_id: z.ZodNumber;
5523
+ role: z.ZodEnum<["BODY", "HEADING"]>;
5524
+ font: z.ZodObject<{
5525
+ id: z.ZodNumber;
5526
+ family: z.ZodString;
5527
+ weight: z.ZodNumber;
5528
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
5529
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
5530
+ is_archived: z.ZodBoolean;
5531
+ asset_key: z.ZodString;
5532
+ url: z.ZodString;
5533
+ created_at: z.ZodString;
5534
+ updated_at: z.ZodString;
5535
+ }, "strip", z.ZodTypeAny, {
5536
+ id: number;
5537
+ url: string;
5538
+ created_at: string;
5539
+ updated_at: string;
5540
+ style: "NORMAL" | "ITALIC";
5541
+ family: string;
5542
+ weight: number;
5543
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5544
+ is_archived: boolean;
5545
+ asset_key: string;
5546
+ }, {
5547
+ id: number;
5548
+ url: string;
5549
+ created_at: string;
5550
+ updated_at: string;
5551
+ style: "NORMAL" | "ITALIC";
5552
+ family: string;
5553
+ weight: number;
5554
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5555
+ is_archived: boolean;
5556
+ asset_key: string;
5557
+ }>;
5558
+ }, "strip", z.ZodTypeAny, {
5559
+ role: "BODY" | "HEADING";
5560
+ font_id: number;
5561
+ font: {
5562
+ id: number;
5563
+ url: string;
5564
+ created_at: string;
5565
+ updated_at: string;
5566
+ style: "NORMAL" | "ITALIC";
5567
+ family: string;
5568
+ weight: number;
5569
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5570
+ is_archived: boolean;
5571
+ asset_key: string;
5572
+ };
5573
+ }, {
5574
+ role: "BODY" | "HEADING";
5575
+ font_id: number;
5576
+ font: {
5577
+ id: number;
5578
+ url: string;
5579
+ created_at: string;
5580
+ updated_at: string;
5581
+ style: "NORMAL" | "ITALIC";
5582
+ family: string;
5583
+ weight: number;
5584
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5585
+ is_archived: boolean;
5586
+ asset_key: string;
5587
+ };
5588
+ }>;
5589
+ export type ThemeFontRef = z.infer<typeof ThemeFontRefSchema>;
5590
+ export declare const EmbedThemeSchema: z.ZodObject<{
5591
+ config: z.ZodObject<{
5592
+ heading_size: z.ZodNumber;
5593
+ subheading_size: z.ZodNumber;
5594
+ body_size: z.ZodNumber;
5595
+ small_body_size: z.ZodNumber;
5596
+ color_bg: z.ZodString;
5597
+ color_text: z.ZodString;
5598
+ color_text_muted: z.ZodString;
5599
+ color_primary_btn_bg: z.ZodString;
5600
+ color_primary_btn_text: z.ZodString;
5601
+ color_secondary_border: z.ZodString;
5602
+ color_link: z.ZodString;
5603
+ color_card_text: z.ZodString;
5604
+ radius_button: z.ZodNumber;
5605
+ radius_card: z.ZodNumber;
5606
+ }, "strip", z.ZodTypeAny, {
5607
+ heading_size: number;
5608
+ subheading_size: number;
5609
+ body_size: number;
5610
+ small_body_size: number;
5611
+ color_bg: string;
5612
+ color_text: string;
5613
+ color_text_muted: string;
5614
+ color_primary_btn_bg: string;
5615
+ color_primary_btn_text: string;
5616
+ color_secondary_border: string;
5617
+ color_link: string;
5618
+ color_card_text: string;
5619
+ radius_button: number;
5620
+ radius_card: number;
5621
+ }, {
5622
+ heading_size: number;
5623
+ subheading_size: number;
5624
+ body_size: number;
5625
+ small_body_size: number;
5626
+ color_bg: string;
5627
+ color_text: string;
5628
+ color_text_muted: string;
5629
+ color_primary_btn_bg: string;
5630
+ color_primary_btn_text: string;
5631
+ color_secondary_border: string;
5632
+ color_link: string;
5633
+ color_card_text: string;
5634
+ radius_button: number;
5635
+ radius_card: number;
5636
+ }>;
5637
+ fonts: z.ZodArray<z.ZodObject<{
5638
+ font_id: z.ZodNumber;
5639
+ role: z.ZodEnum<["BODY", "HEADING"]>;
5640
+ font: z.ZodObject<{
5641
+ id: z.ZodNumber;
5642
+ family: z.ZodString;
5643
+ weight: z.ZodNumber;
5644
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
5645
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
5646
+ is_archived: z.ZodBoolean;
5647
+ asset_key: z.ZodString;
5648
+ url: z.ZodString;
5649
+ created_at: z.ZodString;
5650
+ updated_at: z.ZodString;
5651
+ }, "strip", z.ZodTypeAny, {
5652
+ id: number;
5653
+ url: string;
5654
+ created_at: string;
5655
+ updated_at: string;
5656
+ style: "NORMAL" | "ITALIC";
5657
+ family: string;
5658
+ weight: number;
5659
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5660
+ is_archived: boolean;
5661
+ asset_key: string;
5662
+ }, {
5663
+ id: number;
5664
+ url: string;
5665
+ created_at: string;
5666
+ updated_at: string;
5667
+ style: "NORMAL" | "ITALIC";
5668
+ family: string;
5669
+ weight: number;
5670
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5671
+ is_archived: boolean;
5672
+ asset_key: string;
5673
+ }>;
5674
+ }, "strip", z.ZodTypeAny, {
5675
+ role: "BODY" | "HEADING";
5676
+ font_id: number;
5677
+ font: {
5678
+ id: number;
5679
+ url: string;
5680
+ created_at: string;
5681
+ updated_at: string;
5682
+ style: "NORMAL" | "ITALIC";
5683
+ family: string;
5684
+ weight: number;
5685
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5686
+ is_archived: boolean;
5687
+ asset_key: string;
5688
+ };
5689
+ }, {
5690
+ role: "BODY" | "HEADING";
5691
+ font_id: number;
5692
+ font: {
5693
+ id: number;
5694
+ url: string;
5695
+ created_at: string;
5696
+ updated_at: string;
5697
+ style: "NORMAL" | "ITALIC";
5698
+ family: string;
5699
+ weight: number;
5700
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5701
+ is_archived: boolean;
5702
+ asset_key: string;
5703
+ };
5704
+ }>, "many">;
5705
+ version: z.ZodNumber;
5706
+ }, "strip", z.ZodTypeAny, {
5707
+ version: number;
5708
+ config: {
5709
+ heading_size: number;
5710
+ subheading_size: number;
5711
+ body_size: number;
5712
+ small_body_size: number;
5713
+ color_bg: string;
5714
+ color_text: string;
5715
+ color_text_muted: string;
5716
+ color_primary_btn_bg: string;
5717
+ color_primary_btn_text: string;
5718
+ color_secondary_border: string;
5719
+ color_link: string;
5720
+ color_card_text: string;
5721
+ radius_button: number;
5722
+ radius_card: number;
5723
+ };
5724
+ fonts: {
5725
+ role: "BODY" | "HEADING";
5726
+ font_id: number;
5727
+ font: {
5728
+ id: number;
5729
+ url: string;
5730
+ created_at: string;
5731
+ updated_at: string;
5732
+ style: "NORMAL" | "ITALIC";
5733
+ family: string;
5734
+ weight: number;
5735
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5736
+ is_archived: boolean;
5737
+ asset_key: string;
5738
+ };
5739
+ }[];
5740
+ }, {
5741
+ version: number;
5742
+ config: {
5743
+ heading_size: number;
5744
+ subheading_size: number;
5745
+ body_size: number;
5746
+ small_body_size: number;
5747
+ color_bg: string;
5748
+ color_text: string;
5749
+ color_text_muted: string;
5750
+ color_primary_btn_bg: string;
5751
+ color_primary_btn_text: string;
5752
+ color_secondary_border: string;
5753
+ color_link: string;
5754
+ color_card_text: string;
5755
+ radius_button: number;
5756
+ radius_card: number;
5757
+ };
5758
+ fonts: {
5759
+ role: "BODY" | "HEADING";
5760
+ font_id: number;
5761
+ font: {
5762
+ id: number;
5763
+ url: string;
5764
+ created_at: string;
5765
+ updated_at: string;
5766
+ style: "NORMAL" | "ITALIC";
5767
+ family: string;
5768
+ weight: number;
5769
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
5770
+ is_archived: boolean;
5771
+ asset_key: string;
5772
+ };
5773
+ }[];
5774
+ }>;
5775
+ export type EmbedTheme = z.infer<typeof EmbedThemeSchema>;
5433
5776
  export declare const PropertyResponseDataSchema: z.ZodObject<{
5434
5777
  id: z.ZodNumber;
5435
5778
  created_at: z.ZodString;
@@ -5653,6 +5996,191 @@ export declare const PropertyResponseDataSchema: z.ZodObject<{
5653
5996
  } | undefined;
5654
5997
  }[] | undefined;
5655
5998
  }>, "many">>;
5999
+ theme: z.ZodOptional<z.ZodObject<{
6000
+ config: z.ZodObject<{
6001
+ heading_size: z.ZodNumber;
6002
+ subheading_size: z.ZodNumber;
6003
+ body_size: z.ZodNumber;
6004
+ small_body_size: z.ZodNumber;
6005
+ color_bg: z.ZodString;
6006
+ color_text: z.ZodString;
6007
+ color_text_muted: z.ZodString;
6008
+ color_primary_btn_bg: z.ZodString;
6009
+ color_primary_btn_text: z.ZodString;
6010
+ color_secondary_border: z.ZodString;
6011
+ color_link: z.ZodString;
6012
+ color_card_text: z.ZodString;
6013
+ radius_button: z.ZodNumber;
6014
+ radius_card: z.ZodNumber;
6015
+ }, "strip", z.ZodTypeAny, {
6016
+ heading_size: number;
6017
+ subheading_size: number;
6018
+ body_size: number;
6019
+ small_body_size: number;
6020
+ color_bg: string;
6021
+ color_text: string;
6022
+ color_text_muted: string;
6023
+ color_primary_btn_bg: string;
6024
+ color_primary_btn_text: string;
6025
+ color_secondary_border: string;
6026
+ color_link: string;
6027
+ color_card_text: string;
6028
+ radius_button: number;
6029
+ radius_card: number;
6030
+ }, {
6031
+ heading_size: number;
6032
+ subheading_size: number;
6033
+ body_size: number;
6034
+ small_body_size: number;
6035
+ color_bg: string;
6036
+ color_text: string;
6037
+ color_text_muted: string;
6038
+ color_primary_btn_bg: string;
6039
+ color_primary_btn_text: string;
6040
+ color_secondary_border: string;
6041
+ color_link: string;
6042
+ color_card_text: string;
6043
+ radius_button: number;
6044
+ radius_card: number;
6045
+ }>;
6046
+ fonts: z.ZodArray<z.ZodObject<{
6047
+ font_id: z.ZodNumber;
6048
+ role: z.ZodEnum<["BODY", "HEADING"]>;
6049
+ font: z.ZodObject<{
6050
+ id: z.ZodNumber;
6051
+ family: z.ZodString;
6052
+ weight: z.ZodNumber;
6053
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
6054
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
6055
+ is_archived: z.ZodBoolean;
6056
+ asset_key: z.ZodString;
6057
+ url: z.ZodString;
6058
+ created_at: z.ZodString;
6059
+ updated_at: z.ZodString;
6060
+ }, "strip", z.ZodTypeAny, {
6061
+ id: number;
6062
+ url: string;
6063
+ created_at: string;
6064
+ updated_at: string;
6065
+ style: "NORMAL" | "ITALIC";
6066
+ family: string;
6067
+ weight: number;
6068
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6069
+ is_archived: boolean;
6070
+ asset_key: string;
6071
+ }, {
6072
+ id: number;
6073
+ url: string;
6074
+ created_at: string;
6075
+ updated_at: string;
6076
+ style: "NORMAL" | "ITALIC";
6077
+ family: string;
6078
+ weight: number;
6079
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6080
+ is_archived: boolean;
6081
+ asset_key: string;
6082
+ }>;
6083
+ }, "strip", z.ZodTypeAny, {
6084
+ role: "BODY" | "HEADING";
6085
+ font_id: number;
6086
+ font: {
6087
+ id: number;
6088
+ url: string;
6089
+ created_at: string;
6090
+ updated_at: string;
6091
+ style: "NORMAL" | "ITALIC";
6092
+ family: string;
6093
+ weight: number;
6094
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6095
+ is_archived: boolean;
6096
+ asset_key: string;
6097
+ };
6098
+ }, {
6099
+ role: "BODY" | "HEADING";
6100
+ font_id: number;
6101
+ font: {
6102
+ id: number;
6103
+ url: string;
6104
+ created_at: string;
6105
+ updated_at: string;
6106
+ style: "NORMAL" | "ITALIC";
6107
+ family: string;
6108
+ weight: number;
6109
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6110
+ is_archived: boolean;
6111
+ asset_key: string;
6112
+ };
6113
+ }>, "many">;
6114
+ version: z.ZodNumber;
6115
+ }, "strip", z.ZodTypeAny, {
6116
+ version: number;
6117
+ config: {
6118
+ heading_size: number;
6119
+ subheading_size: number;
6120
+ body_size: number;
6121
+ small_body_size: number;
6122
+ color_bg: string;
6123
+ color_text: string;
6124
+ color_text_muted: string;
6125
+ color_primary_btn_bg: string;
6126
+ color_primary_btn_text: string;
6127
+ color_secondary_border: string;
6128
+ color_link: string;
6129
+ color_card_text: string;
6130
+ radius_button: number;
6131
+ radius_card: number;
6132
+ };
6133
+ fonts: {
6134
+ role: "BODY" | "HEADING";
6135
+ font_id: number;
6136
+ font: {
6137
+ id: number;
6138
+ url: string;
6139
+ created_at: string;
6140
+ updated_at: string;
6141
+ style: "NORMAL" | "ITALIC";
6142
+ family: string;
6143
+ weight: number;
6144
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6145
+ is_archived: boolean;
6146
+ asset_key: string;
6147
+ };
6148
+ }[];
6149
+ }, {
6150
+ version: number;
6151
+ config: {
6152
+ heading_size: number;
6153
+ subheading_size: number;
6154
+ body_size: number;
6155
+ small_body_size: number;
6156
+ color_bg: string;
6157
+ color_text: string;
6158
+ color_text_muted: string;
6159
+ color_primary_btn_bg: string;
6160
+ color_primary_btn_text: string;
6161
+ color_secondary_border: string;
6162
+ color_link: string;
6163
+ color_card_text: string;
6164
+ radius_button: number;
6165
+ radius_card: number;
6166
+ };
6167
+ fonts: {
6168
+ role: "BODY" | "HEADING";
6169
+ font_id: number;
6170
+ font: {
6171
+ id: number;
6172
+ url: string;
6173
+ created_at: string;
6174
+ updated_at: string;
6175
+ style: "NORMAL" | "ITALIC";
6176
+ family: string;
6177
+ weight: number;
6178
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6179
+ is_archived: boolean;
6180
+ asset_key: string;
6181
+ };
6182
+ }[];
6183
+ }>>;
5656
6184
  }, "strip", z.ZodTypeAny, {
5657
6185
  name: string;
5658
6186
  status: "archived" | "active";
@@ -5722,6 +6250,41 @@ export declare const PropertyResponseDataSchema: z.ZodObject<{
5722
6250
  signature: string;
5723
6251
  } | undefined;
5724
6252
  } | undefined;
6253
+ theme?: {
6254
+ version: number;
6255
+ config: {
6256
+ heading_size: number;
6257
+ subheading_size: number;
6258
+ body_size: number;
6259
+ small_body_size: number;
6260
+ color_bg: string;
6261
+ color_text: string;
6262
+ color_text_muted: string;
6263
+ color_primary_btn_bg: string;
6264
+ color_primary_btn_text: string;
6265
+ color_secondary_border: string;
6266
+ color_link: string;
6267
+ color_card_text: string;
6268
+ radius_button: number;
6269
+ radius_card: number;
6270
+ };
6271
+ fonts: {
6272
+ role: "BODY" | "HEADING";
6273
+ font_id: number;
6274
+ font: {
6275
+ id: number;
6276
+ url: string;
6277
+ created_at: string;
6278
+ updated_at: string;
6279
+ style: "NORMAL" | "ITALIC";
6280
+ family: string;
6281
+ weight: number;
6282
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6283
+ is_archived: boolean;
6284
+ asset_key: string;
6285
+ };
6286
+ }[];
6287
+ } | undefined;
5725
6288
  }, {
5726
6289
  name: string;
5727
6290
  status: "archived" | "active";
@@ -5791,6 +6354,41 @@ export declare const PropertyResponseDataSchema: z.ZodObject<{
5791
6354
  signature: string;
5792
6355
  } | undefined;
5793
6356
  } | undefined;
6357
+ theme?: {
6358
+ version: number;
6359
+ config: {
6360
+ heading_size: number;
6361
+ subheading_size: number;
6362
+ body_size: number;
6363
+ small_body_size: number;
6364
+ color_bg: string;
6365
+ color_text: string;
6366
+ color_text_muted: string;
6367
+ color_primary_btn_bg: string;
6368
+ color_primary_btn_text: string;
6369
+ color_secondary_border: string;
6370
+ color_link: string;
6371
+ color_card_text: string;
6372
+ radius_button: number;
6373
+ radius_card: number;
6374
+ };
6375
+ fonts: {
6376
+ role: "BODY" | "HEADING";
6377
+ font_id: number;
6378
+ font: {
6379
+ id: number;
6380
+ url: string;
6381
+ created_at: string;
6382
+ updated_at: string;
6383
+ style: "NORMAL" | "ITALIC";
6384
+ family: string;
6385
+ weight: number;
6386
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6387
+ is_archived: boolean;
6388
+ asset_key: string;
6389
+ };
6390
+ }[];
6391
+ } | undefined;
5794
6392
  }>;
5795
6393
  export type PropertyResponseData = z.infer<typeof PropertyResponseDataSchema>;
5796
6394
  export declare const PropertyResponseSchema: z.ZodObject<{
@@ -6017,6 +6615,191 @@ export declare const PropertyResponseSchema: z.ZodObject<{
6017
6615
  } | undefined;
6018
6616
  }[] | undefined;
6019
6617
  }>, "many">>;
6618
+ theme: z.ZodOptional<z.ZodObject<{
6619
+ config: z.ZodObject<{
6620
+ heading_size: z.ZodNumber;
6621
+ subheading_size: z.ZodNumber;
6622
+ body_size: z.ZodNumber;
6623
+ small_body_size: z.ZodNumber;
6624
+ color_bg: z.ZodString;
6625
+ color_text: z.ZodString;
6626
+ color_text_muted: z.ZodString;
6627
+ color_primary_btn_bg: z.ZodString;
6628
+ color_primary_btn_text: z.ZodString;
6629
+ color_secondary_border: z.ZodString;
6630
+ color_link: z.ZodString;
6631
+ color_card_text: z.ZodString;
6632
+ radius_button: z.ZodNumber;
6633
+ radius_card: z.ZodNumber;
6634
+ }, "strip", z.ZodTypeAny, {
6635
+ heading_size: number;
6636
+ subheading_size: number;
6637
+ body_size: number;
6638
+ small_body_size: number;
6639
+ color_bg: string;
6640
+ color_text: string;
6641
+ color_text_muted: string;
6642
+ color_primary_btn_bg: string;
6643
+ color_primary_btn_text: string;
6644
+ color_secondary_border: string;
6645
+ color_link: string;
6646
+ color_card_text: string;
6647
+ radius_button: number;
6648
+ radius_card: number;
6649
+ }, {
6650
+ heading_size: number;
6651
+ subheading_size: number;
6652
+ body_size: number;
6653
+ small_body_size: number;
6654
+ color_bg: string;
6655
+ color_text: string;
6656
+ color_text_muted: string;
6657
+ color_primary_btn_bg: string;
6658
+ color_primary_btn_text: string;
6659
+ color_secondary_border: string;
6660
+ color_link: string;
6661
+ color_card_text: string;
6662
+ radius_button: number;
6663
+ radius_card: number;
6664
+ }>;
6665
+ fonts: z.ZodArray<z.ZodObject<{
6666
+ font_id: z.ZodNumber;
6667
+ role: z.ZodEnum<["BODY", "HEADING"]>;
6668
+ font: z.ZodObject<{
6669
+ id: z.ZodNumber;
6670
+ family: z.ZodString;
6671
+ weight: z.ZodNumber;
6672
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
6673
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
6674
+ is_archived: z.ZodBoolean;
6675
+ asset_key: z.ZodString;
6676
+ url: z.ZodString;
6677
+ created_at: z.ZodString;
6678
+ updated_at: z.ZodString;
6679
+ }, "strip", z.ZodTypeAny, {
6680
+ id: number;
6681
+ url: string;
6682
+ created_at: string;
6683
+ updated_at: string;
6684
+ style: "NORMAL" | "ITALIC";
6685
+ family: string;
6686
+ weight: number;
6687
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6688
+ is_archived: boolean;
6689
+ asset_key: string;
6690
+ }, {
6691
+ id: number;
6692
+ url: string;
6693
+ created_at: string;
6694
+ updated_at: string;
6695
+ style: "NORMAL" | "ITALIC";
6696
+ family: string;
6697
+ weight: number;
6698
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6699
+ is_archived: boolean;
6700
+ asset_key: string;
6701
+ }>;
6702
+ }, "strip", z.ZodTypeAny, {
6703
+ role: "BODY" | "HEADING";
6704
+ font_id: number;
6705
+ font: {
6706
+ id: number;
6707
+ url: string;
6708
+ created_at: string;
6709
+ updated_at: string;
6710
+ style: "NORMAL" | "ITALIC";
6711
+ family: string;
6712
+ weight: number;
6713
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6714
+ is_archived: boolean;
6715
+ asset_key: string;
6716
+ };
6717
+ }, {
6718
+ role: "BODY" | "HEADING";
6719
+ font_id: number;
6720
+ font: {
6721
+ id: number;
6722
+ url: string;
6723
+ created_at: string;
6724
+ updated_at: string;
6725
+ style: "NORMAL" | "ITALIC";
6726
+ family: string;
6727
+ weight: number;
6728
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6729
+ is_archived: boolean;
6730
+ asset_key: string;
6731
+ };
6732
+ }>, "many">;
6733
+ version: z.ZodNumber;
6734
+ }, "strip", z.ZodTypeAny, {
6735
+ version: number;
6736
+ config: {
6737
+ heading_size: number;
6738
+ subheading_size: number;
6739
+ body_size: number;
6740
+ small_body_size: number;
6741
+ color_bg: string;
6742
+ color_text: string;
6743
+ color_text_muted: string;
6744
+ color_primary_btn_bg: string;
6745
+ color_primary_btn_text: string;
6746
+ color_secondary_border: string;
6747
+ color_link: string;
6748
+ color_card_text: string;
6749
+ radius_button: number;
6750
+ radius_card: number;
6751
+ };
6752
+ fonts: {
6753
+ role: "BODY" | "HEADING";
6754
+ font_id: number;
6755
+ font: {
6756
+ id: number;
6757
+ url: string;
6758
+ created_at: string;
6759
+ updated_at: string;
6760
+ style: "NORMAL" | "ITALIC";
6761
+ family: string;
6762
+ weight: number;
6763
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6764
+ is_archived: boolean;
6765
+ asset_key: string;
6766
+ };
6767
+ }[];
6768
+ }, {
6769
+ version: number;
6770
+ config: {
6771
+ heading_size: number;
6772
+ subheading_size: number;
6773
+ body_size: number;
6774
+ small_body_size: number;
6775
+ color_bg: string;
6776
+ color_text: string;
6777
+ color_text_muted: string;
6778
+ color_primary_btn_bg: string;
6779
+ color_primary_btn_text: string;
6780
+ color_secondary_border: string;
6781
+ color_link: string;
6782
+ color_card_text: string;
6783
+ radius_button: number;
6784
+ radius_card: number;
6785
+ };
6786
+ fonts: {
6787
+ role: "BODY" | "HEADING";
6788
+ font_id: number;
6789
+ font: {
6790
+ id: number;
6791
+ url: string;
6792
+ created_at: string;
6793
+ updated_at: string;
6794
+ style: "NORMAL" | "ITALIC";
6795
+ family: string;
6796
+ weight: number;
6797
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6798
+ is_archived: boolean;
6799
+ asset_key: string;
6800
+ };
6801
+ }[];
6802
+ }>>;
6020
6803
  }, "strip", z.ZodTypeAny, {
6021
6804
  name: string;
6022
6805
  status: "archived" | "active";
@@ -6086,6 +6869,41 @@ export declare const PropertyResponseSchema: z.ZodObject<{
6086
6869
  signature: string;
6087
6870
  } | undefined;
6088
6871
  } | undefined;
6872
+ theme?: {
6873
+ version: number;
6874
+ config: {
6875
+ heading_size: number;
6876
+ subheading_size: number;
6877
+ body_size: number;
6878
+ small_body_size: number;
6879
+ color_bg: string;
6880
+ color_text: string;
6881
+ color_text_muted: string;
6882
+ color_primary_btn_bg: string;
6883
+ color_primary_btn_text: string;
6884
+ color_secondary_border: string;
6885
+ color_link: string;
6886
+ color_card_text: string;
6887
+ radius_button: number;
6888
+ radius_card: number;
6889
+ };
6890
+ fonts: {
6891
+ role: "BODY" | "HEADING";
6892
+ font_id: number;
6893
+ font: {
6894
+ id: number;
6895
+ url: string;
6896
+ created_at: string;
6897
+ updated_at: string;
6898
+ style: "NORMAL" | "ITALIC";
6899
+ family: string;
6900
+ weight: number;
6901
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
6902
+ is_archived: boolean;
6903
+ asset_key: string;
6904
+ };
6905
+ }[];
6906
+ } | undefined;
6089
6907
  }, {
6090
6908
  name: string;
6091
6909
  status: "archived" | "active";
@@ -6155,6 +6973,41 @@ export declare const PropertyResponseSchema: z.ZodObject<{
6155
6973
  signature: string;
6156
6974
  } | undefined;
6157
6975
  } | undefined;
6976
+ theme?: {
6977
+ version: number;
6978
+ config: {
6979
+ heading_size: number;
6980
+ subheading_size: number;
6981
+ body_size: number;
6982
+ small_body_size: number;
6983
+ color_bg: string;
6984
+ color_text: string;
6985
+ color_text_muted: string;
6986
+ color_primary_btn_bg: string;
6987
+ color_primary_btn_text: string;
6988
+ color_secondary_border: string;
6989
+ color_link: string;
6990
+ color_card_text: string;
6991
+ radius_button: number;
6992
+ radius_card: number;
6993
+ };
6994
+ fonts: {
6995
+ role: "BODY" | "HEADING";
6996
+ font_id: number;
6997
+ font: {
6998
+ id: number;
6999
+ url: string;
7000
+ created_at: string;
7001
+ updated_at: string;
7002
+ style: "NORMAL" | "ITALIC";
7003
+ family: string;
7004
+ weight: number;
7005
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
7006
+ is_archived: boolean;
7007
+ asset_key: string;
7008
+ };
7009
+ }[];
7010
+ } | undefined;
6158
7011
  }>;
6159
7012
  }, "strip", z.ZodTypeAny, {
6160
7013
  data: {
@@ -6226,6 +7079,41 @@ export declare const PropertyResponseSchema: z.ZodObject<{
6226
7079
  signature: string;
6227
7080
  } | undefined;
6228
7081
  } | undefined;
7082
+ theme?: {
7083
+ version: number;
7084
+ config: {
7085
+ heading_size: number;
7086
+ subheading_size: number;
7087
+ body_size: number;
7088
+ small_body_size: number;
7089
+ color_bg: string;
7090
+ color_text: string;
7091
+ color_text_muted: string;
7092
+ color_primary_btn_bg: string;
7093
+ color_primary_btn_text: string;
7094
+ color_secondary_border: string;
7095
+ color_link: string;
7096
+ color_card_text: string;
7097
+ radius_button: number;
7098
+ radius_card: number;
7099
+ };
7100
+ fonts: {
7101
+ role: "BODY" | "HEADING";
7102
+ font_id: number;
7103
+ font: {
7104
+ id: number;
7105
+ url: string;
7106
+ created_at: string;
7107
+ updated_at: string;
7108
+ style: "NORMAL" | "ITALIC";
7109
+ family: string;
7110
+ weight: number;
7111
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
7112
+ is_archived: boolean;
7113
+ asset_key: string;
7114
+ };
7115
+ }[];
7116
+ } | undefined;
6229
7117
  };
6230
7118
  }, {
6231
7119
  data: {
@@ -6297,6 +7185,41 @@ export declare const PropertyResponseSchema: z.ZodObject<{
6297
7185
  signature: string;
6298
7186
  } | undefined;
6299
7187
  } | undefined;
7188
+ theme?: {
7189
+ version: number;
7190
+ config: {
7191
+ heading_size: number;
7192
+ subheading_size: number;
7193
+ body_size: number;
7194
+ small_body_size: number;
7195
+ color_bg: string;
7196
+ color_text: string;
7197
+ color_text_muted: string;
7198
+ color_primary_btn_bg: string;
7199
+ color_primary_btn_text: string;
7200
+ color_secondary_border: string;
7201
+ color_link: string;
7202
+ color_card_text: string;
7203
+ radius_button: number;
7204
+ radius_card: number;
7205
+ };
7206
+ fonts: {
7207
+ role: "BODY" | "HEADING";
7208
+ font_id: number;
7209
+ font: {
7210
+ id: number;
7211
+ url: string;
7212
+ created_at: string;
7213
+ updated_at: string;
7214
+ style: "NORMAL" | "ITALIC";
7215
+ family: string;
7216
+ weight: number;
7217
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
7218
+ is_archived: boolean;
7219
+ asset_key: string;
7220
+ };
7221
+ }[];
7222
+ } | undefined;
6300
7223
  };
6301
7224
  }>;
6302
7225
  export type PropertyResponse = z.infer<typeof PropertyResponseSchema>;
@@ -7042,8 +7965,8 @@ export declare const QuestionnaireSchema: z.ZodObject<{
7042
7965
  min?: number | undefined;
7043
7966
  max?: number | undefined;
7044
7967
  component?: string | undefined;
7045
- options_variant?: string | undefined;
7046
7968
  helper_text?: string | undefined;
7969
+ options_variant?: string | undefined;
7047
7970
  }, {
7048
7971
  name: string;
7049
7972
  options: {
@@ -7057,8 +7980,8 @@ export declare const QuestionnaireSchema: z.ZodObject<{
7057
7980
  min?: number | undefined;
7058
7981
  max?: number | undefined;
7059
7982
  component?: string | undefined;
7060
- options_variant?: string | undefined;
7061
7983
  helper_text?: string | undefined;
7984
+ options_variant?: string | undefined;
7062
7985
  }>;
7063
7986
  export type Questionnaire = z.infer<typeof QuestionnaireSchema>;
7064
7987
  export declare const FiltersResponseDataSchema: z.ZodObject<{
@@ -7100,8 +8023,8 @@ export declare const FiltersResponseDataSchema: z.ZodObject<{
7100
8023
  min?: number | undefined;
7101
8024
  max?: number | undefined;
7102
8025
  component?: string | undefined;
7103
- options_variant?: string | undefined;
7104
8026
  helper_text?: string | undefined;
8027
+ options_variant?: string | undefined;
7105
8028
  }, {
7106
8029
  name: string;
7107
8030
  options: {
@@ -7115,8 +8038,8 @@ export declare const FiltersResponseDataSchema: z.ZodObject<{
7115
8038
  min?: number | undefined;
7116
8039
  max?: number | undefined;
7117
8040
  component?: string | undefined;
7118
- options_variant?: string | undefined;
7119
8041
  helper_text?: string | undefined;
8042
+ options_variant?: string | undefined;
7120
8043
  }>, "many">;
7121
8044
  filters: z.ZodObject<{
7122
8045
  date_availability: z.ZodObject<{
@@ -7322,8 +8245,8 @@ export declare const FiltersResponseDataSchema: z.ZodObject<{
7322
8245
  min?: number | undefined;
7323
8246
  max?: number | undefined;
7324
8247
  component?: string | undefined;
7325
- options_variant?: string | undefined;
7326
8248
  helper_text?: string | undefined;
8249
+ options_variant?: string | undefined;
7327
8250
  }[];
7328
8251
  filters: {
7329
8252
  base_price: {
@@ -7375,8 +8298,8 @@ export declare const FiltersResponseDataSchema: z.ZodObject<{
7375
8298
  min?: number | undefined;
7376
8299
  max?: number | undefined;
7377
8300
  component?: string | undefined;
7378
- options_variant?: string | undefined;
7379
8301
  helper_text?: string | undefined;
8302
+ options_variant?: string | undefined;
7380
8303
  }[];
7381
8304
  filters: {
7382
8305
  base_price: {
@@ -7456,8 +8379,8 @@ export declare const FiltersResponseSchema: z.ZodObject<{
7456
8379
  min?: number | undefined;
7457
8380
  max?: number | undefined;
7458
8381
  component?: string | undefined;
7459
- options_variant?: string | undefined;
7460
8382
  helper_text?: string | undefined;
8383
+ options_variant?: string | undefined;
7461
8384
  }, {
7462
8385
  name: string;
7463
8386
  options: {
@@ -7471,8 +8394,8 @@ export declare const FiltersResponseSchema: z.ZodObject<{
7471
8394
  min?: number | undefined;
7472
8395
  max?: number | undefined;
7473
8396
  component?: string | undefined;
7474
- options_variant?: string | undefined;
7475
8397
  helper_text?: string | undefined;
8398
+ options_variant?: string | undefined;
7476
8399
  }>, "many">;
7477
8400
  filters: z.ZodObject<{
7478
8401
  date_availability: z.ZodObject<{
@@ -7678,8 +8601,8 @@ export declare const FiltersResponseSchema: z.ZodObject<{
7678
8601
  min?: number | undefined;
7679
8602
  max?: number | undefined;
7680
8603
  component?: string | undefined;
7681
- options_variant?: string | undefined;
7682
8604
  helper_text?: string | undefined;
8605
+ options_variant?: string | undefined;
7683
8606
  }[];
7684
8607
  filters: {
7685
8608
  base_price: {
@@ -7731,8 +8654,8 @@ export declare const FiltersResponseSchema: z.ZodObject<{
7731
8654
  min?: number | undefined;
7732
8655
  max?: number | undefined;
7733
8656
  component?: string | undefined;
7734
- options_variant?: string | undefined;
7735
8657
  helper_text?: string | undefined;
8658
+ options_variant?: string | undefined;
7736
8659
  }[];
7737
8660
  filters: {
7738
8661
  base_price: {
@@ -7786,8 +8709,8 @@ export declare const FiltersResponseSchema: z.ZodObject<{
7786
8709
  min?: number | undefined;
7787
8710
  max?: number | undefined;
7788
8711
  component?: string | undefined;
7789
- options_variant?: string | undefined;
7790
8712
  helper_text?: string | undefined;
8713
+ options_variant?: string | undefined;
7791
8714
  }[];
7792
8715
  filters: {
7793
8716
  base_price: {
@@ -7841,8 +8764,8 @@ export declare const FiltersResponseSchema: z.ZodObject<{
7841
8764
  min?: number | undefined;
7842
8765
  max?: number | undefined;
7843
8766
  component?: string | undefined;
7844
- options_variant?: string | undefined;
7845
8767
  helper_text?: string | undefined;
8768
+ options_variant?: string | undefined;
7846
8769
  }[];
7847
8770
  filters: {
7848
8771
  base_price: {
@@ -7983,3 +8906,2443 @@ export declare const SaveFiltersResponseSchema: z.ZodObject<{
7983
8906
  };
7984
8907
  }>;
7985
8908
  export type SaveFiltersResponse = z.infer<typeof SaveFiltersResponseSchema>;
8909
+ export declare const UserFontsListResponseSchema: z.ZodObject<{
8910
+ data: z.ZodArray<z.ZodObject<{
8911
+ id: z.ZodNumber;
8912
+ family: z.ZodString;
8913
+ weight: z.ZodNumber;
8914
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
8915
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
8916
+ is_archived: z.ZodBoolean;
8917
+ asset_key: z.ZodString;
8918
+ url: z.ZodString;
8919
+ created_at: z.ZodString;
8920
+ updated_at: z.ZodString;
8921
+ }, "strip", z.ZodTypeAny, {
8922
+ id: number;
8923
+ url: string;
8924
+ created_at: string;
8925
+ updated_at: string;
8926
+ style: "NORMAL" | "ITALIC";
8927
+ family: string;
8928
+ weight: number;
8929
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
8930
+ is_archived: boolean;
8931
+ asset_key: string;
8932
+ }, {
8933
+ id: number;
8934
+ url: string;
8935
+ created_at: string;
8936
+ updated_at: string;
8937
+ style: "NORMAL" | "ITALIC";
8938
+ family: string;
8939
+ weight: number;
8940
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
8941
+ is_archived: boolean;
8942
+ asset_key: string;
8943
+ }>, "many">;
8944
+ }, "strip", z.ZodTypeAny, {
8945
+ data: {
8946
+ id: number;
8947
+ url: string;
8948
+ created_at: string;
8949
+ updated_at: string;
8950
+ style: "NORMAL" | "ITALIC";
8951
+ family: string;
8952
+ weight: number;
8953
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
8954
+ is_archived: boolean;
8955
+ asset_key: string;
8956
+ }[];
8957
+ }, {
8958
+ data: {
8959
+ id: number;
8960
+ url: string;
8961
+ created_at: string;
8962
+ updated_at: string;
8963
+ style: "NORMAL" | "ITALIC";
8964
+ family: string;
8965
+ weight: number;
8966
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
8967
+ is_archived: boolean;
8968
+ asset_key: string;
8969
+ }[];
8970
+ }>;
8971
+ export type UserFontsListResponse = z.infer<typeof UserFontsListResponseSchema>;
8972
+ export declare const UserFontResponseSchema: z.ZodObject<{
8973
+ data: z.ZodObject<{
8974
+ id: z.ZodNumber;
8975
+ family: z.ZodString;
8976
+ weight: z.ZodNumber;
8977
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
8978
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
8979
+ is_archived: z.ZodBoolean;
8980
+ asset_key: z.ZodString;
8981
+ url: z.ZodString;
8982
+ created_at: z.ZodString;
8983
+ updated_at: z.ZodString;
8984
+ }, "strip", z.ZodTypeAny, {
8985
+ id: number;
8986
+ url: string;
8987
+ created_at: string;
8988
+ updated_at: string;
8989
+ style: "NORMAL" | "ITALIC";
8990
+ family: string;
8991
+ weight: number;
8992
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
8993
+ is_archived: boolean;
8994
+ asset_key: string;
8995
+ }, {
8996
+ id: number;
8997
+ url: string;
8998
+ created_at: string;
8999
+ updated_at: string;
9000
+ style: "NORMAL" | "ITALIC";
9001
+ family: string;
9002
+ weight: number;
9003
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9004
+ is_archived: boolean;
9005
+ asset_key: string;
9006
+ }>;
9007
+ }, "strip", z.ZodTypeAny, {
9008
+ data: {
9009
+ id: number;
9010
+ url: string;
9011
+ created_at: string;
9012
+ updated_at: string;
9013
+ style: "NORMAL" | "ITALIC";
9014
+ family: string;
9015
+ weight: number;
9016
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9017
+ is_archived: boolean;
9018
+ asset_key: string;
9019
+ };
9020
+ }, {
9021
+ data: {
9022
+ id: number;
9023
+ url: string;
9024
+ created_at: string;
9025
+ updated_at: string;
9026
+ style: "NORMAL" | "ITALIC";
9027
+ family: string;
9028
+ weight: number;
9029
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9030
+ is_archived: boolean;
9031
+ asset_key: string;
9032
+ };
9033
+ }>;
9034
+ export type UserFontResponse = z.infer<typeof UserFontResponseSchema>;
9035
+ export declare const FontUploadUrlResponseSchema: z.ZodObject<{
9036
+ data: z.ZodObject<{
9037
+ upload_url: z.ZodString;
9038
+ asset_key: z.ZodString;
9039
+ }, "strip", z.ZodTypeAny, {
9040
+ upload_url: string;
9041
+ asset_key: string;
9042
+ }, {
9043
+ upload_url: string;
9044
+ asset_key: string;
9045
+ }>;
9046
+ }, "strip", z.ZodTypeAny, {
9047
+ data: {
9048
+ upload_url: string;
9049
+ asset_key: string;
9050
+ };
9051
+ }, {
9052
+ data: {
9053
+ upload_url: string;
9054
+ asset_key: string;
9055
+ };
9056
+ }>;
9057
+ export type FontUploadUrlResponse = z.infer<typeof FontUploadUrlResponseSchema>;
9058
+ export declare const FontUsageItemSchema: z.ZodObject<{
9059
+ property_id: z.ZodNumber;
9060
+ property_name: z.ZodString;
9061
+ theme_id: z.ZodNumber;
9062
+ version: z.ZodNumber;
9063
+ role: z.ZodEnum<["BODY", "HEADING"]>;
9064
+ }, "strip", z.ZodTypeAny, {
9065
+ property_id: number;
9066
+ role: "BODY" | "HEADING";
9067
+ version: number;
9068
+ property_name: string;
9069
+ theme_id: number;
9070
+ }, {
9071
+ property_id: number;
9072
+ role: "BODY" | "HEADING";
9073
+ version: number;
9074
+ property_name: string;
9075
+ theme_id: number;
9076
+ }>;
9077
+ export type FontUsageItem = z.infer<typeof FontUsageItemSchema>;
9078
+ export declare const FontInUseConflictResponseSchema: z.ZodObject<{
9079
+ error: z.ZodObject<{
9080
+ message: z.ZodEnum<["FONT_USED_IN_PUBLISHED_VERSION"]>;
9081
+ details: z.ZodObject<{
9082
+ usages: z.ZodArray<z.ZodObject<{
9083
+ property_id: z.ZodNumber;
9084
+ property_name: z.ZodString;
9085
+ theme_id: z.ZodNumber;
9086
+ version: z.ZodNumber;
9087
+ role: z.ZodEnum<["BODY", "HEADING"]>;
9088
+ }, "strip", z.ZodTypeAny, {
9089
+ property_id: number;
9090
+ role: "BODY" | "HEADING";
9091
+ version: number;
9092
+ property_name: string;
9093
+ theme_id: number;
9094
+ }, {
9095
+ property_id: number;
9096
+ role: "BODY" | "HEADING";
9097
+ version: number;
9098
+ property_name: string;
9099
+ theme_id: number;
9100
+ }>, "many">;
9101
+ }, "strip", z.ZodTypeAny, {
9102
+ usages: {
9103
+ property_id: number;
9104
+ role: "BODY" | "HEADING";
9105
+ version: number;
9106
+ property_name: string;
9107
+ theme_id: number;
9108
+ }[];
9109
+ }, {
9110
+ usages: {
9111
+ property_id: number;
9112
+ role: "BODY" | "HEADING";
9113
+ version: number;
9114
+ property_name: string;
9115
+ theme_id: number;
9116
+ }[];
9117
+ }>;
9118
+ }, "strip", z.ZodTypeAny, {
9119
+ message: "FONT_USED_IN_PUBLISHED_VERSION";
9120
+ details: {
9121
+ usages: {
9122
+ property_id: number;
9123
+ role: "BODY" | "HEADING";
9124
+ version: number;
9125
+ property_name: string;
9126
+ theme_id: number;
9127
+ }[];
9128
+ };
9129
+ }, {
9130
+ message: "FONT_USED_IN_PUBLISHED_VERSION";
9131
+ details: {
9132
+ usages: {
9133
+ property_id: number;
9134
+ role: "BODY" | "HEADING";
9135
+ version: number;
9136
+ property_name: string;
9137
+ theme_id: number;
9138
+ }[];
9139
+ };
9140
+ }>;
9141
+ }, "strip", z.ZodTypeAny, {
9142
+ error: {
9143
+ message: "FONT_USED_IN_PUBLISHED_VERSION";
9144
+ details: {
9145
+ usages: {
9146
+ property_id: number;
9147
+ role: "BODY" | "HEADING";
9148
+ version: number;
9149
+ property_name: string;
9150
+ theme_id: number;
9151
+ }[];
9152
+ };
9153
+ };
9154
+ }, {
9155
+ error: {
9156
+ message: "FONT_USED_IN_PUBLISHED_VERSION";
9157
+ details: {
9158
+ usages: {
9159
+ property_id: number;
9160
+ role: "BODY" | "HEADING";
9161
+ version: number;
9162
+ property_name: string;
9163
+ theme_id: number;
9164
+ }[];
9165
+ };
9166
+ };
9167
+ }>;
9168
+ export type FontInUseConflictResponse = z.infer<typeof FontInUseConflictResponseSchema>;
9169
+ export declare const ThemeStatusSchema: z.ZodEnum<["draft", "published", "archived"]>;
9170
+ export type ThemeStatus = z.infer<typeof ThemeStatusSchema>;
9171
+ export declare const ThemeFontAssignmentSchema: z.ZodObject<{
9172
+ font_id: z.ZodNumber;
9173
+ role: z.ZodEnum<["BODY", "HEADING"]>;
9174
+ }, "strip", z.ZodTypeAny, {
9175
+ role: "BODY" | "HEADING";
9176
+ font_id: number;
9177
+ }, {
9178
+ role: "BODY" | "HEADING";
9179
+ font_id: number;
9180
+ }>;
9181
+ export type ThemeFontAssignment = z.infer<typeof ThemeFontAssignmentSchema>;
9182
+ export declare const ThemeRowSchema: z.ZodObject<{
9183
+ id: z.ZodNumber;
9184
+ property_id: z.ZodNumber;
9185
+ parent_id: z.ZodNumber;
9186
+ version: z.ZodNumber;
9187
+ status: z.ZodEnum<["draft", "published", "archived"]>;
9188
+ config: z.ZodObject<{
9189
+ heading_size: z.ZodNumber;
9190
+ subheading_size: z.ZodNumber;
9191
+ body_size: z.ZodNumber;
9192
+ small_body_size: z.ZodNumber;
9193
+ color_bg: z.ZodString;
9194
+ color_text: z.ZodString;
9195
+ color_text_muted: z.ZodString;
9196
+ color_primary_btn_bg: z.ZodString;
9197
+ color_primary_btn_text: z.ZodString;
9198
+ color_secondary_border: z.ZodString;
9199
+ color_link: z.ZodString;
9200
+ color_card_text: z.ZodString;
9201
+ radius_button: z.ZodNumber;
9202
+ radius_card: z.ZodNumber;
9203
+ }, "strip", z.ZodTypeAny, {
9204
+ heading_size: number;
9205
+ subheading_size: number;
9206
+ body_size: number;
9207
+ small_body_size: number;
9208
+ color_bg: string;
9209
+ color_text: string;
9210
+ color_text_muted: string;
9211
+ color_primary_btn_bg: string;
9212
+ color_primary_btn_text: string;
9213
+ color_secondary_border: string;
9214
+ color_link: string;
9215
+ color_card_text: string;
9216
+ radius_button: number;
9217
+ radius_card: number;
9218
+ }, {
9219
+ heading_size: number;
9220
+ subheading_size: number;
9221
+ body_size: number;
9222
+ small_body_size: number;
9223
+ color_bg: string;
9224
+ color_text: string;
9225
+ color_text_muted: string;
9226
+ color_primary_btn_bg: string;
9227
+ color_primary_btn_text: string;
9228
+ color_secondary_border: string;
9229
+ color_link: string;
9230
+ color_card_text: string;
9231
+ radius_button: number;
9232
+ radius_card: number;
9233
+ }>;
9234
+ fonts: z.ZodArray<z.ZodObject<{
9235
+ font_id: z.ZodNumber;
9236
+ role: z.ZodEnum<["BODY", "HEADING"]>;
9237
+ font: z.ZodObject<{
9238
+ id: z.ZodNumber;
9239
+ family: z.ZodString;
9240
+ weight: z.ZodNumber;
9241
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
9242
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
9243
+ is_archived: z.ZodBoolean;
9244
+ asset_key: z.ZodString;
9245
+ url: z.ZodString;
9246
+ created_at: z.ZodString;
9247
+ updated_at: z.ZodString;
9248
+ }, "strip", z.ZodTypeAny, {
9249
+ id: number;
9250
+ url: string;
9251
+ created_at: string;
9252
+ updated_at: string;
9253
+ style: "NORMAL" | "ITALIC";
9254
+ family: string;
9255
+ weight: number;
9256
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9257
+ is_archived: boolean;
9258
+ asset_key: string;
9259
+ }, {
9260
+ id: number;
9261
+ url: string;
9262
+ created_at: string;
9263
+ updated_at: string;
9264
+ style: "NORMAL" | "ITALIC";
9265
+ family: string;
9266
+ weight: number;
9267
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9268
+ is_archived: boolean;
9269
+ asset_key: string;
9270
+ }>;
9271
+ }, "strip", z.ZodTypeAny, {
9272
+ role: "BODY" | "HEADING";
9273
+ font_id: number;
9274
+ font: {
9275
+ id: number;
9276
+ url: string;
9277
+ created_at: string;
9278
+ updated_at: string;
9279
+ style: "NORMAL" | "ITALIC";
9280
+ family: string;
9281
+ weight: number;
9282
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9283
+ is_archived: boolean;
9284
+ asset_key: string;
9285
+ };
9286
+ }, {
9287
+ role: "BODY" | "HEADING";
9288
+ font_id: number;
9289
+ font: {
9290
+ id: number;
9291
+ url: string;
9292
+ created_at: string;
9293
+ updated_at: string;
9294
+ style: "NORMAL" | "ITALIC";
9295
+ family: string;
9296
+ weight: number;
9297
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9298
+ is_archived: boolean;
9299
+ asset_key: string;
9300
+ };
9301
+ }>, "many">;
9302
+ message: z.ZodString;
9303
+ published_at: z.ZodString;
9304
+ created_at: z.ZodString;
9305
+ updated_at: z.ZodString;
9306
+ }, "strip", z.ZodTypeAny, {
9307
+ message: string;
9308
+ status: "archived" | "draft" | "published";
9309
+ id: number;
9310
+ property_id: number;
9311
+ created_at: string;
9312
+ updated_at: string;
9313
+ version: number;
9314
+ config: {
9315
+ heading_size: number;
9316
+ subheading_size: number;
9317
+ body_size: number;
9318
+ small_body_size: number;
9319
+ color_bg: string;
9320
+ color_text: string;
9321
+ color_text_muted: string;
9322
+ color_primary_btn_bg: string;
9323
+ color_primary_btn_text: string;
9324
+ color_secondary_border: string;
9325
+ color_link: string;
9326
+ color_card_text: string;
9327
+ radius_button: number;
9328
+ radius_card: number;
9329
+ };
9330
+ parent_id: number;
9331
+ fonts: {
9332
+ role: "BODY" | "HEADING";
9333
+ font_id: number;
9334
+ font: {
9335
+ id: number;
9336
+ url: string;
9337
+ created_at: string;
9338
+ updated_at: string;
9339
+ style: "NORMAL" | "ITALIC";
9340
+ family: string;
9341
+ weight: number;
9342
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9343
+ is_archived: boolean;
9344
+ asset_key: string;
9345
+ };
9346
+ }[];
9347
+ published_at: string;
9348
+ }, {
9349
+ message: string;
9350
+ status: "archived" | "draft" | "published";
9351
+ id: number;
9352
+ property_id: number;
9353
+ created_at: string;
9354
+ updated_at: string;
9355
+ version: number;
9356
+ config: {
9357
+ heading_size: number;
9358
+ subheading_size: number;
9359
+ body_size: number;
9360
+ small_body_size: number;
9361
+ color_bg: string;
9362
+ color_text: string;
9363
+ color_text_muted: string;
9364
+ color_primary_btn_bg: string;
9365
+ color_primary_btn_text: string;
9366
+ color_secondary_border: string;
9367
+ color_link: string;
9368
+ color_card_text: string;
9369
+ radius_button: number;
9370
+ radius_card: number;
9371
+ };
9372
+ parent_id: number;
9373
+ fonts: {
9374
+ role: "BODY" | "HEADING";
9375
+ font_id: number;
9376
+ font: {
9377
+ id: number;
9378
+ url: string;
9379
+ created_at: string;
9380
+ updated_at: string;
9381
+ style: "NORMAL" | "ITALIC";
9382
+ family: string;
9383
+ weight: number;
9384
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9385
+ is_archived: boolean;
9386
+ asset_key: string;
9387
+ };
9388
+ }[];
9389
+ published_at: string;
9390
+ }>;
9391
+ export type ThemeRow = z.infer<typeof ThemeRowSchema>;
9392
+ export declare const ThemeVersionSummarySchema: z.ZodObject<{
9393
+ id: z.ZodNumber;
9394
+ version: z.ZodNumber;
9395
+ status: z.ZodEnum<["published", "archived"]>;
9396
+ is_published: z.ZodBoolean;
9397
+ message: z.ZodString;
9398
+ published_at: z.ZodString;
9399
+ created_at: z.ZodString;
9400
+ }, "strip", z.ZodTypeAny, {
9401
+ message: string;
9402
+ status: "archived" | "published";
9403
+ id: number;
9404
+ created_at: string;
9405
+ version: number;
9406
+ published_at: string;
9407
+ is_published: boolean;
9408
+ }, {
9409
+ message: string;
9410
+ status: "archived" | "published";
9411
+ id: number;
9412
+ created_at: string;
9413
+ version: number;
9414
+ published_at: string;
9415
+ is_published: boolean;
9416
+ }>;
9417
+ export type ThemeVersionSummary = z.infer<typeof ThemeVersionSummarySchema>;
9418
+ export declare const ThemeStateSchema: z.ZodObject<{
9419
+ current: z.ZodObject<{
9420
+ id: z.ZodNumber;
9421
+ property_id: z.ZodNumber;
9422
+ parent_id: z.ZodNumber;
9423
+ version: z.ZodNumber;
9424
+ status: z.ZodEnum<["draft", "published", "archived"]>;
9425
+ config: z.ZodObject<{
9426
+ heading_size: z.ZodNumber;
9427
+ subheading_size: z.ZodNumber;
9428
+ body_size: z.ZodNumber;
9429
+ small_body_size: z.ZodNumber;
9430
+ color_bg: z.ZodString;
9431
+ color_text: z.ZodString;
9432
+ color_text_muted: z.ZodString;
9433
+ color_primary_btn_bg: z.ZodString;
9434
+ color_primary_btn_text: z.ZodString;
9435
+ color_secondary_border: z.ZodString;
9436
+ color_link: z.ZodString;
9437
+ color_card_text: z.ZodString;
9438
+ radius_button: z.ZodNumber;
9439
+ radius_card: z.ZodNumber;
9440
+ }, "strip", z.ZodTypeAny, {
9441
+ heading_size: number;
9442
+ subheading_size: number;
9443
+ body_size: number;
9444
+ small_body_size: number;
9445
+ color_bg: string;
9446
+ color_text: string;
9447
+ color_text_muted: string;
9448
+ color_primary_btn_bg: string;
9449
+ color_primary_btn_text: string;
9450
+ color_secondary_border: string;
9451
+ color_link: string;
9452
+ color_card_text: string;
9453
+ radius_button: number;
9454
+ radius_card: number;
9455
+ }, {
9456
+ heading_size: number;
9457
+ subheading_size: number;
9458
+ body_size: number;
9459
+ small_body_size: number;
9460
+ color_bg: string;
9461
+ color_text: string;
9462
+ color_text_muted: string;
9463
+ color_primary_btn_bg: string;
9464
+ color_primary_btn_text: string;
9465
+ color_secondary_border: string;
9466
+ color_link: string;
9467
+ color_card_text: string;
9468
+ radius_button: number;
9469
+ radius_card: number;
9470
+ }>;
9471
+ fonts: z.ZodArray<z.ZodObject<{
9472
+ font_id: z.ZodNumber;
9473
+ role: z.ZodEnum<["BODY", "HEADING"]>;
9474
+ font: z.ZodObject<{
9475
+ id: z.ZodNumber;
9476
+ family: z.ZodString;
9477
+ weight: z.ZodNumber;
9478
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
9479
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
9480
+ is_archived: z.ZodBoolean;
9481
+ asset_key: z.ZodString;
9482
+ url: z.ZodString;
9483
+ created_at: z.ZodString;
9484
+ updated_at: z.ZodString;
9485
+ }, "strip", z.ZodTypeAny, {
9486
+ id: number;
9487
+ url: string;
9488
+ created_at: string;
9489
+ updated_at: string;
9490
+ style: "NORMAL" | "ITALIC";
9491
+ family: string;
9492
+ weight: number;
9493
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9494
+ is_archived: boolean;
9495
+ asset_key: string;
9496
+ }, {
9497
+ id: number;
9498
+ url: string;
9499
+ created_at: string;
9500
+ updated_at: string;
9501
+ style: "NORMAL" | "ITALIC";
9502
+ family: string;
9503
+ weight: number;
9504
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9505
+ is_archived: boolean;
9506
+ asset_key: string;
9507
+ }>;
9508
+ }, "strip", z.ZodTypeAny, {
9509
+ role: "BODY" | "HEADING";
9510
+ font_id: number;
9511
+ font: {
9512
+ id: number;
9513
+ url: string;
9514
+ created_at: string;
9515
+ updated_at: string;
9516
+ style: "NORMAL" | "ITALIC";
9517
+ family: string;
9518
+ weight: number;
9519
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9520
+ is_archived: boolean;
9521
+ asset_key: string;
9522
+ };
9523
+ }, {
9524
+ role: "BODY" | "HEADING";
9525
+ font_id: number;
9526
+ font: {
9527
+ id: number;
9528
+ url: string;
9529
+ created_at: string;
9530
+ updated_at: string;
9531
+ style: "NORMAL" | "ITALIC";
9532
+ family: string;
9533
+ weight: number;
9534
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9535
+ is_archived: boolean;
9536
+ asset_key: string;
9537
+ };
9538
+ }>, "many">;
9539
+ message: z.ZodString;
9540
+ published_at: z.ZodString;
9541
+ created_at: z.ZodString;
9542
+ updated_at: z.ZodString;
9543
+ }, "strip", z.ZodTypeAny, {
9544
+ message: string;
9545
+ status: "archived" | "draft" | "published";
9546
+ id: number;
9547
+ property_id: number;
9548
+ created_at: string;
9549
+ updated_at: string;
9550
+ version: number;
9551
+ config: {
9552
+ heading_size: number;
9553
+ subheading_size: number;
9554
+ body_size: number;
9555
+ small_body_size: number;
9556
+ color_bg: string;
9557
+ color_text: string;
9558
+ color_text_muted: string;
9559
+ color_primary_btn_bg: string;
9560
+ color_primary_btn_text: string;
9561
+ color_secondary_border: string;
9562
+ color_link: string;
9563
+ color_card_text: string;
9564
+ radius_button: number;
9565
+ radius_card: number;
9566
+ };
9567
+ parent_id: number;
9568
+ fonts: {
9569
+ role: "BODY" | "HEADING";
9570
+ font_id: number;
9571
+ font: {
9572
+ id: number;
9573
+ url: string;
9574
+ created_at: string;
9575
+ updated_at: string;
9576
+ style: "NORMAL" | "ITALIC";
9577
+ family: string;
9578
+ weight: number;
9579
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9580
+ is_archived: boolean;
9581
+ asset_key: string;
9582
+ };
9583
+ }[];
9584
+ published_at: string;
9585
+ }, {
9586
+ message: string;
9587
+ status: "archived" | "draft" | "published";
9588
+ id: number;
9589
+ property_id: number;
9590
+ created_at: string;
9591
+ updated_at: string;
9592
+ version: number;
9593
+ config: {
9594
+ heading_size: number;
9595
+ subheading_size: number;
9596
+ body_size: number;
9597
+ small_body_size: number;
9598
+ color_bg: string;
9599
+ color_text: string;
9600
+ color_text_muted: string;
9601
+ color_primary_btn_bg: string;
9602
+ color_primary_btn_text: string;
9603
+ color_secondary_border: string;
9604
+ color_link: string;
9605
+ color_card_text: string;
9606
+ radius_button: number;
9607
+ radius_card: number;
9608
+ };
9609
+ parent_id: number;
9610
+ fonts: {
9611
+ role: "BODY" | "HEADING";
9612
+ font_id: number;
9613
+ font: {
9614
+ id: number;
9615
+ url: string;
9616
+ created_at: string;
9617
+ updated_at: string;
9618
+ style: "NORMAL" | "ITALIC";
9619
+ family: string;
9620
+ weight: number;
9621
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9622
+ is_archived: boolean;
9623
+ asset_key: string;
9624
+ };
9625
+ }[];
9626
+ published_at: string;
9627
+ }>;
9628
+ live: z.ZodOptional<z.ZodObject<{
9629
+ id: z.ZodNumber;
9630
+ property_id: z.ZodNumber;
9631
+ parent_id: z.ZodNumber;
9632
+ version: z.ZodNumber;
9633
+ status: z.ZodEnum<["draft", "published", "archived"]>;
9634
+ config: z.ZodObject<{
9635
+ heading_size: z.ZodNumber;
9636
+ subheading_size: z.ZodNumber;
9637
+ body_size: z.ZodNumber;
9638
+ small_body_size: z.ZodNumber;
9639
+ color_bg: z.ZodString;
9640
+ color_text: z.ZodString;
9641
+ color_text_muted: z.ZodString;
9642
+ color_primary_btn_bg: z.ZodString;
9643
+ color_primary_btn_text: z.ZodString;
9644
+ color_secondary_border: z.ZodString;
9645
+ color_link: z.ZodString;
9646
+ color_card_text: z.ZodString;
9647
+ radius_button: z.ZodNumber;
9648
+ radius_card: z.ZodNumber;
9649
+ }, "strip", z.ZodTypeAny, {
9650
+ heading_size: number;
9651
+ subheading_size: number;
9652
+ body_size: number;
9653
+ small_body_size: number;
9654
+ color_bg: string;
9655
+ color_text: string;
9656
+ color_text_muted: string;
9657
+ color_primary_btn_bg: string;
9658
+ color_primary_btn_text: string;
9659
+ color_secondary_border: string;
9660
+ color_link: string;
9661
+ color_card_text: string;
9662
+ radius_button: number;
9663
+ radius_card: number;
9664
+ }, {
9665
+ heading_size: number;
9666
+ subheading_size: number;
9667
+ body_size: number;
9668
+ small_body_size: number;
9669
+ color_bg: string;
9670
+ color_text: string;
9671
+ color_text_muted: string;
9672
+ color_primary_btn_bg: string;
9673
+ color_primary_btn_text: string;
9674
+ color_secondary_border: string;
9675
+ color_link: string;
9676
+ color_card_text: string;
9677
+ radius_button: number;
9678
+ radius_card: number;
9679
+ }>;
9680
+ fonts: z.ZodArray<z.ZodObject<{
9681
+ font_id: z.ZodNumber;
9682
+ role: z.ZodEnum<["BODY", "HEADING"]>;
9683
+ font: z.ZodObject<{
9684
+ id: z.ZodNumber;
9685
+ family: z.ZodString;
9686
+ weight: z.ZodNumber;
9687
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
9688
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
9689
+ is_archived: z.ZodBoolean;
9690
+ asset_key: z.ZodString;
9691
+ url: z.ZodString;
9692
+ created_at: z.ZodString;
9693
+ updated_at: z.ZodString;
9694
+ }, "strip", z.ZodTypeAny, {
9695
+ id: number;
9696
+ url: string;
9697
+ created_at: string;
9698
+ updated_at: string;
9699
+ style: "NORMAL" | "ITALIC";
9700
+ family: string;
9701
+ weight: number;
9702
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9703
+ is_archived: boolean;
9704
+ asset_key: string;
9705
+ }, {
9706
+ id: number;
9707
+ url: string;
9708
+ created_at: string;
9709
+ updated_at: string;
9710
+ style: "NORMAL" | "ITALIC";
9711
+ family: string;
9712
+ weight: number;
9713
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9714
+ is_archived: boolean;
9715
+ asset_key: string;
9716
+ }>;
9717
+ }, "strip", z.ZodTypeAny, {
9718
+ role: "BODY" | "HEADING";
9719
+ font_id: number;
9720
+ font: {
9721
+ id: number;
9722
+ url: string;
9723
+ created_at: string;
9724
+ updated_at: string;
9725
+ style: "NORMAL" | "ITALIC";
9726
+ family: string;
9727
+ weight: number;
9728
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9729
+ is_archived: boolean;
9730
+ asset_key: string;
9731
+ };
9732
+ }, {
9733
+ role: "BODY" | "HEADING";
9734
+ font_id: number;
9735
+ font: {
9736
+ id: number;
9737
+ url: string;
9738
+ created_at: string;
9739
+ updated_at: string;
9740
+ style: "NORMAL" | "ITALIC";
9741
+ family: string;
9742
+ weight: number;
9743
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9744
+ is_archived: boolean;
9745
+ asset_key: string;
9746
+ };
9747
+ }>, "many">;
9748
+ message: z.ZodString;
9749
+ published_at: z.ZodString;
9750
+ created_at: z.ZodString;
9751
+ updated_at: z.ZodString;
9752
+ }, "strip", z.ZodTypeAny, {
9753
+ message: string;
9754
+ status: "archived" | "draft" | "published";
9755
+ id: number;
9756
+ property_id: number;
9757
+ created_at: string;
9758
+ updated_at: string;
9759
+ version: number;
9760
+ config: {
9761
+ heading_size: number;
9762
+ subheading_size: number;
9763
+ body_size: number;
9764
+ small_body_size: number;
9765
+ color_bg: string;
9766
+ color_text: string;
9767
+ color_text_muted: string;
9768
+ color_primary_btn_bg: string;
9769
+ color_primary_btn_text: string;
9770
+ color_secondary_border: string;
9771
+ color_link: string;
9772
+ color_card_text: string;
9773
+ radius_button: number;
9774
+ radius_card: number;
9775
+ };
9776
+ parent_id: number;
9777
+ fonts: {
9778
+ role: "BODY" | "HEADING";
9779
+ font_id: number;
9780
+ font: {
9781
+ id: number;
9782
+ url: string;
9783
+ created_at: string;
9784
+ updated_at: string;
9785
+ style: "NORMAL" | "ITALIC";
9786
+ family: string;
9787
+ weight: number;
9788
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9789
+ is_archived: boolean;
9790
+ asset_key: string;
9791
+ };
9792
+ }[];
9793
+ published_at: string;
9794
+ }, {
9795
+ message: string;
9796
+ status: "archived" | "draft" | "published";
9797
+ id: number;
9798
+ property_id: number;
9799
+ created_at: string;
9800
+ updated_at: string;
9801
+ version: number;
9802
+ config: {
9803
+ heading_size: number;
9804
+ subheading_size: number;
9805
+ body_size: number;
9806
+ small_body_size: number;
9807
+ color_bg: string;
9808
+ color_text: string;
9809
+ color_text_muted: string;
9810
+ color_primary_btn_bg: string;
9811
+ color_primary_btn_text: string;
9812
+ color_secondary_border: string;
9813
+ color_link: string;
9814
+ color_card_text: string;
9815
+ radius_button: number;
9816
+ radius_card: number;
9817
+ };
9818
+ parent_id: number;
9819
+ fonts: {
9820
+ role: "BODY" | "HEADING";
9821
+ font_id: number;
9822
+ font: {
9823
+ id: number;
9824
+ url: string;
9825
+ created_at: string;
9826
+ updated_at: string;
9827
+ style: "NORMAL" | "ITALIC";
9828
+ family: string;
9829
+ weight: number;
9830
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9831
+ is_archived: boolean;
9832
+ asset_key: string;
9833
+ };
9834
+ }[];
9835
+ published_at: string;
9836
+ }>>;
9837
+ versions: z.ZodArray<z.ZodObject<{
9838
+ id: z.ZodNumber;
9839
+ version: z.ZodNumber;
9840
+ status: z.ZodEnum<["published", "archived"]>;
9841
+ is_published: z.ZodBoolean;
9842
+ message: z.ZodString;
9843
+ published_at: z.ZodString;
9844
+ created_at: z.ZodString;
9845
+ }, "strip", z.ZodTypeAny, {
9846
+ message: string;
9847
+ status: "archived" | "published";
9848
+ id: number;
9849
+ created_at: string;
9850
+ version: number;
9851
+ published_at: string;
9852
+ is_published: boolean;
9853
+ }, {
9854
+ message: string;
9855
+ status: "archived" | "published";
9856
+ id: number;
9857
+ created_at: string;
9858
+ version: number;
9859
+ published_at: string;
9860
+ is_published: boolean;
9861
+ }>, "many">;
9862
+ }, "strip", z.ZodTypeAny, {
9863
+ current: {
9864
+ message: string;
9865
+ status: "archived" | "draft" | "published";
9866
+ id: number;
9867
+ property_id: number;
9868
+ created_at: string;
9869
+ updated_at: string;
9870
+ version: number;
9871
+ config: {
9872
+ heading_size: number;
9873
+ subheading_size: number;
9874
+ body_size: number;
9875
+ small_body_size: number;
9876
+ color_bg: string;
9877
+ color_text: string;
9878
+ color_text_muted: string;
9879
+ color_primary_btn_bg: string;
9880
+ color_primary_btn_text: string;
9881
+ color_secondary_border: string;
9882
+ color_link: string;
9883
+ color_card_text: string;
9884
+ radius_button: number;
9885
+ radius_card: number;
9886
+ };
9887
+ parent_id: number;
9888
+ fonts: {
9889
+ role: "BODY" | "HEADING";
9890
+ font_id: number;
9891
+ font: {
9892
+ id: number;
9893
+ url: string;
9894
+ created_at: string;
9895
+ updated_at: string;
9896
+ style: "NORMAL" | "ITALIC";
9897
+ family: string;
9898
+ weight: number;
9899
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9900
+ is_archived: boolean;
9901
+ asset_key: string;
9902
+ };
9903
+ }[];
9904
+ published_at: string;
9905
+ };
9906
+ versions: {
9907
+ message: string;
9908
+ status: "archived" | "published";
9909
+ id: number;
9910
+ created_at: string;
9911
+ version: number;
9912
+ published_at: string;
9913
+ is_published: boolean;
9914
+ }[];
9915
+ live?: {
9916
+ message: string;
9917
+ status: "archived" | "draft" | "published";
9918
+ id: number;
9919
+ property_id: number;
9920
+ created_at: string;
9921
+ updated_at: string;
9922
+ version: number;
9923
+ config: {
9924
+ heading_size: number;
9925
+ subheading_size: number;
9926
+ body_size: number;
9927
+ small_body_size: number;
9928
+ color_bg: string;
9929
+ color_text: string;
9930
+ color_text_muted: string;
9931
+ color_primary_btn_bg: string;
9932
+ color_primary_btn_text: string;
9933
+ color_secondary_border: string;
9934
+ color_link: string;
9935
+ color_card_text: string;
9936
+ radius_button: number;
9937
+ radius_card: number;
9938
+ };
9939
+ parent_id: number;
9940
+ fonts: {
9941
+ role: "BODY" | "HEADING";
9942
+ font_id: number;
9943
+ font: {
9944
+ id: number;
9945
+ url: string;
9946
+ created_at: string;
9947
+ updated_at: string;
9948
+ style: "NORMAL" | "ITALIC";
9949
+ family: string;
9950
+ weight: number;
9951
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9952
+ is_archived: boolean;
9953
+ asset_key: string;
9954
+ };
9955
+ }[];
9956
+ published_at: string;
9957
+ } | undefined;
9958
+ }, {
9959
+ current: {
9960
+ message: string;
9961
+ status: "archived" | "draft" | "published";
9962
+ id: number;
9963
+ property_id: number;
9964
+ created_at: string;
9965
+ updated_at: string;
9966
+ version: number;
9967
+ config: {
9968
+ heading_size: number;
9969
+ subheading_size: number;
9970
+ body_size: number;
9971
+ small_body_size: number;
9972
+ color_bg: string;
9973
+ color_text: string;
9974
+ color_text_muted: string;
9975
+ color_primary_btn_bg: string;
9976
+ color_primary_btn_text: string;
9977
+ color_secondary_border: string;
9978
+ color_link: string;
9979
+ color_card_text: string;
9980
+ radius_button: number;
9981
+ radius_card: number;
9982
+ };
9983
+ parent_id: number;
9984
+ fonts: {
9985
+ role: "BODY" | "HEADING";
9986
+ font_id: number;
9987
+ font: {
9988
+ id: number;
9989
+ url: string;
9990
+ created_at: string;
9991
+ updated_at: string;
9992
+ style: "NORMAL" | "ITALIC";
9993
+ family: string;
9994
+ weight: number;
9995
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
9996
+ is_archived: boolean;
9997
+ asset_key: string;
9998
+ };
9999
+ }[];
10000
+ published_at: string;
10001
+ };
10002
+ versions: {
10003
+ message: string;
10004
+ status: "archived" | "published";
10005
+ id: number;
10006
+ created_at: string;
10007
+ version: number;
10008
+ published_at: string;
10009
+ is_published: boolean;
10010
+ }[];
10011
+ live?: {
10012
+ message: string;
10013
+ status: "archived" | "draft" | "published";
10014
+ id: number;
10015
+ property_id: number;
10016
+ created_at: string;
10017
+ updated_at: string;
10018
+ version: number;
10019
+ config: {
10020
+ heading_size: number;
10021
+ subheading_size: number;
10022
+ body_size: number;
10023
+ small_body_size: number;
10024
+ color_bg: string;
10025
+ color_text: string;
10026
+ color_text_muted: string;
10027
+ color_primary_btn_bg: string;
10028
+ color_primary_btn_text: string;
10029
+ color_secondary_border: string;
10030
+ color_link: string;
10031
+ color_card_text: string;
10032
+ radius_button: number;
10033
+ radius_card: number;
10034
+ };
10035
+ parent_id: number;
10036
+ fonts: {
10037
+ role: "BODY" | "HEADING";
10038
+ font_id: number;
10039
+ font: {
10040
+ id: number;
10041
+ url: string;
10042
+ created_at: string;
10043
+ updated_at: string;
10044
+ style: "NORMAL" | "ITALIC";
10045
+ family: string;
10046
+ weight: number;
10047
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10048
+ is_archived: boolean;
10049
+ asset_key: string;
10050
+ };
10051
+ }[];
10052
+ published_at: string;
10053
+ } | undefined;
10054
+ }>;
10055
+ export type ThemeState = z.infer<typeof ThemeStateSchema>;
10056
+ export declare const ThemeStateResponseSchema: z.ZodObject<{
10057
+ data: z.ZodObject<{
10058
+ current: z.ZodObject<{
10059
+ id: z.ZodNumber;
10060
+ property_id: z.ZodNumber;
10061
+ parent_id: z.ZodNumber;
10062
+ version: z.ZodNumber;
10063
+ status: z.ZodEnum<["draft", "published", "archived"]>;
10064
+ config: z.ZodObject<{
10065
+ heading_size: z.ZodNumber;
10066
+ subheading_size: z.ZodNumber;
10067
+ body_size: z.ZodNumber;
10068
+ small_body_size: z.ZodNumber;
10069
+ color_bg: z.ZodString;
10070
+ color_text: z.ZodString;
10071
+ color_text_muted: z.ZodString;
10072
+ color_primary_btn_bg: z.ZodString;
10073
+ color_primary_btn_text: z.ZodString;
10074
+ color_secondary_border: z.ZodString;
10075
+ color_link: z.ZodString;
10076
+ color_card_text: z.ZodString;
10077
+ radius_button: z.ZodNumber;
10078
+ radius_card: z.ZodNumber;
10079
+ }, "strip", z.ZodTypeAny, {
10080
+ heading_size: number;
10081
+ subheading_size: number;
10082
+ body_size: number;
10083
+ small_body_size: number;
10084
+ color_bg: string;
10085
+ color_text: string;
10086
+ color_text_muted: string;
10087
+ color_primary_btn_bg: string;
10088
+ color_primary_btn_text: string;
10089
+ color_secondary_border: string;
10090
+ color_link: string;
10091
+ color_card_text: string;
10092
+ radius_button: number;
10093
+ radius_card: number;
10094
+ }, {
10095
+ heading_size: number;
10096
+ subheading_size: number;
10097
+ body_size: number;
10098
+ small_body_size: number;
10099
+ color_bg: string;
10100
+ color_text: string;
10101
+ color_text_muted: string;
10102
+ color_primary_btn_bg: string;
10103
+ color_primary_btn_text: string;
10104
+ color_secondary_border: string;
10105
+ color_link: string;
10106
+ color_card_text: string;
10107
+ radius_button: number;
10108
+ radius_card: number;
10109
+ }>;
10110
+ fonts: z.ZodArray<z.ZodObject<{
10111
+ font_id: z.ZodNumber;
10112
+ role: z.ZodEnum<["BODY", "HEADING"]>;
10113
+ font: z.ZodObject<{
10114
+ id: z.ZodNumber;
10115
+ family: z.ZodString;
10116
+ weight: z.ZodNumber;
10117
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
10118
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
10119
+ is_archived: z.ZodBoolean;
10120
+ asset_key: z.ZodString;
10121
+ url: z.ZodString;
10122
+ created_at: z.ZodString;
10123
+ updated_at: z.ZodString;
10124
+ }, "strip", z.ZodTypeAny, {
10125
+ id: number;
10126
+ url: string;
10127
+ created_at: string;
10128
+ updated_at: string;
10129
+ style: "NORMAL" | "ITALIC";
10130
+ family: string;
10131
+ weight: number;
10132
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10133
+ is_archived: boolean;
10134
+ asset_key: string;
10135
+ }, {
10136
+ id: number;
10137
+ url: string;
10138
+ created_at: string;
10139
+ updated_at: string;
10140
+ style: "NORMAL" | "ITALIC";
10141
+ family: string;
10142
+ weight: number;
10143
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10144
+ is_archived: boolean;
10145
+ asset_key: string;
10146
+ }>;
10147
+ }, "strip", z.ZodTypeAny, {
10148
+ role: "BODY" | "HEADING";
10149
+ font_id: number;
10150
+ font: {
10151
+ id: number;
10152
+ url: string;
10153
+ created_at: string;
10154
+ updated_at: string;
10155
+ style: "NORMAL" | "ITALIC";
10156
+ family: string;
10157
+ weight: number;
10158
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10159
+ is_archived: boolean;
10160
+ asset_key: string;
10161
+ };
10162
+ }, {
10163
+ role: "BODY" | "HEADING";
10164
+ font_id: number;
10165
+ font: {
10166
+ id: number;
10167
+ url: string;
10168
+ created_at: string;
10169
+ updated_at: string;
10170
+ style: "NORMAL" | "ITALIC";
10171
+ family: string;
10172
+ weight: number;
10173
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10174
+ is_archived: boolean;
10175
+ asset_key: string;
10176
+ };
10177
+ }>, "many">;
10178
+ message: z.ZodString;
10179
+ published_at: z.ZodString;
10180
+ created_at: z.ZodString;
10181
+ updated_at: z.ZodString;
10182
+ }, "strip", z.ZodTypeAny, {
10183
+ message: string;
10184
+ status: "archived" | "draft" | "published";
10185
+ id: number;
10186
+ property_id: number;
10187
+ created_at: string;
10188
+ updated_at: string;
10189
+ version: number;
10190
+ config: {
10191
+ heading_size: number;
10192
+ subheading_size: number;
10193
+ body_size: number;
10194
+ small_body_size: number;
10195
+ color_bg: string;
10196
+ color_text: string;
10197
+ color_text_muted: string;
10198
+ color_primary_btn_bg: string;
10199
+ color_primary_btn_text: string;
10200
+ color_secondary_border: string;
10201
+ color_link: string;
10202
+ color_card_text: string;
10203
+ radius_button: number;
10204
+ radius_card: number;
10205
+ };
10206
+ parent_id: number;
10207
+ fonts: {
10208
+ role: "BODY" | "HEADING";
10209
+ font_id: number;
10210
+ font: {
10211
+ id: number;
10212
+ url: string;
10213
+ created_at: string;
10214
+ updated_at: string;
10215
+ style: "NORMAL" | "ITALIC";
10216
+ family: string;
10217
+ weight: number;
10218
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10219
+ is_archived: boolean;
10220
+ asset_key: string;
10221
+ };
10222
+ }[];
10223
+ published_at: string;
10224
+ }, {
10225
+ message: string;
10226
+ status: "archived" | "draft" | "published";
10227
+ id: number;
10228
+ property_id: number;
10229
+ created_at: string;
10230
+ updated_at: string;
10231
+ version: number;
10232
+ config: {
10233
+ heading_size: number;
10234
+ subheading_size: number;
10235
+ body_size: number;
10236
+ small_body_size: number;
10237
+ color_bg: string;
10238
+ color_text: string;
10239
+ color_text_muted: string;
10240
+ color_primary_btn_bg: string;
10241
+ color_primary_btn_text: string;
10242
+ color_secondary_border: string;
10243
+ color_link: string;
10244
+ color_card_text: string;
10245
+ radius_button: number;
10246
+ radius_card: number;
10247
+ };
10248
+ parent_id: number;
10249
+ fonts: {
10250
+ role: "BODY" | "HEADING";
10251
+ font_id: number;
10252
+ font: {
10253
+ id: number;
10254
+ url: string;
10255
+ created_at: string;
10256
+ updated_at: string;
10257
+ style: "NORMAL" | "ITALIC";
10258
+ family: string;
10259
+ weight: number;
10260
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10261
+ is_archived: boolean;
10262
+ asset_key: string;
10263
+ };
10264
+ }[];
10265
+ published_at: string;
10266
+ }>;
10267
+ live: z.ZodOptional<z.ZodObject<{
10268
+ id: z.ZodNumber;
10269
+ property_id: z.ZodNumber;
10270
+ parent_id: z.ZodNumber;
10271
+ version: z.ZodNumber;
10272
+ status: z.ZodEnum<["draft", "published", "archived"]>;
10273
+ config: z.ZodObject<{
10274
+ heading_size: z.ZodNumber;
10275
+ subheading_size: z.ZodNumber;
10276
+ body_size: z.ZodNumber;
10277
+ small_body_size: z.ZodNumber;
10278
+ color_bg: z.ZodString;
10279
+ color_text: z.ZodString;
10280
+ color_text_muted: z.ZodString;
10281
+ color_primary_btn_bg: z.ZodString;
10282
+ color_primary_btn_text: z.ZodString;
10283
+ color_secondary_border: z.ZodString;
10284
+ color_link: z.ZodString;
10285
+ color_card_text: z.ZodString;
10286
+ radius_button: z.ZodNumber;
10287
+ radius_card: z.ZodNumber;
10288
+ }, "strip", z.ZodTypeAny, {
10289
+ heading_size: number;
10290
+ subheading_size: number;
10291
+ body_size: number;
10292
+ small_body_size: number;
10293
+ color_bg: string;
10294
+ color_text: string;
10295
+ color_text_muted: string;
10296
+ color_primary_btn_bg: string;
10297
+ color_primary_btn_text: string;
10298
+ color_secondary_border: string;
10299
+ color_link: string;
10300
+ color_card_text: string;
10301
+ radius_button: number;
10302
+ radius_card: number;
10303
+ }, {
10304
+ heading_size: number;
10305
+ subheading_size: number;
10306
+ body_size: number;
10307
+ small_body_size: number;
10308
+ color_bg: string;
10309
+ color_text: string;
10310
+ color_text_muted: string;
10311
+ color_primary_btn_bg: string;
10312
+ color_primary_btn_text: string;
10313
+ color_secondary_border: string;
10314
+ color_link: string;
10315
+ color_card_text: string;
10316
+ radius_button: number;
10317
+ radius_card: number;
10318
+ }>;
10319
+ fonts: z.ZodArray<z.ZodObject<{
10320
+ font_id: z.ZodNumber;
10321
+ role: z.ZodEnum<["BODY", "HEADING"]>;
10322
+ font: z.ZodObject<{
10323
+ id: z.ZodNumber;
10324
+ family: z.ZodString;
10325
+ weight: z.ZodNumber;
10326
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
10327
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
10328
+ is_archived: z.ZodBoolean;
10329
+ asset_key: z.ZodString;
10330
+ url: z.ZodString;
10331
+ created_at: z.ZodString;
10332
+ updated_at: z.ZodString;
10333
+ }, "strip", z.ZodTypeAny, {
10334
+ id: number;
10335
+ url: string;
10336
+ created_at: string;
10337
+ updated_at: string;
10338
+ style: "NORMAL" | "ITALIC";
10339
+ family: string;
10340
+ weight: number;
10341
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10342
+ is_archived: boolean;
10343
+ asset_key: string;
10344
+ }, {
10345
+ id: number;
10346
+ url: string;
10347
+ created_at: string;
10348
+ updated_at: string;
10349
+ style: "NORMAL" | "ITALIC";
10350
+ family: string;
10351
+ weight: number;
10352
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10353
+ is_archived: boolean;
10354
+ asset_key: string;
10355
+ }>;
10356
+ }, "strip", z.ZodTypeAny, {
10357
+ role: "BODY" | "HEADING";
10358
+ font_id: number;
10359
+ font: {
10360
+ id: number;
10361
+ url: string;
10362
+ created_at: string;
10363
+ updated_at: string;
10364
+ style: "NORMAL" | "ITALIC";
10365
+ family: string;
10366
+ weight: number;
10367
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10368
+ is_archived: boolean;
10369
+ asset_key: string;
10370
+ };
10371
+ }, {
10372
+ role: "BODY" | "HEADING";
10373
+ font_id: number;
10374
+ font: {
10375
+ id: number;
10376
+ url: string;
10377
+ created_at: string;
10378
+ updated_at: string;
10379
+ style: "NORMAL" | "ITALIC";
10380
+ family: string;
10381
+ weight: number;
10382
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10383
+ is_archived: boolean;
10384
+ asset_key: string;
10385
+ };
10386
+ }>, "many">;
10387
+ message: z.ZodString;
10388
+ published_at: z.ZodString;
10389
+ created_at: z.ZodString;
10390
+ updated_at: z.ZodString;
10391
+ }, "strip", z.ZodTypeAny, {
10392
+ message: string;
10393
+ status: "archived" | "draft" | "published";
10394
+ id: number;
10395
+ property_id: number;
10396
+ created_at: string;
10397
+ updated_at: string;
10398
+ version: number;
10399
+ config: {
10400
+ heading_size: number;
10401
+ subheading_size: number;
10402
+ body_size: number;
10403
+ small_body_size: number;
10404
+ color_bg: string;
10405
+ color_text: string;
10406
+ color_text_muted: string;
10407
+ color_primary_btn_bg: string;
10408
+ color_primary_btn_text: string;
10409
+ color_secondary_border: string;
10410
+ color_link: string;
10411
+ color_card_text: string;
10412
+ radius_button: number;
10413
+ radius_card: number;
10414
+ };
10415
+ parent_id: number;
10416
+ fonts: {
10417
+ role: "BODY" | "HEADING";
10418
+ font_id: number;
10419
+ font: {
10420
+ id: number;
10421
+ url: string;
10422
+ created_at: string;
10423
+ updated_at: string;
10424
+ style: "NORMAL" | "ITALIC";
10425
+ family: string;
10426
+ weight: number;
10427
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10428
+ is_archived: boolean;
10429
+ asset_key: string;
10430
+ };
10431
+ }[];
10432
+ published_at: string;
10433
+ }, {
10434
+ message: string;
10435
+ status: "archived" | "draft" | "published";
10436
+ id: number;
10437
+ property_id: number;
10438
+ created_at: string;
10439
+ updated_at: string;
10440
+ version: number;
10441
+ config: {
10442
+ heading_size: number;
10443
+ subheading_size: number;
10444
+ body_size: number;
10445
+ small_body_size: number;
10446
+ color_bg: string;
10447
+ color_text: string;
10448
+ color_text_muted: string;
10449
+ color_primary_btn_bg: string;
10450
+ color_primary_btn_text: string;
10451
+ color_secondary_border: string;
10452
+ color_link: string;
10453
+ color_card_text: string;
10454
+ radius_button: number;
10455
+ radius_card: number;
10456
+ };
10457
+ parent_id: number;
10458
+ fonts: {
10459
+ role: "BODY" | "HEADING";
10460
+ font_id: number;
10461
+ font: {
10462
+ id: number;
10463
+ url: string;
10464
+ created_at: string;
10465
+ updated_at: string;
10466
+ style: "NORMAL" | "ITALIC";
10467
+ family: string;
10468
+ weight: number;
10469
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10470
+ is_archived: boolean;
10471
+ asset_key: string;
10472
+ };
10473
+ }[];
10474
+ published_at: string;
10475
+ }>>;
10476
+ versions: z.ZodArray<z.ZodObject<{
10477
+ id: z.ZodNumber;
10478
+ version: z.ZodNumber;
10479
+ status: z.ZodEnum<["published", "archived"]>;
10480
+ is_published: z.ZodBoolean;
10481
+ message: z.ZodString;
10482
+ published_at: z.ZodString;
10483
+ created_at: z.ZodString;
10484
+ }, "strip", z.ZodTypeAny, {
10485
+ message: string;
10486
+ status: "archived" | "published";
10487
+ id: number;
10488
+ created_at: string;
10489
+ version: number;
10490
+ published_at: string;
10491
+ is_published: boolean;
10492
+ }, {
10493
+ message: string;
10494
+ status: "archived" | "published";
10495
+ id: number;
10496
+ created_at: string;
10497
+ version: number;
10498
+ published_at: string;
10499
+ is_published: boolean;
10500
+ }>, "many">;
10501
+ }, "strip", z.ZodTypeAny, {
10502
+ current: {
10503
+ message: string;
10504
+ status: "archived" | "draft" | "published";
10505
+ id: number;
10506
+ property_id: number;
10507
+ created_at: string;
10508
+ updated_at: string;
10509
+ version: number;
10510
+ config: {
10511
+ heading_size: number;
10512
+ subheading_size: number;
10513
+ body_size: number;
10514
+ small_body_size: number;
10515
+ color_bg: string;
10516
+ color_text: string;
10517
+ color_text_muted: string;
10518
+ color_primary_btn_bg: string;
10519
+ color_primary_btn_text: string;
10520
+ color_secondary_border: string;
10521
+ color_link: string;
10522
+ color_card_text: string;
10523
+ radius_button: number;
10524
+ radius_card: number;
10525
+ };
10526
+ parent_id: number;
10527
+ fonts: {
10528
+ role: "BODY" | "HEADING";
10529
+ font_id: number;
10530
+ font: {
10531
+ id: number;
10532
+ url: string;
10533
+ created_at: string;
10534
+ updated_at: string;
10535
+ style: "NORMAL" | "ITALIC";
10536
+ family: string;
10537
+ weight: number;
10538
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10539
+ is_archived: boolean;
10540
+ asset_key: string;
10541
+ };
10542
+ }[];
10543
+ published_at: string;
10544
+ };
10545
+ versions: {
10546
+ message: string;
10547
+ status: "archived" | "published";
10548
+ id: number;
10549
+ created_at: string;
10550
+ version: number;
10551
+ published_at: string;
10552
+ is_published: boolean;
10553
+ }[];
10554
+ live?: {
10555
+ message: string;
10556
+ status: "archived" | "draft" | "published";
10557
+ id: number;
10558
+ property_id: number;
10559
+ created_at: string;
10560
+ updated_at: string;
10561
+ version: number;
10562
+ config: {
10563
+ heading_size: number;
10564
+ subheading_size: number;
10565
+ body_size: number;
10566
+ small_body_size: number;
10567
+ color_bg: string;
10568
+ color_text: string;
10569
+ color_text_muted: string;
10570
+ color_primary_btn_bg: string;
10571
+ color_primary_btn_text: string;
10572
+ color_secondary_border: string;
10573
+ color_link: string;
10574
+ color_card_text: string;
10575
+ radius_button: number;
10576
+ radius_card: number;
10577
+ };
10578
+ parent_id: number;
10579
+ fonts: {
10580
+ role: "BODY" | "HEADING";
10581
+ font_id: number;
10582
+ font: {
10583
+ id: number;
10584
+ url: string;
10585
+ created_at: string;
10586
+ updated_at: string;
10587
+ style: "NORMAL" | "ITALIC";
10588
+ family: string;
10589
+ weight: number;
10590
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10591
+ is_archived: boolean;
10592
+ asset_key: string;
10593
+ };
10594
+ }[];
10595
+ published_at: string;
10596
+ } | undefined;
10597
+ }, {
10598
+ current: {
10599
+ message: string;
10600
+ status: "archived" | "draft" | "published";
10601
+ id: number;
10602
+ property_id: number;
10603
+ created_at: string;
10604
+ updated_at: string;
10605
+ version: number;
10606
+ config: {
10607
+ heading_size: number;
10608
+ subheading_size: number;
10609
+ body_size: number;
10610
+ small_body_size: number;
10611
+ color_bg: string;
10612
+ color_text: string;
10613
+ color_text_muted: string;
10614
+ color_primary_btn_bg: string;
10615
+ color_primary_btn_text: string;
10616
+ color_secondary_border: string;
10617
+ color_link: string;
10618
+ color_card_text: string;
10619
+ radius_button: number;
10620
+ radius_card: number;
10621
+ };
10622
+ parent_id: number;
10623
+ fonts: {
10624
+ role: "BODY" | "HEADING";
10625
+ font_id: number;
10626
+ font: {
10627
+ id: number;
10628
+ url: string;
10629
+ created_at: string;
10630
+ updated_at: string;
10631
+ style: "NORMAL" | "ITALIC";
10632
+ family: string;
10633
+ weight: number;
10634
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10635
+ is_archived: boolean;
10636
+ asset_key: string;
10637
+ };
10638
+ }[];
10639
+ published_at: string;
10640
+ };
10641
+ versions: {
10642
+ message: string;
10643
+ status: "archived" | "published";
10644
+ id: number;
10645
+ created_at: string;
10646
+ version: number;
10647
+ published_at: string;
10648
+ is_published: boolean;
10649
+ }[];
10650
+ live?: {
10651
+ message: string;
10652
+ status: "archived" | "draft" | "published";
10653
+ id: number;
10654
+ property_id: number;
10655
+ created_at: string;
10656
+ updated_at: string;
10657
+ version: number;
10658
+ config: {
10659
+ heading_size: number;
10660
+ subheading_size: number;
10661
+ body_size: number;
10662
+ small_body_size: number;
10663
+ color_bg: string;
10664
+ color_text: string;
10665
+ color_text_muted: string;
10666
+ color_primary_btn_bg: string;
10667
+ color_primary_btn_text: string;
10668
+ color_secondary_border: string;
10669
+ color_link: string;
10670
+ color_card_text: string;
10671
+ radius_button: number;
10672
+ radius_card: number;
10673
+ };
10674
+ parent_id: number;
10675
+ fonts: {
10676
+ role: "BODY" | "HEADING";
10677
+ font_id: number;
10678
+ font: {
10679
+ id: number;
10680
+ url: string;
10681
+ created_at: string;
10682
+ updated_at: string;
10683
+ style: "NORMAL" | "ITALIC";
10684
+ family: string;
10685
+ weight: number;
10686
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10687
+ is_archived: boolean;
10688
+ asset_key: string;
10689
+ };
10690
+ }[];
10691
+ published_at: string;
10692
+ } | undefined;
10693
+ }>;
10694
+ }, "strip", z.ZodTypeAny, {
10695
+ data: {
10696
+ current: {
10697
+ message: string;
10698
+ status: "archived" | "draft" | "published";
10699
+ id: number;
10700
+ property_id: number;
10701
+ created_at: string;
10702
+ updated_at: string;
10703
+ version: number;
10704
+ config: {
10705
+ heading_size: number;
10706
+ subheading_size: number;
10707
+ body_size: number;
10708
+ small_body_size: number;
10709
+ color_bg: string;
10710
+ color_text: string;
10711
+ color_text_muted: string;
10712
+ color_primary_btn_bg: string;
10713
+ color_primary_btn_text: string;
10714
+ color_secondary_border: string;
10715
+ color_link: string;
10716
+ color_card_text: string;
10717
+ radius_button: number;
10718
+ radius_card: number;
10719
+ };
10720
+ parent_id: number;
10721
+ fonts: {
10722
+ role: "BODY" | "HEADING";
10723
+ font_id: number;
10724
+ font: {
10725
+ id: number;
10726
+ url: string;
10727
+ created_at: string;
10728
+ updated_at: string;
10729
+ style: "NORMAL" | "ITALIC";
10730
+ family: string;
10731
+ weight: number;
10732
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10733
+ is_archived: boolean;
10734
+ asset_key: string;
10735
+ };
10736
+ }[];
10737
+ published_at: string;
10738
+ };
10739
+ versions: {
10740
+ message: string;
10741
+ status: "archived" | "published";
10742
+ id: number;
10743
+ created_at: string;
10744
+ version: number;
10745
+ published_at: string;
10746
+ is_published: boolean;
10747
+ }[];
10748
+ live?: {
10749
+ message: string;
10750
+ status: "archived" | "draft" | "published";
10751
+ id: number;
10752
+ property_id: number;
10753
+ created_at: string;
10754
+ updated_at: string;
10755
+ version: number;
10756
+ config: {
10757
+ heading_size: number;
10758
+ subheading_size: number;
10759
+ body_size: number;
10760
+ small_body_size: number;
10761
+ color_bg: string;
10762
+ color_text: string;
10763
+ color_text_muted: string;
10764
+ color_primary_btn_bg: string;
10765
+ color_primary_btn_text: string;
10766
+ color_secondary_border: string;
10767
+ color_link: string;
10768
+ color_card_text: string;
10769
+ radius_button: number;
10770
+ radius_card: number;
10771
+ };
10772
+ parent_id: number;
10773
+ fonts: {
10774
+ role: "BODY" | "HEADING";
10775
+ font_id: number;
10776
+ font: {
10777
+ id: number;
10778
+ url: string;
10779
+ created_at: string;
10780
+ updated_at: string;
10781
+ style: "NORMAL" | "ITALIC";
10782
+ family: string;
10783
+ weight: number;
10784
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10785
+ is_archived: boolean;
10786
+ asset_key: string;
10787
+ };
10788
+ }[];
10789
+ published_at: string;
10790
+ } | undefined;
10791
+ };
10792
+ }, {
10793
+ data: {
10794
+ current: {
10795
+ message: string;
10796
+ status: "archived" | "draft" | "published";
10797
+ id: number;
10798
+ property_id: number;
10799
+ created_at: string;
10800
+ updated_at: string;
10801
+ version: number;
10802
+ config: {
10803
+ heading_size: number;
10804
+ subheading_size: number;
10805
+ body_size: number;
10806
+ small_body_size: number;
10807
+ color_bg: string;
10808
+ color_text: string;
10809
+ color_text_muted: string;
10810
+ color_primary_btn_bg: string;
10811
+ color_primary_btn_text: string;
10812
+ color_secondary_border: string;
10813
+ color_link: string;
10814
+ color_card_text: string;
10815
+ radius_button: number;
10816
+ radius_card: number;
10817
+ };
10818
+ parent_id: number;
10819
+ fonts: {
10820
+ role: "BODY" | "HEADING";
10821
+ font_id: number;
10822
+ font: {
10823
+ id: number;
10824
+ url: string;
10825
+ created_at: string;
10826
+ updated_at: string;
10827
+ style: "NORMAL" | "ITALIC";
10828
+ family: string;
10829
+ weight: number;
10830
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10831
+ is_archived: boolean;
10832
+ asset_key: string;
10833
+ };
10834
+ }[];
10835
+ published_at: string;
10836
+ };
10837
+ versions: {
10838
+ message: string;
10839
+ status: "archived" | "published";
10840
+ id: number;
10841
+ created_at: string;
10842
+ version: number;
10843
+ published_at: string;
10844
+ is_published: boolean;
10845
+ }[];
10846
+ live?: {
10847
+ message: string;
10848
+ status: "archived" | "draft" | "published";
10849
+ id: number;
10850
+ property_id: number;
10851
+ created_at: string;
10852
+ updated_at: string;
10853
+ version: number;
10854
+ config: {
10855
+ heading_size: number;
10856
+ subheading_size: number;
10857
+ body_size: number;
10858
+ small_body_size: number;
10859
+ color_bg: string;
10860
+ color_text: string;
10861
+ color_text_muted: string;
10862
+ color_primary_btn_bg: string;
10863
+ color_primary_btn_text: string;
10864
+ color_secondary_border: string;
10865
+ color_link: string;
10866
+ color_card_text: string;
10867
+ radius_button: number;
10868
+ radius_card: number;
10869
+ };
10870
+ parent_id: number;
10871
+ fonts: {
10872
+ role: "BODY" | "HEADING";
10873
+ font_id: number;
10874
+ font: {
10875
+ id: number;
10876
+ url: string;
10877
+ created_at: string;
10878
+ updated_at: string;
10879
+ style: "NORMAL" | "ITALIC";
10880
+ family: string;
10881
+ weight: number;
10882
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10883
+ is_archived: boolean;
10884
+ asset_key: string;
10885
+ };
10886
+ }[];
10887
+ published_at: string;
10888
+ } | undefined;
10889
+ };
10890
+ }>;
10891
+ export type ThemeStateResponse = z.infer<typeof ThemeStateResponseSchema>;
10892
+ export declare const ThemeRowResponseSchema: z.ZodObject<{
10893
+ data: z.ZodObject<{
10894
+ id: z.ZodNumber;
10895
+ property_id: z.ZodNumber;
10896
+ parent_id: z.ZodNumber;
10897
+ version: z.ZodNumber;
10898
+ status: z.ZodEnum<["draft", "published", "archived"]>;
10899
+ config: z.ZodObject<{
10900
+ heading_size: z.ZodNumber;
10901
+ subheading_size: z.ZodNumber;
10902
+ body_size: z.ZodNumber;
10903
+ small_body_size: z.ZodNumber;
10904
+ color_bg: z.ZodString;
10905
+ color_text: z.ZodString;
10906
+ color_text_muted: z.ZodString;
10907
+ color_primary_btn_bg: z.ZodString;
10908
+ color_primary_btn_text: z.ZodString;
10909
+ color_secondary_border: z.ZodString;
10910
+ color_link: z.ZodString;
10911
+ color_card_text: z.ZodString;
10912
+ radius_button: z.ZodNumber;
10913
+ radius_card: z.ZodNumber;
10914
+ }, "strip", z.ZodTypeAny, {
10915
+ heading_size: number;
10916
+ subheading_size: number;
10917
+ body_size: number;
10918
+ small_body_size: number;
10919
+ color_bg: string;
10920
+ color_text: string;
10921
+ color_text_muted: string;
10922
+ color_primary_btn_bg: string;
10923
+ color_primary_btn_text: string;
10924
+ color_secondary_border: string;
10925
+ color_link: string;
10926
+ color_card_text: string;
10927
+ radius_button: number;
10928
+ radius_card: number;
10929
+ }, {
10930
+ heading_size: number;
10931
+ subheading_size: number;
10932
+ body_size: number;
10933
+ small_body_size: number;
10934
+ color_bg: string;
10935
+ color_text: string;
10936
+ color_text_muted: string;
10937
+ color_primary_btn_bg: string;
10938
+ color_primary_btn_text: string;
10939
+ color_secondary_border: string;
10940
+ color_link: string;
10941
+ color_card_text: string;
10942
+ radius_button: number;
10943
+ radius_card: number;
10944
+ }>;
10945
+ fonts: z.ZodArray<z.ZodObject<{
10946
+ font_id: z.ZodNumber;
10947
+ role: z.ZodEnum<["BODY", "HEADING"]>;
10948
+ font: z.ZodObject<{
10949
+ id: z.ZodNumber;
10950
+ family: z.ZodString;
10951
+ weight: z.ZodNumber;
10952
+ style: z.ZodEnum<["NORMAL", "ITALIC"]>;
10953
+ format: z.ZodEnum<["WOFF2", "WOFF", "TTF", "OTF"]>;
10954
+ is_archived: z.ZodBoolean;
10955
+ asset_key: z.ZodString;
10956
+ url: z.ZodString;
10957
+ created_at: z.ZodString;
10958
+ updated_at: z.ZodString;
10959
+ }, "strip", z.ZodTypeAny, {
10960
+ id: number;
10961
+ url: string;
10962
+ created_at: string;
10963
+ updated_at: string;
10964
+ style: "NORMAL" | "ITALIC";
10965
+ family: string;
10966
+ weight: number;
10967
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10968
+ is_archived: boolean;
10969
+ asset_key: string;
10970
+ }, {
10971
+ id: number;
10972
+ url: string;
10973
+ created_at: string;
10974
+ updated_at: string;
10975
+ style: "NORMAL" | "ITALIC";
10976
+ family: string;
10977
+ weight: number;
10978
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10979
+ is_archived: boolean;
10980
+ asset_key: string;
10981
+ }>;
10982
+ }, "strip", z.ZodTypeAny, {
10983
+ role: "BODY" | "HEADING";
10984
+ font_id: number;
10985
+ font: {
10986
+ id: number;
10987
+ url: string;
10988
+ created_at: string;
10989
+ updated_at: string;
10990
+ style: "NORMAL" | "ITALIC";
10991
+ family: string;
10992
+ weight: number;
10993
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
10994
+ is_archived: boolean;
10995
+ asset_key: string;
10996
+ };
10997
+ }, {
10998
+ role: "BODY" | "HEADING";
10999
+ font_id: number;
11000
+ font: {
11001
+ id: number;
11002
+ url: string;
11003
+ created_at: string;
11004
+ updated_at: string;
11005
+ style: "NORMAL" | "ITALIC";
11006
+ family: string;
11007
+ weight: number;
11008
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
11009
+ is_archived: boolean;
11010
+ asset_key: string;
11011
+ };
11012
+ }>, "many">;
11013
+ message: z.ZodString;
11014
+ published_at: z.ZodString;
11015
+ created_at: z.ZodString;
11016
+ updated_at: z.ZodString;
11017
+ }, "strip", z.ZodTypeAny, {
11018
+ message: string;
11019
+ status: "archived" | "draft" | "published";
11020
+ id: number;
11021
+ property_id: number;
11022
+ created_at: string;
11023
+ updated_at: string;
11024
+ version: number;
11025
+ config: {
11026
+ heading_size: number;
11027
+ subheading_size: number;
11028
+ body_size: number;
11029
+ small_body_size: number;
11030
+ color_bg: string;
11031
+ color_text: string;
11032
+ color_text_muted: string;
11033
+ color_primary_btn_bg: string;
11034
+ color_primary_btn_text: string;
11035
+ color_secondary_border: string;
11036
+ color_link: string;
11037
+ color_card_text: string;
11038
+ radius_button: number;
11039
+ radius_card: number;
11040
+ };
11041
+ parent_id: number;
11042
+ fonts: {
11043
+ role: "BODY" | "HEADING";
11044
+ font_id: number;
11045
+ font: {
11046
+ id: number;
11047
+ url: string;
11048
+ created_at: string;
11049
+ updated_at: string;
11050
+ style: "NORMAL" | "ITALIC";
11051
+ family: string;
11052
+ weight: number;
11053
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
11054
+ is_archived: boolean;
11055
+ asset_key: string;
11056
+ };
11057
+ }[];
11058
+ published_at: string;
11059
+ }, {
11060
+ message: string;
11061
+ status: "archived" | "draft" | "published";
11062
+ id: number;
11063
+ property_id: number;
11064
+ created_at: string;
11065
+ updated_at: string;
11066
+ version: number;
11067
+ config: {
11068
+ heading_size: number;
11069
+ subheading_size: number;
11070
+ body_size: number;
11071
+ small_body_size: number;
11072
+ color_bg: string;
11073
+ color_text: string;
11074
+ color_text_muted: string;
11075
+ color_primary_btn_bg: string;
11076
+ color_primary_btn_text: string;
11077
+ color_secondary_border: string;
11078
+ color_link: string;
11079
+ color_card_text: string;
11080
+ radius_button: number;
11081
+ radius_card: number;
11082
+ };
11083
+ parent_id: number;
11084
+ fonts: {
11085
+ role: "BODY" | "HEADING";
11086
+ font_id: number;
11087
+ font: {
11088
+ id: number;
11089
+ url: string;
11090
+ created_at: string;
11091
+ updated_at: string;
11092
+ style: "NORMAL" | "ITALIC";
11093
+ family: string;
11094
+ weight: number;
11095
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
11096
+ is_archived: boolean;
11097
+ asset_key: string;
11098
+ };
11099
+ }[];
11100
+ published_at: string;
11101
+ }>;
11102
+ }, "strip", z.ZodTypeAny, {
11103
+ data: {
11104
+ message: string;
11105
+ status: "archived" | "draft" | "published";
11106
+ id: number;
11107
+ property_id: number;
11108
+ created_at: string;
11109
+ updated_at: string;
11110
+ version: number;
11111
+ config: {
11112
+ heading_size: number;
11113
+ subheading_size: number;
11114
+ body_size: number;
11115
+ small_body_size: number;
11116
+ color_bg: string;
11117
+ color_text: string;
11118
+ color_text_muted: string;
11119
+ color_primary_btn_bg: string;
11120
+ color_primary_btn_text: string;
11121
+ color_secondary_border: string;
11122
+ color_link: string;
11123
+ color_card_text: string;
11124
+ radius_button: number;
11125
+ radius_card: number;
11126
+ };
11127
+ parent_id: number;
11128
+ fonts: {
11129
+ role: "BODY" | "HEADING";
11130
+ font_id: number;
11131
+ font: {
11132
+ id: number;
11133
+ url: string;
11134
+ created_at: string;
11135
+ updated_at: string;
11136
+ style: "NORMAL" | "ITALIC";
11137
+ family: string;
11138
+ weight: number;
11139
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
11140
+ is_archived: boolean;
11141
+ asset_key: string;
11142
+ };
11143
+ }[];
11144
+ published_at: string;
11145
+ };
11146
+ }, {
11147
+ data: {
11148
+ message: string;
11149
+ status: "archived" | "draft" | "published";
11150
+ id: number;
11151
+ property_id: number;
11152
+ created_at: string;
11153
+ updated_at: string;
11154
+ version: number;
11155
+ config: {
11156
+ heading_size: number;
11157
+ subheading_size: number;
11158
+ body_size: number;
11159
+ small_body_size: number;
11160
+ color_bg: string;
11161
+ color_text: string;
11162
+ color_text_muted: string;
11163
+ color_primary_btn_bg: string;
11164
+ color_primary_btn_text: string;
11165
+ color_secondary_border: string;
11166
+ color_link: string;
11167
+ color_card_text: string;
11168
+ radius_button: number;
11169
+ radius_card: number;
11170
+ };
11171
+ parent_id: number;
11172
+ fonts: {
11173
+ role: "BODY" | "HEADING";
11174
+ font_id: number;
11175
+ font: {
11176
+ id: number;
11177
+ url: string;
11178
+ created_at: string;
11179
+ updated_at: string;
11180
+ style: "NORMAL" | "ITALIC";
11181
+ family: string;
11182
+ weight: number;
11183
+ format: "WOFF2" | "WOFF" | "TTF" | "OTF";
11184
+ is_archived: boolean;
11185
+ asset_key: string;
11186
+ };
11187
+ }[];
11188
+ published_at: string;
11189
+ };
11190
+ }>;
11191
+ export type ThemeRowResponse = z.infer<typeof ThemeRowResponseSchema>;
11192
+ export declare const ThemeVersionsListResponseSchema: z.ZodObject<{
11193
+ data: z.ZodArray<z.ZodObject<{
11194
+ id: z.ZodNumber;
11195
+ version: z.ZodNumber;
11196
+ status: z.ZodEnum<["published", "archived"]>;
11197
+ is_published: z.ZodBoolean;
11198
+ message: z.ZodString;
11199
+ published_at: z.ZodString;
11200
+ created_at: z.ZodString;
11201
+ }, "strip", z.ZodTypeAny, {
11202
+ message: string;
11203
+ status: "archived" | "published";
11204
+ id: number;
11205
+ created_at: string;
11206
+ version: number;
11207
+ published_at: string;
11208
+ is_published: boolean;
11209
+ }, {
11210
+ message: string;
11211
+ status: "archived" | "published";
11212
+ id: number;
11213
+ created_at: string;
11214
+ version: number;
11215
+ published_at: string;
11216
+ is_published: boolean;
11217
+ }>, "many">;
11218
+ }, "strip", z.ZodTypeAny, {
11219
+ data: {
11220
+ message: string;
11221
+ status: "archived" | "published";
11222
+ id: number;
11223
+ created_at: string;
11224
+ version: number;
11225
+ published_at: string;
11226
+ is_published: boolean;
11227
+ }[];
11228
+ }, {
11229
+ data: {
11230
+ message: string;
11231
+ status: "archived" | "published";
11232
+ id: number;
11233
+ created_at: string;
11234
+ version: number;
11235
+ published_at: string;
11236
+ is_published: boolean;
11237
+ }[];
11238
+ }>;
11239
+ export type ThemeVersionsListResponse = z.infer<typeof ThemeVersionsListResponseSchema>;
11240
+ export declare const UpdateThemeDraftPayloadSchema: z.ZodObject<{
11241
+ config: z.ZodObject<{
11242
+ heading_size: z.ZodNumber;
11243
+ subheading_size: z.ZodNumber;
11244
+ body_size: z.ZodNumber;
11245
+ small_body_size: z.ZodNumber;
11246
+ color_bg: z.ZodString;
11247
+ color_text: z.ZodString;
11248
+ color_text_muted: z.ZodString;
11249
+ color_primary_btn_bg: z.ZodString;
11250
+ color_primary_btn_text: z.ZodString;
11251
+ color_secondary_border: z.ZodString;
11252
+ color_link: z.ZodString;
11253
+ color_card_text: z.ZodString;
11254
+ radius_button: z.ZodNumber;
11255
+ radius_card: z.ZodNumber;
11256
+ }, "strip", z.ZodTypeAny, {
11257
+ heading_size: number;
11258
+ subheading_size: number;
11259
+ body_size: number;
11260
+ small_body_size: number;
11261
+ color_bg: string;
11262
+ color_text: string;
11263
+ color_text_muted: string;
11264
+ color_primary_btn_bg: string;
11265
+ color_primary_btn_text: string;
11266
+ color_secondary_border: string;
11267
+ color_link: string;
11268
+ color_card_text: string;
11269
+ radius_button: number;
11270
+ radius_card: number;
11271
+ }, {
11272
+ heading_size: number;
11273
+ subheading_size: number;
11274
+ body_size: number;
11275
+ small_body_size: number;
11276
+ color_bg: string;
11277
+ color_text: string;
11278
+ color_text_muted: string;
11279
+ color_primary_btn_bg: string;
11280
+ color_primary_btn_text: string;
11281
+ color_secondary_border: string;
11282
+ color_link: string;
11283
+ color_card_text: string;
11284
+ radius_button: number;
11285
+ radius_card: number;
11286
+ }>;
11287
+ fonts: z.ZodArray<z.ZodObject<{
11288
+ font_id: z.ZodNumber;
11289
+ role: z.ZodEnum<["BODY", "HEADING"]>;
11290
+ }, "strip", z.ZodTypeAny, {
11291
+ role: "BODY" | "HEADING";
11292
+ font_id: number;
11293
+ }, {
11294
+ role: "BODY" | "HEADING";
11295
+ font_id: number;
11296
+ }>, "many">;
11297
+ }, "strip", z.ZodTypeAny, {
11298
+ config: {
11299
+ heading_size: number;
11300
+ subheading_size: number;
11301
+ body_size: number;
11302
+ small_body_size: number;
11303
+ color_bg: string;
11304
+ color_text: string;
11305
+ color_text_muted: string;
11306
+ color_primary_btn_bg: string;
11307
+ color_primary_btn_text: string;
11308
+ color_secondary_border: string;
11309
+ color_link: string;
11310
+ color_card_text: string;
11311
+ radius_button: number;
11312
+ radius_card: number;
11313
+ };
11314
+ fonts: {
11315
+ role: "BODY" | "HEADING";
11316
+ font_id: number;
11317
+ }[];
11318
+ }, {
11319
+ config: {
11320
+ heading_size: number;
11321
+ subheading_size: number;
11322
+ body_size: number;
11323
+ small_body_size: number;
11324
+ color_bg: string;
11325
+ color_text: string;
11326
+ color_text_muted: string;
11327
+ color_primary_btn_bg: string;
11328
+ color_primary_btn_text: string;
11329
+ color_secondary_border: string;
11330
+ color_link: string;
11331
+ color_card_text: string;
11332
+ radius_button: number;
11333
+ radius_card: number;
11334
+ };
11335
+ fonts: {
11336
+ role: "BODY" | "HEADING";
11337
+ font_id: number;
11338
+ }[];
11339
+ }>;
11340
+ export type UpdateThemeDraftPayload = z.infer<typeof UpdateThemeDraftPayloadSchema>;
11341
+ export declare const PublishThemePayloadSchema: z.ZodObject<{
11342
+ message: z.ZodOptional<z.ZodString>;
11343
+ }, "strip", z.ZodTypeAny, {
11344
+ message?: string | undefined;
11345
+ }, {
11346
+ message?: string | undefined;
11347
+ }>;
11348
+ export type PublishThemePayload = z.infer<typeof PublishThemePayloadSchema>;