@fabricorg/experiments-api-protocol 0.1.2 → 0.1.4
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 +55 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +591 -123
- package/dist/index.d.ts +591 -123
- package/dist/index.js +52 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3177,6 +3177,210 @@ declare const AuditListResponse: z.ZodObject<{
|
|
|
3177
3177
|
}[];
|
|
3178
3178
|
}>;
|
|
3179
3179
|
type AuditListResponse = z.infer<typeof AuditListResponse>;
|
|
3180
|
+
declare const GovernanceSettings: z.ZodObject<{
|
|
3181
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
3182
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
3183
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
3184
|
+
retentionDays: z.ZodNumber;
|
|
3185
|
+
legalHold: z.ZodBoolean;
|
|
3186
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
3187
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
3188
|
+
}, "strip", z.ZodTypeAny, {
|
|
3189
|
+
updatedAt: string | null;
|
|
3190
|
+
requireQualityForProduction: boolean;
|
|
3191
|
+
requiredQualitySuites: string[];
|
|
3192
|
+
qualityMaxAgeHours: number;
|
|
3193
|
+
retentionDays: number;
|
|
3194
|
+
legalHold: boolean;
|
|
3195
|
+
updatedBy: string | null;
|
|
3196
|
+
}, {
|
|
3197
|
+
updatedAt: string | null;
|
|
3198
|
+
requireQualityForProduction: boolean;
|
|
3199
|
+
requiredQualitySuites: string[];
|
|
3200
|
+
qualityMaxAgeHours: number;
|
|
3201
|
+
retentionDays: number;
|
|
3202
|
+
legalHold: boolean;
|
|
3203
|
+
updatedBy: string | null;
|
|
3204
|
+
}>;
|
|
3205
|
+
type GovernanceSettings = z.infer<typeof GovernanceSettings>;
|
|
3206
|
+
declare const UpdateGovernanceSettingsInput: z.ZodObject<Pick<{
|
|
3207
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
3208
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
3209
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
3210
|
+
retentionDays: z.ZodNumber;
|
|
3211
|
+
legalHold: z.ZodBoolean;
|
|
3212
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
3213
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
3214
|
+
}, "requireQualityForProduction" | "requiredQualitySuites" | "qualityMaxAgeHours" | "retentionDays" | "legalHold">, "strip", z.ZodTypeAny, {
|
|
3215
|
+
requireQualityForProduction: boolean;
|
|
3216
|
+
requiredQualitySuites: string[];
|
|
3217
|
+
qualityMaxAgeHours: number;
|
|
3218
|
+
retentionDays: number;
|
|
3219
|
+
legalHold: boolean;
|
|
3220
|
+
}, {
|
|
3221
|
+
requireQualityForProduction: boolean;
|
|
3222
|
+
requiredQualitySuites: string[];
|
|
3223
|
+
qualityMaxAgeHours: number;
|
|
3224
|
+
retentionDays: number;
|
|
3225
|
+
legalHold: boolean;
|
|
3226
|
+
}>;
|
|
3227
|
+
type UpdateGovernanceSettingsInput = z.infer<typeof UpdateGovernanceSettingsInput>;
|
|
3228
|
+
declare const QualityGateResult: z.ZodObject<{
|
|
3229
|
+
enabled: z.ZodBoolean;
|
|
3230
|
+
passed: z.ZodBoolean;
|
|
3231
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
3232
|
+
suite: z.ZodString;
|
|
3233
|
+
passed: z.ZodBoolean;
|
|
3234
|
+
reason: z.ZodString;
|
|
3235
|
+
runId: z.ZodNullable<z.ZodString>;
|
|
3236
|
+
finishedAt: z.ZodNullable<z.ZodString>;
|
|
3237
|
+
}, "strip", z.ZodTypeAny, {
|
|
3238
|
+
reason: string;
|
|
3239
|
+
passed: boolean;
|
|
3240
|
+
suite: string;
|
|
3241
|
+
runId: string | null;
|
|
3242
|
+
finishedAt: string | null;
|
|
3243
|
+
}, {
|
|
3244
|
+
reason: string;
|
|
3245
|
+
passed: boolean;
|
|
3246
|
+
suite: string;
|
|
3247
|
+
runId: string | null;
|
|
3248
|
+
finishedAt: string | null;
|
|
3249
|
+
}>, "many">;
|
|
3250
|
+
}, "strip", z.ZodTypeAny, {
|
|
3251
|
+
enabled: boolean;
|
|
3252
|
+
passed: boolean;
|
|
3253
|
+
checks: {
|
|
3254
|
+
reason: string;
|
|
3255
|
+
passed: boolean;
|
|
3256
|
+
suite: string;
|
|
3257
|
+
runId: string | null;
|
|
3258
|
+
finishedAt: string | null;
|
|
3259
|
+
}[];
|
|
3260
|
+
}, {
|
|
3261
|
+
enabled: boolean;
|
|
3262
|
+
passed: boolean;
|
|
3263
|
+
checks: {
|
|
3264
|
+
reason: string;
|
|
3265
|
+
passed: boolean;
|
|
3266
|
+
suite: string;
|
|
3267
|
+
runId: string | null;
|
|
3268
|
+
finishedAt: string | null;
|
|
3269
|
+
}[];
|
|
3270
|
+
}>;
|
|
3271
|
+
type QualityGateResult = z.infer<typeof QualityGateResult>;
|
|
3272
|
+
declare const GovernanceStatusResponse: z.ZodObject<{
|
|
3273
|
+
settings: z.ZodObject<{
|
|
3274
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
3275
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
3276
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
3277
|
+
retentionDays: z.ZodNumber;
|
|
3278
|
+
legalHold: z.ZodBoolean;
|
|
3279
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
3280
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
3281
|
+
}, "strip", z.ZodTypeAny, {
|
|
3282
|
+
updatedAt: string | null;
|
|
3283
|
+
requireQualityForProduction: boolean;
|
|
3284
|
+
requiredQualitySuites: string[];
|
|
3285
|
+
qualityMaxAgeHours: number;
|
|
3286
|
+
retentionDays: number;
|
|
3287
|
+
legalHold: boolean;
|
|
3288
|
+
updatedBy: string | null;
|
|
3289
|
+
}, {
|
|
3290
|
+
updatedAt: string | null;
|
|
3291
|
+
requireQualityForProduction: boolean;
|
|
3292
|
+
requiredQualitySuites: string[];
|
|
3293
|
+
qualityMaxAgeHours: number;
|
|
3294
|
+
retentionDays: number;
|
|
3295
|
+
legalHold: boolean;
|
|
3296
|
+
updatedBy: string | null;
|
|
3297
|
+
}>;
|
|
3298
|
+
qualityGate: z.ZodObject<{
|
|
3299
|
+
enabled: z.ZodBoolean;
|
|
3300
|
+
passed: z.ZodBoolean;
|
|
3301
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
3302
|
+
suite: z.ZodString;
|
|
3303
|
+
passed: z.ZodBoolean;
|
|
3304
|
+
reason: z.ZodString;
|
|
3305
|
+
runId: z.ZodNullable<z.ZodString>;
|
|
3306
|
+
finishedAt: z.ZodNullable<z.ZodString>;
|
|
3307
|
+
}, "strip", z.ZodTypeAny, {
|
|
3308
|
+
reason: string;
|
|
3309
|
+
passed: boolean;
|
|
3310
|
+
suite: string;
|
|
3311
|
+
runId: string | null;
|
|
3312
|
+
finishedAt: string | null;
|
|
3313
|
+
}, {
|
|
3314
|
+
reason: string;
|
|
3315
|
+
passed: boolean;
|
|
3316
|
+
suite: string;
|
|
3317
|
+
runId: string | null;
|
|
3318
|
+
finishedAt: string | null;
|
|
3319
|
+
}>, "many">;
|
|
3320
|
+
}, "strip", z.ZodTypeAny, {
|
|
3321
|
+
enabled: boolean;
|
|
3322
|
+
passed: boolean;
|
|
3323
|
+
checks: {
|
|
3324
|
+
reason: string;
|
|
3325
|
+
passed: boolean;
|
|
3326
|
+
suite: string;
|
|
3327
|
+
runId: string | null;
|
|
3328
|
+
finishedAt: string | null;
|
|
3329
|
+
}[];
|
|
3330
|
+
}, {
|
|
3331
|
+
enabled: boolean;
|
|
3332
|
+
passed: boolean;
|
|
3333
|
+
checks: {
|
|
3334
|
+
reason: string;
|
|
3335
|
+
passed: boolean;
|
|
3336
|
+
suite: string;
|
|
3337
|
+
runId: string | null;
|
|
3338
|
+
finishedAt: string | null;
|
|
3339
|
+
}[];
|
|
3340
|
+
}>;
|
|
3341
|
+
}, "strip", z.ZodTypeAny, {
|
|
3342
|
+
settings: {
|
|
3343
|
+
updatedAt: string | null;
|
|
3344
|
+
requireQualityForProduction: boolean;
|
|
3345
|
+
requiredQualitySuites: string[];
|
|
3346
|
+
qualityMaxAgeHours: number;
|
|
3347
|
+
retentionDays: number;
|
|
3348
|
+
legalHold: boolean;
|
|
3349
|
+
updatedBy: string | null;
|
|
3350
|
+
};
|
|
3351
|
+
qualityGate: {
|
|
3352
|
+
enabled: boolean;
|
|
3353
|
+
passed: boolean;
|
|
3354
|
+
checks: {
|
|
3355
|
+
reason: string;
|
|
3356
|
+
passed: boolean;
|
|
3357
|
+
suite: string;
|
|
3358
|
+
runId: string | null;
|
|
3359
|
+
finishedAt: string | null;
|
|
3360
|
+
}[];
|
|
3361
|
+
};
|
|
3362
|
+
}, {
|
|
3363
|
+
settings: {
|
|
3364
|
+
updatedAt: string | null;
|
|
3365
|
+
requireQualityForProduction: boolean;
|
|
3366
|
+
requiredQualitySuites: string[];
|
|
3367
|
+
qualityMaxAgeHours: number;
|
|
3368
|
+
retentionDays: number;
|
|
3369
|
+
legalHold: boolean;
|
|
3370
|
+
updatedBy: string | null;
|
|
3371
|
+
};
|
|
3372
|
+
qualityGate: {
|
|
3373
|
+
enabled: boolean;
|
|
3374
|
+
passed: boolean;
|
|
3375
|
+
checks: {
|
|
3376
|
+
reason: string;
|
|
3377
|
+
passed: boolean;
|
|
3378
|
+
suite: string;
|
|
3379
|
+
runId: string | null;
|
|
3380
|
+
finishedAt: string | null;
|
|
3381
|
+
}[];
|
|
3382
|
+
};
|
|
3383
|
+
}>;
|
|
3180
3384
|
declare const AuditExport: z.ZodObject<{
|
|
3181
3385
|
id: z.ZodString;
|
|
3182
3386
|
destinationKind: z.ZodEnum<["s3", "r2", "splunk-hec"]>;
|
|
@@ -3417,7 +3621,7 @@ declare const TestCaseResult: z.ZodObject<{
|
|
|
3417
3621
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
3418
3622
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3419
3623
|
}, "strip", z.ZodTypeAny, {
|
|
3420
|
-
status: "undefined" | "unknown" | "
|
|
3624
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3421
3625
|
name: string;
|
|
3422
3626
|
durationMs: number;
|
|
3423
3627
|
tags: string[];
|
|
@@ -3428,7 +3632,7 @@ declare const TestCaseResult: z.ZodObject<{
|
|
|
3428
3632
|
resourceUrl?: string | undefined;
|
|
3429
3633
|
details?: Record<string, unknown> | undefined;
|
|
3430
3634
|
}, {
|
|
3431
|
-
status: "undefined" | "unknown" | "
|
|
3635
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3432
3636
|
name: string;
|
|
3433
3637
|
durationMs: number;
|
|
3434
3638
|
id?: string | undefined;
|
|
@@ -3447,14 +3651,14 @@ declare const TestRunSummary: z.ZodObject<{
|
|
|
3447
3651
|
skipped: z.ZodNumber;
|
|
3448
3652
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
3449
3653
|
}, "strip", z.ZodTypeAny, {
|
|
3450
|
-
failed: number;
|
|
3451
3654
|
passed: number;
|
|
3655
|
+
failed: number;
|
|
3452
3656
|
skipped: number;
|
|
3453
3657
|
pending: number;
|
|
3454
3658
|
total: number;
|
|
3455
3659
|
}, {
|
|
3456
|
-
failed: number;
|
|
3457
3660
|
passed: number;
|
|
3661
|
+
failed: number;
|
|
3458
3662
|
skipped: number;
|
|
3459
3663
|
total: number;
|
|
3460
3664
|
pending?: number | undefined;
|
|
@@ -3487,14 +3691,14 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3487
3691
|
skipped: z.ZodNumber;
|
|
3488
3692
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
3489
3693
|
}, "strip", z.ZodTypeAny, {
|
|
3490
|
-
failed: number;
|
|
3491
3694
|
passed: number;
|
|
3695
|
+
failed: number;
|
|
3492
3696
|
skipped: number;
|
|
3493
3697
|
pending: number;
|
|
3494
3698
|
total: number;
|
|
3495
3699
|
}, {
|
|
3496
|
-
failed: number;
|
|
3497
3700
|
passed: number;
|
|
3701
|
+
failed: number;
|
|
3498
3702
|
skipped: number;
|
|
3499
3703
|
total: number;
|
|
3500
3704
|
pending?: number | undefined;
|
|
@@ -3513,7 +3717,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3513
3717
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
3514
3718
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3515
3719
|
}, "strip", z.ZodTypeAny, {
|
|
3516
|
-
status: "undefined" | "unknown" | "
|
|
3720
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3517
3721
|
name: string;
|
|
3518
3722
|
durationMs: number;
|
|
3519
3723
|
tags: string[];
|
|
@@ -3524,7 +3728,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3524
3728
|
resourceUrl?: string | undefined;
|
|
3525
3729
|
details?: Record<string, unknown> | undefined;
|
|
3526
3730
|
}, {
|
|
3527
|
-
status: "undefined" | "unknown" | "
|
|
3731
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3528
3732
|
name: string;
|
|
3529
3733
|
durationMs: number;
|
|
3530
3734
|
id?: string | undefined;
|
|
@@ -3549,13 +3753,13 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3549
3753
|
mediaType?: string | undefined;
|
|
3550
3754
|
}>, "many">>;
|
|
3551
3755
|
}, "strip", z.ZodTypeAny, {
|
|
3552
|
-
status: "running" | "
|
|
3756
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3757
|
+
suite: string;
|
|
3553
3758
|
durationMs: number;
|
|
3554
3759
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3555
|
-
suite: string;
|
|
3556
3760
|
summary: {
|
|
3557
|
-
failed: number;
|
|
3558
3761
|
passed: number;
|
|
3762
|
+
failed: number;
|
|
3559
3763
|
skipped: number;
|
|
3560
3764
|
pending: number;
|
|
3561
3765
|
total: number;
|
|
@@ -3563,7 +3767,7 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3563
3767
|
environment: Record<string, unknown>;
|
|
3564
3768
|
revision: Record<string, unknown>;
|
|
3565
3769
|
cases: {
|
|
3566
|
-
status: "undefined" | "unknown" | "
|
|
3770
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3567
3771
|
name: string;
|
|
3568
3772
|
durationMs: number;
|
|
3569
3773
|
tags: string[];
|
|
@@ -3579,28 +3783,28 @@ declare const CreateTestRunInput: z.ZodObject<{
|
|
|
3579
3783
|
url: string;
|
|
3580
3784
|
mediaType?: string | undefined;
|
|
3581
3785
|
}[];
|
|
3786
|
+
finishedAt?: string | null | undefined;
|
|
3582
3787
|
externalId?: string | undefined;
|
|
3583
3788
|
startedAt?: string | null | undefined;
|
|
3584
|
-
finishedAt?: string | null | undefined;
|
|
3585
3789
|
}, {
|
|
3586
|
-
status: "running" | "
|
|
3587
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3790
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3588
3791
|
suite: string;
|
|
3792
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3589
3793
|
summary: {
|
|
3590
|
-
failed: number;
|
|
3591
3794
|
passed: number;
|
|
3795
|
+
failed: number;
|
|
3592
3796
|
skipped: number;
|
|
3593
3797
|
total: number;
|
|
3594
3798
|
pending?: number | undefined;
|
|
3595
3799
|
};
|
|
3800
|
+
finishedAt?: string | null | undefined;
|
|
3596
3801
|
durationMs?: number | undefined;
|
|
3597
3802
|
externalId?: string | undefined;
|
|
3598
3803
|
startedAt?: string | null | undefined;
|
|
3599
|
-
finishedAt?: string | null | undefined;
|
|
3600
3804
|
environment?: Record<string, unknown> | undefined;
|
|
3601
3805
|
revision?: Record<string, unknown> | undefined;
|
|
3602
3806
|
cases?: {
|
|
3603
|
-
status: "undefined" | "unknown" | "
|
|
3807
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3604
3808
|
name: string;
|
|
3605
3809
|
durationMs: number;
|
|
3606
3810
|
id?: string | undefined;
|
|
@@ -3633,14 +3837,14 @@ declare const TestRun: z.ZodObject<{
|
|
|
3633
3837
|
skipped: z.ZodNumber;
|
|
3634
3838
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
3635
3839
|
}, "strip", z.ZodTypeAny, {
|
|
3636
|
-
failed: number;
|
|
3637
3840
|
passed: number;
|
|
3841
|
+
failed: number;
|
|
3638
3842
|
skipped: number;
|
|
3639
3843
|
pending: number;
|
|
3640
3844
|
total: number;
|
|
3641
3845
|
}, {
|
|
3642
|
-
failed: number;
|
|
3643
3846
|
passed: number;
|
|
3847
|
+
failed: number;
|
|
3644
3848
|
skipped: number;
|
|
3645
3849
|
total: number;
|
|
3646
3850
|
pending?: number | undefined;
|
|
@@ -3659,7 +3863,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3659
3863
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
3660
3864
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3661
3865
|
}, "strip", z.ZodTypeAny, {
|
|
3662
|
-
status: "undefined" | "unknown" | "
|
|
3866
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3663
3867
|
name: string;
|
|
3664
3868
|
durationMs: number;
|
|
3665
3869
|
tags: string[];
|
|
@@ -3670,7 +3874,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3670
3874
|
resourceUrl?: string | undefined;
|
|
3671
3875
|
details?: Record<string, unknown> | undefined;
|
|
3672
3876
|
}, {
|
|
3673
|
-
status: "undefined" | "unknown" | "
|
|
3877
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3674
3878
|
name: string;
|
|
3675
3879
|
durationMs: number;
|
|
3676
3880
|
id?: string | undefined;
|
|
@@ -3701,16 +3905,16 @@ declare const TestRun: z.ZodObject<{
|
|
|
3701
3905
|
createdAt: z.ZodString;
|
|
3702
3906
|
updatedAt: z.ZodString;
|
|
3703
3907
|
}, "strip", z.ZodTypeAny, {
|
|
3704
|
-
status: "running" | "
|
|
3908
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3705
3909
|
id: string;
|
|
3706
3910
|
createdAt: string;
|
|
3707
3911
|
updatedAt: string;
|
|
3912
|
+
suite: string;
|
|
3708
3913
|
durationMs: number;
|
|
3709
3914
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3710
|
-
suite: string;
|
|
3711
3915
|
summary: {
|
|
3712
|
-
failed: number;
|
|
3713
3916
|
passed: number;
|
|
3917
|
+
failed: number;
|
|
3714
3918
|
skipped: number;
|
|
3715
3919
|
pending: number;
|
|
3716
3920
|
total: number;
|
|
@@ -3718,7 +3922,7 @@ declare const TestRun: z.ZodObject<{
|
|
|
3718
3922
|
environment: Record<string, unknown>;
|
|
3719
3923
|
revision: Record<string, unknown>;
|
|
3720
3924
|
cases: {
|
|
3721
|
-
status: "undefined" | "unknown" | "
|
|
3925
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3722
3926
|
name: string;
|
|
3723
3927
|
durationMs: number;
|
|
3724
3928
|
tags: string[];
|
|
@@ -3736,33 +3940,33 @@ declare const TestRun: z.ZodObject<{
|
|
|
3736
3940
|
}[];
|
|
3737
3941
|
orgId: string;
|
|
3738
3942
|
createdBy: string;
|
|
3943
|
+
finishedAt?: string | null | undefined;
|
|
3739
3944
|
externalId?: string | undefined;
|
|
3740
3945
|
startedAt?: string | null | undefined;
|
|
3741
|
-
finishedAt?: string | null | undefined;
|
|
3742
3946
|
}, {
|
|
3743
|
-
status: "running" | "
|
|
3947
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3744
3948
|
id: string;
|
|
3745
3949
|
createdAt: string;
|
|
3746
3950
|
updatedAt: string;
|
|
3747
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3748
3951
|
suite: string;
|
|
3952
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3749
3953
|
summary: {
|
|
3750
|
-
failed: number;
|
|
3751
3954
|
passed: number;
|
|
3955
|
+
failed: number;
|
|
3752
3956
|
skipped: number;
|
|
3753
3957
|
total: number;
|
|
3754
3958
|
pending?: number | undefined;
|
|
3755
3959
|
};
|
|
3756
3960
|
orgId: string;
|
|
3757
3961
|
createdBy: string;
|
|
3962
|
+
finishedAt?: string | null | undefined;
|
|
3758
3963
|
durationMs?: number | undefined;
|
|
3759
3964
|
externalId?: string | undefined;
|
|
3760
3965
|
startedAt?: string | null | undefined;
|
|
3761
|
-
finishedAt?: string | null | undefined;
|
|
3762
3966
|
environment?: Record<string, unknown> | undefined;
|
|
3763
3967
|
revision?: Record<string, unknown> | undefined;
|
|
3764
3968
|
cases?: {
|
|
3765
|
-
status: "undefined" | "unknown" | "
|
|
3969
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3766
3970
|
name: string;
|
|
3767
3971
|
durationMs: number;
|
|
3768
3972
|
id?: string | undefined;
|
|
@@ -3785,16 +3989,19 @@ declare const TestRunListInput: z.ZodObject<{
|
|
|
3785
3989
|
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other"]>>;
|
|
3786
3990
|
suite: z.ZodOptional<z.ZodString>;
|
|
3787
3991
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
3992
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
3788
3993
|
}, "strip", z.ZodTypeAny, {
|
|
3789
|
-
status?: "running" | "
|
|
3790
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3994
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3791
3995
|
suite?: string | undefined;
|
|
3996
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3792
3997
|
limit?: number | undefined;
|
|
3998
|
+
offset?: number | undefined;
|
|
3793
3999
|
}, {
|
|
3794
|
-
status?: "running" | "
|
|
3795
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
4000
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3796
4001
|
suite?: string | undefined;
|
|
4002
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3797
4003
|
limit?: number | undefined;
|
|
4004
|
+
offset?: number | undefined;
|
|
3798
4005
|
}>;
|
|
3799
4006
|
declare const TestRunListResponse: z.ZodObject<{
|
|
3800
4007
|
runs: z.ZodArray<z.ZodObject<Omit<{
|
|
@@ -3812,14 +4019,14 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3812
4019
|
skipped: z.ZodNumber;
|
|
3813
4020
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
3814
4021
|
}, "strip", z.ZodTypeAny, {
|
|
3815
|
-
failed: number;
|
|
3816
4022
|
passed: number;
|
|
4023
|
+
failed: number;
|
|
3817
4024
|
skipped: number;
|
|
3818
4025
|
pending: number;
|
|
3819
4026
|
total: number;
|
|
3820
4027
|
}, {
|
|
3821
|
-
failed: number;
|
|
3822
4028
|
passed: number;
|
|
4029
|
+
failed: number;
|
|
3823
4030
|
skipped: number;
|
|
3824
4031
|
total: number;
|
|
3825
4032
|
pending?: number | undefined;
|
|
@@ -3838,7 +4045,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3838
4045
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
3839
4046
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3840
4047
|
}, "strip", z.ZodTypeAny, {
|
|
3841
|
-
status: "undefined" | "unknown" | "
|
|
4048
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3842
4049
|
name: string;
|
|
3843
4050
|
durationMs: number;
|
|
3844
4051
|
tags: string[];
|
|
@@ -3849,7 +4056,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3849
4056
|
resourceUrl?: string | undefined;
|
|
3850
4057
|
details?: Record<string, unknown> | undefined;
|
|
3851
4058
|
}, {
|
|
3852
|
-
status: "undefined" | "unknown" | "
|
|
4059
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3853
4060
|
name: string;
|
|
3854
4061
|
durationMs: number;
|
|
3855
4062
|
id?: string | undefined;
|
|
@@ -3880,16 +4087,16 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3880
4087
|
createdAt: z.ZodString;
|
|
3881
4088
|
updatedAt: z.ZodString;
|
|
3882
4089
|
}, "cases">, "strip", z.ZodTypeAny, {
|
|
3883
|
-
status: "running" | "
|
|
4090
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3884
4091
|
id: string;
|
|
3885
4092
|
createdAt: string;
|
|
3886
4093
|
updatedAt: string;
|
|
4094
|
+
suite: string;
|
|
3887
4095
|
durationMs: number;
|
|
3888
4096
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3889
|
-
suite: string;
|
|
3890
4097
|
summary: {
|
|
3891
|
-
failed: number;
|
|
3892
4098
|
passed: number;
|
|
4099
|
+
failed: number;
|
|
3893
4100
|
skipped: number;
|
|
3894
4101
|
pending: number;
|
|
3895
4102
|
total: number;
|
|
@@ -3903,29 +4110,29 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3903
4110
|
}[];
|
|
3904
4111
|
orgId: string;
|
|
3905
4112
|
createdBy: string;
|
|
4113
|
+
finishedAt?: string | null | undefined;
|
|
3906
4114
|
externalId?: string | undefined;
|
|
3907
4115
|
startedAt?: string | null | undefined;
|
|
3908
|
-
finishedAt?: string | null | undefined;
|
|
3909
4116
|
}, {
|
|
3910
|
-
status: "running" | "
|
|
4117
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3911
4118
|
id: string;
|
|
3912
4119
|
createdAt: string;
|
|
3913
4120
|
updatedAt: string;
|
|
3914
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3915
4121
|
suite: string;
|
|
4122
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3916
4123
|
summary: {
|
|
3917
|
-
failed: number;
|
|
3918
4124
|
passed: number;
|
|
4125
|
+
failed: number;
|
|
3919
4126
|
skipped: number;
|
|
3920
4127
|
total: number;
|
|
3921
4128
|
pending?: number | undefined;
|
|
3922
4129
|
};
|
|
3923
4130
|
orgId: string;
|
|
3924
4131
|
createdBy: string;
|
|
4132
|
+
finishedAt?: string | null | undefined;
|
|
3925
4133
|
durationMs?: number | undefined;
|
|
3926
4134
|
externalId?: string | undefined;
|
|
3927
4135
|
startedAt?: string | null | undefined;
|
|
3928
|
-
finishedAt?: string | null | undefined;
|
|
3929
4136
|
environment?: Record<string, unknown> | undefined;
|
|
3930
4137
|
revision?: Record<string, unknown> | undefined;
|
|
3931
4138
|
artifacts?: {
|
|
@@ -3936,16 +4143,16 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3936
4143
|
}>, "many">;
|
|
3937
4144
|
}, "strip", z.ZodTypeAny, {
|
|
3938
4145
|
runs: {
|
|
3939
|
-
status: "running" | "
|
|
4146
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3940
4147
|
id: string;
|
|
3941
4148
|
createdAt: string;
|
|
3942
4149
|
updatedAt: string;
|
|
4150
|
+
suite: string;
|
|
3943
4151
|
durationMs: number;
|
|
3944
4152
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3945
|
-
suite: string;
|
|
3946
4153
|
summary: {
|
|
3947
|
-
failed: number;
|
|
3948
4154
|
passed: number;
|
|
4155
|
+
failed: number;
|
|
3949
4156
|
skipped: number;
|
|
3950
4157
|
pending: number;
|
|
3951
4158
|
total: number;
|
|
@@ -3959,31 +4166,31 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3959
4166
|
}[];
|
|
3960
4167
|
orgId: string;
|
|
3961
4168
|
createdBy: string;
|
|
4169
|
+
finishedAt?: string | null | undefined;
|
|
3962
4170
|
externalId?: string | undefined;
|
|
3963
4171
|
startedAt?: string | null | undefined;
|
|
3964
|
-
finishedAt?: string | null | undefined;
|
|
3965
4172
|
}[];
|
|
3966
4173
|
}, {
|
|
3967
4174
|
runs: {
|
|
3968
|
-
status: "running" | "
|
|
4175
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3969
4176
|
id: string;
|
|
3970
4177
|
createdAt: string;
|
|
3971
4178
|
updatedAt: string;
|
|
3972
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3973
4179
|
suite: string;
|
|
4180
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3974
4181
|
summary: {
|
|
3975
|
-
failed: number;
|
|
3976
4182
|
passed: number;
|
|
4183
|
+
failed: number;
|
|
3977
4184
|
skipped: number;
|
|
3978
4185
|
total: number;
|
|
3979
4186
|
pending?: number | undefined;
|
|
3980
4187
|
};
|
|
3981
4188
|
orgId: string;
|
|
3982
4189
|
createdBy: string;
|
|
4190
|
+
finishedAt?: string | null | undefined;
|
|
3983
4191
|
durationMs?: number | undefined;
|
|
3984
4192
|
externalId?: string | undefined;
|
|
3985
4193
|
startedAt?: string | null | undefined;
|
|
3986
|
-
finishedAt?: string | null | undefined;
|
|
3987
4194
|
environment?: Record<string, unknown> | undefined;
|
|
3988
4195
|
revision?: Record<string, unknown> | undefined;
|
|
3989
4196
|
artifacts?: {
|
|
@@ -10628,6 +10835,264 @@ declare const endpoints: {
|
|
|
10628
10835
|
mutates: false;
|
|
10629
10836
|
requiresRole: "viewer";
|
|
10630
10837
|
};
|
|
10838
|
+
'governance.get': {
|
|
10839
|
+
method: "GET";
|
|
10840
|
+
path: string;
|
|
10841
|
+
params: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
10842
|
+
response: z.ZodObject<{
|
|
10843
|
+
settings: z.ZodObject<{
|
|
10844
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
10845
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
10846
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
10847
|
+
retentionDays: z.ZodNumber;
|
|
10848
|
+
legalHold: z.ZodBoolean;
|
|
10849
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
10850
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10851
|
+
}, "strip", z.ZodTypeAny, {
|
|
10852
|
+
updatedAt: string | null;
|
|
10853
|
+
requireQualityForProduction: boolean;
|
|
10854
|
+
requiredQualitySuites: string[];
|
|
10855
|
+
qualityMaxAgeHours: number;
|
|
10856
|
+
retentionDays: number;
|
|
10857
|
+
legalHold: boolean;
|
|
10858
|
+
updatedBy: string | null;
|
|
10859
|
+
}, {
|
|
10860
|
+
updatedAt: string | null;
|
|
10861
|
+
requireQualityForProduction: boolean;
|
|
10862
|
+
requiredQualitySuites: string[];
|
|
10863
|
+
qualityMaxAgeHours: number;
|
|
10864
|
+
retentionDays: number;
|
|
10865
|
+
legalHold: boolean;
|
|
10866
|
+
updatedBy: string | null;
|
|
10867
|
+
}>;
|
|
10868
|
+
qualityGate: z.ZodObject<{
|
|
10869
|
+
enabled: z.ZodBoolean;
|
|
10870
|
+
passed: z.ZodBoolean;
|
|
10871
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
10872
|
+
suite: z.ZodString;
|
|
10873
|
+
passed: z.ZodBoolean;
|
|
10874
|
+
reason: z.ZodString;
|
|
10875
|
+
runId: z.ZodNullable<z.ZodString>;
|
|
10876
|
+
finishedAt: z.ZodNullable<z.ZodString>;
|
|
10877
|
+
}, "strip", z.ZodTypeAny, {
|
|
10878
|
+
reason: string;
|
|
10879
|
+
passed: boolean;
|
|
10880
|
+
suite: string;
|
|
10881
|
+
runId: string | null;
|
|
10882
|
+
finishedAt: string | null;
|
|
10883
|
+
}, {
|
|
10884
|
+
reason: string;
|
|
10885
|
+
passed: boolean;
|
|
10886
|
+
suite: string;
|
|
10887
|
+
runId: string | null;
|
|
10888
|
+
finishedAt: string | null;
|
|
10889
|
+
}>, "many">;
|
|
10890
|
+
}, "strip", z.ZodTypeAny, {
|
|
10891
|
+
enabled: boolean;
|
|
10892
|
+
passed: boolean;
|
|
10893
|
+
checks: {
|
|
10894
|
+
reason: string;
|
|
10895
|
+
passed: boolean;
|
|
10896
|
+
suite: string;
|
|
10897
|
+
runId: string | null;
|
|
10898
|
+
finishedAt: string | null;
|
|
10899
|
+
}[];
|
|
10900
|
+
}, {
|
|
10901
|
+
enabled: boolean;
|
|
10902
|
+
passed: boolean;
|
|
10903
|
+
checks: {
|
|
10904
|
+
reason: string;
|
|
10905
|
+
passed: boolean;
|
|
10906
|
+
suite: string;
|
|
10907
|
+
runId: string | null;
|
|
10908
|
+
finishedAt: string | null;
|
|
10909
|
+
}[];
|
|
10910
|
+
}>;
|
|
10911
|
+
}, "strip", z.ZodTypeAny, {
|
|
10912
|
+
settings: {
|
|
10913
|
+
updatedAt: string | null;
|
|
10914
|
+
requireQualityForProduction: boolean;
|
|
10915
|
+
requiredQualitySuites: string[];
|
|
10916
|
+
qualityMaxAgeHours: number;
|
|
10917
|
+
retentionDays: number;
|
|
10918
|
+
legalHold: boolean;
|
|
10919
|
+
updatedBy: string | null;
|
|
10920
|
+
};
|
|
10921
|
+
qualityGate: {
|
|
10922
|
+
enabled: boolean;
|
|
10923
|
+
passed: boolean;
|
|
10924
|
+
checks: {
|
|
10925
|
+
reason: string;
|
|
10926
|
+
passed: boolean;
|
|
10927
|
+
suite: string;
|
|
10928
|
+
runId: string | null;
|
|
10929
|
+
finishedAt: string | null;
|
|
10930
|
+
}[];
|
|
10931
|
+
};
|
|
10932
|
+
}, {
|
|
10933
|
+
settings: {
|
|
10934
|
+
updatedAt: string | null;
|
|
10935
|
+
requireQualityForProduction: boolean;
|
|
10936
|
+
requiredQualitySuites: string[];
|
|
10937
|
+
qualityMaxAgeHours: number;
|
|
10938
|
+
retentionDays: number;
|
|
10939
|
+
legalHold: boolean;
|
|
10940
|
+
updatedBy: string | null;
|
|
10941
|
+
};
|
|
10942
|
+
qualityGate: {
|
|
10943
|
+
enabled: boolean;
|
|
10944
|
+
passed: boolean;
|
|
10945
|
+
checks: {
|
|
10946
|
+
reason: string;
|
|
10947
|
+
passed: boolean;
|
|
10948
|
+
suite: string;
|
|
10949
|
+
runId: string | null;
|
|
10950
|
+
finishedAt: string | null;
|
|
10951
|
+
}[];
|
|
10952
|
+
};
|
|
10953
|
+
}>;
|
|
10954
|
+
mutates: false;
|
|
10955
|
+
requiresRole: "viewer";
|
|
10956
|
+
};
|
|
10957
|
+
'governance.update': {
|
|
10958
|
+
method: "POST";
|
|
10959
|
+
path: string;
|
|
10960
|
+
params: z.ZodObject<Pick<{
|
|
10961
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
10962
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
10963
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
10964
|
+
retentionDays: z.ZodNumber;
|
|
10965
|
+
legalHold: z.ZodBoolean;
|
|
10966
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
10967
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10968
|
+
}, "requireQualityForProduction" | "requiredQualitySuites" | "qualityMaxAgeHours" | "retentionDays" | "legalHold">, "strip", z.ZodTypeAny, {
|
|
10969
|
+
requireQualityForProduction: boolean;
|
|
10970
|
+
requiredQualitySuites: string[];
|
|
10971
|
+
qualityMaxAgeHours: number;
|
|
10972
|
+
retentionDays: number;
|
|
10973
|
+
legalHold: boolean;
|
|
10974
|
+
}, {
|
|
10975
|
+
requireQualityForProduction: boolean;
|
|
10976
|
+
requiredQualitySuites: string[];
|
|
10977
|
+
qualityMaxAgeHours: number;
|
|
10978
|
+
retentionDays: number;
|
|
10979
|
+
legalHold: boolean;
|
|
10980
|
+
}>;
|
|
10981
|
+
response: z.ZodObject<{
|
|
10982
|
+
settings: z.ZodObject<{
|
|
10983
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
10984
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
10985
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
10986
|
+
retentionDays: z.ZodNumber;
|
|
10987
|
+
legalHold: z.ZodBoolean;
|
|
10988
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
10989
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10990
|
+
}, "strip", z.ZodTypeAny, {
|
|
10991
|
+
updatedAt: string | null;
|
|
10992
|
+
requireQualityForProduction: boolean;
|
|
10993
|
+
requiredQualitySuites: string[];
|
|
10994
|
+
qualityMaxAgeHours: number;
|
|
10995
|
+
retentionDays: number;
|
|
10996
|
+
legalHold: boolean;
|
|
10997
|
+
updatedBy: string | null;
|
|
10998
|
+
}, {
|
|
10999
|
+
updatedAt: string | null;
|
|
11000
|
+
requireQualityForProduction: boolean;
|
|
11001
|
+
requiredQualitySuites: string[];
|
|
11002
|
+
qualityMaxAgeHours: number;
|
|
11003
|
+
retentionDays: number;
|
|
11004
|
+
legalHold: boolean;
|
|
11005
|
+
updatedBy: string | null;
|
|
11006
|
+
}>;
|
|
11007
|
+
qualityGate: z.ZodObject<{
|
|
11008
|
+
enabled: z.ZodBoolean;
|
|
11009
|
+
passed: z.ZodBoolean;
|
|
11010
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
11011
|
+
suite: z.ZodString;
|
|
11012
|
+
passed: z.ZodBoolean;
|
|
11013
|
+
reason: z.ZodString;
|
|
11014
|
+
runId: z.ZodNullable<z.ZodString>;
|
|
11015
|
+
finishedAt: z.ZodNullable<z.ZodString>;
|
|
11016
|
+
}, "strip", z.ZodTypeAny, {
|
|
11017
|
+
reason: string;
|
|
11018
|
+
passed: boolean;
|
|
11019
|
+
suite: string;
|
|
11020
|
+
runId: string | null;
|
|
11021
|
+
finishedAt: string | null;
|
|
11022
|
+
}, {
|
|
11023
|
+
reason: string;
|
|
11024
|
+
passed: boolean;
|
|
11025
|
+
suite: string;
|
|
11026
|
+
runId: string | null;
|
|
11027
|
+
finishedAt: string | null;
|
|
11028
|
+
}>, "many">;
|
|
11029
|
+
}, "strip", z.ZodTypeAny, {
|
|
11030
|
+
enabled: boolean;
|
|
11031
|
+
passed: boolean;
|
|
11032
|
+
checks: {
|
|
11033
|
+
reason: string;
|
|
11034
|
+
passed: boolean;
|
|
11035
|
+
suite: string;
|
|
11036
|
+
runId: string | null;
|
|
11037
|
+
finishedAt: string | null;
|
|
11038
|
+
}[];
|
|
11039
|
+
}, {
|
|
11040
|
+
enabled: boolean;
|
|
11041
|
+
passed: boolean;
|
|
11042
|
+
checks: {
|
|
11043
|
+
reason: string;
|
|
11044
|
+
passed: boolean;
|
|
11045
|
+
suite: string;
|
|
11046
|
+
runId: string | null;
|
|
11047
|
+
finishedAt: string | null;
|
|
11048
|
+
}[];
|
|
11049
|
+
}>;
|
|
11050
|
+
}, "strip", z.ZodTypeAny, {
|
|
11051
|
+
settings: {
|
|
11052
|
+
updatedAt: string | null;
|
|
11053
|
+
requireQualityForProduction: boolean;
|
|
11054
|
+
requiredQualitySuites: string[];
|
|
11055
|
+
qualityMaxAgeHours: number;
|
|
11056
|
+
retentionDays: number;
|
|
11057
|
+
legalHold: boolean;
|
|
11058
|
+
updatedBy: string | null;
|
|
11059
|
+
};
|
|
11060
|
+
qualityGate: {
|
|
11061
|
+
enabled: boolean;
|
|
11062
|
+
passed: boolean;
|
|
11063
|
+
checks: {
|
|
11064
|
+
reason: string;
|
|
11065
|
+
passed: boolean;
|
|
11066
|
+
suite: string;
|
|
11067
|
+
runId: string | null;
|
|
11068
|
+
finishedAt: string | null;
|
|
11069
|
+
}[];
|
|
11070
|
+
};
|
|
11071
|
+
}, {
|
|
11072
|
+
settings: {
|
|
11073
|
+
updatedAt: string | null;
|
|
11074
|
+
requireQualityForProduction: boolean;
|
|
11075
|
+
requiredQualitySuites: string[];
|
|
11076
|
+
qualityMaxAgeHours: number;
|
|
11077
|
+
retentionDays: number;
|
|
11078
|
+
legalHold: boolean;
|
|
11079
|
+
updatedBy: string | null;
|
|
11080
|
+
};
|
|
11081
|
+
qualityGate: {
|
|
11082
|
+
enabled: boolean;
|
|
11083
|
+
passed: boolean;
|
|
11084
|
+
checks: {
|
|
11085
|
+
reason: string;
|
|
11086
|
+
passed: boolean;
|
|
11087
|
+
suite: string;
|
|
11088
|
+
runId: string | null;
|
|
11089
|
+
finishedAt: string | null;
|
|
11090
|
+
}[];
|
|
11091
|
+
};
|
|
11092
|
+
}>;
|
|
11093
|
+
mutates: true;
|
|
11094
|
+
requiresRole: "admin";
|
|
11095
|
+
};
|
|
10631
11096
|
'audit.exports.list': {
|
|
10632
11097
|
method: "GET";
|
|
10633
11098
|
path: string;
|
|
@@ -10959,16 +11424,19 @@ declare const endpoints: {
|
|
|
10959
11424
|
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other"]>>;
|
|
10960
11425
|
suite: z.ZodOptional<z.ZodString>;
|
|
10961
11426
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
11427
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
10962
11428
|
}, "strip", z.ZodTypeAny, {
|
|
10963
|
-
status?: "running" | "
|
|
10964
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11429
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
10965
11430
|
suite?: string | undefined;
|
|
11431
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
10966
11432
|
limit?: number | undefined;
|
|
11433
|
+
offset?: number | undefined;
|
|
10967
11434
|
}, {
|
|
10968
|
-
status?: "running" | "
|
|
10969
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11435
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
10970
11436
|
suite?: string | undefined;
|
|
11437
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
10971
11438
|
limit?: number | undefined;
|
|
11439
|
+
offset?: number | undefined;
|
|
10972
11440
|
}>;
|
|
10973
11441
|
response: z.ZodObject<{
|
|
10974
11442
|
runs: z.ZodArray<z.ZodObject<Omit<{
|
|
@@ -10986,14 +11454,14 @@ declare const endpoints: {
|
|
|
10986
11454
|
skipped: z.ZodNumber;
|
|
10987
11455
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
10988
11456
|
}, "strip", z.ZodTypeAny, {
|
|
10989
|
-
failed: number;
|
|
10990
11457
|
passed: number;
|
|
11458
|
+
failed: number;
|
|
10991
11459
|
skipped: number;
|
|
10992
11460
|
pending: number;
|
|
10993
11461
|
total: number;
|
|
10994
11462
|
}, {
|
|
10995
|
-
failed: number;
|
|
10996
11463
|
passed: number;
|
|
11464
|
+
failed: number;
|
|
10997
11465
|
skipped: number;
|
|
10998
11466
|
total: number;
|
|
10999
11467
|
pending?: number | undefined;
|
|
@@ -11012,7 +11480,7 @@ declare const endpoints: {
|
|
|
11012
11480
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11013
11481
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11014
11482
|
}, "strip", z.ZodTypeAny, {
|
|
11015
|
-
status: "undefined" | "unknown" | "
|
|
11483
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11016
11484
|
name: string;
|
|
11017
11485
|
durationMs: number;
|
|
11018
11486
|
tags: string[];
|
|
@@ -11023,7 +11491,7 @@ declare const endpoints: {
|
|
|
11023
11491
|
resourceUrl?: string | undefined;
|
|
11024
11492
|
details?: Record<string, unknown> | undefined;
|
|
11025
11493
|
}, {
|
|
11026
|
-
status: "undefined" | "unknown" | "
|
|
11494
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11027
11495
|
name: string;
|
|
11028
11496
|
durationMs: number;
|
|
11029
11497
|
id?: string | undefined;
|
|
@@ -11054,16 +11522,16 @@ declare const endpoints: {
|
|
|
11054
11522
|
createdAt: z.ZodString;
|
|
11055
11523
|
updatedAt: z.ZodString;
|
|
11056
11524
|
}, "cases">, "strip", z.ZodTypeAny, {
|
|
11057
|
-
status: "running" | "
|
|
11525
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11058
11526
|
id: string;
|
|
11059
11527
|
createdAt: string;
|
|
11060
11528
|
updatedAt: string;
|
|
11529
|
+
suite: string;
|
|
11061
11530
|
durationMs: number;
|
|
11062
11531
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11063
|
-
suite: string;
|
|
11064
11532
|
summary: {
|
|
11065
|
-
failed: number;
|
|
11066
11533
|
passed: number;
|
|
11534
|
+
failed: number;
|
|
11067
11535
|
skipped: number;
|
|
11068
11536
|
pending: number;
|
|
11069
11537
|
total: number;
|
|
@@ -11077,29 +11545,29 @@ declare const endpoints: {
|
|
|
11077
11545
|
}[];
|
|
11078
11546
|
orgId: string;
|
|
11079
11547
|
createdBy: string;
|
|
11548
|
+
finishedAt?: string | null | undefined;
|
|
11080
11549
|
externalId?: string | undefined;
|
|
11081
11550
|
startedAt?: string | null | undefined;
|
|
11082
|
-
finishedAt?: string | null | undefined;
|
|
11083
11551
|
}, {
|
|
11084
|
-
status: "running" | "
|
|
11552
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11085
11553
|
id: string;
|
|
11086
11554
|
createdAt: string;
|
|
11087
11555
|
updatedAt: string;
|
|
11088
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11089
11556
|
suite: string;
|
|
11557
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11090
11558
|
summary: {
|
|
11091
|
-
failed: number;
|
|
11092
11559
|
passed: number;
|
|
11560
|
+
failed: number;
|
|
11093
11561
|
skipped: number;
|
|
11094
11562
|
total: number;
|
|
11095
11563
|
pending?: number | undefined;
|
|
11096
11564
|
};
|
|
11097
11565
|
orgId: string;
|
|
11098
11566
|
createdBy: string;
|
|
11567
|
+
finishedAt?: string | null | undefined;
|
|
11099
11568
|
durationMs?: number | undefined;
|
|
11100
11569
|
externalId?: string | undefined;
|
|
11101
11570
|
startedAt?: string | null | undefined;
|
|
11102
|
-
finishedAt?: string | null | undefined;
|
|
11103
11571
|
environment?: Record<string, unknown> | undefined;
|
|
11104
11572
|
revision?: Record<string, unknown> | undefined;
|
|
11105
11573
|
artifacts?: {
|
|
@@ -11110,16 +11578,16 @@ declare const endpoints: {
|
|
|
11110
11578
|
}>, "many">;
|
|
11111
11579
|
}, "strip", z.ZodTypeAny, {
|
|
11112
11580
|
runs: {
|
|
11113
|
-
status: "running" | "
|
|
11581
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11114
11582
|
id: string;
|
|
11115
11583
|
createdAt: string;
|
|
11116
11584
|
updatedAt: string;
|
|
11585
|
+
suite: string;
|
|
11117
11586
|
durationMs: number;
|
|
11118
11587
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11119
|
-
suite: string;
|
|
11120
11588
|
summary: {
|
|
11121
|
-
failed: number;
|
|
11122
11589
|
passed: number;
|
|
11590
|
+
failed: number;
|
|
11123
11591
|
skipped: number;
|
|
11124
11592
|
pending: number;
|
|
11125
11593
|
total: number;
|
|
@@ -11133,31 +11601,31 @@ declare const endpoints: {
|
|
|
11133
11601
|
}[];
|
|
11134
11602
|
orgId: string;
|
|
11135
11603
|
createdBy: string;
|
|
11604
|
+
finishedAt?: string | null | undefined;
|
|
11136
11605
|
externalId?: string | undefined;
|
|
11137
11606
|
startedAt?: string | null | undefined;
|
|
11138
|
-
finishedAt?: string | null | undefined;
|
|
11139
11607
|
}[];
|
|
11140
11608
|
}, {
|
|
11141
11609
|
runs: {
|
|
11142
|
-
status: "running" | "
|
|
11610
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11143
11611
|
id: string;
|
|
11144
11612
|
createdAt: string;
|
|
11145
11613
|
updatedAt: string;
|
|
11146
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11147
11614
|
suite: string;
|
|
11615
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11148
11616
|
summary: {
|
|
11149
|
-
failed: number;
|
|
11150
11617
|
passed: number;
|
|
11618
|
+
failed: number;
|
|
11151
11619
|
skipped: number;
|
|
11152
11620
|
total: number;
|
|
11153
11621
|
pending?: number | undefined;
|
|
11154
11622
|
};
|
|
11155
11623
|
orgId: string;
|
|
11156
11624
|
createdBy: string;
|
|
11625
|
+
finishedAt?: string | null | undefined;
|
|
11157
11626
|
durationMs?: number | undefined;
|
|
11158
11627
|
externalId?: string | undefined;
|
|
11159
11628
|
startedAt?: string | null | undefined;
|
|
11160
|
-
finishedAt?: string | null | undefined;
|
|
11161
11629
|
environment?: Record<string, unknown> | undefined;
|
|
11162
11630
|
revision?: Record<string, unknown> | undefined;
|
|
11163
11631
|
artifacts?: {
|
|
@@ -11188,14 +11656,14 @@ declare const endpoints: {
|
|
|
11188
11656
|
skipped: z.ZodNumber;
|
|
11189
11657
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11190
11658
|
}, "strip", z.ZodTypeAny, {
|
|
11191
|
-
failed: number;
|
|
11192
11659
|
passed: number;
|
|
11660
|
+
failed: number;
|
|
11193
11661
|
skipped: number;
|
|
11194
11662
|
pending: number;
|
|
11195
11663
|
total: number;
|
|
11196
11664
|
}, {
|
|
11197
|
-
failed: number;
|
|
11198
11665
|
passed: number;
|
|
11666
|
+
failed: number;
|
|
11199
11667
|
skipped: number;
|
|
11200
11668
|
total: number;
|
|
11201
11669
|
pending?: number | undefined;
|
|
@@ -11214,7 +11682,7 @@ declare const endpoints: {
|
|
|
11214
11682
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11215
11683
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11216
11684
|
}, "strip", z.ZodTypeAny, {
|
|
11217
|
-
status: "undefined" | "unknown" | "
|
|
11685
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11218
11686
|
name: string;
|
|
11219
11687
|
durationMs: number;
|
|
11220
11688
|
tags: string[];
|
|
@@ -11225,7 +11693,7 @@ declare const endpoints: {
|
|
|
11225
11693
|
resourceUrl?: string | undefined;
|
|
11226
11694
|
details?: Record<string, unknown> | undefined;
|
|
11227
11695
|
}, {
|
|
11228
|
-
status: "undefined" | "unknown" | "
|
|
11696
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11229
11697
|
name: string;
|
|
11230
11698
|
durationMs: number;
|
|
11231
11699
|
id?: string | undefined;
|
|
@@ -11250,13 +11718,13 @@ declare const endpoints: {
|
|
|
11250
11718
|
mediaType?: string | undefined;
|
|
11251
11719
|
}>, "many">>;
|
|
11252
11720
|
}, "strip", z.ZodTypeAny, {
|
|
11253
|
-
status: "running" | "
|
|
11721
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11722
|
+
suite: string;
|
|
11254
11723
|
durationMs: number;
|
|
11255
11724
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11256
|
-
suite: string;
|
|
11257
11725
|
summary: {
|
|
11258
|
-
failed: number;
|
|
11259
11726
|
passed: number;
|
|
11727
|
+
failed: number;
|
|
11260
11728
|
skipped: number;
|
|
11261
11729
|
pending: number;
|
|
11262
11730
|
total: number;
|
|
@@ -11264,7 +11732,7 @@ declare const endpoints: {
|
|
|
11264
11732
|
environment: Record<string, unknown>;
|
|
11265
11733
|
revision: Record<string, unknown>;
|
|
11266
11734
|
cases: {
|
|
11267
|
-
status: "undefined" | "unknown" | "
|
|
11735
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11268
11736
|
name: string;
|
|
11269
11737
|
durationMs: number;
|
|
11270
11738
|
tags: string[];
|
|
@@ -11280,28 +11748,28 @@ declare const endpoints: {
|
|
|
11280
11748
|
url: string;
|
|
11281
11749
|
mediaType?: string | undefined;
|
|
11282
11750
|
}[];
|
|
11751
|
+
finishedAt?: string | null | undefined;
|
|
11283
11752
|
externalId?: string | undefined;
|
|
11284
11753
|
startedAt?: string | null | undefined;
|
|
11285
|
-
finishedAt?: string | null | undefined;
|
|
11286
11754
|
}, {
|
|
11287
|
-
status: "running" | "
|
|
11288
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11755
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11289
11756
|
suite: string;
|
|
11757
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11290
11758
|
summary: {
|
|
11291
|
-
failed: number;
|
|
11292
11759
|
passed: number;
|
|
11760
|
+
failed: number;
|
|
11293
11761
|
skipped: number;
|
|
11294
11762
|
total: number;
|
|
11295
11763
|
pending?: number | undefined;
|
|
11296
11764
|
};
|
|
11765
|
+
finishedAt?: string | null | undefined;
|
|
11297
11766
|
durationMs?: number | undefined;
|
|
11298
11767
|
externalId?: string | undefined;
|
|
11299
11768
|
startedAt?: string | null | undefined;
|
|
11300
|
-
finishedAt?: string | null | undefined;
|
|
11301
11769
|
environment?: Record<string, unknown> | undefined;
|
|
11302
11770
|
revision?: Record<string, unknown> | undefined;
|
|
11303
11771
|
cases?: {
|
|
11304
|
-
status: "undefined" | "unknown" | "
|
|
11772
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11305
11773
|
name: string;
|
|
11306
11774
|
durationMs: number;
|
|
11307
11775
|
id?: string | undefined;
|
|
@@ -11333,14 +11801,14 @@ declare const endpoints: {
|
|
|
11333
11801
|
skipped: z.ZodNumber;
|
|
11334
11802
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11335
11803
|
}, "strip", z.ZodTypeAny, {
|
|
11336
|
-
failed: number;
|
|
11337
11804
|
passed: number;
|
|
11805
|
+
failed: number;
|
|
11338
11806
|
skipped: number;
|
|
11339
11807
|
pending: number;
|
|
11340
11808
|
total: number;
|
|
11341
11809
|
}, {
|
|
11342
|
-
failed: number;
|
|
11343
11810
|
passed: number;
|
|
11811
|
+
failed: number;
|
|
11344
11812
|
skipped: number;
|
|
11345
11813
|
total: number;
|
|
11346
11814
|
pending?: number | undefined;
|
|
@@ -11359,7 +11827,7 @@ declare const endpoints: {
|
|
|
11359
11827
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11360
11828
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11361
11829
|
}, "strip", z.ZodTypeAny, {
|
|
11362
|
-
status: "undefined" | "unknown" | "
|
|
11830
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11363
11831
|
name: string;
|
|
11364
11832
|
durationMs: number;
|
|
11365
11833
|
tags: string[];
|
|
@@ -11370,7 +11838,7 @@ declare const endpoints: {
|
|
|
11370
11838
|
resourceUrl?: string | undefined;
|
|
11371
11839
|
details?: Record<string, unknown> | undefined;
|
|
11372
11840
|
}, {
|
|
11373
|
-
status: "undefined" | "unknown" | "
|
|
11841
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11374
11842
|
name: string;
|
|
11375
11843
|
durationMs: number;
|
|
11376
11844
|
id?: string | undefined;
|
|
@@ -11401,16 +11869,16 @@ declare const endpoints: {
|
|
|
11401
11869
|
createdAt: z.ZodString;
|
|
11402
11870
|
updatedAt: z.ZodString;
|
|
11403
11871
|
}, "strip", z.ZodTypeAny, {
|
|
11404
|
-
status: "running" | "
|
|
11872
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11405
11873
|
id: string;
|
|
11406
11874
|
createdAt: string;
|
|
11407
11875
|
updatedAt: string;
|
|
11876
|
+
suite: string;
|
|
11408
11877
|
durationMs: number;
|
|
11409
11878
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11410
|
-
suite: string;
|
|
11411
11879
|
summary: {
|
|
11412
|
-
failed: number;
|
|
11413
11880
|
passed: number;
|
|
11881
|
+
failed: number;
|
|
11414
11882
|
skipped: number;
|
|
11415
11883
|
pending: number;
|
|
11416
11884
|
total: number;
|
|
@@ -11418,7 +11886,7 @@ declare const endpoints: {
|
|
|
11418
11886
|
environment: Record<string, unknown>;
|
|
11419
11887
|
revision: Record<string, unknown>;
|
|
11420
11888
|
cases: {
|
|
11421
|
-
status: "undefined" | "unknown" | "
|
|
11889
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11422
11890
|
name: string;
|
|
11423
11891
|
durationMs: number;
|
|
11424
11892
|
tags: string[];
|
|
@@ -11436,33 +11904,33 @@ declare const endpoints: {
|
|
|
11436
11904
|
}[];
|
|
11437
11905
|
orgId: string;
|
|
11438
11906
|
createdBy: string;
|
|
11907
|
+
finishedAt?: string | null | undefined;
|
|
11439
11908
|
externalId?: string | undefined;
|
|
11440
11909
|
startedAt?: string | null | undefined;
|
|
11441
|
-
finishedAt?: string | null | undefined;
|
|
11442
11910
|
}, {
|
|
11443
|
-
status: "running" | "
|
|
11911
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11444
11912
|
id: string;
|
|
11445
11913
|
createdAt: string;
|
|
11446
11914
|
updatedAt: string;
|
|
11447
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11448
11915
|
suite: string;
|
|
11916
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11449
11917
|
summary: {
|
|
11450
|
-
failed: number;
|
|
11451
11918
|
passed: number;
|
|
11919
|
+
failed: number;
|
|
11452
11920
|
skipped: number;
|
|
11453
11921
|
total: number;
|
|
11454
11922
|
pending?: number | undefined;
|
|
11455
11923
|
};
|
|
11456
11924
|
orgId: string;
|
|
11457
11925
|
createdBy: string;
|
|
11926
|
+
finishedAt?: string | null | undefined;
|
|
11458
11927
|
durationMs?: number | undefined;
|
|
11459
11928
|
externalId?: string | undefined;
|
|
11460
11929
|
startedAt?: string | null | undefined;
|
|
11461
|
-
finishedAt?: string | null | undefined;
|
|
11462
11930
|
environment?: Record<string, unknown> | undefined;
|
|
11463
11931
|
revision?: Record<string, unknown> | undefined;
|
|
11464
11932
|
cases?: {
|
|
11465
|
-
status: "undefined" | "unknown" | "
|
|
11933
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11466
11934
|
name: string;
|
|
11467
11935
|
durationMs: number;
|
|
11468
11936
|
id?: string | undefined;
|
|
@@ -11501,14 +11969,14 @@ declare const endpoints: {
|
|
|
11501
11969
|
skipped: z.ZodNumber;
|
|
11502
11970
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11503
11971
|
}, "strip", z.ZodTypeAny, {
|
|
11504
|
-
failed: number;
|
|
11505
11972
|
passed: number;
|
|
11973
|
+
failed: number;
|
|
11506
11974
|
skipped: number;
|
|
11507
11975
|
pending: number;
|
|
11508
11976
|
total: number;
|
|
11509
11977
|
}, {
|
|
11510
|
-
failed: number;
|
|
11511
11978
|
passed: number;
|
|
11979
|
+
failed: number;
|
|
11512
11980
|
skipped: number;
|
|
11513
11981
|
total: number;
|
|
11514
11982
|
pending?: number | undefined;
|
|
@@ -11527,7 +11995,7 @@ declare const endpoints: {
|
|
|
11527
11995
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11528
11996
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11529
11997
|
}, "strip", z.ZodTypeAny, {
|
|
11530
|
-
status: "undefined" | "unknown" | "
|
|
11998
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11531
11999
|
name: string;
|
|
11532
12000
|
durationMs: number;
|
|
11533
12001
|
tags: string[];
|
|
@@ -11538,7 +12006,7 @@ declare const endpoints: {
|
|
|
11538
12006
|
resourceUrl?: string | undefined;
|
|
11539
12007
|
details?: Record<string, unknown> | undefined;
|
|
11540
12008
|
}, {
|
|
11541
|
-
status: "undefined" | "unknown" | "
|
|
12009
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11542
12010
|
name: string;
|
|
11543
12011
|
durationMs: number;
|
|
11544
12012
|
id?: string | undefined;
|
|
@@ -11569,16 +12037,16 @@ declare const endpoints: {
|
|
|
11569
12037
|
createdAt: z.ZodString;
|
|
11570
12038
|
updatedAt: z.ZodString;
|
|
11571
12039
|
}, "strip", z.ZodTypeAny, {
|
|
11572
|
-
status: "running" | "
|
|
12040
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11573
12041
|
id: string;
|
|
11574
12042
|
createdAt: string;
|
|
11575
12043
|
updatedAt: string;
|
|
12044
|
+
suite: string;
|
|
11576
12045
|
durationMs: number;
|
|
11577
12046
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11578
|
-
suite: string;
|
|
11579
12047
|
summary: {
|
|
11580
|
-
failed: number;
|
|
11581
12048
|
passed: number;
|
|
12049
|
+
failed: number;
|
|
11582
12050
|
skipped: number;
|
|
11583
12051
|
pending: number;
|
|
11584
12052
|
total: number;
|
|
@@ -11586,7 +12054,7 @@ declare const endpoints: {
|
|
|
11586
12054
|
environment: Record<string, unknown>;
|
|
11587
12055
|
revision: Record<string, unknown>;
|
|
11588
12056
|
cases: {
|
|
11589
|
-
status: "undefined" | "unknown" | "
|
|
12057
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11590
12058
|
name: string;
|
|
11591
12059
|
durationMs: number;
|
|
11592
12060
|
tags: string[];
|
|
@@ -11604,33 +12072,33 @@ declare const endpoints: {
|
|
|
11604
12072
|
}[];
|
|
11605
12073
|
orgId: string;
|
|
11606
12074
|
createdBy: string;
|
|
12075
|
+
finishedAt?: string | null | undefined;
|
|
11607
12076
|
externalId?: string | undefined;
|
|
11608
12077
|
startedAt?: string | null | undefined;
|
|
11609
|
-
finishedAt?: string | null | undefined;
|
|
11610
12078
|
}, {
|
|
11611
|
-
status: "running" | "
|
|
12079
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11612
12080
|
id: string;
|
|
11613
12081
|
createdAt: string;
|
|
11614
12082
|
updatedAt: string;
|
|
11615
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11616
12083
|
suite: string;
|
|
12084
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11617
12085
|
summary: {
|
|
11618
|
-
failed: number;
|
|
11619
12086
|
passed: number;
|
|
12087
|
+
failed: number;
|
|
11620
12088
|
skipped: number;
|
|
11621
12089
|
total: number;
|
|
11622
12090
|
pending?: number | undefined;
|
|
11623
12091
|
};
|
|
11624
12092
|
orgId: string;
|
|
11625
12093
|
createdBy: string;
|
|
12094
|
+
finishedAt?: string | null | undefined;
|
|
11626
12095
|
durationMs?: number | undefined;
|
|
11627
12096
|
externalId?: string | undefined;
|
|
11628
12097
|
startedAt?: string | null | undefined;
|
|
11629
|
-
finishedAt?: string | null | undefined;
|
|
11630
12098
|
environment?: Record<string, unknown> | undefined;
|
|
11631
12099
|
revision?: Record<string, unknown> | undefined;
|
|
11632
12100
|
cases?: {
|
|
11633
|
-
status: "undefined" | "unknown" | "
|
|
12101
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11634
12102
|
name: string;
|
|
11635
12103
|
durationMs: number;
|
|
11636
12104
|
id?: string | undefined;
|
|
@@ -11672,4 +12140,4 @@ declare const ApiError: z.ZodObject<{
|
|
|
11672
12140
|
}>;
|
|
11673
12141
|
type ApiError = z.infer<typeof ApiError>;
|
|
11674
12142
|
|
|
11675
|
-
export { AggregateInput, AggregateResponse, AggregateRow, ApiError, ApiKeyListResponse, ApiKeySummary, AuditEvent, AuditExport, AuditExportListResponse, AuditListResponse, CreateApiKeyInput, CreateApiKeyResponse, CreateAuditExportInput, CreateExperimentInput, CreateExperimentResponse, CreateTestRunInput, EdgePushResult, type EndpointDef, type EndpointName, type EndpointParams, type EndpointResponse, EnvironmentListResponse, ExperimentListResponse, ExperimentSummary, FeatureListResponse, FeatureRuleListResponse, InvokeActionInput, InvokeActionResponse, ManifestKey, ManifestKeysResponse, PreviewSignInput, PreviewSignResponse, ProjectListResponse, PromoteEnvironmentInput, PromoteEnvironmentResponse, PropertyListResponse, PublicationListResponse, PublishManifestResponse, SamlConfig, TenantSelf, TestCaseResult, TestCaseStatus, TestRun, TestRunArtifact, TestRunListInput, TestRunListResponse, TestRunStatus, TestRunSummary, buildPath, endpoints };
|
|
12143
|
+
export { AggregateInput, AggregateResponse, AggregateRow, ApiError, ApiKeyListResponse, ApiKeySummary, AuditEvent, AuditExport, AuditExportListResponse, AuditListResponse, CreateApiKeyInput, CreateApiKeyResponse, CreateAuditExportInput, CreateExperimentInput, CreateExperimentResponse, CreateTestRunInput, EdgePushResult, type EndpointDef, type EndpointName, type EndpointParams, type EndpointResponse, EnvironmentListResponse, ExperimentListResponse, ExperimentSummary, FeatureListResponse, FeatureRuleListResponse, GovernanceSettings, GovernanceStatusResponse, InvokeActionInput, InvokeActionResponse, ManifestKey, ManifestKeysResponse, PreviewSignInput, PreviewSignResponse, ProjectListResponse, PromoteEnvironmentInput, PromoteEnvironmentResponse, PropertyListResponse, PublicationListResponse, PublishManifestResponse, QualityGateResult, SamlConfig, TenantSelf, TestCaseResult, TestCaseStatus, TestRun, TestRunArtifact, TestRunListInput, TestRunListResponse, TestRunStatus, TestRunSummary, UpdateGovernanceSettingsInput, buildPath, endpoints };
|