@cat-factory/contracts 0.229.0 → 0.231.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.
Files changed (59) hide show
  1. package/dist/entities.d.ts +1 -1
  2. package/dist/errors.js +1 -1
  3. package/dist/errors.js.map +1 -1
  4. package/dist/execution.d.ts +9 -2
  5. package/dist/execution.d.ts.map +1 -1
  6. package/dist/execution.js +11 -2
  7. package/dist/execution.js.map +1 -1
  8. package/dist/form-fields.d.ts +203 -0
  9. package/dist/form-fields.d.ts.map +1 -0
  10. package/dist/form-fields.js +315 -0
  11. package/dist/form-fields.js.map +1 -0
  12. package/dist/index.d.ts +1 -0
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/index.js +1 -0
  15. package/dist/index.js.map +1 -1
  16. package/dist/initiative-preset.d.ts +34 -93
  17. package/dist/initiative-preset.d.ts.map +1 -1
  18. package/dist/initiative-preset.js +30 -182
  19. package/dist/initiative-preset.js.map +1 -1
  20. package/dist/initiative.d.ts +14 -9
  21. package/dist/initiative.d.ts.map +1 -1
  22. package/dist/initiative.js +15 -15
  23. package/dist/initiative.js.map +1 -1
  24. package/dist/input-gate.js +1 -1
  25. package/dist/input-gate.js.map +1 -1
  26. package/dist/merge.d.ts +374 -344
  27. package/dist/merge.d.ts.map +1 -1
  28. package/dist/merge.js +50 -4
  29. package/dist/merge.js.map +1 -1
  30. package/dist/primitives.d.ts +10 -5
  31. package/dist/primitives.d.ts.map +1 -1
  32. package/dist/primitives.js +11 -5
  33. package/dist/primitives.js.map +1 -1
  34. package/dist/public-decisions.d.ts +2 -2
  35. package/dist/public-decisions.js +3 -3
  36. package/dist/public-decisions.js.map +1 -1
  37. package/dist/requests.d.ts +1 -1
  38. package/dist/routes/board.d.ts +14 -14
  39. package/dist/routes/bug-hunt.d.ts +2 -2
  40. package/dist/routes/execution.d.ts +2 -2
  41. package/dist/routes/initiative.d.ts +17 -17
  42. package/dist/routes/input-gate.js +2 -2
  43. package/dist/routes/input-gate.js.map +1 -1
  44. package/dist/routes/merge.d.ts +504 -504
  45. package/dist/routes/public-decisions.d.ts +1 -1
  46. package/dist/routes/public-decisions.js +2 -2
  47. package/dist/routes/public-decisions.js.map +1 -1
  48. package/dist/routes/tasks.d.ts +3 -3
  49. package/dist/routes/workspaces.d.ts +210 -194
  50. package/dist/routes/workspaces.d.ts.map +1 -1
  51. package/dist/snapshot.d.ts +105 -97
  52. package/dist/snapshot.d.ts.map +1 -1
  53. package/dist/task-types.d.ts +42 -28
  54. package/dist/task-types.d.ts.map +1 -1
  55. package/dist/task-types.js +30 -25
  56. package/dist/task-types.js.map +1 -1
  57. package/dist/workspace-settings.d.ts +1 -1
  58. package/dist/workspace-settings.js +1 -1
  59. package/package.json +1 -1
@@ -150,7 +150,7 @@ export declare const createWorkspaceContract: {
150
150
  readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
151
151
  readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
152
152
  readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
153
- readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
153
+ readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
154
154
  }, undefined>, undefined>, undefined>;
155
155
  readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
156
156
  readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -1777,20 +1777,20 @@ export declare const createWorkspaceContract: {
1777
1777
  readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
1778
1778
  }, undefined>, undefined>, undefined>;
