@sentry/api 0.252.0 → 0.254.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.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 +1311 -243
- package/dist/zod.gen.d.ts +5370 -1887
- package/dist/zod.js +2287 -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(),
|
|
@@ -7611,6 +8073,10 @@ var zOrganizationDetailsPut = z.object({
|
|
|
7611
8073
|
scrubIPAddresses: z.boolean().optional(),
|
|
7612
8074
|
relayPiiConfig: z.string().optional(),
|
|
7613
8075
|
trustedRelays: z.array(z.record(z.unknown())).optional(),
|
|
8076
|
+
relayDsnEndpoint: z.union([
|
|
8077
|
+
z.string(),
|
|
8078
|
+
z.null()
|
|
8079
|
+
]).optional(),
|
|
7614
8080
|
issueAlertsThreadFlag: z.boolean().optional(),
|
|
7615
8081
|
metricAlertsThreadFlag: z.boolean().optional(),
|
|
7616
8082
|
cancelDeletion: z.boolean().optional()
|
|
@@ -7655,7 +8121,7 @@ var zOrganizationEventsTimeseriesResponse = z.object({
|
|
|
7655
8121
|
z.number(),
|
|
7656
8122
|
z.null()
|
|
7657
8123
|
]).optional(),
|
|
7658
|
-
confidence: z.enum(["low", "high"]).optional(),
|
|
8124
|
+
confidence: z.enum(["low", "high"]).nullable().optional(),
|
|
7659
8125
|
incompleteReason: z.string().optional()
|
|
7660
8126
|
})),
|
|
7661
8127
|
yAxis: z.string(),
|
|
@@ -7700,10 +8166,24 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7700
8166
|
z.string(),
|
|
7701
8167
|
z.null()
|
|
7702
8168
|
]),
|
|
7703
|
-
level: z.
|
|
7704
|
-
|
|
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
|
+
]),
|
|
7705
8186
|
statusDetails: z.object({
|
|
7706
|
-
autoResolved: z.boolean().optional(),
|
|
7707
8187
|
ignoreCount: z.number().int().optional(),
|
|
7708
8188
|
ignoreUntil: z.string().datetime().optional(),
|
|
7709
8189
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -7769,21 +8249,34 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7769
8249
|
inRelease: z.string().optional(),
|
|
7770
8250
|
inCommit: z.string().optional(),
|
|
7771
8251
|
pendingEvents: z.number().int().optional(),
|
|
7772
|
-
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()
|
|
7773
8260
|
}),
|
|
7774
|
-
substatus: z.
|
|
7775
|
-
|
|
7776
|
-
|
|
7777
|
-
|
|
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(),
|
|
7778
8270
|
isPublic: z.boolean(),
|
|
7779
8271
|
platform: z.union([
|
|
7780
8272
|
z.string(),
|
|
7781
8273
|
z.null()
|
|
7782
8274
|
]),
|
|
7783
|
-
priority: z.
|
|
7784
|
-
|
|
7785
|
-
|
|
7786
|
-
|
|
8275
|
+
priority: z.enum([
|
|
8276
|
+
"low",
|
|
8277
|
+
"medium",
|
|
8278
|
+
"high"
|
|
8279
|
+
]).nullable(),
|
|
7787
8280
|
priorityLockedAt: z.union([
|
|
7788
8281
|
z.string().datetime(),
|
|
7789
8282
|
z.null()
|
|
@@ -7809,7 +8302,18 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7809
8302
|
z.null()
|
|
7810
8303
|
])
|
|
7811
8304
|
}),
|
|
7812
|
-
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
|
+
]),
|
|
7813
8317
|
issueType: z.string(),
|
|
7814
8318
|
issueCategory: z.string(),
|
|
7815
8319
|
metadata: z.record(z.unknown()),
|
|
@@ -7848,6 +8352,20 @@ var zOrganizationGroupIndexGetResponse = z.array(z.object({
|
|
|
7848
8352
|
z.string().datetime(),
|
|
7849
8353
|
z.null()
|
|
7850
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
|
+
}),
|
|
7851
8369
|
stats: z.record(z.unknown()),
|
|
7852
8370
|
lifetime: z.record(z.unknown()),
|
|
7853
8371
|
filtered: z.union([
|
|
@@ -7971,6 +8489,10 @@ var zOrganizationIntegrationResponse = z.object({
|
|
|
7971
8489
|
z.array(z.string()),
|
|
7972
8490
|
z.null()
|
|
7973
8491
|
]),
|
|
8492
|
+
outOfDate: z.union([
|
|
8493
|
+
z.boolean(),
|
|
8494
|
+
z.null()
|
|
8495
|
+
]),
|
|
7974
8496
|
status: z.string(),
|
|
7975
8497
|
provider: z.unknown(),
|
|
7976
8498
|
configOrganization: z.unknown(),
|
|
@@ -7996,62 +8518,65 @@ var zOrganizationMember = z.object({
|
|
|
7996
8518
|
id: z.string(),
|
|
7997
8519
|
email: z.string(),
|
|
7998
8520
|
name: z.string(),
|
|
7999
|
-
user: z.
|
|
8000
|
-
|
|
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(),
|
|
8001
8550
|
id: z.string(),
|
|
8002
8551
|
name: z.string(),
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
})).optional(),
|
|
8014
|
-
avatar: z.object({
|
|
8015
|
-
avatarType: z.string().optional(),
|
|
8016
|
-
avatarUuid: z.union([
|
|
8017
|
-
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(),
|
|
8018
8562
|
z.null()
|
|
8019
|
-
])
|
|
8020
|
-
|
|
8021
|
-
|
|
8563
|
+
]),
|
|
8564
|
+
has2fa: z.boolean(),
|
|
8565
|
+
lastActive: z.union([
|
|
8566
|
+
z.string().datetime(),
|
|
8022
8567
|
z.null()
|
|
8023
|
-
])
|
|
8024
|
-
|
|
8025
|
-
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
isManaged: z.boolean(),
|
|
8036
|
-
dateJoined: z.string().datetime(),
|
|
8037
|
-
lastLogin: z.union([
|
|
8038
|
-
z.string().datetime(),
|
|
8039
|
-
z.null()
|
|
8040
|
-
]),
|
|
8041
|
-
has2fa: z.boolean(),
|
|
8042
|
-
lastActive: z.union([
|
|
8043
|
-
z.string().datetime(),
|
|
8044
|
-
z.null()
|
|
8045
|
-
]),
|
|
8046
|
-
isSuperuser: z.boolean(),
|
|
8047
|
-
isStaff: z.boolean(),
|
|
8048
|
-
experiments: z.record(z.unknown()),
|
|
8049
|
-
emails: z.array(z.object({
|
|
8050
|
-
id: z.string(),
|
|
8051
|
-
email: z.string(),
|
|
8052
|
-
is_verified: z.boolean()
|
|
8053
|
-
}))
|
|
8054
|
-
}).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
|
+
]),
|
|
8055
8580
|
orgRole: z.string(),
|
|
8056
8581
|
pending: z.boolean(),
|
|
8057
8582
|
expired: z.boolean(),
|
|
@@ -8126,62 +8651,65 @@ var zOrganizationMemberWithRoles = z.object({
|
|
|
8126
8651
|
id: z.string(),
|
|
8127
8652
|
email: z.string(),
|
|
8128
8653
|
name: z.string(),
|
|
8129
|
-
user: z.
|
|
8130
|
-
|
|
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(),
|
|
8131
8683
|
id: z.string(),
|
|
8132
8684
|
name: z.string(),
|
|
8133
|
-
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
})).optional(),
|
|
8144
|
-
avatar: z.object({
|
|
8145
|
-
avatarType: z.string().optional(),
|
|
8146
|
-
avatarUuid: z.union([
|
|
8147
|
-
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(),
|
|
8148
8695
|
z.null()
|
|
8149
|
-
])
|
|
8150
|
-
|
|
8151
|
-
|
|
8696
|
+
]),
|
|
8697
|
+
has2fa: z.boolean(),
|
|
8698
|
+
lastActive: z.union([
|
|
8699
|
+
z.string().datetime(),
|
|
8152
8700
|
z.null()
|
|
8153
|
-
])
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
isManaged: z.boolean(),
|
|
8166
|
-
dateJoined: z.string().datetime(),
|
|
8167
|
-
lastLogin: z.union([
|
|
8168
|
-
z.string().datetime(),
|
|
8169
|
-
z.null()
|
|
8170
|
-
]),
|
|
8171
|
-
has2fa: z.boolean(),
|
|
8172
|
-
lastActive: z.union([
|
|
8173
|
-
z.string().datetime(),
|
|
8174
|
-
z.null()
|
|
8175
|
-
]),
|
|
8176
|
-
isSuperuser: z.boolean(),
|
|
8177
|
-
isStaff: z.boolean(),
|
|
8178
|
-
experiments: z.record(z.unknown()),
|
|
8179
|
-
emails: z.array(z.object({
|
|
8180
|
-
id: z.string(),
|
|
8181
|
-
email: z.string(),
|
|
8182
|
-
is_verified: z.boolean()
|
|
8183
|
-
}))
|
|
8184
|
-
}).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
|
+
]),
|
|
8185
8713
|
orgRole: z.string(),
|
|
8186
8714
|
pending: z.boolean(),
|
|
8187
8715
|
expired: z.boolean(),
|
|
@@ -8384,6 +8912,7 @@ var zOrganizationSentryAppDetailsResponse = z.array(z.object({
|
|
|
8384
8912
|
photoType: z.string()
|
|
8385
8913
|
})),
|
|
8386
8914
|
events: z.array(z.string()),
|
|
8915
|
+
webhookEvents: z.array(z.string()),
|
|
8387
8916
|
featureData: z.array(z.string()),
|
|
8388
8917
|
isAlertable: z.boolean(),
|
|
8389
8918
|
metadata: z.string(),
|
|
@@ -8497,14 +9026,13 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8497
9026
|
z.object({
|
|
8498
9027
|
description: z.string(),
|
|
8499
9028
|
event_id: z.string(),
|
|
8500
|
-
event_type: z.string(),
|
|
8501
9029
|
project_id: z.number().int(),
|
|
8502
9030
|
project_slug: z.string(),
|
|
8503
9031
|
transaction: z.string(),
|
|
9032
|
+
event_type: z.enum(["span"]),
|
|
8504
9033
|
children: z.array(z.object({
|
|
8505
9034
|
description: z.string(),
|
|
8506
9035
|
event_id: z.string(),
|
|
8507
|
-
event_type: z.string(),
|
|
8508
9036
|
project_id: z.number().int(),
|
|
8509
9037
|
project_slug: z.string(),
|
|
8510
9038
|
transaction: z.string()
|
|
@@ -8512,10 +9040,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8512
9040
|
errors: z.array(z.object({
|
|
8513
9041
|
description: z.string(),
|
|
8514
9042
|
event_id: z.string(),
|
|
8515
|
-
event_type: z.string(),
|
|
8516
9043
|
project_id: z.number().int(),
|
|
8517
9044
|
project_slug: z.string(),
|
|
8518
9045
|
transaction: z.string(),
|
|
9046
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8519
9047
|
issue_id: z.number().int(),
|
|
8520
9048
|
level: z.string(),
|
|
8521
9049
|
start_timestamp: z.number(),
|
|
@@ -8533,10 +9061,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8533
9061
|
occurrences: z.array(z.object({
|
|
8534
9062
|
description: z.string(),
|
|
8535
9063
|
event_id: z.string(),
|
|
8536
|
-
event_type: z.string(),
|
|
8537
9064
|
project_id: z.number().int(),
|
|
8538
9065
|
project_slug: z.string(),
|
|
8539
9066
|
transaction: z.string(),
|
|
9067
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8540
9068
|
issue_id: z.number().int(),
|
|
8541
9069
|
level: z.string(),
|
|
8542
9070
|
start_timestamp: z.number(),
|
|
@@ -8552,10 +9080,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8552
9080
|
issue_type: z.number().int()
|
|
8553
9081
|
})),
|
|
8554
9082
|
duration: z.number(),
|
|
8555
|
-
end_timestamp: z.
|
|
8556
|
-
measurements: z.record(z.
|
|
8557
|
-
browser_web_vital: z.record(z.
|
|
8558
|
-
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()),
|
|
8559
9087
|
op: z.string(),
|
|
8560
9088
|
name: z.string(),
|
|
8561
9089
|
parent_span_id: z.union([
|
|
@@ -8565,7 +9093,7 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8565
9093
|
profile_id: z.string(),
|
|
8566
9094
|
profiler_id: z.string(),
|
|
8567
9095
|
sdk_name: z.string(),
|
|
8568
|
-
start_timestamp: z.
|
|
9096
|
+
start_timestamp: z.number(),
|
|
8569
9097
|
is_transaction: z.boolean(),
|
|
8570
9098
|
transaction_id: z.string(),
|
|
8571
9099
|
additional_attributes: z.record(z.unknown()).optional()
|
|
@@ -8573,10 +9101,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8573
9101
|
z.object({
|
|
8574
9102
|
description: z.string(),
|
|
8575
9103
|
event_id: z.string(),
|
|
8576
|
-
event_type: z.string(),
|
|
8577
9104
|
project_id: z.number().int(),
|
|
8578
9105
|
project_slug: z.string(),
|
|
8579
9106
|
transaction: z.string(),
|
|
9107
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8580
9108
|
issue_id: z.number().int(),
|
|
8581
9109
|
level: z.string(),
|
|
8582
9110
|
start_timestamp: z.number(),
|
|
@@ -8594,14 +9122,13 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8594
9122
|
z.object({
|
|
8595
9123
|
description: z.string(),
|
|
8596
9124
|
event_id: z.string(),
|
|
8597
|
-
event_type: z.string(),
|
|
8598
9125
|
project_id: z.number().int(),
|
|
8599
9126
|
project_slug: z.string(),
|
|
8600
9127
|
transaction: z.string(),
|
|
9128
|
+
event_type: z.enum(["uptime_check"]),
|
|
8601
9129
|
children: z.array(z.object({
|
|
8602
9130
|
description: z.string(),
|
|
8603
9131
|
event_id: z.string(),
|
|
8604
|
-
event_type: z.string(),
|
|
8605
9132
|
project_id: z.number().int(),
|
|
8606
9133
|
project_slug: z.string(),
|
|
8607
9134
|
transaction: z.string()
|
|
@@ -8609,10 +9136,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8609
9136
|
errors: z.array(z.object({
|
|
8610
9137
|
description: z.string(),
|
|
8611
9138
|
event_id: z.string(),
|
|
8612
|
-
event_type: z.string(),
|
|
8613
9139
|
project_id: z.number().int(),
|
|
8614
9140
|
project_slug: z.string(),
|
|
8615
9141
|
transaction: z.string(),
|
|
9142
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8616
9143
|
issue_id: z.number().int(),
|
|
8617
9144
|
level: z.string(),
|
|
8618
9145
|
start_timestamp: z.number(),
|
|
@@ -8630,10 +9157,10 @@ var zOrganizationTraceResponse = z.array(z.union([
|
|
|
8630
9157
|
occurrences: z.array(z.object({
|
|
8631
9158
|
description: z.string(),
|
|
8632
9159
|
event_id: z.string(),
|
|
8633
|
-
event_type: z.string(),
|
|
8634
9160
|
project_id: z.number().int(),
|
|
8635
9161
|
project_slug: z.string(),
|
|
8636
9162
|
transaction: z.string(),
|
|
9163
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
8637
9164
|
issue_id: z.number().int(),
|
|
8638
9165
|
level: z.string(),
|
|
8639
9166
|
start_timestamp: z.number(),
|
|
@@ -8759,6 +9286,10 @@ var zOrganizationWithProjectsAndTeams = z.object({
|
|
|
8759
9286
|
z.string(),
|
|
8760
9287
|
z.null()
|
|
8761
9288
|
]),
|
|
9289
|
+
relayDsnEndpoint: z.union([
|
|
9290
|
+
z.string(),
|
|
9291
|
+
z.null()
|
|
9292
|
+
]),
|
|
8762
9293
|
trustedRelays: z.array(z.object({
|
|
8763
9294
|
name: z.string().optional(),
|
|
8764
9295
|
description: z.string().optional(),
|
|
@@ -9056,6 +9587,7 @@ var zProjectAdmin = z.object({
|
|
|
9056
9587
|
]).optional(),
|
|
9057
9588
|
highlightContext: z.record(z.unknown()).optional(),
|
|
9058
9589
|
highlightTags: z.array(z.string()).optional(),
|
|
9590
|
+
enableAutoReleaseCreation: z.boolean().optional(),
|
|
9059
9591
|
scmSourceContextEnabled: z.boolean().optional()
|
|
9060
9592
|
});
|
|
9061
9593
|
var zProjectEventDetailsResponse = z.object({
|
|
@@ -9131,16 +9663,81 @@ var zProjectEventDetailsResponse = z.object({
|
|
|
9131
9663
|
z.string(),
|
|
9132
9664
|
z.null()
|
|
9133
9665
|
]),
|
|
9134
|
-
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
|
+
]),
|
|
9135
9679
|
context: z.union([
|
|
9136
9680
|
z.record(z.unknown()),
|
|
9137
9681
|
z.null()
|
|
9138
9682
|
]),
|
|
9139
9683
|
packages: z.record(z.unknown()),
|
|
9140
|
-
type: z.
|
|
9141
|
-
|
|
9142
|
-
|
|
9143
|
-
|
|
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
|
+
]),
|
|
9144
9741
|
_meta: z.record(z.unknown()),
|
|
9145
9742
|
crashFile: z.union([
|
|
9146
9743
|
z.string(),
|
|
@@ -9152,11 +9749,32 @@ var zProjectEventDetailsResponse = z.object({
|
|
|
9152
9749
|
]).optional(),
|
|
9153
9750
|
dateCreated: z.string().datetime().optional(),
|
|
9154
9751
|
fingerprints: z.array(z.string()).optional(),
|
|
9155
|
-
groupingConfig: z.
|
|
9156
|
-
|
|
9157
|
-
|
|
9158
|
-
|
|
9159
|
-
|
|
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(),
|
|
9160
9778
|
release: z.union([
|
|
9161
9779
|
z.object({
|
|
9162
9780
|
id: z.number().int().optional(),
|
|
@@ -9348,10 +9966,7 @@ var zProjectEventsResponseDict = z.array(z.object({
|
|
|
9348
9966
|
z.string(),
|
|
9349
9967
|
z.null()
|
|
9350
9968
|
]),
|
|
9351
|
-
metadata: z.
|
|
9352
|
-
z.record(z.unknown()),
|
|
9353
|
-
z.null()
|
|
9354
|
-
])
|
|
9969
|
+
metadata: z.record(z.unknown())
|
|
9355
9970
|
}));
|
|
9356
9971
|
var zProjectFilterResponse = z.array(z.object({
|
|
9357
9972
|
id: z.string(),
|
|
@@ -9830,15 +10445,23 @@ var zReleaseSerializerWithProjects = z.object({
|
|
|
9830
10445
|
});
|
|
9831
10446
|
var zReleaseThresholdStatusResponse = z.record(z.array(z.object({
|
|
9832
10447
|
id: z.string().optional(),
|
|
9833
|
-
|
|
10448
|
+
date_added: z.string().datetime().optional(),
|
|
9834
10449
|
environment: z.union([
|
|
9835
10450
|
z.record(z.unknown()),
|
|
9836
10451
|
z.null()
|
|
9837
10452
|
]).optional(),
|
|
9838
10453
|
project: z.record(z.unknown()).optional(),
|
|
9839
10454
|
release: z.string().optional(),
|
|
9840
|
-
threshold_type: z.
|
|
9841
|
-
|
|
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(),
|
|
9842
10465
|
value: z.number().int().optional(),
|
|
9843
10466
|
window_in_seconds: z.number().int().optional(),
|
|
9844
10467
|
end: z.string().datetime(),
|
|
@@ -9969,6 +10592,7 @@ var zSentryAppDetailsResponse = z.object({
|
|
|
9969
10592
|
photoType: z.string()
|
|
9970
10593
|
})),
|
|
9971
10594
|
events: z.array(z.string()),
|
|
10595
|
+
webhookEvents: z.array(z.string()),
|
|
9972
10596
|
featureData: z.array(z.string()),
|
|
9973
10597
|
isAlertable: z.boolean(),
|
|
9974
10598
|
metadata: z.string(),
|
|
@@ -10086,6 +10710,20 @@ var zShortIdLookupResponse = z.object({
|
|
|
10086
10710
|
z.string().datetime(),
|
|
10087
10711
|
z.null()
|
|
10088
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(),
|
|
10089
10727
|
id: z.string(),
|
|
10090
10728
|
shareId: z.union([
|
|
10091
10729
|
z.string(),
|
|
@@ -10102,10 +10740,24 @@ var zShortIdLookupResponse = z.object({
|
|
|
10102
10740
|
z.string(),
|
|
10103
10741
|
z.null()
|
|
10104
10742
|
]),
|
|
10105
|
-
level: z.
|
|
10106
|
-
|
|
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
|
+
]),
|
|
10107
10760
|
statusDetails: z.object({
|
|
10108
|
-
autoResolved: z.boolean().optional(),
|
|
10109
10761
|
ignoreCount: z.number().int().optional(),
|
|
10110
10762
|
ignoreUntil: z.string().datetime().optional(),
|
|
10111
10763
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -10171,21 +10823,34 @@ var zShortIdLookupResponse = z.object({
|
|
|
10171
10823
|
inRelease: z.string().optional(),
|
|
10172
10824
|
inCommit: z.string().optional(),
|
|
10173
10825
|
pendingEvents: z.number().int().optional(),
|
|
10174
|
-
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()
|
|
10175
10834
|
}),
|
|
10176
|
-
substatus: z.
|
|
10177
|
-
|
|
10178
|
-
|
|
10179
|
-
|
|
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(),
|
|
10180
10844
|
isPublic: z.boolean(),
|
|
10181
10845
|
platform: z.union([
|
|
10182
10846
|
z.string(),
|
|
10183
10847
|
z.null()
|
|
10184
10848
|
]),
|
|
10185
|
-
priority: z.
|
|
10186
|
-
|
|
10187
|
-
|
|
10188
|
-
|
|
10849
|
+
priority: z.enum([
|
|
10850
|
+
"low",
|
|
10851
|
+
"medium",
|
|
10852
|
+
"high"
|
|
10853
|
+
]).nullable(),
|
|
10189
10854
|
priorityLockedAt: z.union([
|
|
10190
10855
|
z.string().datetime(),
|
|
10191
10856
|
z.null()
|
|
@@ -10211,7 +10876,18 @@ var zShortIdLookupResponse = z.object({
|
|
|
10211
10876
|
z.null()
|
|
10212
10877
|
])
|
|
10213
10878
|
}),
|
|
10214
|
-
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
|
+
]),
|
|
10215
10891
|
issueType: z.string(),
|
|
10216
10892
|
issueCategory: z.string(),
|
|
10217
10893
|
metadata: z.record(z.unknown()),
|
|
@@ -10496,6 +11172,11 @@ var zSizeAnalysisResponse = z.object({
|
|
|
10496
11172
|
z.null()
|
|
10497
11173
|
])
|
|
10498
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
|
+
});
|
|
10499
11180
|
var zSnapshotCreateResponse = z.object({
|
|
10500
11181
|
artifactId: z.string(),
|
|
10501
11182
|
snapshotMetricsId: z.string(),
|
|
@@ -10562,7 +11243,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10562
11243
|
]).optional(),
|
|
10563
11244
|
image_file_name: z.string().optional(),
|
|
10564
11245
|
width: z.number().int().optional(),
|
|
10565
|
-
height: z.number().int().optional()
|
|
11246
|
+
height: z.number().int().optional(),
|
|
11247
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10566
11248
|
})).optional(),
|
|
10567
11249
|
image_count: z.number().int().optional(),
|
|
10568
11250
|
added: z.array(z.object({
|
|
@@ -10577,7 +11259,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10577
11259
|
]).optional(),
|
|
10578
11260
|
image_file_name: z.string().optional(),
|
|
10579
11261
|
width: z.number().int().optional(),
|
|
10580
|
-
height: z.number().int().optional()
|
|
11262
|
+
height: z.number().int().optional(),
|
|
11263
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10581
11264
|
})).optional(),
|
|
10582
11265
|
added_count: z.number().int().optional(),
|
|
10583
11266
|
removed: z.array(z.object({
|
|
@@ -10592,7 +11275,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10592
11275
|
]).optional(),
|
|
10593
11276
|
image_file_name: z.string().optional(),
|
|
10594
11277
|
width: z.number().int().optional(),
|
|
10595
|
-
height: z.number().int().optional()
|
|
11278
|
+
height: z.number().int().optional(),
|
|
11279
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10596
11280
|
})).optional(),
|
|
10597
11281
|
removed_count: z.number().int().optional(),
|
|
10598
11282
|
renamed: z.array(z.object({
|
|
@@ -10608,7 +11292,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10608
11292
|
]).optional(),
|
|
10609
11293
|
image_file_name: z.string().optional(),
|
|
10610
11294
|
width: z.number().int().optional(),
|
|
10611
|
-
height: z.number().int().optional()
|
|
11295
|
+
height: z.number().int().optional(),
|
|
11296
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10612
11297
|
}).optional(),
|
|
10613
11298
|
head_image: z.object({
|
|
10614
11299
|
key: z.string().optional(),
|
|
@@ -10622,7 +11307,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10622
11307
|
]).optional(),
|
|
10623
11308
|
image_file_name: z.string().optional(),
|
|
10624
11309
|
width: z.number().int().optional(),
|
|
10625
|
-
height: z.number().int().optional()
|
|
11310
|
+
height: z.number().int().optional(),
|
|
11311
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10626
11312
|
}).optional(),
|
|
10627
11313
|
diff_image_key: z.union([
|
|
10628
11314
|
z.string(),
|
|
@@ -10647,7 +11333,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10647
11333
|
]).optional(),
|
|
10648
11334
|
image_file_name: z.string().optional(),
|
|
10649
11335
|
width: z.number().int().optional(),
|
|
10650
|
-
height: z.number().int().optional()
|
|
11336
|
+
height: z.number().int().optional(),
|
|
11337
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10651
11338
|
}).optional(),
|
|
10652
11339
|
head_image: z.object({
|
|
10653
11340
|
key: z.string().optional(),
|
|
@@ -10661,7 +11348,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10661
11348
|
]).optional(),
|
|
10662
11349
|
image_file_name: z.string().optional(),
|
|
10663
11350
|
width: z.number().int().optional(),
|
|
10664
|
-
height: z.number().int().optional()
|
|
11351
|
+
height: z.number().int().optional(),
|
|
11352
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10665
11353
|
}).optional(),
|
|
10666
11354
|
diff_image_key: z.union([
|
|
10667
11355
|
z.string(),
|
|
@@ -10685,7 +11373,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10685
11373
|
]).optional(),
|
|
10686
11374
|
image_file_name: z.string().optional(),
|
|
10687
11375
|
width: z.number().int().optional(),
|
|
10688
|
-
height: z.number().int().optional()
|
|
11376
|
+
height: z.number().int().optional(),
|
|
11377
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10689
11378
|
})).optional(),
|
|
10690
11379
|
unchanged_count: z.number().int().optional(),
|
|
10691
11380
|
errored: z.array(z.object({
|
|
@@ -10701,7 +11390,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10701
11390
|
]).optional(),
|
|
10702
11391
|
image_file_name: z.string().optional(),
|
|
10703
11392
|
width: z.number().int().optional(),
|
|
10704
|
-
height: z.number().int().optional()
|
|
11393
|
+
height: z.number().int().optional(),
|
|
11394
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10705
11395
|
}).optional(),
|
|
10706
11396
|
head_image: z.object({
|
|
10707
11397
|
key: z.string().optional(),
|
|
@@ -10715,7 +11405,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10715
11405
|
]).optional(),
|
|
10716
11406
|
image_file_name: z.string().optional(),
|
|
10717
11407
|
width: z.number().int().optional(),
|
|
10718
|
-
height: z.number().int().optional()
|
|
11408
|
+
height: z.number().int().optional(),
|
|
11409
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10719
11410
|
}).optional(),
|
|
10720
11411
|
diff_image_key: z.union([
|
|
10721
11412
|
z.string(),
|
|
@@ -10739,7 +11430,8 @@ var zSnapshotDetailsResponse = z.object({
|
|
|
10739
11430
|
]).optional(),
|
|
10740
11431
|
image_file_name: z.string().optional(),
|
|
10741
11432
|
width: z.number().int().optional(),
|
|
10742
|
-
height: z.number().int().optional()
|
|
11433
|
+
height: z.number().int().optional(),
|
|
11434
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
10743
11435
|
})).optional(),
|
|
10744
11436
|
skipped_count: z.number().int().optional(),
|
|
10745
11437
|
diff_threshold: z.union([
|
|
@@ -10794,7 +11486,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10794
11486
|
]).optional(),
|
|
10795
11487
|
head_image: z.union([
|
|
10796
11488
|
z.object({
|
|
10797
|
-
|
|
11489
|
+
key: z.string().optional(),
|
|
10798
11490
|
display_name: z.union([
|
|
10799
11491
|
z.string(),
|
|
10800
11492
|
z.null()
|
|
@@ -10806,6 +11498,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10806
11498
|
image_file_name: z.string().optional(),
|
|
10807
11499
|
width: z.number().int().optional(),
|
|
10808
11500
|
height: z.number().int().optional(),
|
|
11501
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
10809
11502
|
diff_threshold: z.union([
|
|
10810
11503
|
z.number(),
|
|
10811
11504
|
z.null()
|
|
@@ -10824,7 +11517,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10824
11517
|
]).optional(),
|
|
10825
11518
|
base_image: z.union([
|
|
10826
11519
|
z.object({
|
|
10827
|
-
|
|
11520
|
+
key: z.string().optional(),
|
|
10828
11521
|
display_name: z.union([
|
|
10829
11522
|
z.string(),
|
|
10830
11523
|
z.null()
|
|
@@ -10836,6 +11529,7 @@ var zSnapshotImageDetailResponse = z.object({
|
|
|
10836
11529
|
image_file_name: z.string().optional(),
|
|
10837
11530
|
width: z.number().int().optional(),
|
|
10838
11531
|
height: z.number().int().optional(),
|
|
11532
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
10839
11533
|
diff_threshold: z.union([
|
|
10840
11534
|
z.number(),
|
|
10841
11535
|
z.null()
|
|
@@ -11320,6 +12014,16 @@ var zTeamScim = z.object({
|
|
|
11320
12014
|
display: z.string()
|
|
11321
12015
|
})).optional()
|
|
11322
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
|
+
});
|
|
11323
12027
|
var zUpdateClientKey = z.object({
|
|
11324
12028
|
name: z.string().optional(),
|
|
11325
12029
|
isActive: z.boolean().optional(),
|
|
@@ -11713,6 +12417,10 @@ var zUpdateOrganizationData = z.object({
|
|
|
11713
12417
|
scrubIPAddresses: z.boolean().optional(),
|
|
11714
12418
|
relayPiiConfig: z.string().optional(),
|
|
11715
12419
|
trustedRelays: z.array(z.record(z.unknown())).optional(),
|
|
12420
|
+
relayDsnEndpoint: z.union([
|
|
12421
|
+
z.string(),
|
|
12422
|
+
z.null()
|
|
12423
|
+
]).optional(),
|
|
11716
12424
|
issueAlertsThreadFlag: z.boolean().optional(),
|
|
11717
12425
|
metricAlertsThreadFlag: z.boolean().optional(),
|
|
11718
12426
|
cancelDeletion: z.boolean().optional()
|
|
@@ -11823,6 +12531,10 @@ var zUpdateOrganizationResponse = z.object({
|
|
|
11823
12531
|
z.string(),
|
|
11824
12532
|
z.null()
|
|
11825
12533
|
]),
|
|
12534
|
+
relayDsnEndpoint: z.union([
|
|
12535
|
+
z.string(),
|
|
12536
|
+
z.null()
|
|
12537
|
+
]),
|
|
11826
12538
|
trustedRelays: z.array(z.object({
|
|
11827
12539
|
name: z.string().optional(),
|
|
11828
12540
|
description: z.string().optional(),
|
|
@@ -12437,7 +13149,7 @@ var zCreateOrganizationDashboardResponse = z.object({
|
|
|
12437
13149
|
z.string(),
|
|
12438
13150
|
z.null()
|
|
12439
13151
|
]),
|
|
12440
|
-
legendType: z.enum(["default", "breakdown"]),
|
|
13152
|
+
legendType: z.enum(["default", "breakdown"]).nullable(),
|
|
12441
13153
|
datasetSource: z.union([
|
|
12442
13154
|
z.string(),
|
|
12443
13155
|
z.null()
|
|
@@ -12629,7 +13341,7 @@ var zGetOrganizationDashboardResponse = z.object({
|
|
|
12629
13341
|
z.string(),
|
|
12630
13342
|
z.null()
|
|
12631
13343
|
]),
|
|
12632
|
-
legendType: z.enum(["default", "breakdown"]),
|
|
13344
|
+
legendType: z.enum(["default", "breakdown"]).nullable(),
|
|
12633
13345
|
datasetSource: z.union([
|
|
12634
13346
|
z.string(),
|
|
12635
13347
|
z.null()
|
|
@@ -12932,7 +13644,7 @@ var zUpdateOrganizationDashboardResponse = z.object({
|
|
|
12932
13644
|
z.string(),
|
|
12933
13645
|
z.null()
|
|
12934
13646
|
]),
|
|
12935
|
-
legendType: z.enum(["default", "breakdown"]),
|
|
13647
|
+
legendType: z.enum(["default", "breakdown"]).nullable(),
|
|
12936
13648
|
datasetSource: z.union([
|
|
12937
13649
|
z.string(),
|
|
12938
13650
|
z.null()
|
|
@@ -13824,16 +14536,81 @@ var zResolveOrganizationEventIdResponse = z.object({
|
|
|
13824
14536
|
z.string(),
|
|
13825
14537
|
z.null()
|
|
13826
14538
|
]),
|
|
13827
|
-
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
|
+
]),
|
|
13828
14552
|
context: z.union([
|
|
13829
14553
|
z.record(z.unknown()),
|
|
13830
14554
|
z.null()
|
|
13831
14555
|
]),
|
|
13832
14556
|
packages: z.record(z.unknown()),
|
|
13833
|
-
type: z.
|
|
13834
|
-
|
|
13835
|
-
|
|
13836
|
-
|
|
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
|
+
]),
|
|
13837
14614
|
_meta: z.record(z.unknown()),
|
|
13838
14615
|
crashFile: z.union([
|
|
13839
14616
|
z.string(),
|
|
@@ -13845,11 +14622,32 @@ var zResolveOrganizationEventIdResponse = z.object({
|
|
|
13845
14622
|
]).optional(),
|
|
13846
14623
|
dateCreated: z.string().datetime().optional(),
|
|
13847
14624
|
fingerprints: z.array(z.string()).optional(),
|
|
13848
|
-
groupingConfig: z.
|
|
13849
|
-
|
|
13850
|
-
|
|
13851
|
-
|
|
13852
|
-
|
|
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()
|
|
13853
14651
|
})
|
|
13854
14652
|
});
|
|
13855
14653
|
var zListOrganizationEventsData = z.object({
|
|
@@ -13946,7 +14744,7 @@ var zListOrganizationEventsTimeseriesResponse = z.object({
|
|
|
13946
14744
|
z.number(),
|
|
13947
14745
|
z.null()
|
|
13948
14746
|
]).optional(),
|
|
13949
|
-
confidence: z.enum(["low", "high"]).optional(),
|
|
14747
|
+
confidence: z.enum(["low", "high"]).nullable().optional(),
|
|
13950
14748
|
incompleteReason: z.string().optional()
|
|
13951
14749
|
})),
|
|
13952
14750
|
yAxis: z.string(),
|
|
@@ -14265,6 +15063,10 @@ var zListOrganizationIntegrationsResponse = z.array(z.object({
|
|
|
14265
15063
|
z.array(z.string()),
|
|
14266
15064
|
z.null()
|
|
14267
15065
|
]),
|
|
15066
|
+
outOfDate: z.union([
|
|
15067
|
+
z.boolean(),
|
|
15068
|
+
z.null()
|
|
15069
|
+
]),
|
|
14268
15070
|
status: z.string(),
|
|
14269
15071
|
provider: z.unknown(),
|
|
14270
15072
|
configOrganization: z.unknown(),
|
|
@@ -14313,6 +15115,10 @@ var zGetOrganizationIntegrationResponse = z.object({
|
|
|
14313
15115
|
z.array(z.string()),
|
|
14314
15116
|
z.null()
|
|
14315
15117
|
]),
|
|
15118
|
+
outOfDate: z.union([
|
|
15119
|
+
z.boolean(),
|
|
15120
|
+
z.null()
|
|
15121
|
+
]),
|
|
14316
15122
|
status: z.string(),
|
|
14317
15123
|
provider: z.unknown(),
|
|
14318
15124
|
configOrganization: z.unknown(),
|
|
@@ -14414,10 +15220,24 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14414
15220
|
z.string(),
|
|
14415
15221
|
z.null()
|
|
14416
15222
|
]),
|
|
14417
|
-
level: z.
|
|
14418
|
-
|
|
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
|
+
]),
|
|
14419
15240
|
statusDetails: z.object({
|
|
14420
|
-
autoResolved: z.boolean().optional(),
|
|
14421
15241
|
ignoreCount: z.number().int().optional(),
|
|
14422
15242
|
ignoreUntil: z.string().datetime().optional(),
|
|
14423
15243
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -14483,21 +15303,34 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14483
15303
|
inRelease: z.string().optional(),
|
|
14484
15304
|
inCommit: z.string().optional(),
|
|
14485
15305
|
pendingEvents: z.number().int().optional(),
|
|
14486
|
-
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()
|
|
14487
15314
|
}),
|
|
14488
|
-
substatus: z.
|
|
14489
|
-
|
|
14490
|
-
|
|
14491
|
-
|
|
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(),
|
|
14492
15324
|
isPublic: z.boolean(),
|
|
14493
15325
|
platform: z.union([
|
|
14494
15326
|
z.string(),
|
|
14495
15327
|
z.null()
|
|
14496
15328
|
]),
|
|
14497
|
-
priority: z.
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
15329
|
+
priority: z.enum([
|
|
15330
|
+
"low",
|
|
15331
|
+
"medium",
|
|
15332
|
+
"high"
|
|
15333
|
+
]).nullable(),
|
|
14501
15334
|
priorityLockedAt: z.union([
|
|
14502
15335
|
z.string().datetime(),
|
|
14503
15336
|
z.null()
|
|
@@ -14523,7 +15356,18 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14523
15356
|
z.null()
|
|
14524
15357
|
])
|
|
14525
15358
|
}),
|
|
14526
|
-
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
|
+
]),
|
|
14527
15371
|
issueType: z.string(),
|
|
14528
15372
|
issueCategory: z.string(),
|
|
14529
15373
|
metadata: z.record(z.unknown()),
|
|
@@ -14562,7 +15406,21 @@ var zListOrganizationIssuesResponse = z.array(z.object({
|
|
|
14562
15406
|
z.string().datetime(),
|
|
14563
15407
|
z.null()
|
|
14564
15408
|
]),
|
|
14565
|
-
|
|
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
|
+
}),
|
|
15423
|
+
stats: z.record(z.unknown()),
|
|
14566
15424
|
lifetime: z.record(z.unknown()),
|
|
14567
15425
|
filtered: z.union([
|
|
14568
15426
|
z.object({
|
|
@@ -14757,62 +15615,65 @@ var zListOrganizationMembersResponse = z.array(z.object({
|
|
|
14757
15615
|
id: z.string(),
|
|
14758
15616
|
email: z.string(),
|
|
14759
15617
|
name: z.string(),
|
|
14760
|
-
user: z.
|
|
14761
|
-
|
|
15618
|
+
user: z.union([
|
|
15619
|
+
z.object({
|
|
15620
|
+
identities: z.array(z.object({
|
|
15621
|
+
id: z.string(),
|
|
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(),
|
|
14762
15647
|
id: z.string(),
|
|
14763
15648
|
name: z.string(),
|
|
14764
|
-
|
|
14765
|
-
|
|
14766
|
-
|
|
14767
|
-
|
|
14768
|
-
|
|
14769
|
-
|
|
14770
|
-
|
|
14771
|
-
|
|
14772
|
-
|
|
14773
|
-
|
|
14774
|
-
})).optional(),
|
|
14775
|
-
avatar: z.object({
|
|
14776
|
-
avatarType: z.string().optional(),
|
|
14777
|
-
avatarUuid: z.union([
|
|
14778
|
-
z.string(),
|
|
15649
|
+
username: z.string(),
|
|
15650
|
+
email: z.string(),
|
|
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(),
|
|
14779
15659
|
z.null()
|
|
14780
|
-
])
|
|
14781
|
-
|
|
14782
|
-
|
|
15660
|
+
]),
|
|
15661
|
+
has2fa: z.boolean(),
|
|
15662
|
+
lastActive: z.union([
|
|
15663
|
+
z.string().datetime(),
|
|
14783
15664
|
z.null()
|
|
14784
|
-
])
|
|
14785
|
-
|
|
14786
|
-
|
|
14787
|
-
|
|
14788
|
-
|
|
14789
|
-
|
|
14790
|
-
|
|
14791
|
-
|
|
14792
|
-
|
|
14793
|
-
|
|
14794
|
-
|
|
14795
|
-
|
|
14796
|
-
isManaged: z.boolean(),
|
|
14797
|
-
dateJoined: z.string().datetime(),
|
|
14798
|
-
lastLogin: z.union([
|
|
14799
|
-
z.string().datetime(),
|
|
14800
|
-
z.null()
|
|
14801
|
-
]),
|
|
14802
|
-
has2fa: z.boolean(),
|
|
14803
|
-
lastActive: z.union([
|
|
14804
|
-
z.string().datetime(),
|
|
14805
|
-
z.null()
|
|
14806
|
-
]),
|
|
14807
|
-
isSuperuser: z.boolean(),
|
|
14808
|
-
isStaff: z.boolean(),
|
|
14809
|
-
experiments: z.record(z.unknown()),
|
|
14810
|
-
emails: z.array(z.object({
|
|
14811
|
-
id: z.string(),
|
|
14812
|
-
email: z.string(),
|
|
14813
|
-
is_verified: z.boolean()
|
|
14814
|
-
}))
|
|
14815
|
-
}).optional(),
|
|
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
|
+
]),
|
|
14816
15677
|
orgRole: z.string(),
|
|
14817
15678
|
pending: z.boolean(),
|
|
14818
15679
|
expired: z.boolean(),
|
|
@@ -14866,62 +15727,65 @@ var zAddOrganizationMemberResponse = z.object({
|
|
|
14866
15727
|
id: z.string(),
|
|
14867
15728
|
email: z.string(),
|
|
14868
15729
|
name: z.string(),
|
|
14869
|
-
user: z.
|
|
14870
|
-
|
|
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(),
|
|
14871
15759
|
id: z.string(),
|
|
14872
15760
|
name: z.string(),
|
|
14873
|
-
|
|
14874
|
-
|
|
14875
|
-
|
|
14876
|
-
|
|
14877
|
-
|
|
14878
|
-
|
|
14879
|
-
|
|
14880
|
-
|
|
14881
|
-
|
|
14882
|
-
|
|
14883
|
-
})).optional(),
|
|
14884
|
-
avatar: z.object({
|
|
14885
|
-
avatarType: z.string().optional(),
|
|
14886
|
-
avatarUuid: z.union([
|
|
14887
|
-
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(),
|
|
14888
15771
|
z.null()
|
|
14889
|
-
])
|
|
14890
|
-
|
|
14891
|
-
|
|
15772
|
+
]),
|
|
15773
|
+
has2fa: z.boolean(),
|
|
15774
|
+
lastActive: z.union([
|
|
15775
|
+
z.string().datetime(),
|
|
14892
15776
|
z.null()
|
|
14893
|
-
])
|
|
14894
|
-
|
|
14895
|
-
|
|
14896
|
-
|
|
14897
|
-
|
|
14898
|
-
|
|
14899
|
-
|
|
14900
|
-
|
|
14901
|
-
|
|
14902
|
-
|
|
14903
|
-
|
|
14904
|
-
|
|
14905
|
-
isManaged: z.boolean(),
|
|
14906
|
-
dateJoined: z.string().datetime(),
|
|
14907
|
-
lastLogin: z.union([
|
|
14908
|
-
z.string().datetime(),
|
|
14909
|
-
z.null()
|
|
14910
|
-
]),
|
|
14911
|
-
has2fa: z.boolean(),
|
|
14912
|
-
lastActive: z.union([
|
|
14913
|
-
z.string().datetime(),
|
|
14914
|
-
z.null()
|
|
14915
|
-
]),
|
|
14916
|
-
isSuperuser: z.boolean(),
|
|
14917
|
-
isStaff: z.boolean(),
|
|
14918
|
-
experiments: z.record(z.unknown()),
|
|
14919
|
-
emails: z.array(z.object({
|
|
14920
|
-
id: z.string(),
|
|
14921
|
-
email: z.string(),
|
|
14922
|
-
is_verified: z.boolean()
|
|
14923
|
-
}))
|
|
14924
|
-
}).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
|
+
]),
|
|
14925
15789
|
orgRole: z.string(),
|
|
14926
15790
|
pending: z.boolean(),
|
|
14927
15791
|
expired: z.boolean(),
|
|
@@ -14972,62 +15836,65 @@ var zGetOrganizationMemberResponse = z.object({
|
|
|
14972
15836
|
id: z.string(),
|
|
14973
15837
|
email: z.string(),
|
|
14974
15838
|
name: z.string(),
|
|
14975
|
-
user: z.
|
|
14976
|
-
|
|
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(),
|
|
14977
15868
|
id: z.string(),
|
|
14978
15869
|
name: z.string(),
|
|
14979
|
-
|
|
14980
|
-
|
|
14981
|
-
|
|
14982
|
-
|
|
14983
|
-
|
|
14984
|
-
|
|
14985
|
-
|
|
14986
|
-
|
|
14987
|
-
|
|
14988
|
-
|
|
14989
|
-
})).optional(),
|
|
14990
|
-
avatar: z.object({
|
|
14991
|
-
avatarType: z.string().optional(),
|
|
14992
|
-
avatarUuid: z.union([
|
|
14993
|
-
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(),
|
|
14994
15880
|
z.null()
|
|
14995
|
-
])
|
|
14996
|
-
|
|
14997
|
-
|
|
15881
|
+
]),
|
|
15882
|
+
has2fa: z.boolean(),
|
|
15883
|
+
lastActive: z.union([
|
|
15884
|
+
z.string().datetime(),
|
|
14998
15885
|
z.null()
|
|
14999
|
-
])
|
|
15000
|
-
|
|
15001
|
-
|
|
15002
|
-
|
|
15003
|
-
|
|
15004
|
-
|
|
15005
|
-
|
|
15006
|
-
|
|
15007
|
-
|
|
15008
|
-
|
|
15009
|
-
|
|
15010
|
-
|
|
15011
|
-
isManaged: z.boolean(),
|
|
15012
|
-
dateJoined: z.string().datetime(),
|
|
15013
|
-
lastLogin: z.union([
|
|
15014
|
-
z.string().datetime(),
|
|
15015
|
-
z.null()
|
|
15016
|
-
]),
|
|
15017
|
-
has2fa: z.boolean(),
|
|
15018
|
-
lastActive: z.union([
|
|
15019
|
-
z.string().datetime(),
|
|
15020
|
-
z.null()
|
|
15021
|
-
]),
|
|
15022
|
-
isSuperuser: z.boolean(),
|
|
15023
|
-
isStaff: z.boolean(),
|
|
15024
|
-
experiments: z.record(z.unknown()),
|
|
15025
|
-
emails: z.array(z.object({
|
|
15026
|
-
id: z.string(),
|
|
15027
|
-
email: z.string(),
|
|
15028
|
-
is_verified: z.boolean()
|
|
15029
|
-
}))
|
|
15030
|
-
}).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
|
+
]),
|
|
15031
15898
|
orgRole: z.string(),
|
|
15032
15899
|
pending: z.boolean(),
|
|
15033
15900
|
expired: z.boolean(),
|
|
@@ -15121,62 +15988,65 @@ var zUpdateOrganizationMemberResponse = z.object({
|
|
|
15121
15988
|
id: z.string(),
|
|
15122
15989
|
email: z.string(),
|
|
15123
15990
|
name: z.string(),
|
|
15124
|
-
user: z.
|
|
15125
|
-
|
|
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(),
|
|
15126
16020
|
id: z.string(),
|
|
15127
16021
|
name: z.string(),
|
|
15128
|
-
|
|
15129
|
-
|
|
15130
|
-
|
|
15131
|
-
|
|
15132
|
-
|
|
15133
|
-
|
|
15134
|
-
|
|
15135
|
-
|
|
15136
|
-
|
|
15137
|
-
|
|
15138
|
-
})).optional(),
|
|
15139
|
-
avatar: z.object({
|
|
15140
|
-
avatarType: z.string().optional(),
|
|
15141
|
-
avatarUuid: z.union([
|
|
15142
|
-
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(),
|
|
15143
16032
|
z.null()
|
|
15144
|
-
])
|
|
15145
|
-
|
|
15146
|
-
|
|
16033
|
+
]),
|
|
16034
|
+
has2fa: z.boolean(),
|
|
16035
|
+
lastActive: z.union([
|
|
16036
|
+
z.string().datetime(),
|
|
15147
16037
|
z.null()
|
|
15148
|
-
])
|
|
15149
|
-
|
|
15150
|
-
|
|
15151
|
-
|
|
15152
|
-
|
|
15153
|
-
|
|
15154
|
-
|
|
15155
|
-
|
|
15156
|
-
|
|
15157
|
-
|
|
15158
|
-
|
|
15159
|
-
|
|
15160
|
-
isManaged: z.boolean(),
|
|
15161
|
-
dateJoined: z.string().datetime(),
|
|
15162
|
-
lastLogin: z.union([
|
|
15163
|
-
z.string().datetime(),
|
|
15164
|
-
z.null()
|
|
15165
|
-
]),
|
|
15166
|
-
has2fa: z.boolean(),
|
|
15167
|
-
lastActive: z.union([
|
|
15168
|
-
z.string().datetime(),
|
|
15169
|
-
z.null()
|
|
15170
|
-
]),
|
|
15171
|
-
isSuperuser: z.boolean(),
|
|
15172
|
-
isStaff: z.boolean(),
|
|
15173
|
-
experiments: z.record(z.unknown()),
|
|
15174
|
-
emails: z.array(z.object({
|
|
15175
|
-
id: z.string(),
|
|
15176
|
-
email: z.string(),
|
|
15177
|
-
is_verified: z.boolean()
|
|
15178
|
-
}))
|
|
15179
|
-
}).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
|
+
]),
|
|
15180
16050
|
orgRole: z.string(),
|
|
15181
16051
|
pending: z.boolean(),
|
|
15182
16052
|
expired: z.boolean(),
|
|
@@ -17876,7 +18746,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17876
18746
|
]).optional(),
|
|
17877
18747
|
image_file_name: z.string().optional(),
|
|
17878
18748
|
width: z.number().int().optional(),
|
|
17879
|
-
height: z.number().int().optional()
|
|
18749
|
+
height: z.number().int().optional(),
|
|
18750
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17880
18751
|
})).optional(),
|
|
17881
18752
|
image_count: z.number().int().optional(),
|
|
17882
18753
|
added: z.array(z.object({
|
|
@@ -17891,7 +18762,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17891
18762
|
]).optional(),
|
|
17892
18763
|
image_file_name: z.string().optional(),
|
|
17893
18764
|
width: z.number().int().optional(),
|
|
17894
|
-
height: z.number().int().optional()
|
|
18765
|
+
height: z.number().int().optional(),
|
|
18766
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17895
18767
|
})).optional(),
|
|
17896
18768
|
added_count: z.number().int().optional(),
|
|
17897
18769
|
removed: z.array(z.object({
|
|
@@ -17906,7 +18778,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17906
18778
|
]).optional(),
|
|
17907
18779
|
image_file_name: z.string().optional(),
|
|
17908
18780
|
width: z.number().int().optional(),
|
|
17909
|
-
height: z.number().int().optional()
|
|
18781
|
+
height: z.number().int().optional(),
|
|
18782
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17910
18783
|
})).optional(),
|
|
17911
18784
|
removed_count: z.number().int().optional(),
|
|
17912
18785
|
renamed: z.array(z.object({
|
|
@@ -17922,7 +18795,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17922
18795
|
]).optional(),
|
|
17923
18796
|
image_file_name: z.string().optional(),
|
|
17924
18797
|
width: z.number().int().optional(),
|
|
17925
|
-
height: z.number().int().optional()
|
|
18798
|
+
height: z.number().int().optional(),
|
|
18799
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17926
18800
|
}).optional(),
|
|
17927
18801
|
head_image: z.object({
|
|
17928
18802
|
key: z.string().optional(),
|
|
@@ -17936,7 +18810,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17936
18810
|
]).optional(),
|
|
17937
18811
|
image_file_name: z.string().optional(),
|
|
17938
18812
|
width: z.number().int().optional(),
|
|
17939
|
-
height: z.number().int().optional()
|
|
18813
|
+
height: z.number().int().optional(),
|
|
18814
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17940
18815
|
}).optional(),
|
|
17941
18816
|
diff_image_key: z.union([
|
|
17942
18817
|
z.string(),
|
|
@@ -17961,7 +18836,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17961
18836
|
]).optional(),
|
|
17962
18837
|
image_file_name: z.string().optional(),
|
|
17963
18838
|
width: z.number().int().optional(),
|
|
17964
|
-
height: z.number().int().optional()
|
|
18839
|
+
height: z.number().int().optional(),
|
|
18840
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17965
18841
|
}).optional(),
|
|
17966
18842
|
head_image: z.object({
|
|
17967
18843
|
key: z.string().optional(),
|
|
@@ -17975,7 +18851,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17975
18851
|
]).optional(),
|
|
17976
18852
|
image_file_name: z.string().optional(),
|
|
17977
18853
|
width: z.number().int().optional(),
|
|
17978
|
-
height: z.number().int().optional()
|
|
18854
|
+
height: z.number().int().optional(),
|
|
18855
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
17979
18856
|
}).optional(),
|
|
17980
18857
|
diff_image_key: z.union([
|
|
17981
18858
|
z.string(),
|
|
@@ -17999,7 +18876,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
17999
18876
|
]).optional(),
|
|
18000
18877
|
image_file_name: z.string().optional(),
|
|
18001
18878
|
width: z.number().int().optional(),
|
|
18002
|
-
height: z.number().int().optional()
|
|
18879
|
+
height: z.number().int().optional(),
|
|
18880
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18003
18881
|
})).optional(),
|
|
18004
18882
|
unchanged_count: z.number().int().optional(),
|
|
18005
18883
|
errored: z.array(z.object({
|
|
@@ -18015,7 +18893,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
18015
18893
|
]).optional(),
|
|
18016
18894
|
image_file_name: z.string().optional(),
|
|
18017
18895
|
width: z.number().int().optional(),
|
|
18018
|
-
height: z.number().int().optional()
|
|
18896
|
+
height: z.number().int().optional(),
|
|
18897
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18019
18898
|
}).optional(),
|
|
18020
18899
|
head_image: z.object({
|
|
18021
18900
|
key: z.string().optional(),
|
|
@@ -18029,7 +18908,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
18029
18908
|
]).optional(),
|
|
18030
18909
|
image_file_name: z.string().optional(),
|
|
18031
18910
|
width: z.number().int().optional(),
|
|
18032
|
-
height: z.number().int().optional()
|
|
18911
|
+
height: z.number().int().optional(),
|
|
18912
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18033
18913
|
}).optional(),
|
|
18034
18914
|
diff_image_key: z.union([
|
|
18035
18915
|
z.string(),
|
|
@@ -18053,7 +18933,8 @@ var zGetOrganizationPreprodArtifactSnapshotResponse = z.object({
|
|
|
18053
18933
|
]).optional(),
|
|
18054
18934
|
image_file_name: z.string().optional(),
|
|
18055
18935
|
width: z.number().int().optional(),
|
|
18056
|
-
height: z.number().int().optional()
|
|
18936
|
+
height: z.number().int().optional(),
|
|
18937
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional()
|
|
18057
18938
|
})).optional(),
|
|
18058
18939
|
skipped_count: z.number().int().optional(),
|
|
18059
18940
|
diff_threshold: z.union([
|
|
@@ -18117,7 +18998,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18117
18998
|
]).optional(),
|
|
18118
18999
|
head_image: z.union([
|
|
18119
19000
|
z.object({
|
|
18120
|
-
|
|
19001
|
+
key: z.string().optional(),
|
|
18121
19002
|
display_name: z.union([
|
|
18122
19003
|
z.string(),
|
|
18123
19004
|
z.null()
|
|
@@ -18129,6 +19010,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18129
19010
|
image_file_name: z.string().optional(),
|
|
18130
19011
|
width: z.number().int().optional(),
|
|
18131
19012
|
height: z.number().int().optional(),
|
|
19013
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
18132
19014
|
diff_threshold: z.union([
|
|
18133
19015
|
z.number(),
|
|
18134
19016
|
z.null()
|
|
@@ -18147,7 +19029,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18147
19029
|
]).optional(),
|
|
18148
19030
|
base_image: z.union([
|
|
18149
19031
|
z.object({
|
|
18150
|
-
|
|
19032
|
+
key: z.string().optional(),
|
|
18151
19033
|
display_name: z.union([
|
|
18152
19034
|
z.string(),
|
|
18153
19035
|
z.null()
|
|
@@ -18159,6 +19041,7 @@ var zGetOrganizationPreprodArtifactSnapshotImageResponse = z.object({
|
|
|
18159
19041
|
image_file_name: z.string().optional(),
|
|
18160
19042
|
width: z.number().int().optional(),
|
|
18161
19043
|
height: z.number().int().optional(),
|
|
19044
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
18162
19045
|
diff_threshold: z.union([
|
|
18163
19046
|
z.number(),
|
|
18164
19047
|
z.null()
|
|
@@ -18225,6 +19108,7 @@ var zGetOrganizationPreprodArtifactSnapshotLatestBaseResponse = z.object({
|
|
|
18225
19108
|
image_file_name: z.string().optional(),
|
|
18226
19109
|
width: z.number().int().optional(),
|
|
18227
19110
|
height: z.number().int().optional(),
|
|
19111
|
+
canvas_theme: z.enum(["light", "dark"]).nullable().optional(),
|
|
18228
19112
|
image_url: z.string().optional()
|
|
18229
19113
|
})).optional(),
|
|
18230
19114
|
diff_threshold: z.union([
|
|
@@ -18638,15 +19522,23 @@ var zListOrganizationReleaseThresholdStatusesData = z.object({
|
|
|
18638
19522
|
});
|
|
18639
19523
|
var zListOrganizationReleaseThresholdStatusesResponse = z.record(z.array(z.object({
|
|
18640
19524
|
id: z.string().optional(),
|
|
18641
|
-
|
|
19525
|
+
date_added: z.string().datetime().optional(),
|
|
18642
19526
|
environment: z.union([
|
|
18643
19527
|
z.record(z.unknown()),
|
|
18644
19528
|
z.null()
|
|
18645
19529
|
]).optional(),
|
|
18646
19530
|
project: z.record(z.unknown()).optional(),
|
|
18647
19531
|
release: z.string().optional(),
|
|
18648
|
-
threshold_type: z.
|
|
18649
|
-
|
|
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(),
|
|
18650
19542
|
value: z.number().int().optional(),
|
|
18651
19543
|
window_in_seconds: z.number().int().optional(),
|
|
18652
19544
|
end: z.string().datetime(),
|
|
@@ -19838,6 +20730,17 @@ var zListOrganizationReleaseCommitsResponse2 = z.array(z.object({
|
|
|
19838
20730
|
z.null()
|
|
19839
20731
|
]),
|
|
19840
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(),
|
|
19841
20744
|
repository: z.object({
|
|
19842
20745
|
url: z.union([
|
|
19843
20746
|
z.string(),
|
|
@@ -20234,6 +21137,11 @@ var zGetOrganizationReplayCountData = z.object({
|
|
|
20234
21137
|
organization_id_or_slug: z.string()
|
|
20235
21138
|
}),
|
|
20236
21139
|
query: z.object({
|
|
21140
|
+
data_source: z.enum([
|
|
21141
|
+
"events",
|
|
21142
|
+
"search_issues",
|
|
21143
|
+
"spans"
|
|
21144
|
+
]),
|
|
20237
21145
|
environment: z.array(z.string()).optional(),
|
|
20238
21146
|
start: z.string().datetime().optional(),
|
|
20239
21147
|
end: z.string().datetime().optional(),
|
|
@@ -20241,14 +21149,8 @@ var zGetOrganizationReplayCountData = z.object({
|
|
|
20241
21149
|
project: z.array(z.union([z.number().int(), z.string()])).optional(),
|
|
20242
21150
|
project_id_or_slug: z.array(z.string()).optional(),
|
|
20243
21151
|
query: z.string().optional(),
|
|
20244
|
-
data_source: z.enum([
|
|
20245
|
-
"discover",
|
|
20246
|
-
"events",
|
|
20247
|
-
"search_issues",
|
|
20248
|
-
"transactions"
|
|
20249
|
-
]).optional(),
|
|
20250
21152
|
returnIds: z.boolean().optional()
|
|
20251
|
-
})
|
|
21153
|
+
})
|
|
20252
21154
|
});
|
|
20253
21155
|
var zGetOrganizationReplayCountResponse = z.record(z.number().int());
|
|
20254
21156
|
var zListOrganizationReplaySelectorsData = z.object({
|
|
@@ -20323,6 +21225,7 @@ var zListOrganizationReplaysData = z.object({
|
|
|
20323
21225
|
"started_at",
|
|
20324
21226
|
"tags",
|
|
20325
21227
|
"trace_ids",
|
|
21228
|
+
"segment_names",
|
|
20326
21229
|
"urls",
|
|
20327
21230
|
"user",
|
|
20328
21231
|
"clicks",
|
|
@@ -20467,6 +21370,10 @@ var zListOrganizationReplaysResponse = z.object({
|
|
|
20467
21370
|
z.array(z.string()),
|
|
20468
21371
|
z.null()
|
|
20469
21372
|
]).optional(),
|
|
21373
|
+
segment_names: z.union([
|
|
21374
|
+
z.array(z.string()),
|
|
21375
|
+
z.null()
|
|
21376
|
+
]).optional(),
|
|
20470
21377
|
clicks: z.array(z.record(z.unknown())).optional(),
|
|
20471
21378
|
count_dead_clicks: z.union([
|
|
20472
21379
|
z.number().int(),
|
|
@@ -20559,6 +21466,7 @@ var zGetOrganizationReplayData = z.object({
|
|
|
20559
21466
|
"started_at",
|
|
20560
21467
|
"tags",
|
|
20561
21468
|
"trace_ids",
|
|
21469
|
+
"segment_names",
|
|
20562
21470
|
"urls",
|
|
20563
21471
|
"user",
|
|
20564
21472
|
"clicks",
|
|
@@ -20703,6 +21611,10 @@ var zGetOrganizationReplayResponse = z.object({
|
|
|
20703
21611
|
z.array(z.string()),
|
|
20704
21612
|
z.null()
|
|
20705
21613
|
]).optional(),
|
|
21614
|
+
segment_names: z.union([
|
|
21615
|
+
z.array(z.string()),
|
|
21616
|
+
z.null()
|
|
21617
|
+
]).optional(),
|
|
20706
21618
|
clicks: z.array(z.record(z.unknown())).optional(),
|
|
20707
21619
|
count_dead_clicks: z.union([
|
|
20708
21620
|
z.number().int(),
|
|
@@ -20833,6 +21745,17 @@ var zListOrganizationRepoCommitsResponse = z.array(z.object({
|
|
|
20833
21745
|
z.null()
|
|
20834
21746
|
]),
|
|
20835
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(),
|
|
20836
21759
|
repository: z.object({
|
|
20837
21760
|
url: z.union([
|
|
20838
21761
|
z.string(),
|
|
@@ -21264,6 +22187,7 @@ var zListOrganizationSentryAppsResponse = z.array(z.object({
|
|
|
21264
22187
|
photoType: z.string()
|
|
21265
22188
|
})),
|
|
21266
22189
|
events: z.array(z.string()),
|
|
22190
|
+
webhookEvents: z.array(z.string()),
|
|
21267
22191
|
featureData: z.array(z.string()),
|
|
21268
22192
|
isAlertable: z.boolean(),
|
|
21269
22193
|
metadata: z.string(),
|
|
@@ -21382,6 +22306,20 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21382
22306
|
z.string().datetime(),
|
|
21383
22307
|
z.null()
|
|
21384
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(),
|
|
21385
22323
|
id: z.string(),
|
|
21386
22324
|
shareId: z.union([
|
|
21387
22325
|
z.string(),
|
|
@@ -21398,10 +22336,24 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21398
22336
|
z.string(),
|
|
21399
22337
|
z.null()
|
|
21400
22338
|
]),
|
|
21401
|
-
level: z.
|
|
21402
|
-
|
|
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
|
+
]),
|
|
21403
22356
|
statusDetails: z.object({
|
|
21404
|
-
autoResolved: z.boolean().optional(),
|
|
21405
22357
|
ignoreCount: z.number().int().optional(),
|
|
21406
22358
|
ignoreUntil: z.string().datetime().optional(),
|
|
21407
22359
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -21467,21 +22419,34 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21467
22419
|
inRelease: z.string().optional(),
|
|
21468
22420
|
inCommit: z.string().optional(),
|
|
21469
22421
|
pendingEvents: z.number().int().optional(),
|
|
21470
|
-
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()
|
|
21471
22430
|
}),
|
|
21472
|
-
substatus: z.
|
|
21473
|
-
|
|
21474
|
-
|
|
21475
|
-
|
|
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(),
|
|
21476
22440
|
isPublic: z.boolean(),
|
|
21477
22441
|
platform: z.union([
|
|
21478
22442
|
z.string(),
|
|
21479
22443
|
z.null()
|
|
21480
22444
|
]),
|
|
21481
|
-
priority: z.
|
|
21482
|
-
|
|
21483
|
-
|
|
21484
|
-
|
|
22445
|
+
priority: z.enum([
|
|
22446
|
+
"low",
|
|
22447
|
+
"medium",
|
|
22448
|
+
"high"
|
|
22449
|
+
]).nullable(),
|
|
21485
22450
|
priorityLockedAt: z.union([
|
|
21486
22451
|
z.string().datetime(),
|
|
21487
22452
|
z.null()
|
|
@@ -21507,7 +22472,18 @@ var zResolveOrganizationShortIdResponse = z.object({
|
|
|
21507
22472
|
z.null()
|
|
21508
22473
|
])
|
|
21509
22474
|
}),
|
|
21510
|
-
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
|
+
]),
|
|
21511
22487
|
issueType: z.string(),
|
|
21512
22488
|
issueCategory: z.string(),
|
|
21513
22489
|
metadata: z.record(z.unknown()),
|
|
@@ -22031,6 +23007,7 @@ var zListOrganizationTraceItemAttributesData = z.object({
|
|
|
22031
23007
|
"tracemetrics"
|
|
22032
23008
|
]).optional(),
|
|
22033
23009
|
attributeType: z.array(z.enum([
|
|
23010
|
+
"array",
|
|
22034
23011
|
"boolean",
|
|
22035
23012
|
"number",
|
|
22036
23013
|
"string"
|
|
@@ -22051,10 +23028,12 @@ var zListOrganizationTraceItemAttributesResponse = z.array(z.object({
|
|
|
22051
23028
|
attributeType: z.enum([
|
|
22052
23029
|
"string",
|
|
22053
23030
|
"number",
|
|
22054
|
-
"boolean"
|
|
23031
|
+
"boolean",
|
|
23032
|
+
"array"
|
|
22055
23033
|
]),
|
|
22056
23034
|
context: z.object({
|
|
22057
23035
|
isConvention: z.boolean().optional(),
|
|
23036
|
+
isCustom: z.boolean().optional(),
|
|
22058
23037
|
brief: z.string().optional(),
|
|
22059
23038
|
isDeprecated: z.boolean().optional(),
|
|
22060
23039
|
details: z.array(z.string()).optional(),
|
|
@@ -22062,6 +23041,35 @@ var zListOrganizationTraceItemAttributesResponse = z.array(z.object({
|
|
|
22062
23041
|
replacementAttribute: z.string().optional()
|
|
22063
23042
|
}).optional()
|
|
22064
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
|
+
});
|
|
22065
23073
|
var zGetOrganizationTraceMetaData = z.object({
|
|
22066
23074
|
body: z.never().optional(),
|
|
22067
23075
|
path: z.object({
|
|
@@ -22105,14 +23113,13 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22105
23113
|
z.object({
|
|
22106
23114
|
description: z.string(),
|
|
22107
23115
|
event_id: z.string(),
|
|
22108
|
-
event_type: z.string(),
|
|
22109
23116
|
project_id: z.number().int(),
|
|
22110
23117
|
project_slug: z.string(),
|
|
22111
23118
|
transaction: z.string(),
|
|
23119
|
+
event_type: z.enum(["span"]),
|
|
22112
23120
|
children: z.array(z.object({
|
|
22113
23121
|
description: z.string(),
|
|
22114
23122
|
event_id: z.string(),
|
|
22115
|
-
event_type: z.string(),
|
|
22116
23123
|
project_id: z.number().int(),
|
|
22117
23124
|
project_slug: z.string(),
|
|
22118
23125
|
transaction: z.string()
|
|
@@ -22120,10 +23127,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22120
23127
|
errors: z.array(z.object({
|
|
22121
23128
|
description: z.string(),
|
|
22122
23129
|
event_id: z.string(),
|
|
22123
|
-
event_type: z.string(),
|
|
22124
23130
|
project_id: z.number().int(),
|
|
22125
23131
|
project_slug: z.string(),
|
|
22126
23132
|
transaction: z.string(),
|
|
23133
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22127
23134
|
issue_id: z.number().int(),
|
|
22128
23135
|
level: z.string(),
|
|
22129
23136
|
start_timestamp: z.number(),
|
|
@@ -22141,10 +23148,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22141
23148
|
occurrences: z.array(z.object({
|
|
22142
23149
|
description: z.string(),
|
|
22143
23150
|
event_id: z.string(),
|
|
22144
|
-
event_type: z.string(),
|
|
22145
23151
|
project_id: z.number().int(),
|
|
22146
23152
|
project_slug: z.string(),
|
|
22147
23153
|
transaction: z.string(),
|
|
23154
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22148
23155
|
issue_id: z.number().int(),
|
|
22149
23156
|
level: z.string(),
|
|
22150
23157
|
start_timestamp: z.number(),
|
|
@@ -22160,10 +23167,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22160
23167
|
issue_type: z.number().int()
|
|
22161
23168
|
})),
|
|
22162
23169
|
duration: z.number(),
|
|
22163
|
-
end_timestamp: z.
|
|
22164
|
-
measurements: z.record(z.
|
|
22165
|
-
browser_web_vital: z.record(z.
|
|
22166
|
-
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()),
|
|
22167
23174
|
op: z.string(),
|
|
22168
23175
|
name: z.string(),
|
|
22169
23176
|
parent_span_id: z.union([
|
|
@@ -22173,7 +23180,7 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22173
23180
|
profile_id: z.string(),
|
|
22174
23181
|
profiler_id: z.string(),
|
|
22175
23182
|
sdk_name: z.string(),
|
|
22176
|
-
start_timestamp: z.
|
|
23183
|
+
start_timestamp: z.number(),
|
|
22177
23184
|
is_transaction: z.boolean(),
|
|
22178
23185
|
transaction_id: z.string(),
|
|
22179
23186
|
additional_attributes: z.record(z.unknown()).optional()
|
|
@@ -22181,10 +23188,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22181
23188
|
z.object({
|
|
22182
23189
|
description: z.string(),
|
|
22183
23190
|
event_id: z.string(),
|
|
22184
|
-
event_type: z.string(),
|
|
22185
23191
|
project_id: z.number().int(),
|
|
22186
23192
|
project_slug: z.string(),
|
|
22187
23193
|
transaction: z.string(),
|
|
23194
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22188
23195
|
issue_id: z.number().int(),
|
|
22189
23196
|
level: z.string(),
|
|
22190
23197
|
start_timestamp: z.number(),
|
|
@@ -22202,14 +23209,13 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22202
23209
|
z.object({
|
|
22203
23210
|
description: z.string(),
|
|
22204
23211
|
event_id: z.string(),
|
|
22205
|
-
event_type: z.string(),
|
|
22206
23212
|
project_id: z.number().int(),
|
|
22207
23213
|
project_slug: z.string(),
|
|
22208
23214
|
transaction: z.string(),
|
|
23215
|
+
event_type: z.enum(["uptime_check"]),
|
|
22209
23216
|
children: z.array(z.object({
|
|
22210
23217
|
description: z.string(),
|
|
22211
23218
|
event_id: z.string(),
|
|
22212
|
-
event_type: z.string(),
|
|
22213
23219
|
project_id: z.number().int(),
|
|
22214
23220
|
project_slug: z.string(),
|
|
22215
23221
|
transaction: z.string()
|
|
@@ -22217,10 +23223,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22217
23223
|
errors: z.array(z.object({
|
|
22218
23224
|
description: z.string(),
|
|
22219
23225
|
event_id: z.string(),
|
|
22220
|
-
event_type: z.string(),
|
|
22221
23226
|
project_id: z.number().int(),
|
|
22222
23227
|
project_slug: z.string(),
|
|
22223
23228
|
transaction: z.string(),
|
|
23229
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22224
23230
|
issue_id: z.number().int(),
|
|
22225
23231
|
level: z.string(),
|
|
22226
23232
|
start_timestamp: z.number(),
|
|
@@ -22238,10 +23244,10 @@ var zGetOrganizationTraceResponse = z.array(z.union([
|
|
|
22238
23244
|
occurrences: z.array(z.object({
|
|
22239
23245
|
description: z.string(),
|
|
22240
23246
|
event_id: z.string(),
|
|
22241
|
-
event_type: z.string(),
|
|
22242
23247
|
project_id: z.number().int(),
|
|
22243
23248
|
project_slug: z.string(),
|
|
22244
23249
|
transaction: z.string(),
|
|
23250
|
+
event_type: z.enum(["error", "occurrence"]),
|
|
22245
23251
|
issue_id: z.number().int(),
|
|
22246
23252
|
level: z.string(),
|
|
22247
23253
|
start_timestamp: z.number(),
|
|
@@ -23137,6 +24143,7 @@ var zGetProjectResponse = z.object({
|
|
|
23137
24143
|
verifySSL: z.boolean(),
|
|
23138
24144
|
scrubIPAddresses: z.boolean(),
|
|
23139
24145
|
scrapeJavaScript: z.boolean(),
|
|
24146
|
+
enableAutoReleaseCreation: z.boolean(),
|
|
23140
24147
|
highlightTags: z.array(z.string()),
|
|
23141
24148
|
highlightContext: z.record(z.unknown()),
|
|
23142
24149
|
highlightPreset: z.object({
|
|
@@ -23246,6 +24253,7 @@ var zUpdateProjectData = z.object({
|
|
|
23246
24253
|
]).optional(),
|
|
23247
24254
|
highlightContext: z.record(z.unknown()).optional(),
|
|
23248
24255
|
highlightTags: z.array(z.string()).optional(),
|
|
24256
|
+
enableAutoReleaseCreation: z.boolean().optional(),
|
|
23249
24257
|
scmSourceContextEnabled: z.boolean().optional()
|
|
23250
24258
|
}).optional(),
|
|
23251
24259
|
path: z.object({
|
|
@@ -23350,6 +24358,7 @@ var zUpdateProjectResponse = z.object({
|
|
|
23350
24358
|
verifySSL: z.boolean(),
|
|
23351
24359
|
scrubIPAddresses: z.boolean(),
|
|
23352
24360
|
scrapeJavaScript: z.boolean(),
|
|
24361
|
+
enableAutoReleaseCreation: z.boolean(),
|
|
23353
24362
|
highlightTags: z.array(z.string()),
|
|
23354
24363
|
highlightContext: z.record(z.unknown()),
|
|
23355
24364
|
highlightPreset: z.object({
|
|
@@ -23588,10 +24597,7 @@ var zListProjectEventsResponse = z.array(z.object({
|
|
|
23588
24597
|
z.string(),
|
|
23589
24598
|
z.null()
|
|
23590
24599
|
]),
|
|
23591
|
-
metadata: z.
|
|
23592
|
-
z.record(z.unknown()),
|
|
23593
|
-
z.null()
|
|
23594
|
-
])
|
|
24600
|
+
metadata: z.record(z.unknown())
|
|
23595
24601
|
}));
|
|
23596
24602
|
var zGetProjectEventData = z.object({
|
|
23597
24603
|
body: z.never().optional(),
|
|
@@ -23677,16 +24683,81 @@ var zGetProjectEventResponse = z.object({
|
|
|
23677
24683
|
z.string(),
|
|
23678
24684
|
z.null()
|
|
23679
24685
|
]),
|
|
23680
|
-
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
|
+
]),
|
|
23681
24699
|
context: z.union([
|
|
23682
24700
|
z.record(z.unknown()),
|
|
23683
24701
|
z.null()
|
|
23684
24702
|
]),
|
|
23685
24703
|
packages: z.record(z.unknown()),
|
|
23686
|
-
type: z.
|
|
23687
|
-
|
|
23688
|
-
|
|
23689
|
-
|
|
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
|
+
]),
|
|
23690
24761
|
_meta: z.record(z.unknown()),
|
|
23691
24762
|
crashFile: z.union([
|
|
23692
24763
|
z.string(),
|
|
@@ -23698,11 +24769,32 @@ var zGetProjectEventResponse = z.object({
|
|
|
23698
24769
|
]).optional(),
|
|
23699
24770
|
dateCreated: z.string().datetime().optional(),
|
|
23700
24771
|
fingerprints: z.array(z.string()).optional(),
|
|
23701
|
-
groupingConfig: z.
|
|
23702
|
-
|
|
23703
|
-
|
|
23704
|
-
|
|
23705
|
-
|
|
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(),
|
|
23706
24798
|
release: z.union([
|
|
23707
24799
|
z.object({
|
|
23708
24800
|
id: z.number().int().optional(),
|
|
@@ -23868,7 +24960,9 @@ var zGetProjectEventAttachmentData = z.object({
|
|
|
23868
24960
|
event_id: z.string().regex(/^[0-9a-f]{32}$/),
|
|
23869
24961
|
attachment_id: z.string()
|
|
23870
24962
|
}),
|
|
23871
|
-
query: z.
|
|
24963
|
+
query: z.object({
|
|
24964
|
+
download: z.string().optional()
|
|
24965
|
+
}).optional()
|
|
23872
24966
|
});
|
|
23873
24967
|
var zGetProjectEventAttachmentResponse = z.object({
|
|
23874
24968
|
id: z.string(),
|
|
@@ -24428,62 +25522,65 @@ var zListProjectMembersResponse = z.array(z.object({
|
|
|
24428
25522
|
id: z.string(),
|
|
24429
25523
|
email: z.string(),
|
|
24430
25524
|
name: z.string(),
|
|
24431
|
-
user: z.
|
|
24432
|
-
|
|
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(),
|
|
24433
25554
|
id: z.string(),
|
|
24434
25555
|
name: z.string(),
|
|
24435
|
-
|
|
24436
|
-
|
|
24437
|
-
|
|
24438
|
-
|
|
24439
|
-
|
|
24440
|
-
|
|
24441
|
-
|
|
24442
|
-
|
|
24443
|
-
|
|
24444
|
-
|
|
24445
|
-
})).optional(),
|
|
24446
|
-
avatar: z.object({
|
|
24447
|
-
avatarType: z.string().optional(),
|
|
24448
|
-
avatarUuid: z.union([
|
|
24449
|
-
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(),
|
|
24450
25566
|
z.null()
|
|
24451
|
-
])
|
|
24452
|
-
|
|
24453
|
-
|
|
25567
|
+
]),
|
|
25568
|
+
has2fa: z.boolean(),
|
|
25569
|
+
lastActive: z.union([
|
|
25570
|
+
z.string().datetime(),
|
|
24454
25571
|
z.null()
|
|
24455
|
-
])
|
|
24456
|
-
|
|
24457
|
-
|
|
24458
|
-
|
|
24459
|
-
|
|
24460
|
-
|
|
24461
|
-
|
|
24462
|
-
|
|
24463
|
-
|
|
24464
|
-
|
|
24465
|
-
|
|
24466
|
-
|
|
24467
|
-
isManaged: z.boolean(),
|
|
24468
|
-
dateJoined: z.string().datetime(),
|
|
24469
|
-
lastLogin: z.union([
|
|
24470
|
-
z.string().datetime(),
|
|
24471
|
-
z.null()
|
|
24472
|
-
]),
|
|
24473
|
-
has2fa: z.boolean(),
|
|
24474
|
-
lastActive: z.union([
|
|
24475
|
-
z.string().datetime(),
|
|
24476
|
-
z.null()
|
|
24477
|
-
]),
|
|
24478
|
-
isSuperuser: z.boolean(),
|
|
24479
|
-
isStaff: z.boolean(),
|
|
24480
|
-
experiments: z.record(z.unknown()),
|
|
24481
|
-
emails: z.array(z.object({
|
|
24482
|
-
id: z.string(),
|
|
24483
|
-
email: z.string(),
|
|
24484
|
-
is_verified: z.boolean()
|
|
24485
|
-
}))
|
|
24486
|
-
}).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
|
+
]),
|
|
24487
25584
|
orgRole: z.string(),
|
|
24488
25585
|
pending: z.boolean(),
|
|
24489
25586
|
expired: z.boolean(),
|
|
@@ -25619,6 +26716,18 @@ var zGetProjectPreprodSizeAnalysisStatusCheckRulesResponse = z.object({
|
|
|
25619
26716
|
])
|
|
25620
26717
|
}))
|
|
25621
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
|
+
});
|
|
25622
26731
|
var zGetProjectPreprodSnapshotStatusCheckRulesData = z.object({
|
|
25623
26732
|
body: z.never().optional(),
|
|
25624
26733
|
path: z.object({
|
|
@@ -25636,6 +26745,18 @@ var zGetProjectPreprodSnapshotStatusCheckRulesResponse = z.object({
|
|
|
25636
26745
|
failOnRenamed: z.boolean()
|
|
25637
26746
|
})
|
|
25638
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
|
+
});
|
|
25639
26760
|
var zGetProjectInstallableBuildLatestData = z.object({
|
|
25640
26761
|
body: z.never().optional(),
|
|
25641
26762
|
path: z.object({
|
|
@@ -25646,7 +26767,10 @@ var zGetProjectInstallableBuildLatestData = z.object({
|
|
|
25646
26767
|
appId: z.string(),
|
|
25647
26768
|
platform: z.string(),
|
|
25648
26769
|
buildVersion: z.string().optional(),
|
|
25649
|
-
buildNumber: z.
|
|
26770
|
+
buildNumber: z.union([
|
|
26771
|
+
z.number().int(),
|
|
26772
|
+
z.string()
|
|
26773
|
+
]).optional(),
|
|
25650
26774
|
mainBinaryIdentifier: z.string().optional(),
|
|
25651
26775
|
buildConfiguration: z.string().optional(),
|
|
25652
26776
|
codesigningType: z.string().optional(),
|
|
@@ -26186,6 +27310,17 @@ var zListProjectReleaseCommitsResponse2 = z.array(z.object({
|
|
|
26186
27310
|
z.null()
|
|
26187
27311
|
]),
|
|
26188
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(),
|
|
26189
27324
|
repository: z.object({
|
|
26190
27325
|
url: z.union([
|
|
26191
27326
|
z.string(),
|
|
@@ -27660,6 +28795,7 @@ var zGetSentryAppResponse = z.object({
|
|
|
27660
28795
|
photoType: z.string()
|
|
27661
28796
|
})),
|
|
27662
28797
|
events: z.array(z.string()),
|
|
28798
|
+
webhookEvents: z.array(z.string()),
|
|
27663
28799
|
featureData: z.array(z.string()),
|
|
27664
28800
|
isAlertable: z.boolean(),
|
|
27665
28801
|
metadata: z.string(),
|
|
@@ -27755,6 +28891,7 @@ var zUpdateSentryAppResponse = z.object({
|
|
|
27755
28891
|
photoType: z.string()
|
|
27756
28892
|
})),
|
|
27757
28893
|
events: z.array(z.string()),
|
|
28894
|
+
webhookEvents: z.array(z.string()),
|
|
27758
28895
|
featureData: z.array(z.string()),
|
|
27759
28896
|
isAlertable: z.boolean(),
|
|
27760
28897
|
metadata: z.string(),
|
|
@@ -28939,6 +30076,20 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
28939
30076
|
z.string().datetime(),
|
|
28940
30077
|
z.null()
|
|
28941
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(),
|
|
28942
30093
|
id: z.string(),
|
|
28943
30094
|
shareId: z.union([
|
|
28944
30095
|
z.string(),
|
|
@@ -28955,10 +30106,24 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
28955
30106
|
z.string(),
|
|
28956
30107
|
z.null()
|
|
28957
30108
|
]),
|
|
28958
|
-
level: z.
|
|
28959
|
-
|
|
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
|
+
]),
|
|
28960
30126
|
statusDetails: z.object({
|
|
28961
|
-
autoResolved: z.boolean().optional(),
|
|
28962
30127
|
ignoreCount: z.number().int().optional(),
|
|
28963
30128
|
ignoreUntil: z.string().datetime().optional(),
|
|
28964
30129
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -29024,21 +30189,34 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
29024
30189
|
inRelease: z.string().optional(),
|
|
29025
30190
|
inCommit: z.string().optional(),
|
|
29026
30191
|
pendingEvents: z.number().int().optional(),
|
|
29027
|
-
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()
|
|
29028
30200
|
}),
|
|
29029
|
-
substatus: z.
|
|
29030
|
-
|
|
29031
|
-
|
|
29032
|
-
|
|
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(),
|
|
29033
30210
|
isPublic: z.boolean(),
|
|
29034
30211
|
platform: z.union([
|
|
29035
30212
|
z.string(),
|
|
29036
30213
|
z.null()
|
|
29037
30214
|
]),
|
|
29038
|
-
priority: z.
|
|
29039
|
-
|
|
29040
|
-
|
|
29041
|
-
|
|
30215
|
+
priority: z.enum([
|
|
30216
|
+
"low",
|
|
30217
|
+
"medium",
|
|
30218
|
+
"high"
|
|
30219
|
+
]).nullable(),
|
|
29042
30220
|
priorityLockedAt: z.union([
|
|
29043
30221
|
z.string().datetime(),
|
|
29044
30222
|
z.null()
|
|
@@ -29064,7 +30242,18 @@ var zGetOrganizationIssueResponse = z.object({
|
|
|
29064
30242
|
z.null()
|
|
29065
30243
|
])
|
|
29066
30244
|
}),
|
|
29067
|
-
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
|
+
]),
|
|
29068
30257
|
issueType: z.string(),
|
|
29069
30258
|
issueCategory: z.string(),
|
|
29070
30259
|
metadata: z.record(z.unknown()),
|
|
@@ -29220,6 +30409,20 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29220
30409
|
z.string().datetime(),
|
|
29221
30410
|
z.null()
|
|
29222
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(),
|
|
29223
30426
|
id: z.string(),
|
|
29224
30427
|
shareId: z.union([
|
|
29225
30428
|
z.string(),
|
|
@@ -29236,10 +30439,24 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29236
30439
|
z.string(),
|
|
29237
30440
|
z.null()
|
|
29238
30441
|
]),
|
|
29239
|
-
level: z.
|
|
29240
|
-
|
|
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
|
+
]),
|
|
29241
30459
|
statusDetails: z.object({
|
|
29242
|
-
autoResolved: z.boolean().optional(),
|
|
29243
30460
|
ignoreCount: z.number().int().optional(),
|
|
29244
30461
|
ignoreUntil: z.string().datetime().optional(),
|
|
29245
30462
|
ignoreUserCount: z.number().int().optional(),
|
|
@@ -29305,21 +30522,34 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29305
30522
|
inRelease: z.string().optional(),
|
|
29306
30523
|
inCommit: z.string().optional(),
|
|
29307
30524
|
pendingEvents: z.number().int().optional(),
|
|
29308
|
-
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()
|
|
29309
30533
|
}),
|
|
29310
|
-
substatus: z.
|
|
29311
|
-
|
|
29312
|
-
|
|
29313
|
-
|
|
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(),
|
|
29314
30543
|
isPublic: z.boolean(),
|
|
29315
30544
|
platform: z.union([
|
|
29316
30545
|
z.string(),
|
|
29317
30546
|
z.null()
|
|
29318
30547
|
]),
|
|
29319
|
-
priority: z.
|
|
29320
|
-
|
|
29321
|
-
|
|
29322
|
-
|
|
30548
|
+
priority: z.enum([
|
|
30549
|
+
"low",
|
|
30550
|
+
"medium",
|
|
30551
|
+
"high"
|
|
30552
|
+
]).nullable(),
|
|
29323
30553
|
priorityLockedAt: z.union([
|
|
29324
30554
|
z.string().datetime(),
|
|
29325
30555
|
z.null()
|
|
@@ -29345,7 +30575,18 @@ var zUpdateOrganizationIssueResponse = z.object({
|
|
|
29345
30575
|
z.null()
|
|
29346
30576
|
])
|
|
29347
30577
|
}),
|
|
29348
|
-
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
|
+
]),
|
|
29349
30590
|
issueType: z.string(),
|
|
29350
30591
|
issueCategory: z.string(),
|
|
29351
30592
|
metadata: z.record(z.unknown()),
|
|
@@ -29411,7 +30652,8 @@ var zStartOrganizationIssueAutofixData = z.object({
|
|
|
29411
30652
|
user_context: z.string().max(1000).optional(),
|
|
29412
30653
|
repo_name: z.string().optional(),
|
|
29413
30654
|
insert_index: z.number().int().optional(),
|
|
29414
|
-
referrer: z.string().optional()
|
|
30655
|
+
referrer: z.string().optional(),
|
|
30656
|
+
enable_bash_tools: z.boolean().optional().default(false)
|
|
29415
30657
|
}).optional(),
|
|
29416
30658
|
path: z.object({
|
|
29417
30659
|
organization_id_or_slug: z.string(),
|
|
@@ -29510,10 +30752,7 @@ var zListOrganizationIssueEventsResponse = z.array(z.object({
|
|
|
29510
30752
|
z.string(),
|
|
29511
30753
|
z.null()
|
|
29512
30754
|
]),
|
|
29513
|
-
metadata: z.
|
|
29514
|
-
z.record(z.unknown()),
|
|
29515
|
-
z.null()
|
|
29516
|
-
])
|
|
30755
|
+
metadata: z.record(z.unknown())
|
|
29517
30756
|
}));
|
|
29518
30757
|
var zGetOrganizationIssueEventData = z.object({
|
|
29519
30758
|
body: z.never().optional(),
|
|
@@ -29603,16 +30842,81 @@ var zGetOrganizationIssueEventResponse = z.object({
|
|
|
29603
30842
|
z.string(),
|
|
29604
30843
|
z.null()
|
|
29605
30844
|
]),
|
|
29606
|
-
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
|
+
]),
|
|
29607
30858
|
context: z.union([
|
|
29608
30859
|
z.record(z.unknown()),
|
|
29609
30860
|
z.null()
|
|
29610
30861
|
]),
|
|
29611
30862
|
packages: z.record(z.unknown()),
|
|
29612
|
-
type: z.
|
|
29613
|
-
|
|
29614
|
-
|
|
29615
|
-
|
|
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
|
+
]),
|
|
29616
30920
|
_meta: z.record(z.unknown()),
|
|
29617
30921
|
crashFile: z.union([
|
|
29618
30922
|
z.string(),
|
|
@@ -29624,11 +30928,32 @@ var zGetOrganizationIssueEventResponse = z.object({
|
|
|
29624
30928
|
]).optional(),
|
|
29625
30929
|
dateCreated: z.string().datetime().optional(),
|
|
29626
30930
|
fingerprints: z.array(z.string()).optional(),
|
|
29627
|
-
groupingConfig: z.
|
|
29628
|
-
|
|
29629
|
-
|
|
29630
|
-
|
|
29631
|
-
|
|
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(),
|
|
29632
30957
|
release: z.union([
|
|
29633
30958
|
z.object({
|
|
29634
30959
|
id: z.number().int().optional(),
|
|
@@ -29856,16 +31181,81 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29856
31181
|
z.string(),
|
|
29857
31182
|
z.null()
|
|
29858
31183
|
]),
|
|
29859
|
-
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
|
+
]),
|
|
29860
31197
|
context: z.union([
|
|
29861
31198
|
z.record(z.unknown()),
|
|
29862
31199
|
z.null()
|
|
29863
31200
|
]),
|
|
29864
31201
|
packages: z.record(z.unknown()),
|
|
29865
|
-
type: z.
|
|
29866
|
-
|
|
29867
|
-
|
|
29868
|
-
|
|
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
|
+
]),
|
|
29869
31259
|
_meta: z.record(z.unknown()),
|
|
29870
31260
|
crashFile: z.union([
|
|
29871
31261
|
z.string(),
|
|
@@ -29877,11 +31267,32 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29877
31267
|
]).optional(),
|
|
29878
31268
|
dateCreated: z.string().datetime().optional(),
|
|
29879
31269
|
fingerprints: z.array(z.string()).optional(),
|
|
29880
|
-
groupingConfig: z.
|
|
29881
|
-
|
|
29882
|
-
|
|
29883
|
-
|
|
29884
|
-
|
|
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()
|
|
29885
31296
|
}),
|
|
29886
31297
|
z.object({
|
|
29887
31298
|
id: z.string(),
|
|
@@ -29949,10 +31360,7 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29949
31360
|
z.string(),
|
|
29950
31361
|
z.null()
|
|
29951
31362
|
]),
|
|
29952
|
-
metadata: z.
|
|
29953
|
-
z.record(z.unknown()),
|
|
29954
|
-
z.null()
|
|
29955
|
-
])
|
|
31363
|
+
metadata: z.record(z.unknown())
|
|
29956
31364
|
}),
|
|
29957
31365
|
z.union([
|
|
29958
31366
|
z.record(z.unknown()),
|
|
@@ -29965,6 +31373,102 @@ var zListOrganizationIssueHashesResponse = z.array(z.object({
|
|
|
29965
31373
|
z.null()
|
|
29966
31374
|
])
|
|
29967
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
|
+
});
|
|
29968
31472
|
var zGetOrganizationIssueTagData = z.object({
|
|
29969
31473
|
body: z.never().optional(),
|
|
29970
31474
|
path: z.object({
|
|
@@ -30077,6 +31581,8 @@ export {
|
|
|
30077
31581
|
zUpdateOrganizationIssuesResponse,
|
|
30078
31582
|
zUpdateOrganizationIssuesData,
|
|
30079
31583
|
zUpdateOrganizationIssueResponse,
|
|
31584
|
+
zUpdateOrganizationIssueIntegrationResponse,
|
|
31585
|
+
zUpdateOrganizationIssueIntegrationData,
|
|
30080
31586
|
zUpdateOrganizationIssueData,
|
|
30081
31587
|
zUpdateOrganizationForwardingResponse,
|
|
30082
31588
|
zUpdateOrganizationForwardingData,
|
|
@@ -30093,6 +31599,7 @@ export {
|
|
|
30093
31599
|
zUpdateOrganizationDashboardData,
|
|
30094
31600
|
zUpdateOrgMemberRoles,
|
|
30095
31601
|
zUpdateClientKey,
|
|
31602
|
+
zTraceItemStatsResponse,
|
|
30096
31603
|
zTeamScim,
|
|
30097
31604
|
zTeamPost,
|
|
30098
31605
|
zTeamDetails,
|
|
@@ -30107,6 +31614,7 @@ export {
|
|
|
30107
31614
|
zSnapshotImageDetailResponse,
|
|
30108
31615
|
zSnapshotDetailsResponse,
|
|
30109
31616
|
zSnapshotCreateResponse,
|
|
31617
|
+
zSkipStatusCheck,
|
|
30110
31618
|
zSizeAnalysisResponse,
|
|
30111
31619
|
zShortIdLookupResponse,
|
|
30112
31620
|
zSessionsQueryResult,
|
|
@@ -30264,6 +31772,8 @@ export {
|
|
|
30264
31772
|
zListOrganizationWorkflowsData,
|
|
30265
31773
|
zListOrganizationUserTeamsResponse,
|
|
30266
31774
|
zListOrganizationUserTeamsData,
|
|
31775
|
+
zListOrganizationTraceItemsStatsResponse,
|
|
31776
|
+
zListOrganizationTraceItemsStatsData,
|
|
30267
31777
|
zListOrganizationTraceItemAttributesResponse,
|
|
30268
31778
|
zListOrganizationTraceItemAttributesData,
|
|
30269
31779
|
zListOrganizationTeamsResponse,
|
|
@@ -30358,11 +31868,13 @@ export {
|
|
|
30358
31868
|
zLinkedDashboard,
|
|
30359
31869
|
zLinkProjectRepositoryResponse,
|
|
30360
31870
|
zLinkProjectRepositoryData,
|
|
31871
|
+
zLinkExternalIssueRequest,
|
|
30361
31872
|
zLegacyBrowserFilter,
|
|
30362
31873
|
zLayout,
|
|
30363
31874
|
zLatestInstallableBuildResponse,
|
|
30364
31875
|
zLatestBaseSnapshotResponse,
|
|
30365
31876
|
zIssueEventDetailsResponse,
|
|
31877
|
+
zIntegrationIssueConfigResponse,
|
|
30366
31878
|
zInstallInfoResponse,
|
|
30367
31879
|
zInCommitValidator,
|
|
30368
31880
|
zGroupValidator,
|
|
@@ -30455,6 +31967,8 @@ export {
|
|
|
30455
31967
|
zGetOrganizationIssueTagResponse,
|
|
30456
31968
|
zGetOrganizationIssueTagData,
|
|
30457
31969
|
zGetOrganizationIssueResponse,
|
|
31970
|
+
zGetOrganizationIssueIntegrationResponse,
|
|
31971
|
+
zGetOrganizationIssueIntegrationData,
|
|
30458
31972
|
zGetOrganizationIssueEventResponse,
|
|
30459
31973
|
zGetOrganizationIssueEventData,
|
|
30460
31974
|
zGetOrganizationIssueData,
|
|
@@ -30475,6 +31989,7 @@ export {
|
|
|
30475
31989
|
zExternalUserWritable,
|
|
30476
31990
|
zExternalUser,
|
|
30477
31991
|
zExternalTeam,
|
|
31992
|
+
zExternalIssueLinkResponse,
|
|
30478
31993
|
zExternalActor,
|
|
30479
31994
|
zExplorerAutofixRequest,
|
|
30480
31995
|
zEventIdLookupResponse,
|
|
@@ -30538,6 +32053,8 @@ export {
|
|
|
30538
32053
|
zDeleteOrganizationMemberData,
|
|
30539
32054
|
zDeleteOrganizationIssuesResponse,
|
|
30540
32055
|
zDeleteOrganizationIssuesData,
|
|
32056
|
+
zDeleteOrganizationIssueIntegrationResponse,
|
|
32057
|
+
zDeleteOrganizationIssueIntegrationData,
|
|
30541
32058
|
zDeleteOrganizationIssueData,
|
|
30542
32059
|
zDeleteOrganizationIntegrationResponse,
|
|
30543
32060
|
zDeleteOrganizationIntegrationData,
|
|
@@ -30574,6 +32091,8 @@ export {
|
|
|
30574
32091
|
zCreateProjectUserFeedbackData,
|
|
30575
32092
|
zCreateProjectReplayDeletionJobResponse,
|
|
30576
32093
|
zCreateProjectReplayDeletionJobData,
|
|
32094
|
+
zCreateProjectPreprodSnapshotSkippedStatusCheckData,
|
|
32095
|
+
zCreateProjectPreprodSizeAnalysisSkippedStatusCheckData,
|
|
30577
32096
|
zCreateProjectKeyResponse,
|
|
30578
32097
|
zCreateProjectKeyData,
|
|
30579
32098
|
zCreateProjectHookResponse,
|
|
@@ -30596,6 +32115,8 @@ export {
|
|
|
30596
32115
|
zCreateOrganizationNotificationsActionData,
|
|
30597
32116
|
zCreateOrganizationMonitorResponse,
|
|
30598
32117
|
zCreateOrganizationMonitorData,
|
|
32118
|
+
zCreateOrganizationIssueIntegrationResponse,
|
|
32119
|
+
zCreateOrganizationIssueIntegrationData,
|
|
30599
32120
|
zCreateOrganizationForwardingResponse,
|
|
30600
32121
|
zCreateOrganizationForwardingData,
|
|
30601
32122
|
zCreateOrganizationExternalUserResponse,
|
|
@@ -30604,6 +32125,7 @@ export {
|
|
|
30604
32125
|
zCreateOrganizationDiscoverSavedQueryData,
|
|
30605
32126
|
zCreateOrganizationDashboardResponse,
|
|
30606
32127
|
zCreateOrganizationDashboardData,
|
|
32128
|
+
zCreateExternalIssueRequest,
|
|
30607
32129
|
zConfigValidator,
|
|
30608
32130
|
zCommitSerializerResponse,
|
|
30609
32131
|
zCommitPatchSet,
|