@sentry/api 0.253.0 → 0.254.1
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.d.ts +2 -2
- package/dist/index.js +60 -0
- package/dist/pagination.gen.d.ts +5 -1
- package/dist/sdk.gen.d.ts +57 -2
- package/dist/types.gen.d.ts +1301 -243
- package/dist/zod.gen.d.ts +5356 -1887
- package/dist/zod.js +2271 -765
- package/package.json +1 -1
package/dist/zod.js
CHANGED
|
@@ -197,6 +197,17 @@ var zCommitSerializerResponse = z.array(z.object({
|
|
|
197
197
|
z.null()
|
|
198
198
|
]),
|
|
199
199
|
dateCreated: z.string().datetime(),
|
|
200
|
+
mergedAt: z.union([
|
|
201
|
+
z.string().datetime(),
|
|
202
|
+
z.null()
|
|
203
|
+
]),
|
|
204
|
+
status: z.enum([
|
|
205
|
+
"merged",
|
|
206
|
+
"open",
|
|
207
|
+
"closed",
|
|
208
|
+
"draft",
|
|
209
|
+
"unknown"
|
|
210
|
+
]).nullable(),
|
|
200
211
|
repository: z.object({
|
|
201
212
|
url: z.union([
|
|
202
213
|
z.string(),
|
|
@@ -1015,6 +1026,10 @@ var zConfigValidator = z.object({
|
|
|
1015
1026
|
z.null()
|
|
1016
1027
|
]).optional()
|
|
1017
1028
|
});
|
|
1029
|
+
var zCreateExternalIssueRequest = z.object({
|
|
1030
|
+
title: z.string(),
|
|
1031
|
+
description: z.string().optional()
|
|
1032
|
+
});
|
|
1018
1033
|
var zCreateOrganizationReleaseResponse = z.object({
|
|
1019
1034
|
ref: z.union([
|
|
1020
1035
|
z.string(),
|
|
@@ -1636,7 +1651,7 @@ var zDashboardDetailsModel = z.object({
|
|
|
1636
1651
|
z.string(),
|
|
1637
1652
|
z.null()
|
|
1638
1653
|
]),
|
|
1639
|
-
legendType: z.enum(["default", "breakdown"]),
|
|
1654
|
+
legendType: z.enum(["default", "breakdown"]).nullable(),
|
|
1640
1655
|
datasetSource: z.union([
|
|
1641
1656
|
z.string(),
|
|
1642
1657
|
z.null()
|
|
@@ -2086,6 +2101,7 @@ var zDetailedProject = z.object({
|
|
|
2086
2101
|
verifySSL: z.boolean(),
|
|
2087
2102
|
scrubIPAddresses: z.boolean(),
|
|
2088
2103
|
scrapeJavaScript: z.boolean(),
|
|
2104
|
+
enableAutoReleaseCreation: z.boolean(),
|
|
2089
2105
|
highlightTags: z.array(z.string()),
|
|
2090
2106
|
highlightContext: z.record(z.unknown()),
|
|
2091
2107
|
highlightPreset: z.object({
|
|
@@ -2553,16 +2569,81 @@ var zEventIdLookupResponse = z.object({
|
|
|
2553
2569
|
z.string(),
|
|
2554
2570
|
z.null()
|
|
2555
2571
|
]),
|
|
2556
|
-
sdk: z.
|
|
2572
|
+
sdk: z.union([
|
|
2573
|
+
z.object({
|
|
2574
|
+
name: z.union([
|
|
2575
|
+
z.string(),
|
|
2576
|
+
z.null()
|
|
2577
|
+
]),
|
|
2578
|
+
version: z.union([
|
|
2579
|
+
z.string(),
|
|
2580
|
+
z.null()
|
|
2581
|
+
])
|
|
2582
|
+
}),
|
|
2583
|
+
z.null()
|
|
2584
|
+
]),
|
|
2557
2585
|
context: z.union([
|
|
2558
2586
|
z.record(z.unknown()),
|
|
2559
2587
|
z.null()
|
|
2560
2588
|
]),
|
|
2561
2589
|
packages: z.record(z.unknown()),
|
|
2562
|
-
type: z.
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2590
|
+
type: z.enum([
|
|
2591
|
+
"default",
|
|
2592
|
+
"error",
|
|
2593
|
+
"csp",
|
|
2594
|
+
"nel",
|
|
2595
|
+
"hpkp",
|
|
2596
|
+
"expectct",
|
|
2597
|
+
"expectstaple",
|
|
2598
|
+
"transaction",
|
|
2599
|
+
"generic",
|
|
2600
|
+
"feedback"
|
|
2601
|
+
]),
|
|
2602
|
+
metadata: z.record(z.unknown()),
|
|
2603
|
+
errors: z.array(z.object({
|
|
2604
|
+
type: z.string(),
|
|
2605
|
+
message: z.string(),
|
|
2606
|
+
data: z.record(z.unknown())
|
|
2607
|
+
})),
|
|
2608
|
+
occurrence: z.union([
|
|
2609
|
+
z.object({
|
|
2610
|
+
id: z.string(),
|
|
2611
|
+
projectId: z.number().int(),
|
|
2612
|
+
eventId: z.string(),
|
|
2613
|
+
fingerprint: z.array(z.string()),
|
|
2614
|
+
issueTitle: z.string(),
|
|
2615
|
+
subtitle: z.string(),
|
|
2616
|
+
resourceId: z.union([
|
|
2617
|
+
z.string(),
|
|
2618
|
+
z.null()
|
|
2619
|
+
]),
|
|
2620
|
+
evidenceData: z.record(z.unknown()),
|
|
2621
|
+
evidenceDisplay: z.array(z.object({
|
|
2622
|
+
name: z.string(),
|
|
2623
|
+
value: z.string(),
|
|
2624
|
+
important: z.boolean()
|
|
2625
|
+
})),
|
|
2626
|
+
type: z.number().int(),
|
|
2627
|
+
detectionTime: z.number(),
|
|
2628
|
+
level: z.union([
|
|
2629
|
+
z.string(),
|
|
2630
|
+
z.null()
|
|
2631
|
+
]),
|
|
2632
|
+
culprit: z.union([
|
|
2633
|
+
z.string(),
|
|
2634
|
+
z.null()
|
|
2635
|
+
]),
|
|
2636
|
+
assignee: z.union([
|
|
2637
|
+
z.string(),
|
|
2638
|
+
z.null()
|
|
2639
|
+
]),
|
|
2640
|
+
priority: z.union([
|
|
2641
|
+
z.number().int(),
|
|
2642
|
+
z.null()
|
|
2643
|
+
])
|
|
2644
|
+
}),
|
|
2645
|
+
z.null()
|
|
2646
|
+
]),
|
|
2566
2647
|
_meta: z.record(z.unknown()),
|
|
2567
2648
|
crashFile: z.union([
|
|
2568
2649
|
z.string(),
|
|
@@ -2574,11 +2655,32 @@ var zEventIdLookupResponse = z.object({
|
|
|
2574
2655
|
]).optional(),
|
|
2575
2656
|
dateCreated: z.string().datetime().optional(),
|
|
2576
2657
|
fingerprints: z.array(z.string()).optional(),
|
|
2577
|
-
groupingConfig: z.
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2658
|
+
groupingConfig: z.object({
|
|
2659
|
+
id: z.string(),
|
|
2660
|
+
enhancements: z.string()
|
|
2661
|
+
}).optional(),
|
|
2662
|
+
startTimestamp: z.number().optional(),
|
|
2663
|
+
endTimestamp: z.number().optional(),
|
|
2664
|
+
measurements: z.union([
|
|
2665
|
+
z.record(z.object({
|
|
2666
|
+
value: z.number(),
|
|
2667
|
+
unit: z.union([
|
|
2668
|
+
z.string(),
|
|
2669
|
+
z.null()
|
|
2670
|
+
])
|
|
2671
|
+
})),
|
|
2672
|
+
z.null()
|
|
2673
|
+
]).optional(),
|
|
2674
|
+
breakdowns: z.union([
|
|
2675
|
+
z.record(z.record(z.object({
|
|
2676
|
+
value: z.number(),
|
|
2677
|
+
unit: z.union([
|
|
2678
|
+
z.string(),
|
|
2679
|
+
z.null()
|
|
2680
|
+
])
|
|
2681
|
+
}))),
|
|
2682
|
+
z.null()
|
|
2683
|
+
]).optional()
|
|
2582
2684
|
})
|
|
2583
2685
|
});
|
|
2584
2686
|
var zExplorerAutofixRequest = z.object({
|
|
@@ -2603,7 +2705,8 @@ var zExplorerAutofixRequest = z.object({
|
|
|
2603
2705
|
user_context: z.string().max(1000).optional(),
|
|
2604
2706
|
repo_name: z.string().optional(),
|
|
2605
2707
|
insert_index: z.number().int().optional(),
|
|
2606
|
-
referrer: z.string().optional()
|
|
2708
|
+
referrer: z.string().optional(),
|
|
2709
|
+
enable_bash_tools: z.boolean().optional().default(false)
|
|
2607
2710
|
});
|
|
2608
2711
|
var zExternalActor = z.object({
|
|
2609
2712
|
externalId: z.string().optional(),
|
|
@@ -2614,6 +2717,13 @@ var zExternalActor = z.object({
|
|
|
2614
2717
|
externalName: z.string(),
|
|
2615
2718
|
integrationId: z.string()
|
|
2616
2719
|
});
|
|
2720
|
+
var zExternalIssueLinkResponse = z.object({
|
|
2721
|
+
id: z.number().int(),
|
|
2722
|
+
key: z.string(),
|
|
2723
|
+
url: z.string(),
|
|
2724
|
+
integrationId: z.number().int(),
|
|
2725
|
+
displayName: z.string()
|
|
2726
|
+
});
|
|
2617
2727
|
var zExternalTeam = z.object({
|
|
2618
2728
|
external_name: z.string(),
|
|
2619
2729
|
provider: z.enum([
|
|
@@ -2800,6 +2910,10 @@ var zGetReplay = z.object({
|
|
|
2800
2910
|
z.array(z.string()),
|
|
2801
2911
|
z.null()
|
|
2802
2912
|
]).optional(),
|
|
2913
|
+
segment_names: z.union([
|
|
2914
|
+
z.array(z.string()),
|
|
2915
|
+
z.null()
|
|
2916
|
+
]).optional(),
|
|
2803
2917
|
clicks: z.array(z.record(z.unknown())).optional(),
|
|
2804
2918
|
count_dead_clicks: z.union([
|
|
2805
2919
|
z.number().int(),
|
|
@@ -2899,6 +3013,20 @@ var zGroupDetailsResponse = z.object({
|
|
|
2899
3013
|
z.string().datetime(),
|
|
2900
3014
|
z.null()
|
|
2901
3015
|
]).optional(),
|
|
3016
|
+
derivedData: z.object({
|
|
3017
|
+
blocker: z.string(),
|
|
3018
|
+
progress: z.string(),
|
|
3019
|
+
status: z.string(),
|
|
3020
|
+
viewCount: z.number().int(),
|
|
3021
|
+
hasOpenFixPr: z.boolean(),
|
|
3022
|
+
isAssigned: z.boolean(),
|
|
3023
|
+
hasRootCause: z.boolean(),
|
|
3024
|
+
lastCompletedAutofixStep: z.string(),
|
|
3025
|
+
lastProgressedAt: z.union([
|
|
3026
|
+
z.string().datetime(),
|
|
3027
|
+
z.null()
|
|
3028
|
+
])
|
|
3029
|
+
}).optional(),
|
|
2902
3030
|
id: z.string(),
|
|
2903
3031
|
shareId: z.union([
|
|
2904
3032
|
z.string(),
|
|
@@ -2915,10 +3043,24 @@ var zGroupDetailsResponse = z.object({
|
|
|
2915
3043
|
z.string(),
|
|
2916
3044
|
z.null()
|
|
2917
3045
|
]),
|
|
2918
|
-
level: z.
|
|
2919
|
-
|
|
3046
|
+
level: z.enum([
|
|
3047
|
+
"sample",
|
|
3048
|
+
"debug",
|
|
3049
|
+
"info",
|
|
3050
|
+
"warning",
|
|
3051
|
+
"error",
|
|
3052
|
+
"fatal",
|
|
3053
|
+
"unknown"
|
|
3054
|
+
]),
|
|
3055
|
+
status: z.enum([
|
|
3056
|
+
"resolved",
|
|
3057
|
+
"ignored",
|
|
3058
|
+
"pending_deletion",
|
|
3059
|
+
"pending_merge",
|
|
3060
|
+
"reprocessing",
|
|
3061
|
+
"unresolved"
|
|
3062
|
+
]),
|
|
2920
3063
|
statusDetails: z.object({
|
|
2921
|
-
autoResolved: z.boolean().optional(),
|
|
2922
3064
|
ignoreCount: z.number().int().optional(),
|
|
2923
3065
|
ignoreUntil: z.string().datetime().optional(),
|
|
2924
3066
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -2984,21 +3126,34 @@ var zGroupDetailsResponse = z.object({
|
|
|
2984
3126
|
inRelease: z.string().optional(),
|
|
2985
3127
|
inCommit: z.string().optional(),
|
|
2986
3128
|
pendingEvents: z.number().int().optional(),
|
|
2987
|
-
info: z.
|
|
3129
|
+
info: z.union([
|
|
3130
|
+
z.object({
|
|
3131
|
+
dateCreated: z.string(),
|
|
3132
|
+
syncCount: z.number().int(),
|
|
3133
|
+
totalEvents: z.number().int()
|
|
3134
|
+
}),
|
|
3135
|
+
z.null()
|
|
3136
|
+
]).optional()
|
|
2988
3137
|
}),
|
|
2989
|
-
substatus: z.
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
3138
|
+
substatus: z.enum([
|
|
3139
|
+
"archived_until_escalating",
|
|
3140
|
+
"archived_until_condition_met",
|
|
3141
|
+
"archived_forever",
|
|
3142
|
+
"escalating",
|
|
3143
|
+
"ongoing",
|
|
3144
|
+
"regressed",
|
|
3145
|
+
"new"
|
|
3146
|
+
]).nullable(),
|
|
2993
3147
|
isPublic: z.boolean(),
|
|
2994
3148
|
platform: z.union([
|
|
2995
3149
|
z.string(),
|
|
2996
3150
|
z.null()
|
|
2997
3151
|
]),
|
|
2998
|
-
priority: z.
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3152
|
+
priority: z.enum([
|
|
3153
|
+
"low",
|
|
3154
|
+
"medium",
|
|
3155
|
+
"high"
|
|
3156
|
+
]).nullable(),
|
|
3002
3157
|
priorityLockedAt: z.union([
|
|
3003
3158
|
z.string().datetime(),
|
|
3004
3159
|
z.null()
|
|
@@ -3024,7 +3179,18 @@ var zGroupDetailsResponse = z.object({
|
|
|
3024
3179
|
z.null()
|
|
3025
3180
|
])
|
|
3026
3181
|
}),
|
|
3027
|
-
type: z.
|
|
3182
|
+
type: z.enum([
|
|
3183
|
+
"default",
|
|
3184
|
+
"error",
|
|
3185
|
+
"csp",
|
|
3186
|
+
"nel",
|
|
3187
|
+
"hpkp",
|
|
3188
|
+
"expectct",
|
|
3189
|
+
"expectstaple",
|
|
3190
|
+
"transaction",
|
|
3191
|
+
"generic",
|
|
3192
|
+
"feedback"
|
|
3193
|
+
]),
|
|
3028
3194
|
issueType: z.string(),
|
|
3029
3195
|
issueCategory: z.string(),
|
|
3030
3196
|
metadata: z.record(z.unknown()),
|
|
@@ -3183,10 +3349,7 @@ var zGroupEventsResponseDict = z.array(z.object({
|
|
|
3183
3349
|
z.string(),
|
|
3184
3350
|
z.null()
|
|
3185
3351
|
]),
|
|
3186
|
-
metadata: z.
|
|
3187
|
-
z.record(z.unknown()),
|
|
3188
|
-
z.null()
|
|
3189
|
-
])
|
|
3352
|
+
metadata: z.record(z.unknown())
|
|
3190
3353
|
}));
|
|
3191
3354
|
var zGroupExternalIssueResponse = z.array(z.object({
|
|
3192
3355
|
id: z.string(),
|
|
@@ -3271,16 +3434,81 @@ var zGroupHashesResponse = z.array(z.object({
|
|
|
3271
3434
|
z.string(),
|
|
3272
3435
|
z.null()
|
|
3273
3436
|
]),
|
|
3274
|
-
sdk: z.
|
|
3437
|
+
sdk: z.union([
|
|
3438
|
+
z.object({
|
|
3439
|
+
name: z.union([
|
|
3440
|
+
z.string(),
|
|
3441
|
+
z.null()
|
|
3442
|
+
]),
|
|
3443
|
+
version: z.union([
|
|
3444
|
+
z.string(),
|
|
3445
|
+
z.null()
|
|
3446
|
+
])
|
|
3447
|
+
}),
|
|
3448
|
+
z.null()
|
|
3449
|
+
]),
|
|
3275
3450
|
context: z.union([
|
|
3276
3451
|
z.record(z.unknown()),
|
|
3277
3452
|
z.null()
|
|
3278
3453
|
]),
|
|
3279
3454
|
packages: z.record(z.unknown()),
|
|
3280
|
-
type: z.
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3455
|
+
type: z.enum([
|
|
3456
|
+
"default",
|
|
3457
|
+
"error",
|
|
3458
|
+
"csp",
|
|
3459
|
+
"nel",
|
|
3460
|
+
"hpkp",
|
|
3461
|
+
"expectct",
|
|
3462
|
+
"expectstaple",
|
|
3463
|
+
"transaction",
|
|
3464
|
+
"generic",
|
|
3465
|
+
"feedback"
|
|
3466
|
+
]),
|
|
3467
|
+
metadata: z.record(z.unknown()),
|
|
3468
|
+
errors: z.array(z.object({
|
|
3469
|
+
type: z.string(),
|
|
3470
|
+
message: z.string(),
|
|
3471
|
+
data: z.record(z.unknown())
|
|
3472
|
+
})),
|
|
3473
|
+
occurrence: z.union([
|
|
3474
|
+
z.object({
|
|
3475
|
+
id: z.string(),
|
|
3476
|
+
projectId: z.number().int(),
|
|
3477
|
+
eventId: z.string(),
|
|
3478
|
+
fingerprint: z.array(z.string()),
|
|
3479
|
+
issueTitle: z.string(),
|
|
3480
|
+
subtitle: z.string(),
|
|
3481
|
+
resourceId: z.union([
|
|
3482
|
+
z.string(),
|
|
3483
|
+
z.null()
|
|
3484
|
+
]),
|
|
3485
|
+
evidenceData: z.record(z.unknown()),
|
|
3486
|
+
evidenceDisplay: z.array(z.object({
|
|
3487
|
+
name: z.string(),
|
|
3488
|
+
value: z.string(),
|
|
3489
|
+
important: z.boolean()
|
|
3490
|
+
})),
|
|
3491
|
+
type: z.number().int(),
|
|
3492
|
+
detectionTime: z.number(),
|
|
3493
|
+
level: z.union([
|
|
3494
|
+
z.string(),
|
|
3495
|
+
z.null()
|
|
3496
|
+
]),
|
|
3497
|
+
culprit: z.union([
|
|
3498
|
+
z.string(),
|
|
3499
|
+
z.null()
|
|
3500
|
+
]),
|
|
3501
|
+
assignee: z.union([
|
|
3502
|
+
z.string(),
|
|
3503
|
+
z.null()
|
|
3504
|
+
]),
|
|
3505
|
+
priority: z.union([
|
|
3506
|
+
z.number().int(),
|
|
3507
|
+
z.null()
|
|
3508
|
+
])
|
|
3509
|
+
}),
|
|
3510
|
+
z.null()
|
|
3511
|
+
]),
|
|
3284
3512
|
_meta: z.record(z.unknown()),
|
|
3285
3513
|
crashFile: z.union([
|
|
3286
3514
|
z.string(),
|
|
@@ -3292,11 +3520,32 @@ var zGroupHashesResponse = z.array(z.object({
|
|
|
3292
3520
|
]).optional(),
|
|
3293
3521
|
dateCreated: z.string().datetime().optional(),
|
|
3294
3522
|
fingerprints: z.array(z.string()).optional(),
|
|
3295
|
-
groupingConfig: z.
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3523
|
+
groupingConfig: z.object({
|
|
3524
|
+
id: z.string(),
|
|
3525
|
+
enhancements: z.string()
|
|
3526
|
+
}).optional(),
|
|
3527
|
+
startTimestamp: z.number().optional(),
|
|
3528
|
+
endTimestamp: z.number().optional(),
|
|
3529
|
+
measurements: z.union([
|
|
3530
|
+
z.record(z.object({
|
|
3531
|
+
value: z.number(),
|
|
3532
|
+
unit: z.union([
|
|
3533
|
+
z.string(),
|
|
3534
|
+
z.null()
|
|
3535
|
+
])
|
|
3536
|
+
})),
|
|
3537
|
+
z.null()
|
|
3538
|
+
]).optional(),
|
|
3539
|
+
breakdowns: z.union([
|
|
3540
|
+
z.record(z.record(z.object({
|
|
3541
|
+
value: z.number(),
|
|
3542
|
+
unit: z.union([
|
|
3543
|
+
z.string(),
|
|
3544
|
+
z.null()
|
|
3545
|
+
])
|
|
3546
|
+
}))),
|
|
3547
|
+
z.null()
|
|
3548
|
+
]).optional()
|
|
3300
3549
|
}),
|
|
3301
3550
|
z.object({
|
|
3302
3551
|
id: z.string(),
|
|
@@ -3364,10 +3613,7 @@ var zGroupHashesResponse = z.array(z.object({
|
|
|
3364
3613
|
z.string(),
|
|
3365
3614
|
z.null()
|
|
3366
3615
|
]),
|
|
3367
|
-
metadata: z.
|
|
3368
|
-
z.record(z.unknown()),
|
|
3369
|
-
z.null()
|
|
3370
|
-
])
|
|
3616
|
+
metadata: z.record(z.unknown())
|
|
3371
3617
|
}),
|
|
3372
3618
|
z.union([
|
|
3373
3619
|
z.record(z.unknown()),
|
|
@@ -3392,6 +3638,20 @@ var zGroupUpdateResponse = z.object({
|
|
|
3392
3638
|
z.string().datetime(),
|
|
3393
3639
|
z.null()
|
|
3394
3640
|
]).optional(),
|
|
3641
|
+
derivedData: z.object({
|
|
3642
|
+
blocker: z.string(),
|
|
3643
|
+
progress: z.string(),
|
|
3644
|
+
status: z.string(),
|
|
3645
|
+
viewCount: z.number().int(),
|
|
3646
|
+
hasOpenFixPr: z.boolean(),
|
|
3647
|
+
isAssigned: z.boolean(),
|
|
3648
|
+
hasRootCause: z.boolean(),
|
|
3649
|
+
lastCompletedAutofixStep: z.string(),
|
|
3650
|
+
lastProgressedAt: z.union([
|
|
3651
|
+
z.string().datetime(),
|
|
3652
|
+
z.null()
|
|
3653
|
+
])
|
|
3654
|
+
}).optional(),
|
|
3395
3655
|
id: z.string(),
|
|
3396
3656
|
shareId: z.union([
|
|
3397
3657
|
z.string(),
|
|
@@ -3408,10 +3668,24 @@ var zGroupUpdateResponse = z.object({
|
|
|
3408
3668
|
z.string(),
|
|
3409
3669
|
z.null()
|
|
3410
3670
|
]),
|
|
3411
|
-
level: z.
|
|
3412
|
-
|
|
3671
|
+
level: z.enum([
|
|
3672
|
+
"sample",
|
|
3673
|
+
"debug",
|
|
3674
|
+
"info",
|
|
3675
|
+
"warning",
|
|
3676
|
+
"error",
|
|
3677
|
+
"fatal",
|
|
3678
|
+
"unknown"
|
|
3679
|
+
]),
|
|
3680
|
+
status: z.enum([
|
|
3681
|
+
"resolved",
|
|
3682
|
+
"ignored",
|
|
3683
|
+
"pending_deletion",
|
|
3684
|
+
"pending_merge",
|
|
3685
|
+
"reprocessing",
|
|
3686
|
+
"unresolved"
|
|
3687
|
+
]),
|
|
3413
3688
|
statusDetails: z.object({
|
|
3414
|
-
autoResolved: z.boolean().optional(),
|
|
3415
3689
|
ignoreCount: z.number().int().optional(),
|
|
3416
3690
|
ignoreUntil: z.string().datetime().optional(),
|
|
3417
3691
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -3477,21 +3751,34 @@ var zGroupUpdateResponse = z.object({
|
|
|
3477
3751
|
inRelease: z.string().optional(),
|
|
3478
3752
|
inCommit: z.string().optional(),
|
|
3479
3753
|
pendingEvents: z.number().int().optional(),
|
|
3480
|
-
info: z.
|
|
3754
|
+
info: z.union([
|
|
3755
|
+
z.object({
|
|
3756
|
+
dateCreated: z.string(),
|
|
3757
|
+
syncCount: z.number().int(),
|
|
3758
|
+
totalEvents: z.number().int()
|
|
3759
|
+
}),
|
|
3760
|
+
z.null()
|
|
3761
|
+
]).optional()
|
|
3481
3762
|
}),
|
|
3482
|
-
substatus: z.
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3763
|
+
substatus: z.enum([
|
|
3764
|
+
"archived_until_escalating",
|
|
3765
|
+
"archived_until_condition_met",
|
|
3766
|
+
"archived_forever",
|
|
3767
|
+
"escalating",
|
|
3768
|
+
"ongoing",
|
|
3769
|
+
"regressed",
|
|
3770
|
+
"new"
|
|
3771
|
+
]).nullable(),
|
|
3486
3772
|
isPublic: z.boolean(),
|
|
3487
3773
|
platform: z.union([
|
|
3488
3774
|
z.string(),
|
|
3489
3775
|
z.null()
|
|
3490
3776
|
]),
|
|
3491
|
-
priority: z.
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3777
|
+
priority: z.enum([
|
|
3778
|
+
"low",
|
|
3779
|
+
"medium",
|
|
3780
|
+
"high"
|
|
3781
|
+
]).nullable(),
|
|
3495
3782
|
priorityLockedAt: z.union([
|
|
3496
3783
|
z.string().datetime(),
|
|
3497
3784
|
z.null()
|
|
@@ -3517,7 +3804,18 @@ var zGroupUpdateResponse = z.object({
|
|
|
3517
3804
|
z.null()
|
|
3518
3805
|
])
|
|
3519
3806
|
}),
|
|
3520
|
-
type: z.
|
|
3807
|
+
type: z.enum([
|
|
3808
|
+
"default",
|
|
3809
|
+
"error",
|
|
3810
|
+
"csp",
|
|
3811
|
+
"nel",
|
|
3812
|
+
"hpkp",
|
|
3813
|
+
"expectct",
|
|
3814
|
+
"expectstaple",
|
|
3815
|
+
"transaction",
|
|
3816
|
+
"generic",
|
|
3817
|
+
"feedback"
|
|
3818
|
+
]),
|
|
3521
3819
|
issueType: z.string(),
|
|
3522
3820
|
issueCategory: z.string(),
|
|
3523
3821
|
metadata: z.record(z.unknown()),
|
|
@@ -3705,6 +4003,42 @@ var zInstallInfoResponse = z.object({
|
|
|
3705
4003
|
z.null()
|
|
3706
4004
|
])
|
|
3707
4005
|
});
|
|
4006
|
+
var zIntegrationIssueConfigResponse = z.object({
|
|
4007
|
+
id: z.string(),
|
|
4008
|
+
name: z.string(),
|
|
4009
|
+
icon: z.union([
|
|
4010
|
+
z.string(),
|
|
4011
|
+
z.null()
|
|
4012
|
+
]),
|
|
4013
|
+
domainName: z.union([
|
|
4014
|
+
z.string(),
|
|
4015
|
+
z.null()
|
|
4016
|
+
]),
|
|
4017
|
+
accountType: z.union([
|
|
4018
|
+
z.string(),
|
|
4019
|
+
z.null()
|
|
4020
|
+
]),
|
|
4021
|
+
scopes: z.union([
|
|
4022
|
+
z.array(z.string()),
|
|
4023
|
+
z.null()
|
|
4024
|
+
]),
|
|
4025
|
+
outOfDate: z.union([
|
|
4026
|
+
z.boolean(),
|
|
4027
|
+
z.null()
|
|
4028
|
+
]),
|
|
4029
|
+
status: z.string(),
|
|
4030
|
+
provider: z.object({
|
|
4031
|
+
key: z.string(),
|
|
4032
|
+
slug: z.string(),
|
|
4033
|
+
name: z.string(),
|
|
4034
|
+
canAdd: z.boolean(),
|
|
4035
|
+
canDisable: z.boolean(),
|
|
4036
|
+
features: z.array(z.string()),
|
|
4037
|
+
aspects: z.record(z.unknown())
|
|
4038
|
+
}),
|
|
4039
|
+
linkIssueConfig: z.array(z.record(z.unknown())).optional(),
|
|
4040
|
+
createIssueConfig: z.array(z.record(z.unknown())).optional()
|
|
4041
|
+
});
|
|
3708
4042
|
var zIssueEventDetailsResponse = z.object({
|
|
3709
4043
|
id: z.string(),
|
|
3710
4044
|
groupID: z.union([
|
|
@@ -3778,32 +4112,118 @@ var zIssueEventDetailsResponse = z.object({
|
|
|
3778
4112
|
z.string(),
|
|
3779
4113
|
z.null()
|
|
3780
4114
|
]),
|
|
3781
|
-
sdk: z.
|
|
4115
|
+
sdk: z.union([
|
|
4116
|
+
z.object({
|
|
4117
|
+
name: z.union([
|
|
4118
|
+
z.string(),
|
|
4119
|
+
z.null()
|
|
4120
|
+
]),
|
|
4121
|
+
version: z.union([
|
|
4122
|
+
z.string(),
|
|
4123
|
+
z.null()
|
|
4124
|
+
])
|
|
4125
|
+
}),
|
|
4126
|
+
z.null()
|
|
4127
|
+
]),
|
|
3782
4128
|
context: z.union([
|
|
3783
4129
|
z.record(z.unknown()),
|
|
3784
4130
|
z.null()
|
|
3785
4131
|
]),
|
|
3786
4132
|
packages: z.record(z.unknown()),
|
|
3787
|
-
type: z.
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
4133
|
+
type: z.enum([
|
|
4134
|
+
"default",
|
|
4135
|
+
"error",
|
|
4136
|
+
"csp",
|
|
4137
|
+
"nel",
|
|
4138
|
+
"hpkp",
|
|
4139
|
+
"expectct",
|
|
4140
|
+
"expectstaple",
|
|
4141
|
+
"transaction",
|
|
4142
|
+
"generic",
|
|
4143
|
+
"feedback"
|
|
4144
|
+
]),
|
|
4145
|
+
metadata: z.record(z.unknown()),
|
|
4146
|
+
errors: z.array(z.object({
|
|
4147
|
+
type: z.string(),
|
|
4148
|
+
message: z.string(),
|
|
4149
|
+
data: z.record(z.unknown())
|
|
4150
|
+
})),
|
|
4151
|
+
occurrence: z.union([
|
|
4152
|
+
z.object({
|
|
4153
|
+
id: z.string(),
|
|
4154
|
+
projectId: z.number().int(),
|
|
4155
|
+
eventId: z.string(),
|
|
4156
|
+
fingerprint: z.array(z.string()),
|
|
4157
|
+
issueTitle: z.string(),
|
|
4158
|
+
subtitle: z.string(),
|
|
4159
|
+
resourceId: z.union([
|
|
4160
|
+
z.string(),
|
|
4161
|
+
z.null()
|
|
4162
|
+
]),
|
|
4163
|
+
evidenceData: z.record(z.unknown()),
|
|
4164
|
+
evidenceDisplay: z.array(z.object({
|
|
4165
|
+
name: z.string(),
|
|
4166
|
+
value: z.string(),
|
|
4167
|
+
important: z.boolean()
|
|
4168
|
+
})),
|
|
4169
|
+
type: z.number().int(),
|
|
4170
|
+
detectionTime: z.number(),
|
|
4171
|
+
level: z.union([
|
|
4172
|
+
z.string(),
|
|
4173
|
+
z.null()
|
|
4174
|
+
]),
|
|
4175
|
+
culprit: z.union([
|
|
4176
|
+
z.string(),
|
|
4177
|
+
z.null()
|
|
4178
|
+
]),
|
|
4179
|
+
assignee: z.union([
|
|
4180
|
+
z.string(),
|
|
4181
|
+
z.null()
|
|
4182
|
+
]),
|
|
4183
|
+
priority: z.union([
|
|
4184
|
+
z.number().int(),
|
|
4185
|
+
z.null()
|
|
4186
|
+
])
|
|
4187
|
+
}),
|
|
4188
|
+
z.null()
|
|
4189
|
+
]),
|
|
4190
|
+
_meta: z.record(z.unknown()),
|
|
4191
|
+
crashFile: z.union([
|
|
4192
|
+
z.string(),
|
|
4193
|
+
z.null()
|
|
4194
|
+
]).optional(),
|
|
4195
|
+
culprit: z.union([
|
|
4196
|
+
z.string(),
|
|
4197
|
+
z.null()
|
|
4198
|
+
]).optional(),
|
|
3800
4199
|
dateCreated: z.string().datetime().optional(),
|
|
3801
4200
|
fingerprints: z.array(z.string()).optional(),
|
|
3802
|
-
groupingConfig: z.
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
4201
|
+
groupingConfig: z.object({
|
|
4202
|
+
id: z.string(),
|
|
4203
|
+
enhancements: z.string()
|
|
4204
|
+
}).optional(),
|
|
4205
|
+
startTimestamp: z.number().optional(),
|
|
4206
|
+
endTimestamp: z.number().optional(),
|
|
4207
|
+
measurements: z.union([
|
|
4208
|
+
z.record(z.object({
|
|
4209
|
+
value: z.number(),
|
|
4210
|
+
unit: z.union([
|
|
4211
|
+
z.string(),
|
|
4212
|
+
z.null()
|
|
4213
|
+
])
|
|
4214
|
+
})),
|
|
4215
|
+
z.null()
|
|
4216
|
+
]).optional(),
|
|
4217
|
+
breakdowns: z.union([
|
|
4218
|
+
z.record(z.record(z.object({
|
|
4219
|
+
value: z.number(),
|
|
4220
|
+
unit: z.union([
|
|
4221
|
+
z.string(),
|
|
4222
|
+
z.null()
|
|
4223
|
+
])
|
|
4224
|
+
}))),
|
|
4225
|
+
z.null()
|
|
4226
|
+
]).optional(),
|
|
3807
4227
|
release: z.union([
|
|
3808
4228
|
z.object({
|
|
3809
4229
|
id: z.number().int().optional(),
|
|
@@ -3951,6 +4371,7 @@ var zLatestBaseSnapshotResponse = z.object({
|
|
|
3951
4371
|
image_file_name: z.string().optional(),
|
|
3952
4372
|
width: z.number().int().optional(),
|
|
3953
4373
|
height: z.number().int().optional(),
|
|
4374
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
3954
4375
|
image_url: z.string().optional()
|
|
3955
4376
|
})).optional(),
|
|
3956
4377
|
diff_threshold: z.union([
|
|
@@ -4231,6 +4652,9 @@ var zLayout = z.object({
|
|
|
4231
4652
|
"default"
|
|
4232
4653
|
])
|
|
4233
4654
|
});
|
|
4655
|
+
var zLinkExternalIssueRequest = z.object({
|
|
4656
|
+
externalIssue: z.string()
|
|
4657
|
+
});
|
|
4234
4658
|
var zLinkedDashboard = z.object({
|
|
4235
4659
|
field: z.string(),
|
|
4236
4660
|
dashboard_id: z.string()
|
|
@@ -4496,62 +4920,65 @@ var zListOrgMembersResponse = z.array(z.object({
|
|
|
4496
4920
|
id: z.string(),
|
|
4497
4921
|
email: z.string(),
|
|
4498
4922
|
name: z.string(),
|
|
4499
|
-
user: z.
|
|
4500
|
-
|
|
4923
|
+
user: z.union([
|
|
4924
|
+
z.object({
|
|
4925
|
+
identities: z.array(z.object({
|
|
4926
|
+
id: z.string(),
|
|
4927
|
+
name: z.string(),
|
|
4928
|
+
organization: z.object({
|
|
4929
|
+
slug: z.string(),
|
|
4930
|
+
name: z.string()
|
|
4931
|
+
}),
|
|
4932
|
+
provider: z.object({
|
|
4933
|
+
id: z.string(),
|
|
4934
|
+
name: z.string()
|
|
4935
|
+
}),
|
|
4936
|
+
dateVerified: z.string().datetime(),
|
|
4937
|
+
dateSynced: z.string().datetime()
|
|
4938
|
+
})).optional(),
|
|
4939
|
+
avatar: z.object({
|
|
4940
|
+
avatarType: z.string().optional(),
|
|
4941
|
+
avatarUuid: z.union([
|
|
4942
|
+
z.string(),
|
|
4943
|
+
z.null()
|
|
4944
|
+
]).optional(),
|
|
4945
|
+
avatarUrl: z.union([
|
|
4946
|
+
z.string(),
|
|
4947
|
+
z.null()
|
|
4948
|
+
]).optional()
|
|
4949
|
+
}).optional(),
|
|
4950
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
4951
|
+
canReset2fa: z.boolean().optional(),
|
|
4501
4952
|
id: z.string(),
|
|
4502
4953
|
name: z.string(),
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
})).optional(),
|
|
4514
|
-
avatar: z.object({
|
|
4515
|
-
avatarType: z.string().optional(),
|
|
4516
|
-
avatarUuid: z.union([
|
|
4517
|
-
z.string(),
|
|
4954
|
+
username: z.string(),
|
|
4955
|
+
email: z.string(),
|
|
4956
|
+
avatarUrl: z.string(),
|
|
4957
|
+
isActive: z.boolean(),
|
|
4958
|
+
isSuspended: z.boolean(),
|
|
4959
|
+
hasPasswordAuth: z.boolean(),
|
|
4960
|
+
isManaged: z.boolean(),
|
|
4961
|
+
dateJoined: z.string().datetime(),
|
|
4962
|
+
lastLogin: z.union([
|
|
4963
|
+
z.string().datetime(),
|
|
4518
4964
|
z.null()
|
|
4519
|
-
])
|
|
4520
|
-
|
|
4521
|
-
|
|
4965
|
+
]),
|
|
4966
|
+
has2fa: z.boolean(),
|
|
4967
|
+
lastActive: z.union([
|
|
4968
|
+
z.string().datetime(),
|
|
4522
4969
|
z.null()
|
|
4523
|
-
])
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
isManaged: z.boolean(),
|
|
4536
|
-
dateJoined: z.string().datetime(),
|
|
4537
|
-
lastLogin: z.union([
|
|
4538
|
-
z.string().datetime(),
|
|
4539
|
-
z.null()
|
|
4540
|
-
]),
|
|
4541
|
-
has2fa: z.boolean(),
|
|
4542
|
-
lastActive: z.union([
|
|
4543
|
-
z.string().datetime(),
|
|
4544
|
-
z.null()
|
|
4545
|
-
]),
|
|
4546
|
-
isSuperuser: z.boolean(),
|
|
4547
|
-
isStaff: z.boolean(),
|
|
4548
|
-
experiments: z.record(z.unknown()),
|
|
4549
|
-
emails: z.array(z.object({
|
|
4550
|
-
id: z.string(),
|
|
4551
|
-
email: z.string(),
|
|
4552
|
-
is_verified: z.boolean()
|
|
4553
|
-
}))
|
|
4554
|
-
}).optional(),
|
|
4970
|
+
]),
|
|
4971
|
+
isSuperuser: z.boolean(),
|
|
4972
|
+
isStaff: z.boolean(),
|
|
4973
|
+
experiments: z.record(z.unknown()),
|
|
4974
|
+
emails: z.array(z.object({
|
|
4975
|
+
id: z.string(),
|
|
4976
|
+
email: z.string(),
|
|
4977
|
+
is_verified: z.boolean()
|
|
4978
|
+
}))
|
|
4979
|
+
}),
|
|
4980
|
+
z.null()
|
|
4981
|
+
]),
|
|
4555
4982
|
orgRole: z.string(),
|
|
4556
4983
|
pending: z.boolean(),
|
|
4557
4984
|
expired: z.boolean(),
|
|
@@ -4786,6 +5213,10 @@ var zListOrganizationIntegrationResponse = z.array(z.object({
|
|
|
4786
5213
|
z.array(z.string()),
|
|
4787
5214
|
z.null()
|
|
4788
5215
|
]),
|
|
5216
|
+
outOfDate: z.union([
|
|
5217
|
+
z.boolean(),
|
|
5218
|
+
z.null()
|
|
5219
|
+
]),
|
|
4789
5220
|
status: z.string(),
|
|
4790
5221
|
provider: z.unknown(),
|
|
4791
5222
|
configOrganization: z.unknown(),
|
|
@@ -4811,62 +5242,65 @@ var zListOrganizationMemberResponse = z.array(z.object({
|
|
|
4811
5242
|
id: z.string(),
|
|
4812
5243
|
email: z.string(),
|
|
4813
5244
|
name: z.string(),
|
|
4814
|
-
user: z.
|
|
4815
|
-
|
|
5245
|
+
user: z.union([
|
|
5246
|
+
z.object({
|
|
5247
|
+
identities: z.array(z.object({
|
|
5248
|
+
id: z.string(),
|
|
5249
|
+
name: z.string(),
|
|
5250
|
+
organization: z.object({
|
|
5251
|
+
slug: z.string(),
|
|
5252
|
+
name: z.string()
|
|
5253
|
+
}),
|
|
5254
|
+
provider: z.object({
|
|
5255
|
+
id: z.string(),
|
|
5256
|
+
name: z.string()
|
|
5257
|
+
}),
|
|
5258
|
+
dateVerified: z.string().datetime(),
|
|
5259
|
+
dateSynced: z.string().datetime()
|
|
5260
|
+
})).optional(),
|
|
5261
|
+
avatar: z.object({
|
|
5262
|
+
avatarType: z.string().optional(),
|
|
5263
|
+
avatarUuid: z.union([
|
|
5264
|
+
z.string(),
|
|
5265
|
+
z.null()
|
|
5266
|
+
]).optional(),
|
|
5267
|
+
avatarUrl: z.union([
|
|
5268
|
+
z.string(),
|
|
5269
|
+
z.null()
|
|
5270
|
+
]).optional()
|
|
5271
|
+
}).optional(),
|
|
5272
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
5273
|
+
canReset2fa: z.boolean().optional(),
|
|
4816
5274
|
id: z.string(),
|
|
4817
5275
|
name: z.string(),
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
})).optional(),
|
|
4829
|
-
avatar: z.object({
|
|
4830
|
-
avatarType: z.string().optional(),
|
|
4831
|
-
avatarUuid: z.union([
|
|
4832
|
-
z.string(),
|
|
5276
|
+
username: z.string(),
|
|
5277
|
+
email: z.string(),
|
|
5278
|
+
avatarUrl: z.string(),
|
|
5279
|
+
isActive: z.boolean(),
|
|
5280
|
+
isSuspended: z.boolean(),
|
|
5281
|
+
hasPasswordAuth: z.boolean(),
|
|
5282
|
+
isManaged: z.boolean(),
|
|
5283
|
+
dateJoined: z.string().datetime(),
|
|
5284
|
+
lastLogin: z.union([
|
|
5285
|
+
z.string().datetime(),
|
|
4833
5286
|
z.null()
|
|
4834
|
-
])
|
|
4835
|
-
|
|
4836
|
-
|
|
5287
|
+
]),
|
|
5288
|
+
has2fa: z.boolean(),
|
|
5289
|
+
lastActive: z.union([
|
|
5290
|
+
z.string().datetime(),
|
|
4837
5291
|
z.null()
|
|
4838
|
-
])
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
isManaged: z.boolean(),
|
|
4851
|
-
dateJoined: z.string().datetime(),
|
|
4852
|
-
lastLogin: z.union([
|
|
4853
|
-
z.string().datetime(),
|
|
4854
|
-
z.null()
|
|
4855
|
-
]),
|
|
4856
|
-
has2fa: z.boolean(),
|
|
4857
|
-
lastActive: z.union([
|
|
4858
|
-
z.string().datetime(),
|
|
4859
|
-
z.null()
|
|
4860
|
-
]),
|
|
4861
|
-
isSuperuser: z.boolean(),
|
|
4862
|
-
isStaff: z.boolean(),
|
|
4863
|
-
experiments: z.record(z.unknown()),
|
|
4864
|
-
emails: z.array(z.object({
|
|
4865
|
-
id: z.string(),
|
|
4866
|
-
email: z.string(),
|
|
4867
|
-
is_verified: z.boolean()
|
|
4868
|
-
}))
|
|
4869
|
-
}).optional(),
|
|
5292
|
+
]),
|
|
5293
|
+
isSuperuser: z.boolean(),
|
|
5294
|
+
isStaff: z.boolean(),
|
|
5295
|
+
experiments: z.record(z.unknown()),
|
|
5296
|
+
emails: z.array(z.object({
|
|
5297
|
+
id: z.string(),
|
|
5298
|
+
email: z.string(),
|
|
5299
|
+
is_verified: z.boolean()
|
|
5300
|
+
}))
|
|
5301
|
+
}),
|
|
5302
|
+
z.null()
|
|
5303
|
+
]),
|
|
4870
5304
|
orgRole: z.string(),
|
|
4871
5305
|
pending: z.boolean(),
|
|
4872
5306
|
expired: z.boolean(),
|
|
@@ -4904,6 +5338,17 @@ var zListOrganizationReleaseCommitsResponse = z.array(z.object({
|
|
|
4904
5338
|
z.null()
|
|
4905
5339
|
]),
|
|
4906
5340
|
dateCreated: z.string().datetime(),
|
|
5341
|
+
mergedAt: z.union([
|
|
5342
|
+
z.string().datetime(),
|
|
5343
|
+
z.null()
|
|
5344
|
+
]),
|
|
5345
|
+
status: z.enum([
|
|
5346
|
+
"merged",
|
|
5347
|
+
"open",
|
|
5348
|
+
"closed",
|
|
5349
|
+
"draft",
|
|
5350
|
+
"unknown"
|
|
5351
|
+
]).nullable(),
|
|
4907
5352
|
repository: z.object({
|
|
4908
5353
|
url: z.union([
|
|
4909
5354
|
z.string(),
|
|
@@ -5511,6 +5956,17 @@ var zListProjectReleaseCommitsResponse = z.array(z.object({
|
|
|
5511
5956
|
z.null()
|
|
5512
5957
|
]),
|
|
5513
5958
|
dateCreated: z.string().datetime(),
|
|
5959
|
+
mergedAt: z.union([
|
|
5960
|
+
z.string().datetime(),
|
|
5961
|
+
z.null()
|
|
5962
|
+
]),
|
|
5963
|
+
status: z.enum([
|
|
5964
|
+
"merged",
|
|
5965
|
+
"open",
|
|
5966
|
+
"closed",
|
|
5967
|
+
"draft",
|
|
5968
|
+
"unknown"
|
|
5969
|
+
]).nullable(),
|
|
5514
5970
|
repository: z.object({
|
|
5515
5971
|
url: z.union([
|
|
5516
5972
|
z.string(),
|
|
@@ -6135,6 +6591,10 @@ var zListReplays = z.object({
|
|
|
6135
6591
|
z.array(z.string()),
|
|
6136
6592
|
z.null()
|
|
6137
6593
|
]).optional(),
|
|
6594
|
+
segment_names: z.union([
|
|
6595
|
+
z.array(z.string()),
|
|
6596
|
+
z.null()
|
|
6597
|
+
]).optional(),
|
|
6138
6598
|
clicks: z.array(z.record(z.unknown())).optional(),
|
|
6139
6599
|
count_dead_clicks: z.union([
|
|
6140
6600
|
z.number().int(),
|
|
@@ -6293,10 +6753,12 @@ var zListTraceItemAttributesResponse = z.array(z.object({
|
|
|
6293
6753
|
attributeType: z.enum([
|
|
6294
6754
|
"string",
|
|
6295
6755
|
"number",
|
|
6296
|
-
"boolean"
|
|
6756
|
+
"boolean",
|
|
6757
|
+
"array"
|
|
6297
6758
|
]),
|
|
6298
6759
|
context: z.object({
|
|
6299
6760
|
isConvention: z.boolean().optional(),
|
|
6761
|
+
isCustom: z.boolean().optional(),
|
|
6300
6762
|
brief: z.string().optional(),
|
|
6301
6763
|
isDeprecated: z.boolean().optional(),
|
|
6302
6764
|
details: z.array(z.string()).optional(),
|
|
@@ -7659,7 +8121,7 @@ var zOrganizationEventsTimeseriesResponse = z.object({
|
|
|
7659
8121
|
z.number(),
|
|
7660
8122
|
z.null()
|
|
7661
8123
|
]).optional(),
|
|
7662
|
-
confidence: z.enum(["low", "high"]).optional(),
|
|
8124
|
+
confidence: z.enum(["low", "high"]).nullable().optional(),
|
|
7663
8125
|
incompleteReason: z.string().optional()
|
|
7664
8126
|
})),
|
|
7665
8127
|
yAxis: z.string(),
|
|
@@ -7704,10 +8166,24 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7704
8166
|
z.string(),
|
|
7705
8167
|
z.null()
|
|
7706
8168
|
]),
|
|
7707
|
-
level: z.
|
|
7708
|
-
|
|
8169
|
+
level: z.enum([
|
|
8170
|
+
"sample",
|
|
8171
|
+
"debug",
|
|
8172
|
+
"info",
|
|
8173
|
+
"warning",
|
|
8174
|
+
"error",
|
|
8175
|
+
"fatal",
|
|
8176
|
+
"unknown"
|
|
8177
|
+
]),
|
|
8178
|
+
status: z.enum([
|
|
8179
|
+
"resolved",
|
|
8180
|
+
"ignored",
|
|
8181
|
+
"pending_deletion",
|
|
8182
|
+
"pending_merge",
|
|
8183
|
+
"reprocessing",
|
|
8184
|
+
"unresolved"
|
|
8185
|
+
]),
|
|
7709
8186
|
statusDetails: z.object({
|
|
7710
|
-
autoResolved: z.boolean().optional(),
|
|
7711
8187
|
ignoreCount: z.number().int().optional(),
|
|
7712
8188
|
ignoreUntil: z.string().datetime().optional(),
|
|
7713
8189
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -7773,21 +8249,34 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7773
8249
|
inRelease: z.string().optional(),
|
|
7774
8250
|
inCommit: z.string().optional(),
|
|
7775
8251
|
pendingEvents: z.number().int().optional(),
|
|
7776
|
-
info: z.
|
|
8252
|
+
info: z.union([
|
|
8253
|
+
z.object({
|
|
8254
|
+
dateCreated: z.string(),
|
|
8255
|
+
syncCount: z.number().int(),
|
|
8256
|
+
totalEvents: z.number().int()
|
|
8257
|
+
}),
|
|
8258
|
+
z.null()
|
|
8259
|
+
]).optional()
|
|
7777
8260
|
}),
|
|
7778
|
-
substatus: z.
|
|
7779
|
-
|
|
7780
|
-
|
|
7781
|
-
|
|
8261
|
+
substatus: z.enum([
|
|
8262
|
+
"archived_until_escalating",
|
|
8263
|
+
"archived_until_condition_met",
|
|
8264
|
+
"archived_forever",
|
|
8265
|
+
"escalating",
|
|
8266
|
+
"ongoing",
|
|
8267
|
+
"regressed",
|
|
8268
|
+
"new"
|
|
8269
|
+
]).nullable(),
|
|
7782
8270
|
isPublic: z.boolean(),
|
|
7783
8271
|
platform: z.union([
|
|
7784
8272
|
z.string(),
|
|
7785
8273
|
z.null()
|
|
7786
8274
|
]),
|
|
7787
|
-
priority: z.
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
8275
|
+
priority: z.enum([
|
|
8276
|
+
"low",
|
|
8277
|
+
"medium",
|
|
8278
|
+
"high"
|
|
8279
|
+
]).nullable(),
|
|
7791
8280
|
priorityLockedAt: z.union([
|
|
7792
8281
|
z.string().datetime(),
|
|
7793
8282
|
z.null()
|
|
@@ -7813,7 +8302,18 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7813
8302
|
z.null()
|
|
7814
8303
|
])
|
|
7815
8304
|
}),
|
|
7816
|
-
type: z.
|
|
8305
|
+
type: z.enum([
|
|
8306
|
+
"default",
|
|
8307
|
+
"error",
|
|
8308
|
+
"csp",
|
|
8309
|
+
"nel",
|
|
8310
|
+
"hpkp",
|
|
8311
|
+
"expectct",
|
|
8312
|
+
"expectstaple",
|
|
8313
|
+
"transaction",
|
|
8314
|
+
"generic",
|
|
8315
|
+
"feedback"
|
|
8316
|
+
]),
|
|
7817
8317
|
issueType: z.string(),
|
|
7818
8318
|
issueCategory: z.string(),
|
|
7819
8319
|
metadata: z.record(z.unknown()),
|
|
@@ -7852,6 +8352,20 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7852
8352
|
z.string().datetime(),
|
|
7853
8353
|
z.null()
|
|
7854
8354
|
]),
|
|
8355
|
+
derivedData: z.object({
|
|
8356
|
+
blocker: z.string(),
|
|
8357
|
+
progress: z.string(),
|
|
8358
|
+
status: z.string(),
|
|
8359
|
+
viewCount: z.number().int(),
|
|
8360
|
+
hasOpenFixPr: z.boolean(),
|
|
8361
|
+
isAssigned: z.boolean(),
|
|
8362
|
+
hasRootCause: z.boolean(),
|
|
8363
|
+
lastCompletedAutofixStep: z.string(),
|
|
8364
|
+
lastProgressedAt: z.union([
|
|
8365
|
+
z.string().datetime(),
|
|
8366
|
+
z.null()
|
|
8367
|
+
])
|
|
8368
|
+
}),
|
|
7855
8369
|
stats: z.record(z.unknown()),
|
|
7856
8370
|
lifetime: z.record(z.unknown()),
|
|
7857
8371
|
filtered: z.union([
|
|
@@ -7975,6 +8489,10 @@ var zOrganizationIntegrationResponse = z.object({
|
|
|
7975
8489
|
z.array(z.string()),
|
|
7976
8490
|
z.null()
|
|
7977
8491
|
]),
|
|
8492
|
+
outOfDate: z.union([
|
|
8493
|
+
z.boolean(),
|
|
8494
|
+
z.null()
|
|
8495
|
+
]),
|
|
7978
8496
|
status: z.string(),
|
|
7979
8497
|
provider: z.unknown(),
|
|
7980
8498
|
configOrganization: z.unknown(),
|
|
@@ -8000,62 +8518,65 @@ var zOrganizationMember = z.object({
|
|
|
8000
8518
|
id: z.string(),
|
|
8001
8519
|
email: z.string(),
|
|
8002
8520
|
name: z.string(),
|
|
8003
|
-
user: z.
|
|
8004
|
-
|
|
8521
|
+
user: z.union([
|
|
8522
|
+
z.object({
|
|
8523
|
+
identities: z.array(z.object({
|
|
8524
|
+
id: z.string(),
|
|
8525
|
+
name: z.string(),
|
|
8526
|
+
organization: z.object({
|
|
8527
|
+
slug: z.string(),
|
|
8528
|
+
name: z.string()
|
|
8529
|
+
}),
|
|
8530
|
+
provider: z.object({
|
|
8531
|
+
id: z.string(),
|
|
8532
|
+
name: z.string()
|
|
8533
|
+
}),
|
|
8534
|
+
dateVerified: z.string().datetime(),
|
|
8535
|
+
dateSynced: z.string().datetime()
|
|
8536
|
+
})).optional(),
|
|
8537
|
+
avatar: z.object({
|
|
8538
|
+
avatarType: z.string().optional(),
|
|
8539
|
+
avatarUuid: z.union([
|
|
8540
|
+
z.string(),
|
|
8541
|
+
z.null()
|
|
8542
|
+
]).optional(),
|
|
8543
|
+
avatarUrl: z.union([
|
|
8544
|
+
z.string(),
|
|
8545
|
+
z.null()
|
|
8546
|
+
]).optional()
|
|
8547
|
+
}).optional(),
|
|
8548
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
8549
|
+
canReset2fa: z.boolean().optional(),
|
|
8005
8550
|
id: z.string(),
|
|
8006
8551
|
name: z.string(),
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
8015
|
-
|
|
8016
|
-
|
|
8017
|
-
})).optional(),
|
|
8018
|
-
avatar: z.object({
|
|
8019
|
-
avatarType: z.string().optional(),
|
|
8020
|
-
avatarUuid: z.union([
|
|
8021
|
-
z.string(),
|
|
8552
|
+
username: z.string(),
|
|
8553
|
+
email: z.string(),
|
|
8554
|
+
avatarUrl: z.string(),
|
|
8555
|
+
isActive: z.boolean(),
|
|
8556
|
+
isSuspended: z.boolean(),
|
|
8557
|
+
hasPasswordAuth: z.boolean(),
|
|
8558
|
+
isManaged: z.boolean(),
|
|
8559
|
+
dateJoined: z.string().datetime(),
|
|
8560
|
+
lastLogin: z.union([
|
|
8561
|
+
z.string().datetime(),
|
|
8022
8562
|
z.null()
|
|
8023
|
-
])
|
|
8024
|
-
|
|
8025
|
-
|
|
8563
|
+
]),
|
|
8564
|
+
has2fa: z.boolean(),
|
|
8565
|
+
lastActive: z.union([
|
|
8566
|
+
z.string().datetime(),
|
|
8026
8567
|
z.null()
|
|
8027
|
-
])
|
|
8028
|
-
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
isManaged: z.boolean(),
|
|
8040
|
-
dateJoined: z.string().datetime(),
|
|
8041
|
-
lastLogin: z.union([
|
|
8042
|
-
z.string().datetime(),
|
|
8043
|
-
z.null()
|
|
8044
|
-
]),
|
|
8045
|
-
has2fa: z.boolean(),
|
|
8046
|
-
lastActive: z.union([
|
|
8047
|
-
z.string().datetime(),
|
|
8048
|
-
z.null()
|
|
8049
|
-
]),
|
|
8050
|
-
isSuperuser: z.boolean(),
|
|
8051
|
-
isStaff: z.boolean(),
|
|
8052
|
-
experiments: z.record(z.unknown()),
|
|
8053
|
-
emails: z.array(z.object({
|
|
8054
|
-
id: z.string(),
|
|
8055
|
-
email: z.string(),
|
|
8056
|
-
is_verified: z.boolean()
|
|
8057
|
-
}))
|
|
8058
|
-
}).optional(),
|
|
8568
|
+
]),
|
|
8569
|
+
isSuperuser: z.boolean(),
|
|
8570
|
+
isStaff: z.boolean(),
|
|
8571
|
+
experiments: z.record(z.unknown()),
|
|
8572
|
+
emails: z.array(z.object({
|
|
8573
|
+
id: z.string(),
|
|
8574
|
+
email: z.string(),
|
|
8575
|
+
is_verified: z.boolean()
|
|
8576
|
+
}))
|
|
8577
|
+
}),
|
|
8578
|
+
z.null()
|
|
8579
|
+
]),
|
|
8059
8580
|
orgRole: z.string(),
|
|
8060
8581
|
pending: z.boolean(),
|
|
8061
8582
|
expired: z.boolean(),
|
|
@@ -8130,62 +8651,65 @@ var zOrganizationMemberWithRoles = z.object({
|
|
|
8130
8651
|
id: z.string(),
|
|
8131
8652
|
email: z.string(),
|
|
8132
8653
|
name: z.string(),
|
|
8133
|
-
user: z.
|
|
8134
|
-
|
|
8654
|
+
user: z.union([
|
|
8655
|
+
z.object({
|
|
8656
|
+
identities: z.array(z.object({
|
|
8657
|
+
id: z.string(),
|
|
8658
|
+
name: z.string(),
|
|
8659
|
+
organization: z.object({
|
|
8660
|
+
slug: z.string(),
|
|
8661
|
+
name: z.string()
|
|
8662
|
+
}),
|
|
8663
|
+
provider: z.object({
|
|
8664
|
+
id: z.string(),
|
|
8665
|
+
name: z.string()
|
|
8666
|
+
}),
|
|
8667
|
+
dateVerified: z.string().datetime(),
|
|
8668
|
+
dateSynced: z.string().datetime()
|
|
8669
|
+
})).optional(),
|
|
8670
|
+
avatar: z.object({
|
|
8671
|
+
avatarType: z.string().optional(),
|
|
8672
|
+
avatarUuid: z.union([
|
|
8673
|
+
z.string(),
|
|
8674
|
+
z.null()
|
|
8675
|
+
]).optional(),
|
|
8676
|
+
avatarUrl: z.union([
|
|
8677
|
+
z.string(),
|
|
8678
|
+
z.null()
|
|
8679
|
+
]).optional()
|
|
8680
|
+
}).optional(),
|
|
8681
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
8682
|
+
canReset2fa: z.boolean().optional(),
|
|
8135
8683
|
id: z.string(),
|
|
8136
8684
|
name: z.string(),
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
|
|
8146
|
-
|
|
8147
|
-
})).optional(),
|
|
8148
|
-
avatar: z.object({
|
|
8149
|
-
avatarType: z.string().optional(),
|
|
8150
|
-
avatarUuid: z.union([
|
|
8151
|
-
z.string(),
|
|
8685
|
+
username: z.string(),
|
|
8686
|
+
email: z.string(),
|
|
8687
|
+
avatarUrl: z.string(),
|
|
8688
|
+
isActive: z.boolean(),
|
|
8689
|
+
isSuspended: z.boolean(),
|
|
8690
|
+
hasPasswordAuth: z.boolean(),
|
|
8691
|
+
isManaged: z.boolean(),
|
|
8692
|
+
dateJoined: z.string().datetime(),
|
|
8693
|
+
lastLogin: z.union([
|
|
8694
|
+
z.string().datetime(),
|
|
8152
8695
|
z.null()
|
|
8153
|
-
])
|
|
8154
|
-
|
|
8155
|
-
|
|
8696
|
+
]),
|
|
8697
|
+
has2fa: z.boolean(),
|
|
8698
|
+
lastActive: z.union([
|
|
8699
|
+
z.string().datetime(),
|
|
8156
8700
|
z.null()
|
|
8157
|
-
])
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
isManaged: z.boolean(),
|
|
8170
|
-
dateJoined: z.string().datetime(),
|
|
8171
|
-
lastLogin: z.union([
|
|
8172
|
-
z.string().datetime(),
|
|
8173
|
-
z.null()
|
|
8174
|
-
]),
|
|
8175
|
-
has2fa: z.boolean(),
|
|
8176
|
-
lastActive: z.union([
|
|
8177
|
-
z.string().datetime(),
|
|
8178
|
-
z.null()
|
|
8179
|
-
]),
|
|
8180
|
-
isSuperuser: z.boolean(),
|
|
8181
|
-
isStaff: z.boolean(),
|
|
8182
|
-
experiments: z.record(z.unknown()),
|
|
8183
|
-
emails: z.array(z.object({
|
|
8184
|
-
id: z.string(),
|
|
8185
|
-
email: z.string(),
|
|
8186
|
-
is_verified: z.boolean()
|
|
8187
|
-
}))
|
|
8188
|
-
}).optional(),
|
|
8701
|
+
]),
|
|
8702
|
+
isSuperuser: z.boolean(),
|
|
8703
|
+
isStaff: z.boolean(),
|
|
8704
|
+
experiments: z.record(z.unknown()),
|
|
8705
|
+
emails: z.array(z.object({
|
|
8706
|
+
id: z.string(),
|
|
8707
|
+
email: z.string(),
|
|
8708
|
+
is_verified: z.boolean()
|
|
8709
|
+
}))
|
|
8710
|
+
}),
|
|
8711
|
+
z.null()
|
|
8712
|
+
]),
|
|
8189
8713
|
orgRole: z.string(),
|
|
8190
8714
|
pending: z.boolean(),
|
|
8191
8715
|
expired: z.boolean(),
|
|
@@ -8388,6 +8912,7 @@ var zOrganizationSentryAppDetailsResponse = z.array(z.object({
|
|
|
8388
8912
|
photoType: z.string()
|
|
8389
8913
|
})),
|
|
8390
8914
|
events: z.array(z.string()),
|
|
8915
|
+
webhookEvents: z.array(z.string()),
|
|
8391
8916
|
featureData: z.array(z.string()),
|
|
8392
8917
|
isAlertable: z.boolean(),
|
|
8393
8918
|
metadata: z.string(),
|
|
@@ -8501,14 +9026,13 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8501
9026
|
z.object({
|
|
8502
9027
|
description: z.string(),
|
|
8503
9028
|
event_id: z.string(),
|
|
8504
|
-
event_type: z.string(),
|
|
8505
9029
|
project_id: z.number().int(),
|
|
8506
9030
|
project_slug: z.string(),
|
|
8507
9031
|
transaction: z.string(),
|
|
9032
|
+
event_type: z.enum(["span"]),
|
|
8508
9033
|
children: z.array(z.object({
|
|
8509
9034
|
description: z.string(),
|
|
8510
9035
|
event_id: z.string(),
|
|
8511
|
-
event_type: z.string(),
|
|
8512
9036
|
project_id: z.number().int(),
|
|
8513
9037
|
project_slug: z.string(),
|
|
8514
9038
|
transaction: z.string()
|
|
@@ -8516,10 +9040,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8516
9040
|
errors: z.array(z.object({
|
|
8517
9041
|
description: z.string(),
|
|
8518
9042
|
event_id: z.string(),
|
|
8519
|
-
event_type: z.string(),
|
|
8520
9043
|
project_id: z.number().int(),
|
|
8521
9044
|
project_slug: z.string(),
|
|
8522
9045
|
transaction: z.string(),
|
|
9046
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8523
9047
|
issue_id: z.number().int(),
|
|
8524
9048
|
level: z.string(),
|
|
8525
9049
|
start_timestamp: z.number(),
|
|
@@ -8537,10 +9061,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8537
9061
|
occurrences: z.array(z.object({
|
|
8538
9062
|
description: z.string(),
|
|
8539
9063
|
event_id: z.string(),
|
|
8540
|
-
event_type: z.string(),
|
|
8541
9064
|
project_id: z.number().int(),
|
|
8542
9065
|
project_slug: z.string(),
|
|
8543
9066
|
transaction: z.string(),
|
|
9067
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8544
9068
|
issue_id: z.number().int(),
|
|
8545
9069
|
level: z.string(),
|
|
8546
9070
|
start_timestamp: z.number(),
|
|
@@ -8556,10 +9080,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8556
9080
|
issue_type: z.number().int()
|
|
8557
9081
|
})),
|
|
8558
9082
|
duration: z.number(),
|
|
8559
|
-
end_timestamp: z.
|
|
8560
|
-
measurements: z.record(z.
|
|
8561
|
-
browser_web_vital: z.record(z.
|
|
8562
|
-
mobile_app_vital: z.record(z.
|
|
9083
|
+
end_timestamp: z.number(),
|
|
9084
|
+
measurements: z.record(z.number()),
|
|
9085
|
+
browser_web_vital: z.record(z.number()),
|
|
9086
|
+
mobile_app_vital: z.record(z.number()),
|
|
8563
9087
|
op: z.string(),
|
|
8564
9088
|
name: z.string(),
|
|
8565
9089
|
parent_span_id: z.union([
|
|
@@ -8569,7 +9093,7 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8569
9093
|
profile_id: z.string(),
|
|
8570
9094
|
profiler_id: z.string(),
|
|
8571
9095
|
sdk_name: z.string(),
|
|
8572
|
-
start_timestamp: z.
|
|
9096
|
+
start_timestamp: z.number(),
|
|
8573
9097
|
is_transaction: z.boolean(),
|
|
8574
9098
|
transaction_id: z.string(),
|
|
8575
9099
|
additional_attributes: z.record(z.unknown()).optional()
|
|
@@ -8577,10 +9101,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8577
9101
|
z.object({
|
|
8578
9102
|
description: z.string(),
|
|
8579
9103
|
event_id: z.string(),
|
|
8580
|
-
event_type: z.string(),
|
|
8581
9104
|
project_id: z.number().int(),
|
|
8582
9105
|
project_slug: z.string(),
|
|
8583
9106
|
transaction: z.string(),
|
|
9107
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8584
9108
|
issue_id: z.number().int(),
|
|
8585
9109
|
level: z.string(),
|
|
8586
9110
|
start_timestamp: z.number(),
|
|
@@ -8598,14 +9122,13 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8598
9122
|
z.object({
|
|
8599
9123
|
description: z.string(),
|
|
8600
9124
|
event_id: z.string(),
|
|
8601
|
-
event_type: z.string(),
|
|
8602
9125
|
project_id: z.number().int(),
|
|
8603
9126
|
project_slug: z.string(),
|
|
8604
9127
|
transaction: z.string(),
|
|
9128
|
+
event_type: z.enum(["uptime_check"]),
|
|
8605
9129
|
children: z.array(z.object({
|
|
8606
9130
|
description: z.string(),
|
|
8607
9131
|
event_id: z.string(),
|
|
8608
|
-
event_type: z.string(),
|
|
8609
9132
|
project_id: z.number().int(),
|
|
8610
9133
|
project_slug: z.string(),
|
|
8611
9134
|
transaction: z.string()
|
|
@@ -8613,10 +9136,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8613
9136
|
errors: z.array(z.object({
|
|
8614
9137
|
description: z.string(),
|
|
8615
9138
|
event_id: z.string(),
|
|
8616
|
-
event_type: z.string(),
|
|
8617
9139
|
project_id: z.number().int(),
|
|
8618
9140
|
project_slug: z.string(),
|
|
8619
9141
|
transaction: z.string(),
|
|
9142
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8620
9143
|
issue_id: z.number().int(),
|
|
8621
9144
|
level: z.string(),
|
|
8622
9145
|
start_timestamp: z.number(),
|
|
@@ -8634,10 +9157,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8634
9157
|
occurrences: z.array(z.object({
|
|
8635
9158
|
description: z.string(),
|
|
8636
9159
|
event_id: z.string(),
|
|
8637
|
-
event_type: z.string(),
|
|
8638
9160
|
project_id: z.number().int(),
|
|
8639
9161
|
project_slug: z.string(),
|
|
8640
9162
|
transaction: z.string(),
|
|
9163
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8641
9164
|
issue_id: z.number().int(),
|
|
8642
9165
|
level: z.string(),
|
|
8643
9166
|
start_timestamp: z.number(),
|
|
@@ -9064,6 +9587,7 @@ var zProjectAdmin = z.object({
|
|
|
9064
9587
|
]).optional(),
|
|
9065
9588
|
highlightContext: z.record(z.unknown()).optional(),
|
|
9066
9589
|
highlightTags: z.array(z.string()).optional(),
|
|
9590
|
+
enableAutoReleaseCreation: z.boolean().optional(),
|
|
9067
9591
|
scmSourceContextEnabled: z.boolean().optional()
|
|
9068
9592
|
});
|
|
9069
9593
|
var zProjectEventDetailsResponse = z.object({
|
|
@@ -9139,16 +9663,81 @@ var zProjectEventDetailsResponse = z.object({
|
|
|
9139
9663
|
z.string(),
|
|
9140
9664
|
z.null()
|
|
9141
9665
|
]),
|
|
9142
|
-
sdk: z.
|
|
9666
|
+
sdk: z.union([
|
|
9667
|
+
z.object({
|
|
9668
|
+
name: z.union([
|
|
9669
|
+
z.string(),
|
|
9670
|
+
z.null()
|
|
9671
|
+
]),
|
|
9672
|
+
version: z.union([
|
|
9673
|
+
z.string(),
|
|
9674
|
+
z.null()
|
|
9675
|
+
])
|
|
9676
|
+
}),
|
|
9677
|
+
z.null()
|
|
9678
|
+
]),
|
|
9143
9679
|
context: z.union([
|
|
9144
9680
|
z.record(z.unknown()),
|
|
9145
9681
|
z.null()
|
|
9146
9682
|
]),
|
|
9147
9683
|
packages: z.record(z.unknown()),
|
|
9148
|
-
type: z.
|
|
9149
|
-
|
|
9150
|
-
|
|
9151
|
-
|
|
9684
|
+
type: z.enum([
|
|
9685
|
+
"default",
|
|
9686
|
+
"error",
|
|
9687
|
+
"csp",
|
|
9688
|
+
"nel",
|
|
9689
|
+
"hpkp",
|
|
9690
|
+
"expectct",
|
|
9691
|
+
"expectstaple",
|
|
9692
|
+
"transaction",
|
|
9693
|
+
"generic",
|
|
9694
|
+
"feedback"
|
|
9695
|
+
]),
|
|
9696
|
+
metadata: z.record(z.unknown()),
|
|
9697
|
+
errors: z.array(z.object({
|
|
9698
|
+
type: z.string(),
|
|
9699
|
+
message: z.string(),
|
|
9700
|
+
data: z.record(z.unknown())
|
|
9701
|
+
})),
|
|
9702
|
+
occurrence: z.union([
|
|
9703
|
+
z.object({
|
|
9704
|
+
id: z.string(),
|
|
9705
|
+
projectId: z.number().int(),
|
|
9706
|
+
eventId: z.string(),
|
|
9707
|
+
fingerprint: z.array(z.string()),
|
|
9708
|
+
issueTitle: z.string(),
|
|
9709
|
+
subtitle: z.string(),
|
|
9710
|
+
resourceId: z.union([
|
|
9711
|
+
z.string(),
|
|
9712
|
+
z.null()
|
|
9713
|
+
]),
|
|
9714
|
+
evidenceData: z.record(z.unknown()),
|
|
9715
|
+
evidenceDisplay: z.array(z.object({
|
|
9716
|
+
name: z.string(),
|
|
9717
|
+
value: z.string(),
|
|
9718
|
+
important: z.boolean()
|
|
9719
|
+
})),
|
|
9720
|
+
type: z.number().int(),
|
|
9721
|
+
detectionTime: z.number(),
|
|
9722
|
+
level: z.union([
|
|
9723
|
+
z.string(),
|
|
9724
|
+
z.null()
|
|
9725
|
+
]),
|
|
9726
|
+
culprit: z.union([
|
|
9727
|
+
z.string(),
|
|
9728
|
+
z.null()
|
|
9729
|
+
]),
|
|
9730
|
+
assignee: z.union([
|
|
9731
|
+
z.string(),
|
|
9732
|
+
z.null()
|
|
9733
|
+
]),
|
|
9734
|
+
priority: z.union([
|
|
9735
|
+
z.number().int(),
|
|
9736
|
+
z.null()
|
|
9737
|
+
])
|
|
9738
|
+
}),
|
|
9739
|
+
z.null()
|
|
9740
|
+
]),
|
|
9152
9741
|
_meta: z.record(z.unknown()),
|
|
9153
9742
|
crashFile: z.union([
|
|
9154
9743
|
z.string(),
|
|
@@ -9160,11 +9749,32 @@ var zProjectEventDetailsResponse = z.object({
|
|
|
9160
9749
|
]).optional(),
|
|
9161
9750
|
dateCreated: z.string().datetime().optional(),
|
|
9162
9751
|
fingerprints: z.array(z.string()).optional(),
|
|
9163
|
-
groupingConfig: z.
|
|
9164
|
-
|
|
9165
|
-
|
|
9166
|
-
|
|
9167
|
-
|
|
9752
|
+
groupingConfig: z.object({
|
|
9753
|
+
id: z.string(),
|
|
9754
|
+
enhancements: z.string()
|
|
9755
|
+
}).optional(),
|
|
9756
|
+
startTimestamp: z.number().optional(),
|
|
9757
|
+
endTimestamp: z.number().optional(),
|
|
9758
|
+
measurements: z.union([
|
|
9759
|
+
z.record(z.object({
|
|
9760
|
+
value: z.number(),
|
|
9761
|
+
unit: z.union([
|
|
9762
|
+
z.string(),
|
|
9763
|
+
z.null()
|
|
9764
|
+
])
|
|
9765
|
+
})),
|
|
9766
|
+
z.null()
|
|
9767
|
+
]).optional(),
|
|
9768
|
+
breakdowns: z.union([
|
|
9769
|
+
z.record(z.record(z.object({
|
|
9770
|
+
value: z.number(),
|
|
9771
|
+
unit: z.union([
|
|
9772
|
+
z.string(),
|
|
9773
|
+
z.null()
|
|
9774
|
+
])
|
|
9775
|
+
}))),
|
|
9776
|
+
z.null()
|
|
9777
|
+
]).optional(),
|
|
9168
9778
|
release: z.union([
|
|
9169
9779
|
z.object({
|
|
9170
9780
|
id: z.number().int().optional(),
|
|
@@ -9356,10 +9966,7 @@ var zProjectEventsResponseDict = z.array(z.object({
|
|
|
9356
9966
|
z.string(),
|
|
9357
9967
|
z.null()
|
|
9358
9968
|
]),
|
|
9359
|
-
metadata: z.
|
|
9360
|
-
z.record(z.unknown()),
|
|
9361
|
-
z.null()
|
|
9362
|
-
])
|
|
9969
|
+
metadata: z.record(z.unknown())
|
|
9363
9970
|
}));
|
|
9364
9971
|
var zProjectFilterResponse = z.array(z.object({
|
|
9365
9972
|
id: z.string(),
|
|
@@ -9838,15 +10445,23 @@ var zReleaseSerializerWithProjects = z.object({
|
|
|
9838
10445
|
});
|
|
9839
10446
|
var zReleaseThresholdStatusResponse = z.record(z.array(z.object({
|
|
9840
10447
|
id: z.string().optional(),
|
|
9841
|
-
|
|
10448
|
+
date_added: z.string().datetime().optional(),
|
|
9842
10449
|
environment: z.union([
|
|
9843
10450
|
z.record(z.unknown()),
|
|
9844
10451
|
z.null()
|
|
9845
10452
|
]).optional(),
|
|
9846
10453
|
project: z.record(z.unknown()).optional(),
|
|
9847
10454
|
release: z.string().optional(),
|
|
9848
|
-
threshold_type: z.
|
|
9849
|
-
|
|
10455
|
+
threshold_type: z.enum([
|
|
10456
|
+
"total_error_count",
|
|
10457
|
+
"new_issue_count",
|
|
10458
|
+
"unhandled_issue_count",
|
|
10459
|
+
"regressed_issue_count",
|
|
10460
|
+
"failure_rate",
|
|
10461
|
+
"crash_free_session_rate",
|
|
10462
|
+
"crash_free_user_rate"
|
|
10463
|
+
]).optional(),
|
|
10464
|
+
trigger_type: z.enum(["over", "under"]).optional(),
|
|
9850
10465
|
value: z.number().int().optional(),
|
|
9851
10466
|
window_in_seconds: z.number().int().optional(),
|
|
9852
10467
|
end: z.string().datetime(),
|
|
@@ -9977,6 +10592,7 @@ var zSentryAppDetailsResponse = z.object({
|
|
|
9977
10592
|
photoType: z.string()
|
|
9978
10593
|
})),
|
|
9979
10594
|
events: z.array(z.string()),
|
|
10595
|
+
webhookEvents: z.array(z.string()),
|
|
9980
10596
|
featureData: z.array(z.string()),
|
|
9981
10597
|
isAlertable: z.boolean(),
|
|
9982
10598
|
metadata: z.string(),
|
|
@@ -10094,6 +10710,20 @@ var zShortIdLookupResponse = z.object({
|
|
|
10094
10710
|
z.string().datetime(),
|
|
10095
10711
|
z.null()
|
|
10096
10712
|
]).optional(),
|
|
10713
|
+
derivedData: z.object({
|
|
10714
|
+
blocker: z.string(),
|
|
10715
|
+
progress: z.string(),
|
|
10716
|
+
status: z.string(),
|
|
10717
|
+
viewCount: z.number().int(),
|
|
10718
|
+
hasOpenFixPr: z.boolean(),
|
|
10719
|
+
isAssigned: z.boolean(),
|
|
10720
|
+
hasRootCause: z.boolean(),
|
|
10721
|
+
lastCompletedAutofixStep: z.string(),
|
|
10722
|
+
lastProgressedAt: z.union([
|
|
10723
|
+
z.string().datetime(),
|
|
10724
|
+
z.null()
|
|
10725
|
+
])
|
|
10726
|
+
}).optional(),
|
|
10097
10727
|
id: z.string(),
|
|
10098
10728
|
shareId: z.union([
|
|
10099
10729
|
z.string(),
|
|
@@ -10110,10 +10740,24 @@ var zShortIdLookupResponse = z.object({
|
|
|
10110
10740
|
z.string(),
|
|
10111
10741
|
z.null()
|
|
10112
10742
|
]),
|
|
10113
|
-
level: z.
|
|
10114
|
-
|
|
10743
|
+
level: z.enum([
|
|
10744
|
+
"sample",
|
|
10745
|
+
"debug",
|
|
10746
|
+
"info",
|
|
10747
|
+
"warning",
|
|
10748
|
+
"error",
|
|
10749
|
+
"fatal",
|
|
10750
|
+
"unknown"
|
|
10751
|
+
]),
|
|
10752
|
+
status: z.enum([
|
|
10753
|
+
"resolved",
|
|
10754
|
+
"ignored",
|
|
10755
|
+
"pending_deletion",
|
|
10756
|
+
"pending_merge",
|
|
10757
|
+
"reprocessing",
|
|
10758
|
+
"unresolved"
|
|
10759
|
+
]),
|
|
10115
10760
|
statusDetails: z.object({
|
|
10116
|
-
autoResolved: z.boolean().optional(),
|
|
10117
10761
|
ignoreCount: z.number().int().optional(),
|
|
10118
10762
|
ignoreUntil: z.string().datetime().optional(),
|
|
10119
10763
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -10179,21 +10823,34 @@ var zShortIdLookupResponse = z.object({
|
|
|
10179
10823
|
inRelease: z.string().optional(),
|
|
10180
10824
|
inCommit: z.string().optional(),
|
|
10181
10825
|
pendingEvents: z.number().int().optional(),
|
|
10182
|
-
info: z.
|
|
10826
|
+
info: z.union([
|
|
10827
|
+
z.object({
|
|
10828
|
+
dateCreated: z.string(),
|
|
10829
|
+
syncCount: z.number().int(),
|
|
10830
|
+
totalEvents: z.number().int()
|
|
10831
|
+
}),
|
|
10832
|
+
z.null()
|
|
10833
|
+
]).optional()
|
|
10183
10834
|
}),
|
|
10184
|
-
substatus: z.
|
|
10185
|
-
|
|
10186
|
-
|
|
10187
|
-
|
|
10835
|
+
substatus: z.enum([
|
|
10836
|
+
"archived_until_escalating",
|
|
10837
|
+
"archived_until_condition_met",
|
|
10838
|
+
"archived_forever",
|
|
10839
|
+
"escalating",
|
|
10840
|
+
"ongoing",
|
|
10841
|
+
"regressed",
|
|
10842
|
+
"new"
|
|
10843
|
+
]).nullable(),
|
|
10188
10844
|
isPublic: z.boolean(),
|
|
10189
10845
|
platform: z.union([
|
|
10190
10846
|
z.string(),
|
|
10191
10847
|
z.null()
|
|
10192
10848
|
]),
|
|
10193
|
-
priority: z.
|
|
10194
|
-
|
|
10195
|
-
|
|
10196
|
-
|
|
10849
|
+
priority: z.enum([
|
|
10850
|
+
"low",
|
|
10851
|
+
"medium",
|
|
10852
|
+
"high"
|
|
10853
|
+
]).nullable(),
|
|
10197
10854
|
priorityLockedAt: z.union([
|
|
10198
10855
|
z.string().datetime(),
|
|
10199
10856
|
z.null()
|
|
@@ -10219,7 +10876,18 @@ var zShortIdLookupResponse = z.object({
|
|
|
10219
10876
|
z.null()
|
|
10220
10877
|
])
|
|
10221
10878
|
}),
|
|
10222
|
-
type: z.
|
|
10879
|
+
type: z.enum([
|
|
10880
|
+
"default",
|
|
10881
|
+
"error",
|
|
10882
|
+
"csp",
|
|
10883
|
+
"nel",
|
|
10884
|
+
"hpkp",
|
|
10885
|
+
"expectct",
|
|
10886
|
+
"expectstaple",
|
|
10887
|
+
"transaction",
|
|
10888
|
+
"generic",
|
|
10889
|
+
"feedback"
|
|
10890
|
+
]),
|
|
10223
10891
|
issueType: z.string(),
|
|
10224
10892
|
issueCategory: z.string(),
|
|
10225
10893
|
metadata: z.record(z.unknown()),
|
|
@@ -10504,6 +11172,11 @@ var zSizeAnalysisResponse = z.object({
|
|
|
10504
11172
|
z.null()
|
|
10505
11173
|
])
|
|
10506
11174
|
});
|
|
11175
|
+
var zSkipStatusCheck = z.object({
|
|
11176
|
+
sha: z.string().max(40).regex(/^[0-9a-f]{40}$/),
|
|
11177
|
+
repository: z.string().max(255),
|
|
11178
|
+
provider: z.enum(["github", "github_enterprise"])
|
|
11179
|
+
});
|
|
10507
11180
|
var zSnapshotCreateResponse = z.object({
|
|
10508
11181
|
artifactId: z.string(),
|
|
10509
11182
|
snapshotMetricsId: z.string(),
|
|
@@ -10570,7 +11243,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10570
11243
|
]).optional(),
|
|
10571
11244
|
image_file_name: z.string().optional(),
|
|
10572
11245
|
width: z.number().int().optional(),
|
|
10573
|
-
height: z.number().int().optional()
|
|
11246
|
+
height: z.number().int().optional(),
|
|
11247
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10574
11248
|
})).optional(),
|
|
10575
11249
|
image_count: z.number().int().optional(),
|
|
10576
11250
|
added: z.array(z.object({
|
|
@@ -10585,7 +11259,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10585
11259
|
]).optional(),
|
|
10586
11260
|
image_file_name: z.string().optional(),
|
|
10587
11261
|
width: z.number().int().optional(),
|
|
10588
|
-
height: z.number().int().optional()
|
|
11262
|
+
height: z.number().int().optional(),
|
|
11263
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10589
11264
|
})).optional(),
|
|
10590
11265
|
added_count: z.number().int().optional(),
|
|
10591
11266
|
removed: z.array(z.object({
|
|
@@ -10600,7 +11275,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10600
11275
|
]).optional(),
|
|
10601
11276
|
image_file_name: z.string().optional(),
|
|
10602
11277
|
width: z.number().int().optional(),
|
|
10603
|
-
height: z.number().int().optional()
|
|
11278
|
+
height: z.number().int().optional(),
|
|
11279
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10604
11280
|
})).optional(),
|
|
10605
11281
|
removed_count: z.number().int().optional(),
|
|
10606
11282
|
renamed: z.array(z.object({
|
|
@@ -10616,7 +11292,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10616
11292
|
]).optional(),
|
|
10617
11293
|
image_file_name: z.string().optional(),
|
|
10618
11294
|
width: z.number().int().optional(),
|
|
10619
|
-
height: z.number().int().optional()
|
|
11295
|
+
height: z.number().int().optional(),
|
|
11296
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10620
11297
|
}).optional(),
|
|
10621
11298
|
head_image: z.object({
|
|
10622
11299
|
key: z.string().optional(),
|
|
@@ -10630,7 +11307,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10630
11307
|
]).optional(),
|
|
10631
11308
|
image_file_name: z.string().optional(),
|
|
10632
11309
|
width: z.number().int().optional(),
|
|
10633
|
-
height: z.number().int().optional()
|
|
11310
|
+
height: z.number().int().optional(),
|
|
11311
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10634
11312
|
}).optional(),
|
|
10635
11313
|
diff_image_key: z.union([
|
|
10636
11314
|
z.string(),
|
|
@@ -10655,7 +11333,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10655
11333
|
]).optional(),
|
|
10656
11334
|
image_file_name: z.string().optional(),
|
|
10657
11335
|
width: z.number().int().optional(),
|
|
10658
|
-
height: z.number().int().optional()
|
|
11336
|
+
height: z.number().int().optional(),
|
|
11337
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10659
11338
|
}).optional(),
|
|
10660
11339
|
head_image: z.object({
|
|
10661
11340
|
key: z.string().optional(),
|
|
@@ -10669,7 +11348,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10669
11348
|
]).optional(),
|
|
10670
11349
|
image_file_name: z.string().optional(),
|
|
10671
11350
|
width: z.number().int().optional(),
|
|
10672
|
-
height: z.number().int().optional()
|
|
11351
|
+
height: z.number().int().optional(),
|
|
11352
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10673
11353
|
}).optional(),
|
|
10674
11354
|
diff_image_key: z.union([
|
|
10675
11355
|
z.string(),
|
|
@@ -10693,7 +11373,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10693
11373
|
]).optional(),
|
|
10694
11374
|
image_file_name: z.string().optional(),
|
|
10695
11375
|
width: z.number().int().optional(),
|
|
10696
|
-
height: z.number().int().optional()
|
|
11376
|
+
height: z.number().int().optional(),
|
|
11377
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10697
11378
|
})).optional(),
|
|
10698
11379
|
unchanged_count: z.number().int().optional(),
|
|
10699
11380
|
errored: z.array(z.object({
|
|
@@ -10709,7 +11390,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10709
11390
|
]).optional(),
|
|
10710
11391
|
image_file_name: z.string().optional(),
|
|
10711
11392
|
width: z.number().int().optional(),
|
|
10712
|
-
height: z.number().int().optional()
|
|
11393
|
+
height: z.number().int().optional(),
|
|
11394
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10713
11395
|
}).optional(),
|
|
10714
11396
|
head_image: z.object({
|
|
10715
11397
|
key: z.string().optional(),
|
|
@@ -10723,7 +11405,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10723
11405
|
]).optional(),
|
|
10724
11406
|
image_file_name: z.string().optional(),
|
|
10725
11407
|
width: z.number().int().optional(),
|
|
10726
|
-
height: z.number().int().optional()
|
|
11408
|
+
height: z.number().int().optional(),
|
|
11409
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10727
11410
|
}).optional(),
|
|
10728
11411
|
diff_image_key: z.union([
|
|
10729
11412
|
z.string(),
|
|
@@ -10747,7 +11430,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10747
11430
|
]).optional(),
|
|
10748
11431
|
image_file_name: z.string().optional(),
|
|
10749
11432
|
width: z.number().int().optional(),
|
|
10750
|
-
height: z.number().int().optional()
|
|
11433
|
+
height: z.number().int().optional(),
|
|
11434
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10751
11435
|
})).optional(),
|
|
10752
11436
|
skipped_count: z.number().int().optional(),
|
|
10753
11437
|
diff_threshold: z.union([
|
|
@@ -10802,7 +11486,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10802
11486
|
]).optional(),
|
|
10803
11487
|
head_image: z.union([
|
|
10804
11488
|
z.object({
|
|
10805
|
-
|
|
11489
|
+
key: z.string().optional(),
|
|
10806
11490
|
display_name: z.union([
|
|
10807
11491
|
z.string(),
|
|
10808
11492
|
z.null()
|
|
@@ -10814,6 +11498,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10814
11498
|
image_file_name: z.string().optional(),
|
|
10815
11499
|
width: z.number().int().optional(),
|
|
10816
11500
|
height: z.number().int().optional(),
|
|
11501
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
10817
11502
|
diff_threshold: z.union([
|
|
10818
11503
|
z.number(),
|
|
10819
11504
|
z.null()
|
|
@@ -10832,7 +11517,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10832
11517
|
]).optional(),
|
|
10833
11518
|
base_image: z.union([
|
|
10834
11519
|
z.object({
|
|
10835
|
-
|
|
11520
|
+
key: z.string().optional(),
|
|
10836
11521
|
display_name: z.union([
|
|
10837
11522
|
z.string(),
|
|
10838
11523
|
z.null()
|
|
@@ -10844,6 +11529,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10844
11529
|
image_file_name: z.string().optional(),
|
|
10845
11530
|
width: z.number().int().optional(),
|
|
10846
11531
|
height: z.number().int().optional(),
|
|
11532
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
10847
11533
|
diff_threshold: z.union([
|
|
10848
11534
|
z.number(),
|
|
10849
11535
|
z.null()
|
|
@@ -11328,6 +12014,16 @@ var zTeamScim = z.object({
|
|
|
11328
12014
|
display: z.string()
|
|
11329
12015
|
})).optional()
|
|
11330
12016
|
});
|
|
12017
|
+
var zTraceItemStatsResponse = z.object({
|
|
12018
|
+
data: z.array(z.object({
|
|
12019
|
+
attributeDistributions: z.object({
|
|
12020
|
+
data: z.record(z.array(z.object({
|
|
12021
|
+
label: z.string(),
|
|
12022
|
+
value: z.number()
|
|
12023
|
+
})))
|
|
12024
|
+
})
|
|
12025
|
+
}))
|
|
12026
|
+
});
|
|
11331
12027
|
var zUpdateClientKey = z.object({
|
|
11332
12028
|
name: z.string().optional(),
|
|
11333
12029
|
isActive: z.boolean().optional(),
|
|
@@ -12453,7 +13149,7 @@ var zCreateOrganizationDashboardResponse = z.object({
|
|
|
12453
13149
|
z.string(),
|
|
12454
13150
|
z.null()
|
|
12455
13151
|
]),
|
|
12456
|
-
legendType: z.enum(["default", "breakdown"]),
|
|
13152
|
+
legendType: z.enum(["default", "breakdown"]).nullable(),
|
|
12457
13153
|
datasetSource: z.union([
|
|
12458
13154
|
z.string(),
|
|
12459
13155
|
z.null()
|
|
@@ -12645,7 +13341,7 @@ var zGetOrganizationDashboardResponse = z.object({
|
|
|
12645
13341
|
z.string(),
|
|
12646
13342
|
z.null()
|
|
12647
13343
|
]),
|
|
12648
|
-
legendType: z.enum(["default", "breakdown"]),
|
|
13344
|
+
legendType: z.enum(["default", "breakdown"]).nullable(),
|
|
12649
13345
|
datasetSource: z.union([
|
|
12650
13346
|
z.string(),
|
|
12651
13347
|
z.null()
|
|
@@ -12948,7 +13644,7 @@ var zUpdateOrganizationDashboardResponse = z.object({
|
|
|
12948
13644
|
z.string(),
|
|
12949
13645
|
z.null()
|
|
12950
13646
|
]),
|
|
12951
|
-
legendType: z.enum(["default", "breakdown"]),
|
|
13647
|
+
legendType: z.enum(["default", "breakdown"]).nullable(),
|
|
12952
13648
|
datasetSource: z.union([
|
|
12953
13649
|
z.string(),
|
|
12954
13650
|
z.null()
|
|
@@ -13840,16 +14536,81 @@ var zResolveOrganizationEventIdResponse = z.object({
|
|
|
13840
14536
|
z.string(),
|
|
13841
14537
|
z.null()
|
|
13842
14538
|
]),
|
|
13843
|
-
sdk: z.
|
|
14539
|
+
sdk: z.union([
|
|
14540
|
+
z.object({
|
|
14541
|
+
name: z.union([
|
|
14542
|
+
z.string(),
|
|
14543
|
+
z.null()
|
|
14544
|
+
]),
|
|
14545
|
+
version: z.union([
|
|
14546
|
+
z.string(),
|
|
14547
|
+
z.null()
|
|
14548
|
+
])
|
|
14549
|
+
}),
|
|
14550
|
+
z.null()
|
|
14551
|
+
]),
|
|
13844
14552
|
context: z.union([
|
|
13845
14553
|
z.record(z.unknown()),
|
|
13846
14554
|
z.null()
|
|
13847
14555
|
]),
|
|
13848
14556
|
packages: z.record(z.unknown()),
|
|
13849
|
-
type: z.
|
|
13850
|
-
|
|
13851
|
-
|
|
13852
|
-
|
|
14557
|
+
type: z.enum([
|
|
14558
|
+
"default",
|
|
14559
|
+
"error",
|
|
14560
|
+
"csp",
|
|
14561
|
+
"nel",
|
|
14562
|
+
"hpkp",
|
|
14563
|
+
"expectct",
|
|
14564
|
+
"expectstaple",
|
|
14565
|
+
"transaction",
|
|
14566
|
+
"generic",
|
|
14567
|
+
"feedback"
|
|
14568
|
+
]),
|
|
14569
|
+
metadata: z.record(z.unknown()),
|
|
14570
|
+
errors: z.array(z.object({
|
|
14571
|
+
type: z.string(),
|
|
14572
|
+
message: z.string(),
|
|
14573
|
+
data: z.record(z.unknown())
|
|
14574
|
+
})),
|
|
14575
|
+
occurrence: z.union([
|
|
14576
|
+
z.object({
|
|
14577
|
+
id: z.string(),
|
|
14578
|
+
projectId: z.number().int(),
|
|
14579
|
+
eventId: z.string(),
|
|
14580
|
+
fingerprint: z.array(z.string()),
|
|
14581
|
+
issueTitle: z.string(),
|
|
14582
|
+
subtitle: z.string(),
|
|
14583
|
+
resourceId: z.union([
|
|
14584
|
+
z.string(),
|
|
14585
|
+
z.null()
|
|
14586
|
+
]),
|
|
14587
|
+
evidenceData: z.record(z.unknown()),
|
|
14588
|
+
evidenceDisplay: z.array(z.object({
|
|
14589
|
+
name: z.string(),
|
|
14590
|
+
value: z.string(),
|
|
14591
|
+
important: z.boolean()
|
|
14592
|
+
})),
|
|
14593
|
+
type: z.number().int(),
|
|
14594
|
+
detectionTime: z.number(),
|
|
14595
|
+
level: z.union([
|
|
14596
|
+
z.string(),
|
|
14597
|
+
z.null()
|
|
14598
|
+
]),
|
|
14599
|
+
culprit: z.union([
|
|
14600
|
+
z.string(),
|
|
14601
|
+
z.null()
|
|
14602
|
+
]),
|
|
14603
|
+
assignee: z.union([
|
|
14604
|
+
z.string(),
|
|
14605
|
+
z.null()
|
|
14606
|
+
]),
|
|
14607
|
+
priority: z.union([
|
|
14608
|
+
z.number().int(),
|
|
14609
|
+
z.null()
|
|
14610
|
+
])
|
|
14611
|
+
}),
|
|
14612
|
+
z.null()
|
|
14613
|
+
]),
|
|
13853
14614
|
_meta: z.record(z.unknown()),
|
|
13854
14615
|
crashFile: z.union([
|
|
13855
14616
|
z.string(),
|
|
@@ -13861,11 +14622,32 @@ var zResolveOrganizationEventIdResponse = z.object({
|
|
|
13861
14622
|
]).optional(),
|
|
13862
14623
|
dateCreated: z.string().datetime().optional(),
|
|
13863
14624
|
fingerprints: z.array(z.string()).optional(),
|
|
13864
|
-
groupingConfig: z.
|
|
13865
|
-
|
|
13866
|
-
|
|
13867
|
-
|
|
13868
|
-
|
|
14625
|
+
groupingConfig: z.object({
|
|
14626
|
+
id: z.string(),
|
|
14627
|
+
enhancements: z.string()
|
|
14628
|
+
}).optional(),
|
|
14629
|
+
startTimestamp: z.number().optional(),
|
|
14630
|
+
endTimestamp: z.number().optional(),
|
|
14631
|
+
measurements: z.union([
|
|
14632
|
+
z.record(z.object({
|
|
14633
|
+
value: z.number(),
|
|
14634
|
+
unit: z.union([
|
|
14635
|
+
z.string(),
|
|
14636
|
+
z.null()
|
|
14637
|
+
])
|
|
14638
|
+
})),
|
|
14639
|
+
z.null()
|
|
14640
|
+
]).optional(),
|
|
14641
|
+
breakdowns: z.union([
|
|
14642
|
+
z.record(z.record(z.object({
|
|
14643
|
+
value: z.number(),
|
|
14644
|
+
unit: z.union([
|
|
14645
|
+
z.string(),
|
|
14646
|
+
z.null()
|
|
14647
|
+
])
|
|
14648
|
+
}))),
|
|
14649
|
+
z.null()
|
|
14650
|
+
]).optional()
|
|
13869
14651
|
})
|
|
13870
14652
|
});
|
|
13871
14653
|
var zListOrganizationEventsData = z.object({
|
|
@@ -13962,7 +14744,7 @@ var zListOrganizationEventsTimeseriesResponse = z.object({
|
|
|
13962
14744
|
z.number(),
|
|
13963
14745
|
z.null()
|
|
13964
14746
|
]).optional(),
|
|
13965
|
-
confidence: z.enum(["low", "high"]).optional(),
|
|
14747
|
+
confidence: z.enum(["low", "high"]).nullable().optional(),
|
|
13966
14748
|
incompleteReason: z.string().optional()
|
|
13967
14749
|
})),
|
|
13968
14750
|
yAxis: z.string(),
|
|
@@ -14281,6 +15063,10 @@ var zListOrganizationIntegrationsResponse = z.array(z.object({
|
|
|
14281
15063
|
z.array(z.string()),
|
|
14282
15064
|
z.null()
|
|
14283
15065
|
]),
|
|
15066
|
+
outOfDate: z.union([
|
|
15067
|
+
z.boolean(),
|
|
15068
|
+
z.null()
|
|
15069
|
+
]),
|
|
14284
15070
|
status: z.string(),
|
|
14285
15071
|
provider: z.unknown(),
|
|
14286
15072
|
configOrganization: z.unknown(),
|
|
@@ -14329,6 +15115,10 @@ var zGetOrganizationIntegrationResponse = z.object({
|
|
|
14329
15115
|
z.array(z.string()),
|
|
14330
15116
|
z.null()
|
|
14331
15117
|
]),
|
|
15118
|
+
outOfDate: z.union([
|
|
15119
|
+
z.boolean(),
|
|
15120
|
+
z.null()
|
|
15121
|
+
]),
|
|
14332
15122
|
status: z.string(),
|
|
14333
15123
|
provider: z.unknown(),
|
|
14334
15124
|
configOrganization: z.unknown(),
|
|
@@ -14430,10 +15220,24 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14430
15220
|
z.string(),
|
|
14431
15221
|
z.null()
|
|
14432
15222
|
]),
|
|
14433
|
-
level: z.
|
|
14434
|
-
|
|
15223
|
+
level: z.enum([
|
|
15224
|
+
"sample",
|
|
15225
|
+
"debug",
|
|
15226
|
+
"info",
|
|
15227
|
+
"warning",
|
|
15228
|
+
"error",
|
|
15229
|
+
"fatal",
|
|
15230
|
+
"unknown"
|
|
15231
|
+
]),
|
|
15232
|
+
status: z.enum([
|
|
15233
|
+
"resolved",
|
|
15234
|
+
"ignored",
|
|
15235
|
+
"pending_deletion",
|
|
15236
|
+
"pending_merge",
|
|
15237
|
+
"reprocessing",
|
|
15238
|
+
"unresolved"
|
|
15239
|
+
]),
|
|
14435
15240
|
statusDetails: z.object({
|
|
14436
|
-
autoResolved: z.boolean().optional(),
|
|
14437
15241
|
ignoreCount: z.number().int().optional(),
|
|
14438
15242
|
ignoreUntil: z.string().datetime().optional(),
|
|
14439
15243
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -14499,21 +15303,34 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14499
15303
|
inRelease: z.string().optional(),
|
|
14500
15304
|
inCommit: z.string().optional(),
|
|
14501
15305
|
pendingEvents: z.number().int().optional(),
|
|
14502
|
-
info: z.
|
|
15306
|
+
info: z.union([
|
|
15307
|
+
z.object({
|
|
15308
|
+
dateCreated: z.string(),
|
|
15309
|
+
syncCount: z.number().int(),
|
|
15310
|
+
totalEvents: z.number().int()
|
|
15311
|
+
}),
|
|
15312
|
+
z.null()
|
|
15313
|
+
]).optional()
|
|
14503
15314
|
}),
|
|
14504
|
-
substatus: z.
|
|
14505
|
-
|
|
14506
|
-
|
|
14507
|
-
|
|
15315
|
+
substatus: z.enum([
|
|
15316
|
+
"archived_until_escalating",
|
|
15317
|
+
"archived_until_condition_met",
|
|
15318
|
+
"archived_forever",
|
|
15319
|
+
"escalating",
|
|
15320
|
+
"ongoing",
|
|
15321
|
+
"regressed",
|
|
15322
|
+
"new"
|
|
15323
|
+
]).nullable(),
|
|
14508
15324
|
isPublic: z.boolean(),
|
|
14509
15325
|
platform: z.union([
|
|
14510
15326
|
z.string(),
|
|
14511
15327
|
z.null()
|
|
14512
15328
|
]),
|
|
14513
|
-
priority: z.
|
|
14514
|
-
|
|
14515
|
-
|
|
14516
|
-
|
|
15329
|
+
priority: z.enum([
|
|
15330
|
+
"low",
|
|
15331
|
+
"medium",
|
|
15332
|
+
"high"
|
|
15333
|
+
]).nullable(),
|
|
14517
15334
|
priorityLockedAt: z.union([
|
|
14518
15335
|
z.string().datetime(),
|
|
14519
15336
|
z.null()
|
|
@@ -14539,7 +15356,18 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14539
15356
|
z.null()
|
|
14540
15357
|
])
|
|
14541
15358
|
}),
|
|
14542
|
-
type: z.
|
|
15359
|
+
type: z.enum([
|
|
15360
|
+
"default",
|
|
15361
|
+
"error",
|
|
15362
|
+
"csp",
|
|
15363
|
+
"nel",
|
|
15364
|
+
"hpkp",
|
|
15365
|
+
"expectct",
|
|
15366
|
+
"expectstaple",
|
|
15367
|
+
"transaction",
|
|
15368
|
+
"generic",
|
|
15369
|
+
"feedback"
|
|
15370
|
+
]),
|
|
14543
15371
|
issueType: z.string(),
|
|
14544
15372
|
issueCategory: z.string(),
|
|
14545
15373
|
metadata: z.record(z.unknown()),
|
|
@@ -14578,6 +15406,20 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14578
15406
|
z.string().datetime(),
|
|
14579
15407
|
z.null()
|
|
14580
15408
|
]),
|
|
15409
|
+
derivedData: z.object({
|
|
15410
|
+
blocker: z.string(),
|
|
15411
|
+
progress: z.string(),
|
|
15412
|
+
status: z.string(),
|
|
15413
|
+
viewCount: z.number().int(),
|
|
15414
|
+
hasOpenFixPr: z.boolean(),
|
|
15415
|
+
isAssigned: z.boolean(),
|
|
15416
|
+
hasRootCause: z.boolean(),
|
|
15417
|
+
lastCompletedAutofixStep: z.string(),
|
|
15418
|
+
lastProgressedAt: z.union([
|
|
15419
|
+
z.string().datetime(),
|
|
15420
|
+
z.null()
|
|
15421
|
+
])
|
|
15422
|
+
}),
|
|
14581
15423
|
stats: z.record(z.unknown()),
|
|
14582
15424
|
lifetime: z.record(z.unknown()),
|
|
14583
15425
|
filtered: z.union([
|
|
@@ -14773,62 +15615,65 @@ var zListOrganizationMembersResponse = z.array(z.object({
|
|
|
14773
15615
|
id: z.string(),
|
|
14774
15616
|
email: z.string(),
|
|
14775
15617
|
name: z.string(),
|
|
14776
|
-
user: z.
|
|
14777
|
-
|
|
14778
|
-
|
|
14779
|
-
name: z.string(),
|
|
14780
|
-
organization: z.object({
|
|
14781
|
-
slug: z.string(),
|
|
14782
|
-
name: z.string()
|
|
14783
|
-
}),
|
|
14784
|
-
provider: z.object({
|
|
15618
|
+
user: z.union([
|
|
15619
|
+
z.object({
|
|
15620
|
+
identities: z.array(z.object({
|
|
14785
15621
|
id: z.string(),
|
|
14786
|
-
name: z.string()
|
|
14787
|
-
|
|
14788
|
-
|
|
14789
|
-
|
|
14790
|
-
|
|
14791
|
-
|
|
14792
|
-
|
|
14793
|
-
|
|
14794
|
-
|
|
14795
|
-
z.
|
|
14796
|
-
|
|
14797
|
-
|
|
14798
|
-
|
|
14799
|
-
z.
|
|
14800
|
-
|
|
14801
|
-
|
|
14802
|
-
|
|
14803
|
-
|
|
14804
|
-
|
|
14805
|
-
|
|
14806
|
-
|
|
14807
|
-
|
|
14808
|
-
|
|
14809
|
-
|
|
14810
|
-
|
|
14811
|
-
hasPasswordAuth: z.boolean(),
|
|
14812
|
-
isManaged: z.boolean(),
|
|
14813
|
-
dateJoined: z.string().datetime(),
|
|
14814
|
-
lastLogin: z.union([
|
|
14815
|
-
z.string().datetime(),
|
|
14816
|
-
z.null()
|
|
14817
|
-
]),
|
|
14818
|
-
has2fa: z.boolean(),
|
|
14819
|
-
lastActive: z.union([
|
|
14820
|
-
z.string().datetime(),
|
|
14821
|
-
z.null()
|
|
14822
|
-
]),
|
|
14823
|
-
isSuperuser: z.boolean(),
|
|
14824
|
-
isStaff: z.boolean(),
|
|
14825
|
-
experiments: z.record(z.unknown()),
|
|
14826
|
-
emails: z.array(z.object({
|
|
15622
|
+
name: z.string(),
|
|
15623
|
+
organization: z.object({
|
|
15624
|
+
slug: z.string(),
|
|
15625
|
+
name: z.string()
|
|
15626
|
+
}),
|
|
15627
|
+
provider: z.object({
|
|
15628
|
+
id: z.string(),
|
|
15629
|
+
name: z.string()
|
|
15630
|
+
}),
|
|
15631
|
+
dateVerified: z.string().datetime(),
|
|
15632
|
+
dateSynced: z.string().datetime()
|
|
15633
|
+
})).optional(),
|
|
15634
|
+
avatar: z.object({
|
|
15635
|
+
avatarType: z.string().optional(),
|
|
15636
|
+
avatarUuid: z.union([
|
|
15637
|
+
z.string(),
|
|
15638
|
+
z.null()
|
|
15639
|
+
]).optional(),
|
|
15640
|
+
avatarUrl: z.union([
|
|
15641
|
+
z.string(),
|
|
15642
|
+
z.null()
|
|
15643
|
+
]).optional()
|
|
15644
|
+
}).optional(),
|
|
15645
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
15646
|
+
canReset2fa: z.boolean().optional(),
|
|
14827
15647
|
id: z.string(),
|
|
15648
|
+
name: z.string(),
|
|
15649
|
+
username: z.string(),
|
|
14828
15650
|
email: z.string(),
|
|
14829
|
-
|
|
14830
|
-
|
|
14831
|
-
|
|
15651
|
+
avatarUrl: z.string(),
|
|
15652
|
+
isActive: z.boolean(),
|
|
15653
|
+
isSuspended: z.boolean(),
|
|
15654
|
+
hasPasswordAuth: z.boolean(),
|
|
15655
|
+
isManaged: z.boolean(),
|
|
15656
|
+
dateJoined: z.string().datetime(),
|
|
15657
|
+
lastLogin: z.union([
|
|
15658
|
+
z.string().datetime(),
|
|
15659
|
+
z.null()
|
|
15660
|
+
]),
|
|
15661
|
+
has2fa: z.boolean(),
|
|
15662
|
+
lastActive: z.union([
|
|
15663
|
+
z.string().datetime(),
|
|
15664
|
+
z.null()
|
|
15665
|
+
]),
|
|
15666
|
+
isSuperuser: z.boolean(),
|
|
15667
|
+
isStaff: z.boolean(),
|
|
15668
|
+
experiments: z.record(z.unknown()),
|
|
15669
|
+
emails: z.array(z.object({
|
|
15670
|
+
id: z.string(),
|
|
15671
|
+
email: z.string(),
|
|
15672
|
+
is_verified: z.boolean()
|
|
15673
|
+
}))
|
|
15674
|
+
}),
|
|
15675
|
+
z.null()
|
|
15676
|
+
]),
|
|
14832
15677
|
orgRole: z.string(),
|
|
14833
15678
|
pending: z.boolean(),
|
|
14834
15679
|
expired: z.boolean(),
|
|
@@ -14882,62 +15727,65 @@ var zAddOrganizationMemberResponse = z.object({
|
|
|
14882
15727
|
id: z.string(),
|
|
14883
15728
|
email: z.string(),
|
|
14884
15729
|
name: z.string(),
|
|
14885
|
-
user: z.
|
|
14886
|
-
|
|
15730
|
+
user: z.union([
|
|
15731
|
+
z.object({
|
|
15732
|
+
identities: z.array(z.object({
|
|
15733
|
+
id: z.string(),
|
|
15734
|
+
name: z.string(),
|
|
15735
|
+
organization: z.object({
|
|
15736
|
+
slug: z.string(),
|
|
15737
|
+
name: z.string()
|
|
15738
|
+
}),
|
|
15739
|
+
provider: z.object({
|
|
15740
|
+
id: z.string(),
|
|
15741
|
+
name: z.string()
|
|
15742
|
+
}),
|
|
15743
|
+
dateVerified: z.string().datetime(),
|
|
15744
|
+
dateSynced: z.string().datetime()
|
|
15745
|
+
})).optional(),
|
|
15746
|
+
avatar: z.object({
|
|
15747
|
+
avatarType: z.string().optional(),
|
|
15748
|
+
avatarUuid: z.union([
|
|
15749
|
+
z.string(),
|
|
15750
|
+
z.null()
|
|
15751
|
+
]).optional(),
|
|
15752
|
+
avatarUrl: z.union([
|
|
15753
|
+
z.string(),
|
|
15754
|
+
z.null()
|
|
15755
|
+
]).optional()
|
|
15756
|
+
}).optional(),
|
|
15757
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
15758
|
+
canReset2fa: z.boolean().optional(),
|
|
14887
15759
|
id: z.string(),
|
|
14888
15760
|
name: z.string(),
|
|
14889
|
-
|
|
14890
|
-
|
|
14891
|
-
|
|
14892
|
-
|
|
14893
|
-
|
|
14894
|
-
|
|
14895
|
-
|
|
14896
|
-
|
|
14897
|
-
|
|
14898
|
-
|
|
14899
|
-
})).optional(),
|
|
14900
|
-
avatar: z.object({
|
|
14901
|
-
avatarType: z.string().optional(),
|
|
14902
|
-
avatarUuid: z.union([
|
|
14903
|
-
z.string(),
|
|
15761
|
+
username: z.string(),
|
|
15762
|
+
email: z.string(),
|
|
15763
|
+
avatarUrl: z.string(),
|
|
15764
|
+
isActive: z.boolean(),
|
|
15765
|
+
isSuspended: z.boolean(),
|
|
15766
|
+
hasPasswordAuth: z.boolean(),
|
|
15767
|
+
isManaged: z.boolean(),
|
|
15768
|
+
dateJoined: z.string().datetime(),
|
|
15769
|
+
lastLogin: z.union([
|
|
15770
|
+
z.string().datetime(),
|
|
14904
15771
|
z.null()
|
|
14905
|
-
])
|
|
14906
|
-
|
|
14907
|
-
|
|
15772
|
+
]),
|
|
15773
|
+
has2fa: z.boolean(),
|
|
15774
|
+
lastActive: z.union([
|
|
15775
|
+
z.string().datetime(),
|
|
14908
15776
|
z.null()
|
|
14909
|
-
])
|
|
14910
|
-
|
|
14911
|
-
|
|
14912
|
-
|
|
14913
|
-
|
|
14914
|
-
|
|
14915
|
-
|
|
14916
|
-
|
|
14917
|
-
|
|
14918
|
-
|
|
14919
|
-
|
|
14920
|
-
|
|
14921
|
-
isManaged: z.boolean(),
|
|
14922
|
-
dateJoined: z.string().datetime(),
|
|
14923
|
-
lastLogin: z.union([
|
|
14924
|
-
z.string().datetime(),
|
|
14925
|
-
z.null()
|
|
14926
|
-
]),
|
|
14927
|
-
has2fa: z.boolean(),
|
|
14928
|
-
lastActive: z.union([
|
|
14929
|
-
z.string().datetime(),
|
|
14930
|
-
z.null()
|
|
14931
|
-
]),
|
|
14932
|
-
isSuperuser: z.boolean(),
|
|
14933
|
-
isStaff: z.boolean(),
|
|
14934
|
-
experiments: z.record(z.unknown()),
|
|
14935
|
-
emails: z.array(z.object({
|
|
14936
|
-
id: z.string(),
|
|
14937
|
-
email: z.string(),
|
|
14938
|
-
is_verified: z.boolean()
|
|
14939
|
-
}))
|
|
14940
|
-
}).optional(),
|
|
15777
|
+
]),
|
|
15778
|
+
isSuperuser: z.boolean(),
|
|
15779
|
+
isStaff: z.boolean(),
|
|
15780
|
+
experiments: z.record(z.unknown()),
|
|
15781
|
+
emails: z.array(z.object({
|
|
15782
|
+
id: z.string(),
|
|
15783
|
+
email: z.string(),
|
|
15784
|
+
is_verified: z.boolean()
|
|
15785
|
+
}))
|
|
15786
|
+
}),
|
|
15787
|
+
z.null()
|
|
15788
|
+
]),
|
|
14941
15789
|
orgRole: z.string(),
|
|
14942
15790
|
pending: z.boolean(),
|
|
14943
15791
|
expired: z.boolean(),
|
|
@@ -14988,62 +15836,65 @@ var zGetOrganizationMemberResponse = z.object({
|
|
|
14988
15836
|
id: z.string(),
|
|
14989
15837
|
email: z.string(),
|
|
14990
15838
|
name: z.string(),
|
|
14991
|
-
user: z.
|
|
14992
|
-
|
|
15839
|
+
user: z.union([
|
|
15840
|
+
z.object({
|
|
15841
|
+
identities: z.array(z.object({
|
|
15842
|
+
id: z.string(),
|
|
15843
|
+
name: z.string(),
|
|
15844
|
+
organization: z.object({
|
|
15845
|
+
slug: z.string(),
|
|
15846
|
+
name: z.string()
|
|
15847
|
+
}),
|
|
15848
|
+
provider: z.object({
|
|
15849
|
+
id: z.string(),
|
|
15850
|
+
name: z.string()
|
|
15851
|
+
}),
|
|
15852
|
+
dateVerified: z.string().datetime(),
|
|
15853
|
+
dateSynced: z.string().datetime()
|
|
15854
|
+
})).optional(),
|
|
15855
|
+
avatar: z.object({
|
|
15856
|
+
avatarType: z.string().optional(),
|
|
15857
|
+
avatarUuid: z.union([
|
|
15858
|
+
z.string(),
|
|
15859
|
+
z.null()
|
|
15860
|
+
]).optional(),
|
|
15861
|
+
avatarUrl: z.union([
|
|
15862
|
+
z.string(),
|
|
15863
|
+
z.null()
|
|
15864
|
+
]).optional()
|
|
15865
|
+
}).optional(),
|
|
15866
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
15867
|
+
canReset2fa: z.boolean().optional(),
|
|
14993
15868
|
id: z.string(),
|
|
14994
15869
|
name: z.string(),
|
|
14995
|
-
|
|
14996
|
-
|
|
14997
|
-
|
|
14998
|
-
|
|
14999
|
-
|
|
15000
|
-
|
|
15001
|
-
|
|
15002
|
-
|
|
15003
|
-
|
|
15004
|
-
|
|
15005
|
-
})).optional(),
|
|
15006
|
-
avatar: z.object({
|
|
15007
|
-
avatarType: z.string().optional(),
|
|
15008
|
-
avatarUuid: z.union([
|
|
15009
|
-
z.string(),
|
|
15870
|
+
username: z.string(),
|
|
15871
|
+
email: z.string(),
|
|
15872
|
+
avatarUrl: z.string(),
|
|
15873
|
+
isActive: z.boolean(),
|
|
15874
|
+
isSuspended: z.boolean(),
|
|
15875
|
+
hasPasswordAuth: z.boolean(),
|
|
15876
|
+
isManaged: z.boolean(),
|
|
15877
|
+
dateJoined: z.string().datetime(),
|
|
15878
|
+
lastLogin: z.union([
|
|
15879
|
+
z.string().datetime(),
|
|
15010
15880
|
z.null()
|
|
15011
|
-
])
|
|
15012
|
-
|
|
15013
|
-
|
|
15881
|
+
]),
|
|
15882
|
+
has2fa: z.boolean(),
|
|
15883
|
+
lastActive: z.union([
|
|
15884
|
+
z.string().datetime(),
|
|
15014
15885
|
z.null()
|
|
15015
|
-
])
|
|
15016
|
-
|
|
15017
|
-
|
|
15018
|
-
|
|
15019
|
-
|
|
15020
|
-
|
|
15021
|
-
|
|
15022
|
-
|
|
15023
|
-
|
|
15024
|
-
|
|
15025
|
-
|
|
15026
|
-
|
|
15027
|
-
isManaged: z.boolean(),
|
|
15028
|
-
dateJoined: z.string().datetime(),
|
|
15029
|
-
lastLogin: z.union([
|
|
15030
|
-
z.string().datetime(),
|
|
15031
|
-
z.null()
|
|
15032
|
-
]),
|
|
15033
|
-
has2fa: z.boolean(),
|
|
15034
|
-
lastActive: z.union([
|
|
15035
|
-
z.string().datetime(),
|
|
15036
|
-
z.null()
|
|
15037
|
-
]),
|
|
15038
|
-
isSuperuser: z.boolean(),
|
|
15039
|
-
isStaff: z.boolean(),
|
|
15040
|
-
experiments: z.record(z.unknown()),
|
|
15041
|
-
emails: z.array(z.object({
|
|
15042
|
-
id: z.string(),
|
|
15043
|
-
email: z.string(),
|
|
15044
|
-
is_verified: z.boolean()
|
|
15045
|
-
}))
|
|
15046
|
-
}).optional(),
|
|
15886
|
+
]),
|
|
15887
|
+
isSuperuser: z.boolean(),
|
|
15888
|
+
isStaff: z.boolean(),
|
|
15889
|
+
experiments: z.record(z.unknown()),
|
|
15890
|
+
emails: z.array(z.object({
|
|
15891
|
+
id: z.string(),
|
|
15892
|
+
email: z.string(),
|
|
15893
|
+
is_verified: z.boolean()
|
|
15894
|
+
}))
|
|
15895
|
+
}),
|
|
15896
|
+
z.null()
|
|
15897
|
+
]),
|
|
15047
15898
|
orgRole: z.string(),
|
|
15048
15899
|
pending: z.boolean(),
|
|
15049
15900
|
expired: z.boolean(),
|
|
@@ -15137,62 +15988,65 @@ var zUpdateOrganizationMemberResponse = z.object({
|
|
|
15137
15988
|
id: z.string(),
|
|
15138
15989
|
email: z.string(),
|
|
15139
15990
|
name: z.string(),
|
|
15140
|
-
user: z.
|
|
15141
|
-
|
|
15991
|
+
user: z.union([
|
|
15992
|
+
z.object({
|
|
15993
|
+
identities: z.array(z.object({
|
|
15994
|
+
id: z.string(),
|
|
15995
|
+
name: z.string(),
|
|
15996
|
+
organization: z.object({
|
|
15997
|
+
slug: z.string(),
|
|
15998
|
+
name: z.string()
|
|
15999
|
+
}),
|
|
16000
|
+
provider: z.object({
|
|
16001
|
+
id: z.string(),
|
|
16002
|
+
name: z.string()
|
|
16003
|
+
}),
|
|
16004
|
+
dateVerified: z.string().datetime(),
|
|
16005
|
+
dateSynced: z.string().datetime()
|
|
16006
|
+
})).optional(),
|
|
16007
|
+
avatar: z.object({
|
|
16008
|
+
avatarType: z.string().optional(),
|
|
16009
|
+
avatarUuid: z.union([
|
|
16010
|
+
z.string(),
|
|
16011
|
+
z.null()
|
|
16012
|
+
]).optional(),
|
|
16013
|
+
avatarUrl: z.union([
|
|
16014
|
+
z.string(),
|
|
16015
|
+
z.null()
|
|
16016
|
+
]).optional()
|
|
16017
|
+
}).optional(),
|
|
16018
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
16019
|
+
canReset2fa: z.boolean().optional(),
|
|
15142
16020
|
id: z.string(),
|
|
15143
16021
|
name: z.string(),
|
|
15144
|
-
|
|
15145
|
-
|
|
15146
|
-
|
|
15147
|
-
|
|
15148
|
-
|
|
15149
|
-
|
|
15150
|
-
|
|
15151
|
-
|
|
15152
|
-
|
|
15153
|
-
|
|
15154
|
-
})).optional(),
|
|
15155
|
-
avatar: z.object({
|
|
15156
|
-
avatarType: z.string().optional(),
|
|
15157
|
-
avatarUuid: z.union([
|
|
15158
|
-
z.string(),
|
|
16022
|
+
username: z.string(),
|
|
16023
|
+
email: z.string(),
|
|
16024
|
+
avatarUrl: z.string(),
|
|
16025
|
+
isActive: z.boolean(),
|
|
16026
|
+
isSuspended: z.boolean(),
|
|
16027
|
+
hasPasswordAuth: z.boolean(),
|
|
16028
|
+
isManaged: z.boolean(),
|
|
16029
|
+
dateJoined: z.string().datetime(),
|
|
16030
|
+
lastLogin: z.union([
|
|
16031
|
+
z.string().datetime(),
|
|
15159
16032
|
z.null()
|
|
15160
|
-
])
|
|
15161
|
-
|
|
15162
|
-
|
|
16033
|
+
]),
|
|
16034
|
+
has2fa: z.boolean(),
|
|
16035
|
+
lastActive: z.union([
|
|
16036
|
+
z.string().datetime(),
|
|
15163
16037
|
z.null()
|
|
15164
|
-
])
|
|
15165
|
-
|
|
15166
|
-
|
|
15167
|
-
|
|
15168
|
-
|
|
15169
|
-
|
|
15170
|
-
|
|
15171
|
-
|
|
15172
|
-
|
|
15173
|
-
|
|
15174
|
-
|
|
15175
|
-
|
|
15176
|
-
isManaged: z.boolean(),
|
|
15177
|
-
dateJoined: z.string().datetime(),
|
|
15178
|
-
lastLogin: z.union([
|
|
15179
|
-
z.string().datetime(),
|
|
15180
|
-
z.null()
|
|
15181
|
-
]),
|
|
15182
|
-
has2fa: z.boolean(),
|
|
15183
|
-
lastActive: z.union([
|
|
15184
|
-
z.string().datetime(),
|
|
15185
|
-
z.null()
|
|
15186
|
-
]),
|
|
15187
|
-
isSuperuser: z.boolean(),
|
|
15188
|
-
isStaff: z.boolean(),
|
|
15189
|
-
experiments: z.record(z.unknown()),
|
|
15190
|
-
emails: z.array(z.object({
|
|
15191
|
-
id: z.string(),
|
|
15192
|
-
email: z.string(),
|
|
15193
|
-
is_verified: z.boolean()
|
|
15194
|
-
}))
|
|
15195
|
-
}).optional(),
|
|
16038
|
+
]),
|
|
16039
|
+
isSuperuser: z.boolean(),
|
|
16040
|
+
isStaff: z.boolean(),
|
|
16041
|
+
experiments: z.record(z.unknown()),
|
|
16042
|
+
emails: z.array(z.object({
|
|
16043
|
+
id: z.string(),
|
|
16044
|
+
email: z.string(),
|
|
16045
|
+
is_verified: z.boolean()
|
|
16046
|
+
}))
|
|
16047
|
+
}),
|
|
16048
|
+
z.null()
|
|
16049
|
+
]),
|
|
15196
16050
|
orgRole: z.string(),
|
|
15197
16051
|
pending: z.boolean(),
|
|
15198
16052
|
expired: z.boolean(),
|
|
@@ -17892,7 +18746,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17892
18746
|
]).optional(),
|
|
17893
18747
|
image_file_name: z.string().optional(),
|
|
17894
18748
|
width: z.number().int().optional(),
|
|
17895
|
-
height: z.number().int().optional()
|
|
18749
|
+
height: z.number().int().optional(),
|
|
18750
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17896
18751
|
})).optional(),
|
|
17897
18752
|
image_count: z.number().int().optional(),
|
|
17898
18753
|
added: z.array(z.object({
|
|
@@ -17907,7 +18762,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17907
18762
|
]).optional(),
|
|
17908
18763
|
image_file_name: z.string().optional(),
|
|
17909
18764
|
width: z.number().int().optional(),
|
|
17910
|
-
height: z.number().int().optional()
|
|
18765
|
+
height: z.number().int().optional(),
|
|
18766
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17911
18767
|
})).optional(),
|
|
17912
18768
|
added_count: z.number().int().optional(),
|
|
17913
18769
|
removed: z.array(z.object({
|
|
@@ -17922,7 +18778,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17922
18778
|
]).optional(),
|
|
17923
18779
|
image_file_name: z.string().optional(),
|
|
17924
18780
|
width: z.number().int().optional(),
|
|
17925
|
-
height: z.number().int().optional()
|
|
18781
|
+
height: z.number().int().optional(),
|
|
18782
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17926
18783
|
})).optional(),
|
|
17927
18784
|
removed_count: z.number().int().optional(),
|
|
17928
18785
|
renamed: z.array(z.object({
|
|
@@ -17938,7 +18795,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17938
18795
|
]).optional(),
|
|
17939
18796
|
image_file_name: z.string().optional(),
|
|
17940
18797
|
width: z.number().int().optional(),
|
|
17941
|
-
height: z.number().int().optional()
|
|
18798
|
+
height: z.number().int().optional(),
|
|
18799
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17942
18800
|
}).optional(),
|
|
17943
18801
|
head_image: z.object({
|
|
17944
18802
|
key: z.string().optional(),
|
|
@@ -17952,7 +18810,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17952
18810
|
]).optional(),
|
|
17953
18811
|
image_file_name: z.string().optional(),
|
|
17954
18812
|
width: z.number().int().optional(),
|
|
17955
|
-
height: z.number().int().optional()
|
|
18813
|
+
height: z.number().int().optional(),
|
|
18814
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17956
18815
|
}).optional(),
|
|
17957
18816
|
diff_image_key: z.union([
|
|
17958
18817
|
z.string(),
|
|
@@ -17977,7 +18836,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17977
18836
|
]).optional(),
|
|
17978
18837
|
image_file_name: z.string().optional(),
|
|
17979
18838
|
width: z.number().int().optional(),
|
|
17980
|
-
height: z.number().int().optional()
|
|
18839
|
+
height: z.number().int().optional(),
|
|
18840
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17981
18841
|
}).optional(),
|
|
17982
18842
|
head_image: z.object({
|
|
17983
18843
|
key: z.string().optional(),
|
|
@@ -17991,7 +18851,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17991
18851
|
]).optional(),
|
|
17992
18852
|
image_file_name: z.string().optional(),
|
|
17993
18853
|
width: z.number().int().optional(),
|
|
17994
|
-
height: z.number().int().optional()
|
|
18854
|
+
height: z.number().int().optional(),
|
|
18855
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17995
18856
|
}).optional(),
|
|
17996
18857
|
diff_image_key: z.union([
|
|
17997
18858
|
z.string(),
|
|
@@ -18015,7 +18876,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
18015
18876
|
]).optional(),
|
|
18016
18877
|
image_file_name: z.string().optional(),
|
|
18017
18878
|
width: z.number().int().optional(),
|
|
18018
|
-
height: z.number().int().optional()
|
|
18879
|
+
height: z.number().int().optional(),
|
|
18880
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18019
18881
|
})).optional(),
|
|
18020
18882
|
unchanged_count: z.number().int().optional(),
|
|
18021
18883
|
errored: z.array(z.object({
|
|
@@ -18031,7 +18893,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
18031
18893
|
]).optional(),
|
|
18032
18894
|
image_file_name: z.string().optional(),
|
|
18033
18895
|
width: z.number().int().optional(),
|
|
18034
|
-
height: z.number().int().optional()
|
|
18896
|
+
height: z.number().int().optional(),
|
|
18897
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18035
18898
|
}).optional(),
|
|
18036
18899
|
head_image: z.object({
|
|
18037
18900
|
key: z.string().optional(),
|
|
@@ -18045,7 +18908,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
18045
18908
|
]).optional(),
|
|
18046
18909
|
image_file_name: z.string().optional(),
|
|
18047
18910
|
width: z.number().int().optional(),
|
|
18048
|
-
height: z.number().int().optional()
|
|
18911
|
+
height: z.number().int().optional(),
|
|
18912
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18049
18913
|
}).optional(),
|
|
18050
18914
|
diff_image_key: z.union([
|
|
18051
18915
|
z.string(),
|
|
@@ -18069,7 +18933,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
18069
18933
|
]).optional(),
|
|
18070
18934
|
image_file_name: z.string().optional(),
|
|
18071
18935
|
width: z.number().int().optional(),
|
|
18072
|
-
height: z.number().int().optional()
|
|
18936
|
+
height: z.number().int().optional(),
|
|
18937
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18073
18938
|
})).optional(),
|
|
18074
18939
|
skipped_count: z.number().int().optional(),
|
|
18075
18940
|
diff_threshold: z.union([
|
|
@@ -18133,7 +18998,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18133
18998
|
]).optional(),
|
|
18134
18999
|
head_image: z.union([
|
|
18135
19000
|
z.object({
|
|
18136
|
-
|
|
19001
|
+
key: z.string().optional(),
|
|
18137
19002
|
display_name: z.union([
|
|
18138
19003
|
z.string(),
|
|
18139
19004
|
z.null()
|
|
@@ -18145,6 +19010,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18145
19010
|
image_file_name: z.string().optional(),
|
|
18146
19011
|
width: z.number().int().optional(),
|
|
18147
19012
|
height: z.number().int().optional(),
|
|
19013
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
18148
19014
|
diff_threshold: z.union([
|
|
18149
19015
|
z.number(),
|
|
18150
19016
|
z.null()
|
|
@@ -18163,7 +19029,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18163
19029
|
]).optional(),
|
|
18164
19030
|
base_image: z.union([
|
|
18165
19031
|
z.object({
|
|
18166
|
-
|
|
19032
|
+
key: z.string().optional(),
|
|
18167
19033
|
display_name: z.union([
|
|
18168
19034
|
z.string(),
|
|
18169
19035
|
z.null()
|
|
@@ -18175,6 +19041,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18175
19041
|
image_file_name: z.string().optional(),
|
|
18176
19042
|
width: z.number().int().optional(),
|
|
18177
19043
|
height: z.number().int().optional(),
|
|
19044
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
18178
19045
|
diff_threshold: z.union([
|
|
18179
19046
|
z.number(),
|
|
18180
19047
|
z.null()
|
|
@@ -18241,6 +19108,7 @@ var zGetOrganizationPreprodArtifactSnapshotLatestBaseResponse = z.object({
|
|
|
18241
19108
|
image_file_name: z.string().optional(),
|
|
18242
19109
|
width: z.number().int().optional(),
|
|
18243
19110
|
height: z.number().int().optional(),
|
|
19111
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
18244
19112
|
image_url: z.string().optional()
|
|
18245
19113
|
})).optional(),
|
|
18246
19114
|
diff_threshold: z.union([
|
|
@@ -18654,15 +19522,23 @@ var zListOrganizationReleaseThresholdStatusesData = z.object({
|
|
|
18654
19522
|
});
|
|
18655
19523
|
var zListOrganizationReleaseThresholdStatusesResponse = z.record(z.array(z.object({
|
|
18656
19524
|
id: z.string().optional(),
|
|
18657
|
-
|
|
19525
|
+
date_added: z.string().datetime().optional(),
|
|
18658
19526
|
environment: z.union([
|
|
18659
19527
|
z.record(z.unknown()),
|
|
18660
19528
|
z.null()
|
|
18661
19529
|
]).optional(),
|
|
18662
19530
|
project: z.record(z.unknown()).optional(),
|
|
18663
19531
|
release: z.string().optional(),
|
|
18664
|
-
threshold_type: z.
|
|
18665
|
-
|
|
19532
|
+
threshold_type: z.enum([
|
|
19533
|
+
"total_error_count",
|
|
19534
|
+
"new_issue_count",
|
|
19535
|
+
"unhandled_issue_count",
|
|
19536
|
+
"regressed_issue_count",
|
|
19537
|
+
"failure_rate",
|
|
19538
|
+
"crash_free_session_rate",
|
|
19539
|
+
"crash_free_user_rate"
|
|
19540
|
+
]).optional(),
|
|
19541
|
+
trigger_type: z.enum(["over", "under"]).optional(),
|
|
18666
19542
|
value: z.number().int().optional(),
|
|
18667
19543
|
window_in_seconds: z.number().int().optional(),
|
|
18668
19544
|
end: z.string().datetime(),
|
|
@@ -19854,6 +20730,17 @@ var zListOrganizationReleaseCommitsResponse2 = z.array(z.object({
|
|
|
19854
20730
|
z.null()
|
|
19855
20731
|
]),
|
|
19856
20732
|
dateCreated: z.string().datetime(),
|
|
20733
|
+
mergedAt: z.union([
|
|
20734
|
+
z.string().datetime(),
|
|
20735
|
+
z.null()
|
|
20736
|
+
]),
|
|
20737
|
+
status: z.enum([
|
|
20738
|
+
"merged",
|
|
20739
|
+
"open",
|
|
20740
|
+
"closed",
|
|
20741
|
+
"draft",
|
|
20742
|
+
"unknown"
|
|
20743
|
+
]).nullable(),
|
|
19857
20744
|
repository: z.object({
|
|
19858
20745
|
url: z.union([
|
|
19859
20746
|
z.string(),
|
|
@@ -20250,6 +21137,11 @@ var zGetOrganizationReplayCountData = z.object({
|
|
|
20250
21137
|
organization_id_or_slug: z.string()
|
|
20251
21138
|
}),
|
|
20252
21139
|
query: z.object({
|
|
21140
|
+
data_source: z.enum([
|
|
21141
|
+
"events",
|
|
21142
|
+
"search_issues",
|
|
21143
|
+
"spans"
|
|
21144
|
+
]),
|
|
20253
21145
|
environment: z.array(z.string()).optional(),
|
|
20254
21146
|
start: z.string().datetime().optional(),
|
|
20255
21147
|
end: z.string().datetime().optional(),
|
|
@@ -20257,14 +21149,8 @@ var zGetOrganizationReplayCountData = z.object({
|
|
|
20257
21149
|
project: z.array(z.union([z.number().int(), z.string()])).optional(),
|
|
20258
21150
|
project_id_or_slug: z.array(z.string()).optional(),
|
|
20259
21151
|
query: z.string().optional(),
|
|
20260
|
-
data_source: z.enum([
|
|
20261
|
-
"discover",
|
|
20262
|
-
"events",
|
|
20263
|
-
"search_issues",
|
|
20264
|
-
"transactions"
|
|
20265
|
-
]).optional(),
|
|
20266
21152
|
returnIds: z.boolean().optional()
|
|
20267
|
-
})
|
|
21153
|
+
})
|
|
20268
21154
|
});
|
|
20269
21155
|
var zGetOrganizationReplayCountResponse = z.record(z.number().int());
|
|
20270
21156
|
var zListOrganizationReplaySelectorsData = z.object({
|
|
@@ -20339,6 +21225,7 @@ var zListOrganizationReplaysData = z.object({
|
|
|
20339
21225
|
"started_at",
|
|
20340
21226
|
"tags",
|
|
20341
21227
|
"trace_ids",
|
|
21228
|
+
"segment_names",
|
|
20342
21229
|
"urls",
|
|
20343
21230
|
"user",
|
|
20344
21231
|
"clicks",
|
|
@@ -20483,6 +21370,10 @@ var zListOrganizationReplaysResponse = z.object({
|
|
|
20483
21370
|
z.array(z.string()),
|
|
20484
21371
|
z.null()
|
|
20485
21372
|
]).optional(),
|
|
21373
|
+
segment_names: z.union([
|
|
21374
|
+
z.array(z.string()),
|
|
21375
|
+
z.null()
|
|
21376
|
+
]).optional(),
|
|
20486
21377
|
clicks: z.array(z.record(z.unknown())).optional(),
|
|
20487
21378
|
count_dead_clicks: z.union([
|
|
20488
21379
|
z.number().int(),
|
|
@@ -20575,6 +21466,7 @@ var zGetOrganizationReplayData = z.object({
|
|
|
20575
21466
|
"started_at",
|
|
20576
21467
|
"tags",
|
|
20577
21468
|
"trace_ids",
|
|
21469
|
+
"segment_names",
|
|
20578
21470
|
"urls",
|
|
20579
21471
|
"user",
|
|
20580
21472
|
"clicks",
|
|
@@ -20719,6 +21611,10 @@ var zGetOrganizationReplayResponse = z.object({
|
|
|
20719
21611
|
z.array(z.string()),
|
|
20720
21612
|
z.null()
|
|
20721
21613
|
]).optional(),
|
|
21614
|
+
segment_names: z.union([
|
|
21615
|
+
z.array(z.string()),
|
|
21616
|
+
z.null()
|
|
21617
|
+
]).optional(),
|
|
20722
21618
|
clicks: z.array(z.record(z.unknown())).optional(),
|
|
20723
21619
|
count_dead_clicks: z.union([
|
|
20724
21620
|
z.number().int(),
|
|
@@ -20849,6 +21745,17 @@ var zListOrganizationRepoCommitsResponse = z.array(z.object({
|
|
|
20849
21745
|
z.null()
|
|
20850
21746
|
]),
|
|
20851
21747
|
dateCreated: z.string().datetime(),
|
|
21748
|
+
mergedAt: z.union([
|
|
21749
|
+
z.string().datetime(),
|
|
21750
|
+
z.null()
|
|
21751
|
+
]),
|
|
21752
|
+
status: z.enum([
|
|
21753
|
+
"merged",
|
|
21754
|
+
"open",
|
|
21755
|
+
"closed",
|
|
21756
|
+
"draft",
|
|
21757
|
+
"unknown"
|
|
21758
|
+
]).nullable(),
|
|
20852
21759
|
repository: z.object({
|
|
20853
21760
|
url: z.union([
|
|
20854
21761
|
z.string(),
|
|
@@ -21280,6 +22187,7 @@ var zListOrganizationSentryAppsResponse = z.array(z.object({
|
|
|
21280
22187
|
photoType: z.string()
|
|
21281
22188
|
})),
|
|
21282
22189
|
events: z.array(z.string()),
|
|
22190
|
+
webhookEvents: z.array(z.string()),
|
|
21283
22191
|
featureData: z.array(z.string()),
|
|
21284
22192
|
isAlertable: z.boolean(),
|
|
21285
22193
|
metadata: z.string(),
|
|
@@ -21398,6 +22306,20 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21398
22306
|
z.string().datetime(),
|
|
21399
22307
|
z.null()
|
|
21400
22308
|
]).optional(),
|
|
22309
|
+
derivedData: z.object({
|
|
22310
|
+
blocker: z.string(),
|
|
22311
|
+
progress: z.string(),
|
|
22312
|
+
status: z.string(),
|
|
22313
|
+
viewCount: z.number().int(),
|
|
22314
|
+
hasOpenFixPr: z.boolean(),
|
|
22315
|
+
isAssigned: z.boolean(),
|
|
22316
|
+
hasRootCause: z.boolean(),
|
|
22317
|
+
lastCompletedAutofixStep: z.string(),
|
|
22318
|
+
lastProgressedAt: z.union([
|
|
22319
|
+
z.string().datetime(),
|
|
22320
|
+
z.null()
|
|
22321
|
+
])
|
|
22322
|
+
}).optional(),
|
|
21401
22323
|
id: z.string(),
|
|
21402
22324
|
shareId: z.union([
|
|
21403
22325
|
z.string(),
|
|
@@ -21414,10 +22336,24 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21414
22336
|
z.string(),
|
|
21415
22337
|
z.null()
|
|
21416
22338
|
]),
|
|
21417
|
-
level: z.
|
|
21418
|
-
|
|
22339
|
+
level: z.enum([
|
|
22340
|
+
"sample",
|
|
22341
|
+
"debug",
|
|
22342
|
+
"info",
|
|
22343
|
+
"warning",
|
|
22344
|
+
"error",
|
|
22345
|
+
"fatal",
|
|
22346
|
+
"unknown"
|
|
22347
|
+
]),
|
|
22348
|
+
status: z.enum([
|
|
22349
|
+
"resolved",
|
|
22350
|
+
"ignored",
|
|
22351
|
+
"pending_deletion",
|
|
22352
|
+
"pending_merge",
|
|
22353
|
+
"reprocessing",
|
|
22354
|
+
"unresolved"
|
|
22355
|
+
]),
|
|
21419
22356
|
statusDetails: z.object({
|
|
21420
|
-
autoResolved: z.boolean().optional(),
|
|
21421
22357
|
ignoreCount: z.number().int().optional(),
|
|
21422
22358
|
ignoreUntil: z.string().datetime().optional(),
|
|
21423
22359
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -21483,21 +22419,34 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21483
22419
|
inRelease: z.string().optional(),
|
|
21484
22420
|
inCommit: z.string().optional(),
|
|
21485
22421
|
pendingEvents: z.number().int().optional(),
|
|
21486
|
-
info: z.
|
|
22422
|
+
info: z.union([
|
|
22423
|
+
z.object({
|
|
22424
|
+
dateCreated: z.string(),
|
|
22425
|
+
syncCount: z.number().int(),
|
|
22426
|
+
totalEvents: z.number().int()
|
|
22427
|
+
}),
|
|
22428
|
+
z.null()
|
|
22429
|
+
]).optional()
|
|
21487
22430
|
}),
|
|
21488
|
-
substatus: z.
|
|
21489
|
-
|
|
21490
|
-
|
|
21491
|
-
|
|
22431
|
+
substatus: z.enum([
|
|
22432
|
+
"archived_until_escalating",
|
|
22433
|
+
"archived_until_condition_met",
|
|
22434
|
+
"archived_forever",
|
|
22435
|
+
"escalating",
|
|
22436
|
+
"ongoing",
|
|
22437
|
+
"regressed",
|
|
22438
|
+
"new"
|
|
22439
|
+
]).nullable(),
|
|
21492
22440
|
isPublic: z.boolean(),
|
|
21493
22441
|
platform: z.union([
|
|
21494
22442
|
z.string(),
|
|
21495
22443
|
z.null()
|
|
21496
22444
|
]),
|
|
21497
|
-
priority: z.
|
|
21498
|
-
|
|
21499
|
-
|
|
21500
|
-
|
|
22445
|
+
priority: z.enum([
|
|
22446
|
+
"low",
|
|
22447
|
+
"medium",
|
|
22448
|
+
"high"
|
|
22449
|
+
]).nullable(),
|
|
21501
22450
|
priorityLockedAt: z.union([
|
|
21502
22451
|
z.string().datetime(),
|
|
21503
22452
|
z.null()
|
|
@@ -21523,7 +22472,18 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21523
22472
|
z.null()
|
|
21524
22473
|
])
|
|
21525
22474
|
}),
|
|
21526
|
-
type: z.
|
|
22475
|
+
type: z.enum([
|
|
22476
|
+
"default",
|
|
22477
|
+
"error",
|
|
22478
|
+
"csp",
|
|
22479
|
+
"nel",
|
|
22480
|
+
"hpkp",
|
|
22481
|
+
"expectct",
|
|
22482
|
+
"expectstaple",
|
|
22483
|
+
"transaction",
|
|
22484
|
+
"generic",
|
|
22485
|
+
"feedback"
|
|
22486
|
+
]),
|
|
21527
22487
|
issueType: z.string(),
|
|
21528
22488
|
issueCategory: z.string(),
|
|
21529
22489
|
metadata: z.record(z.unknown()),
|
|
@@ -22047,6 +23007,7 @@ var zListOrganizationTraceItemAttributesData = z.object({
|
|
|
22047
23007
|
"tracemetrics"
|
|
22048
23008
|
]).optional(),
|
|
22049
23009
|
attributeType: z.array(z.enum([
|
|
23010
|
+
"array",
|
|
22050
23011
|
"boolean",
|
|
22051
23012
|
"number",
|
|
22052
23013
|
"string"
|
|
@@ -22067,10 +23028,12 @@ var zListOrganizationTraceItemAttributesResponse = z.array(z.object({
|
|
|
22067
23028
|
attributeType: z.enum([
|
|
22068
23029
|
"string",
|
|
22069
23030
|
"number",
|
|
22070
|
-
"boolean"
|
|
23031
|
+
"boolean",
|
|
23032
|
+
"array"
|
|
22071
23033
|
]),
|
|
22072
23034
|
context: z.object({
|
|
22073
23035
|
isConvention: z.boolean().optional(),
|
|
23036
|
+
isCustom: z.boolean().optional(),
|
|
22074
23037
|
brief: z.string().optional(),
|
|
22075
23038
|
isDeprecated: z.boolean().optional(),
|
|
22076
23039
|
details: z.array(z.string()).optional(),
|
|
@@ -22078,6 +23041,35 @@ var zListOrganizationTraceItemAttributesResponse = z.array(z.object({
|
|
|
22078
23041
|
replacementAttribute: z.string().optional()
|
|
22079
23042
|
}).optional()
|
|
22080
23043
|
}));
|
|
23044
|
+
var zListOrganizationTraceItemsStatsData = z.object({
|
|
23045
|
+
body: z.never().optional(),
|
|
23046
|
+
path: z.object({
|
|
23047
|
+
organization_id_or_slug: z.string()
|
|
23048
|
+
}),
|
|
23049
|
+
query: z.object({
|
|
23050
|
+
statsType: z.array(z.enum(["attributeDistributions"])),
|
|
23051
|
+
project: z.array(z.union([z.number().int(), z.string()])).optional(),
|
|
23052
|
+
environment: z.array(z.string()).optional(),
|
|
23053
|
+
statsPeriod: z.string().optional(),
|
|
23054
|
+
start: z.string().datetime().optional(),
|
|
23055
|
+
end: z.string().datetime().optional(),
|
|
23056
|
+
itemType: z.enum(["occurrences", "spans"]).optional(),
|
|
23057
|
+
query: z.string().optional(),
|
|
23058
|
+
substringMatch: z.string().optional(),
|
|
23059
|
+
traceItemsLimit: z.number().int().optional(),
|
|
23060
|
+
cursor: z.string().min(1).optional()
|
|
23061
|
+
})
|
|
23062
|
+
});
|
|
23063
|
+
var zListOrganizationTraceItemsStatsResponse = z.object({
|
|
23064
|
+
data: z.array(z.object({
|
|
23065
|
+
attributeDistributions: z.object({
|
|
23066
|
+
data: z.record(z.array(z.object({
|
|
23067
|
+
label: z.string(),
|
|
23068
|
+
value: z.number()
|
|
23069
|
+
})))
|
|
23070
|
+
})
|
|
23071
|
+
}))
|
|
23072
|
+
});
|
|
22081
23073
|
var zGetOrganizationTraceMetaData = z.object({
|
|
22082
23074
|
body: z.never().optional(),
|
|
22083
23075
|
path: z.object({
|
|
@@ -22121,14 +23113,13 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22121
23113
|
z.object({
|
|
22122
23114
|
description: z.string(),
|
|
22123
23115
|
event_id: z.string(),
|
|
22124
|
-
event_type: z.string(),
|
|
22125
23116
|
project_id: z.number().int(),
|
|
22126
23117
|
project_slug: z.string(),
|
|
22127
23118
|
transaction: z.string(),
|
|
23119
|
+
event_type: z.enum(["span"]),
|
|
22128
23120
|
children: z.array(z.object({
|
|
22129
23121
|
description: z.string(),
|
|
22130
23122
|
event_id: z.string(),
|
|
22131
|
-
event_type: z.string(),
|
|
22132
23123
|
project_id: z.number().int(),
|
|
22133
23124
|
project_slug: z.string(),
|
|
22134
23125
|
transaction: z.string()
|
|
@@ -22136,10 +23127,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22136
23127
|
errors: z.array(z.object({
|
|
22137
23128
|
description: z.string(),
|
|
22138
23129
|
event_id: z.string(),
|
|
22139
|
-
event_type: z.string(),
|
|
22140
23130
|
project_id: z.number().int(),
|
|
22141
23131
|
project_slug: z.string(),
|
|
22142
23132
|
transaction: z.string(),
|
|
23133
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22143
23134
|
issue_id: z.number().int(),
|
|
22144
23135
|
level: z.string(),
|
|
22145
23136
|
start_timestamp: z.number(),
|
|
@@ -22157,10 +23148,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22157
23148
|
occurrences: z.array(z.object({
|
|
22158
23149
|
description: z.string(),
|
|
22159
23150
|
event_id: z.string(),
|
|
22160
|
-
event_type: z.string(),
|
|
22161
23151
|
project_id: z.number().int(),
|
|
22162
23152
|
project_slug: z.string(),
|
|
22163
23153
|
transaction: z.string(),
|
|
23154
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22164
23155
|
issue_id: z.number().int(),
|
|
22165
23156
|
level: z.string(),
|
|
22166
23157
|
start_timestamp: z.number(),
|
|
@@ -22176,10 +23167,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22176
23167
|
issue_type: z.number().int()
|
|
22177
23168
|
})),
|
|
22178
23169
|
duration: z.number(),
|
|
22179
|
-
end_timestamp: z.
|
|
22180
|
-
measurements: z.record(z.
|
|
22181
|
-
browser_web_vital: z.record(z.
|
|
22182
|
-
mobile_app_vital: z.record(z.
|
|
23170
|
+
end_timestamp: z.number(),
|
|
23171
|
+
measurements: z.record(z.number()),
|
|
23172
|
+
browser_web_vital: z.record(z.number()),
|
|
23173
|
+
mobile_app_vital: z.record(z.number()),
|
|
22183
23174
|
op: z.string(),
|
|
22184
23175
|
name: z.string(),
|
|
22185
23176
|
parent_span_id: z.union([
|
|
@@ -22189,7 +23180,7 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22189
23180
|
profile_id: z.string(),
|
|
22190
23181
|
profiler_id: z.string(),
|
|
22191
23182
|
sdk_name: z.string(),
|
|
22192
|
-
start_timestamp: z.
|
|
23183
|
+
start_timestamp: z.number(),
|
|
22193
23184
|
is_transaction: z.boolean(),
|
|
22194
23185
|
transaction_id: z.string(),
|
|
22195
23186
|
additional_attributes: z.record(z.unknown()).optional()
|
|
@@ -22197,10 +23188,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22197
23188
|
z.object({
|
|
22198
23189
|
description: z.string(),
|
|
22199
23190
|
event_id: z.string(),
|
|
22200
|
-
event_type: z.string(),
|
|
22201
23191
|
project_id: z.number().int(),
|
|
22202
23192
|
project_slug: z.string(),
|
|
22203
23193
|
transaction: z.string(),
|
|
23194
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22204
23195
|
issue_id: z.number().int(),
|
|
22205
23196
|
level: z.string(),
|
|
22206
23197
|
start_timestamp: z.number(),
|
|
@@ -22218,14 +23209,13 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22218
23209
|
z.object({
|
|
22219
23210
|
description: z.string(),
|
|
22220
23211
|
event_id: z.string(),
|
|
22221
|
-
event_type: z.string(),
|
|
22222
23212
|
project_id: z.number().int(),
|
|
22223
23213
|
project_slug: z.string(),
|
|
22224
23214
|
transaction: z.string(),
|
|
23215
|
+
event_type: z.enum(["uptime_check"]),
|
|
22225
23216
|
children: z.array(z.object({
|
|
22226
23217
|
description: z.string(),
|
|
22227
23218
|
event_id: z.string(),
|
|
22228
|
-
event_type: z.string(),
|
|
22229
23219
|
project_id: z.number().int(),
|
|
22230
23220
|
project_slug: z.string(),
|
|
22231
23221
|
transaction: z.string()
|
|
@@ -22233,10 +23223,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22233
23223
|
errors: z.array(z.object({
|
|
22234
23224
|
description: z.string(),
|
|
22235
23225
|
event_id: z.string(),
|
|
22236
|
-
event_type: z.string(),
|
|
22237
23226
|
project_id: z.number().int(),
|
|
22238
23227
|
project_slug: z.string(),
|
|
22239
23228
|
transaction: z.string(),
|
|
23229
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22240
23230
|
issue_id: z.number().int(),
|
|
22241
23231
|
level: z.string(),
|
|
22242
23232
|
start_timestamp: z.number(),
|
|
@@ -22254,10 +23244,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22254
23244
|
occurrences: z.array(z.object({
|
|
22255
23245
|
description: z.string(),
|
|
22256
23246
|
event_id: z.string(),
|
|
22257
|
-
event_type: z.string(),
|
|
22258
23247
|
project_id: z.number().int(),
|
|
22259
23248
|
project_slug: z.string(),
|
|
22260
23249
|
transaction: z.string(),
|
|
23250
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22261
23251
|
issue_id: z.number().int(),
|
|
22262
23252
|
level: z.string(),
|
|
22263
23253
|
start_timestamp: z.number(),
|
|
@@ -23153,6 +24143,7 @@ var zGetProjectResponse = z.object({
|
|
|
23153
24143
|
verifySSL: z.boolean(),
|
|
23154
24144
|
scrubIPAddresses: z.boolean(),
|
|
23155
24145
|
scrapeJavaScript: z.boolean(),
|
|
24146
|
+
enableAutoReleaseCreation: z.boolean(),
|
|
23156
24147
|
highlightTags: z.array(z.string()),
|
|
23157
24148
|
highlightContext: z.record(z.unknown()),
|
|
23158
24149
|
highlightPreset: z.object({
|
|
@@ -23262,6 +24253,7 @@ var zUpdateProjectData = z.object({
|
|
|
23262
24253
|
]).optional(),
|
|
23263
24254
|
highlightContext: z.record(z.unknown()).optional(),
|
|
23264
24255
|
highlightTags: z.array(z.string()).optional(),
|
|
24256
|
+
enableAutoReleaseCreation: z.boolean().optional(),
|
|
23265
24257
|
scmSourceContextEnabled: z.boolean().optional()
|
|
23266
24258
|
}).optional(),
|
|
23267
24259
|
path: z.object({
|
|
@@ -23366,6 +24358,7 @@ var zUpdateProjectResponse = z.object({
|
|
|
23366
24358
|
verifySSL: z.boolean(),
|
|
23367
24359
|
scrubIPAddresses: z.boolean(),
|
|
23368
24360
|
scrapeJavaScript: z.boolean(),
|
|
24361
|
+
enableAutoReleaseCreation: z.boolean(),
|
|
23369
24362
|
highlightTags: z.array(z.string()),
|
|
23370
24363
|
highlightContext: z.record(z.unknown()),
|
|
23371
24364
|
highlightPreset: z.object({
|
|
@@ -23604,10 +24597,7 @@ var zListProjectEventsResponse = z.array(z.object({
|
|
|
23604
24597
|
z.string(),
|
|
23605
24598
|
z.null()
|
|
23606
24599
|
]),
|
|
23607
|
-
metadata: z.
|
|
23608
|
-
z.record(z.unknown()),
|
|
23609
|
-
z.null()
|
|
23610
|
-
])
|
|
24600
|
+
metadata: z.record(z.unknown())
|
|
23611
24601
|
}));
|
|
23612
24602
|
var zGetProjectEventData = z.object({
|
|
23613
24603
|
body: z.never().optional(),
|
|
@@ -23693,16 +24683,81 @@ var zGetProjectEventResponse = z.object({
|
|
|
23693
24683
|
z.string(),
|
|
23694
24684
|
z.null()
|
|
23695
24685
|
]),
|
|
23696
|
-
sdk: z.
|
|
24686
|
+
sdk: z.union([
|
|
24687
|
+
z.object({
|
|
24688
|
+
name: z.union([
|
|
24689
|
+
z.string(),
|
|
24690
|
+
z.null()
|
|
24691
|
+
]),
|
|
24692
|
+
version: z.union([
|
|
24693
|
+
z.string(),
|
|
24694
|
+
z.null()
|
|
24695
|
+
])
|
|
24696
|
+
}),
|
|
24697
|
+
z.null()
|
|
24698
|
+
]),
|
|
23697
24699
|
context: z.union([
|
|
23698
24700
|
z.record(z.unknown()),
|
|
23699
24701
|
z.null()
|
|
23700
24702
|
]),
|
|
23701
24703
|
packages: z.record(z.unknown()),
|
|
23702
|
-
type: z.
|
|
23703
|
-
|
|
23704
|
-
|
|
23705
|
-
|
|
24704
|
+
type: z.enum([
|
|
24705
|
+
"default",
|
|
24706
|
+
"error",
|
|
24707
|
+
"csp",
|
|
24708
|
+
"nel",
|
|
24709
|
+
"hpkp",
|
|
24710
|
+
"expectct",
|
|
24711
|
+
"expectstaple",
|
|
24712
|
+
"transaction",
|
|
24713
|
+
"generic",
|
|
24714
|
+
"feedback"
|
|
24715
|
+
]),
|
|
24716
|
+
metadata: z.record(z.unknown()),
|
|
24717
|
+
errors: z.array(z.object({
|
|
24718
|
+
type: z.string(),
|
|
24719
|
+
message: z.string(),
|
|
24720
|
+
data: z.record(z.unknown())
|
|
24721
|
+
})),
|
|
24722
|
+
occurrence: z.union([
|
|
24723
|
+
z.object({
|
|
24724
|
+
id: z.string(),
|
|
24725
|
+
projectId: z.number().int(),
|
|
24726
|
+
eventId: z.string(),
|
|
24727
|
+
fingerprint: z.array(z.string()),
|
|
24728
|
+
issueTitle: z.string(),
|
|
24729
|
+
subtitle: z.string(),
|
|
24730
|
+
resourceId: z.union([
|
|
24731
|
+
z.string(),
|
|
24732
|
+
z.null()
|
|
24733
|
+
]),
|
|
24734
|
+
evidenceData: z.record(z.unknown()),
|
|
24735
|
+
evidenceDisplay: z.array(z.object({
|
|
24736
|
+
name: z.string(),
|
|
24737
|
+
value: z.string(),
|
|
24738
|
+
important: z.boolean()
|
|
24739
|
+
})),
|
|
24740
|
+
type: z.number().int(),
|
|
24741
|
+
detectionTime: z.number(),
|
|
24742
|
+
level: z.union([
|
|
24743
|
+
z.string(),
|
|
24744
|
+
z.null()
|
|
24745
|
+
]),
|
|
24746
|
+
culprit: z.union([
|
|
24747
|
+
z.string(),
|
|
24748
|
+
z.null()
|
|
24749
|
+
]),
|
|
24750
|
+
assignee: z.union([
|
|
24751
|
+
z.string(),
|
|
24752
|
+
z.null()
|
|
24753
|
+
]),
|
|
24754
|
+
priority: z.union([
|
|
24755
|
+
z.number().int(),
|
|
24756
|
+
z.null()
|
|
24757
|
+
])
|
|
24758
|
+
}),
|
|
24759
|
+
z.null()
|
|
24760
|
+
]),
|
|
23706
24761
|
_meta: z.record(z.unknown()),
|
|
23707
24762
|
crashFile: z.union([
|
|
23708
24763
|
z.string(),
|
|
@@ -23714,11 +24769,32 @@ var zGetProjectEventResponse = z.object({
|
|
|
23714
24769
|
]).optional(),
|
|
23715
24770
|
dateCreated: z.string().datetime().optional(),
|
|
23716
24771
|
fingerprints: z.array(z.string()).optional(),
|
|
23717
|
-
groupingConfig: z.
|
|
23718
|
-
|
|
23719
|
-
|
|
23720
|
-
|
|
23721
|
-
|
|
24772
|
+
groupingConfig: z.object({
|
|
24773
|
+
id: z.string(),
|
|
24774
|
+
enhancements: z.string()
|
|
24775
|
+
}).optional(),
|
|
24776
|
+
startTimestamp: z.number().optional(),
|
|
24777
|
+
endTimestamp: z.number().optional(),
|
|
24778
|
+
measurements: z.union([
|
|
24779
|
+
z.record(z.object({
|
|
24780
|
+
value: z.number(),
|
|
24781
|
+
unit: z.union([
|
|
24782
|
+
z.string(),
|
|
24783
|
+
z.null()
|
|
24784
|
+
])
|
|
24785
|
+
})),
|
|
24786
|
+
z.null()
|
|
24787
|
+
]).optional(),
|
|
24788
|
+
breakdowns: z.union([
|
|
24789
|
+
z.record(z.record(z.object({
|
|
24790
|
+
value: z.number(),
|
|
24791
|
+
unit: z.union([
|
|
24792
|
+
z.string(),
|
|
24793
|
+
z.null()
|
|
24794
|
+
])
|
|
24795
|
+
}))),
|
|
24796
|
+
z.null()
|
|
24797
|
+
]).optional(),
|
|
23722
24798
|
release: z.union([
|
|
23723
24799
|
z.object({
|
|
23724
24800
|
id: z.number().int().optional(),
|
|
@@ -23884,7 +24960,9 @@ var zGetProjectEventAttachmentData = z.object({
|
|
|
23884
24960
|
event_id: z.string().regex(/^[0-9a-f]{32}$/),
|
|
23885
24961
|
attachment_id: z.string()
|
|
23886
24962
|
}),
|
|
23887
|
-
query: z.
|
|
24963
|
+
query: z.object({
|
|
24964
|
+
download: z.string().optional()
|
|
24965
|
+
}).optional()
|
|
23888
24966
|
});
|
|
23889
24967
|
var zGetProjectEventAttachmentResponse = z.object({
|
|
23890
24968
|
id: z.string(),
|
|
@@ -24444,62 +25522,65 @@ var zListProjectMembersResponse = z.array(z.object({
|
|
|
24444
25522
|
id: z.string(),
|
|
24445
25523
|
email: z.string(),
|
|
24446
25524
|
name: z.string(),
|
|
24447
|
-
user: z.
|
|
24448
|
-
|
|
25525
|
+
user: z.union([
|
|
25526
|
+
z.object({
|
|
25527
|
+
identities: z.array(z.object({
|
|
25528
|
+
id: z.string(),
|
|
25529
|
+
name: z.string(),
|
|
25530
|
+
organization: z.object({
|
|
25531
|
+
slug: z.string(),
|
|
25532
|
+
name: z.string()
|
|
25533
|
+
}),
|
|
25534
|
+
provider: z.object({
|
|
25535
|
+
id: z.string(),
|
|
25536
|
+
name: z.string()
|
|
25537
|
+
}),
|
|
25538
|
+
dateVerified: z.string().datetime(),
|
|
25539
|
+
dateSynced: z.string().datetime()
|
|
25540
|
+
})).optional(),
|
|
25541
|
+
avatar: z.object({
|
|
25542
|
+
avatarType: z.string().optional(),
|
|
25543
|
+
avatarUuid: z.union([
|
|
25544
|
+
z.string(),
|
|
25545
|
+
z.null()
|
|
25546
|
+
]).optional(),
|
|
25547
|
+
avatarUrl: z.union([
|
|
25548
|
+
z.string(),
|
|
25549
|
+
z.null()
|
|
25550
|
+
]).optional()
|
|
25551
|
+
}).optional(),
|
|
25552
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
25553
|
+
canReset2fa: z.boolean().optional(),
|
|
24449
25554
|
id: z.string(),
|
|
24450
25555
|
name: z.string(),
|
|
24451
|
-
|
|
24452
|
-
|
|
24453
|
-
|
|
24454
|
-
|
|
24455
|
-
|
|
24456
|
-
|
|
24457
|
-
|
|
24458
|
-
|
|
24459
|
-
|
|
24460
|
-
|
|
24461
|
-
})).optional(),
|
|
24462
|
-
avatar: z.object({
|
|
24463
|
-
avatarType: z.string().optional(),
|
|
24464
|
-
avatarUuid: z.union([
|
|
24465
|
-
z.string(),
|
|
25556
|
+
username: z.string(),
|
|
25557
|
+
email: z.string(),
|
|
25558
|
+
avatarUrl: z.string(),
|
|
25559
|
+
isActive: z.boolean(),
|
|
25560
|
+
isSuspended: z.boolean(),
|
|
25561
|
+
hasPasswordAuth: z.boolean(),
|
|
25562
|
+
isManaged: z.boolean(),
|
|
25563
|
+
dateJoined: z.string().datetime(),
|
|
25564
|
+
lastLogin: z.union([
|
|
25565
|
+
z.string().datetime(),
|
|
24466
25566
|
z.null()
|
|
24467
|
-
])
|
|
24468
|
-
|
|
24469
|
-
|
|
25567
|
+
]),
|
|
25568
|
+
has2fa: z.boolean(),
|
|
25569
|
+
lastActive: z.union([
|
|
25570
|
+
z.string().datetime(),
|
|
24470
25571
|
z.null()
|
|
24471
|
-
])
|
|
24472
|
-
|
|
24473
|
-
|
|
24474
|
-
|
|
24475
|
-
|
|
24476
|
-
|
|
24477
|
-
|
|
24478
|
-
|
|
24479
|
-
|
|
24480
|
-
|
|
24481
|
-
|
|
24482
|
-
|
|
24483
|
-
isManaged: z.boolean(),
|
|
24484
|
-
dateJoined: z.string().datetime(),
|
|
24485
|
-
lastLogin: z.union([
|
|
24486
|
-
z.string().datetime(),
|
|
24487
|
-
z.null()
|
|
24488
|
-
]),
|
|
24489
|
-
has2fa: z.boolean(),
|
|
24490
|
-
lastActive: z.union([
|
|
24491
|
-
z.string().datetime(),
|
|
24492
|
-
z.null()
|
|
24493
|
-
]),
|
|
24494
|
-
isSuperuser: z.boolean(),
|
|
24495
|
-
isStaff: z.boolean(),
|
|
24496
|
-
experiments: z.record(z.unknown()),
|
|
24497
|
-
emails: z.array(z.object({
|
|
24498
|
-
id: z.string(),
|
|
24499
|
-
email: z.string(),
|
|
24500
|
-
is_verified: z.boolean()
|
|
24501
|
-
}))
|
|
24502
|
-
}).optional(),
|
|
25572
|
+
]),
|
|
25573
|
+
isSuperuser: z.boolean(),
|
|
25574
|
+
isStaff: z.boolean(),
|
|
25575
|
+
experiments: z.record(z.unknown()),
|
|
25576
|
+
emails: z.array(z.object({
|
|
25577
|
+
id: z.string(),
|
|
25578
|
+
email: z.string(),
|
|
25579
|
+
is_verified: z.boolean()
|
|
25580
|
+
}))
|
|
25581
|
+
}),
|
|
25582
|
+
z.null()
|
|
25583
|
+
]),
|
|
24503
25584
|
orgRole: z.string(),
|
|
24504
25585
|
pending: z.boolean(),
|
|
24505
25586
|
expired: z.boolean(),
|
|
@@ -25635,6 +26716,18 @@ var zGetProjectPreprodSizeAnalysisStatusCheckRulesResponse = z.object({
|
|
|
25635
26716
|
])
|
|
25636
26717
|
}))
|
|
25637
26718
|
});
|
|
26719
|
+
var zCreateProjectPreprodSizeAnalysisSkippedStatusCheckData = z.object({
|
|
26720
|
+
body: z.object({
|
|
26721
|
+
sha: z.string().max(40).regex(/^[0-9a-f]{40}$/),
|
|
26722
|
+
repository: z.string().max(255),
|
|
26723
|
+
provider: z.enum(["github", "github_enterprise"])
|
|
26724
|
+
}),
|
|
26725
|
+
path: z.object({
|
|
26726
|
+
organization_id_or_slug: z.string(),
|
|
26727
|
+
project_id_or_slug: z.string()
|
|
26728
|
+
}),
|
|
26729
|
+
query: z.never().optional()
|
|
26730
|
+
});
|
|
25638
26731
|
var zGetProjectPreprodSnapshotStatusCheckRulesData = z.object({
|
|
25639
26732
|
body: z.never().optional(),
|
|
25640
26733
|
path: z.object({
|
|
@@ -25652,6 +26745,18 @@ var zGetProjectPreprodSnapshotStatusCheckRulesResponse = z.object({
|
|
|
25652
26745
|
failOnRenamed: z.boolean()
|
|
25653
26746
|
})
|
|
25654
26747
|
});
|
|
26748
|
+
var zCreateProjectPreprodSnapshotSkippedStatusCheckData = z.object({
|
|
26749
|
+
body: z.object({
|
|
26750
|
+
sha: z.string().max(40).regex(/^[0-9a-f]{40}$/),
|
|
26751
|
+
repository: z.string().max(255),
|
|
26752
|
+
provider: z.enum(["github", "github_enterprise"])
|
|
26753
|
+
}),
|
|
26754
|
+
path: z.object({
|
|
26755
|
+
organization_id_or_slug: z.string(),
|
|
26756
|
+
project_id_or_slug: z.string()
|
|
26757
|
+
}),
|
|
26758
|
+
query: z.never().optional()
|
|
26759
|
+
});
|
|
25655
26760
|
var zGetProjectInstallableBuildLatestData = z.object({
|
|
25656
26761
|
body: z.never().optional(),
|
|
25657
26762
|
path: z.object({
|
|
@@ -25662,7 +26767,10 @@ var zGetProjectInstallableBuildLatestData = z.object({
|
|
|
25662
26767
|
appId: z.string(),
|
|
25663
26768
|
platform: z.string(),
|
|
25664
26769
|
buildVersion: z.string().optional(),
|
|
25665
|
-
buildNumber: z.
|
|
26770
|
+
buildNumber: z.union([
|
|
26771
|
+
z.number().int(),
|
|
26772
|
+
z.string()
|
|
26773
|
+
]).optional(),
|
|
25666
26774
|
mainBinaryIdentifier: z.string().optional(),
|
|
25667
26775
|
buildConfiguration: z.string().optional(),
|
|
25668
26776
|
codesigningType: z.string().optional(),
|
|
@@ -26202,6 +27310,17 @@ var zListProjectReleaseCommitsResponse2 = z.array(z.object({
|
|
|
26202
27310
|
z.null()
|
|
26203
27311
|
]),
|
|
26204
27312
|
dateCreated: z.string().datetime(),
|
|
27313
|
+
mergedAt: z.union([
|
|
27314
|
+
z.string().datetime(),
|
|
27315
|
+
z.null()
|
|
27316
|
+
]),
|
|
27317
|
+
status: z.enum([
|
|
27318
|
+
"merged",
|
|
27319
|
+
"open",
|
|
27320
|
+
"closed",
|
|
27321
|
+
"draft",
|
|
27322
|
+
"unknown"
|
|
27323
|
+
]).nullable(),
|
|
26205
27324
|
repository: z.object({
|
|
26206
27325
|
url: z.union([
|
|
26207
27326
|
z.string(),
|
|
@@ -27676,6 +28795,7 @@ var zGetSentryAppResponse = z.object({
|
|
|
27676
28795
|
photoType: z.string()
|
|
27677
28796
|
})),
|
|
27678
28797
|
events: z.array(z.string()),
|
|
28798
|
+
webhookEvents: z.array(z.string()),
|
|
27679
28799
|
featureData: z.array(z.string()),
|
|
27680
28800
|
isAlertable: z.boolean(),
|
|
27681
28801
|
metadata: z.string(),
|
|
@@ -27771,6 +28891,7 @@ var zUpdateSentryAppResponse = z.object({
|
|
|
27771
28891
|
photoType: z.string()
|
|
27772
28892
|
})),
|
|
27773
28893
|
events: z.array(z.string()),
|
|
28894
|
+
webhookEvents: z.array(z.string()),
|
|
27774
28895
|
featureData: z.array(z.string()),
|
|
27775
28896
|
isAlertable: z.boolean(),
|
|
27776
28897
|
metadata: z.string(),
|
|
@@ -28955,6 +30076,20 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
28955
30076
|
z.string().datetime(),
|
|
28956
30077
|
z.null()
|
|
28957
30078
|
]).optional(),
|
|
30079
|
+
derivedData: z.object({
|
|
30080
|
+
blocker: z.string(),
|
|
30081
|
+
progress: z.string(),
|
|
30082
|
+
status: z.string(),
|
|
30083
|
+
viewCount: z.number().int(),
|
|
30084
|
+
hasOpenFixPr: z.boolean(),
|
|
30085
|
+
isAssigned: z.boolean(),
|
|
30086
|
+
hasRootCause: z.boolean(),
|
|
30087
|
+
lastCompletedAutofixStep: z.string(),
|
|
30088
|
+
lastProgressedAt: z.union([
|
|
30089
|
+
z.string().datetime(),
|
|
30090
|
+
z.null()
|
|
30091
|
+
])
|
|
30092
|
+
}).optional(),
|
|
28958
30093
|
id: z.string(),
|
|
28959
30094
|
shareId: z.union([
|
|
28960
30095
|
z.string(),
|
|
@@ -28971,10 +30106,24 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
28971
30106
|
z.string(),
|
|
28972
30107
|
z.null()
|
|
28973
30108
|
]),
|
|
28974
|
-
level: z.
|
|
28975
|
-
|
|
30109
|
+
level: z.enum([
|
|
30110
|
+
"sample",
|
|
30111
|
+
"debug",
|
|
30112
|
+
"info",
|
|
30113
|
+
"warning",
|
|
30114
|
+
"error",
|
|
30115
|
+
"fatal",
|
|
30116
|
+
"unknown"
|
|
30117
|
+
]),
|
|
30118
|
+
status: z.enum([
|
|
30119
|
+
"resolved",
|
|
30120
|
+
"ignored",
|
|
30121
|
+
"pending_deletion",
|
|
30122
|
+
"pending_merge",
|
|
30123
|
+
"reprocessing",
|
|
30124
|
+
"unresolved"
|
|
30125
|
+
]),
|
|
28976
30126
|
statusDetails: z.object({
|
|
28977
|
-
autoResolved: z.boolean().optional(),
|
|
28978
30127
|
ignoreCount: z.number().int().optional(),
|
|
28979
30128
|
ignoreUntil: z.string().datetime().optional(),
|
|
28980
30129
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -29040,21 +30189,34 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
29040
30189
|
inRelease: z.string().optional(),
|
|
29041
30190
|
inCommit: z.string().optional(),
|
|
29042
30191
|
pendingEvents: z.number().int().optional(),
|
|
29043
|
-
info: z.
|
|
30192
|
+
info: z.union([
|
|
30193
|
+
z.object({
|
|
30194
|
+
dateCreated: z.string(),
|
|
30195
|
+
syncCount: z.number().int(),
|
|
30196
|
+
totalEvents: z.number().int()
|
|
30197
|
+
}),
|
|
30198
|
+
z.null()
|
|
30199
|
+
]).optional()
|
|
29044
30200
|
}),
|
|
29045
|
-
substatus: z.
|
|
29046
|
-
|
|
29047
|
-
|
|
29048
|
-
|
|
30201
|
+
substatus: z.enum([
|
|
30202
|
+
"archived_until_escalating",
|
|
30203
|
+
"archived_until_condition_met",
|
|
30204
|
+
"archived_forever",
|
|
30205
|
+
"escalating",
|
|
30206
|
+
"ongoing",
|
|
30207
|
+
"regressed",
|
|
30208
|
+
"new"
|
|
30209
|
+
]).nullable(),
|
|
29049
30210
|
isPublic: z.boolean(),
|
|
29050
30211
|
platform: z.union([
|
|
29051
30212
|
z.string(),
|
|
29052
30213
|
z.null()
|
|
29053
30214
|
]),
|
|
29054
|
-
priority: z.
|
|
29055
|
-
|
|
29056
|
-
|
|
29057
|
-
|
|
30215
|
+
priority: z.enum([
|
|
30216
|
+
"low",
|
|
30217
|
+
"medium",
|
|
30218
|
+
"high"
|
|
30219
|
+
]).nullable(),
|
|
29058
30220
|
priorityLockedAt: z.union([
|
|
29059
30221
|
z.string().datetime(),
|
|
29060
30222
|
z.null()
|
|
@@ -29080,7 +30242,18 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
29080
30242
|
z.null()
|
|
29081
30243
|
])
|
|
29082
30244
|
}),
|
|
29083
|
-
type: z.
|
|
30245
|
+
type: z.enum([
|
|
30246
|
+
"default",
|
|
30247
|
+
"error",
|
|
30248
|
+
"csp",
|
|
30249
|
+
"nel",
|
|
30250
|
+
"hpkp",
|
|
30251
|
+
"expectct",
|
|
30252
|
+
"expectstaple",
|
|
30253
|
+
"transaction",
|
|
30254
|
+
"generic",
|
|
30255
|
+
"feedback"
|
|
30256
|
+
]),
|
|
29084
30257
|
issueType: z.string(),
|
|
29085
30258
|
issueCategory: z.string(),
|
|
29086
30259
|
metadata: z.record(z.unknown()),
|
|
@@ -29236,6 +30409,20 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29236
30409
|
z.string().datetime(),
|
|
29237
30410
|
z.null()
|
|
29238
30411
|
]).optional(),
|
|
30412
|
+
derivedData: z.object({
|
|
30413
|
+
blocker: z.string(),
|
|
30414
|
+
progress: z.string(),
|
|
30415
|
+
status: z.string(),
|
|
30416
|
+
viewCount: z.number().int(),
|
|
30417
|
+
hasOpenFixPr: z.boolean(),
|
|
30418
|
+
isAssigned: z.boolean(),
|
|
30419
|
+
hasRootCause: z.boolean(),
|
|
30420
|
+
lastCompletedAutofixStep: z.string(),
|
|
30421
|
+
lastProgressedAt: z.union([
|
|
30422
|
+
z.string().datetime(),
|
|
30423
|
+
z.null()
|
|
30424
|
+
])
|
|
30425
|
+
}).optional(),
|
|
29239
30426
|
id: z.string(),
|
|
29240
30427
|
shareId: z.union([
|
|
29241
30428
|
z.string(),
|
|
@@ -29252,10 +30439,24 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29252
30439
|
z.string(),
|
|
29253
30440
|
z.null()
|
|
29254
30441
|
]),
|
|
29255
|
-
level: z.
|
|
29256
|
-
|
|
30442
|
+
level: z.enum([
|
|
30443
|
+
"sample",
|
|
30444
|
+
"debug",
|
|
30445
|
+
"info",
|
|
30446
|
+
"warning",
|
|
30447
|
+
"error",
|
|
30448
|
+
"fatal",
|
|
30449
|
+
"unknown"
|
|
30450
|
+
]),
|
|
30451
|
+
status: z.enum([
|
|
30452
|
+
"resolved",
|
|
30453
|
+
"ignored",
|
|
30454
|
+
"pending_deletion",
|
|
30455
|
+
"pending_merge",
|
|
30456
|
+
"reprocessing",
|
|
30457
|
+
"unresolved"
|
|
30458
|
+
]),
|
|
29257
30459
|
statusDetails: z.object({
|
|
29258
|
-
autoResolved: z.boolean().optional(),
|
|
29259
30460
|
ignoreCount: z.number().int().optional(),
|
|
29260
30461
|
ignoreUntil: z.string().datetime().optional(),
|
|
29261
30462
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -29321,21 +30522,34 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29321
30522
|
inRelease: z.string().optional(),
|
|
29322
30523
|
inCommit: z.string().optional(),
|
|
29323
30524
|
pendingEvents: z.number().int().optional(),
|
|
29324
|
-
info: z.
|
|
30525
|
+
info: z.union([
|
|
30526
|
+
z.object({
|
|
30527
|
+
dateCreated: z.string(),
|
|
30528
|
+
syncCount: z.number().int(),
|
|
30529
|
+
totalEvents: z.number().int()
|
|
30530
|
+
}),
|
|
30531
|
+
z.null()
|
|
30532
|
+
]).optional()
|
|
29325
30533
|
}),
|
|
29326
|
-
substatus: z.
|
|
29327
|
-
|
|
29328
|
-
|
|
29329
|
-
|
|
30534
|
+
substatus: z.enum([
|
|
30535
|
+
"archived_until_escalating",
|
|
30536
|
+
"archived_until_condition_met",
|
|
30537
|
+
"archived_forever",
|
|
30538
|
+
"escalating",
|
|
30539
|
+
"ongoing",
|
|
30540
|
+
"regressed",
|
|
30541
|
+
"new"
|
|
30542
|
+
]).nullable(),
|
|
29330
30543
|
isPublic: z.boolean(),
|
|
29331
30544
|
platform: z.union([
|
|
29332
30545
|
z.string(),
|
|
29333
30546
|
z.null()
|
|
29334
30547
|
]),
|
|
29335
|
-
priority: z.
|
|
29336
|
-
|
|
29337
|
-
|
|
29338
|
-
|
|
30548
|
+
priority: z.enum([
|
|
30549
|
+
"low",
|
|
30550
|
+
"medium",
|
|
30551
|
+
"high"
|
|
30552
|
+
]).nullable(),
|
|
29339
30553
|
priorityLockedAt: z.union([
|
|
29340
30554
|
z.string().datetime(),
|
|
29341
30555
|
z.null()
|
|
@@ -29361,7 +30575,18 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29361
30575
|
z.null()
|
|
29362
30576
|
])
|
|
29363
30577
|
}),
|
|
29364
|
-
type: z.
|
|
30578
|
+
type: z.enum([
|
|
30579
|
+
"default",
|
|
30580
|
+
"error",
|
|
30581
|
+
"csp",
|
|
30582
|
+
"nel",
|
|
30583
|
+
"hpkp",
|
|
30584
|
+
"expectct",
|
|
30585
|
+
"expectstaple",
|
|
30586
|
+
"transaction",
|
|
30587
|
+
"generic",
|
|
30588
|
+
"feedback"
|
|
30589
|
+
]),
|
|
29365
30590
|
issueType: z.string(),
|
|
29366
30591
|
issueCategory: z.string(),
|
|
29367
30592
|
metadata: z.record(z.unknown()),
|
|
@@ -29427,7 +30652,8 @@ var zStartOrganizationIssueAutofixData = z.object({
|
|
|
29427
30652
|
user_context: z.string().max(1000).optional(),
|
|
29428
30653
|
repo_name: z.string().optional(),
|
|
29429
30654
|
insert_index: z.number().int().optional(),
|
|
29430
|
-
referrer: z.string().optional()
|
|
30655
|
+
referrer: z.string().optional(),
|
|
30656
|
+
enable_bash_tools: z.boolean().optional().default(false)
|
|
29431
30657
|
}).optional(),
|
|
29432
30658
|
path: z.object({
|
|
29433
30659
|
organization_id_or_slug: z.string(),
|
|
@@ -29526,10 +30752,7 @@ var zListOrganizationIssueEventsResponse = z.array(z.object({
|
|
|
29526
30752
|
z.string(),
|
|
29527
30753
|
z.null()
|
|
29528
30754
|
]),
|
|
29529
|
-
metadata: z.
|
|
29530
|
-
z.record(z.unknown()),
|
|
29531
|
-
z.null()
|
|
29532
|
-
])
|
|
30755
|
+
metadata: z.record(z.unknown())
|
|
29533
30756
|
}));
|
|
29534
30757
|
var zGetOrganizationIssueEventData = z.object({
|
|
29535
30758
|
body: z.never().optional(),
|
|
@@ -29619,16 +30842,81 @@ var zGetOrganizationIssueEventResponse = z.object({
|
|
|
29619
30842
|
z.string(),
|
|
29620
30843
|
z.null()
|
|
29621
30844
|
]),
|
|
29622
|
-
sdk: z.
|
|
30845
|
+
sdk: z.union([
|
|
30846
|
+
z.object({
|
|
30847
|
+
name: z.union([
|
|
30848
|
+
z.string(),
|
|
30849
|
+
z.null()
|
|
30850
|
+
]),
|
|
30851
|
+
version: z.union([
|
|
30852
|
+
z.string(),
|
|
30853
|
+
z.null()
|
|
30854
|
+
])
|
|
30855
|
+
}),
|
|
30856
|
+
z.null()
|
|
30857
|
+
]),
|
|
29623
30858
|
context: z.union([
|
|
29624
30859
|
z.record(z.unknown()),
|
|
29625
30860
|
z.null()
|
|
29626
30861
|
]),
|
|
29627
30862
|
packages: z.record(z.unknown()),
|
|
29628
|
-
type: z.
|
|
29629
|
-
|
|
29630
|
-
|
|
29631
|
-
|
|
30863
|
+
type: z.enum([
|
|
30864
|
+
"default",
|
|
30865
|
+
"error",
|
|
30866
|
+
"csp",
|
|
30867
|
+
"nel",
|
|
30868
|
+
"hpkp",
|
|
30869
|
+
"expectct",
|
|
30870
|
+
"expectstaple",
|
|
30871
|
+
"transaction",
|
|
30872
|
+
"generic",
|
|
30873
|
+
"feedback"
|
|
30874
|
+
]),
|
|
30875
|
+
metadata: z.record(z.unknown()),
|
|
30876
|
+
errors: z.array(z.object({
|
|
30877
|
+
type: z.string(),
|
|
30878
|
+
message: z.string(),
|
|
30879
|
+
data: z.record(z.unknown())
|
|
30880
|
+
})),
|
|
30881
|
+
occurrence: z.union([
|
|
30882
|
+
z.object({
|
|
30883
|
+
id: z.string(),
|
|
30884
|
+
projectId: z.number().int(),
|
|
30885
|
+
eventId: z.string(),
|
|
30886
|
+
fingerprint: z.array(z.string()),
|
|
30887
|
+
issueTitle: z.string(),
|
|
30888
|
+
subtitle: z.string(),
|
|
30889
|
+
resourceId: z.union([
|
|
30890
|
+
z.string(),
|
|
30891
|
+
z.null()
|
|
30892
|
+
]),
|
|
30893
|
+
evidenceData: z.record(z.unknown()),
|
|
30894
|
+
evidenceDisplay: z.array(z.object({
|
|
30895
|
+
name: z.string(),
|
|
30896
|
+
value: z.string(),
|
|
30897
|
+
important: z.boolean()
|
|
30898
|
+
})),
|
|
30899
|
+
type: z.number().int(),
|
|
30900
|
+
detectionTime: z.number(),
|
|
30901
|
+
level: z.union([
|
|
30902
|
+
z.string(),
|
|
30903
|
+
z.null()
|
|
30904
|
+
]),
|
|
30905
|
+
culprit: z.union([
|
|
30906
|
+
z.string(),
|
|
30907
|
+
z.null()
|
|
30908
|
+
]),
|
|
30909
|
+
assignee: z.union([
|
|
30910
|
+
z.string(),
|
|
30911
|
+
z.null()
|
|
30912
|
+
]),
|
|
30913
|
+
priority: z.union([
|
|
30914
|
+
z.number().int(),
|
|
30915
|
+
z.null()
|
|
30916
|
+
])
|
|
30917
|
+
}),
|
|
30918
|
+
z.null()
|
|
30919
|
+
]),
|
|
29632
30920
|
_meta: z.record(z.unknown()),
|
|
29633
30921
|
crashFile: z.union([
|
|
29634
30922
|
z.string(),
|
|
@@ -29640,11 +30928,32 @@ var zGetOrganizationIssueEventResponse = z.object({
|
|
|
29640
30928
|
]).optional(),
|
|
29641
30929
|
dateCreated: z.string().datetime().optional(),
|
|
29642
30930
|
fingerprints: z.array(z.string()).optional(),
|
|
29643
|
-
groupingConfig: z.
|
|
29644
|
-
|
|
29645
|
-
|
|
29646
|
-
|
|
29647
|
-
|
|
30931
|
+
groupingConfig: z.object({
|
|
30932
|
+
id: z.string(),
|
|
30933
|
+
enhancements: z.string()
|
|
30934
|
+
}).optional(),
|
|
30935
|
+
startTimestamp: z.number().optional(),
|
|
30936
|
+
endTimestamp: z.number().optional(),
|
|
30937
|
+
measurements: z.union([
|
|
30938
|
+
z.record(z.object({
|
|
30939
|
+
value: z.number(),
|
|
30940
|
+
unit: z.union([
|
|
30941
|
+
z.string(),
|
|
30942
|
+
z.null()
|
|
30943
|
+
])
|
|
30944
|
+
})),
|
|
30945
|
+
z.null()
|
|
30946
|
+
]).optional(),
|
|
30947
|
+
breakdowns: z.union([
|
|
30948
|
+
z.record(z.record(z.object({
|
|
30949
|
+
value: z.number(),
|
|
30950
|
+
unit: z.union([
|
|
30951
|
+
z.string(),
|
|
30952
|
+
z.null()
|
|
30953
|
+
])
|
|
30954
|
+
}))),
|
|
30955
|
+
z.null()
|
|
30956
|
+
]).optional(),
|
|
29648
30957
|
release: z.union([
|
|
29649
30958
|
z.object({
|
|
29650
30959
|
id: z.number().int().optional(),
|
|
@@ -29872,16 +31181,81 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29872
31181
|
z.string(),
|
|
29873
31182
|
z.null()
|
|
29874
31183
|
]),
|
|
29875
|
-
sdk: z.
|
|
31184
|
+
sdk: z.union([
|
|
31185
|
+
z.object({
|
|
31186
|
+
name: z.union([
|
|
31187
|
+
z.string(),
|
|
31188
|
+
z.null()
|
|
31189
|
+
]),
|
|
31190
|
+
version: z.union([
|
|
31191
|
+
z.string(),
|
|
31192
|
+
z.null()
|
|
31193
|
+
])
|
|
31194
|
+
}),
|
|
31195
|
+
z.null()
|
|
31196
|
+
]),
|
|
29876
31197
|
context: z.union([
|
|
29877
31198
|
z.record(z.unknown()),
|
|
29878
31199
|
z.null()
|
|
29879
31200
|
]),
|
|
29880
31201
|
packages: z.record(z.unknown()),
|
|
29881
|
-
type: z.
|
|
29882
|
-
|
|
29883
|
-
|
|
29884
|
-
|
|
31202
|
+
type: z.enum([
|
|
31203
|
+
"default",
|
|
31204
|
+
"error",
|
|
31205
|
+
"csp",
|
|
31206
|
+
"nel",
|
|
31207
|
+
"hpkp",
|
|
31208
|
+
"expectct",
|
|
31209
|
+
"expectstaple",
|
|
31210
|
+
"transaction",
|
|
31211
|
+
"generic",
|
|
31212
|
+
"feedback"
|
|
31213
|
+
]),
|
|
31214
|
+
metadata: z.record(z.unknown()),
|
|
31215
|
+
errors: z.array(z.object({
|
|
31216
|
+
type: z.string(),
|
|
31217
|
+
message: z.string(),
|
|
31218
|
+
data: z.record(z.unknown())
|
|
31219
|
+
})),
|
|
31220
|
+
occurrence: z.union([
|
|
31221
|
+
z.object({
|
|
31222
|
+
id: z.string(),
|
|
31223
|
+
projectId: z.number().int(),
|
|
31224
|
+
eventId: z.string(),
|
|
31225
|
+
fingerprint: z.array(z.string()),
|
|
31226
|
+
issueTitle: z.string(),
|
|
31227
|
+
subtitle: z.string(),
|
|
31228
|
+
resourceId: z.union([
|
|
31229
|
+
z.string(),
|
|
31230
|
+
z.null()
|
|
31231
|
+
]),
|
|
31232
|
+
evidenceData: z.record(z.unknown()),
|
|
31233
|
+
evidenceDisplay: z.array(z.object({
|
|
31234
|
+
name: z.string(),
|
|
31235
|
+
value: z.string(),
|
|
31236
|
+
important: z.boolean()
|
|
31237
|
+
})),
|
|
31238
|
+
type: z.number().int(),
|
|
31239
|
+
detectionTime: z.number(),
|
|
31240
|
+
level: z.union([
|
|
31241
|
+
z.string(),
|
|
31242
|
+
z.null()
|
|
31243
|
+
]),
|
|
31244
|
+
culprit: z.union([
|
|
31245
|
+
z.string(),
|
|
31246
|
+
z.null()
|
|
31247
|
+
]),
|
|
31248
|
+
assignee: z.union([
|
|
31249
|
+
z.string(),
|
|
31250
|
+
z.null()
|
|
31251
|
+
]),
|
|
31252
|
+
priority: z.union([
|
|
31253
|
+
z.number().int(),
|
|
31254
|
+
z.null()
|
|
31255
|
+
])
|
|
31256
|
+
}),
|
|
31257
|
+
z.null()
|
|
31258
|
+
]),
|
|
29885
31259
|
_meta: z.record(z.unknown()),
|
|
29886
31260
|
crashFile: z.union([
|
|
29887
31261
|
z.string(),
|
|
@@ -29893,11 +31267,32 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29893
31267
|
]).optional(),
|
|
29894
31268
|
dateCreated: z.string().datetime().optional(),
|
|
29895
31269
|
fingerprints: z.array(z.string()).optional(),
|
|
29896
|
-
groupingConfig: z.
|
|
29897
|
-
|
|
29898
|
-
|
|
29899
|
-
|
|
29900
|
-
|
|
31270
|
+
groupingConfig: z.object({
|
|
31271
|
+
id: z.string(),
|
|
31272
|
+
enhancements: z.string()
|
|
31273
|
+
}).optional(),
|
|
31274
|
+
startTimestamp: z.number().optional(),
|
|
31275
|
+
endTimestamp: z.number().optional(),
|
|
31276
|
+
measurements: z.union([
|
|
31277
|
+
z.record(z.object({
|
|
31278
|
+
value: z.number(),
|
|
31279
|
+
unit: z.union([
|
|
31280
|
+
z.string(),
|
|
31281
|
+
z.null()
|
|
31282
|
+
])
|
|
31283
|
+
})),
|
|
31284
|
+
z.null()
|
|
31285
|
+
]).optional(),
|
|
31286
|
+
breakdowns: z.union([
|
|
31287
|
+
z.record(z.record(z.object({
|
|
31288
|
+
value: z.number(),
|
|
31289
|
+
unit: z.union([
|
|
31290
|
+
z.string(),
|
|
31291
|
+
z.null()
|
|
31292
|
+
])
|
|
31293
|
+
}))),
|
|
31294
|
+
z.null()
|
|
31295
|
+
]).optional()
|
|
29901
31296
|
}),
|
|
29902
31297
|
z.object({
|
|
29903
31298
|
id: z.string(),
|
|
@@ -29965,10 +31360,7 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29965
31360
|
z.string(),
|
|
29966
31361
|
z.null()
|
|
29967
31362
|
]),
|
|
29968
|
-
metadata: z.
|
|
29969
|
-
z.record(z.unknown()),
|
|
29970
|
-
z.null()
|
|
29971
|
-
])
|
|
31363
|
+
metadata: z.record(z.unknown())
|
|
29972
31364
|
}),
|
|
29973
31365
|
z.union([
|
|
29974
31366
|
z.record(z.unknown()),
|
|
@@ -29981,6 +31373,102 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29981
31373
|
z.null()
|
|
29982
31374
|
])
|
|
29983
31375
|
}));
|
|
31376
|
+
var zDeleteOrganizationIssueIntegrationData = z.object({
|
|
31377
|
+
body: z.never().optional(),
|
|
31378
|
+
path: z.object({
|
|
31379
|
+
organization_id_or_slug: z.string(),
|
|
31380
|
+
issue_id: z.string(),
|
|
31381
|
+
integration_id: z.string()
|
|
31382
|
+
}),
|
|
31383
|
+
query: z.object({
|
|
31384
|
+
externalIssue: z.number().int()
|
|
31385
|
+
})
|
|
31386
|
+
});
|
|
31387
|
+
var zDeleteOrganizationIssueIntegrationResponse = z.void();
|
|
31388
|
+
var zGetOrganizationIssueIntegrationData = z.object({
|
|
31389
|
+
body: z.never().optional(),
|
|
31390
|
+
path: z.object({
|
|
31391
|
+
organization_id_or_slug: z.string(),
|
|
31392
|
+
issue_id: z.string(),
|
|
31393
|
+
integration_id: z.string()
|
|
31394
|
+
}),
|
|
31395
|
+
query: z.object({
|
|
31396
|
+
action: z.enum(["create", "link"])
|
|
31397
|
+
})
|
|
31398
|
+
});
|
|
31399
|
+
var zGetOrganizationIssueIntegrationResponse = z.object({
|
|
31400
|
+
id: z.string(),
|
|
31401
|
+
name: z.string(),
|
|
31402
|
+
icon: z.union([
|
|
31403
|
+
z.string(),
|
|
31404
|
+
z.null()
|
|
31405
|
+
]),
|
|
31406
|
+
domainName: z.union([
|
|
31407
|
+
z.string(),
|
|
31408
|
+
z.null()
|
|
31409
|
+
]),
|
|
31410
|
+
accountType: z.union([
|
|
31411
|
+
z.string(),
|
|
31412
|
+
z.null()
|
|
31413
|
+
]),
|
|
31414
|
+
scopes: z.union([
|
|
31415
|
+
z.array(z.string()),
|
|
31416
|
+
z.null()
|
|
31417
|
+
]),
|
|
31418
|
+
outOfDate: z.union([
|
|
31419
|
+
z.boolean(),
|
|
31420
|
+
z.null()
|
|
31421
|
+
]),
|
|
31422
|
+
status: z.string(),
|
|
31423
|
+
provider: z.object({
|
|
31424
|
+
key: z.string(),
|
|
31425
|
+
slug: z.string(),
|
|
31426
|
+
name: z.string(),
|
|
31427
|
+
canAdd: z.boolean(),
|
|
31428
|
+
canDisable: z.boolean(),
|
|
31429
|
+
features: z.array(z.string()),
|
|
31430
|
+
aspects: z.record(z.unknown())
|
|
31431
|
+
}),
|
|
31432
|
+
linkIssueConfig: z.array(z.record(z.unknown())).optional(),
|
|
31433
|
+
createIssueConfig: z.array(z.record(z.unknown())).optional()
|
|
31434
|
+
});
|
|
31435
|
+
var zCreateOrganizationIssueIntegrationData = z.object({
|
|
31436
|
+
body: z.object({
|
|
31437
|
+
title: z.string(),
|
|
31438
|
+
description: z.string().optional()
|
|
31439
|
+
}),
|
|
31440
|
+
path: z.object({
|
|
31441
|
+
organization_id_or_slug: z.string(),
|
|
31442
|
+
issue_id: z.string(),
|
|
31443
|
+
integration_id: z.string()
|
|
31444
|
+
}),
|
|
31445
|
+
query: z.never().optional()
|
|
31446
|
+
});
|
|
31447
|
+
var zCreateOrganizationIssueIntegrationResponse = z.object({
|
|
31448
|
+
id: z.number().int(),
|
|
31449
|
+
key: z.string(),
|
|
31450
|
+
url: z.string(),
|
|
31451
|
+
integrationId: z.number().int(),
|
|
31452
|
+
displayName: z.string()
|
|
31453
|
+
});
|
|
31454
|
+
var zUpdateOrganizationIssueIntegrationData = z.object({
|
|
31455
|
+
body: z.object({
|
|
31456
|
+
externalIssue: z.string()
|
|
31457
|
+
}),
|
|
31458
|
+
path: z.object({
|
|
31459
|
+
organization_id_or_slug: z.string(),
|
|
31460
|
+
issue_id: z.string(),
|
|
31461
|
+
integration_id: z.string()
|
|
31462
|
+
}),
|
|
31463
|
+
query: z.never().optional()
|
|
31464
|
+
});
|
|
31465
|
+
var zUpdateOrganizationIssueIntegrationResponse = z.object({
|
|
31466
|
+
id: z.number().int(),
|
|
31467
|
+
key: z.string(),
|
|
31468
|
+
url: z.string(),
|
|
31469
|
+
integrationId: z.number().int(),
|
|
31470
|
+
displayName: z.string()
|
|
31471
|
+
});
|
|
29984
31472
|
var zGetOrganizationIssueTagData = z.object({
|
|
29985
31473
|
body: z.never().optional(),
|
|
29986
31474
|
path: z.object({
|
|
@@ -30093,6 +31581,8 @@ export {
|
|
|
30093
31581
|
zUpdateOrganizationIssuesResponse,
|
|
30094
31582
|
zUpdateOrganizationIssuesData,
|
|
30095
31583
|
zUpdateOrganizationIssueResponse,
|
|
31584
|
+
zUpdateOrganizationIssueIntegrationResponse,
|
|
31585
|
+
zUpdateOrganizationIssueIntegrationData,
|
|
30096
31586
|
zUpdateOrganizationIssueData,
|
|
30097
31587
|
zUpdateOrganizationForwardingResponse,
|
|
30098
31588
|
zUpdateOrganizationForwardingData,
|
|
@@ -30109,6 +31599,7 @@ export {
|
|
|
30109
31599
|
zUpdateOrganizationDashboardData,
|
|
30110
31600
|
zUpdateOrgMemberRoles,
|
|
30111
31601
|
zUpdateClientKey,
|
|
31602
|
+
zTraceItemStatsResponse,
|
|
30112
31603
|
zTeamScim,
|
|
30113
31604
|
zTeamPost,
|
|
30114
31605
|
zTeamDetails,
|
|
@@ -30123,6 +31614,7 @@ export {
|
|
|
30123
31614
|
zSnapshotImageDetailResponse,
|
|
30124
31615
|
zSnapshotDetailsResponse,
|
|
30125
31616
|
zSnapshotCreateResponse,
|
|
31617
|
+
zSkipStatusCheck,
|
|
30126
31618
|
zSizeAnalysisResponse,
|
|
30127
31619
|
zShortIdLookupResponse,
|
|
30128
31620
|
zSessionsQueryResult,
|
|
@@ -30280,6 +31772,8 @@ export {
|
|
|
30280
31772
|
zListOrganizationWorkflowsData,
|
|
30281
31773
|
zListOrganizationUserTeamsResponse,
|
|
30282
31774
|
zListOrganizationUserTeamsData,
|
|
31775
|
+
zListOrganizationTraceItemsStatsResponse,
|
|
31776
|
+
zListOrganizationTraceItemsStatsData,
|
|
30283
31777
|
zListOrganizationTraceItemAttributesResponse,
|
|
30284
31778
|
zListOrganizationTraceItemAttributesData,
|
|
30285
31779
|
zListOrganizationTeamsResponse,
|
|
@@ -30374,11 +31868,13 @@ export {
|
|
|
30374
31868
|
zLinkedDashboard,
|
|
30375
31869
|
zLinkProjectRepositoryResponse,
|
|
30376
31870
|
zLinkProjectRepositoryData,
|
|
31871
|
+
zLinkExternalIssueRequest,
|
|
30377
31872
|
zLegacyBrowserFilter,
|
|
30378
31873
|
zLayout,
|
|
30379
31874
|
zLatestInstallableBuildResponse,
|
|
30380
31875
|
zLatestBaseSnapshotResponse,
|
|
30381
31876
|
zIssueEventDetailsResponse,
|
|
31877
|
+
zIntegrationIssueConfigResponse,
|
|
30382
31878
|
zInstallInfoResponse,
|
|
30383
31879
|
zInCommitValidator,
|
|
30384
31880
|
zGroupValidator,
|
|
@@ -30471,6 +31967,8 @@ export {
|
|
|
30471
31967
|
zGetOrganizationIssueTagResponse,
|
|
30472
31968
|
zGetOrganizationIssueTagData,
|
|
30473
31969
|
zGetOrganizationIssueResponse,
|
|
31970
|
+
zGetOrganizationIssueIntegrationResponse,
|
|
31971
|
+
zGetOrganizationIssueIntegrationData,
|
|
30474
31972
|
zGetOrganizationIssueEventResponse,
|
|
30475
31973
|
zGetOrganizationIssueEventData,
|
|
30476
31974
|
zGetOrganizationIssueData,
|
|
@@ -30491,6 +31989,7 @@ export {
|
|
|
30491
31989
|
zExternalUserWritable,
|
|
30492
31990
|
zExternalUser,
|
|
30493
31991
|
zExternalTeam,
|
|
31992
|
+
zExternalIssueLinkResponse,
|
|
30494
31993
|
zExternalActor,
|
|
30495
31994
|
zExplorerAutofixRequest,
|
|
30496
31995
|
zEventIdLookupResponse,
|
|
@@ -30554,6 +32053,8 @@ export {
|
|
|
30554
32053
|
zDeleteOrganizationMemberData,
|
|
30555
32054
|
zDeleteOrganizationIssuesResponse,
|
|
30556
32055
|
zDeleteOrganizationIssuesData,
|
|
32056
|
+
zDeleteOrganizationIssueIntegrationResponse,
|
|
32057
|
+
zDeleteOrganizationIssueIntegrationData,
|
|
30557
32058
|
zDeleteOrganizationIssueData,
|
|
30558
32059
|
zDeleteOrganizationIntegrationResponse,
|
|
30559
32060
|
zDeleteOrganizationIntegrationData,
|
|
@@ -30590,6 +32091,8 @@ export {
|
|
|
30590
32091
|
zCreateProjectUserFeedbackData,
|
|
30591
32092
|
zCreateProjectReplayDeletionJobResponse,
|
|
30592
32093
|
zCreateProjectReplayDeletionJobData,
|
|
32094
|
+
zCreateProjectPreprodSnapshotSkippedStatusCheckData,
|
|
32095
|
+
zCreateProjectPreprodSizeAnalysisSkippedStatusCheckData,
|
|
30593
32096
|
zCreateProjectKeyResponse,
|
|
30594
32097
|
zCreateProjectKeyData,
|
|
30595
32098
|
zCreateProjectHookResponse,
|
|
@@ -30612,6 +32115,8 @@ export {
|
|
|
30612
32115
|
zCreateOrganizationNotificationsActionData,
|
|
30613
32116
|
zCreateOrganizationMonitorResponse,
|
|
30614
32117
|
zCreateOrganizationMonitorData,
|
|
32118
|
+
zCreateOrganizationIssueIntegrationResponse,
|
|
32119
|
+
zCreateOrganizationIssueIntegrationData,
|
|
30615
32120
|
zCreateOrganizationForwardingResponse,
|
|
30616
32121
|
zCreateOrganizationForwardingData,
|
|
30617
32122
|
zCreateOrganizationExternalUserResponse,
|
|
@@ -30620,6 +32125,7 @@ export {
|
|
|
30620
32125
|
zCreateOrganizationDiscoverSavedQueryData,
|
|
30621
32126
|
zCreateOrganizationDashboardResponse,
|
|
30622
32127
|
zCreateOrganizationDashboardData,
|
|
32128
|
+
zCreateExternalIssueRequest,
|
|
30623
32129
|
zConfigValidator,
|
|
30624
32130
|
zCommitSerializerResponse,
|
|
30625
32131
|
zCommitPatchSet,
|