@vcp-dev/contracts 0.8.3 → 0.8.4

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.
@@ -187,6 +187,19 @@ export declare const Step5StrategyPlanSchema: z.ZodObject<{
187
187
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
188
188
  }, z.core.$strict>;
189
189
  export type Step5StrategyPlan = z.infer<typeof Step5StrategyPlanSchema>;
190
+ export declare const Step5StructureDetailSchema: z.ZodObject<{
191
+ goal: z.ZodString;
192
+ issue: z.ZodString;
193
+ criteria: z.ZodArray<z.ZodString>;
194
+ resources: z.ZodArray<z.ZodString>;
195
+ risks: z.ZodArray<z.ZodString>;
196
+ execution: z.ZodObject<{
197
+ standard: z.ZodArray<z.ZodString>;
198
+ acceptance: z.ZodArray<z.ZodString>;
199
+ downstream: z.ZodArray<z.ZodString>;
200
+ }, z.core.$strict>;
201
+ }, z.core.$strict>;
202
+ export type Step5StructureDetail = z.infer<typeof Step5StructureDetailSchema>;
190
203
  export declare const Step5EvidenceReferenceSchema: z.ZodObject<{
191
204
  source_type: z.ZodEnum<{
192
205
  step2: "step2";
@@ -539,7 +552,7 @@ export declare const Step5SemrushKeywordCandidateSearchRequestSchema: z.ZodObjec
539
552
  offset: z.ZodDefault<z.ZodNumber>;
540
553
  min_search_volume: z.ZodDefault<z.ZodNumber>;
541
554
  max_keyword_difficulty: z.ZodDefault<z.ZodNumber>;
542
- min_relevance_score: z.ZodDefault<z.ZodLiteral<0>>;
555
+ min_relevance_score: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>]>>;
543
556
  }, z.core.$strict>;
544
557
  export type Step5SemrushKeywordCandidateSearchRequest = z.infer<typeof Step5SemrushKeywordCandidateSearchRequestSchema>;
545
558
  export declare const Step5SemrushKeywordCandidateSchema: z.ZodObject<{
@@ -694,7 +707,10 @@ export declare const Step5GeoQuestionSchema: z.ZodObject<{
694
707
  medium: "medium";
695
708
  low: "low";
696
709
  }>;
697
- source: z.ZodLiteral<"ai_generation">;
710
+ source: z.ZodEnum<{
711
+ ai_generation: "ai_generation";
712
+ user_input: "user_input";
713
+ }>;
698
714
  }, z.core.$strict>;
699
715
  export type Step5GeoQuestion = z.infer<typeof Step5GeoQuestionSchema>;
