@fabricorg/experiments-api-protocol 0.1.7 → 0.2.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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -31
- package/dist/index.d.ts +31 -31
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3678,7 +3678,7 @@ declare const TestRunArtifact: z.ZodObject<{
|
|
|
3678
3678
|
}>;
|
|
3679
3679
|
declare const CreateTestRunInput: z.ZodObject<{
|
|
3680
3680
|
externalId: z.ZodOptional<z.ZodString>;
|
|
3681
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
3681
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
3682
3682
|
suite: z.ZodString;
|
|
3683
3683
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
3684
3684
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3756,7 +3756,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3756
3756
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3757
3757
|
suite: string;
|
|
3758
3758
|
durationMs: number;
|
|
3759
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3759
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3760
3760
|
summary: {
|
|
3761
3761
|
passed: number;
|
|
3762
3762
|
failed: number;
|
|
@@ -3789,7 +3789,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3789
3789
|
}, {
|
|
3790
3790
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3791
3791
|
suite: string;
|
|
3792
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3792
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3793
3793
|
summary: {
|
|
3794
3794
|
passed: number;
|
|
3795
3795
|
failed: number;
|
|
@@ -3824,7 +3824,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3824
3824
|
type CreateTestRunInput = z.infer<typeof CreateTestRunInput>;
|
|
3825
3825
|
declare const TestRun: z.ZodObject<{
|
|
3826
3826
|
externalId: z.ZodOptional<z.ZodString>;
|
|
3827
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
3827
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
3828
3828
|
suite: z.ZodString;
|
|
3829
3829
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
3830
3830
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3911,7 +3911,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3911
3911
|
updatedAt: string;
|
|
3912
3912
|
suite: string;
|
|
3913
3913
|
durationMs: number;
|
|
3914
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3914
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3915
3915
|
summary: {
|
|
3916
3916
|
passed: number;
|
|
3917
3917
|
failed: number;
|
|
@@ -3949,7 +3949,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3949
3949
|
createdAt: string;
|
|
3950
3950
|
updatedAt: string;
|
|
3951
3951
|
suite: string;
|
|
3952
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3952
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3953
3953
|
summary: {
|
|
3954
3954
|
passed: number;
|
|
3955
3955
|
failed: number;
|
|
@@ -3986,7 +3986,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3986
3986
|
type TestRun = z.infer<typeof TestRun>;
|
|
3987
3987
|
declare const TestRunListInput: z.ZodObject<{
|
|
3988
3988
|
status: z.ZodOptional<z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>>;
|
|
3989
|
-
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>>;
|
|
3989
|
+
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>>;
|
|
3990
3990
|
suite: z.ZodOptional<z.ZodString>;
|
|
3991
3991
|
targetPack: z.ZodOptional<z.ZodString>;
|
|
3992
3992
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3994,14 +3994,14 @@ declare const TestRunListInput: z.ZodObject<{
|
|
|
3994
3994
|
}, "strip", z.ZodTypeAny, {
|
|
3995
3995
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3996
3996
|
suite?: string | undefined;
|
|
3997
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
3997
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
3998
3998
|
targetPack?: string | undefined;
|
|
3999
3999
|
limit?: number | undefined;
|
|
4000
4000
|
offset?: number | undefined;
|
|
4001
4001
|
}, {
|
|
4002
4002
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
4003
4003
|
suite?: string | undefined;
|
|
4004
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
4004
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
4005
4005
|
targetPack?: string | undefined;
|
|
4006
4006
|
limit?: number | undefined;
|
|
4007
4007
|
offset?: number | undefined;
|
|
@@ -4009,7 +4009,7 @@ declare const TestRunListInput: z.ZodObject<{
|
|
|
4009
4009
|
declare const TestRunListResponse: z.ZodObject<{
|
|
4010
4010
|
runs: z.ZodArray<z.ZodObject<Omit<{
|
|
4011
4011
|
externalId: z.ZodOptional<z.ZodString>;
|
|
4012
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
4012
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
4013
4013
|
suite: z.ZodString;
|
|
4014
4014
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
4015
4015
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4096,7 +4096,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4096
4096
|
updatedAt: string;
|
|
4097
4097
|
suite: string;
|
|
4098
4098
|
durationMs: number;
|
|
4099
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4099
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4100
4100
|
summary: {
|
|
4101
4101
|
passed: number;
|
|
4102
4102
|
failed: number;
|
|
@@ -4122,7 +4122,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4122
4122
|
createdAt: string;
|
|
4123
4123
|
updatedAt: string;
|
|
4124
4124
|
suite: string;
|
|
4125
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4125
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4126
4126
|
summary: {
|
|
4127
4127
|
passed: number;
|
|
4128
4128
|
failed: number;
|
|
@@ -4152,7 +4152,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4152
4152
|
updatedAt: string;
|
|
4153
4153
|
suite: string;
|
|
4154
4154
|
durationMs: number;
|
|
4155
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4155
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4156
4156
|
summary: {
|
|
4157
4157
|
passed: number;
|
|
4158
4158
|
failed: number;
|
|
@@ -4180,7 +4180,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4180
4180
|
createdAt: string;
|
|
4181
4181
|
updatedAt: string;
|
|
4182
4182
|
suite: string;
|
|
4183
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4183
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4184
4184
|
summary: {
|
|
4185
4185
|
passed: number;
|
|
4186
4186
|
failed: number;
|
|
@@ -13977,7 +13977,7 @@ declare const endpoints: {
|
|
|
13977
13977
|
path: string;
|
|
13978
13978
|
params: z.ZodObject<{
|
|
13979
13979
|
status: z.ZodOptional<z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>>;
|
|
13980
|
-
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>>;
|
|
13980
|
+
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>>;
|
|
13981
13981
|
suite: z.ZodOptional<z.ZodString>;
|
|
13982
13982
|
targetPack: z.ZodOptional<z.ZodString>;
|
|
13983
13983
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13985,14 +13985,14 @@ declare const endpoints: {
|
|
|
13985
13985
|
}, "strip", z.ZodTypeAny, {
|
|
13986
13986
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
13987
13987
|
suite?: string | undefined;
|
|
13988
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
13988
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
13989
13989
|
targetPack?: string | undefined;
|
|
13990
13990
|
limit?: number | undefined;
|
|
13991
13991
|
offset?: number | undefined;
|
|
13992
13992
|
}, {
|
|
13993
13993
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
13994
13994
|
suite?: string | undefined;
|
|
13995
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
13995
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
13996
13996
|
targetPack?: string | undefined;
|
|
13997
13997
|
limit?: number | undefined;
|
|
13998
13998
|
offset?: number | undefined;
|
|
@@ -14000,7 +14000,7 @@ declare const endpoints: {
|
|
|
14000
14000
|
response: z.ZodObject<{
|
|
14001
14001
|
runs: z.ZodArray<z.ZodObject<Omit<{
|
|
14002
14002
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14003
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14003
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14004
14004
|
suite: z.ZodString;
|
|
14005
14005
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14006
14006
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14087,7 +14087,7 @@ declare const endpoints: {
|
|
|
14087
14087
|
updatedAt: string;
|
|
14088
14088
|
suite: string;
|
|
14089
14089
|
durationMs: number;
|
|
14090
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14090
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14091
14091
|
summary: {
|
|
14092
14092
|
passed: number;
|
|
14093
14093
|
failed: number;
|
|
@@ -14113,7 +14113,7 @@ declare const endpoints: {
|
|
|
14113
14113
|
createdAt: string;
|
|
14114
14114
|
updatedAt: string;
|
|
14115
14115
|
suite: string;
|
|
14116
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14116
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14117
14117
|
summary: {
|
|
14118
14118
|
passed: number;
|
|
14119
14119
|
failed: number;
|
|
@@ -14143,7 +14143,7 @@ declare const endpoints: {
|
|
|
14143
14143
|
updatedAt: string;
|
|
14144
14144
|
suite: string;
|
|
14145
14145
|
durationMs: number;
|
|
14146
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14146
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14147
14147
|
summary: {
|
|
14148
14148
|
passed: number;
|
|
14149
14149
|
failed: number;
|
|
@@ -14171,7 +14171,7 @@ declare const endpoints: {
|
|
|
14171
14171
|
createdAt: string;
|
|
14172
14172
|
updatedAt: string;
|
|
14173
14173
|
suite: string;
|
|
14174
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14174
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14175
14175
|
summary: {
|
|
14176
14176
|
passed: number;
|
|
14177
14177
|
failed: number;
|
|
@@ -14202,7 +14202,7 @@ declare const endpoints: {
|
|
|
14202
14202
|
path: string;
|
|
14203
14203
|
params: z.ZodObject<{
|
|
14204
14204
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14205
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14205
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14206
14206
|
suite: z.ZodString;
|
|
14207
14207
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14208
14208
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14280,7 +14280,7 @@ declare const endpoints: {
|
|
|
14280
14280
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
14281
14281
|
suite: string;
|
|
14282
14282
|
durationMs: number;
|
|
14283
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14283
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14284
14284
|
summary: {
|
|
14285
14285
|
passed: number;
|
|
14286
14286
|
failed: number;
|
|
@@ -14313,7 +14313,7 @@ declare const endpoints: {
|
|
|
14313
14313
|
}, {
|
|
14314
14314
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
14315
14315
|
suite: string;
|
|
14316
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14316
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14317
14317
|
summary: {
|
|
14318
14318
|
passed: number;
|
|
14319
14319
|
failed: number;
|
|
@@ -14347,7 +14347,7 @@ declare const endpoints: {
|
|
|
14347
14347
|
}>;
|
|
14348
14348
|
response: z.ZodObject<{
|
|
14349
14349
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14350
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14350
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14351
14351
|
suite: z.ZodString;
|
|
14352
14352
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14353
14353
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14434,7 +14434,7 @@ declare const endpoints: {
|
|
|
14434
14434
|
updatedAt: string;
|
|
14435
14435
|
suite: string;
|
|
14436
14436
|
durationMs: number;
|
|
14437
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14437
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14438
14438
|
summary: {
|
|
14439
14439
|
passed: number;
|
|
14440
14440
|
failed: number;
|
|
@@ -14472,7 +14472,7 @@ declare const endpoints: {
|
|
|
14472
14472
|
createdAt: string;
|
|
14473
14473
|
updatedAt: string;
|
|
14474
14474
|
suite: string;
|
|
14475
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14475
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14476
14476
|
summary: {
|
|
14477
14477
|
passed: number;
|
|
14478
14478
|
failed: number;
|
|
@@ -14515,7 +14515,7 @@ declare const endpoints: {
|
|
|
14515
14515
|
params: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
14516
14516
|
response: z.ZodObject<{
|
|
14517
14517
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14518
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14518
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14519
14519
|
suite: z.ZodString;
|
|
14520
14520
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14521
14521
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14602,7 +14602,7 @@ declare const endpoints: {
|
|
|
14602
14602
|
updatedAt: string;
|
|
14603
14603
|
suite: string;
|
|
14604
14604
|
durationMs: number;
|
|
14605
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14605
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14606
14606
|
summary: {
|
|
14607
14607
|
passed: number;
|
|
14608
14608
|
failed: number;
|
|
@@ -14640,7 +14640,7 @@ declare const endpoints: {
|
|
|
14640
14640
|
createdAt: string;
|
|
14641
14641
|
updatedAt: string;
|
|
14642
14642
|
suite: string;
|
|
14643
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14643
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14644
14644
|
summary: {
|
|
14645
14645
|
passed: number;
|
|
14646
14646
|
failed: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -3678,7 +3678,7 @@ declare const TestRunArtifact: z.ZodObject<{
|
|
|
3678
3678
|
}>;
|
|
3679
3679
|
declare const CreateTestRunInput: z.ZodObject<{
|
|
3680
3680
|
externalId: z.ZodOptional<z.ZodString>;
|
|
3681
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
3681
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
3682
3682
|
suite: z.ZodString;
|
|
3683
3683
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
3684
3684
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3756,7 +3756,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3756
3756
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3757
3757
|
suite: string;
|
|
3758
3758
|
durationMs: number;
|
|
3759
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3759
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3760
3760
|
summary: {
|
|
3761
3761
|
passed: number;
|
|
3762
3762
|
failed: number;
|
|
@@ -3789,7 +3789,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3789
3789
|
}, {
|
|
3790
3790
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3791
3791
|
suite: string;
|
|
3792
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3792
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3793
3793
|
summary: {
|
|
3794
3794
|
passed: number;
|
|
3795
3795
|
failed: number;
|
|
@@ -3824,7 +3824,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3824
3824
|
type CreateTestRunInput = z.infer<typeof CreateTestRunInput>;
|
|
3825
3825
|
declare const TestRun: z.ZodObject<{
|
|
3826
3826
|
externalId: z.ZodOptional<z.ZodString>;
|
|
3827
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
3827
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
3828
3828
|
suite: z.ZodString;
|
|
3829
3829
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
3830
3830
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3911,7 +3911,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3911
3911
|
updatedAt: string;
|
|
3912
3912
|
suite: string;
|
|
3913
3913
|
durationMs: number;
|
|
3914
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3914
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3915
3915
|
summary: {
|
|
3916
3916
|
passed: number;
|
|
3917
3917
|
failed: number;
|
|
@@ -3949,7 +3949,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3949
3949
|
createdAt: string;
|
|
3950
3950
|
updatedAt: string;
|
|
3951
3951
|
suite: string;
|
|
3952
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
3952
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
3953
3953
|
summary: {
|
|
3954
3954
|
passed: number;
|
|
3955
3955
|
failed: number;
|
|
@@ -3986,7 +3986,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3986
3986
|
type TestRun = z.infer<typeof TestRun>;
|
|
3987
3987
|
declare const TestRunListInput: z.ZodObject<{
|
|
3988
3988
|
status: z.ZodOptional<z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>>;
|
|
3989
|
-
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>>;
|
|
3989
|
+
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>>;
|
|
3990
3990
|
suite: z.ZodOptional<z.ZodString>;
|
|
3991
3991
|
targetPack: z.ZodOptional<z.ZodString>;
|
|
3992
3992
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3994,14 +3994,14 @@ declare const TestRunListInput: z.ZodObject<{
|
|
|
3994
3994
|
}, "strip", z.ZodTypeAny, {
|
|
3995
3995
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3996
3996
|
suite?: string | undefined;
|
|
3997
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
3997
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
3998
3998
|
targetPack?: string | undefined;
|
|
3999
3999
|
limit?: number | undefined;
|
|
4000
4000
|
offset?: number | undefined;
|
|
4001
4001
|
}, {
|
|
4002
4002
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
4003
4003
|
suite?: string | undefined;
|
|
4004
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
4004
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
4005
4005
|
targetPack?: string | undefined;
|
|
4006
4006
|
limit?: number | undefined;
|
|
4007
4007
|
offset?: number | undefined;
|
|
@@ -4009,7 +4009,7 @@ declare const TestRunListInput: z.ZodObject<{
|
|
|
4009
4009
|
declare const TestRunListResponse: z.ZodObject<{
|
|
4010
4010
|
runs: z.ZodArray<z.ZodObject<Omit<{
|
|
4011
4011
|
externalId: z.ZodOptional<z.ZodString>;
|
|
4012
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
4012
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
4013
4013
|
suite: z.ZodString;
|
|
4014
4014
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
4015
4015
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4096,7 +4096,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4096
4096
|
updatedAt: string;
|
|
4097
4097
|
suite: string;
|
|
4098
4098
|
durationMs: number;
|
|
4099
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4099
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4100
4100
|
summary: {
|
|
4101
4101
|
passed: number;
|
|
4102
4102
|
failed: number;
|
|
@@ -4122,7 +4122,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4122
4122
|
createdAt: string;
|
|
4123
4123
|
updatedAt: string;
|
|
4124
4124
|
suite: string;
|
|
4125
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4125
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4126
4126
|
summary: {
|
|
4127
4127
|
passed: number;
|
|
4128
4128
|
failed: number;
|
|
@@ -4152,7 +4152,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4152
4152
|
updatedAt: string;
|
|
4153
4153
|
suite: string;
|
|
4154
4154
|
durationMs: number;
|
|
4155
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4155
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4156
4156
|
summary: {
|
|
4157
4157
|
passed: number;
|
|
4158
4158
|
failed: number;
|
|
@@ -4180,7 +4180,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
4180
4180
|
createdAt: string;
|
|
4181
4181
|
updatedAt: string;
|
|
4182
4182
|
suite: string;
|
|
4183
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
4183
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
4184
4184
|
summary: {
|
|
4185
4185
|
passed: number;
|
|
4186
4186
|
failed: number;
|
|
@@ -13977,7 +13977,7 @@ declare const endpoints: {
|
|
|
13977
13977
|
path: string;
|
|
13978
13978
|
params: z.ZodObject<{
|
|
13979
13979
|
status: z.ZodOptional<z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>>;
|
|
13980
|
-
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>>;
|
|
13980
|
+
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>>;
|
|
13981
13981
|
suite: z.ZodOptional<z.ZodString>;
|
|
13982
13982
|
targetPack: z.ZodOptional<z.ZodString>;
|
|
13983
13983
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13985,14 +13985,14 @@ declare const endpoints: {
|
|
|
13985
13985
|
}, "strip", z.ZodTypeAny, {
|
|
13986
13986
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
13987
13987
|
suite?: string | undefined;
|
|
13988
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
13988
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
13989
13989
|
targetPack?: string | undefined;
|
|
13990
13990
|
limit?: number | undefined;
|
|
13991
13991
|
offset?: number | undefined;
|
|
13992
13992
|
}, {
|
|
13993
13993
|
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
13994
13994
|
suite?: string | undefined;
|
|
13995
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | undefined;
|
|
13995
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow" | undefined;
|
|
13996
13996
|
targetPack?: string | undefined;
|
|
13997
13997
|
limit?: number | undefined;
|
|
13998
13998
|
offset?: number | undefined;
|
|
@@ -14000,7 +14000,7 @@ declare const endpoints: {
|
|
|
14000
14000
|
response: z.ZodObject<{
|
|
14001
14001
|
runs: z.ZodArray<z.ZodObject<Omit<{
|
|
14002
14002
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14003
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14003
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14004
14004
|
suite: z.ZodString;
|
|
14005
14005
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14006
14006
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14087,7 +14087,7 @@ declare const endpoints: {
|
|
|
14087
14087
|
updatedAt: string;
|
|
14088
14088
|
suite: string;
|
|
14089
14089
|
durationMs: number;
|
|
14090
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14090
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14091
14091
|
summary: {
|
|
14092
14092
|
passed: number;
|
|
14093
14093
|
failed: number;
|
|
@@ -14113,7 +14113,7 @@ declare const endpoints: {
|
|
|
14113
14113
|
createdAt: string;
|
|
14114
14114
|
updatedAt: string;
|
|
14115
14115
|
suite: string;
|
|
14116
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14116
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14117
14117
|
summary: {
|
|
14118
14118
|
passed: number;
|
|
14119
14119
|
failed: number;
|
|
@@ -14143,7 +14143,7 @@ declare const endpoints: {
|
|
|
14143
14143
|
updatedAt: string;
|
|
14144
14144
|
suite: string;
|
|
14145
14145
|
durationMs: number;
|
|
14146
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14146
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14147
14147
|
summary: {
|
|
14148
14148
|
passed: number;
|
|
14149
14149
|
failed: number;
|
|
@@ -14171,7 +14171,7 @@ declare const endpoints: {
|
|
|
14171
14171
|
createdAt: string;
|
|
14172
14172
|
updatedAt: string;
|
|
14173
14173
|
suite: string;
|
|
14174
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14174
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14175
14175
|
summary: {
|
|
14176
14176
|
passed: number;
|
|
14177
14177
|
failed: number;
|
|
@@ -14202,7 +14202,7 @@ declare const endpoints: {
|
|
|
14202
14202
|
path: string;
|
|
14203
14203
|
params: z.ZodObject<{
|
|
14204
14204
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14205
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14205
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14206
14206
|
suite: z.ZodString;
|
|
14207
14207
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14208
14208
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14280,7 +14280,7 @@ declare const endpoints: {
|
|
|
14280
14280
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
14281
14281
|
suite: string;
|
|
14282
14282
|
durationMs: number;
|
|
14283
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14283
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14284
14284
|
summary: {
|
|
14285
14285
|
passed: number;
|
|
14286
14286
|
failed: number;
|
|
@@ -14313,7 +14313,7 @@ declare const endpoints: {
|
|
|
14313
14313
|
}, {
|
|
14314
14314
|
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
14315
14315
|
suite: string;
|
|
14316
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14316
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14317
14317
|
summary: {
|
|
14318
14318
|
passed: number;
|
|
14319
14319
|
failed: number;
|
|
@@ -14347,7 +14347,7 @@ declare const endpoints: {
|
|
|
14347
14347
|
}>;
|
|
14348
14348
|
response: z.ZodObject<{
|
|
14349
14349
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14350
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14350
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14351
14351
|
suite: z.ZodString;
|
|
14352
14352
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14353
14353
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14434,7 +14434,7 @@ declare const endpoints: {
|
|
|
14434
14434
|
updatedAt: string;
|
|
14435
14435
|
suite: string;
|
|
14436
14436
|
durationMs: number;
|
|
14437
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14437
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14438
14438
|
summary: {
|
|
14439
14439
|
passed: number;
|
|
14440
14440
|
failed: number;
|
|
@@ -14472,7 +14472,7 @@ declare const endpoints: {
|
|
|
14472
14472
|
createdAt: string;
|
|
14473
14473
|
updatedAt: string;
|
|
14474
14474
|
suite: string;
|
|
14475
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14475
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14476
14476
|
summary: {
|
|
14477
14477
|
passed: number;
|
|
14478
14478
|
failed: number;
|
|
@@ -14515,7 +14515,7 @@ declare const endpoints: {
|
|
|
14515
14515
|
params: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
14516
14516
|
response: z.ZodObject<{
|
|
14517
14517
|
externalId: z.ZodOptional<z.ZodString>;
|
|
14518
|
-
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run"]>;
|
|
14518
|
+
source: z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]>;
|
|
14519
14519
|
suite: z.ZodString;
|
|
14520
14520
|
status: z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>;
|
|
14521
14521
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -14602,7 +14602,7 @@ declare const endpoints: {
|
|
|
14602
14602
|
updatedAt: string;
|
|
14603
14603
|
suite: string;
|
|
14604
14604
|
durationMs: number;
|
|
14605
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14605
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14606
14606
|
summary: {
|
|
14607
14607
|
passed: number;
|
|
14608
14608
|
failed: number;
|
|
@@ -14640,7 +14640,7 @@ declare const endpoints: {
|
|
|
14640
14640
|
createdAt: string;
|
|
14641
14641
|
updatedAt: string;
|
|
14642
14642
|
suite: string;
|
|
14643
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run";
|
|
14643
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other" | "eval-run" | "databricks-mlflow";
|
|
14644
14644
|
summary: {
|
|
14645
14645
|
passed: number;
|
|
14646
14646
|
failed: number;
|
package/dist/index.js
CHANGED
|
@@ -276,7 +276,7 @@ var CreateTestRunInput = z.object({
|
|
|
276
276
|
externalId: z.string().min(1).max(300).optional(),
|
|
277
277
|
// 'eval-run' rows are written by the API itself when an eval run concludes
|
|
278
278
|
// (Quality Center evidence for the evals suite) — never via testRuns.create.
|
|
279
|
-
source: z.enum(["bdd", "live-suite", "junit", "cli", "other", "eval-run"]),
|
|
279
|
+
source: z.enum(["bdd", "live-suite", "junit", "cli", "other", "eval-run", "databricks-mlflow"]),
|
|
280
280
|
suite: z.string().min(1).max(240),
|
|
281
281
|
status: TestRunStatus,
|
|
282
282
|
startedAt: z.string().datetime().nullable().optional(),
|