@cat-factory/contracts 0.230.1 → 0.232.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/accountSettings.d.ts +39 -0
- package/dist/accountSettings.d.ts.map +1 -1
- package/dist/agent-failure-kinds.d.ts +34 -0
- package/dist/agent-failure-kinds.d.ts.map +1 -0
- package/dist/agent-failure-kinds.js +74 -0
- package/dist/agent-failure-kinds.js.map +1 -0
- package/dist/execution.d.ts +7 -16
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +10 -39
- package/dist/execution.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/merge.d.ts +372 -342
- package/dist/merge.d.ts.map +1 -1
- package/dist/merge.js +48 -2
- package/dist/merge.js.map +1 -1
- package/dist/notification-webhooks.d.ts +18 -2
- package/dist/notification-webhooks.d.ts.map +1 -1
- package/dist/notification-webhooks.js +9 -1
- package/dist/notification-webhooks.js.map +1 -1
- package/dist/notifications.d.ts +24 -2
- package/dist/notifications.d.ts.map +1 -1
- package/dist/notifications.js +11 -0
- package/dist/notifications.js.map +1 -1
- package/dist/observability.d.ts +156 -2
- package/dist/observability.d.ts.map +1 -1
- package/dist/observability.js +86 -0
- package/dist/observability.js.map +1 -1
- package/dist/public-api.d.ts +2 -1
- package/dist/public-api.d.ts.map +1 -1
- package/dist/routes/accounts.d.ts +39 -0
- package/dist/routes/accounts.d.ts.map +1 -1
- package/dist/routes/merge.d.ts +504 -504
- package/dist/routes/notifications.d.ts +6 -3
- package/dist/routes/notifications.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +6 -3
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +172 -170
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +86 -85
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/snapshot.d.ts
CHANGED
|
@@ -1723,7 +1723,8 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1723
1723
|
readonly mergedRepos: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1724
1724
|
readonly unmergedRepos: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1725
1725
|
readonly platformWindow: v.OptionalSchema<v.PicklistSchema<["1h", "24h", "7d"], undefined>, undefined>;
|
|
1726
|
-
readonly platformAlerts: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["failure_rate_high", "duration_p99_high", "backlog_high", "throughput_stalled", "failure_kind_dominant", "sweep_degraded"], undefined>, undefined>, undefined>;
|
|
1726
|
+
readonly platformAlerts: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["failure_rate_high", "duration_p99_high", "backlog_high", "throughput_stalled", "failure_kind_dominant", "failure_kind_rate_high", "sweep_degraded"], undefined>, undefined>, undefined>;
|
|
1727
|
+
readonly platformAlertFailureKinds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1727
1728
|
readonly platformFailingRuns: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1728
1729
|
readonly executionId: v.StringSchema<undefined>;
|
|
1729
1730
|
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1774,20 +1775,20 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1774
1775
|
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
1775
1776
|
}, undefined>, undefined>, undefined>;
|
|
1776
1777
|
readonly classRules: Omit<v.StrictObjectSchema<{
|
|
1777
|
-
config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1778
|
-
dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1779
|
-
docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1780
|
-
schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1781
|
-
source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1782
|
-
test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1778
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1779
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1780
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1781
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1782
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1783
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1783
1784
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
1784
1785
|
readonly entries: {
|
|
1785
|
-
config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1786
|
-
dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1787
|
-
docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1788
|
-
schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1789
|
-
source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1790
|
-
test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1786
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1787
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1788
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1789
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1790
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1791
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1791
1792
|
};
|
|
1792
1793
|
readonly "~standard": v.StandardProps<{
|
|
1793
1794
|
config?: "always" | "never" | "thresholds" | undefined;
|
|
@@ -1834,20 +1835,20 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1834
1835
|
};
|
|
1835
1836
|
readonly classRulesByRole: Omit<v.StrictObjectSchema<{
|
|
1836
1837
|
admin: Omit<v.StrictObjectSchema<{
|
|
1837
|
-
config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1838
|
-
dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1839
|
-
docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1840
|
-
schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1841
|
-
source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1842
|
-
test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1838
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1839
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1840
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1841
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1842
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1843
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1843
1844
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
1844
1845
|
readonly entries: {
|
|
1845
|
-
config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1846
|
-
dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1847
|
-
docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1848
|
-
schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1849
|
-
source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1850
|
-
test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1846
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1847
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1848
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1849
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1850
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1851
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1851
1852
|
};
|
|
1852
1853
|
readonly "~standard": v.StandardProps<{
|
|
1853
1854
|
config?: "always" | "never" | "thresholds" | undefined;
|
|
@@ -1893,20 +1894,20 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1893
1894
|
} | undefined;
|
|
1894
1895
|
};
|
|
1895
1896
|
member: Omit<v.StrictObjectSchema<{
|
|
1896
|
-
config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1897
|
-
dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1898
|
-
docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1899
|
-
schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1900
|
-
source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1901
|
-
test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1897
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1898
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1899
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1900
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1901
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1902
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1902
1903
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
1903
1904
|
readonly entries: {
|
|
1904
|
-
config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1905
|
-
dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1906
|
-
docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1907
|
-
schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1908
|
-
source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1909
|
-
test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1905
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1906
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1907
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1908
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1909
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1910
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1910
1911
|
};
|
|
1911
1912
|
readonly "~standard": v.StandardProps<{
|
|
1912
1913
|
config?: "always" | "never" | "thresholds" | undefined;
|
|
@@ -1952,20 +1953,20 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1952
1953
|
} | undefined;
|
|
1953
1954
|
};
|
|
1954
1955
|
viewer: Omit<v.StrictObjectSchema<{
|
|
1955
|
-
config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1956
|
-
dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1957
|
-
docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1958
|
-
schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1959
|
-
source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1960
|
-
test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
1956
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1957
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1958
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1959
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1960
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1961
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
1961
1962
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
1962
1963
|
readonly entries: {
|
|
1963
|
-
config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1964
|
-
dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1965
|
-
docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1966
|
-
schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1967
|
-
source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1968
|
-
test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
1964
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1965
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1966
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1967
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1968
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1969
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
1969
1970
|
};
|
|
1970
1971
|
readonly "~standard": v.StandardProps<{
|
|
1971
1972
|
config?: "always" | "never" | "thresholds" | undefined;
|
|
@@ -2013,20 +2014,20 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
2013
2014
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
2014
2015
|
readonly entries: {
|
|
2015
2016
|
admin: v.OptionalSchema<Omit<v.StrictObjectSchema<{
|
|
2016
|
-
config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2017
|
-
dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2018
|
-
docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2019
|
-
schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2020
|
-
source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2021
|
-
test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2017
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2018
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2019
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2020
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2021
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2022
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2022
2023
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
2023
2024
|
readonly entries: {
|
|
2024
|
-
config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2025
|
-
dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2026
|
-
docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2027
|
-
schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2028
|
-
source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2029
|
-
test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2025
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2026
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2027
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2028
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2029
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2030
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2030
2031
|
};
|
|
2031
2032
|
readonly "~standard": v.StandardProps<{
|
|
2032
2033
|
config?: "always" | "never" | "thresholds" | undefined;
|
|
@@ -2072,20 +2073,20 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
2072
2073
|
} | undefined;
|
|
2073
2074
|
}, undefined>;
|
|
2074
2075
|
member: v.OptionalSchema<Omit<v.StrictObjectSchema<{
|
|
2075
|
-
config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2076
|
-
dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2077
|
-
docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2078
|
-
schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2079
|
-
source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2080
|
-
test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2076
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2077
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2078
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2079
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2080
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2081
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2081
2082
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
2082
2083
|
readonly entries: {
|
|
2083
|
-
config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2084
|
-
dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2085
|
-
docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2086
|
-
schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2087
|
-
source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2088
|
-
test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2084
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2085
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2086
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2087
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2088
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2089
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2089
2090
|
};
|
|
2090
2091
|
readonly "~standard": v.StandardProps<{
|
|
2091
2092
|
config?: "always" | "never" | "thresholds" | undefined;
|
|
@@ -2131,20 +2132,20 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
2131
2132
|
} | undefined;
|
|
2132
2133
|
}, undefined>;
|
|
2133
2134
|
viewer: v.OptionalSchema<Omit<v.StrictObjectSchema<{
|
|
2134
|
-
config: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2135
|
-
dependency: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2136
|
-
docs: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2137
|
-
schema: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2138
|
-
source: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2139
|
-
test: v.PicklistSchema<["thresholds", "always", "never"], undefined>;
|
|
2135
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2136
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2137
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2138
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2139
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2140
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
2140
2141
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
2141
2142
|
readonly entries: {
|
|
2142
|
-
config: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2143
|
-
dependency: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2144
|
-
docs: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2145
|
-
schema: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2146
|
-
source: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2147
|
-
test: v.OptionalSchema<v.PicklistSchema<["thresholds", "always", "never"], undefined>, undefined>;
|
|
2143
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2144
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2145
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2146
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2147
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2148
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
2148
2149
|
};
|
|
2149
2150
|
readonly "~standard": v.StandardProps<{
|
|
2150
2151
|
config?: "always" | "never" | "thresholds" | undefined;
|
package/dist/snapshot.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwC5B;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;aAGhC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE7E,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKlC;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;OAGG;;;;IAEH;;;;;;OAMG;;;;;;IAEH;;;;OAIG;;;;;;IAEH;;;;;OAKG
|
|
1
|
+
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwC5B;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;aAGhC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE7E,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKlC;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;OAGG;;;;IAEH;;;;;;OAMG;;;;;;IAEH;;;;OAIG;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;OAQG;;;;;IAOH;;;OAGG;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;IAGH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;IAEH;;;;;;;OAOG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;;OASG;;;;;;;;IAEH;;;;;;;;OAQG;;IAEH;;;;;;;;;OASG;;;;QA7NH;;;;;WAKG;;;;;;QALH;;;;;WAKG;;;IA2NH;;;;;;;OAOG;;IAEH;;;;;;;;;;;;;;;OAeG;;;;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;OAKG;;;;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
|