@sentry/api 0.159.0 → 0.161.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 +11 -5
- package/dist/sdk.gen.d.ts +17 -5
- package/dist/types.gen.d.ts +323 -234
- package/dist/zod.gen.d.ts +974 -1656
- package/dist/zod.js +401 -326
- package/package.json +1 -1
package/dist/zod.js
CHANGED
|
@@ -2919,6 +2919,187 @@ var zGroupExternalIssueResponse = z.array(z.object({
|
|
|
2919
2919
|
displayName: z.string(),
|
|
2920
2920
|
webUrl: z.string()
|
|
2921
2921
|
}));
|
|
2922
|
+
var zGroupHashesResponse = z.array(z.object({
|
|
2923
|
+
id: z.string(),
|
|
2924
|
+
latestEvent: z.union([
|
|
2925
|
+
z.object({
|
|
2926
|
+
id: z.string(),
|
|
2927
|
+
groupID: z.union([
|
|
2928
|
+
z.string(),
|
|
2929
|
+
z.null()
|
|
2930
|
+
]),
|
|
2931
|
+
eventID: z.string(),
|
|
2932
|
+
projectID: z.string(),
|
|
2933
|
+
message: z.union([
|
|
2934
|
+
z.string(),
|
|
2935
|
+
z.null()
|
|
2936
|
+
]),
|
|
2937
|
+
title: z.string(),
|
|
2938
|
+
location: z.union([
|
|
2939
|
+
z.string(),
|
|
2940
|
+
z.null()
|
|
2941
|
+
]),
|
|
2942
|
+
user: z.union([
|
|
2943
|
+
z.object({
|
|
2944
|
+
id: z.union([
|
|
2945
|
+
z.string(),
|
|
2946
|
+
z.null()
|
|
2947
|
+
]).optional(),
|
|
2948
|
+
email: z.union([
|
|
2949
|
+
z.string(),
|
|
2950
|
+
z.null()
|
|
2951
|
+
]).optional(),
|
|
2952
|
+
username: z.union([
|
|
2953
|
+
z.string(),
|
|
2954
|
+
z.null()
|
|
2955
|
+
]).optional(),
|
|
2956
|
+
ip_address: z.union([
|
|
2957
|
+
z.string(),
|
|
2958
|
+
z.null()
|
|
2959
|
+
]).optional(),
|
|
2960
|
+
name: z.union([
|
|
2961
|
+
z.string(),
|
|
2962
|
+
z.null()
|
|
2963
|
+
]).optional(),
|
|
2964
|
+
geo: z.union([
|
|
2965
|
+
z.record(z.string()),
|
|
2966
|
+
z.null()
|
|
2967
|
+
]).optional(),
|
|
2968
|
+
data: z.union([
|
|
2969
|
+
z.record(z.unknown()),
|
|
2970
|
+
z.null()
|
|
2971
|
+
]).optional()
|
|
2972
|
+
}),
|
|
2973
|
+
z.null()
|
|
2974
|
+
]),
|
|
2975
|
+
tags: z.array(z.object({
|
|
2976
|
+
query: z.string().optional(),
|
|
2977
|
+
key: z.string(),
|
|
2978
|
+
value: z.string()
|
|
2979
|
+
})),
|
|
2980
|
+
platform: z.string(),
|
|
2981
|
+
dateReceived: z.union([
|
|
2982
|
+
z.string().datetime(),
|
|
2983
|
+
z.null()
|
|
2984
|
+
]),
|
|
2985
|
+
contexts: z.union([
|
|
2986
|
+
z.record(z.unknown()),
|
|
2987
|
+
z.null()
|
|
2988
|
+
]),
|
|
2989
|
+
size: z.union([
|
|
2990
|
+
z.number().int(),
|
|
2991
|
+
z.null()
|
|
2992
|
+
]),
|
|
2993
|
+
entries: z.array(z.unknown()),
|
|
2994
|
+
dist: z.union([
|
|
2995
|
+
z.string(),
|
|
2996
|
+
z.null()
|
|
2997
|
+
]),
|
|
2998
|
+
sdk: z.record(z.string()),
|
|
2999
|
+
context: z.union([
|
|
3000
|
+
z.record(z.unknown()),
|
|
3001
|
+
z.null()
|
|
3002
|
+
]),
|
|
3003
|
+
packages: z.record(z.unknown()),
|
|
3004
|
+
type: z.string(),
|
|
3005
|
+
metadata: z.unknown(),
|
|
3006
|
+
errors: z.array(z.unknown()),
|
|
3007
|
+
occurrence: z.unknown(),
|
|
3008
|
+
_meta: z.record(z.unknown()),
|
|
3009
|
+
crashFile: z.union([
|
|
3010
|
+
z.string(),
|
|
3011
|
+
z.null()
|
|
3012
|
+
]).optional(),
|
|
3013
|
+
culprit: z.union([
|
|
3014
|
+
z.string(),
|
|
3015
|
+
z.null()
|
|
3016
|
+
]).optional(),
|
|
3017
|
+
dateCreated: z.string().datetime().optional(),
|
|
3018
|
+
fingerprints: z.array(z.string()).optional(),
|
|
3019
|
+
groupingConfig: z.unknown().optional(),
|
|
3020
|
+
startTimestamp: z.string().datetime().optional(),
|
|
3021
|
+
endTimestamp: z.string().datetime().optional(),
|
|
3022
|
+
measurements: z.unknown().optional(),
|
|
3023
|
+
breakdowns: z.unknown().optional()
|
|
3024
|
+
}),
|
|
3025
|
+
z.object({
|
|
3026
|
+
id: z.string(),
|
|
3027
|
+
"event.type": z.string(),
|
|
3028
|
+
groupID: z.union([
|
|
3029
|
+
z.string(),
|
|
3030
|
+
z.null()
|
|
3031
|
+
]),
|
|
3032
|
+
eventID: z.string(),
|
|
3033
|
+
projectID: z.string(),
|
|
3034
|
+
message: z.string(),
|
|
3035
|
+
title: z.string(),
|
|
3036
|
+
location: z.union([
|
|
3037
|
+
z.string(),
|
|
3038
|
+
z.null()
|
|
3039
|
+
]),
|
|
3040
|
+
culprit: z.union([
|
|
3041
|
+
z.string(),
|
|
3042
|
+
z.null()
|
|
3043
|
+
]),
|
|
3044
|
+
user: z.union([
|
|
3045
|
+
z.object({
|
|
3046
|
+
id: z.union([
|
|
3047
|
+
z.string(),
|
|
3048
|
+
z.null()
|
|
3049
|
+
]).optional(),
|
|
3050
|
+
email: z.union([
|
|
3051
|
+
z.string(),
|
|
3052
|
+
z.null()
|
|
3053
|
+
]).optional(),
|
|
3054
|
+
username: z.union([
|
|
3055
|
+
z.string(),
|
|
3056
|
+
z.null()
|
|
3057
|
+
]).optional(),
|
|
3058
|
+
ip_address: z.union([
|
|
3059
|
+
z.string(),
|
|
3060
|
+
z.null()
|
|
3061
|
+
]).optional(),
|
|
3062
|
+
name: z.union([
|
|
3063
|
+
z.string(),
|
|
3064
|
+
z.null()
|
|
3065
|
+
]).optional(),
|
|
3066
|
+
geo: z.union([
|
|
3067
|
+
z.record(z.string()),
|
|
3068
|
+
z.null()
|
|
3069
|
+
]).optional(),
|
|
3070
|
+
data: z.union([
|
|
3071
|
+
z.record(z.unknown()),
|
|
3072
|
+
z.null()
|
|
3073
|
+
]).optional()
|
|
3074
|
+
}),
|
|
3075
|
+
z.null()
|
|
3076
|
+
]),
|
|
3077
|
+
tags: z.array(z.object({
|
|
3078
|
+
query: z.string().optional(),
|
|
3079
|
+
key: z.string(),
|
|
3080
|
+
value: z.string()
|
|
3081
|
+
})),
|
|
3082
|
+
platform: z.union([
|
|
3083
|
+
z.string(),
|
|
3084
|
+
z.null()
|
|
3085
|
+
]),
|
|
3086
|
+
dateCreated: z.string().datetime(),
|
|
3087
|
+
crashFile: z.union([
|
|
3088
|
+
z.string(),
|
|
3089
|
+
z.null()
|
|
3090
|
+
]),
|
|
3091
|
+
metadata: z.union([
|
|
3092
|
+
z.record(z.unknown()),
|
|
3093
|
+
z.null()
|
|
3094
|
+
])
|
|
3095
|
+
}),
|
|
3096
|
+
z.union([
|
|
3097
|
+
z.record(z.unknown()),
|
|
3098
|
+
z.null()
|
|
3099
|
+
])
|
|
3100
|
+
]),
|
|
3101
|
+
mergedBySeer: z.boolean()
|
|
3102
|
+
}));
|
|
2922
3103
|
var zGroupUpdateResponse = z.object({
|
|
2923
3104
|
isUnhandled: z.boolean().optional(),
|
|
2924
3105
|
count: z.string().optional(),
|
|
@@ -6953,6 +7134,7 @@ var zOrganizationMemberWithRoles = z.object({
|
|
|
6953
7134
|
])
|
|
6954
7135
|
}))
|
|
6955
7136
|
});
|
|
7137
|
+
var zOrganizationProfilingFlamegraphResponse = z.record(z.unknown());
|
|
6956
7138
|
var zOrganizationProjectResponseDict = z.array(z.object({
|
|
6957
7139
|
latestDeploys: z.union([
|
|
6958
7140
|
z.record(z.record(z.string())),
|
|
@@ -16416,6 +16598,29 @@ var zRetrieveLatestBaseSnapshotResponse = z.object({
|
|
|
16416
16598
|
]).optional()
|
|
16417
16599
|
}).optional()
|
|
16418
16600
|
});
|
|
16601
|
+
var zRetrieveAFlamegraphForAnOrganizationData = z.object({
|
|
16602
|
+
body: z.never().optional(),
|
|
16603
|
+
path: z.object({
|
|
16604
|
+
organization_id_or_slug: z.string()
|
|
16605
|
+
}),
|
|
16606
|
+
query: z.object({
|
|
16607
|
+
project: z.array(z.number().int()).optional(),
|
|
16608
|
+
environment: z.array(z.string()).optional(),
|
|
16609
|
+
statsPeriod: z.string().optional(),
|
|
16610
|
+
start: z.string().datetime().optional(),
|
|
16611
|
+
end: z.string().datetime().optional(),
|
|
16612
|
+
dataSource: z.enum([
|
|
16613
|
+
"functions",
|
|
16614
|
+
"profiles",
|
|
16615
|
+
"spans",
|
|
16616
|
+
"transactions"
|
|
16617
|
+
]).optional(),
|
|
16618
|
+
fingerprint: z.number().int().optional(),
|
|
16619
|
+
query: z.string().optional(),
|
|
16620
|
+
expand: z.array(z.enum(["metrics"])).optional()
|
|
16621
|
+
}).optional()
|
|
16622
|
+
});
|
|
16623
|
+
var zRetrieveAFlamegraphForAnOrganizationResponse = z.record(z.unknown());
|
|
16419
16624
|
var zListAnOrganizationSClientKeysData = z.object({
|
|
16420
16625
|
body: z.never().optional(),
|
|
16421
16626
|
path: z.object({
|
|
@@ -25230,332 +25435,6 @@ var zListATagSValuesForAnIssueResponse = z.array(z.object({
|
|
|
25230
25435
|
z.null()
|
|
25231
25436
|
])
|
|
25232
25437
|
}));
|
|
25233
|
-
var zListAnIssueSHashesData = z.object({
|
|
25234
|
-
body: z.never().optional(),
|
|
25235
|
-
path: z.object({
|
|
25236
|
-
organization_id_or_slug: z.string(),
|
|
25237
|
-
issue_id: z.string()
|
|
25238
|
-
}),
|
|
25239
|
-
query: z.object({
|
|
25240
|
-
full: z.boolean().optional().default(true),
|
|
25241
|
-
cursor: z.string().optional()
|
|
25242
|
-
}).optional()
|
|
25243
|
-
});
|
|
25244
|
-
var zListAnIssueSHashesResponse = z.array(z.object({
|
|
25245
|
-
latestEvent: z.object({
|
|
25246
|
-
eventID: z.string(),
|
|
25247
|
-
dist: z.union([
|
|
25248
|
-
z.string(),
|
|
25249
|
-
z.null()
|
|
25250
|
-
]),
|
|
25251
|
-
message: z.string(),
|
|
25252
|
-
id: z.string(),
|
|
25253
|
-
size: z.number().int(),
|
|
25254
|
-
errors: z.array(z.object({
|
|
25255
|
-
message: z.string().optional(),
|
|
25256
|
-
type: z.string().optional(),
|
|
25257
|
-
data: z.object({
|
|
25258
|
-
column: z.number().int().optional(),
|
|
25259
|
-
source: z.string().optional(),
|
|
25260
|
-
row: z.number().int().optional()
|
|
25261
|
-
}).optional()
|
|
25262
|
-
})),
|
|
25263
|
-
platform: z.string(),
|
|
25264
|
-
type: z.string(),
|
|
25265
|
-
metadata: z.union([
|
|
25266
|
-
z.object({
|
|
25267
|
-
type: z.string(),
|
|
25268
|
-
value: z.string()
|
|
25269
|
-
}),
|
|
25270
|
-
z.object({
|
|
25271
|
-
title: z.string()
|
|
25272
|
-
})
|
|
25273
|
-
]),
|
|
25274
|
-
tags: z.array(z.object({
|
|
25275
|
-
value: z.string().optional(),
|
|
25276
|
-
key: z.string().optional(),
|
|
25277
|
-
_meta: z.union([
|
|
25278
|
-
z.string(),
|
|
25279
|
-
z.null()
|
|
25280
|
-
]).optional()
|
|
25281
|
-
})),
|
|
25282
|
-
dateCreated: z.string(),
|
|
25283
|
-
dateReceived: z.string(),
|
|
25284
|
-
user: z.union([
|
|
25285
|
-
z.object({
|
|
25286
|
-
username: z.union([
|
|
25287
|
-
z.string(),
|
|
25288
|
-
z.null()
|
|
25289
|
-
]),
|
|
25290
|
-
name: z.union([
|
|
25291
|
-
z.string(),
|
|
25292
|
-
z.null()
|
|
25293
|
-
]),
|
|
25294
|
-
ip_address: z.union([
|
|
25295
|
-
z.string(),
|
|
25296
|
-
z.null()
|
|
25297
|
-
]),
|
|
25298
|
-
email: z.union([
|
|
25299
|
-
z.string(),
|
|
25300
|
-
z.null()
|
|
25301
|
-
]),
|
|
25302
|
-
data: z.union([
|
|
25303
|
-
z.object({
|
|
25304
|
-
isStaff: z.boolean().optional()
|
|
25305
|
-
}),
|
|
25306
|
-
z.null()
|
|
25307
|
-
]),
|
|
25308
|
-
id: z.string()
|
|
25309
|
-
}),
|
|
25310
|
-
z.null()
|
|
25311
|
-
]),
|
|
25312
|
-
entries: z.array(z.union([
|
|
25313
|
-
z.object({
|
|
25314
|
-
type: z.string(),
|
|
25315
|
-
data: z.object({
|
|
25316
|
-
values: z.array(z.object({
|
|
25317
|
-
category: z.string(),
|
|
25318
|
-
level: z.string(),
|
|
25319
|
-
event_id: z.union([
|
|
25320
|
-
z.string(),
|
|
25321
|
-
z.null()
|
|
25322
|
-
]),
|
|
25323
|
-
timestamp: z.string().datetime(),
|
|
25324
|
-
data: z.union([
|
|
25325
|
-
z.record(z.unknown()),
|
|
25326
|
-
z.null()
|
|
25327
|
-
]),
|
|
25328
|
-
message: z.union([
|
|
25329
|
-
z.string(),
|
|
25330
|
-
z.null()
|
|
25331
|
-
]),
|
|
25332
|
-
type: z.string()
|
|
25333
|
-
}))
|
|
25334
|
-
})
|
|
25335
|
-
}),
|
|
25336
|
-
z.object({
|
|
25337
|
-
type: z.string(),
|
|
25338
|
-
data: z.object({
|
|
25339
|
-
fragment: z.union([
|
|
25340
|
-
z.string(),
|
|
25341
|
-
z.null()
|
|
25342
|
-
]),
|
|
25343
|
-
cookies: z.union([
|
|
25344
|
-
z.array(z.array(z.string())),
|
|
25345
|
-
z.null()
|
|
25346
|
-
]),
|
|
25347
|
-
inferredContentType: z.union([
|
|
25348
|
-
z.string(),
|
|
25349
|
-
z.null()
|
|
25350
|
-
]),
|
|
25351
|
-
env: z.union([
|
|
25352
|
-
z.object({
|
|
25353
|
-
ENV: z.string().optional()
|
|
25354
|
-
}),
|
|
25355
|
-
z.null()
|
|
25356
|
-
]),
|
|
25357
|
-
headers: z.array(z.array(z.string())),
|
|
25358
|
-
url: z.string(),
|
|
25359
|
-
query: z.array(z.array(z.string())),
|
|
25360
|
-
data: z.union([
|
|
25361
|
-
z.record(z.unknown()),
|
|
25362
|
-
z.null()
|
|
25363
|
-
]),
|
|
25364
|
-
method: z.union([
|
|
25365
|
-
z.string(),
|
|
25366
|
-
z.null()
|
|
25367
|
-
])
|
|
25368
|
-
})
|
|
25369
|
-
}),
|
|
25370
|
-
z.object({
|
|
25371
|
-
type: z.string(),
|
|
25372
|
-
data: z.object({
|
|
25373
|
-
formatted: z.string()
|
|
25374
|
-
})
|
|
25375
|
-
}),
|
|
25376
|
-
z.object({
|
|
25377
|
-
type: z.string(),
|
|
25378
|
-
data: z.object({
|
|
25379
|
-
excOmitted: z.union([
|
|
25380
|
-
z.array(z.number().int()),
|
|
25381
|
-
z.null()
|
|
25382
|
-
]),
|
|
25383
|
-
hasSystemFrames: z.boolean(),
|
|
25384
|
-
values: z.array(z.object({
|
|
25385
|
-
stacktrace: z.union([
|
|
25386
|
-
z.object({
|
|
25387
|
-
frames: z.array(z.object({
|
|
25388
|
-
function: z.string(),
|
|
25389
|
-
errors: z.union([
|
|
25390
|
-
z.string(),
|
|
25391
|
-
z.null()
|
|
25392
|
-
]),
|
|
25393
|
-
colNo: z.union([
|
|
25394
|
-
z.number().int(),
|
|
25395
|
-
z.null()
|
|
25396
|
-
]),
|
|
25397
|
-
vars: z.union([
|
|
25398
|
-
z.record(z.unknown()),
|
|
25399
|
-
z.null()
|
|
25400
|
-
]),
|
|
25401
|
-
package: z.union([
|
|
25402
|
-
z.string(),
|
|
25403
|
-
z.null()
|
|
25404
|
-
]),
|
|
25405
|
-
absPath: z.union([
|
|
25406
|
-
z.string(),
|
|
25407
|
-
z.null()
|
|
25408
|
-
]),
|
|
25409
|
-
inApp: z.boolean(),
|
|
25410
|
-
lineNo: z.number().int(),
|
|
25411
|
-
module: z.string(),
|
|
25412
|
-
filename: z.string(),
|
|
25413
|
-
platform: z.union([
|
|
25414
|
-
z.string(),
|
|
25415
|
-
z.null()
|
|
25416
|
-
]),
|
|
25417
|
-
instructionAddr: z.union([
|
|
25418
|
-
z.string(),
|
|
25419
|
-
z.null()
|
|
25420
|
-
]),
|
|
25421
|
-
context: z.array(z.array(z.union([z.number().int(), z.string()]))),
|
|
25422
|
-
symbolAddr: z.union([
|
|
25423
|
-
z.string(),
|
|
25424
|
-
z.null()
|
|
25425
|
-
]),
|
|
25426
|
-
trust: z.union([
|
|
25427
|
-
z.string(),
|
|
25428
|
-
z.null()
|
|
25429
|
-
]),
|
|
25430
|
-
symbol: z.union([
|
|
25431
|
-
z.string(),
|
|
25432
|
-
z.null()
|
|
25433
|
-
])
|
|
25434
|
-
})),
|
|
25435
|
-
framesOmitted: z.union([
|
|
25436
|
-
z.string(),
|
|
25437
|
-
z.null()
|
|
25438
|
-
]),
|
|
25439
|
-
registers: z.union([
|
|
25440
|
-
z.string(),
|
|
25441
|
-
z.null()
|
|
25442
|
-
]),
|
|
25443
|
-
hasSystemFrames: z.boolean()
|
|
25444
|
-
}),
|
|
25445
|
-
z.null()
|
|
25446
|
-
]),
|
|
25447
|
-
module: z.union([
|
|
25448
|
-
z.string(),
|
|
25449
|
-
z.null()
|
|
25450
|
-
]),
|
|
25451
|
-
rawStacktrace: z.union([
|
|
25452
|
-
z.record(z.unknown()),
|
|
25453
|
-
z.null()
|
|
25454
|
-
]),
|
|
25455
|
-
mechanism: z.union([
|
|
25456
|
-
z.object({
|
|
25457
|
-
type: z.string().optional(),
|
|
25458
|
-
handled: z.boolean().optional()
|
|
25459
|
-
}),
|
|
25460
|
-
z.null()
|
|
25461
|
-
]),
|
|
25462
|
-
threadId: z.union([
|
|
25463
|
-
z.string(),
|
|
25464
|
-
z.null()
|
|
25465
|
-
]),
|
|
25466
|
-
value: z.string(),
|
|
25467
|
-
type: z.string()
|
|
25468
|
-
}))
|
|
25469
|
-
})
|
|
25470
|
-
})
|
|
25471
|
-
])),
|
|
25472
|
-
packages: z.record(z.unknown()),
|
|
25473
|
-
sdk: z.object({
|
|
25474
|
-
version: z.string().optional(),
|
|
25475
|
-
name: z.string().optional()
|
|
25476
|
-
}),
|
|
25477
|
-
_meta: z.object({
|
|
25478
|
-
user: z.union([
|
|
25479
|
-
z.string(),
|
|
25480
|
-
z.null()
|
|
25481
|
-
]).optional(),
|
|
25482
|
-
context: z.union([
|
|
25483
|
-
z.string(),
|
|
25484
|
-
z.null()
|
|
25485
|
-
]).optional(),
|
|
25486
|
-
entries: z.record(z.unknown()).optional(),
|
|
25487
|
-
contexts: z.union([
|
|
25488
|
-
z.string(),
|
|
25489
|
-
z.null()
|
|
25490
|
-
]).optional(),
|
|
25491
|
-
message: z.union([
|
|
25492
|
-
z.string(),
|
|
25493
|
-
z.null()
|
|
25494
|
-
]).optional(),
|
|
25495
|
-
packages: z.union([
|
|
25496
|
-
z.string(),
|
|
25497
|
-
z.null()
|
|
25498
|
-
]).optional(),
|
|
25499
|
-
tags: z.record(z.unknown()).optional(),
|
|
25500
|
-
sdk: z.union([
|
|
25501
|
-
z.string(),
|
|
25502
|
-
z.null()
|
|
25503
|
-
]).optional()
|
|
25504
|
-
}),
|
|
25505
|
-
contexts: z.object({
|
|
25506
|
-
ForbiddenError: z.object({
|
|
25507
|
-
status: z.number().int().optional(),
|
|
25508
|
-
statusText: z.string().optional(),
|
|
25509
|
-
responseJSON: z.object({
|
|
25510
|
-
detail: z.string().optional()
|
|
25511
|
-
}).optional(),
|
|
25512
|
-
type: z.string().optional()
|
|
25513
|
-
}).optional(),
|
|
25514
|
-
browser: z.object({
|
|
25515
|
-
version: z.string().optional(),
|
|
25516
|
-
type: z.string().optional(),
|
|
25517
|
-
name: z.string().optional()
|
|
25518
|
-
}).optional(),
|
|
25519
|
-
os: z.object({
|
|
25520
|
-
version: z.string().optional(),
|
|
25521
|
-
type: z.string().optional(),
|
|
25522
|
-
name: z.string().optional()
|
|
25523
|
-
}).optional(),
|
|
25524
|
-
trace: z.object({
|
|
25525
|
-
span_id: z.string().optional(),
|
|
25526
|
-
type: z.string().optional(),
|
|
25527
|
-
trace_id: z.string().optional(),
|
|
25528
|
-
op: z.string().optional()
|
|
25529
|
-
}).optional(),
|
|
25530
|
-
organization: z.object({
|
|
25531
|
-
type: z.string().optional(),
|
|
25532
|
-
id: z.string().optional(),
|
|
25533
|
-
slug: z.string().optional()
|
|
25534
|
-
}).optional()
|
|
25535
|
-
}),
|
|
25536
|
-
fingerprints: z.array(z.string()),
|
|
25537
|
-
context: z.object({
|
|
25538
|
-
resp: z.object({
|
|
25539
|
-
status: z.number().int().optional(),
|
|
25540
|
-
responseJSON: z.object({
|
|
25541
|
-
detail: z.string().optional()
|
|
25542
|
-
}).optional(),
|
|
25543
|
-
name: z.string().optional(),
|
|
25544
|
-
statusText: z.string().optional(),
|
|
25545
|
-
message: z.string().optional(),
|
|
25546
|
-
stack: z.string().optional()
|
|
25547
|
-
}).optional(),
|
|
25548
|
-
session: z.object({
|
|
25549
|
-
foo: z.string().optional()
|
|
25550
|
-
}).optional(),
|
|
25551
|
-
unauthorized: z.boolean().optional(),
|
|
25552
|
-
url: z.string().optional()
|
|
25553
|
-
}),
|
|
25554
|
-
groupID: z.string(),
|
|
25555
|
-
title: z.string()
|
|
25556
|
-
}).optional(),
|
|
25557
|
-
id: z.string().optional()
|
|
25558
|
-
}));
|
|
25559
25438
|
var zListAnOrganizationSReleasesData = z.object({
|
|
25560
25439
|
body: z.never().optional(),
|
|
25561
25440
|
path: z.object({
|
|
@@ -26886,6 +26765,198 @@ var zRetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueResponse = z.array
|
|
|
26886
26765
|
displayName: z.string(),
|
|
26887
26766
|
webUrl: z.string()
|
|
26888
26767
|
}));
|
|
26768
|
+
var zListAnIssueSHashesData = z.object({
|
|
26769
|
+
body: z.never().optional(),
|
|
26770
|
+
path: z.object({
|
|
26771
|
+
organization_id_or_slug: z.string(),
|
|
26772
|
+
issue_id: z.number().int()
|
|
26773
|
+
}),
|
|
26774
|
+
query: z.object({
|
|
26775
|
+
full: z.boolean().optional().default(true),
|
|
26776
|
+
cursor: z.string().min(1).optional()
|
|
26777
|
+
}).optional()
|
|
26778
|
+
});
|
|
26779
|
+
var zListAnIssueSHashesResponse = z.array(z.object({
|
|
26780
|
+
id: z.string(),
|
|
26781
|
+
latestEvent: z.union([
|
|
26782
|
+
z.object({
|
|
26783
|
+
id: z.string(),
|
|
26784
|
+
groupID: z.union([
|
|
26785
|
+
z.string(),
|
|
26786
|
+
z.null()
|
|
26787
|
+
]),
|
|
26788
|
+
eventID: z.string(),
|
|
26789
|
+
projectID: z.string(),
|
|
26790
|
+
message: z.union([
|
|
26791
|
+
z.string(),
|
|
26792
|
+
z.null()
|
|
26793
|
+
]),
|
|
26794
|
+
title: z.string(),
|
|
26795
|
+
location: z.union([
|
|
26796
|
+
z.string(),
|
|
26797
|
+
z.null()
|
|
26798
|
+
]),
|
|
26799
|
+
user: z.union([
|
|
26800
|
+
z.object({
|
|
26801
|
+
id: z.union([
|
|
26802
|
+
z.string(),
|
|
26803
|
+
z.null()
|
|
26804
|
+
]).optional(),
|
|
26805
|
+
email: z.union([
|
|
26806
|
+
z.string(),
|
|
26807
|
+
z.null()
|
|
26808
|
+
]).optional(),
|
|
26809
|
+
username: z.union([
|
|
26810
|
+
z.string(),
|
|
26811
|
+
z.null()
|
|
26812
|
+
]).optional(),
|
|
26813
|
+
ip_address: z.union([
|
|
26814
|
+
z.string(),
|
|
26815
|
+
z.null()
|
|
26816
|
+
]).optional(),
|
|
26817
|
+
name: z.union([
|
|
26818
|
+
z.string(),
|
|
26819
|
+
z.null()
|
|
26820
|
+
]).optional(),
|
|
26821
|
+
geo: z.union([
|
|
26822
|
+
z.record(z.string()),
|
|
26823
|
+
z.null()
|
|
26824
|
+
]).optional(),
|
|
26825
|
+
data: z.union([
|
|
26826
|
+
z.record(z.unknown()),
|
|
26827
|
+
z.null()
|
|
26828
|
+
]).optional()
|
|
26829
|
+
}),
|
|
26830
|
+
z.null()
|
|
26831
|
+
]),
|
|
26832
|
+
tags: z.array(z.object({
|
|
26833
|
+
query: z.string().optional(),
|
|
26834
|
+
key: z.string(),
|
|
26835
|
+
value: z.string()
|
|
26836
|
+
})),
|
|
26837
|
+
platform: z.string(),
|
|
26838
|
+
dateReceived: z.union([
|
|
26839
|
+
z.string().datetime(),
|
|
26840
|
+
z.null()
|
|
26841
|
+
]),
|
|
26842
|
+
contexts: z.union([
|
|
26843
|
+
z.record(z.unknown()),
|
|
26844
|
+
z.null()
|
|
26845
|
+
]),
|
|
26846
|
+
size: z.union([
|
|
26847
|
+
z.number().int(),
|
|
26848
|
+
z.null()
|
|
26849
|
+
]),
|
|
26850
|
+
entries: z.array(z.unknown()),
|
|
26851
|
+
dist: z.union([
|
|
26852
|
+
z.string(),
|
|
26853
|
+
z.null()
|
|
26854
|
+
]),
|
|
26855
|
+
sdk: z.record(z.string()),
|
|
26856
|
+
context: z.union([
|
|
26857
|
+
z.record(z.unknown()),
|
|
26858
|
+
z.null()
|
|
26859
|
+
]),
|
|
26860
|
+
packages: z.record(z.unknown()),
|
|
26861
|
+
type: z.string(),
|
|
26862
|
+
metadata: z.unknown(),
|
|
26863
|
+
errors: z.array(z.unknown()),
|
|
26864
|
+
occurrence: z.unknown(),
|
|
26865
|
+
_meta: z.record(z.unknown()),
|
|
26866
|
+
crashFile: z.union([
|
|
26867
|
+
z.string(),
|
|
26868
|
+
z.null()
|
|
26869
|
+
]).optional(),
|
|
26870
|
+
culprit: z.union([
|
|
26871
|
+
z.string(),
|
|
26872
|
+
z.null()
|
|
26873
|
+
]).optional(),
|
|
26874
|
+
dateCreated: z.string().datetime().optional(),
|
|
26875
|
+
fingerprints: z.array(z.string()).optional(),
|
|
26876
|
+
groupingConfig: z.unknown().optional(),
|
|
26877
|
+
startTimestamp: z.string().datetime().optional(),
|
|
26878
|
+
endTimestamp: z.string().datetime().optional(),
|
|
26879
|
+
measurements: z.unknown().optional(),
|
|
26880
|
+
breakdowns: z.unknown().optional()
|
|
26881
|
+
}),
|
|
26882
|
+
z.object({
|
|
26883
|
+
id: z.string(),
|
|
26884
|
+
"event.type": z.string(),
|
|
26885
|
+
groupID: z.union([
|
|
26886
|
+
z.string(),
|
|
26887
|
+
z.null()
|
|
26888
|
+
]),
|
|
26889
|
+
eventID: z.string(),
|
|
26890
|
+
projectID: z.string(),
|
|
26891
|
+
message: z.string(),
|
|
26892
|
+
title: z.string(),
|
|
26893
|
+
location: z.union([
|
|
26894
|
+
z.string(),
|
|
26895
|
+
z.null()
|
|
26896
|
+
]),
|
|
26897
|
+
culprit: z.union([
|
|
26898
|
+
z.string(),
|
|
26899
|
+
z.null()
|
|
26900
|
+
]),
|
|
26901
|
+
user: z.union([
|
|
26902
|
+
z.object({
|
|
26903
|
+
id: z.union([
|
|
26904
|
+
z.string(),
|
|
26905
|
+
z.null()
|
|
26906
|
+
]).optional(),
|
|
26907
|
+
email: z.union([
|
|
26908
|
+
z.string(),
|
|
26909
|
+
z.null()
|
|
26910
|
+
]).optional(),
|
|
26911
|
+
username: z.union([
|
|
26912
|
+
z.string(),
|
|
26913
|
+
z.null()
|
|
26914
|
+
]).optional(),
|
|
26915
|
+
ip_address: z.union([
|
|
26916
|
+
z.string(),
|
|
26917
|
+
z.null()
|
|
26918
|
+
]).optional(),
|
|
26919
|
+
name: z.union([
|
|
26920
|
+
z.string(),
|
|
26921
|
+
z.null()
|
|
26922
|
+
]).optional(),
|
|
26923
|
+
geo: z.union([
|
|
26924
|
+
z.record(z.string()),
|
|
26925
|
+
z.null()
|
|
26926
|
+
]).optional(),
|
|
26927
|
+
data: z.union([
|
|
26928
|
+
z.record(z.unknown()),
|
|
26929
|
+
z.null()
|
|
26930
|
+
]).optional()
|
|
26931
|
+
}),
|
|
26932
|
+
z.null()
|
|
26933
|
+
]),
|
|
26934
|
+
tags: z.array(z.object({
|
|
26935
|
+
query: z.string().optional(),
|
|
26936
|
+
key: z.string(),
|
|
26937
|
+
value: z.string()
|
|
26938
|
+
})),
|
|
26939
|
+
platform: z.union([
|
|
26940
|
+
z.string(),
|
|
26941
|
+
z.null()
|
|
26942
|
+
]),
|
|
26943
|
+
dateCreated: z.string().datetime(),
|
|
26944
|
+
crashFile: z.union([
|
|
26945
|
+
z.string(),
|
|
26946
|
+
z.null()
|
|
26947
|
+
]),
|
|
26948
|
+
metadata: z.union([
|
|
26949
|
+
z.record(z.unknown()),
|
|
26950
|
+
z.null()
|
|
26951
|
+
])
|
|
26952
|
+
}),
|
|
26953
|
+
z.union([
|
|
26954
|
+
z.record(z.unknown()),
|
|
26955
|
+
z.null()
|
|
26956
|
+
])
|
|
26957
|
+
]),
|
|
26958
|
+
mergedBySeer: z.boolean()
|
|
26959
|
+
}));
|
|
26889
26960
|
var zRetrieveTagDetailsData = z.object({
|
|
26890
26961
|
body: z.never().optional(),
|
|
26891
26962
|
path: z.object({
|
|
@@ -27119,6 +27190,8 @@ export {
|
|
|
27119
27190
|
zRetrieveAMonitorForAProjectResponse,
|
|
27120
27191
|
zRetrieveAMonitorForAProjectData,
|
|
27121
27192
|
zRetrieveAMonitorData,
|
|
27193
|
+
zRetrieveAFlamegraphForAnOrganizationResponse,
|
|
27194
|
+
zRetrieveAFlamegraphForAnOrganizationData,
|
|
27122
27195
|
zRetrieveACustomIntegrationByIdOrSlugResponse,
|
|
27123
27196
|
zRetrieveACustomIntegrationByIdOrSlugData,
|
|
27124
27197
|
zRetrieveACountOfReplaysForAGivenIssueOrTransactionResponse,
|
|
@@ -27178,6 +27251,7 @@ export {
|
|
|
27178
27251
|
zOrganizationRelease,
|
|
27179
27252
|
zOrganizationRelayResponse,
|
|
27180
27253
|
zOrganizationProjectResponseDict,
|
|
27254
|
+
zOrganizationProfilingFlamegraphResponse,
|
|
27181
27255
|
zOrganizationMemberWithRoles,
|
|
27182
27256
|
zOrganizationMemberTeamDetails,
|
|
27183
27257
|
zOrganizationMemberTeam,
|
|
@@ -27338,6 +27412,7 @@ export {
|
|
|
27338
27412
|
zInCommitValidator,
|
|
27339
27413
|
zGroupValidator,
|
|
27340
27414
|
zGroupUpdateResponse,
|
|
27415
|
+
zGroupHashesResponse,
|
|
27341
27416
|
zGroupExternalIssueResponse,
|
|
27342
27417
|
zGroupEventsResponseDict,
|
|
27343
27418
|
zGroupDetailsResponse,
|