700
716
  /**
@@ -1071,6 +1087,18 @@ export declare const Step5StrategyItemSchema: z.ZodObject<{
1071
1087
  columns: z.ZodArray<z.ZodString>;
1072
1088
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
1073
1089
  }, z.core.$strict>>>;
1090
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1091
+ goal: z.ZodString;
1092
+ issue: z.ZodString;
1093
+ criteria: z.ZodArray<z.ZodString>;
1094
+ resources: z.ZodArray<z.ZodString>;
1095
+ risks: z.ZodArray<z.ZodString>;
1096
+ execution: z.ZodObject<{
1097
+ standard: z.ZodArray<z.ZodString>;
1098
+ acceptance: z.ZodArray<z.ZodString>;
1099
+ downstream: z.ZodArray<z.ZodString>;
1100
+ }, z.core.$strict>;
1101
+ }, z.core.$strict>>>;
1074
1102
  note_tips: z.ZodArray<z.ZodString>;
1075
1103
  note_placeholder: z.ZodString;
1076
1104
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -1319,6 +1347,29 @@ export declare const Step5StrategyItemSchema: z.ZodObject<{
1319
1347
  snapshot_id: z.ZodString;
1320
1348
  selected_keywords: z.ZodArray<z.ZodString>;
1321
1349
  }, z.core.$strict>>>;
1350
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1351
+ id: z.ZodString;
1352
+ question: z.ZodString;
1353
+ question_type: z.ZodEnum<{
1354
+ category: "category";
1355
+ trust: "trust";
1356
+ selection: "selection";
1357
+ application: "application";
1358
+ parameter: "parameter";
1359
+ cost: "cost";
1360
+ compliance: "compliance";
1361
+ delivery: "delivery";
1362
+ }>;
1363
+ intent_strength: z.ZodEnum<{
1364
+ high: "high";
1365
+ medium: "medium";
1366
+ low: "low";
1367
+ }>;
1368
+ source: z.ZodEnum<{
1369
+ ai_generation: "ai_generation";
1370
+ user_input: "user_input";
1371
+ }>;
1372
+ }, z.core.$strict>>>;
1322
1373
  }, z.core.$strict>>>>;
1323
1374
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1324
1375
  id: z.ZodString;
@@ -1354,7 +1405,7 @@ export declare const Step5SeoGeoPlanRowSchema: z.ZodObject<{
1354
1405
  }, z.core.$strict>;
1355
1406
  export type Step5SeoGeoPlanRow = z.infer<typeof Step5SeoGeoPlanRowSchema>;
1356
1407
  export declare const STEP5_SEO_PAYLOAD_SCHEMA_VERSION: 2;
1357
- export declare const STEP5_SEO_KEYWORD_MIN = 1;
1408
+ export declare const STEP5_SEO_KEYWORD_MIN = 0;
1358
1409
  export declare const STEP5_SEO_KEYWORD_DEFAULT = 20;
1359
1410
  export declare const STEP5_SEO_KEYWORD_MAX = 50;
1360
1411
  export declare const Step5LegacySeoKeywordSchema: z.ZodObject<{
@@ -1468,6 +1519,29 @@ export declare const Step5SeoPayloadV2Schema: z.ZodObject<{
1468
1519
  snapshot_id: z.ZodString;
1469
1520
  selected_keywords: z.ZodArray<z.ZodString>;
1470
1521
  }, z.core.$strict>>>;
1522
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1523
+ id: z.ZodString;
1524
+ question: z.ZodString;
1525
+ question_type: z.ZodEnum<{
1526
+ category: "category";
1527
+ trust: "trust";
1528
+ selection: "selection";
1529
+ application: "application";
1530
+ parameter: "parameter";
1531
+ cost: "cost";
1532
+ compliance: "compliance";
1533
+ delivery: "delivery";
1534
+ }>;
1535
+ intent_strength: z.ZodEnum<{
1536
+ high: "high";
1537
+ medium: "medium";
1538
+ low: "low";
1539
+ }>;
1540
+ source: z.ZodEnum<{
1541
+ ai_generation: "ai_generation";
1542
+ user_input: "user_input";
1543
+ }>;
1544
+ }, z.core.$strict>>>;
1471
1545
  }, z.core.$strict>;
1472
1546
  export type Step5SeoPayloadV2 = z.infer<typeof Step5SeoPayloadV2Schema>;
1473
1547
  export declare const Step5SeoPayloadV2InputSchema: z.ZodObject<{
@@ -1513,6 +1587,29 @@ export declare const Step5SeoPayloadV2InputSchema: z.ZodObject<{
1513
1587
  snapshot_id: z.ZodString;
1514
1588
  selected_keywords: z.ZodArray<z.ZodString>;
1515
1589
  }, z.core.$strict>>>;
1590
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1591
+ id: z.ZodString;
1592
+ question: z.ZodString;
1593
+ question_type: z.ZodEnum<{
1594
+ category: "category";
1595
+ trust: "trust";
1596
+ selection: "selection";
1597
+ application: "application";
1598
+ parameter: "parameter";
1599
+ cost: "cost";
1600
+ compliance: "compliance";
1601
+ delivery: "delivery";
1602
+ }>;
1603
+ intent_strength: z.ZodEnum<{
1604
+ high: "high";
1605
+ medium: "medium";
1606
+ low: "low";
1607
+ }>;
1608
+ source: z.ZodEnum<{
1609
+ ai_generation: "ai_generation";
1610
+ user_input: "user_input";
1611
+ }>;
1612
+ }, z.core.$strict>>>;
1516
1613
  }, z.core.$strict>;
1517
1614
  export type Step5SeoPayloadV2Input = z.infer<typeof Step5SeoPayloadV2InputSchema>;
1518
1615
  export declare const Step5LegacyDecisionCustomPayloadSchema: z.ZodObject<{
@@ -1597,6 +1694,29 @@ export declare const Step5DecisionCustomPayloadSchema: z.ZodUnion<readonly [z.Zo
1597
1694
  snapshot_id: z.ZodString;
1598
1695
  selected_keywords: z.ZodArray<z.ZodString>;
1599
1696
  }, z.core.$strict>>>;
1697
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1698
+ id: z.ZodString;
1699
+ question: z.ZodString;
1700
+ question_type: z.ZodEnum<{
1701
+ category: "category";
1702
+ trust: "trust";
1703
+ selection: "selection";
1704
+ application: "application";
1705
+ parameter: "parameter";
1706
+ cost: "cost";
1707
+ compliance: "compliance";
1708
+ delivery: "delivery";
1709
+ }>;
1710
+ intent_strength: z.ZodEnum<{
1711
+ high: "high";
1712
+ medium: "medium";
1713
+ low: "low";
1714
+ }>;
1715
+ source: z.ZodEnum<{
1716
+ ai_generation: "ai_generation";
1717
+ user_input: "user_input";
1718
+ }>;
1719
+ }, z.core.$strict>>>;
1600
1720
  }, z.core.$strict>, z.ZodObject<{
1601
1721
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
1602
1722
  id: z.ZodString;
@@ -1660,6 +1780,29 @@ export declare const Step5DecisionCustomPayloadInputSchema: z.ZodUnion<readonly
1660
1780
  snapshot_id: z.ZodString;
1661
1781
  selected_keywords: z.ZodArray<z.ZodString>;
1662
1782
  }, z.core.$strict>>>;
1783
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1784
+ id: z.ZodString;
1785
+ question: z.ZodString;
1786
+ question_type: z.ZodEnum<{
1787
+ category: "category";
1788
+ trust: "trust";
1789
+ selection: "selection";
1790
+ application: "application";
1791
+ parameter: "parameter";
1792
+ cost: "cost";
1793
+ compliance: "compliance";
1794
+ delivery: "delivery";
1795
+ }>;
1796
+ intent_strength: z.ZodEnum<{
1797
+ high: "high";
1798
+ medium: "medium";
1799
+ low: "low";
1800
+ }>;
1801
+ source: z.ZodEnum<{
1802
+ ai_generation: "ai_generation";
1803
+ user_input: "user_input";
1804
+ }>;
1805
+ }, z.core.$strict>>>;
1663
1806
  }, z.core.$strict>, z.ZodObject<{
1664
1807
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
1665
1808
  id: z.ZodString;
@@ -1742,6 +1885,29 @@ export declare const Step5StrategyDecisionInputSchema: z.ZodObject<{
1742
1885
  snapshot_id: z.ZodString;
1743
1886
  selected_keywords: z.ZodArray<z.ZodString>;
1744
1887
  }, z.core.$strict>>>;
1888
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1889
+ id: z.ZodString;
1890
+ question: z.ZodString;
1891
+ question_type: z.ZodEnum<{
1892
+ category: "category";
1893
+ trust: "trust";
1894
+ selection: "selection";
1895
+ application: "application";
1896
+ parameter: "parameter";
1897
+ cost: "cost";
1898
+ compliance: "compliance";
1899
+ delivery: "delivery";
1900
+ }>;
1901
+ intent_strength: z.ZodEnum<{
1902
+ high: "high";
1903
+ medium: "medium";
1904
+ low: "low";
1905
+ }>;
1906
+ source: z.ZodEnum<{
1907
+ ai_generation: "ai_generation";
1908
+ user_input: "user_input";
1909
+ }>;
1910
+ }, z.core.$strict>>>;
1745
1911
  }, z.core.$strict>, z.ZodObject<{
1746
1912
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
1747
1913
  id: z.ZodString;
@@ -1831,6 +1997,29 @@ export declare const Step5StrategyDecisionSchema: z.ZodObject<{
1831
1997
  snapshot_id: z.ZodString;
1832
1998
  selected_keywords: z.ZodArray<z.ZodString>;
1833
1999
  }, z.core.$strict>>>;
2000
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2001
+ id: z.ZodString;
2002
+ question: z.ZodString;
2003
+ question_type: z.ZodEnum<{
2004
+ category: "category";
2005
+ trust: "trust";
2006
+ selection: "selection";
2007
+ application: "application";
2008
+ parameter: "parameter";
2009
+ cost: "cost";
2010
+ compliance: "compliance";
2011
+ delivery: "delivery";
2012
+ }>;
2013
+ intent_strength: z.ZodEnum<{
2014
+ high: "high";
2015
+ medium: "medium";
2016
+ low: "low";
2017
+ }>;
2018
+ source: z.ZodEnum<{
2019
+ ai_generation: "ai_generation";
2020
+ user_input: "user_input";
2021
+ }>;
2022
+ }, z.core.$strict>>>;
1834
2023
  }, z.core.$strict>, z.ZodObject<{
1835
2024
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
1836
2025
  id: z.ZodString;
@@ -2251,6 +2440,18 @@ export declare const Step5StrategyVersionSnapshotSchema: z.ZodObject<{
2251
2440
  columns: z.ZodArray<z.ZodString>;
2252
2441
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
2253
2442
  }, z.core.$strict>>>;
2443
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2444
+ goal: z.ZodString;
2445
+ issue: z.ZodString;
2446
+ criteria: z.ZodArray<z.ZodString>;
2447
+ resources: z.ZodArray<z.ZodString>;
2448
+ risks: z.ZodArray<z.ZodString>;
2449
+ execution: z.ZodObject<{
2450
+ standard: z.ZodArray<z.ZodString>;
2451
+ acceptance: z.ZodArray<z.ZodString>;
2452
+ downstream: z.ZodArray<z.ZodString>;
2453
+ }, z.core.$strict>;
2454
+ }, z.core.$strict>>>;
2254
2455
  note_tips: z.ZodArray<z.ZodString>;
2255
2456
  note_placeholder: z.ZodString;
2256
2457
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -2499,6 +2700,29 @@ export declare const Step5StrategyVersionSnapshotSchema: z.ZodObject<{
2499
2700
  snapshot_id: z.ZodString;
2500
2701
  selected_keywords: z.ZodArray<z.ZodString>;
2501
2702
  }, z.core.$strict>>>;
2703
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2704
+ id: z.ZodString;
2705
+ question: z.ZodString;
2706
+ question_type: z.ZodEnum<{
2707
+ category: "category";
2708
+ trust: "trust";
2709
+ selection: "selection";
2710
+ application: "application";
2711
+ parameter: "parameter";
2712
+ cost: "cost";
2713
+ compliance: "compliance";
2714
+ delivery: "delivery";
2715
+ }>;
2716
+ intent_strength: z.ZodEnum<{
2717
+ high: "high";
2718
+ medium: "medium";
2719
+ low: "low";
2720
+ }>;
2721
+ source: z.ZodEnum<{
2722
+ ai_generation: "ai_generation";
2723
+ user_input: "user_input";
2724
+ }>;
2725
+ }, z.core.$strict>>>;
2502
2726
  }, z.core.$strict>>>>;
2503
2727
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2504
2728
  id: z.ZodString;
@@ -2588,6 +2812,29 @@ export declare const Step5StrategyVersionSnapshotSchema: z.ZodObject<{
2588
2812
  snapshot_id: z.ZodString;
2589
2813
  selected_keywords: z.ZodArray<z.ZodString>;
2590
2814
  }, z.core.$strict>>>;
2815
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2816
+ id: z.ZodString;
2817
+ question: z.ZodString;
2818
+ question_type: z.ZodEnum<{
2819
+ category: "category";
2820
+ trust: "trust";
2821
+ selection: "selection";
2822
+ application: "application";
2823
+ parameter: "parameter";
2824
+ cost: "cost";
2825
+ compliance: "compliance";
2826
+ delivery: "delivery";
2827
+ }>;
2828
+ intent_strength: z.ZodEnum<{
2829
+ high: "high";
2830
+ medium: "medium";
2831
+ low: "low";
2832
+ }>;
2833
+ source: z.ZodEnum<{
2834
+ ai_generation: "ai_generation";
2835
+ user_input: "user_input";
2836
+ }>;
2837
+ }, z.core.$strict>>>;
2591
2838
  }, z.core.$strict>, z.ZodObject<{
2592
2839
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
2593
2840
  id: z.ZodString;
@@ -3019,6 +3266,18 @@ export declare const Step5CommittedVersionSchema: z.ZodObject<{
3019
3266
  columns: z.ZodArray<z.ZodString>;
3020
3267
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
3021
3268
  }, z.core.$strict>>>;
3269
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3270
+ goal: z.ZodString;
3271
+ issue: z.ZodString;
3272
+ criteria: z.ZodArray<z.ZodString>;
3273
+ resources: z.ZodArray<z.ZodString>;
3274
+ risks: z.ZodArray<z.ZodString>;
3275
+ execution: z.ZodObject<{
3276
+ standard: z.ZodArray<z.ZodString>;
3277
+ acceptance: z.ZodArray<z.ZodString>;
3278
+ downstream: z.ZodArray<z.ZodString>;
3279
+ }, z.core.$strict>;
3280
+ }, z.core.$strict>>>;
3022
3281
  note_tips: z.ZodArray<z.ZodString>;
3023
3282
  note_placeholder: z.ZodString;
3024
3283
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -3267,6 +3526,29 @@ export declare const Step5CommittedVersionSchema: z.ZodObject<{
3267
3526
  snapshot_id: z.ZodString;
3268
3527
  selected_keywords: z.ZodArray<z.ZodString>;
3269
3528
  }, z.core.$strict>>>;
3529
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
3530
+ id: z.ZodString;
3531
+ question: z.ZodString;
3532
+ question_type: z.ZodEnum<{
3533
+ category: "category";
3534
+ trust: "trust";
3535
+ selection: "selection";
3536
+ application: "application";
3537
+ parameter: "parameter";
3538
+ cost: "cost";
3539
+ compliance: "compliance";
3540
+ delivery: "delivery";
3541
+ }>;
3542
+ intent_strength: z.ZodEnum<{
3543
+ high: "high";
3544
+ medium: "medium";
3545
+ low: "low";
3546
+ }>;
3547
+ source: z.ZodEnum<{
3548
+ ai_generation: "ai_generation";
3549
+ user_input: "user_input";
3550
+ }>;
3551
+ }, z.core.$strict>>>;
3270
3552
  }, z.core.$strict>>>>;
3271
3553
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
3272
3554
  id: z.ZodString;
@@ -3356,6 +3638,29 @@ export declare const Step5CommittedVersionSchema: z.ZodObject<{
3356
3638
  snapshot_id: z.ZodString;
3357
3639
  selected_keywords: z.ZodArray<z.ZodString>;
3358
3640
  }, z.core.$strict>>>;
3641
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
3642
+ id: z.ZodString;
3643
+ question: z.ZodString;
3644
+ question_type: z.ZodEnum<{
3645
+ category: "category";
3646
+ trust: "trust";
3647
+ selection: "selection";
3648
+ application: "application";
3649
+ parameter: "parameter";
3650
+ cost: "cost";
3651
+ compliance: "compliance";
3652
+ delivery: "delivery";
3653
+ }>;
3654
+ intent_strength: z.ZodEnum<{
3655
+ high: "high";
3656
+ medium: "medium";
3657
+ low: "low";
3658
+ }>;
3659
+ source: z.ZodEnum<{
3660
+ ai_generation: "ai_generation";
3661
+ user_input: "user_input";
3662
+ }>;
3663
+ }, z.core.$strict>>>;
3359
3664
  }, z.core.$strict>, z.ZodObject<{
3360
3665
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
3361
3666
  id: z.ZodString;
@@ -3778,6 +4083,18 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
3778
4083
  columns: z.ZodArray<z.ZodString>;
3779
4084
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
3780
4085
  }, z.core.$strict>>>;
4086
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4087
+ goal: z.ZodString;
4088
+ issue: z.ZodString;
4089
+ criteria: z.ZodArray<z.ZodString>;
4090
+ resources: z.ZodArray<z.ZodString>;
4091
+ risks: z.ZodArray<z.ZodString>;
4092
+ execution: z.ZodObject<{
4093
+ standard: z.ZodArray<z.ZodString>;
4094
+ acceptance: z.ZodArray<z.ZodString>;
4095
+ downstream: z.ZodArray<z.ZodString>;
4096
+ }, z.core.$strict>;
4097
+ }, z.core.$strict>>>;
3781
4098
  note_tips: z.ZodArray<z.ZodString>;
3782
4099
  note_placeholder: z.ZodString;
3783
4100
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -4026,6 +4343,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
4026
4343
  snapshot_id: z.ZodString;
4027
4344
  selected_keywords: z.ZodArray<z.ZodString>;
4028
4345
  }, z.core.$strict>>>;
4346
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
4347
+ id: z.ZodString;
4348
+ question: z.ZodString;
4349
+ question_type: z.ZodEnum<{
4350
+ category: "category";
4351
+ trust: "trust";
4352
+ selection: "selection";
4353
+ application: "application";
4354
+ parameter: "parameter";
4355
+ cost: "cost";
4356
+ compliance: "compliance";
4357
+ delivery: "delivery";
4358
+ }>;
4359
+ intent_strength: z.ZodEnum<{
4360
+ high: "high";
4361
+ medium: "medium";
4362
+ low: "low";
4363
+ }>;
4364
+ source: z.ZodEnum<{
4365
+ ai_generation: "ai_generation";
4366
+ user_input: "user_input";
4367
+ }>;
4368
+ }, z.core.$strict>>>;
4029
4369
  }, z.core.$strict>>>>;
4030
4370
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
4031
4371
  id: z.ZodString;
@@ -4115,6 +4455,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
4115
4455
  snapshot_id: z.ZodString;
4116
4456
  selected_keywords: z.ZodArray<z.ZodString>;
4117
4457
  }, z.core.$strict>>>;
4458
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
4459
+ id: z.ZodString;
4460
+ question: z.ZodString;
4461
+ question_type: z.ZodEnum<{
4462
+ category: "category";
4463
+ trust: "trust";
4464
+ selection: "selection";
4465
+ application: "application";
4466
+ parameter: "parameter";
4467
+ cost: "cost";
4468
+ compliance: "compliance";
4469
+ delivery: "delivery";
4470
+ }>;
4471
+ intent_strength: z.ZodEnum<{
4472
+ high: "high";
4473
+ medium: "medium";
4474
+ low: "low";
4475
+ }>;
4476
+ source: z.ZodEnum<{
4477
+ ai_generation: "ai_generation";
4478
+ user_input: "user_input";
4479
+ }>;
4480
+ }, z.core.$strict>>>;
4118
4481
  }, z.core.$strict>, z.ZodObject<{
4119
4482
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
4120
4483
  id: z.ZodString;
@@ -4547,6 +4910,18 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
4547
4910
  columns: z.ZodArray<z.ZodString>;
4548
4911
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
4549
4912
  }, z.core.$strict>>>;
4913
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4914
+ goal: z.ZodString;
4915
+ issue: z.ZodString;
4916
+ criteria: z.ZodArray<z.ZodString>;
4917
+ resources: z.ZodArray<z.ZodString>;
4918
+ risks: z.ZodArray<z.ZodString>;
4919
+ execution: z.ZodObject<{
4920
+ standard: z.ZodArray<z.ZodString>;
4921
+ acceptance: z.ZodArray<z.ZodString>;
4922
+ downstream: z.ZodArray<z.ZodString>;
4923
+ }, z.core.$strict>;
4924
+ }, z.core.$strict>>>;
4550
4925
  note_tips: z.ZodArray<z.ZodString>;
4551
4926
  note_placeholder: z.ZodString;
4552
4927
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -4795,6 +5170,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
4795
5170
  snapshot_id: z.ZodString;
4796
5171
  selected_keywords: z.ZodArray<z.ZodString>;
4797
5172
  }, z.core.$strict>>>;
5173
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
5174
+ id: z.ZodString;
5175
+ question: z.ZodString;
5176
+ question_type: z.ZodEnum<{
5177
+ category: "category";
5178
+ trust: "trust";
5179
+ selection: "selection";
5180
+ application: "application";
5181
+ parameter: "parameter";
5182
+ cost: "cost";
5183
+ compliance: "compliance";
5184
+ delivery: "delivery";
5185
+ }>;
5186
+ intent_strength: z.ZodEnum<{
5187
+ high: "high";
5188
+ medium: "medium";
5189
+ low: "low";
5190
+ }>;
5191
+ source: z.ZodEnum<{
5192
+ ai_generation: "ai_generation";
5193
+ user_input: "user_input";
5194
+ }>;
5195
+ }, z.core.$strict>>>;
4798
5196
  }, z.core.$strict>>>>;
4799
5197
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
4800
5198
  id: z.ZodString;
@@ -4884,6 +5282,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
4884
5282
  snapshot_id: z.ZodString;
4885
5283
  selected_keywords: z.ZodArray<z.ZodString>;
4886
5284
  }, z.core.$strict>>>;
5285
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
5286
+ id: z.ZodString;
5287
+ question: z.ZodString;
5288
+ question_type: z.ZodEnum<{
5289
+ category: "category";
5290
+ trust: "trust";
5291
+ selection: "selection";
5292
+ application: "application";
5293
+ parameter: "parameter";
5294
+ cost: "cost";
5295
+ compliance: "compliance";
5296
+ delivery: "delivery";
5297
+ }>;
5298
+ intent_strength: z.ZodEnum<{
5299
+ high: "high";
5300
+ medium: "medium";
5301
+ low: "low";
5302
+ }>;
5303
+ source: z.ZodEnum<{
5304
+ ai_generation: "ai_generation";
5305
+ user_input: "user_input";
5306
+ }>;
5307
+ }, z.core.$strict>>>;
4887
5308
  }, z.core.$strict>, z.ZodObject<{
4888
5309
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
4889
5310
  id: z.ZodString;
@@ -5311,6 +5732,18 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
5311
5732
  columns: z.ZodArray<z.ZodString>;
5312
5733
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
5313
5734
  }, z.core.$strict>>>;
5735
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5736
+ goal: z.ZodString;
5737
+ issue: z.ZodString;
5738
+ criteria: z.ZodArray<z.ZodString>;
5739
+ resources: z.ZodArray<z.ZodString>;
5740
+ risks: z.ZodArray<z.ZodString>;
5741
+ execution: z.ZodObject<{
5742
+ standard: z.ZodArray<z.ZodString>;
5743
+ acceptance: z.ZodArray<z.ZodString>;
5744
+ downstream: z.ZodArray<z.ZodString>;
5745
+ }, z.core.$strict>;
5746
+ }, z.core.$strict>>>;
5314
5747
  note_tips: z.ZodArray<z.ZodString>;
5315
5748
  note_placeholder: z.ZodString;
5316
5749
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -5559,6 +5992,29 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
5559
5992
  snapshot_id: z.ZodString;
5560
5993
  selected_keywords: z.ZodArray<z.ZodString>;
5561
5994
  }, z.core.$strict>>>;
5995
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
5996
+ id: z.ZodString;
5997
+ question: z.ZodString;
5998
+ question_type: z.ZodEnum<{
5999
+ category: "category";
6000
+ trust: "trust";
6001
+ selection: "selection";
6002
+ application: "application";
6003
+ parameter: "parameter";
6004
+ cost: "cost";
6005
+ compliance: "compliance";
6006
+ delivery: "delivery";
6007
+ }>;
6008
+ intent_strength: z.ZodEnum<{
6009
+ high: "high";
6010
+ medium: "medium";
6011
+ low: "low";
6012
+ }>;
6013
+ source: z.ZodEnum<{
6014
+ ai_generation: "ai_generation";
6015
+ user_input: "user_input";
6016
+ }>;
6017
+ }, z.core.$strict>>>;
5562
6018
  }, z.core.$strict>>>>;
5563
6019
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
5564
6020
  id: z.ZodString;
@@ -5648,6 +6104,29 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
5648
6104
  snapshot_id: z.ZodString;
5649
6105
  selected_keywords: z.ZodArray<z.ZodString>;
5650
6106
  }, z.core.$strict>>>;
6107
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
6108
+ id: z.ZodString;
6109
+ question: z.ZodString;
6110
+ question_type: z.ZodEnum<{
6111
+ category: "category";
6112
+ trust: "trust";
6113
+ selection: "selection";
6114
+ application: "application";
6115
+ parameter: "parameter";
6116
+ cost: "cost";
6117
+ compliance: "compliance";
6118
+ delivery: "delivery";
6119
+ }>;
6120
+ intent_strength: z.ZodEnum<{
6121
+ high: "high";
6122
+ medium: "medium";
6123
+ low: "low";
6124
+ }>;
6125
+ source: z.ZodEnum<{
6126
+ ai_generation: "ai_generation";
6127
+ user_input: "user_input";
6128
+ }>;
6129
+ }, z.core.$strict>>>;
5651
6130
  }, z.core.$strict>, z.ZodObject<{
5652
6131
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
5653
6132
  id: z.ZodString;
@@ -6080,6 +6559,18 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
6080
6559
  columns: z.ZodArray<z.ZodString>;
6081
6560
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
6082
6561
  }, z.core.$strict>>>;
6562
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6563
+ goal: z.ZodString;
6564
+ issue: z.ZodString;
6565
+ criteria: z.ZodArray<z.ZodString>;
6566
+ resources: z.ZodArray<z.ZodString>;
6567
+ risks: z.ZodArray<z.ZodString>;
6568
+ execution: z.ZodObject<{
6569
+ standard: z.ZodArray<z.ZodString>;
6570
+ acceptance: z.ZodArray<z.ZodString>;
6571
+ downstream: z.ZodArray<z.ZodString>;
6572
+ }, z.core.$strict>;
6573
+ }, z.core.$strict>>>;
6083
6574
  note_tips: z.ZodArray<z.ZodString>;
6084
6575
  note_placeholder: z.ZodString;
6085
6576
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -6328,6 +6819,29 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
6328
6819
  snapshot_id: z.ZodString;
6329
6820
  selected_keywords: z.ZodArray<z.ZodString>;
6330
6821
  }, z.core.$strict>>>;
6822
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
6823
+ id: z.ZodString;
6824
+ question: z.ZodString;
6825
+ question_type: z.ZodEnum<{
6826
+ category: "category";
6827
+ trust: "trust";
6828
+ selection: "selection";
6829
+ application: "application";
6830
+ parameter: "parameter";
6831
+ cost: "cost";
6832
+ compliance: "compliance";
6833
+ delivery: "delivery";
6834
+ }>;
6835
+ intent_strength: z.ZodEnum<{
6836
+ high: "high";
6837
+ medium: "medium";
6838
+ low: "low";
6839
+ }>;
6840
+ source: z.ZodEnum<{
6841
+ ai_generation: "ai_generation";
6842
+ user_input: "user_input";
6843
+ }>;
6844
+ }, z.core.$strict>>>;
6331
6845
  }, z.core.$strict>>>>;
6332
6846
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
6333
6847
  id: z.ZodString;
@@ -6406,16 +6920,39 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
6406
6920
  P3: "P3";
6407
6921
  }>;
6408
6922
  source: z.ZodEnum<{
6409
- semrush: "semrush";
6410
- step5_generation: "step5_generation";
6923
+ semrush: "semrush";
6924
+ step5_generation: "step5_generation";
6925
+ }>;
6926
+ source_market: z.ZodString;
6927
+ metric_timestamp: z.ZodNullable<z.ZodString>;
6928
+ }, z.core.$strict>>;
6929
+ semrush_snapshot_refs: z.ZodOptional<z.ZodArray<z.ZodObject<{
6930
+ request_id: z.ZodString;
6931
+ snapshot_id: z.ZodString;
6932
+ selected_keywords: z.ZodArray<z.ZodString>;
6933
+ }, z.core.$strict>>>;
6934
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
6935
+ id: z.ZodString;
6936
+ question: z.ZodString;
6937
+ question_type: z.ZodEnum<{
6938
+ category: "category";
6939
+ trust: "trust";
6940
+ selection: "selection";
6941
+ application: "application";
6942
+ parameter: "parameter";
6943
+ cost: "cost";
6944
+ compliance: "compliance";
6945
+ delivery: "delivery";
6946
+ }>;
6947
+ intent_strength: z.ZodEnum<{
6948
+ high: "high";
6949
+ medium: "medium";
6950
+ low: "low";
6951
+ }>;
6952
+ source: z.ZodEnum<{
6953
+ ai_generation: "ai_generation";
6954
+ user_input: "user_input";
6411
6955
  }>;
6412
- source_market: z.ZodString;
6413
- metric_timestamp: z.ZodNullable<z.ZodString>;
6414
- }, z.core.$strict>>;
6415
- semrush_snapshot_refs: z.ZodOptional<z.ZodArray<z.ZodObject<{
6416
- request_id: z.ZodString;
6417
- snapshot_id: z.ZodString;
6418
- selected_keywords: z.ZodArray<z.ZodString>;
6419
6956
  }, z.core.$strict>>>;
6420
6957
  }, z.core.$strict>, z.ZodObject<{
6421
6958
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6518,6 +7055,29 @@ export declare const Step5SaveDecisionRequestSchema: z.ZodObject<{
6518
7055
  snapshot_id: z.ZodString;
6519
7056
  selected_keywords: z.ZodArray<z.ZodString>;
6520
7057
  }, z.core.$strict>>>;
7058
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
7059
+ id: z.ZodString;
7060
+ question: z.ZodString;
7061
+ question_type: z.ZodEnum<{
7062
+ category: "category";
7063
+ trust: "trust";
7064
+ selection: "selection";
7065
+ application: "application";
7066
+ parameter: "parameter";
7067
+ cost: "cost";
7068
+ compliance: "compliance";
7069
+ delivery: "delivery";
7070
+ }>;
7071
+ intent_strength: z.ZodEnum<{
7072
+ high: "high";
7073
+ medium: "medium";
7074
+ low: "low";
7075
+ }>;
7076
+ source: z.ZodEnum<{
7077
+ ai_generation: "ai_generation";
7078
+ user_input: "user_input";
7079
+ }>;
7080
+ }, z.core.$strict>>>;
6521
7081
  }, z.core.$strict>, z.ZodObject<{
6522
7082
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
6523
7083
  id: z.ZodString;
@@ -6604,6 +7164,29 @@ export declare const Step5SaveDecisionResponseSchema: z.ZodObject<{
6604
7164
  snapshot_id: z.ZodString;
6605
7165
  selected_keywords: z.ZodArray<z.ZodString>;
6606
7166
  }, z.core.$strict>>>;
7167
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
7168
+ id: z.ZodString;
7169
+ question: z.ZodString;
7170
+ question_type: z.ZodEnum<{
7171
+ category: "category";
7172
+ trust: "trust";
7173
+ selection: "selection";
7174
+ application: "application";
7175
+ parameter: "parameter";
7176
+ cost: "cost";
7177
+ compliance: "compliance";
7178
+ delivery: "delivery";
7179
+ }>;
7180
+ intent_strength: z.ZodEnum<{
7181
+ high: "high";
7182
+ medium: "medium";
7183
+ low: "low";
7184
+ }>;
7185
+ source: z.ZodEnum<{
7186
+ ai_generation: "ai_generation";
7187
+ user_input: "user_input";
7188
+ }>;
7189
+ }, z.core.$strict>>>;
6607
7190
  }, z.core.$strict>, z.ZodObject<{
6608
7191
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
6609
7192
  id: z.ZodString;
@@ -6705,6 +7288,29 @@ export declare const Step5CommitStrategyRequestSchema: z.ZodObject<{
6705
7288
  snapshot_id: z.ZodString;
6706
7289
  selected_keywords: z.ZodArray<z.ZodString>;
6707
7290
  }, z.core.$strict>>>;
7291
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
7292
+ id: z.ZodString;
7293
+ question: z.ZodString;
7294
+ question_type: z.ZodEnum<{
7295
+ category: "category";
7296
+ trust: "trust";
7297
+ selection: "selection";
7298
+ application: "application";
7299
+ parameter: "parameter";
7300
+ cost: "cost";
7301
+ compliance: "compliance";
7302
+ delivery: "delivery";
7303
+ }>;
7304
+ intent_strength: z.ZodEnum<{
7305
+ high: "high";
7306
+ medium: "medium";
7307
+ low: "low";
7308
+ }>;
7309
+ source: z.ZodEnum<{
7310
+ ai_generation: "ai_generation";
7311
+ user_input: "user_input";
7312
+ }>;
7313
+ }, z.core.$strict>>>;
6708
7314
  }, z.core.$strict>, z.ZodObject<{
6709
7315
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
6710
7316
  id: z.ZodString;
@@ -7119,6 +7725,18 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
7119
7725
  columns: z.ZodArray<z.ZodString>;
7120
7726
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
7121
7727
  }, z.core.$strict>>>;
7728
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7729
+ goal: z.ZodString;
7730
+ issue: z.ZodString;
7731
+ criteria: z.ZodArray<z.ZodString>;
7732
+ resources: z.ZodArray<z.ZodString>;
7733
+ risks: z.ZodArray<z.ZodString>;
7734
+ execution: z.ZodObject<{
7735
+ standard: z.ZodArray<z.ZodString>;
7736
+ acceptance: z.ZodArray<z.ZodString>;
7737
+ downstream: z.ZodArray<z.ZodString>;
7738
+ }, z.core.$strict>;
7739
+ }, z.core.$strict>>>;
7122
7740
  note_tips: z.ZodArray<z.ZodString>;
7123
7741
  note_placeholder: z.ZodString;
7124
7742
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -7367,6 +7985,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
7367
7985
  snapshot_id: z.ZodString;
7368
7986
  selected_keywords: z.ZodArray<z.ZodString>;
7369
7987
  }, z.core.$strict>>>;
7988
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
7989
+ id: z.ZodString;
7990
+ question: z.ZodString;
7991
+ question_type: z.ZodEnum<{
7992
+ category: "category";
7993
+ trust: "trust";
7994
+ selection: "selection";
7995
+ application: "application";
7996
+ parameter: "parameter";
7997
+ cost: "cost";
7998
+ compliance: "compliance";
7999
+ delivery: "delivery";
8000
+ }>;
8001
+ intent_strength: z.ZodEnum<{
8002
+ high: "high";
8003
+ medium: "medium";
8004
+ low: "low";
8005
+ }>;
8006
+ source: z.ZodEnum<{
8007
+ ai_generation: "ai_generation";
8008
+ user_input: "user_input";
8009
+ }>;
8010
+ }, z.core.$strict>>>;
7370
8011
  }, z.core.$strict>>>>;
7371
8012
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
7372
8013
  id: z.ZodString;
@@ -7456,6 +8097,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
7456
8097
  snapshot_id: z.ZodString;
7457
8098
  selected_keywords: z.ZodArray<z.ZodString>;
7458
8099
  }, z.core.$strict>>>;
8100
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
8101
+ id: z.ZodString;
8102
+ question: z.ZodString;
8103
+ question_type: z.ZodEnum<{
8104
+ category: "category";
8105
+ trust: "trust";
8106
+ selection: "selection";
8107
+ application: "application";
8108
+ parameter: "parameter";
8109
+ cost: "cost";
8110
+ compliance: "compliance";
8111
+ delivery: "delivery";
8112
+ }>;
8113
+ intent_strength: z.ZodEnum<{
8114
+ high: "high";
8115
+ medium: "medium";
8116
+ low: "low";
8117
+ }>;
8118
+ source: z.ZodEnum<{
8119
+ ai_generation: "ai_generation";
8120
+ user_input: "user_input";
8121
+ }>;
8122
+ }, z.core.$strict>>>;
7459
8123
  }, z.core.$strict>, z.ZodObject<{
7460
8124
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
7461
8125
  id: z.ZodString;
@@ -7888,6 +8552,18 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
7888
8552
  columns: z.ZodArray<z.ZodString>;
7889
8553
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
7890
8554
  }, z.core.$strict>>>;
8555
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8556
+ goal: z.ZodString;
8557
+ issue: z.ZodString;
8558
+ criteria: z.ZodArray<z.ZodString>;
8559
+ resources: z.ZodArray<z.ZodString>;
8560
+ risks: z.ZodArray<z.ZodString>;
8561
+ execution: z.ZodObject<{
8562
+ standard: z.ZodArray<z.ZodString>;
8563
+ acceptance: z.ZodArray<z.ZodString>;
8564
+ downstream: z.ZodArray<z.ZodString>;
8565
+ }, z.core.$strict>;
8566
+ }, z.core.$strict>>>;
7891
8567
  note_tips: z.ZodArray<z.ZodString>;
7892
8568
  note_placeholder: z.ZodString;
7893
8569
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -8136,6 +8812,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
8136
8812
  snapshot_id: z.ZodString;
8137
8813
  selected_keywords: z.ZodArray<z.ZodString>;
8138
8814
  }, z.core.$strict>>>;
8815
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
8816
+ id: z.ZodString;
8817
+ question: z.ZodString;
8818
+ question_type: z.ZodEnum<{
8819
+ category: "category";
8820
+ trust: "trust";
8821
+ selection: "selection";
8822
+ application: "application";
8823
+ parameter: "parameter";
8824
+ cost: "cost";
8825
+ compliance: "compliance";
8826
+ delivery: "delivery";
8827
+ }>;
8828
+ intent_strength: z.ZodEnum<{
8829
+ high: "high";
8830
+ medium: "medium";
8831
+ low: "low";
8832
+ }>;
8833
+ source: z.ZodEnum<{
8834
+ ai_generation: "ai_generation";
8835
+ user_input: "user_input";
8836
+ }>;
8837
+ }, z.core.$strict>>>;
8139
8838
  }, z.core.$strict>>>>;
8140
8839
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
8141
8840
  id: z.ZodString;
@@ -8225,6 +8924,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
8225
8924
  snapshot_id: z.ZodString;
8226
8925
  selected_keywords: z.ZodArray<z.ZodString>;
8227
8926
  }, z.core.$strict>>>;
8927
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
8928
+ id: z.ZodString;
8929
+ question: z.ZodString;
8930
+ question_type: z.ZodEnum<{
8931
+ category: "category";
8932
+ trust: "trust";
8933
+ selection: "selection";
8934
+ application: "application";
8935
+ parameter: "parameter";
8936
+ cost: "cost";
8937
+ compliance: "compliance";
8938
+ delivery: "delivery";
8939
+ }>;
8940
+ intent_strength: z.ZodEnum<{
8941
+ high: "high";
8942
+ medium: "medium";
8943
+ low: "low";
8944
+ }>;
8945
+ source: z.ZodEnum<{
8946
+ ai_generation: "ai_generation";
8947
+ user_input: "user_input";
8948
+ }>;
8949
+ }, z.core.$strict>>>;
8228
8950
  }, z.core.$strict>, z.ZodObject<{
8229
8951
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
8230
8952
  id: z.ZodString;
@@ -8660,6 +9382,18 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
8660
9382
  columns: z.ZodArray<z.ZodString>;
8661
9383
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
8662
9384
  }, z.core.$strict>>>;
9385
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9386
+ goal: z.ZodString;
9387
+ issue: z.ZodString;
9388
+ criteria: z.ZodArray<z.ZodString>;
9389
+ resources: z.ZodArray<z.ZodString>;
9390
+ risks: z.ZodArray<z.ZodString>;
9391
+ execution: z.ZodObject<{
9392
+ standard: z.ZodArray<z.ZodString>;
9393
+ acceptance: z.ZodArray<z.ZodString>;
9394
+ downstream: z.ZodArray<z.ZodString>;
9395
+ }, z.core.$strict>;
9396
+ }, z.core.$strict>>>;
8663
9397
  note_tips: z.ZodArray<z.ZodString>;
8664
9398
  note_placeholder: z.ZodString;
8665
9399
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -8908,6 +9642,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
8908
9642
  snapshot_id: z.ZodString;
8909
9643
  selected_keywords: z.ZodArray<z.ZodString>;
8910
9644
  }, z.core.$strict>>>;
9645
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
9646
+ id: z.ZodString;
9647
+ question: z.ZodString;
9648
+ question_type: z.ZodEnum<{
9649
+ category: "category";
9650
+ trust: "trust";
9651
+ selection: "selection";
9652
+ application: "application";
9653
+ parameter: "parameter";
9654
+ cost: "cost";
9655
+ compliance: "compliance";
9656
+ delivery: "delivery";
9657
+ }>;
9658
+ intent_strength: z.ZodEnum<{
9659
+ high: "high";
9660
+ medium: "medium";
9661
+ low: "low";
9662
+ }>;
9663
+ source: z.ZodEnum<{
9664
+ ai_generation: "ai_generation";
9665
+ user_input: "user_input";
9666
+ }>;
9667
+ }, z.core.$strict>>>;
8911
9668
  }, z.core.$strict>>>>;
8912
9669
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
8913
9670
  id: z.ZodString;
@@ -8997,6 +9754,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
8997
9754
  snapshot_id: z.ZodString;
8998
9755
  selected_keywords: z.ZodArray<z.ZodString>;
8999
9756
  }, z.core.$strict>>>;
9757
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
9758
+ id: z.ZodString;
9759
+ question: z.ZodString;
9760
+ question_type: z.ZodEnum<{
9761
+ category: "category";
9762
+ trust: "trust";
9763
+ selection: "selection";
9764
+ application: "application";
9765
+ parameter: "parameter";
9766
+ cost: "cost";
9767
+ compliance: "compliance";
9768
+ delivery: "delivery";
9769
+ }>;
9770
+ intent_strength: z.ZodEnum<{
9771
+ high: "high";
9772
+ medium: "medium";
9773
+ low: "low";
9774
+ }>;
9775
+ source: z.ZodEnum<{
9776
+ ai_generation: "ai_generation";
9777
+ user_input: "user_input";
9778
+ }>;
9779
+ }, z.core.$strict>>>;
9000
9780
  }, z.core.$strict>, z.ZodObject<{
9001
9781
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
9002
9782
  id: z.ZodString;
@@ -9429,6 +10209,18 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
9429
10209
  columns: z.ZodArray<z.ZodString>;
9430
10210
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
9431
10211
  }, z.core.$strict>>>;
10212
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10213
+ goal: z.ZodString;
10214
+ issue: z.ZodString;
10215
+ criteria: z.ZodArray<z.ZodString>;
10216
+ resources: z.ZodArray<z.ZodString>;
10217
+ risks: z.ZodArray<z.ZodString>;
10218
+ execution: z.ZodObject<{
10219
+ standard: z.ZodArray<z.ZodString>;
10220
+ acceptance: z.ZodArray<z.ZodString>;
10221
+ downstream: z.ZodArray<z.ZodString>;
10222
+ }, z.core.$strict>;
10223
+ }, z.core.$strict>>>;
9432
10224
  note_tips: z.ZodArray<z.ZodString>;
9433
10225
  note_placeholder: z.ZodString;
9434
10226
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -9677,6 +10469,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
9677
10469
  snapshot_id: z.ZodString;
9678
10470
  selected_keywords: z.ZodArray<z.ZodString>;
9679
10471
  }, z.core.$strict>>>;
10472
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
10473
+ id: z.ZodString;
10474
+ question: z.ZodString;
10475
+ question_type: z.ZodEnum<{
10476
+ category: "category";
10477
+ trust: "trust";
10478
+ selection: "selection";
10479
+ application: "application";
10480
+ parameter: "parameter";
10481
+ cost: "cost";
10482
+ compliance: "compliance";
10483
+ delivery: "delivery";
10484
+ }>;
10485
+ intent_strength: z.ZodEnum<{
10486
+ high: "high";
10487
+ medium: "medium";
10488
+ low: "low";
10489
+ }>;
10490
+ source: z.ZodEnum<{
10491
+ ai_generation: "ai_generation";
10492
+ user_input: "user_input";
10493
+ }>;
10494
+ }, z.core.$strict>>>;
9680
10495
  }, z.core.$strict>>>>;
9681
10496
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
9682
10497
  id: z.ZodString;
@@ -9766,6 +10581,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
9766
10581
  snapshot_id: z.ZodString;
9767
10582
  selected_keywords: z.ZodArray<z.ZodString>;
9768
10583
  }, z.core.$strict>>>;
10584
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
10585
+ id: z.ZodString;
10586
+ question: z.ZodString;
10587
+ question_type: z.ZodEnum<{
10588
+ category: "category";
10589
+ trust: "trust";
10590
+ selection: "selection";
10591
+ application: "application";
10592
+ parameter: "parameter";
10593
+ cost: "cost";
10594
+ compliance: "compliance";
10595
+ delivery: "delivery";
10596
+ }>;
10597
+ intent_strength: z.ZodEnum<{
10598
+ high: "high";
10599
+ medium: "medium";
10600
+ low: "low";
10601
+ }>;
10602
+ source: z.ZodEnum<{
10603
+ ai_generation: "ai_generation";
10604
+ user_input: "user_input";
10605
+ }>;
10606
+ }, z.core.$strict>>>;
9769
10607
  }, z.core.$strict>, z.ZodObject<{
9770
10608
  rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
9771
10609
  id: z.ZodString;
@@ -10194,6 +11032,18 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
10194
11032
  columns: z.ZodArray<z.ZodString>;
10195
11033
  rows: z.ZodArray<z.ZodArray<z.ZodString>>;
10196
11034
  }, z.core.$strict>>>;
11035
+ structure_detail: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11036
+ goal: z.ZodString;
11037
+ issue: z.ZodString;
11038
+ criteria: z.ZodArray<z.ZodString>;
11039
+ resources: z.ZodArray<z.ZodString>;
11040
+ risks: z.ZodArray<z.ZodString>;
11041
+ execution: z.ZodObject<{
11042
+ standard: z.ZodArray<z.ZodString>;
11043
+ acceptance: z.ZodArray<z.ZodString>;
11044
+ downstream: z.ZodArray<z.ZodString>;
11045
+ }, z.core.$strict>;
11046
+ }, z.core.$strict>>>;
10197
11047
  note_tips: z.ZodArray<z.ZodString>;
10198
11048
  note_placeholder: z.ZodString;
10199
11049
  evidence_refs: z.ZodArray<z.ZodObject<{
@@ -10442,6 +11292,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
10442
11292
  snapshot_id: z.ZodString;
10443
11293
  selected_keywords: z.ZodArray<z.ZodString>;
10444
11294
  }, z.core.$strict>>>;
11295
+ geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
11296
+ id: z.ZodString;
11297
+ question: z.ZodString;
11298
+ question_type: z.ZodEnum<{
11299
+ category: "category";
11300
+ trust: "trust";
11301
+ selection: "selection";
11302
+ application: "application";
11303
+ parameter: "parameter";
11304
+ cost: "cost";
11305
+ compliance: "compliance";
11306
+ delivery: "delivery";
11307
+ }>;
11308
+ intent_strength: z.ZodEnum<{
11309
+ high: "high";
11310
+ medium: "medium";
11311
+ low: "low";
11312
+ }>;
11313
+ source: z.ZodEnum<{
11314
+ ai_generation: "ai_generation";
11315
+ user_input: "user_input";
11316
+ }>;
11317
+ }, z.core.$strict>>>;
10445
11318
  }, z.core.$strict>>>>;
10446
11319
  geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
10447
11320
  id: z.ZodString;