@fabricorg/experiments-api-protocol 0.1.3 → 0.1.5
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 +54 -0
- 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 +51 -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;
|
|
@@ -3784,18 +3988,21 @@ declare const TestRunListInput: z.ZodObject<{
|
|
|
3784
3988
|
status: z.ZodOptional<z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>>;
|
|
3785
3989
|
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other"]>>;
|
|
3786
3990
|
suite: z.ZodOptional<z.ZodString>;
|
|
3991
|
+
targetPack: z.ZodOptional<z.ZodString>;
|
|
3787
3992
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
3788
3993
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
3789
3994
|
}, "strip", z.ZodTypeAny, {
|
|
3790
|
-
status?: "running" | "
|
|
3791
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3995
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3792
3996
|
suite?: string | undefined;
|
|
3997
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
3998
|
+
targetPack?: string | undefined;
|
|
3793
3999
|
limit?: number | undefined;
|
|
3794
4000
|
offset?: number | undefined;
|
|
3795
4001
|
}, {
|
|
3796
|
-
status?: "running" | "
|
|
3797
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
4002
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
3798
4003
|
suite?: string | undefined;
|
|
4004
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
4005
|
+
targetPack?: string | undefined;
|
|
3799
4006
|
limit?: number | undefined;
|
|
3800
4007
|
offset?: number | undefined;
|
|
3801
4008
|
}>;
|
|
@@ -3815,14 +4022,14 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3815
4022
|
skipped: z.ZodNumber;
|
|
3816
4023
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
3817
4024
|
}, "strip", z.ZodTypeAny, {
|
|
3818
|
-
failed: number;
|
|
3819
4025
|
passed: number;
|
|
4026
|
+
failed: number;
|
|
3820
4027
|
skipped: number;
|
|
3821
4028
|
pending: number;
|
|
3822
4029
|
total: number;
|
|
3823
4030
|
}, {
|
|
3824
|
-
failed: number;
|
|
3825
4031
|
passed: number;
|
|
4032
|
+
failed: number;
|
|
3826
4033
|
skipped: number;
|
|
3827
4034
|
total: number;
|
|
3828
4035
|
pending?: number | undefined;
|
|
@@ -3841,7 +4048,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3841
4048
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
3842
4049
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3843
4050
|
}, "strip", z.ZodTypeAny, {
|
|
3844
|
-
status: "undefined" | "unknown" | "
|
|
4051
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3845
4052
|
name: string;
|
|
3846
4053
|
durationMs: number;
|
|
3847
4054
|
tags: string[];
|
|
@@ -3852,7 +4059,7 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3852
4059
|
resourceUrl?: string | undefined;
|
|
3853
4060
|
details?: Record<string, unknown> | undefined;
|
|
3854
4061
|
}, {
|
|
3855
|
-
status: "undefined" | "unknown" | "
|
|
4062
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
3856
4063
|
name: string;
|
|
3857
4064
|
durationMs: number;
|
|
3858
4065
|
id?: string | undefined;
|
|
@@ -3883,16 +4090,16 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3883
4090
|
createdAt: z.ZodString;
|
|
3884
4091
|
updatedAt: z.ZodString;
|
|
3885
4092
|
}, "cases">, "strip", z.ZodTypeAny, {
|
|
3886
|
-
status: "running" | "
|
|
4093
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3887
4094
|
id: string;
|
|
3888
4095
|
createdAt: string;
|
|
3889
4096
|
updatedAt: string;
|
|
4097
|
+
suite: string;
|
|
3890
4098
|
durationMs: number;
|
|
3891
4099
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3892
|
-
suite: string;
|
|
3893
4100
|
summary: {
|
|
3894
|
-
failed: number;
|
|
3895
4101
|
passed: number;
|
|
4102
|
+
failed: number;
|
|
3896
4103
|
skipped: number;
|
|
3897
4104
|
pending: number;
|
|
3898
4105
|
total: number;
|
|
@@ -3906,29 +4113,29 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3906
4113
|
}[];
|
|
3907
4114
|
orgId: string;
|
|
3908
4115
|
createdBy: string;
|
|
4116
|
+
finishedAt?: string | null | undefined;
|
|
3909
4117
|
externalId?: string | undefined;
|
|
3910
4118
|
startedAt?: string | null | undefined;
|
|
3911
|
-
finishedAt?: string | null | undefined;
|
|
3912
4119
|
}, {
|
|
3913
|
-
status: "running" | "
|
|
4120
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3914
4121
|
id: string;
|
|
3915
4122
|
createdAt: string;
|
|
3916
4123
|
updatedAt: string;
|
|
3917
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3918
4124
|
suite: string;
|
|
4125
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3919
4126
|
summary: {
|
|
3920
|
-
failed: number;
|
|
3921
4127
|
passed: number;
|
|
4128
|
+
failed: number;
|
|
3922
4129
|
skipped: number;
|
|
3923
4130
|
total: number;
|
|
3924
4131
|
pending?: number | undefined;
|
|
3925
4132
|
};
|
|
3926
4133
|
orgId: string;
|
|
3927
4134
|
createdBy: string;
|
|
4135
|
+
finishedAt?: string | null | undefined;
|
|
3928
4136
|
durationMs?: number | undefined;
|
|
3929
4137
|
externalId?: string | undefined;
|
|
3930
4138
|
startedAt?: string | null | undefined;
|
|
3931
|
-
finishedAt?: string | null | undefined;
|
|
3932
4139
|
environment?: Record<string, unknown> | undefined;
|
|
3933
4140
|
revision?: Record<string, unknown> | undefined;
|
|
3934
4141
|
artifacts?: {
|
|
@@ -3939,16 +4146,16 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3939
4146
|
}>, "many">;
|
|
3940
4147
|
}, "strip", z.ZodTypeAny, {
|
|
3941
4148
|
runs: {
|
|
3942
|
-
status: "running" | "
|
|
4149
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3943
4150
|
id: string;
|
|
3944
4151
|
createdAt: string;
|
|
3945
4152
|
updatedAt: string;
|
|
4153
|
+
suite: string;
|
|
3946
4154
|
durationMs: number;
|
|
3947
4155
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3948
|
-
suite: string;
|
|
3949
4156
|
summary: {
|
|
3950
|
-
failed: number;
|
|
3951
4157
|
passed: number;
|
|
4158
|
+
failed: number;
|
|
3952
4159
|
skipped: number;
|
|
3953
4160
|
pending: number;
|
|
3954
4161
|
total: number;
|
|
@@ -3962,31 +4169,31 @@ declare const TestRunListResponse: z.ZodObject<{
|
|
|
3962
4169
|
}[];
|
|
3963
4170
|
orgId: string;
|
|
3964
4171
|
createdBy: string;
|
|
4172
|
+
finishedAt?: string | null | undefined;
|
|
3965
4173
|
externalId?: string | undefined;
|
|
3966
4174
|
startedAt?: string | null | undefined;
|
|
3967
|
-
finishedAt?: string | null | undefined;
|
|
3968
4175
|
}[];
|
|
3969
4176
|
}, {
|
|
3970
4177
|
runs: {
|
|
3971
|
-
status: "running" | "
|
|
4178
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
3972
4179
|
id: string;
|
|
3973
4180
|
createdAt: string;
|
|
3974
4181
|
updatedAt: string;
|
|
3975
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3976
4182
|
suite: string;
|
|
4183
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
3977
4184
|
summary: {
|
|
3978
|
-
failed: number;
|
|
3979
4185
|
passed: number;
|
|
4186
|
+
failed: number;
|
|
3980
4187
|
skipped: number;
|
|
3981
4188
|
total: number;
|
|
3982
4189
|
pending?: number | undefined;
|
|
3983
4190
|
};
|
|
3984
4191
|
orgId: string;
|
|
3985
4192
|
createdBy: string;
|
|
4193
|
+
finishedAt?: string | null | undefined;
|
|
3986
4194
|
durationMs?: number | undefined;
|
|
3987
4195
|
externalId?: string | undefined;
|
|
3988
4196
|
startedAt?: string | null | undefined;
|
|
3989
|
-
finishedAt?: string | null | undefined;
|
|
3990
4197
|
environment?: Record<string, unknown> | undefined;
|
|
3991
4198
|
revision?: Record<string, unknown> | undefined;
|
|
3992
4199
|
artifacts?: {
|
|
@@ -10631,6 +10838,264 @@ declare const endpoints: {
|
|
|
10631
10838
|
mutates: false;
|
|
10632
10839
|
requiresRole: "viewer";
|
|
10633
10840
|
};
|
|
10841
|
+
'governance.get': {
|
|
10842
|
+
method: "GET";
|
|
10843
|
+
path: string;
|
|
10844
|
+
params: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
10845
|
+
response: z.ZodObject<{
|
|
10846
|
+
settings: z.ZodObject<{
|
|
10847
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
10848
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
10849
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
10850
|
+
retentionDays: z.ZodNumber;
|
|
10851
|
+
legalHold: z.ZodBoolean;
|
|
10852
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
10853
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10854
|
+
}, "strip", z.ZodTypeAny, {
|
|
10855
|
+
updatedAt: string | null;
|
|
10856
|
+
requireQualityForProduction: boolean;
|
|
10857
|
+
requiredQualitySuites: string[];
|
|
10858
|
+
qualityMaxAgeHours: number;
|
|
10859
|
+
retentionDays: number;
|
|
10860
|
+
legalHold: boolean;
|
|
10861
|
+
updatedBy: string | null;
|
|
10862
|
+
}, {
|
|
10863
|
+
updatedAt: string | null;
|
|
10864
|
+
requireQualityForProduction: boolean;
|
|
10865
|
+
requiredQualitySuites: string[];
|
|
10866
|
+
qualityMaxAgeHours: number;
|
|
10867
|
+
retentionDays: number;
|
|
10868
|
+
legalHold: boolean;
|
|
10869
|
+
updatedBy: string | null;
|
|
10870
|
+
}>;
|
|
10871
|
+
qualityGate: z.ZodObject<{
|
|
10872
|
+
enabled: z.ZodBoolean;
|
|
10873
|
+
passed: z.ZodBoolean;
|
|
10874
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
10875
|
+
suite: z.ZodString;
|
|
10876
|
+
passed: z.ZodBoolean;
|
|
10877
|
+
reason: z.ZodString;
|
|
10878
|
+
runId: z.ZodNullable<z.ZodString>;
|
|
10879
|
+
finishedAt: z.ZodNullable<z.ZodString>;
|
|
10880
|
+
}, "strip", z.ZodTypeAny, {
|
|
10881
|
+
reason: string;
|
|
10882
|
+
passed: boolean;
|
|
10883
|
+
suite: string;
|
|
10884
|
+
runId: string | null;
|
|
10885
|
+
finishedAt: string | null;
|
|
10886
|
+
}, {
|
|
10887
|
+
reason: string;
|
|
10888
|
+
passed: boolean;
|
|
10889
|
+
suite: string;
|
|
10890
|
+
runId: string | null;
|
|
10891
|
+
finishedAt: string | null;
|
|
10892
|
+
}>, "many">;
|
|
10893
|
+
}, "strip", z.ZodTypeAny, {
|
|
10894
|
+
enabled: boolean;
|
|
10895
|
+
passed: boolean;
|
|
10896
|
+
checks: {
|
|
10897
|
+
reason: string;
|
|
10898
|
+
passed: boolean;
|
|
10899
|
+
suite: string;
|
|
10900
|
+
runId: string | null;
|
|
10901
|
+
finishedAt: string | null;
|
|
10902
|
+
}[];
|
|
10903
|
+
}, {
|
|
10904
|
+
enabled: boolean;
|
|
10905
|
+
passed: boolean;
|
|
10906
|
+
checks: {
|
|
10907
|
+
reason: string;
|
|
10908
|
+
passed: boolean;
|
|
10909
|
+
suite: string;
|
|
10910
|
+
runId: string | null;
|
|
10911
|
+
finishedAt: string | null;
|
|
10912
|
+
}[];
|
|
10913
|
+
}>;
|
|
10914
|
+
}, "strip", z.ZodTypeAny, {
|
|
10915
|
+
settings: {
|
|
10916
|
+
updatedAt: string | null;
|
|
10917
|
+
requireQualityForProduction: boolean;
|
|
10918
|
+
requiredQualitySuites: string[];
|
|
10919
|
+
qualityMaxAgeHours: number;
|
|
10920
|
+
retentionDays: number;
|
|
10921
|
+
legalHold: boolean;
|
|
10922
|
+
updatedBy: string | null;
|
|
10923
|
+
};
|
|
10924
|
+
qualityGate: {
|
|
10925
|
+
enabled: boolean;
|
|
10926
|
+
passed: boolean;
|
|
10927
|
+
checks: {
|
|
10928
|
+
reason: string;
|
|
10929
|
+
passed: boolean;
|
|
10930
|
+
suite: string;
|
|
10931
|
+
runId: string | null;
|
|
10932
|
+
finishedAt: string | null;
|
|
10933
|
+
}[];
|
|
10934
|
+
};
|
|
10935
|
+
}, {
|
|
10936
|
+
settings: {
|
|
10937
|
+
updatedAt: string | null;
|
|
10938
|
+
requireQualityForProduction: boolean;
|
|
10939
|
+
requiredQualitySuites: string[];
|
|
10940
|
+
qualityMaxAgeHours: number;
|
|
10941
|
+
retentionDays: number;
|
|
10942
|
+
legalHold: boolean;
|
|
10943
|
+
updatedBy: string | null;
|
|
10944
|
+
};
|
|
10945
|
+
qualityGate: {
|
|
10946
|
+
enabled: boolean;
|
|
10947
|
+
passed: boolean;
|
|
10948
|
+
checks: {
|
|
10949
|
+
reason: string;
|
|
10950
|
+
passed: boolean;
|
|
10951
|
+
suite: string;
|
|
10952
|
+
runId: string | null;
|
|
10953
|
+
finishedAt: string | null;
|
|
10954
|
+
}[];
|
|
10955
|
+
};
|
|
10956
|
+
}>;
|
|
10957
|
+
mutates: false;
|
|
10958
|
+
requiresRole: "viewer";
|
|
10959
|
+
};
|
|
10960
|
+
'governance.update': {
|
|
10961
|
+
method: "POST";
|
|
10962
|
+
path: string;
|
|
10963
|
+
params: z.ZodObject<Pick<{
|
|
10964
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
10965
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
10966
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
10967
|
+
retentionDays: z.ZodNumber;
|
|
10968
|
+
legalHold: z.ZodBoolean;
|
|
10969
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
10970
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10971
|
+
}, "requireQualityForProduction" | "requiredQualitySuites" | "qualityMaxAgeHours" | "retentionDays" | "legalHold">, "strip", z.ZodTypeAny, {
|
|
10972
|
+
requireQualityForProduction: boolean;
|
|
10973
|
+
requiredQualitySuites: string[];
|
|
10974
|
+
qualityMaxAgeHours: number;
|
|
10975
|
+
retentionDays: number;
|
|
10976
|
+
legalHold: boolean;
|
|
10977
|
+
}, {
|
|
10978
|
+
requireQualityForProduction: boolean;
|
|
10979
|
+
requiredQualitySuites: string[];
|
|
10980
|
+
qualityMaxAgeHours: number;
|
|
10981
|
+
retentionDays: number;
|
|
10982
|
+
legalHold: boolean;
|
|
10983
|
+
}>;
|
|
10984
|
+
response: z.ZodObject<{
|
|
10985
|
+
settings: z.ZodObject<{
|
|
10986
|
+
requireQualityForProduction: z.ZodBoolean;
|
|
10987
|
+
requiredQualitySuites: z.ZodArray<z.ZodString, "many">;
|
|
10988
|
+
qualityMaxAgeHours: z.ZodNumber;
|
|
10989
|
+
retentionDays: z.ZodNumber;
|
|
10990
|
+
legalHold: z.ZodBoolean;
|
|
10991
|
+
updatedBy: z.ZodNullable<z.ZodString>;
|
|
10992
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10993
|
+
}, "strip", z.ZodTypeAny, {
|
|
10994
|
+
updatedAt: string | null;
|
|
10995
|
+
requireQualityForProduction: boolean;
|
|
10996
|
+
requiredQualitySuites: string[];
|
|
10997
|
+
qualityMaxAgeHours: number;
|
|
10998
|
+
retentionDays: number;
|
|
10999
|
+
legalHold: boolean;
|
|
11000
|
+
updatedBy: string | null;
|
|
11001
|
+
}, {
|
|
11002
|
+
updatedAt: string | null;
|
|
11003
|
+
requireQualityForProduction: boolean;
|
|
11004
|
+
requiredQualitySuites: string[];
|
|
11005
|
+
qualityMaxAgeHours: number;
|
|
11006
|
+
retentionDays: number;
|
|
11007
|
+
legalHold: boolean;
|
|
11008
|
+
updatedBy: string | null;
|
|
11009
|
+
}>;
|
|
11010
|
+
qualityGate: z.ZodObject<{
|
|
11011
|
+
enabled: z.ZodBoolean;
|
|
11012
|
+
passed: z.ZodBoolean;
|
|
11013
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
11014
|
+
suite: z.ZodString;
|
|
11015
|
+
passed: z.ZodBoolean;
|
|
11016
|
+
reason: z.ZodString;
|
|
11017
|
+
runId: z.ZodNullable<z.ZodString>;
|
|
11018
|
+
finishedAt: z.ZodNullable<z.ZodString>;
|
|
11019
|
+
}, "strip", z.ZodTypeAny, {
|
|
11020
|
+
reason: string;
|
|
11021
|
+
passed: boolean;
|
|
11022
|
+
suite: string;
|
|
11023
|
+
runId: string | null;
|
|
11024
|
+
finishedAt: string | null;
|
|
11025
|
+
}, {
|
|
11026
|
+
reason: string;
|
|
11027
|
+
passed: boolean;
|
|
11028
|
+
suite: string;
|
|
11029
|
+
runId: string | null;
|
|
11030
|
+
finishedAt: string | null;
|
|
11031
|
+
}>, "many">;
|
|
11032
|
+
}, "strip", z.ZodTypeAny, {
|
|
11033
|
+
enabled: boolean;
|
|
11034
|
+
passed: boolean;
|
|
11035
|
+
checks: {
|
|
11036
|
+
reason: string;
|
|
11037
|
+
passed: boolean;
|
|
11038
|
+
suite: string;
|
|
11039
|
+
runId: string | null;
|
|
11040
|
+
finishedAt: string | null;
|
|
11041
|
+
}[];
|
|
11042
|
+
}, {
|
|
11043
|
+
enabled: boolean;
|
|
11044
|
+
passed: boolean;
|
|
11045
|
+
checks: {
|
|
11046
|
+
reason: string;
|
|
11047
|
+
passed: boolean;
|
|
11048
|
+
suite: string;
|
|
11049
|
+
runId: string | null;
|
|
11050
|
+
finishedAt: string | null;
|
|
11051
|
+
}[];
|
|
11052
|
+
}>;
|
|
11053
|
+
}, "strip", z.ZodTypeAny, {
|
|
11054
|
+
settings: {
|
|
11055
|
+
updatedAt: string | null;
|
|
11056
|
+
requireQualityForProduction: boolean;
|
|
11057
|
+
requiredQualitySuites: string[];
|
|
11058
|
+
qualityMaxAgeHours: number;
|
|
11059
|
+
retentionDays: number;
|
|
11060
|
+
legalHold: boolean;
|
|
11061
|
+
updatedBy: string | null;
|
|
11062
|
+
};
|
|
11063
|
+
qualityGate: {
|
|
11064
|
+
enabled: boolean;
|
|
11065
|
+
passed: boolean;
|
|
11066
|
+
checks: {
|
|
11067
|
+
reason: string;
|
|
11068
|
+
passed: boolean;
|
|
11069
|
+
suite: string;
|
|
11070
|
+
runId: string | null;
|
|
11071
|
+
finishedAt: string | null;
|
|
11072
|
+
}[];
|
|
11073
|
+
};
|
|
11074
|
+
}, {
|
|
11075
|
+
settings: {
|
|
11076
|
+
updatedAt: string | null;
|
|
11077
|
+
requireQualityForProduction: boolean;
|
|
11078
|
+
requiredQualitySuites: string[];
|
|
11079
|
+
qualityMaxAgeHours: number;
|
|
11080
|
+
retentionDays: number;
|
|
11081
|
+
legalHold: boolean;
|
|
11082
|
+
updatedBy: string | null;
|
|
11083
|
+
};
|
|
11084
|
+
qualityGate: {
|
|
11085
|
+
enabled: boolean;
|
|
11086
|
+
passed: boolean;
|
|
11087
|
+
checks: {
|
|
11088
|
+
reason: string;
|
|
11089
|
+
passed: boolean;
|
|
11090
|
+
suite: string;
|
|
11091
|
+
runId: string | null;
|
|
11092
|
+
finishedAt: string | null;
|
|
11093
|
+
}[];
|
|
11094
|
+
};
|
|
11095
|
+
}>;
|
|
11096
|
+
mutates: true;
|
|
11097
|
+
requiresRole: "admin";
|
|
11098
|
+
};
|
|
10634
11099
|
'audit.exports.list': {
|
|
10635
11100
|
method: "GET";
|
|
10636
11101
|
path: string;
|
|
@@ -10961,18 +11426,21 @@ declare const endpoints: {
|
|
|
10961
11426
|
status: z.ZodOptional<z.ZodEnum<["running", "passed", "failed", "skipped", "canceled"]>>;
|
|
10962
11427
|
source: z.ZodOptional<z.ZodEnum<["bdd", "live-suite", "junit", "cli", "other"]>>;
|
|
10963
11428
|
suite: z.ZodOptional<z.ZodString>;
|
|
11429
|
+
targetPack: z.ZodOptional<z.ZodString>;
|
|
10964
11430
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
10965
11431
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
10966
11432
|
}, "strip", z.ZodTypeAny, {
|
|
10967
|
-
status?: "running" | "
|
|
10968
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11433
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
10969
11434
|
suite?: string | undefined;
|
|
11435
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11436
|
+
targetPack?: string | undefined;
|
|
10970
11437
|
limit?: number | undefined;
|
|
10971
11438
|
offset?: number | undefined;
|
|
10972
11439
|
}, {
|
|
10973
|
-
status?: "running" | "
|
|
10974
|
-
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11440
|
+
status?: "running" | "passed" | "failed" | "skipped" | "canceled" | undefined;
|
|
10975
11441
|
suite?: string | undefined;
|
|
11442
|
+
source?: "bdd" | "live-suite" | "junit" | "cli" | "other" | undefined;
|
|
11443
|
+
targetPack?: string | undefined;
|
|
10976
11444
|
limit?: number | undefined;
|
|
10977
11445
|
offset?: number | undefined;
|
|
10978
11446
|
}>;
|
|
@@ -10992,14 +11460,14 @@ declare const endpoints: {
|
|
|
10992
11460
|
skipped: z.ZodNumber;
|
|
10993
11461
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
10994
11462
|
}, "strip", z.ZodTypeAny, {
|
|
10995
|
-
failed: number;
|
|
10996
11463
|
passed: number;
|
|
11464
|
+
failed: number;
|
|
10997
11465
|
skipped: number;
|
|
10998
11466
|
pending: number;
|
|
10999
11467
|
total: number;
|
|
11000
11468
|
}, {
|
|
11001
|
-
failed: number;
|
|
11002
11469
|
passed: number;
|
|
11470
|
+
failed: number;
|
|
11003
11471
|
skipped: number;
|
|
11004
11472
|
total: number;
|
|
11005
11473
|
pending?: number | undefined;
|
|
@@ -11018,7 +11486,7 @@ declare const endpoints: {
|
|
|
11018
11486
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11019
11487
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11020
11488
|
}, "strip", z.ZodTypeAny, {
|
|
11021
|
-
status: "undefined" | "unknown" | "
|
|
11489
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11022
11490
|
name: string;
|
|
11023
11491
|
durationMs: number;
|
|
11024
11492
|
tags: string[];
|
|
@@ -11029,7 +11497,7 @@ declare const endpoints: {
|
|
|
11029
11497
|
resourceUrl?: string | undefined;
|
|
11030
11498
|
details?: Record<string, unknown> | undefined;
|
|
11031
11499
|
}, {
|
|
11032
|
-
status: "undefined" | "unknown" | "
|
|
11500
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11033
11501
|
name: string;
|
|
11034
11502
|
durationMs: number;
|
|
11035
11503
|
id?: string | undefined;
|
|
@@ -11060,16 +11528,16 @@ declare const endpoints: {
|
|
|
11060
11528
|
createdAt: z.ZodString;
|
|
11061
11529
|
updatedAt: z.ZodString;
|
|
11062
11530
|
}, "cases">, "strip", z.ZodTypeAny, {
|
|
11063
|
-
status: "running" | "
|
|
11531
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11064
11532
|
id: string;
|
|
11065
11533
|
createdAt: string;
|
|
11066
11534
|
updatedAt: string;
|
|
11535
|
+
suite: string;
|
|
11067
11536
|
durationMs: number;
|
|
11068
11537
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11069
|
-
suite: string;
|
|
11070
11538
|
summary: {
|
|
11071
|
-
failed: number;
|
|
11072
11539
|
passed: number;
|
|
11540
|
+
failed: number;
|
|
11073
11541
|
skipped: number;
|
|
11074
11542
|
pending: number;
|
|
11075
11543
|
total: number;
|
|
@@ -11083,29 +11551,29 @@ declare const endpoints: {
|
|
|
11083
11551
|
}[];
|
|
11084
11552
|
orgId: string;
|
|
11085
11553
|
createdBy: string;
|
|
11554
|
+
finishedAt?: string | null | undefined;
|
|
11086
11555
|
externalId?: string | undefined;
|
|
11087
11556
|
startedAt?: string | null | undefined;
|
|
11088
|
-
finishedAt?: string | null | undefined;
|
|
11089
11557
|
}, {
|
|
11090
|
-
status: "running" | "
|
|
11558
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11091
11559
|
id: string;
|
|
11092
11560
|
createdAt: string;
|
|
11093
11561
|
updatedAt: string;
|
|
11094
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11095
11562
|
suite: string;
|
|
11563
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11096
11564
|
summary: {
|
|
11097
|
-
failed: number;
|
|
11098
11565
|
passed: number;
|
|
11566
|
+
failed: number;
|
|
11099
11567
|
skipped: number;
|
|
11100
11568
|
total: number;
|
|
11101
11569
|
pending?: number | undefined;
|
|
11102
11570
|
};
|
|
11103
11571
|
orgId: string;
|
|
11104
11572
|
createdBy: string;
|
|
11573
|
+
finishedAt?: string | null | undefined;
|
|
11105
11574
|
durationMs?: number | undefined;
|
|
11106
11575
|
externalId?: string | undefined;
|
|
11107
11576
|
startedAt?: string | null | undefined;
|
|
11108
|
-
finishedAt?: string | null | undefined;
|
|
11109
11577
|
environment?: Record<string, unknown> | undefined;
|
|
11110
11578
|
revision?: Record<string, unknown> | undefined;
|
|
11111
11579
|
artifacts?: {
|
|
@@ -11116,16 +11584,16 @@ declare const endpoints: {
|
|
|
11116
11584
|
}>, "many">;
|
|
11117
11585
|
}, "strip", z.ZodTypeAny, {
|
|
11118
11586
|
runs: {
|
|
11119
|
-
status: "running" | "
|
|
11587
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11120
11588
|
id: string;
|
|
11121
11589
|
createdAt: string;
|
|
11122
11590
|
updatedAt: string;
|
|
11591
|
+
suite: string;
|
|
11123
11592
|
durationMs: number;
|
|
11124
11593
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11125
|
-
suite: string;
|
|
11126
11594
|
summary: {
|
|
11127
|
-
failed: number;
|
|
11128
11595
|
passed: number;
|
|
11596
|
+
failed: number;
|
|
11129
11597
|
skipped: number;
|
|
11130
11598
|
pending: number;
|
|
11131
11599
|
total: number;
|
|
@@ -11139,31 +11607,31 @@ declare const endpoints: {
|
|
|
11139
11607
|
}[];
|
|
11140
11608
|
orgId: string;
|
|
11141
11609
|
createdBy: string;
|
|
11610
|
+
finishedAt?: string | null | undefined;
|
|
11142
11611
|
externalId?: string | undefined;
|
|
11143
11612
|
startedAt?: string | null | undefined;
|
|
11144
|
-
finishedAt?: string | null | undefined;
|
|
11145
11613
|
}[];
|
|
11146
11614
|
}, {
|
|
11147
11615
|
runs: {
|
|
11148
|
-
status: "running" | "
|
|
11616
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11149
11617
|
id: string;
|
|
11150
11618
|
createdAt: string;
|
|
11151
11619
|
updatedAt: string;
|
|
11152
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11153
11620
|
suite: string;
|
|
11621
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11154
11622
|
summary: {
|
|
11155
|
-
failed: number;
|
|
11156
11623
|
passed: number;
|
|
11624
|
+
failed: number;
|
|
11157
11625
|
skipped: number;
|
|
11158
11626
|
total: number;
|
|
11159
11627
|
pending?: number | undefined;
|
|
11160
11628
|
};
|
|
11161
11629
|
orgId: string;
|
|
11162
11630
|
createdBy: string;
|
|
11631
|
+
finishedAt?: string | null | undefined;
|
|
11163
11632
|
durationMs?: number | undefined;
|
|
11164
11633
|
externalId?: string | undefined;
|
|
11165
11634
|
startedAt?: string | null | undefined;
|
|
11166
|
-
finishedAt?: string | null | undefined;
|
|
11167
11635
|
environment?: Record<string, unknown> | undefined;
|
|
11168
11636
|
revision?: Record<string, unknown> | undefined;
|
|
11169
11637
|
artifacts?: {
|
|
@@ -11194,14 +11662,14 @@ declare const endpoints: {
|
|
|
11194
11662
|
skipped: z.ZodNumber;
|
|
11195
11663
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11196
11664
|
}, "strip", z.ZodTypeAny, {
|
|
11197
|
-
failed: number;
|
|
11198
11665
|
passed: number;
|
|
11666
|
+
failed: number;
|
|
11199
11667
|
skipped: number;
|
|
11200
11668
|
pending: number;
|
|
11201
11669
|
total: number;
|
|
11202
11670
|
}, {
|
|
11203
|
-
failed: number;
|
|
11204
11671
|
passed: number;
|
|
11672
|
+
failed: number;
|
|
11205
11673
|
skipped: number;
|
|
11206
11674
|
total: number;
|
|
11207
11675
|
pending?: number | undefined;
|
|
@@ -11220,7 +11688,7 @@ declare const endpoints: {
|
|
|
11220
11688
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11221
11689
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11222
11690
|
}, "strip", z.ZodTypeAny, {
|
|
11223
|
-
status: "undefined" | "unknown" | "
|
|
11691
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11224
11692
|
name: string;
|
|
11225
11693
|
durationMs: number;
|
|
11226
11694
|
tags: string[];
|
|
@@ -11231,7 +11699,7 @@ declare const endpoints: {
|
|
|
11231
11699
|
resourceUrl?: string | undefined;
|
|
11232
11700
|
details?: Record<string, unknown> | undefined;
|
|
11233
11701
|
}, {
|
|
11234
|
-
status: "undefined" | "unknown" | "
|
|
11702
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11235
11703
|
name: string;
|
|
11236
11704
|
durationMs: number;
|
|
11237
11705
|
id?: string | undefined;
|
|
@@ -11256,13 +11724,13 @@ declare const endpoints: {
|
|
|
11256
11724
|
mediaType?: string | undefined;
|
|
11257
11725
|
}>, "many">>;
|
|
11258
11726
|
}, "strip", z.ZodTypeAny, {
|
|
11259
|
-
status: "running" | "
|
|
11727
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11728
|
+
suite: string;
|
|
11260
11729
|
durationMs: number;
|
|
11261
11730
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11262
|
-
suite: string;
|
|
11263
11731
|
summary: {
|
|
11264
|
-
failed: number;
|
|
11265
11732
|
passed: number;
|
|
11733
|
+
failed: number;
|
|
11266
11734
|
skipped: number;
|
|
11267
11735
|
pending: number;
|
|
11268
11736
|
total: number;
|
|
@@ -11270,7 +11738,7 @@ declare const endpoints: {
|
|
|
11270
11738
|
environment: Record<string, unknown>;
|
|
11271
11739
|
revision: Record<string, unknown>;
|
|
11272
11740
|
cases: {
|
|
11273
|
-
status: "undefined" | "unknown" | "
|
|
11741
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11274
11742
|
name: string;
|
|
11275
11743
|
durationMs: number;
|
|
11276
11744
|
tags: string[];
|
|
@@ -11286,28 +11754,28 @@ declare const endpoints: {
|
|
|
11286
11754
|
url: string;
|
|
11287
11755
|
mediaType?: string | undefined;
|
|
11288
11756
|
}[];
|
|
11757
|
+
finishedAt?: string | null | undefined;
|
|
11289
11758
|
externalId?: string | undefined;
|
|
11290
11759
|
startedAt?: string | null | undefined;
|
|
11291
|
-
finishedAt?: string | null | undefined;
|
|
11292
11760
|
}, {
|
|
11293
|
-
status: "running" | "
|
|
11294
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11761
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11295
11762
|
suite: string;
|
|
11763
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11296
11764
|
summary: {
|
|
11297
|
-
failed: number;
|
|
11298
11765
|
passed: number;
|
|
11766
|
+
failed: number;
|
|
11299
11767
|
skipped: number;
|
|
11300
11768
|
total: number;
|
|
11301
11769
|
pending?: number | undefined;
|
|
11302
11770
|
};
|
|
11771
|
+
finishedAt?: string | null | undefined;
|
|
11303
11772
|
durationMs?: number | undefined;
|
|
11304
11773
|
externalId?: string | undefined;
|
|
11305
11774
|
startedAt?: string | null | undefined;
|
|
11306
|
-
finishedAt?: string | null | undefined;
|
|
11307
11775
|
environment?: Record<string, unknown> | undefined;
|
|
11308
11776
|
revision?: Record<string, unknown> | undefined;
|
|
11309
11777
|
cases?: {
|
|
11310
|
-
status: "undefined" | "unknown" | "
|
|
11778
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11311
11779
|
name: string;
|
|
11312
11780
|
durationMs: number;
|
|
11313
11781
|
id?: string | undefined;
|
|
@@ -11339,14 +11807,14 @@ declare const endpoints: {
|
|
|
11339
11807
|
skipped: z.ZodNumber;
|
|
11340
11808
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11341
11809
|
}, "strip", z.ZodTypeAny, {
|
|
11342
|
-
failed: number;
|
|
11343
11810
|
passed: number;
|
|
11811
|
+
failed: number;
|
|
11344
11812
|
skipped: number;
|
|
11345
11813
|
pending: number;
|
|
11346
11814
|
total: number;
|
|
11347
11815
|
}, {
|
|
11348
|
-
failed: number;
|
|
11349
11816
|
passed: number;
|
|
11817
|
+
failed: number;
|
|
11350
11818
|
skipped: number;
|
|
11351
11819
|
total: number;
|
|
11352
11820
|
pending?: number | undefined;
|
|
@@ -11365,7 +11833,7 @@ declare const endpoints: {
|
|
|
11365
11833
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11366
11834
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11367
11835
|
}, "strip", z.ZodTypeAny, {
|
|
11368
|
-
status: "undefined" | "unknown" | "
|
|
11836
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11369
11837
|
name: string;
|
|
11370
11838
|
durationMs: number;
|
|
11371
11839
|
tags: string[];
|
|
@@ -11376,7 +11844,7 @@ declare const endpoints: {
|
|
|
11376
11844
|
resourceUrl?: string | undefined;
|
|
11377
11845
|
details?: Record<string, unknown> | undefined;
|
|
11378
11846
|
}, {
|
|
11379
|
-
status: "undefined" | "unknown" | "
|
|
11847
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11380
11848
|
name: string;
|
|
11381
11849
|
durationMs: number;
|
|
11382
11850
|
id?: string | undefined;
|
|
@@ -11407,16 +11875,16 @@ declare const endpoints: {
|
|
|
11407
11875
|
createdAt: z.ZodString;
|
|
11408
11876
|
updatedAt: z.ZodString;
|
|
11409
11877
|
}, "strip", z.ZodTypeAny, {
|
|
11410
|
-
status: "running" | "
|
|
11878
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11411
11879
|
id: string;
|
|
11412
11880
|
createdAt: string;
|
|
11413
11881
|
updatedAt: string;
|
|
11882
|
+
suite: string;
|
|
11414
11883
|
durationMs: number;
|
|
11415
11884
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11416
|
-
suite: string;
|
|
11417
11885
|
summary: {
|
|
11418
|
-
failed: number;
|
|
11419
11886
|
passed: number;
|
|
11887
|
+
failed: number;
|
|
11420
11888
|
skipped: number;
|
|
11421
11889
|
pending: number;
|
|
11422
11890
|
total: number;
|
|
@@ -11424,7 +11892,7 @@ declare const endpoints: {
|
|
|
11424
11892
|
environment: Record<string, unknown>;
|
|
11425
11893
|
revision: Record<string, unknown>;
|
|
11426
11894
|
cases: {
|
|
11427
|
-
status: "undefined" | "unknown" | "
|
|
11895
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11428
11896
|
name: string;
|
|
11429
11897
|
durationMs: number;
|
|
11430
11898
|
tags: string[];
|
|
@@ -11442,33 +11910,33 @@ declare const endpoints: {
|
|
|
11442
11910
|
}[];
|
|
11443
11911
|
orgId: string;
|
|
11444
11912
|
createdBy: string;
|
|
11913
|
+
finishedAt?: string | null | undefined;
|
|
11445
11914
|
externalId?: string | undefined;
|
|
11446
11915
|
startedAt?: string | null | undefined;
|
|
11447
|
-
finishedAt?: string | null | undefined;
|
|
11448
11916
|
}, {
|
|
11449
|
-
status: "running" | "
|
|
11917
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11450
11918
|
id: string;
|
|
11451
11919
|
createdAt: string;
|
|
11452
11920
|
updatedAt: string;
|
|
11453
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11454
11921
|
suite: string;
|
|
11922
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11455
11923
|
summary: {
|
|
11456
|
-
failed: number;
|
|
11457
11924
|
passed: number;
|
|
11925
|
+
failed: number;
|
|
11458
11926
|
skipped: number;
|
|
11459
11927
|
total: number;
|
|
11460
11928
|
pending?: number | undefined;
|
|
11461
11929
|
};
|
|
11462
11930
|
orgId: string;
|
|
11463
11931
|
createdBy: string;
|
|
11932
|
+
finishedAt?: string | null | undefined;
|
|
11464
11933
|
durationMs?: number | undefined;
|
|
11465
11934
|
externalId?: string | undefined;
|
|
11466
11935
|
startedAt?: string | null | undefined;
|
|
11467
|
-
finishedAt?: string | null | undefined;
|
|
11468
11936
|
environment?: Record<string, unknown> | undefined;
|
|
11469
11937
|
revision?: Record<string, unknown> | undefined;
|
|
11470
11938
|
cases?: {
|
|
11471
|
-
status: "undefined" | "unknown" | "
|
|
11939
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11472
11940
|
name: string;
|
|
11473
11941
|
durationMs: number;
|
|
11474
11942
|
id?: string | undefined;
|
|
@@ -11507,14 +11975,14 @@ declare const endpoints: {
|
|
|
11507
11975
|
skipped: z.ZodNumber;
|
|
11508
11976
|
pending: z.ZodDefault<z.ZodNumber>;
|
|
11509
11977
|
}, "strip", z.ZodTypeAny, {
|
|
11510
|
-
failed: number;
|
|
11511
11978
|
passed: number;
|
|
11979
|
+
failed: number;
|
|
11512
11980
|
skipped: number;
|
|
11513
11981
|
pending: number;
|
|
11514
11982
|
total: number;
|
|
11515
11983
|
}, {
|
|
11516
|
-
failed: number;
|
|
11517
11984
|
passed: number;
|
|
11985
|
+
failed: number;
|
|
11518
11986
|
skipped: number;
|
|
11519
11987
|
total: number;
|
|
11520
11988
|
pending?: number | undefined;
|
|
@@ -11533,7 +12001,7 @@ declare const endpoints: {
|
|
|
11533
12001
|
resourceUrl: z.ZodOptional<z.ZodString>;
|
|
11534
12002
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11535
12003
|
}, "strip", z.ZodTypeAny, {
|
|
11536
|
-
status: "undefined" | "unknown" | "
|
|
12004
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11537
12005
|
name: string;
|
|
11538
12006
|
durationMs: number;
|
|
11539
12007
|
tags: string[];
|
|
@@ -11544,7 +12012,7 @@ declare const endpoints: {
|
|
|
11544
12012
|
resourceUrl?: string | undefined;
|
|
11545
12013
|
details?: Record<string, unknown> | undefined;
|
|
11546
12014
|
}, {
|
|
11547
|
-
status: "undefined" | "unknown" | "
|
|
12015
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11548
12016
|
name: string;
|
|
11549
12017
|
durationMs: number;
|
|
11550
12018
|
id?: string | undefined;
|
|
@@ -11575,16 +12043,16 @@ declare const endpoints: {
|
|
|
11575
12043
|
createdAt: z.ZodString;
|
|
11576
12044
|
updatedAt: z.ZodString;
|
|
11577
12045
|
}, "strip", z.ZodTypeAny, {
|
|
11578
|
-
status: "running" | "
|
|
12046
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11579
12047
|
id: string;
|
|
11580
12048
|
createdAt: string;
|
|
11581
12049
|
updatedAt: string;
|
|
12050
|
+
suite: string;
|
|
11582
12051
|
durationMs: number;
|
|
11583
12052
|
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11584
|
-
suite: string;
|
|
11585
12053
|
summary: {
|
|
11586
|
-
failed: number;
|
|
11587
12054
|
passed: number;
|
|
12055
|
+
failed: number;
|
|
11588
12056
|
skipped: number;
|
|
11589
12057
|
pending: number;
|
|
11590
12058
|
total: number;
|
|
@@ -11592,7 +12060,7 @@ declare const endpoints: {
|
|
|
11592
12060
|
environment: Record<string, unknown>;
|
|
11593
12061
|
revision: Record<string, unknown>;
|
|
11594
12062
|
cases: {
|
|
11595
|
-
status: "undefined" | "unknown" | "
|
|
12063
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11596
12064
|
name: string;
|
|
11597
12065
|
durationMs: number;
|
|
11598
12066
|
tags: string[];
|
|
@@ -11610,33 +12078,33 @@ declare const endpoints: {
|
|
|
11610
12078
|
}[];
|
|
11611
12079
|
orgId: string;
|
|
11612
12080
|
createdBy: string;
|
|
12081
|
+
finishedAt?: string | null | undefined;
|
|
11613
12082
|
externalId?: string | undefined;
|
|
11614
12083
|
startedAt?: string | null | undefined;
|
|
11615
|
-
finishedAt?: string | null | undefined;
|
|
11616
12084
|
}, {
|
|
11617
|
-
status: "running" | "
|
|
12085
|
+
status: "running" | "passed" | "failed" | "skipped" | "canceled";
|
|
11618
12086
|
id: string;
|
|
11619
12087
|
createdAt: string;
|
|
11620
12088
|
updatedAt: string;
|
|
11621
|
-
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11622
12089
|
suite: string;
|
|
12090
|
+
source: "bdd" | "live-suite" | "junit" | "cli" | "other";
|
|
11623
12091
|
summary: {
|
|
11624
|
-
failed: number;
|
|
11625
12092
|
passed: number;
|
|
12093
|
+
failed: number;
|
|
11626
12094
|
skipped: number;
|
|
11627
12095
|
total: number;
|
|
11628
12096
|
pending?: number | undefined;
|
|
11629
12097
|
};
|
|
11630
12098
|
orgId: string;
|
|
11631
12099
|
createdBy: string;
|
|
12100
|
+
finishedAt?: string | null | undefined;
|
|
11632
12101
|
durationMs?: number | undefined;
|
|
11633
12102
|
externalId?: string | undefined;
|
|
11634
12103
|
startedAt?: string | null | undefined;
|
|
11635
|
-
finishedAt?: string | null | undefined;
|
|
11636
12104
|
environment?: Record<string, unknown> | undefined;
|
|
11637
12105
|
revision?: Record<string, unknown> | undefined;
|
|
11638
12106
|
cases?: {
|
|
11639
|
-
status: "undefined" | "unknown" | "
|
|
12107
|
+
status: "undefined" | "unknown" | "passed" | "failed" | "skipped" | "pending";
|
|
11640
12108
|
name: string;
|
|
11641
12109
|
durationMs: number;
|
|
11642
12110
|
id?: string | undefined;
|
|
@@ -11678,4 +12146,4 @@ declare const ApiError: z.ZodObject<{
|
|
|
11678
12146
|
}>;
|
|
11679
12147
|
type ApiError = z.infer<typeof ApiError>;
|
|
11680
12148
|
|
|
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 };
|
|
12149
|
+
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 };
|