veryfront 0.1.535 → 0.1.536
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/esm/cli/templates/manifest.d.ts +405 -405
- package/esm/cli/templates/manifest.js +451 -451
- package/esm/deno.js +1 -1
- package/esm/src/agent/testing/index.d.ts +2 -2
- package/esm/src/agent/testing/index.d.ts.map +1 -1
- package/esm/src/agent/testing/index.js +2 -2
- package/esm/src/server/dev-ui/manifest.d.ts +17 -17
- package/esm/src/server/dev-ui/manifest.js +17 -17
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/cli/templates/manifest.js +451 -451
- package/src/deno.js +1 -1
- package/src/deps/esm.sh/@types/react-dom@19.2.3/client.d.ts +1 -1
- package/src/deps/esm.sh/@types/react@19.2.3/global.d.ts +165 -0
- package/src/deps/esm.sh/@types/react@19.2.3/index.d.ts +4301 -0
- package/src/deps/esm.sh/react-dom@19.2.4/client.d.ts +1 -1
- package/src/src/agent/testing/index.ts +7 -0
- package/src/src/server/dev-ui/manifest.js +17 -17
- package/src/src/utils/version-constant.ts +1 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
// See https://github.com/facebook/react/blob/main/packages/react-dom/client.js to see how the exports are declared,
|
|
6
6
|
|
|
7
|
-
import React = require("https://esm.sh/@types/react@19.2.
|
|
7
|
+
import React = require("https://esm.sh/@types/react@19.2.3/index.d.ts");
|
|
8
8
|
|
|
9
9
|
export {};
|
|
10
10
|
|
|
@@ -27,6 +27,7 @@ export {
|
|
|
27
27
|
type DurableRunCanaryApiClient,
|
|
28
28
|
type DurableRunCanaryApiConfig,
|
|
29
29
|
type DurableRunCanaryCase,
|
|
30
|
+
type DurableRunCanaryCliCaseFactoryInput,
|
|
30
31
|
type DurableRunCanaryCreateRootRunInput,
|
|
31
32
|
type DurableRunCanaryEnvironment,
|
|
32
33
|
type DurableRunCanaryMessage,
|
|
@@ -41,6 +42,8 @@ export {
|
|
|
41
42
|
getDurableRunCanaryMessageSchema,
|
|
42
43
|
parseDurableRunCanaryRunSummary,
|
|
43
44
|
resolveDurableRunCanaryEnvironment,
|
|
45
|
+
runDurableRunCanaryCli,
|
|
46
|
+
type RunDurableRunCanaryCliInput,
|
|
44
47
|
stringifyUnknown,
|
|
45
48
|
} from "./durable-run-canaries/index.js";
|
|
46
49
|
|
|
@@ -86,6 +89,8 @@ export {
|
|
|
86
89
|
type LiveEvalCaseSelectionInput,
|
|
87
90
|
type LiveEvalCaseSurface,
|
|
88
91
|
type LiveEvalCaseTagRule,
|
|
92
|
+
type LiveEvalCliCaseFactoryInput,
|
|
93
|
+
type LiveEvalCliCaseGroups,
|
|
89
94
|
type LiveEvalContext,
|
|
90
95
|
type LiveEvalConversationInput,
|
|
91
96
|
type LiveEvalCreateConversationInput,
|
|
@@ -112,6 +117,8 @@ export {
|
|
|
112
117
|
printRuntimeConfidencePreflight,
|
|
113
118
|
resolveLiveEvalEnvironment,
|
|
114
119
|
resolveLiveEvalRequestedCaseIds,
|
|
120
|
+
runLiveEvalCli,
|
|
121
|
+
type RunLiveEvalCliInput,
|
|
115
122
|
type RuntimeConfidencePreflightResult,
|
|
116
123
|
type RuntimePerformanceSummary,
|
|
117
124
|
selectLiveEvalCases,
|