@fabricorg/experiments-api-protocol 0.1.3 → 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 +53 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +585 -123
- package/dist/index.d.ts +585 -123
- package/dist/index.js +50 -1
- 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;
|
|
@@ -3787,15 +3991,15 @@ declare const TestRunListInput: z.ZodObject<{
|
|
|
3787
3991
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
3788
3992
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
3789
3993
|
}, "strip", z.ZodTypeAny, {
|
|
3790
|
-
status?: "running" | "
|
|
3791
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3994
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3792
3995
|
suite?: string | undefined;
|
|
3996
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3793
3997
|
limit?: number | undefined;
|
|
3794
3998
|
offset?: number | undefined;
|
|
3795
3999
|
}, {
|
|
3796
|
-
status?: "running" | "
|
|
3797
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
4000
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3798
4001
|
suite?: string | undefined;
|
|
4002
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3799
4003
|
limit?: number | undefined;
|
|
3800
4004
|
offset?: number | undefined;
|
|
3801
4005
|
}>;
|
|
@@ -3815,14 +4019,14 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3815
4019
|
skipped: z.ZodNumber;
|
|
3816
4020
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
3817
4021
|
}, "strip", z.ZodTypeAny, {
|
|
3818
|
-
failed: number;
|
|
3819
4022
|
passed: number;
|
|
4023
|
+
failed: number;
|
|
3820
4024
|
skipped: number;
|
|
3821
4025
|
pending: number;
|
|
3822
4026
|
total: number;
|
|
3823
4027
|
}, {
|
|
3824
|
-
failed: number;
|
|
3825
4028
|
passed: number;
|
|
4029
|
+
failed: number;
|
|
3826
4030
|
skipped: number;
|
|
3827
4031
|
total: number;
|
|
3828
4032
|
pending?: number | undefined;
|
|
@@ -3841,7 +4045,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3841
4045
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
3842
4046
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3843
4047
|
}, "strip", z.ZodTypeAny, {
|
|
3844
|
-
status: "undefined" | "unknown" | "
|
|
4048
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3845
4049
|
name: string;
|
|
3846
4050
|
durationMs: number;
|
|
3847
4051
|
tags: string[];
|
|
@@ -3852,7 +4056,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3852
4056
|
resourceUrl?: string | undefined;
|
|
3853
4057
|
details?: Record<string, unknown> | undefined;
|
|
3854
4058
|
}, {
|
|
3855
|
-
status: "undefined" | "unknown" | "
|
|
4059
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3856
4060
|
name: string;
|
|
3857
4061
|
durationMs: number;
|
|
3858
4062
|
id?: string | undefined;
|
|
@@ -3883,16 +4087,16 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3883
4087
|
createdAt: z.ZodString;
|
|
3884
4088
|
updatedAt: z.ZodString;
|
|
3885
4089
|
}, "cases">, "strip", z.ZodTypeAny, {
|
|
3886
|
-
status: "running" | "
|
|
4090
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3887
4091
|
id: string;
|
|
3888
4092
|
createdAt: string;
|
|
3889
4093
|
updatedAt: string;
|
|
4094
|
+
suite: string;
|
|
3890
4095
|
durationMs: number;
|
|
3891
4096
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3892
|
-
suite: string;
|
|
3893
4097
|
summary: {
|
|
3894
|
-
failed: number;
|
|
3895
4098
|
passed: number;
|
|
4099
|
+
failed: number;
|
|
3896
4100
|
skipped: number;
|
|
3897
4101
|
pending: number;
|
|
3898
4102
|
total: number;
|
|
@@ -3906,29 +4110,29 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3906
4110
|
}[];
|
|
3907
4111
|
orgId: string;
|
|
3908
4112
|
createdBy: string;
|
|
4113
|
+
finishedAt?: string | null | undefined;
|
|
3909
4114
|
externalId?: string | undefined;
|
|
3910
4115
|
startedAt?: string | null | undefined;
|
|
3911
|
-
finishedAt?: string | null | undefined;
|
|
3912
4116
|
}, {
|
|
3913
|
-
status: "running" | "
|
|
4117
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3914
4118
|
id: string;
|
|
3915
4119
|
createdAt: string;
|
|
3916
4120
|
updatedAt: string;
|
|
3917
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3918
4121
|
suite: string;
|
|
4122
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3919
4123
|
summary: {
|
|
3920
|
-
failed: number;
|
|
3921
4124
|
passed: number;
|
|
4125
|
+
failed: number;
|
|
3922
4126
|
skipped: number;
|
|
3923
4127
|
total: number;
|
|
3924
4128
|
pending?: number | undefined;
|
|
3925
4129
|
};
|
|
3926
4130
|
orgId: string;
|
|
3927
4131
|
createdBy: string;
|
|
4132
|
+
finishedAt?: string | null | undefined;
|
|
3928
4133
|
durationMs?: number | undefined;
|
|
3929
4134
|
externalId?: string | undefined;
|
|
3930
4135
|
startedAt?: string | null | undefined;
|
|
3931
|
-
finishedAt?: string | null | undefined;
|
|
3932
4136
|
environment?: Record<string, unknown> | undefined;
|
|
3933
4137
|
revision?: Record<string, unknown> | undefined;
|
|
3934
4138
|
artifacts?: {
|
|
@@ -3939,16 +4143,16 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3939
4143
|
}>, "many">;
|
|
3940
4144
|
}, "strip", z.ZodTypeAny, {
|
|
3941
4145
|
runs: {
|
|
3942
|
-
status: "running" | "
|
|
4146
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3943
4147
|
id: string;
|
|
3944
4148
|
createdAt: string;
|
|
3945
4149
|
updatedAt: string;
|
|
4150
|
+
suite: string;
|
|
3946
4151
|
durationMs: number;
|
|
3947
4152
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3948
|
-
suite: string;
|
|
3949
4153
|
summary: {
|
|
3950
|
-
failed: number;
|
|
3951
4154
|
passed: number;
|
|
4155
|
+
failed: number;
|
|
3952
4156
|
skipped: number;
|
|
3953
4157
|
pending: number;
|
|
3954
4158
|
total: number;
|
|
@@ -3962,31 +4166,31 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3962
4166
|
}[];
|
|
3963
4167
|
orgId: string;
|
|
3964
4168
|
createdBy: string;
|
|
4169
|
+
finishedAt?: string | null | undefined;
|
|
3965
4170
|
externalId?: string | undefined;
|
|
3966
4171
|
startedAt?: string | null | undefined;
|
|
3967
|
-
finishedAt?: string | null | undefined;
|
|
3968
4172
|
}[];
|
|
3969
4173
|
}, {
|
|
3970
4174
|
runs: {
|
|
3971
|
-
status: "running" | "
|
|
4175
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3972
4176
|
id: string;
|
|
3973
4177
|
createdAt: string;
|
|
3974
4178
|
updatedAt: string;
|
|
3975
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3976
4179
|
suite: string;
|
|
4180
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3977
4181
|
summary: {
|
|
3978
|
-
failed: number;
|
|
3979
4182
|
passed: number;
|
|
4183
|
+
failed: number;
|
|
3980
4184
|
skipped: number;
|
|
3981
4185
|
total: number;
|
|
3982
4186
|
pending?: number | undefined;
|
|
3983
4187
|
};
|
|
3984
4188
|
orgId: string;
|
|
3985
4189
|
createdBy: string;
|
|
4190
|
+
finishedAt?: string | null | undefined;
|
|
3986
4191
|
durationMs?: number | undefined;
|
|
3987
4192
|
externalId?: string | undefined;
|
|
3988
4193
|
startedAt?: string | null | undefined;
|
|
3989
|
-
finishedAt?: string | null | undefined;
|
|
3990
4194
|
environment?: Record<string, unknown> | undefined;
|
|
3991
4195
|
revision?: Record<string, unknown> | undefined;
|
|
3992
4196
|
artifacts?: {
|
|
@@ -10631,6 +10835,264 @@ declare const endpoints: {
|
|
|
10631
10835
|
mutates: false;
|
|
10632
10836
|
requiresRole: "viewer";
|
|
10633
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
|
+
};
|
|
10634
11096
|
'audit.exports.list': {
|
|
10635
11097
|
method: "GET";
|
|
10636
11098
|
path: string;
|
|
@@ -10964,15 +11426,15 @@ declare const endpoints: {
|
|
|
10964
11426
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
10965
11427
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
10966
11428
|
}, "strip", z.ZodTypeAny, {
|
|
10967
|
-
status?: "running" | "
|
|
10968
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11429
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
10969
11430
|
suite?: string | undefined;
|
|
11431
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
10970
11432
|
limit?: number | undefined;
|
|
10971
11433
|
offset?: number | undefined;
|
|
10972
11434
|
}, {
|
|
10973
|
-
status?: "running" | "
|
|
10974
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11435
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
10975
11436
|
suite?: string | undefined;
|
|
11437
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
10976
11438
|
limit?: number | undefined;
|
|
10977
11439
|
offset?: number | undefined;
|
|
10978
11440
|
}>;
|
|
@@ -10992,14 +11454,14 @@ declare const endpoints: {
|
|
|
10992
11454
|
skipped: z.ZodNumber;
|
|
10993
11455
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
10994
11456
|
}, "strip", z.ZodTypeAny, {
|
|
10995
|
-
failed: number;
|
|
10996
11457
|
passed: number;
|
|
11458
|
+
failed: number;
|
|
10997
11459
|
skipped: number;
|
|
10998
11460
|
pending: number;
|
|
10999
11461
|
total: number;
|
|
11000
11462
|
}, {
|
|
11001
|
-
failed: number;
|
|
11002
11463
|
passed: number;
|
|
11464
|
+
failed: number;
|
|
11003
11465
|
skipped: number;
|
|
11004
11466
|
total: number;
|
|
11005
11467
|
pending?: number | undefined;
|
|
@@ -11018,7 +11480,7 @@ declare const endpoints: {
|
|
|
11018
11480
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11019
11481
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11020
11482
|
}, "strip", z.ZodTypeAny, {
|
|
11021
|
-
status: "undefined" | "unknown" | "
|
|
11483
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11022
11484
|
name: string;
|
|
11023
11485
|
durationMs: number;
|
|
11024
11486
|
tags: string[];
|
|
@@ -11029,7 +11491,7 @@ declare const endpoints: {
|
|
|
11029
11491
|
resourceUrl?: string | undefined;
|
|
11030
11492
|
details?: Record<string, unknown> | undefined;
|
|
11031
11493
|
}, {
|
|
11032
|
-
status: "undefined" | "unknown" | "
|
|
11494
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11033
11495
|
name: string;
|
|
11034
11496
|
durationMs: number;
|
|
11035
11497
|
id?: string | undefined;
|
|
@@ -11060,16 +11522,16 @@ declare const endpoints: {
|
|
|
11060
11522
|
createdAt: z.ZodString;
|
|
11061
11523
|
updatedAt: z.ZodString;
|
|
11062
11524
|
}, "cases">, "strip", z.ZodTypeAny, {
|
|
11063
|
-
status: "running" | "
|
|
11525
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11064
11526
|
id: string;
|
|
11065
11527
|
createdAt: string;
|
|
11066
11528
|
updatedAt: string;
|
|
11529
|
+
suite: string;
|
|
11067
11530
|
durationMs: number;
|
|
11068
11531
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11069
|
-
suite: string;
|
|
11070
11532
|
summary: {
|
|
11071
|
-
failed: number;
|
|
11072
11533
|
passed: number;
|
|
11534
|
+
failed: number;
|
|
11073
11535
|
skipped: number;
|
|
11074
11536
|
pending: number;
|
|
11075
11537
|
total: number;
|
|
@@ -11083,29 +11545,29 @@ declare const endpoints: {
|
|
|
11083
11545
|
}[];
|
|
11084
11546
|
orgId: string;
|
|
11085
11547
|
createdBy: string;
|
|
11548
|
+
finishedAt?: string | null | undefined;
|
|
11086
11549
|
externalId?: string | undefined;
|
|
11087
11550
|
startedAt?: string | null | undefined;
|
|
11088
|
-
finishedAt?: string | null | undefined;
|
|
11089
11551
|
}, {
|
|
11090
|
-
status: "running" | "
|
|
11552
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11091
11553
|
id: string;
|
|
11092
11554
|
createdAt: string;
|
|
11093
11555
|
updatedAt: string;
|
|
11094
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11095
11556
|
suite: string;
|
|
11557
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11096
11558
|
summary: {
|
|
11097
|
-
failed: number;
|
|
11098
11559
|
passed: number;
|
|
11560
|
+
failed: number;
|
|
11099
11561
|
skipped: number;
|
|
11100
11562
|
total: number;
|
|
11101
11563
|
pending?: number | undefined;
|
|
11102
11564
|
};
|
|
11103
11565
|
orgId: string;
|
|
11104
11566
|
createdBy: string;
|
|
11567
|
+
finishedAt?: string | null | undefined;
|
|
11105
11568
|
durationMs?: number | undefined;
|
|
11106
11569
|
externalId?: string | undefined;
|
|
11107
11570
|
startedAt?: string | null | undefined;
|
|
11108
|
-
finishedAt?: string | null | undefined;
|
|
11109
11571
|
environment?: Record<string, unknown> | undefined;
|
|
11110
11572
|
revision?: Record<string, unknown> | undefined;
|
|
11111
11573
|
artifacts?: {
|
|
@@ -11116,16 +11578,16 @@ declare const endpoints: {
|
|
|
11116
11578
|
}>, "many">;
|
|
11117
11579
|
}, "strip", z.ZodTypeAny, {
|
|
11118
11580
|
runs: {
|
|
11119
|
-
status: "running" | "
|
|
11581
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11120
11582
|
id: string;
|
|
11121
11583
|
createdAt: string;
|
|
11122
11584
|
updatedAt: string;
|
|
11585
|
+
suite: string;
|
|
11123
11586
|
durationMs: number;
|
|
11124
11587
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11125
|
-
suite: string;
|
|
11126
11588
|
summary: {
|
|
11127
|
-
failed: number;
|
|
11128
11589
|
passed: number;
|
|
11590
|
+
failed: number;
|
|
11129
11591
|
skipped: number;
|
|
11130
11592
|
pending: number;
|
|
11131
11593
|
total: number;
|
|
@@ -11139,31 +11601,31 @@ declare const endpoints: {
|
|
|
11139
11601
|
}[];
|
|
11140
11602
|
orgId: string;
|
|
11141
11603
|
createdBy: string;
|
|
11604
|
+
finishedAt?: string | null | undefined;
|
|
11142
11605
|
externalId?: string | undefined;
|
|
11143
11606
|
startedAt?: string | null | undefined;
|
|
11144
|
-
finishedAt?: string | null | undefined;
|
|
11145
11607
|
}[];
|
|
11146
11608
|
}, {
|
|
11147
11609
|
runs: {
|
|
11148
|
-
status: "running" | "
|
|
11610
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11149
11611
|
id: string;
|
|
11150
11612
|
createdAt: string;
|
|
11151
11613
|
updatedAt: string;
|
|
11152
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11153
11614
|
suite: string;
|
|
11615
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11154
11616
|
summary: {
|
|
11155
|
-
failed: number;
|
|
11156
11617
|
passed: number;
|
|
11618
|
+
failed: number;
|
|
11157
11619
|
skipped: number;
|
|
11158
11620
|
total: number;
|
|
11159
11621
|
pending?: number | undefined;
|
|
11160
11622
|
};
|
|
11161
11623
|
orgId: string;
|
|
11162
11624
|
createdBy: string;
|
|
11625
|
+
finishedAt?: string | null | undefined;
|
|
11163
11626
|
durationMs?: number | undefined;
|
|
11164
11627
|
externalId?: string | undefined;
|
|
11165
11628
|
startedAt?: string | null | undefined;
|
|
11166
|
-
finishedAt?: string | null | undefined;
|
|
11167
11629
|
environment?: Record<string, unknown> | undefined;
|
|
11168
11630
|
revision?: Record<string, unknown> | undefined;
|
|
11169
11631
|
artifacts?: {
|
|
@@ -11194,14 +11656,14 @@ declare const endpoints: {
|
|
|
11194
11656
|
skipped: z.ZodNumber;
|
|
11195
11657
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11196
11658
|
}, "strip", z.ZodTypeAny, {
|
|
11197
|
-
failed: number;
|
|
11198
11659
|
passed: number;
|
|
11660
|
+
failed: number;
|
|
11199
11661
|
skipped: number;
|
|
11200
11662
|
pending: number;
|
|
11201
11663
|
total: number;
|
|
11202
11664
|
}, {
|
|
11203
|
-
failed: number;
|
|
11204
11665
|
passed: number;
|
|
11666
|
+
failed: number;
|
|
11205
11667
|
skipped: number;
|
|
11206
11668
|
total: number;
|
|
11207
11669
|
pending?: number | undefined;
|
|
@@ -11220,7 +11682,7 @@ declare const endpoints: {
|
|
|
11220
11682
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11221
11683
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11222
11684
|
}, "strip", z.ZodTypeAny, {
|
|
11223
|
-
status: "undefined" | "unknown" | "
|
|
11685
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11224
11686
|
name: string;
|
|
11225
11687
|
durationMs: number;
|
|
11226
11688
|
tags: string[];
|
|
@@ -11231,7 +11693,7 @@ declare const endpoints: {
|
|
|
11231
11693
|
resourceUrl?: string | undefined;
|
|
11232
11694
|
details?: Record<string, unknown> | undefined;
|
|
11233
11695
|
}, {
|
|
11234
|
-
status: "undefined" | "unknown" | "
|
|
11696
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11235
11697
|
name: string;
|
|
11236
11698
|
durationMs: number;
|
|
11237
11699
|
id?: string | undefined;
|
|
@@ -11256,13 +11718,13 @@ declare const endpoints: {
|
|
|
11256
11718
|
mediaType?: string | undefined;
|
|
11257
11719
|
}>, "many">>;
|
|
11258
11720
|
}, "strip", z.ZodTypeAny, {
|
|
11259
|
-
status: "running" | "
|
|
11721
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11722
|
+
suite: string;
|
|
11260
11723
|
durationMs: number;
|
|
11261
11724
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11262
|
-
suite: string;
|
|
11263
11725
|
summary: {
|
|
11264
|
-
failed: number;
|
|
11265
11726
|
passed: number;
|
|
11727
|
+
failed: number;
|
|
11266
11728
|
skipped: number;
|
|
11267
11729
|
pending: number;
|
|
11268
11730
|
total: number;
|
|
@@ -11270,7 +11732,7 @@ declare const endpoints: {
|
|
|
11270
11732
|
environment: Record<string, unknown>;
|
|
11271
11733
|
revision: Record<string, unknown>;
|
|
11272
11734
|
cases: {
|
|
11273
|
-
status: "undefined" | "unknown" | "
|
|
11735
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11274
11736
|
name: string;
|
|
11275
11737
|
durationMs: number;
|
|
11276
11738
|
tags: string[];
|
|
@@ -11286,28 +11748,28 @@ declare const endpoints: {
|
|
|
11286
11748
|
url: string;
|
|
11287
11749
|
mediaType?: string | undefined;
|
|
11288
11750
|
}[];
|
|
11751
|
+
finishedAt?: string | null | undefined;
|
|
11289
11752
|
externalId?: string | undefined;
|
|
11290
11753
|
startedAt?: string | null | undefined;
|
|
11291
|
-
finishedAt?: string | null | undefined;
|
|
11292
11754
|
}, {
|
|
11293
|
-
status: "running" | "
|
|
11294
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11755
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11295
11756
|
suite: string;
|
|
11757
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11296
11758
|
summary: {
|
|
11297
|
-
failed: number;
|
|
11298
11759
|
passed: number;
|
|
11760
|
+
failed: number;
|
|
11299
11761
|
skipped: number;
|
|
11300
11762
|
total: number;
|
|
11301
11763
|
pending?: number | undefined;
|
|
11302
11764
|
};
|
|
11765
|
+
finishedAt?: string | null | undefined;
|
|
11303
11766
|
durationMs?: number | undefined;
|
|
11304
11767
|
externalId?: string | undefined;
|
|
11305
11768
|
startedAt?: string | null | undefined;
|
|
11306
|
-
finishedAt?: string | null | undefined;
|
|
11307
11769
|
environment?: Record<string, unknown> | undefined;
|
|
11308
11770
|
revision?: Record<string, unknown> | undefined;
|
|
11309
11771
|
cases?: {
|
|
11310
|
-
status: "undefined" | "unknown" | "
|
|
11772
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11311
11773
|
name: string;
|
|
11312
11774
|
durationMs: number;
|
|
11313
11775
|
id?: string | undefined;
|
|
@@ -11339,14 +11801,14 @@ declare const endpoints: {
|
|
|
11339
11801
|
skipped: z.ZodNumber;
|
|
11340
11802
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11341
11803
|
}, "strip", z.ZodTypeAny, {
|
|
11342
|
-
failed: number;
|
|
11343
11804
|
passed: number;
|
|
11805
|
+
failed: number;
|
|
11344
11806
|
skipped: number;
|
|
11345
11807
|
pending: number;
|
|
11346
11808
|
total: number;
|
|
11347
11809
|
}, {
|
|
11348
|
-
failed: number;
|
|
11349
11810
|
passed: number;
|
|
11811
|
+
failed: number;
|
|
11350
11812
|
skipped: number;
|
|
11351
11813
|
total: number;
|
|
11352
11814
|
pending?: number | undefined;
|
|
@@ -11365,7 +11827,7 @@ declare const endpoints: {
|
|
|
11365
11827
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11366
11828
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11367
11829
|
}, "strip", z.ZodTypeAny, {
|
|
11368
|
-
status: "undefined" | "unknown" | "
|
|
11830
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11369
11831
|
name: string;
|
|
11370
11832
|
durationMs: number;
|
|
11371
11833
|
tags: string[];
|
|
@@ -11376,7 +11838,7 @@ declare const endpoints: {
|
|
|
11376
11838
|
resourceUrl?: string | undefined;
|
|
11377
11839
|
details?: Record<string, unknown> | undefined;
|
|
11378
11840
|
}, {
|
|
11379
|
-
status: "undefined" | "unknown" | "
|
|
11841
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11380
11842
|
name: string;
|
|
11381
11843
|
durationMs: number;
|
|
11382
11844
|
id?: string | undefined;
|
|
@@ -11407,16 +11869,16 @@ declare const endpoints: {
|
|
|
11407
11869
|
createdAt: z.ZodString;
|
|
11408
11870
|
updatedAt: z.ZodString;
|
|
11409
11871
|
}, "strip", z.ZodTypeAny, {
|
|
11410
|
-
status: "running" | "
|
|
11872
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11411
11873
|
id: string;
|
|
11412
11874
|
createdAt: string;
|
|
11413
11875
|
updatedAt: string;
|
|
11876
|
+
suite: string;
|
|
11414
11877
|
durationMs: number;
|
|
11415
11878
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11416
|
-
suite: string;
|
|
11417
11879
|
summary: {
|
|
11418
|
-
failed: number;
|
|
11419
11880
|
passed: number;
|
|
11881
|
+
failed: number;
|
|
11420
11882
|
skipped: number;
|
|
11421
11883
|
pending: number;
|
|
11422
11884
|
total: number;
|
|
@@ -11424,7 +11886,7 @@ declare const endpoints: {
|
|
|
11424
11886
|
environment: Record<string, unknown>;
|
|
11425
11887
|
revision: Record<string, unknown>;
|
|
11426
11888
|
cases: {
|
|
11427
|
-
status: "undefined" | "unknown" | "
|
|
11889
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11428
11890
|
name: string;
|
|
11429
11891
|
durationMs: number;
|
|
11430
11892
|
tags: string[];
|
|
@@ -11442,33 +11904,33 @@ declare const endpoints: {
|
|
|
11442
11904
|
}[];
|
|
11443
11905
|
orgId: string;
|
|
11444
11906
|
createdBy: string;
|
|
11907
|
+
finishedAt?: string | null | undefined;
|
|
11445
11908
|
externalId?: string | undefined;
|
|
11446
11909
|
startedAt?: string | null | undefined;
|
|
11447
|
-
finishedAt?: string | null | undefined;
|
|
11448
11910
|
}, {
|
|
11449
|
-
status: "running" | "
|
|
11911
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11450
11912
|
id: string;
|
|
11451
11913
|
createdAt: string;
|
|
11452
11914
|
updatedAt: string;
|
|
11453
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11454
11915
|
suite: string;
|
|
11916
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11455
11917
|
summary: {
|
|
11456
|
-
failed: number;
|
|
11457
11918
|
passed: number;
|
|
11919
|
+
failed: number;
|
|
11458
11920
|
skipped: number;
|
|
11459
11921
|
total: number;
|
|
11460
11922
|
pending?: number | undefined;
|
|
11461
11923
|
};
|
|
11462
11924
|
orgId: string;
|
|
11463
11925
|
createdBy: string;
|
|
11926
|
+
finishedAt?: string | null | undefined;
|
|
11464
11927
|
durationMs?: number | undefined;
|
|
11465
11928
|
externalId?: string | undefined;
|
|
11466
11929
|
startedAt?: string | null | undefined;
|
|
11467
|
-
finishedAt?: string | null | undefined;
|
|
11468
11930
|
environment?: Record<string, unknown> | undefined;
|
|
11469
11931
|
revision?: Record<string, unknown> | undefined;
|
|
11470
11932
|
cases?: {
|
|
11471
|
-
status: "undefined" | "unknown" | "
|
|
11933
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11472
11934
|
name: string;
|
|
11473
11935
|
durationMs: number;
|
|
11474
11936
|
id?: string | undefined;
|
|
@@ -11507,14 +11969,14 @@ declare const endpoints: {
|
|
|
11507
11969
|
skipped: z.ZodNumber;
|
|
11508
11970
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11509
11971
|
}, "strip", z.ZodTypeAny, {
|
|
11510
|
-
failed: number;
|
|
11511
11972
|
passed: number;
|
|
11973
|
+
failed: number;
|
|
11512
11974
|
skipped: number;
|
|
11513
11975
|
pending: number;
|
|
11514
11976
|
total: number;
|
|
11515
11977
|
}, {
|
|
11516
|
-
failed: number;
|
|
11517
11978
|
passed: number;
|
|
11979
|
+
failed: number;
|
|
11518
11980
|
skipped: number;
|
|
11519
11981
|
total: number;
|
|
11520
11982
|
pending?: number | undefined;
|
|
@@ -11533,7 +11995,7 @@ declare const endpoints: {
|
|
|
11533
11995
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11534
11996
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11535
11997
|
}, "strip", z.ZodTypeAny, {
|
|
11536
|
-
status: "undefined" | "unknown" | "
|
|
11998
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11537
11999
|
name: string;
|
|
11538
12000
|
durationMs: number;
|
|
11539
12001
|
tags: string[];
|
|
@@ -11544,7 +12006,7 @@ declare const endpoints: {
|
|
|
11544
12006
|
resourceUrl?: string | undefined;
|
|
11545
12007
|
details?: Record<string, unknown> | undefined;
|
|
11546
12008
|
}, {
|
|
11547
|
-
status: "undefined" | "unknown" | "
|
|
12009
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11548
12010
|
name: string;
|
|
11549
12011
|
durationMs: number;
|
|
11550
12012
|
id?: string | undefined;
|
|
@@ -11575,16 +12037,16 @@ declare const endpoints: {
|
|
|
11575
12037
|
createdAt: z.ZodString;
|
|
11576
12038
|
updatedAt: z.ZodString;
|
|
11577
12039
|
}, "strip", z.ZodTypeAny, {
|
|
11578
|
-
status: "running" | "
|
|
12040
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11579
12041
|
id: string;
|
|
11580
12042
|
createdAt: string;
|
|
11581
12043
|
updatedAt: string;
|
|
12044
|
+
suite: string;
|
|
11582
12045
|
durationMs: number;
|
|
11583
12046
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11584
|
-
suite: string;
|
|
11585
12047
|
summary: {
|
|
11586
|
-
failed: number;
|
|
11587
12048
|
passed: number;
|
|
12049
|
+
failed: number;
|
|
11588
12050
|
skipped: number;
|
|
11589
12051
|
pending: number;
|
|
11590
12052
|
total: number;
|
|
@@ -11592,7 +12054,7 @@ declare const endpoints: {
|
|
|
11592
12054
|
environment: Record<string, unknown>;
|
|
11593
12055
|
revision: Record<string, unknown>;
|
|
11594
12056
|
cases: {
|
|
11595
|
-
status: "undefined" | "unknown" | "
|
|
12057
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11596
12058
|
name: string;
|
|
11597
12059
|
durationMs: number;
|
|
11598
12060
|
tags: string[];
|
|
@@ -11610,33 +12072,33 @@ declare const endpoints: {
|
|
|
11610
12072
|
}[];
|
|
11611
12073
|
orgId: string;
|
|
11612
12074
|
createdBy: string;
|
|
12075
|
+
finishedAt?: string | null | undefined;
|
|
11613
12076
|
externalId?: string | undefined;
|
|
11614
12077
|
startedAt?: string | null | undefined;
|
|
11615
|
-
finishedAt?: string | null | undefined;
|
|
11616
12078
|
}, {
|
|
11617
|
-
status: "running" | "
|
|
12079
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11618
12080
|
id: string;
|
|
11619
12081
|
createdAt: string;
|
|
11620
12082
|
updatedAt: string;
|
|
11621
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11622
12083
|
suite: string;
|
|
12084
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11623
12085
|
summary: {
|
|
11624
|
-
failed: number;
|
|
11625
12086
|
passed: number;
|
|
12087
|
+
failed: number;
|
|
11626
12088
|
skipped: number;
|
|
11627
12089
|
total: number;
|
|
11628
12090
|
pending?: number | undefined;
|
|
11629
12091
|
};
|
|
11630
12092
|
orgId: string;
|
|
11631
12093
|
createdBy: string;
|
|
12094
|
+
finishedAt?: string | null | undefined;
|
|
11632
12095
|
durationMs?: number | undefined;
|
|
11633
12096
|
externalId?: string | undefined;
|
|
11634
12097
|
startedAt?: string | null | undefined;
|
|
11635
|
-
finishedAt?: string | null | undefined;
|
|
11636
12098
|
environment?: Record<string, unknown> | undefined;
|
|
11637
12099
|
revision?: Record<string, unknown> | undefined;
|
|
11638
12100
|
cases?: {
|
|
11639
|
-
status: "undefined" | "unknown" | "
|
|
12101
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11640
12102
|
name: string;
|
|
11641
12103
|
durationMs: number;
|
|
11642
12104
|
id?: string | undefined;
|
|
@@ -11678,4 +12140,4 @@ declare const ApiError: z.ZodObject<{
|
|
|
11678
12140
|
}>;
|
|
11679
12141
|
type ApiError = z.infer<typeof ApiError>;
|
|
11680
12142
|
|
|
11681
|
-
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 };
|