@sentry/api 0.155.0 → 0.157.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 +30 -0
- package/dist/pagination.gen.d.ts +31 -1
- package/dist/sdk.gen.d.ts +17 -1
- package/dist/types.gen.d.ts +458 -0
- package/dist/zod.gen.d.ts +1857 -392
- package/dist/zod.js +583 -5
- package/package.json +1 -1
package/dist/zod.js
CHANGED
|
@@ -3888,6 +3888,26 @@ var zListDetectorSerializerResponse = z.array(z.object({
|
|
|
3888
3888
|
config: z.record(z.unknown()),
|
|
3889
3889
|
enabled: z.boolean()
|
|
3890
3890
|
}));
|
|
3891
|
+
var zListEventAttachmentsResponse = z.array(z.object({
|
|
3892
|
+
id: z.string(),
|
|
3893
|
+
event_id: z.string(),
|
|
3894
|
+
type: z.string(),
|
|
3895
|
+
name: z.string(),
|
|
3896
|
+
mimetype: z.union([
|
|
3897
|
+
z.string(),
|
|
3898
|
+
z.null()
|
|
3899
|
+
]),
|
|
3900
|
+
dateCreated: z.string().datetime(),
|
|
3901
|
+
size: z.number().int(),
|
|
3902
|
+
headers: z.record(z.union([
|
|
3903
|
+
z.string(),
|
|
3904
|
+
z.null()
|
|
3905
|
+
])),
|
|
3906
|
+
sha1: z.union([
|
|
3907
|
+
z.string(),
|
|
3908
|
+
z.null()
|
|
3909
|
+
])
|
|
3910
|
+
}));
|
|
3891
3911
|
var zListMemberOnTeamResponse = z.array(z.object({
|
|
3892
3912
|
externalUsers: z.array(z.object({
|
|
3893
3913
|
externalId: z.string().optional(),
|
|
@@ -4453,6 +4473,242 @@ var zListProjectEnvironments = z.array(z.object({
|
|
|
4453
4473
|
name: z.string(),
|
|
4454
4474
|
isHidden: z.boolean()
|
|
4455
4475
|
}));
|
|
4476
|
+
var zListProjectReleasesResponse = z.array(z.object({
|
|
4477
|
+
ref: z.union([
|
|
4478
|
+
z.string(),
|
|
4479
|
+
z.null()
|
|
4480
|
+
]).optional(),
|
|
4481
|
+
url: z.union([
|
|
4482
|
+
z.string(),
|
|
4483
|
+
z.null()
|
|
4484
|
+
]).optional(),
|
|
4485
|
+
dateReleased: z.union([
|
|
4486
|
+
z.string().datetime(),
|
|
4487
|
+
z.null()
|
|
4488
|
+
]).optional(),
|
|
4489
|
+
dateCreated: z.union([
|
|
4490
|
+
z.string().datetime(),
|
|
4491
|
+
z.null()
|
|
4492
|
+
]).optional(),
|
|
4493
|
+
dateStarted: z.union([
|
|
4494
|
+
z.string().datetime(),
|
|
4495
|
+
z.null()
|
|
4496
|
+
]).optional(),
|
|
4497
|
+
owner: z.union([
|
|
4498
|
+
z.record(z.unknown()),
|
|
4499
|
+
z.null()
|
|
4500
|
+
]).optional(),
|
|
4501
|
+
lastCommit: z.union([
|
|
4502
|
+
z.record(z.unknown()),
|
|
4503
|
+
z.null()
|
|
4504
|
+
]).optional(),
|
|
4505
|
+
lastDeploy: z.union([
|
|
4506
|
+
z.object({
|
|
4507
|
+
dateStarted: z.union([
|
|
4508
|
+
z.string(),
|
|
4509
|
+
z.null()
|
|
4510
|
+
]).optional(),
|
|
4511
|
+
url: z.union([
|
|
4512
|
+
z.string(),
|
|
4513
|
+
z.null()
|
|
4514
|
+
]).optional(),
|
|
4515
|
+
id: z.string(),
|
|
4516
|
+
environment: z.string(),
|
|
4517
|
+
dateFinished: z.string(),
|
|
4518
|
+
name: z.string()
|
|
4519
|
+
}),
|
|
4520
|
+
z.null()
|
|
4521
|
+
]).optional(),
|
|
4522
|
+
firstEvent: z.union([
|
|
4523
|
+
z.string().datetime(),
|
|
4524
|
+
z.null()
|
|
4525
|
+
]).optional(),
|
|
4526
|
+
lastEvent: z.union([
|
|
4527
|
+
z.string().datetime(),
|
|
4528
|
+
z.null()
|
|
4529
|
+
]).optional(),
|
|
4530
|
+
currentProjectMeta: z.union([
|
|
4531
|
+
z.record(z.unknown()),
|
|
4532
|
+
z.null()
|
|
4533
|
+
]).optional(),
|
|
4534
|
+
userAgent: z.union([
|
|
4535
|
+
z.string(),
|
|
4536
|
+
z.null()
|
|
4537
|
+
]).optional(),
|
|
4538
|
+
adoptionStages: z.union([
|
|
4539
|
+
z.record(z.unknown()),
|
|
4540
|
+
z.null()
|
|
4541
|
+
]).optional(),
|
|
4542
|
+
id: z.number().int(),
|
|
4543
|
+
version: z.string(),
|
|
4544
|
+
newGroups: z.number().int(),
|
|
4545
|
+
status: z.string(),
|
|
4546
|
+
shortVersion: z.string(),
|
|
4547
|
+
versionInfo: z.union([
|
|
4548
|
+
z.object({
|
|
4549
|
+
description: z.string().optional(),
|
|
4550
|
+
package: z.union([
|
|
4551
|
+
z.string(),
|
|
4552
|
+
z.null()
|
|
4553
|
+
]),
|
|
4554
|
+
version: z.record(z.unknown()),
|
|
4555
|
+
buildHash: z.union([
|
|
4556
|
+
z.string(),
|
|
4557
|
+
z.null()
|
|
4558
|
+
])
|
|
4559
|
+
}),
|
|
4560
|
+
z.null()
|
|
4561
|
+
]),
|
|
4562
|
+
data: z.record(z.unknown()),
|
|
4563
|
+
commitCount: z.number().int(),
|
|
4564
|
+
deployCount: z.number().int(),
|
|
4565
|
+
authors: z.array(z.union([z.object({
|
|
4566
|
+
identities: z.array(z.object({
|
|
4567
|
+
id: z.string(),
|
|
4568
|
+
name: z.string(),
|
|
4569
|
+
organization: z.object({
|
|
4570
|
+
slug: z.string(),
|
|
4571
|
+
name: z.string()
|
|
4572
|
+
}),
|
|
4573
|
+
provider: z.object({
|
|
4574
|
+
id: z.string(),
|
|
4575
|
+
name: z.string()
|
|
4576
|
+
}),
|
|
4577
|
+
dateVerified: z.string().datetime(),
|
|
4578
|
+
dateSynced: z.string().datetime()
|
|
4579
|
+
})).optional(),
|
|
4580
|
+
avatar: z.object({
|
|
4581
|
+
avatarType: z.string().optional(),
|
|
4582
|
+
avatarUuid: z.union([
|
|
4583
|
+
z.string(),
|
|
4584
|
+
z.null()
|
|
4585
|
+
]).optional(),
|
|
4586
|
+
avatarUrl: z.union([
|
|
4587
|
+
z.string(),
|
|
4588
|
+
z.null()
|
|
4589
|
+
]).optional()
|
|
4590
|
+
}).optional(),
|
|
4591
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
4592
|
+
canReset2fa: z.boolean().optional(),
|
|
4593
|
+
id: z.string(),
|
|
4594
|
+
name: z.string(),
|
|
4595
|
+
username: z.string(),
|
|
4596
|
+
email: z.string(),
|
|
4597
|
+
avatarUrl: z.string(),
|
|
4598
|
+
isActive: z.boolean(),
|
|
4599
|
+
isSuspended: z.boolean(),
|
|
4600
|
+
hasPasswordAuth: z.boolean(),
|
|
4601
|
+
isManaged: z.boolean(),
|
|
4602
|
+
dateJoined: z.string().datetime(),
|
|
4603
|
+
lastLogin: z.union([
|
|
4604
|
+
z.string().datetime(),
|
|
4605
|
+
z.null()
|
|
4606
|
+
]),
|
|
4607
|
+
has2fa: z.boolean(),
|
|
4608
|
+
lastActive: z.union([
|
|
4609
|
+
z.string().datetime(),
|
|
4610
|
+
z.null()
|
|
4611
|
+
]),
|
|
4612
|
+
isSuperuser: z.boolean(),
|
|
4613
|
+
isStaff: z.boolean(),
|
|
4614
|
+
experiments: z.record(z.unknown()),
|
|
4615
|
+
emails: z.array(z.object({
|
|
4616
|
+
id: z.string(),
|
|
4617
|
+
email: z.string(),
|
|
4618
|
+
is_verified: z.boolean()
|
|
4619
|
+
}))
|
|
4620
|
+
}), z.object({
|
|
4621
|
+
name: z.union([
|
|
4622
|
+
z.string(),
|
|
4623
|
+
z.null()
|
|
4624
|
+
]),
|
|
4625
|
+
email: z.string()
|
|
4626
|
+
})])),
|
|
4627
|
+
projects: z.array(z.object({
|
|
4628
|
+
healthData: z.union([
|
|
4629
|
+
z.object({
|
|
4630
|
+
durationP50: z.union([
|
|
4631
|
+
z.number(),
|
|
4632
|
+
z.null()
|
|
4633
|
+
]).optional(),
|
|
4634
|
+
durationP90: z.union([
|
|
4635
|
+
z.number(),
|
|
4636
|
+
z.null()
|
|
4637
|
+
]).optional(),
|
|
4638
|
+
crashFreeUsers: z.union([
|
|
4639
|
+
z.number(),
|
|
4640
|
+
z.null()
|
|
4641
|
+
]).optional(),
|
|
4642
|
+
crashFreeSessions: z.union([
|
|
4643
|
+
z.number(),
|
|
4644
|
+
z.null()
|
|
4645
|
+
]).optional(),
|
|
4646
|
+
totalUsers: z.union([
|
|
4647
|
+
z.number().int(),
|
|
4648
|
+
z.null()
|
|
4649
|
+
]).optional(),
|
|
4650
|
+
totalUsers24h: z.union([
|
|
4651
|
+
z.number().int(),
|
|
4652
|
+
z.null()
|
|
4653
|
+
]).optional(),
|
|
4654
|
+
totalProjectUsers24h: z.union([
|
|
4655
|
+
z.number().int(),
|
|
4656
|
+
z.null()
|
|
4657
|
+
]).optional(),
|
|
4658
|
+
totalSessions: z.union([
|
|
4659
|
+
z.number().int(),
|
|
4660
|
+
z.null()
|
|
4661
|
+
]).optional(),
|
|
4662
|
+
totalSessions24h: z.union([
|
|
4663
|
+
z.number().int(),
|
|
4664
|
+
z.null()
|
|
4665
|
+
]).optional(),
|
|
4666
|
+
totalProjectSessions24h: z.union([
|
|
4667
|
+
z.number().int(),
|
|
4668
|
+
z.null()
|
|
4669
|
+
]).optional(),
|
|
4670
|
+
adoption: z.union([
|
|
4671
|
+
z.number(),
|
|
4672
|
+
z.null()
|
|
4673
|
+
]).optional(),
|
|
4674
|
+
sessionsAdoption: z.union([
|
|
4675
|
+
z.number(),
|
|
4676
|
+
z.null()
|
|
4677
|
+
]).optional(),
|
|
4678
|
+
sessionsCrashed: z.number().int(),
|
|
4679
|
+
sessionsErrored: z.number().int(),
|
|
4680
|
+
hasHealthData: z.boolean(),
|
|
4681
|
+
stats: z.record(z.unknown())
|
|
4682
|
+
}),
|
|
4683
|
+
z.null()
|
|
4684
|
+
]).optional(),
|
|
4685
|
+
dateReleased: z.union([
|
|
4686
|
+
z.string().datetime(),
|
|
4687
|
+
z.null()
|
|
4688
|
+
]).optional(),
|
|
4689
|
+
dateCreated: z.union([
|
|
4690
|
+
z.string().datetime(),
|
|
4691
|
+
z.null()
|
|
4692
|
+
]).optional(),
|
|
4693
|
+
dateStarted: z.union([
|
|
4694
|
+
z.string().datetime(),
|
|
4695
|
+
z.null()
|
|
4696
|
+
]).optional(),
|
|
4697
|
+
id: z.number().int(),
|
|
4698
|
+
slug: z.string(),
|
|
4699
|
+
name: z.string(),
|
|
4700
|
+
platform: z.union([
|
|
4701
|
+
z.string(),
|
|
4702
|
+
z.null()
|
|
4703
|
+
]),
|
|
4704
|
+
platforms: z.union([
|
|
4705
|
+
z.array(z.string()),
|
|
4706
|
+
z.null()
|
|
4707
|
+
]),
|
|
4708
|
+
hasHealthData: z.boolean(),
|
|
4709
|
+
newGroups: z.number().int()
|
|
4710
|
+
}))
|
|
4711
|
+
}));
|
|
4456
4712
|
var zListReplayClicks = z.object({
|
|
4457
4713
|
data: z.array(z.object({
|
|
4458
4714
|
node_id: z.number().int(),
|
|
@@ -6914,6 +7170,16 @@ var zOrganizationSummary = z.object({
|
|
|
6914
7170
|
allowMemberProjectCreation: z.boolean(),
|
|
6915
7171
|
allowSuperuserAccess: z.boolean()
|
|
6916
7172
|
});
|
|
7173
|
+
var zOrganizationTraceMetaResponse = z.object({
|
|
7174
|
+
uptimeCount: z.number().int().optional(),
|
|
7175
|
+
errorsCount: z.number().int(),
|
|
7176
|
+
logsCount: z.number(),
|
|
7177
|
+
metricsCount: z.number(),
|
|
7178
|
+
performanceIssuesCount: z.number().int(),
|
|
7179
|
+
spansCount: z.number(),
|
|
7180
|
+
transactionChildCountMap: z.array(z.record(z.unknown())),
|
|
7181
|
+
spansCountMap: z.record(z.number())
|
|
7182
|
+
});
|
|
6917
7183
|
var zOrganizationWithProjectsAndTeams = z.object({
|
|
6918
7184
|
features: z.array(z.string()).optional(),
|
|
6919
7185
|
extraOptions: z.record(z.record(z.unknown())).optional(),
|
|
@@ -18865,14 +19131,37 @@ var zListTraceItemAttributesResponse2 = z.array(z.object({
|
|
|
18865
19131
|
"boolean"
|
|
18866
19132
|
])
|
|
18867
19133
|
}));
|
|
18868
|
-
var
|
|
19134
|
+
var zRetrieveTraceMetadataData = z.object({
|
|
18869
19135
|
body: z.never().optional(),
|
|
18870
19136
|
path: z.object({
|
|
18871
|
-
organization_id_or_slug: z.string()
|
|
19137
|
+
organization_id_or_slug: z.string(),
|
|
19138
|
+
trace_id: z.string()
|
|
18872
19139
|
}),
|
|
18873
|
-
query: z.
|
|
18874
|
-
|
|
18875
|
-
|
|
19140
|
+
query: z.object({
|
|
19141
|
+
statsPeriod: z.string().optional(),
|
|
19142
|
+
start: z.string().datetime().optional(),
|
|
19143
|
+
end: z.string().datetime().optional(),
|
|
19144
|
+
include_uptime: z.enum(["0", "1"]).optional()
|
|
19145
|
+
}).optional()
|
|
19146
|
+
});
|
|
19147
|
+
var zRetrieveTraceMetadataResponse = z.object({
|
|
19148
|
+
uptimeCount: z.number().int().optional(),
|
|
19149
|
+
errorsCount: z.number().int(),
|
|
19150
|
+
logsCount: z.number(),
|
|
19151
|
+
metricsCount: z.number(),
|
|
19152
|
+
performanceIssuesCount: z.number().int(),
|
|
19153
|
+
spansCount: z.number(),
|
|
19154
|
+
transactionChildCountMap: z.array(z.record(z.unknown())),
|
|
19155
|
+
spansCountMap: z.record(z.number())
|
|
19156
|
+
});
|
|
19157
|
+
var zListAuserSTeamsForAnOrganizationData = z.object({
|
|
19158
|
+
body: z.never().optional(),
|
|
19159
|
+
path: z.object({
|
|
19160
|
+
organization_id_or_slug: z.string()
|
|
19161
|
+
}),
|
|
19162
|
+
query: z.never().optional()
|
|
19163
|
+
});
|
|
19164
|
+
var zListAuserSTeamsForAnOrganizationResponse = z.array(z.object({
|
|
18876
19165
|
id: z.string(),
|
|
18877
19166
|
slug: z.string(),
|
|
18878
19167
|
name: z.string(),
|
|
@@ -20459,6 +20748,38 @@ var zRetrieveAnEventForAProjectResponse = z.object({
|
|
|
20459
20748
|
z.null()
|
|
20460
20749
|
])
|
|
20461
20750
|
});
|
|
20751
|
+
var zListAnEventSAttachmentsData = z.object({
|
|
20752
|
+
body: z.never().optional(),
|
|
20753
|
+
path: z.object({
|
|
20754
|
+
organization_id_or_slug: z.string(),
|
|
20755
|
+
project_id_or_slug: z.string(),
|
|
20756
|
+
event_id: z.string().regex(/^[0-9a-f]{32}$/)
|
|
20757
|
+
}),
|
|
20758
|
+
query: z.object({
|
|
20759
|
+
query: z.string().optional(),
|
|
20760
|
+
cursor: z.string().min(1).optional()
|
|
20761
|
+
}).optional()
|
|
20762
|
+
});
|
|
20763
|
+
var zListAnEventSAttachmentsResponse = z.array(z.object({
|
|
20764
|
+
id: z.string(),
|
|
20765
|
+
event_id: z.string(),
|
|
20766
|
+
type: z.string(),
|
|
20767
|
+
name: z.string(),
|
|
20768
|
+
mimetype: z.union([
|
|
20769
|
+
z.string(),
|
|
20770
|
+
z.null()
|
|
20771
|
+
]),
|
|
20772
|
+
dateCreated: z.string().datetime(),
|
|
20773
|
+
size: z.number().int(),
|
|
20774
|
+
headers: z.record(z.union([
|
|
20775
|
+
z.string(),
|
|
20776
|
+
z.null()
|
|
20777
|
+
])),
|
|
20778
|
+
sha1: z.union([
|
|
20779
|
+
z.string(),
|
|
20780
|
+
z.null()
|
|
20781
|
+
])
|
|
20782
|
+
}));
|
|
20462
20783
|
var zDebugIssuesRelatedToSourceMapsForAGivenEventData = z.object({
|
|
20463
20784
|
body: z.never().optional(),
|
|
20464
20785
|
path: z.object({
|
|
@@ -22349,6 +22670,254 @@ var zUploadASnapshotResponse = z.object({
|
|
|
22349
22670
|
imageCount: z.number().int(),
|
|
22350
22671
|
snapshotUrl: z.string()
|
|
22351
22672
|
});
|
|
22673
|
+
var zListAProjectSReleasesData = z.object({
|
|
22674
|
+
body: z.never().optional(),
|
|
22675
|
+
path: z.object({
|
|
22676
|
+
organization_id_or_slug: z.string(),
|
|
22677
|
+
project_id_or_slug: z.string()
|
|
22678
|
+
}),
|
|
22679
|
+
query: z.object({
|
|
22680
|
+
environment: z.array(z.string()).optional(),
|
|
22681
|
+
query: z.string().optional(),
|
|
22682
|
+
cursor: z.string().min(1).optional()
|
|
22683
|
+
}).optional()
|
|
22684
|
+
});
|
|
22685
|
+
var zListAProjectSReleasesResponse = z.array(z.object({
|
|
22686
|
+
ref: z.union([
|
|
22687
|
+
z.string(),
|
|
22688
|
+
z.null()
|
|
22689
|
+
]).optional(),
|
|
22690
|
+
url: z.union([
|
|
22691
|
+
z.string(),
|
|
22692
|
+
z.null()
|
|
22693
|
+
]).optional(),
|
|
22694
|
+
dateReleased: z.union([
|
|
22695
|
+
z.string().datetime(),
|
|
22696
|
+
z.null()
|
|
22697
|
+
]).optional(),
|
|
22698
|
+
dateCreated: z.union([
|
|
22699
|
+
z.string().datetime(),
|
|
22700
|
+
z.null()
|
|
22701
|
+
]).optional(),
|
|
22702
|
+
dateStarted: z.union([
|
|
22703
|
+
z.string().datetime(),
|
|
22704
|
+
z.null()
|
|
22705
|
+
]).optional(),
|
|
22706
|
+
owner: z.union([
|
|
22707
|
+
z.record(z.unknown()),
|
|
22708
|
+
z.null()
|
|
22709
|
+
]).optional(),
|
|
22710
|
+
lastCommit: z.union([
|
|
22711
|
+
z.record(z.unknown()),
|
|
22712
|
+
z.null()
|
|
22713
|
+
]).optional(),
|
|
22714
|
+
lastDeploy: z.union([
|
|
22715
|
+
z.object({
|
|
22716
|
+
dateStarted: z.union([
|
|
22717
|
+
z.string(),
|
|
22718
|
+
z.null()
|
|
22719
|
+
]).optional(),
|
|
22720
|
+
url: z.union([
|
|
22721
|
+
z.string(),
|
|
22722
|
+
z.null()
|
|
22723
|
+
]).optional(),
|
|
22724
|
+
id: z.string(),
|
|
22725
|
+
environment: z.string(),
|
|
22726
|
+
dateFinished: z.string(),
|
|
22727
|
+
name: z.string()
|
|
22728
|
+
}),
|
|
22729
|
+
z.null()
|
|
22730
|
+
]).optional(),
|
|
22731
|
+
firstEvent: z.union([
|
|
22732
|
+
z.string().datetime(),
|
|
22733
|
+
z.null()
|
|
22734
|
+
]).optional(),
|
|
22735
|
+
lastEvent: z.union([
|
|
22736
|
+
z.string().datetime(),
|
|
22737
|
+
z.null()
|
|
22738
|
+
]).optional(),
|
|
22739
|
+
currentProjectMeta: z.union([
|
|
22740
|
+
z.record(z.unknown()),
|
|
22741
|
+
z.null()
|
|
22742
|
+
]).optional(),
|
|
22743
|
+
userAgent: z.union([
|
|
22744
|
+
z.string(),
|
|
22745
|
+
z.null()
|
|
22746
|
+
]).optional(),
|
|
22747
|
+
adoptionStages: z.union([
|
|
22748
|
+
z.record(z.unknown()),
|
|
22749
|
+
z.null()
|
|
22750
|
+
]).optional(),
|
|
22751
|
+
id: z.number().int(),
|
|
22752
|
+
version: z.string(),
|
|
22753
|
+
newGroups: z.number().int(),
|
|
22754
|
+
status: z.string(),
|
|
22755
|
+
shortVersion: z.string(),
|
|
22756
|
+
versionInfo: z.union([
|
|
22757
|
+
z.object({
|
|
22758
|
+
description: z.string().optional(),
|
|
22759
|
+
package: z.union([
|
|
22760
|
+
z.string(),
|
|
22761
|
+
z.null()
|
|
22762
|
+
]),
|
|
22763
|
+
version: z.record(z.unknown()),
|
|
22764
|
+
buildHash: z.union([
|
|
22765
|
+
z.string(),
|
|
22766
|
+
z.null()
|
|
22767
|
+
])
|
|
22768
|
+
}),
|
|
22769
|
+
z.null()
|
|
22770
|
+
]),
|
|
22771
|
+
data: z.record(z.unknown()),
|
|
22772
|
+
commitCount: z.number().int(),
|
|
22773
|
+
deployCount: z.number().int(),
|
|
22774
|
+
authors: z.array(z.union([z.object({
|
|
22775
|
+
identities: z.array(z.object({
|
|
22776
|
+
id: z.string(),
|
|
22777
|
+
name: z.string(),
|
|
22778
|
+
organization: z.object({
|
|
22779
|
+
slug: z.string(),
|
|
22780
|
+
name: z.string()
|
|
22781
|
+
}),
|
|
22782
|
+
provider: z.object({
|
|
22783
|
+
id: z.string(),
|
|
22784
|
+
name: z.string()
|
|
22785
|
+
}),
|
|
22786
|
+
dateVerified: z.string().datetime(),
|
|
22787
|
+
dateSynced: z.string().datetime()
|
|
22788
|
+
})).optional(),
|
|
22789
|
+
avatar: z.object({
|
|
22790
|
+
avatarType: z.string().optional(),
|
|
22791
|
+
avatarUuid: z.union([
|
|
22792
|
+
z.string(),
|
|
22793
|
+
z.null()
|
|
22794
|
+
]).optional(),
|
|
22795
|
+
avatarUrl: z.union([
|
|
22796
|
+
z.string(),
|
|
22797
|
+
z.null()
|
|
22798
|
+
]).optional()
|
|
22799
|
+
}).optional(),
|
|
22800
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
22801
|
+
canReset2fa: z.boolean().optional(),
|
|
22802
|
+
id: z.string(),
|
|
22803
|
+
name: z.string(),
|
|
22804
|
+
username: z.string(),
|
|
22805
|
+
email: z.string(),
|
|
22806
|
+
avatarUrl: z.string(),
|
|
22807
|
+
isActive: z.boolean(),
|
|
22808
|
+
isSuspended: z.boolean(),
|
|
22809
|
+
hasPasswordAuth: z.boolean(),
|
|
22810
|
+
isManaged: z.boolean(),
|
|
22811
|
+
dateJoined: z.string().datetime(),
|
|
22812
|
+
lastLogin: z.union([
|
|
22813
|
+
z.string().datetime(),
|
|
22814
|
+
z.null()
|
|
22815
|
+
]),
|
|
22816
|
+
has2fa: z.boolean(),
|
|
22817
|
+
lastActive: z.union([
|
|
22818
|
+
z.string().datetime(),
|
|
22819
|
+
z.null()
|
|
22820
|
+
]),
|
|
22821
|
+
isSuperuser: z.boolean(),
|
|
22822
|
+
isStaff: z.boolean(),
|
|
22823
|
+
experiments: z.record(z.unknown()),
|
|
22824
|
+
emails: z.array(z.object({
|
|
22825
|
+
id: z.string(),
|
|
22826
|
+
email: z.string(),
|
|
22827
|
+
is_verified: z.boolean()
|
|
22828
|
+
}))
|
|
22829
|
+
}), z.object({
|
|
22830
|
+
name: z.union([
|
|
22831
|
+
z.string(),
|
|
22832
|
+
z.null()
|
|
22833
|
+
]),
|
|
22834
|
+
email: z.string()
|
|
22835
|
+
})])),
|
|
22836
|
+
projects: z.array(z.object({
|
|
22837
|
+
healthData: z.union([
|
|
22838
|
+
z.object({
|
|
22839
|
+
durationP50: z.union([
|
|
22840
|
+
z.number(),
|
|
22841
|
+
z.null()
|
|
22842
|
+
]).optional(),
|
|
22843
|
+
durationP90: z.union([
|
|
22844
|
+
z.number(),
|
|
22845
|
+
z.null()
|
|
22846
|
+
]).optional(),
|
|
22847
|
+
crashFreeUsers: z.union([
|
|
22848
|
+
z.number(),
|
|
22849
|
+
z.null()
|
|
22850
|
+
]).optional(),
|
|
22851
|
+
crashFreeSessions: z.union([
|
|
22852
|
+
z.number(),
|
|
22853
|
+
z.null()
|
|
22854
|
+
]).optional(),
|
|
22855
|
+
totalUsers: z.union([
|
|
22856
|
+
z.number().int(),
|
|
22857
|
+
z.null()
|
|
22858
|
+
]).optional(),
|
|
22859
|
+
totalUsers24h: z.union([
|
|
22860
|
+
z.number().int(),
|
|
22861
|
+
z.null()
|
|
22862
|
+
]).optional(),
|
|
22863
|
+
totalProjectUsers24h: z.union([
|
|
22864
|
+
z.number().int(),
|
|
22865
|
+
z.null()
|
|
22866
|
+
]).optional(),
|
|
22867
|
+
totalSessions: z.union([
|
|
22868
|
+
z.number().int(),
|
|
22869
|
+
z.null()
|
|
22870
|
+
]).optional(),
|
|
22871
|
+
totalSessions24h: z.union([
|
|
22872
|
+
z.number().int(),
|
|
22873
|
+
z.null()
|
|
22874
|
+
]).optional(),
|
|
22875
|
+
totalProjectSessions24h: z.union([
|
|
22876
|
+
z.number().int(),
|
|
22877
|
+
z.null()
|
|
22878
|
+
]).optional(),
|
|
22879
|
+
adoption: z.union([
|
|
22880
|
+
z.number(),
|
|
22881
|
+
z.null()
|
|
22882
|
+
]).optional(),
|
|
22883
|
+
sessionsAdoption: z.union([
|
|
22884
|
+
z.number(),
|
|
22885
|
+
z.null()
|
|
22886
|
+
]).optional(),
|
|
22887
|
+
sessionsCrashed: z.number().int(),
|
|
22888
|
+
sessionsErrored: z.number().int(),
|
|
22889
|
+
hasHealthData: z.boolean(),
|
|
22890
|
+
stats: z.record(z.unknown())
|
|
22891
|
+
}),
|
|
22892
|
+
z.null()
|
|
22893
|
+
]).optional(),
|
|
22894
|
+
dateReleased: z.union([
|
|
22895
|
+
z.string().datetime(),
|
|
22896
|
+
z.null()
|
|
22897
|
+
]).optional(),
|
|
22898
|
+
dateCreated: z.union([
|
|
22899
|
+
z.string().datetime(),
|
|
22900
|
+
z.null()
|
|
22901
|
+
]).optional(),
|
|
22902
|
+
dateStarted: z.union([
|
|
22903
|
+
z.string().datetime(),
|
|
22904
|
+
z.null()
|
|
22905
|
+
]).optional(),
|
|
22906
|
+
id: z.number().int(),
|
|
22907
|
+
slug: z.string(),
|
|
22908
|
+
name: z.string(),
|
|
22909
|
+
platform: z.union([
|
|
22910
|
+
z.string(),
|
|
22911
|
+
z.null()
|
|
22912
|
+
]),
|
|
22913
|
+
platforms: z.union([
|
|
22914
|
+
z.array(z.string()),
|
|
22915
|
+
z.null()
|
|
22916
|
+
]),
|
|
22917
|
+
hasHealthData: z.boolean(),
|
|
22918
|
+
newGroups: z.number().int()
|
|
22919
|
+
}))
|
|
22920
|
+
}));
|
|
22352
22921
|
var zDeleteAReplayInstanceData = z.object({
|
|
22353
22922
|
body: z.never().optional(),
|
|
22354
22923
|
path: z.object({
|
|
@@ -26442,6 +27011,8 @@ export {
|
|
|
26442
27011
|
zScimMemberProvision,
|
|
26443
27012
|
zScimListResponseEnvelopeScimTeamIndexResponse,
|
|
26444
27013
|
zScimListResponseEnvelopeScimMemberIndexResponse,
|
|
27014
|
+
zRetrieveTraceMetadataResponse,
|
|
27015
|
+
zRetrieveTraceMetadataData,
|
|
26445
27016
|
zRetrieveTheCustomIntegrationsCreatedByAnOrganizationResponse,
|
|
26446
27017
|
zRetrieveTheCustomIntegrationsCreatedByAnOrganizationData,
|
|
26447
27018
|
zRetrieveTagDetailsResponse,
|
|
@@ -26581,6 +27152,7 @@ export {
|
|
|
26581
27152
|
zOutgoingNotificationAction,
|
|
26582
27153
|
zOutcomesResponse,
|
|
26583
27154
|
zOrganizationWithProjectsAndTeams,
|
|
27155
|
+
zOrganizationTraceMetaResponse,
|
|
26584
27156
|
zOrganizationSummary,
|
|
26585
27157
|
zOrganizationStatsSummaryResponse,
|
|
26586
27158
|
zOrganizationSentryAppDetailsResponse,
|
|
@@ -26633,6 +27205,7 @@ export {
|
|
|
26633
27205
|
zListReplayBatchDeletionJobsData,
|
|
26634
27206
|
zListRecordingSegmentsResponse,
|
|
26635
27207
|
zListRecordingSegmentsData,
|
|
27208
|
+
zListProjectReleasesResponse,
|
|
26636
27209
|
zListProjectEnvironments,
|
|
26637
27210
|
zListProjectDebugFilesResponse,
|
|
26638
27211
|
zListOrganizations,
|
|
@@ -26642,6 +27215,7 @@ export {
|
|
|
26642
27215
|
zListOrgTeamResponse,
|
|
26643
27216
|
zListOrgMembersResponse,
|
|
26644
27217
|
zListMemberOnTeamResponse,
|
|
27218
|
+
zListEventAttachmentsResponse,
|
|
26645
27219
|
zListDetectorSerializerResponse,
|
|
26646
27220
|
zListDataForwarderResponse,
|
|
26647
27221
|
zListClientKeysResponse,
|
|
@@ -26691,6 +27265,8 @@ export {
|
|
|
26691
27265
|
zListAnIssueSHashesData,
|
|
26692
27266
|
zListAnIssueSEventsResponse,
|
|
26693
27267
|
zListAnIssueSEventsData,
|
|
27268
|
+
zListAnEventSAttachmentsResponse,
|
|
27269
|
+
zListAnEventSAttachmentsData,
|
|
26694
27270
|
zListATeamSProjectsResponse,
|
|
26695
27271
|
zListATeamSProjectsData,
|
|
26696
27272
|
zListATeamSMembersResponse,
|
|
@@ -26713,6 +27289,8 @@ export {
|
|
|
26713
27289
|
zListAProjectSTeamsData,
|
|
26714
27290
|
zListAProjectSServiceHooksResponse,
|
|
26715
27291
|
zListAProjectSServiceHooksData,
|
|
27292
|
+
zListAProjectSReleasesResponse,
|
|
27293
|
+
zListAProjectSReleasesData,
|
|
26716
27294
|
zListAProjectSReleaseFilesResponse,
|
|
26717
27295
|
zListAProjectSReleaseFilesData,
|
|
26718
27296
|
zListAProjectSOrganizationMembersResponse,
|