@vcp-dev/contracts 0.8.5 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-domain.d.ts +122 -2
- package/dist/form-design.d.ts +8 -8
- package/dist/index.d.ts +21 -51
- package/dist/index.js +1 -1
- package/dist/site-edit-history-status.d.ts +1 -1
- package/dist/site-edit-version.d.ts +1 -1
- package/dist/site-publish-domain.d.ts +821 -22
- package/dist/site-publish-workflow.d.ts +16 -0
- package/dist/step5-strategy.d.ts +718 -2
- package/dist/template-upgrade-observability.d.ts +2 -2
- package/dist/template-upgrade-state.d.ts +4 -4
- package/package.json +1 -1
package/dist/step5-strategy.d.ts
CHANGED
|
@@ -707,7 +707,10 @@ export declare const Step5GeoQuestionSchema: z.ZodObject<{
|
|
|
707
707
|
medium: "medium";
|
|
708
708
|
low: "low";
|
|
709
709
|
}>;
|
|
710
|
-
source: z.
|
|
710
|
+
source: z.ZodEnum<{
|
|
711
|
+
ai_generation: "ai_generation";
|
|
712
|
+
user_input: "user_input";
|
|
713
|
+
}>;
|
|
711
714
|
}, z.core.$strict>;
|
|
712
715
|
export type Step5GeoQuestion = z.infer<typeof Step5GeoQuestionSchema>;
|
|
713
716
|
/**
|
|
@@ -1344,6 +1347,29 @@ export declare const Step5StrategyItemSchema: z.ZodObject<{
|
|
|
1344
1347
|
snapshot_id: z.ZodString;
|
|
1345
1348
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
1346
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>>>;
|
|
1347
1373
|
}, z.core.$strict>>>>;
|
|
1348
1374
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1349
1375
|
id: z.ZodString;
|
|
@@ -1379,7 +1405,7 @@ export declare const Step5SeoGeoPlanRowSchema: z.ZodObject<{
|
|
|
1379
1405
|
}, z.core.$strict>;
|
|
1380
1406
|
export type Step5SeoGeoPlanRow = z.infer<typeof Step5SeoGeoPlanRowSchema>;
|
|
1381
1407
|
export declare const STEP5_SEO_PAYLOAD_SCHEMA_VERSION: 2;
|
|
1382
|
-
export declare const STEP5_SEO_KEYWORD_MIN =
|
|
1408
|
+
export declare const STEP5_SEO_KEYWORD_MIN = 0;
|
|
1383
1409
|
export declare const STEP5_SEO_KEYWORD_DEFAULT = 20;
|
|
1384
1410
|
export declare const STEP5_SEO_KEYWORD_MAX = 50;
|
|
1385
1411
|
export declare const Step5LegacySeoKeywordSchema: z.ZodObject<{
|
|
@@ -1493,6 +1519,29 @@ export declare const Step5SeoPayloadV2Schema: z.ZodObject<{
|
|
|
1493
1519
|
snapshot_id: z.ZodString;
|
|
1494
1520
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
1495
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>>>;
|
|
1496
1545
|
}, z.core.$strict>;
|
|
1497
1546
|
export type Step5SeoPayloadV2 = z.infer<typeof Step5SeoPayloadV2Schema>;
|
|
1498
1547
|
export declare const Step5SeoPayloadV2InputSchema: z.ZodObject<{
|
|
@@ -1538,6 +1587,29 @@ export declare const Step5SeoPayloadV2InputSchema: z.ZodObject<{
|
|
|
1538
1587
|
snapshot_id: z.ZodString;
|
|
1539
1588
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
1540
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>>>;
|
|
1541
1613
|
}, z.core.$strict>;
|
|
1542
1614
|
export type Step5SeoPayloadV2Input = z.infer<typeof Step5SeoPayloadV2InputSchema>;
|
|
1543
1615
|
export declare const Step5LegacyDecisionCustomPayloadSchema: z.ZodObject<{
|
|
@@ -1622,6 +1694,29 @@ export declare const Step5DecisionCustomPayloadSchema: z.ZodUnion<readonly [z.Zo
|
|
|
1622
1694
|
snapshot_id: z.ZodString;
|
|
1623
1695
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
1624
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>>>;
|
|
1625
1720
|
}, z.core.$strict>, z.ZodObject<{
|
|
1626
1721
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1627
1722
|
id: z.ZodString;
|
|
@@ -1685,6 +1780,29 @@ export declare const Step5DecisionCustomPayloadInputSchema: z.ZodUnion<readonly
|
|
|
1685
1780
|
snapshot_id: z.ZodString;
|
|
1686
1781
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
1687
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>>>;
|
|
1688
1806
|
}, z.core.$strict>, z.ZodObject<{
|
|
1689
1807
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1690
1808
|
id: z.ZodString;
|
|
@@ -1767,6 +1885,29 @@ export declare const Step5StrategyDecisionInputSchema: z.ZodObject<{
|
|
|
1767
1885
|
snapshot_id: z.ZodString;
|
|
1768
1886
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
1769
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>>>;
|
|
1770
1911
|
}, z.core.$strict>, z.ZodObject<{
|
|
1771
1912
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1772
1913
|
id: z.ZodString;
|
|
@@ -1856,6 +1997,29 @@ export declare const Step5StrategyDecisionSchema: z.ZodObject<{
|
|
|
1856
1997
|
snapshot_id: z.ZodString;
|
|
1857
1998
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
1858
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>>>;
|
|
1859
2023
|
}, z.core.$strict>, z.ZodObject<{
|
|
1860
2024
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1861
2025
|
id: z.ZodString;
|
|
@@ -2536,6 +2700,29 @@ export declare const Step5StrategyVersionSnapshotSchema: z.ZodObject<{
|
|
|
2536
2700
|
snapshot_id: z.ZodString;
|
|
2537
2701
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
2538
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>>>;
|
|
2539
2726
|
}, z.core.$strict>>>>;
|
|
2540
2727
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2541
2728
|
id: z.ZodString;
|
|
@@ -2625,6 +2812,29 @@ export declare const Step5StrategyVersionSnapshotSchema: z.ZodObject<{
|
|
|
2625
2812
|
snapshot_id: z.ZodString;
|
|
2626
2813
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
2627
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>>>;
|
|
2628
2838
|
}, z.core.$strict>, z.ZodObject<{
|
|
2629
2839
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2630
2840
|
id: z.ZodString;
|
|
@@ -3316,6 +3526,29 @@ export declare const Step5CommittedVersionSchema: z.ZodObject<{
|
|
|
3316
3526
|
snapshot_id: z.ZodString;
|
|
3317
3527
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
3318
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>>>;
|
|
3319
3552
|
}, z.core.$strict>>>>;
|
|
3320
3553
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3321
3554
|
id: z.ZodString;
|
|
@@ -3405,6 +3638,29 @@ export declare const Step5CommittedVersionSchema: z.ZodObject<{
|
|
|
3405
3638
|
snapshot_id: z.ZodString;
|
|
3406
3639
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
3407
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>>>;
|
|
3408
3664
|
}, z.core.$strict>, z.ZodObject<{
|
|
3409
3665
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3410
3666
|
id: z.ZodString;
|
|
@@ -4087,6 +4343,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
|
|
|
4087
4343
|
snapshot_id: z.ZodString;
|
|
4088
4344
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
4089
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>>>;
|
|
4090
4369
|
}, z.core.$strict>>>>;
|
|
4091
4370
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4092
4371
|
id: z.ZodString;
|
|
@@ -4176,6 +4455,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
|
|
|
4176
4455
|
snapshot_id: z.ZodString;
|
|
4177
4456
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
4178
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>>>;
|
|
4179
4481
|
}, z.core.$strict>, z.ZodObject<{
|
|
4180
4482
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4181
4483
|
id: z.ZodString;
|
|
@@ -4868,6 +5170,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
|
|
|
4868
5170
|
snapshot_id: z.ZodString;
|
|
4869
5171
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
4870
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>>>;
|
|
4871
5196
|
}, z.core.$strict>>>>;
|
|
4872
5197
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4873
5198
|
id: z.ZodString;
|
|
@@ -4957,6 +5282,29 @@ export declare const Step5StrategyJobSchema: z.ZodObject<{
|
|
|
4957
5282
|
snapshot_id: z.ZodString;
|
|
4958
5283
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
4959
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>>>;
|
|
4960
5308
|
}, z.core.$strict>, z.ZodObject<{
|
|
4961
5309
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4962
5310
|
id: z.ZodString;
|
|
@@ -5644,6 +5992,29 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
|
|
|
5644
5992
|
snapshot_id: z.ZodString;
|
|
5645
5993
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
5646
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>>>;
|
|
5647
6018
|
}, z.core.$strict>>>>;
|
|
5648
6019
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5649
6020
|
id: z.ZodString;
|
|
@@ -5733,6 +6104,29 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
|
|
|
5733
6104
|
snapshot_id: z.ZodString;
|
|
5734
6105
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
5735
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>>>;
|
|
5736
6130
|
}, z.core.$strict>, z.ZodObject<{
|
|
5737
6131
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5738
6132
|
id: z.ZodString;
|
|
@@ -6425,6 +6819,29 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
|
|
|
6425
6819
|
snapshot_id: z.ZodString;
|
|
6426
6820
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
6427
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>>>;
|
|
6428
6845
|
}, z.core.$strict>>>>;
|
|
6429
6846
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6430
6847
|
id: z.ZodString;
|
|
@@ -6514,6 +6931,29 @@ export declare const Step5StartStrategyResponseSchema: z.ZodObject<{
|
|
|
6514
6931
|
snapshot_id: z.ZodString;
|
|
6515
6932
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
6516
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";
|
|
6955
|
+
}>;
|
|
6956
|
+
}, z.core.$strict>>>;
|
|
6517
6957
|
}, z.core.$strict>, z.ZodObject<{
|
|
6518
6958
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6519
6959
|
id: z.ZodString;
|
|
@@ -6615,6 +7055,29 @@ export declare const Step5SaveDecisionRequestSchema: z.ZodObject<{
|
|
|
6615
7055
|
snapshot_id: z.ZodString;
|
|
6616
7056
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
6617
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>>>;
|
|
6618
7081
|
}, z.core.$strict>, z.ZodObject<{
|
|
6619
7082
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6620
7083
|
id: z.ZodString;
|
|
@@ -6701,6 +7164,29 @@ export declare const Step5SaveDecisionResponseSchema: z.ZodObject<{
|
|
|
6701
7164
|
snapshot_id: z.ZodString;
|
|
6702
7165
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
6703
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>>>;
|
|
6704
7190
|
}, z.core.$strict>, z.ZodObject<{
|
|
6705
7191
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6706
7192
|
id: z.ZodString;
|
|
@@ -6802,6 +7288,29 @@ export declare const Step5CommitStrategyRequestSchema: z.ZodObject<{
|
|
|
6802
7288
|
snapshot_id: z.ZodString;
|
|
6803
7289
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
6804
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>>>;
|
|
6805
7314
|
}, z.core.$strict>, z.ZodObject<{
|
|
6806
7315
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6807
7316
|
id: z.ZodString;
|
|
@@ -7476,6 +7985,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
|
|
|
7476
7985
|
snapshot_id: z.ZodString;
|
|
7477
7986
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
7478
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>>>;
|
|
7479
8011
|
}, z.core.$strict>>>>;
|
|
7480
8012
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7481
8013
|
id: z.ZodString;
|
|
@@ -7565,6 +8097,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
|
|
|
7565
8097
|
snapshot_id: z.ZodString;
|
|
7566
8098
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
7567
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>>>;
|
|
7568
8123
|
}, z.core.$strict>, z.ZodObject<{
|
|
7569
8124
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7570
8125
|
id: z.ZodString;
|
|
@@ -8257,6 +8812,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
|
|
|
8257
8812
|
snapshot_id: z.ZodString;
|
|
8258
8813
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
8259
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>>>;
|
|
8260
8838
|
}, z.core.$strict>>>>;
|
|
8261
8839
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8262
8840
|
id: z.ZodString;
|
|
@@ -8346,6 +8924,29 @@ export declare const Step5StrategySnapshotDataSchema: z.ZodObject<{
|
|
|
8346
8924
|
snapshot_id: z.ZodString;
|
|
8347
8925
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
8348
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>>>;
|
|
8349
8950
|
}, z.core.$strict>, z.ZodObject<{
|
|
8350
8951
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8351
8952
|
id: z.ZodString;
|
|
@@ -9041,6 +9642,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9041
9642
|
snapshot_id: z.ZodString;
|
|
9042
9643
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
9043
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>>>;
|
|
9044
9668
|
}, z.core.$strict>>>>;
|
|
9045
9669
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9046
9670
|
id: z.ZodString;
|
|
@@ -9130,6 +9754,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9130
9754
|
snapshot_id: z.ZodString;
|
|
9131
9755
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
9132
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>>>;
|
|
9133
9780
|
}, z.core.$strict>, z.ZodObject<{
|
|
9134
9781
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9135
9782
|
id: z.ZodString;
|
|
@@ -9822,6 +10469,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9822
10469
|
snapshot_id: z.ZodString;
|
|
9823
10470
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
9824
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>>>;
|
|
9825
10495
|
}, z.core.$strict>>>>;
|
|
9826
10496
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9827
10497
|
id: z.ZodString;
|
|
@@ -9911,6 +10581,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9911
10581
|
snapshot_id: z.ZodString;
|
|
9912
10582
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
9913
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>>>;
|
|
9914
10607
|
}, z.core.$strict>, z.ZodObject<{
|
|
9915
10608
|
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9916
10609
|
id: z.ZodString;
|
|
@@ -10599,6 +11292,29 @@ export declare const Step5StrategySseFrameSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10599
11292
|
snapshot_id: z.ZodString;
|
|
10600
11293
|
selected_keywords: z.ZodArray<z.ZodString>;
|
|
10601
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>>>;
|
|
10602
11318
|
}, z.core.$strict>>>>;
|
|
10603
11319
|
geo_questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10604
11320
|
id: z.ZodString;
|