1779
1779
  readonly classRules: Omit<v.StrictObjectSchema<{
1780
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1781
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1782
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1783
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1784
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1785
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1780
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1781
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1782
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1783
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1784
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1785
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1786
1786
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
1787
1787
  readonly entries: {
1788
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1789
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1790
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1791
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1792
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1793
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1788
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1789
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1790
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1791
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1792
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1793
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1794
1794
  };
1795
1795
  readonly "~standard": v.StandardProps<{
1796
1796
  config?: "always" | "never" | "thresholds" | undefined;
@@ -1837,20 +1837,20 @@ export declare const createWorkspaceContract: {
1837
1837
  };
1838
1838
  readonly classRulesByRole: Omit<v.StrictObjectSchema<{
1839
1839
  admin: Omit<v.StrictObjectSchema<{
1840
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1841
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1842
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1843
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1844
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1845
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1840
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1841
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1842
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1843
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1844
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1845
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1846
1846
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
1847
1847
  readonly entries: {
1848
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1849
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1850
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1851
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1852
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1853
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1848
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1849
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1850
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1851
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1852
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1853
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1854
1854
  };
1855
1855
  readonly "~standard": v.StandardProps<{
1856
1856
  config?: "always" | "never" | "thresholds" | undefined;
@@ -1896,20 +1896,20 @@ export declare const createWorkspaceContract: {
1896
1896
  } | undefined;
1897
1897
  };
1898
1898
  member: Omit<v.StrictObjectSchema<{
1899
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1900
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1901
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1902
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1903
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1904
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1899
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1900
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1901
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1902
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1903
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1904
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1905
1905
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
1906
1906
  readonly entries: {
1907
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1908
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1909
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1910
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1911
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1912
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1907
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1908
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1909
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1910
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1911
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1912
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1913
1913
  };
1914
1914
  readonly "~standard": v.StandardProps<{
1915
1915
  config?: "always" | "never" | "thresholds" | undefined;
@@ -1955,20 +1955,20 @@ export declare const createWorkspaceContract: {
1955
1955
  } | undefined;
1956
1956
  };
1957
1957
  viewer: Omit<v.StrictObjectSchema<{
1958
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1959
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1960
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1961
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1962
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1963
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
1958
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1959
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1960
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1961
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1962
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1963
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
1964
1964
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
1965
1965
  readonly entries: {
1966
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1967
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1968
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1969
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1970
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1971
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
1966
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1967
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1968
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1969
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1970
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1971
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
1972
1972
  };
1973
1973
  readonly "~standard": v.StandardProps<{
1974
1974
  config?: "always" | "never" | "thresholds" | undefined;
@@ -2016,20 +2016,20 @@ export declare const createWorkspaceContract: {
2016
2016
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
2017
2017
  readonly entries: {
2018
2018
  admin: v.OptionalSchema<Omit<v.StrictObjectSchema<{
2019
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2020
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2021
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2022
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2023
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2024
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2019
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2020
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2021
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2022
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2023
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2024
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2025
2025
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
2026
2026
  readonly entries: {
2027
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2028
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2029
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2030
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2031
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2032
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2027
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2028
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2029
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2030
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2031
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2032
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2033
2033
  };
2034
2034
  readonly "~standard": v.StandardProps<{
2035
2035
  config?: "always" | "never" | "thresholds" | undefined;
@@ -2075,20 +2075,20 @@ export declare const createWorkspaceContract: {
2075
2075
  } | undefined;
2076
2076
  }, undefined>;
2077
2077
  member: v.OptionalSchema<Omit<v.StrictObjectSchema<{
2078
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2079
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2080
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2081
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2082
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2083
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2078
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2079
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2080
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2081
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2082
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2083
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2084
2084
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
2085
2085
  readonly entries: {
2086
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2087
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2088
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2089
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2090
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2091
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2086
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2087
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2088
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2089
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2090
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2091
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2092
2092
  };
2093
2093
  readonly "~standard": v.StandardProps<{
2094
2094
  config?: "always" | "never" | "thresholds" | undefined;
@@ -2134,20 +2134,20 @@ export declare const createWorkspaceContract: {
2134
2134
  } | undefined;
2135
2135
  }, undefined>;
2136
2136
  viewer: v.OptionalSchema<Omit<v.StrictObjectSchema<{
2137
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2138
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2139
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2140
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2141
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2142
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
2137
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2138
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2139
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2140
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2141
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2142
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
2143
2143
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
2144
2144
  readonly entries: {
2145
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2146
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2147
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2148
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2149
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2150
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
2145
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2146
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2147
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2148
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2149
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2150
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
2151
2151
  };
2152
2152
  readonly "~standard": v.StandardProps<{
2153
2153
  config?: "always" | "never" | "thresholds" | undefined;
@@ -2624,7 +2624,7 @@ export declare const createWorkspaceContract: {
2624
2624
  readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
2625
2625
  readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
2626
2626
  readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
2627
- readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
2627
+ readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
2628
2628
  }, undefined>, undefined>, undefined>;
2629
2629
  readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
2630
2630
  readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -2994,15 +2994,22 @@ export declare const createWorkspaceContract: {
2994
2994
  readonly fields: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2995
2995
  readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
2996
2996
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
2997
- readonly type: v.PicklistSchema<["text", "textarea", "number", "select"], undefined>;
2998
2997
  readonly help: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
2999
2998
  readonly placeholder: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
2999
+ readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3000
3000
  readonly options: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3001
3001
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
3002
3002
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
3003
3003
  }, undefined>, undefined>, undefined>;
3004
- readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3005
- readonly maxLength: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
3004
+ readonly default: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
3005
+ readonly defaultValues: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, undefined>;
3006
+ readonly showWhen: v.OptionalSchema<v.ObjectSchema<{
3007
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
3008
+ readonly equals: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>;
3009
+ readonly includes: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3010
+ }, undefined>, undefined>;
3011
+ readonly maxLength: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 2000, undefined>]>, undefined>;
3012
+ readonly type: v.OptionalSchema<v.PicklistSchema<["text", "textarea", "number", "select", "checkbox", "checkbox-group", "path"], undefined>, undefined>;
3006
3013
  }, undefined>, undefined>, undefined>;
3007
3014
  readonly defaultPipelineId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3008
3015
  readonly defaultFragmentIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
@@ -3109,7 +3116,7 @@ export declare const createWorkspaceContract: {
3109
3116
  readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
3110
3117
  readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
3111
3118
  readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
3112
- readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
3119
+ readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
3113
3120
  }, undefined>, undefined>;
3114
3121
  readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
3115
3122
  readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
@@ -3172,21 +3179,22 @@ export declare const createWorkspaceContract: {
3172
3179
  readonly fields: v.ArraySchema<v.ObjectSchema<{
3173
3180
  readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
3174
3181
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
3175
- readonly help: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3176
- readonly placeholder: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3182
+ readonly help: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
3183
+ readonly placeholder: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
3177
3184
  readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3178
- readonly type: v.OptionalSchema<v.PicklistSchema<["text", "password", "select", "number", "checkbox", "textarea", "checkbox-group", "path"], undefined>, undefined>;
3179
3185
  readonly options: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3180
- readonly value: v.StringSchema<undefined>;
3181
- readonly label: v.StringSchema<undefined>;
3186
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
3187
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
3182
3188
  }, undefined>, undefined>, undefined>;
3183
- readonly default: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3184
- readonly defaultValues: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
3189
+ readonly default: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
3190
+ readonly defaultValues: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, undefined>;
3185
3191
  readonly showWhen: v.OptionalSchema<v.ObjectSchema<{
3186
3192
  readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
3187
3193
  readonly equals: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>;
3188
3194
  readonly includes: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3189
3195
  }, undefined>, undefined>;
3196
+ readonly maxLength: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 2000, undefined>]>, undefined>;
3197
+ readonly type: v.OptionalSchema<v.PicklistSchema<["text", "password", "select", "number", "checkbox", "textarea", "checkbox-group", "path"], undefined>, undefined>;
3190
3198
  }, undefined>, undefined>;
3191
3199
  readonly planningPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
3192
3200
  readonly interview: v.PicklistSchema<["full", "skip"], undefined>;
@@ -3409,7 +3417,7 @@ export declare const getWorkspaceContract: {
3409
3417
  readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
3410
3418
  readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
3411
3419
  readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
3412
- readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
3420
+ readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
3413
3421
  }, undefined>, undefined>, undefined>;
3414
3422
  readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
3415
3423
  readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -5036,20 +5044,20 @@ export declare const getWorkspaceContract: {
5036
5044
  readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
5037
5045
  }, undefined>, undefined>, undefined>;
5038
5046
  readonly classRules: Omit<v.StrictObjectSchema<{
5039
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5040
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5041
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5042
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5043
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5044
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5047
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5048
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5049
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5050
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5051
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5052
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5045
5053
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5046
5054
  readonly entries: {
5047
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5048
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5049
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5050
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5051
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5052
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5055
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5056
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5057
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5058
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5059
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5060
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5053
5061
  };
5054
5062
  readonly "~standard": v.StandardProps<{
5055
5063
  config?: "always" | "never" | "thresholds" | undefined;
@@ -5096,20 +5104,20 @@ export declare const getWorkspaceContract: {
5096
5104
  };
5097
5105
  readonly classRulesByRole: Omit<v.StrictObjectSchema<{
5098
5106
  admin: Omit<v.StrictObjectSchema<{
5099
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5100
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5101
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5102
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5103
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5104
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5107
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5108
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5109
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5110
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5111
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5112
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5105
5113
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5106
5114
  readonly entries: {
5107
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5108
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5109
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5110
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5111
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5112
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5115
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5116
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5117
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5118
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5119
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5120
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5113
5121
  };
5114
5122
  readonly "~standard": v.StandardProps<{
5115
5123
  config?: "always" | "never" | "thresholds" | undefined;
@@ -5155,20 +5163,20 @@ export declare const getWorkspaceContract: {
5155
5163
  } | undefined;
5156
5164
  };
5157
5165
  member: Omit<v.StrictObjectSchema<{
5158
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5159
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5160
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5161
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5162
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5163
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5166
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5167
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5168
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5169
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5170
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5171
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5164
5172
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5165
5173
  readonly entries: {
5166
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5167
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5168
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5169
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5170
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5171
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5174
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5175
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5176
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5177
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5178
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5179
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5172
5180
  };
5173
5181
  readonly "~standard": v.StandardProps<{
5174
5182
  config?: "always" | "never" | "thresholds" | undefined;
@@ -5214,20 +5222,20 @@ export declare const getWorkspaceContract: {
5214
5222
  } | undefined;
5215
5223
  };
5216
5224
  viewer: Omit<v.StrictObjectSchema<{
5217
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5218
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5219
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5220
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5221
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5222
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5225
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5226
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5227
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5228
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5229
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5230
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5223
5231
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5224
5232
  readonly entries: {
5225
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5226
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5227
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5228
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5229
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5230
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5233
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5234
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5235
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5236
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5237
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5238
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5231
5239
  };
5232
5240
  readonly "~standard": v.StandardProps<{
5233
5241
  config?: "always" | "never" | "thresholds" | undefined;
@@ -5275,20 +5283,20 @@ export declare const getWorkspaceContract: {
5275
5283
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5276
5284
  readonly entries: {
5277
5285
  admin: v.OptionalSchema<Omit<v.StrictObjectSchema<{
5278
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5279
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5280
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5281
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5282
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5283
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5286
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5287
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5288
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5289
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5290
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5291
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5284
5292
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5285
5293
  readonly entries: {
5286
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5287
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5288
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5289
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5290
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5291
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5294
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5295
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5296
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5297
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5298
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5299
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5292
5300
  };
5293
5301
  readonly "~standard": v.StandardProps<{
5294
5302
  config?: "always" | "never" | "thresholds" | undefined;
@@ -5334,20 +5342,20 @@ export declare const getWorkspaceContract: {
5334
5342
  } | undefined;
5335
5343
  }, undefined>;
5336
5344
  member: v.OptionalSchema<Omit<v.StrictObjectSchema<{
5337
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5338
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5339
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5340
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5341
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5342
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5345
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5346
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5347
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5348
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5349
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5350
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5343
5351
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5344
5352
  readonly entries: {
5345
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5346
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5347
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5348
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5349
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5350
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5353
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5354
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5355
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5356
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5357
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5358
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5351
5359
  };
5352
5360
  readonly "~standard": v.StandardProps<{
5353
5361
  config?: "always" | "never" | "thresholds" | undefined;
@@ -5393,20 +5401,20 @@ export declare const getWorkspaceContract: {
5393
5401
  } | undefined;
5394
5402
  }, undefined>;
5395
5403
  viewer: v.OptionalSchema<Omit<v.StrictObjectSchema<{
5396
- config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5397
- dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5398
- docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5399
- schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5400
- source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5401
- test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
5404
+ config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5405
+ dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5406
+ docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5407
+ schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5408
+ source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5409
+ test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
5402
5410
  }, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
5403
5411
  readonly entries: {
5404
- config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5405
- dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5406
- docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5407
- schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5408
- source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5409
- test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
5412
+ config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5413
+ dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5414
+ docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5415
+ schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5416
+ source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5417
+ test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
5410
5418
  };
5411
5419
  readonly "~standard": v.StandardProps<{
5412
5420
  config?: "always" | "never" | "thresholds" | undefined;
@@ -5883,7 +5891,7 @@ export declare const getWorkspaceContract: {
5883
5891
  readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
5884
5892
  readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
5885
5893
  readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
5886
- readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
5894
+ readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
5887
5895
  }, undefined>, undefined>, undefined>;
5888
5896
  readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
5889
5897
  readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -6253,15 +6261,22 @@ export declare const getWorkspaceContract: {
6253
6261
  readonly fields: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
6254
6262
  readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
6255
6263
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
6256
- readonly type: v.PicklistSchema<["text", "textarea", "number", "select"], undefined>;
6257
6264
  readonly help: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
6258
6265
  readonly placeholder: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
6266
+ readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6259
6267
  readonly options: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
6260
6268
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
6261
6269
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
6262
6270
  }, undefined>, undefined>, undefined>;
6263
- readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6264
- readonly maxLength: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
6271
+ readonly default: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
6272
+ readonly defaultValues: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, undefined>;
6273
+ readonly showWhen: v.OptionalSchema<v.ObjectSchema<{
6274
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
6275
+ readonly equals: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>;
6276
+ readonly includes: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6277
+ }, undefined>, undefined>;
6278
+ readonly maxLength: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 2000, undefined>]>, undefined>;
6279
+ readonly type: v.OptionalSchema<v.PicklistSchema<["text", "textarea", "number", "select", "checkbox", "checkbox-group", "path"], undefined>, undefined>;
6265
6280
  }, undefined>, undefined>, undefined>;
6266
6281
  readonly defaultPipelineId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6267
6282
  readonly defaultFragmentIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
@@ -6368,7 +6383,7 @@ export declare const getWorkspaceContract: {
6368
6383
  readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
6369
6384
  readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
6370
6385
  readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
6371
- readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
6386
+ readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
6372
6387
  }, undefined>, undefined>;
6373
6388
  readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
6374
6389
  readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
@@ -6431,21 +6446,22 @@ export declare const getWorkspaceContract: {
6431
6446
  readonly fields: v.ArraySchema<v.ObjectSchema<{
6432
6447
  readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
6433
6448
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
6434
- readonly help: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6435
- readonly placeholder: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6449
+ readonly help: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
6450
+ readonly placeholder: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
6436
6451
  readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6437
- readonly type: v.OptionalSchema<v.PicklistSchema<["text", "password", "select", "number", "checkbox", "textarea", "checkbox-group", "path"], undefined>, undefined>;
6438
6452
  readonly options: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
6439
- readonly value: v.StringSchema<undefined>;
6440
- readonly label: v.StringSchema<undefined>;
6453
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
6454
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
6441
6455
  }, undefined>, undefined>, undefined>;
6442
- readonly default: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6443
- readonly defaultValues: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
6456
+ readonly default: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
6457
+ readonly defaultValues: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, undefined>;
6444
6458
  readonly showWhen: v.OptionalSchema<v.ObjectSchema<{
6445
6459
  readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
6446
6460
  readonly equals: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>;
6447
6461
  readonly includes: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6448
6462
  }, undefined>, undefined>;
6463
+ readonly maxLength: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 2000, undefined>]>, undefined>;
6464
+ readonly type: v.OptionalSchema<v.PicklistSchema<["text", "password", "select", "number", "checkbox", "textarea", "checkbox-group", "path"], undefined>, undefined>;
6449
6465
  }, undefined>, undefined>;
6450
6466
  readonly planningPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
6451
6467
  readonly interview: v.PicklistSchema<["full", "skip"], undefined>;