@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/types.gen.d.ts
CHANGED
|
@@ -3609,6 +3609,19 @@ export type ListDetectorSerializerResponse = Array<{
|
|
|
3609
3609
|
};
|
|
3610
3610
|
enabled: boolean;
|
|
3611
3611
|
}>;
|
|
3612
|
+
export type ListEventAttachmentsResponse = Array<{
|
|
3613
|
+
id: string;
|
|
3614
|
+
event_id: string;
|
|
3615
|
+
type: string;
|
|
3616
|
+
name: string;
|
|
3617
|
+
mimetype: string | null;
|
|
3618
|
+
dateCreated: string;
|
|
3619
|
+
size: number;
|
|
3620
|
+
headers: {
|
|
3621
|
+
[key: string]: string | null;
|
|
3622
|
+
};
|
|
3623
|
+
sha1: string | null;
|
|
3624
|
+
}>;
|
|
3612
3625
|
export type ListMemberOnTeamResponse = Array<{
|
|
3613
3626
|
externalUsers?: Array<{
|
|
3614
3627
|
externalId?: string;
|
|
@@ -4068,6 +4081,135 @@ export type ListProjectEnvironments = Array<{
|
|
|
4068
4081
|
name: string;
|
|
4069
4082
|
isHidden: boolean;
|
|
4070
4083
|
}>;
|
|
4084
|
+
export type ListProjectReleasesResponse = Array<{
|
|
4085
|
+
ref?: string | null;
|
|
4086
|
+
url?: string | null;
|
|
4087
|
+
dateReleased?: string | null;
|
|
4088
|
+
dateCreated?: string | null;
|
|
4089
|
+
dateStarted?: string | null;
|
|
4090
|
+
owner?: {
|
|
4091
|
+
[key: string]: unknown;
|
|
4092
|
+
} | null;
|
|
4093
|
+
lastCommit?: {
|
|
4094
|
+
[key: string]: unknown;
|
|
4095
|
+
} | null;
|
|
4096
|
+
lastDeploy?: {
|
|
4097
|
+
dateStarted?: string | null;
|
|
4098
|
+
url?: string | null;
|
|
4099
|
+
id: string;
|
|
4100
|
+
environment: string;
|
|
4101
|
+
dateFinished: string;
|
|
4102
|
+
name: string;
|
|
4103
|
+
} | null;
|
|
4104
|
+
firstEvent?: string | null;
|
|
4105
|
+
lastEvent?: string | null;
|
|
4106
|
+
currentProjectMeta?: {
|
|
4107
|
+
[key: string]: unknown;
|
|
4108
|
+
} | null;
|
|
4109
|
+
userAgent?: string | null;
|
|
4110
|
+
adoptionStages?: {
|
|
4111
|
+
[key: string]: unknown;
|
|
4112
|
+
} | null;
|
|
4113
|
+
id: number;
|
|
4114
|
+
version: string;
|
|
4115
|
+
newGroups: number;
|
|
4116
|
+
status: string;
|
|
4117
|
+
shortVersion: string;
|
|
4118
|
+
versionInfo: {
|
|
4119
|
+
description?: string;
|
|
4120
|
+
package: string | null;
|
|
4121
|
+
version: {
|
|
4122
|
+
[key: string]: unknown;
|
|
4123
|
+
};
|
|
4124
|
+
buildHash: string | null;
|
|
4125
|
+
} | null;
|
|
4126
|
+
data: {
|
|
4127
|
+
[key: string]: unknown;
|
|
4128
|
+
};
|
|
4129
|
+
commitCount: number;
|
|
4130
|
+
deployCount: number;
|
|
4131
|
+
authors: Array<{
|
|
4132
|
+
identities?: Array<{
|
|
4133
|
+
id: string;
|
|
4134
|
+
name: string;
|
|
4135
|
+
organization: {
|
|
4136
|
+
slug: string;
|
|
4137
|
+
name: string;
|
|
4138
|
+
};
|
|
4139
|
+
provider: {
|
|
4140
|
+
id: string;
|
|
4141
|
+
name: string;
|
|
4142
|
+
};
|
|
4143
|
+
dateVerified: string;
|
|
4144
|
+
dateSynced: string;
|
|
4145
|
+
}>;
|
|
4146
|
+
avatar?: {
|
|
4147
|
+
avatarType?: string;
|
|
4148
|
+
avatarUuid?: string | null;
|
|
4149
|
+
avatarUrl?: string | null;
|
|
4150
|
+
};
|
|
4151
|
+
authenticators?: Array<unknown>;
|
|
4152
|
+
canReset2fa?: boolean;
|
|
4153
|
+
id: string;
|
|
4154
|
+
name: string;
|
|
4155
|
+
username: string;
|
|
4156
|
+
email: string;
|
|
4157
|
+
avatarUrl: string;
|
|
4158
|
+
isActive: boolean;
|
|
4159
|
+
isSuspended: boolean;
|
|
4160
|
+
hasPasswordAuth: boolean;
|
|
4161
|
+
isManaged: boolean;
|
|
4162
|
+
dateJoined: string;
|
|
4163
|
+
lastLogin: string | null;
|
|
4164
|
+
has2fa: boolean;
|
|
4165
|
+
lastActive: string | null;
|
|
4166
|
+
isSuperuser: boolean;
|
|
4167
|
+
isStaff: boolean;
|
|
4168
|
+
experiments: {
|
|
4169
|
+
[key: string]: unknown;
|
|
4170
|
+
};
|
|
4171
|
+
emails: Array<{
|
|
4172
|
+
id: string;
|
|
4173
|
+
email: string;
|
|
4174
|
+
is_verified: boolean;
|
|
4175
|
+
}>;
|
|
4176
|
+
} | {
|
|
4177
|
+
name: string | null;
|
|
4178
|
+
email: string;
|
|
4179
|
+
}>;
|
|
4180
|
+
projects: Array<{
|
|
4181
|
+
healthData?: {
|
|
4182
|
+
durationP50?: number | null;
|
|
4183
|
+
durationP90?: number | null;
|
|
4184
|
+
crashFreeUsers?: number | null;
|
|
4185
|
+
crashFreeSessions?: number | null;
|
|
4186
|
+
totalUsers?: number | null;
|
|
4187
|
+
totalUsers24h?: number | null;
|
|
4188
|
+
totalProjectUsers24h?: number | null;
|
|
4189
|
+
totalSessions?: number | null;
|
|
4190
|
+
totalSessions24h?: number | null;
|
|
4191
|
+
totalProjectSessions24h?: number | null;
|
|
4192
|
+
adoption?: number | null;
|
|
4193
|
+
sessionsAdoption?: number | null;
|
|
4194
|
+
sessionsCrashed: number;
|
|
4195
|
+
sessionsErrored: number;
|
|
4196
|
+
hasHealthData: boolean;
|
|
4197
|
+
stats: {
|
|
4198
|
+
[key: string]: unknown;
|
|
4199
|
+
};
|
|
4200
|
+
} | null;
|
|
4201
|
+
dateReleased?: string | null;
|
|
4202
|
+
dateCreated?: string | null;
|
|
4203
|
+
dateStarted?: string | null;
|
|
4204
|
+
id: number;
|
|
4205
|
+
slug: string;
|
|
4206
|
+
name: string;
|
|
4207
|
+
platform: string | null;
|
|
4208
|
+
platforms: Array<string> | null;
|
|
4209
|
+
hasHealthData: boolean;
|
|
4210
|
+
newGroups: number;
|
|
4211
|
+
}>;
|
|
4212
|
+
}>;
|
|
4071
4213
|
export type ListReplayClicks = {
|
|
4072
4214
|
data: Array<{
|
|
4073
4215
|
node_id: number;
|
|
@@ -6234,6 +6376,20 @@ export type OrganizationSummary = {
|
|
|
6234
6376
|
allowMemberProjectCreation: boolean;
|
|
6235
6377
|
allowSuperuserAccess: boolean;
|
|
6236
6378
|
};
|
|
6379
|
+
export type OrganizationTraceMetaResponse = {
|
|
6380
|
+
uptimeCount?: number;
|
|
6381
|
+
errorsCount: number;
|
|
6382
|
+
logsCount: number;
|
|
6383
|
+
metricsCount: number;
|
|
6384
|
+
performanceIssuesCount: number;
|
|
6385
|
+
spansCount: number;
|
|
6386
|
+
transactionChildCountMap: Array<{
|
|
6387
|
+
[key: string]: unknown;
|
|
6388
|
+
}>;
|
|
6389
|
+
spansCountMap: {
|
|
6390
|
+
[key: string]: number;
|
|
6391
|
+
};
|
|
6392
|
+
};
|
|
6237
6393
|
export type OrganizationWithProjectsAndTeams = {
|
|
6238
6394
|
features?: Array<string>;
|
|
6239
6395
|
extraOptions?: {
|
|
@@ -20593,6 +20749,76 @@ export type ListTraceItemAttributesResponses = {
|
|
|
20593
20749
|
}>;
|
|
20594
20750
|
};
|
|
20595
20751
|
export type ListTraceItemAttributesResponse2 = ListTraceItemAttributesResponses[keyof ListTraceItemAttributesResponses];
|
|
20752
|
+
export type RetrieveTraceMetadataData = {
|
|
20753
|
+
body?: never;
|
|
20754
|
+
path: {
|
|
20755
|
+
/**
|
|
20756
|
+
* The ID or slug of the organization the resource belongs to.
|
|
20757
|
+
*/
|
|
20758
|
+
organization_id_or_slug: string;
|
|
20759
|
+
/**
|
|
20760
|
+
* The ID of the trace, a 32-character hexadecimal string.
|
|
20761
|
+
*/
|
|
20762
|
+
trace_id: string;
|
|
20763
|
+
};
|
|
20764
|
+
query?: {
|
|
20765
|
+
/**
|
|
20766
|
+
* The period of time for the query, will override the start & end parameters, a number followed by one of:
|
|
20767
|
+
* - `d` for days
|
|
20768
|
+
* - `h` for hours
|
|
20769
|
+
* - `m` for minutes
|
|
20770
|
+
* - `s` for seconds
|
|
20771
|
+
* - `w` for weeks
|
|
20772
|
+
*
|
|
20773
|
+
* For example, `24h`, to mean query data starting from 24 hours ago to now.
|
|
20774
|
+
*/
|
|
20775
|
+
statsPeriod?: string;
|
|
20776
|
+
/**
|
|
20777
|
+
* The start of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
|
|
20778
|
+
*/
|
|
20779
|
+
start?: string;
|
|
20780
|
+
/**
|
|
20781
|
+
* The end of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
|
|
20782
|
+
*/
|
|
20783
|
+
end?: string;
|
|
20784
|
+
/**
|
|
20785
|
+
* Set to `1` to include uptime check counts in the response. Defaults to `0` (disabled).
|
|
20786
|
+
*/
|
|
20787
|
+
include_uptime?: '0' | '1';
|
|
20788
|
+
};
|
|
20789
|
+
url: '/api/0/organizations/{organization_id_or_slug}/trace-meta/{trace_id}/';
|
|
20790
|
+
};
|
|
20791
|
+
export type RetrieveTraceMetadataErrors = {
|
|
20792
|
+
/**
|
|
20793
|
+
* Unauthorized
|
|
20794
|
+
*/
|
|
20795
|
+
401: unknown;
|
|
20796
|
+
/**
|
|
20797
|
+
* Forbidden
|
|
20798
|
+
*/
|
|
20799
|
+
403: unknown;
|
|
20800
|
+
/**
|
|
20801
|
+
* Not Found
|
|
20802
|
+
*/
|
|
20803
|
+
404: unknown;
|
|
20804
|
+
};
|
|
20805
|
+
export type RetrieveTraceMetadataResponses = {
|
|
20806
|
+
200: {
|
|
20807
|
+
uptimeCount?: number;
|
|
20808
|
+
errorsCount: number;
|
|
20809
|
+
logsCount: number;
|
|
20810
|
+
metricsCount: number;
|
|
20811
|
+
performanceIssuesCount: number;
|
|
20812
|
+
spansCount: number;
|
|
20813
|
+
transactionChildCountMap: Array<{
|
|
20814
|
+
[key: string]: unknown;
|
|
20815
|
+
}>;
|
|
20816
|
+
spansCountMap: {
|
|
20817
|
+
[key: string]: number;
|
|
20818
|
+
};
|
|
20819
|
+
};
|
|
20820
|
+
};
|
|
20821
|
+
export type RetrieveTraceMetadataResponse = RetrieveTraceMetadataResponses[keyof RetrieveTraceMetadataResponses];
|
|
20596
20822
|
export type ListAuserSTeamsForAnOrganizationData = {
|
|
20597
20823
|
body?: never;
|
|
20598
20824
|
path: {
|
|
@@ -23588,6 +23814,64 @@ export type RetrieveAnEventForAProjectResponses = {
|
|
|
23588
23814
|
};
|
|
23589
23815
|
};
|
|
23590
23816
|
export type RetrieveAnEventForAProjectResponse = RetrieveAnEventForAProjectResponses[keyof RetrieveAnEventForAProjectResponses];
|
|
23817
|
+
export type ListAnEventSAttachmentsData = {
|
|
23818
|
+
body?: never;
|
|
23819
|
+
path: {
|
|
23820
|
+
/**
|
|
23821
|
+
* The ID or slug of the organization the resource belongs to.
|
|
23822
|
+
*/
|
|
23823
|
+
organization_id_or_slug: string;
|
|
23824
|
+
/**
|
|
23825
|
+
* The ID or slug of the project the resource belongs to.
|
|
23826
|
+
*/
|
|
23827
|
+
project_id_or_slug: string;
|
|
23828
|
+
/**
|
|
23829
|
+
* The ID of the event. It is a 32-character hexadecimal string as reported by the client.
|
|
23830
|
+
*/
|
|
23831
|
+
event_id: string;
|
|
23832
|
+
};
|
|
23833
|
+
query?: {
|
|
23834
|
+
/**
|
|
23835
|
+
* Filter the attachments by name (substring match) or by attachment kind. Use `is:screenshot` to restrict the results to screenshot attachments.
|
|
23836
|
+
*/
|
|
23837
|
+
query?: string;
|
|
23838
|
+
/**
|
|
23839
|
+
* A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
|
|
23840
|
+
*/
|
|
23841
|
+
cursor?: string;
|
|
23842
|
+
};
|
|
23843
|
+
url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/{event_id}/attachments/';
|
|
23844
|
+
};
|
|
23845
|
+
export type ListAnEventSAttachmentsErrors = {
|
|
23846
|
+
/**
|
|
23847
|
+
* Unauthorized
|
|
23848
|
+
*/
|
|
23849
|
+
401: unknown;
|
|
23850
|
+
/**
|
|
23851
|
+
* Forbidden
|
|
23852
|
+
*/
|
|
23853
|
+
403: unknown;
|
|
23854
|
+
/**
|
|
23855
|
+
* Not Found
|
|
23856
|
+
*/
|
|
23857
|
+
404: unknown;
|
|
23858
|
+
};
|
|
23859
|
+
export type ListAnEventSAttachmentsResponses = {
|
|
23860
|
+
200: Array<{
|
|
23861
|
+
id: string;
|
|
23862
|
+
event_id: string;
|
|
23863
|
+
type: string;
|
|
23864
|
+
name: string;
|
|
23865
|
+
mimetype: string | null;
|
|
23866
|
+
dateCreated: string;
|
|
23867
|
+
size: number;
|
|
23868
|
+
headers: {
|
|
23869
|
+
[key: string]: string | null;
|
|
23870
|
+
};
|
|
23871
|
+
sha1: string | null;
|
|
23872
|
+
}>;
|
|
23873
|
+
};
|
|
23874
|
+
export type ListAnEventSAttachmentsResponse = ListAnEventSAttachmentsResponses[keyof ListAnEventSAttachmentsResponses];
|
|
23591
23875
|
export type DebugIssuesRelatedToSourceMapsForAGivenEventData = {
|
|
23592
23876
|
body?: never;
|
|
23593
23877
|
path: {
|
|
@@ -25752,6 +26036,180 @@ export type UploadASnapshotResponses = {
|
|
|
25752
26036
|
};
|
|
25753
26037
|
};
|
|
25754
26038
|
export type UploadASnapshotResponse = UploadASnapshotResponses[keyof UploadASnapshotResponses];
|
|
26039
|
+
export type ListAProjectSReleasesData = {
|
|
26040
|
+
body?: never;
|
|
26041
|
+
path: {
|
|
26042
|
+
/**
|
|
26043
|
+
* The ID or slug of the organization the resource belongs to.
|
|
26044
|
+
*/
|
|
26045
|
+
organization_id_or_slug: string;
|
|
26046
|
+
/**
|
|
26047
|
+
* The ID or slug of the project the resource belongs to.
|
|
26048
|
+
*/
|
|
26049
|
+
project_id_or_slug: string;
|
|
26050
|
+
};
|
|
26051
|
+
query?: {
|
|
26052
|
+
/**
|
|
26053
|
+
* The name of environments to filter by.
|
|
26054
|
+
*/
|
|
26055
|
+
environment?: Array<string>;
|
|
26056
|
+
/**
|
|
26057
|
+
* Case-insensitive substring match against the release version.
|
|
26058
|
+
*/
|
|
26059
|
+
query?: string;
|
|
26060
|
+
/**
|
|
26061
|
+
* A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
|
|
26062
|
+
*/
|
|
26063
|
+
cursor?: string;
|
|
26064
|
+
};
|
|
26065
|
+
url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/';
|
|
26066
|
+
};
|
|
26067
|
+
export type ListAProjectSReleasesErrors = {
|
|
26068
|
+
/**
|
|
26069
|
+
* Unauthorized
|
|
26070
|
+
*/
|
|
26071
|
+
401: unknown;
|
|
26072
|
+
/**
|
|
26073
|
+
* Forbidden
|
|
26074
|
+
*/
|
|
26075
|
+
403: unknown;
|
|
26076
|
+
/**
|
|
26077
|
+
* Not Found
|
|
26078
|
+
*/
|
|
26079
|
+
404: unknown;
|
|
26080
|
+
};
|
|
26081
|
+
export type ListAProjectSReleasesResponses = {
|
|
26082
|
+
200: Array<{
|
|
26083
|
+
ref?: string | null;
|
|
26084
|
+
url?: string | null;
|
|
26085
|
+
dateReleased?: string | null;
|
|
26086
|
+
dateCreated?: string | null;
|
|
26087
|
+
dateStarted?: string | null;
|
|
26088
|
+
owner?: {
|
|
26089
|
+
[key: string]: unknown;
|
|
26090
|
+
} | null;
|
|
26091
|
+
lastCommit?: {
|
|
26092
|
+
[key: string]: unknown;
|
|
26093
|
+
} | null;
|
|
26094
|
+
lastDeploy?: {
|
|
26095
|
+
dateStarted?: string | null;
|
|
26096
|
+
url?: string | null;
|
|
26097
|
+
id: string;
|
|
26098
|
+
environment: string;
|
|
26099
|
+
dateFinished: string;
|
|
26100
|
+
name: string;
|
|
26101
|
+
} | null;
|
|
26102
|
+
firstEvent?: string | null;
|
|
26103
|
+
lastEvent?: string | null;
|
|
26104
|
+
currentProjectMeta?: {
|
|
26105
|
+
[key: string]: unknown;
|
|
26106
|
+
} | null;
|
|
26107
|
+
userAgent?: string | null;
|
|
26108
|
+
adoptionStages?: {
|
|
26109
|
+
[key: string]: unknown;
|
|
26110
|
+
} | null;
|
|
26111
|
+
id: number;
|
|
26112
|
+
version: string;
|
|
26113
|
+
newGroups: number;
|
|
26114
|
+
status: string;
|
|
26115
|
+
shortVersion: string;
|
|
26116
|
+
versionInfo: {
|
|
26117
|
+
description?: string;
|
|
26118
|
+
package: string | null;
|
|
26119
|
+
version: {
|
|
26120
|
+
[key: string]: unknown;
|
|
26121
|
+
};
|
|
26122
|
+
buildHash: string | null;
|
|
26123
|
+
} | null;
|
|
26124
|
+
data: {
|
|
26125
|
+
[key: string]: unknown;
|
|
26126
|
+
};
|
|
26127
|
+
commitCount: number;
|
|
26128
|
+
deployCount: number;
|
|
26129
|
+
authors: Array<{
|
|
26130
|
+
identities?: Array<{
|
|
26131
|
+
id: string;
|
|
26132
|
+
name: string;
|
|
26133
|
+
organization: {
|
|
26134
|
+
slug: string;
|
|
26135
|
+
name: string;
|
|
26136
|
+
};
|
|
26137
|
+
provider: {
|
|
26138
|
+
id: string;
|
|
26139
|
+
name: string;
|
|
26140
|
+
};
|
|
26141
|
+
dateVerified: string;
|
|
26142
|
+
dateSynced: string;
|
|
26143
|
+
}>;
|
|
26144
|
+
avatar?: {
|
|
26145
|
+
avatarType?: string;
|
|
26146
|
+
avatarUuid?: string | null;
|
|
26147
|
+
avatarUrl?: string | null;
|
|
26148
|
+
};
|
|
26149
|
+
authenticators?: Array<unknown>;
|
|
26150
|
+
canReset2fa?: boolean;
|
|
26151
|
+
id: string;
|
|
26152
|
+
name: string;
|
|
26153
|
+
username: string;
|
|
26154
|
+
email: string;
|
|
26155
|
+
avatarUrl: string;
|
|
26156
|
+
isActive: boolean;
|
|
26157
|
+
isSuspended: boolean;
|
|
26158
|
+
hasPasswordAuth: boolean;
|
|
26159
|
+
isManaged: boolean;
|
|
26160
|
+
dateJoined: string;
|
|
26161
|
+
lastLogin: string | null;
|
|
26162
|
+
has2fa: boolean;
|
|
26163
|
+
lastActive: string | null;
|
|
26164
|
+
isSuperuser: boolean;
|
|
26165
|
+
isStaff: boolean;
|
|
26166
|
+
experiments: {
|
|
26167
|
+
[key: string]: unknown;
|
|
26168
|
+
};
|
|
26169
|
+
emails: Array<{
|
|
26170
|
+
id: string;
|
|
26171
|
+
email: string;
|
|
26172
|
+
is_verified: boolean;
|
|
26173
|
+
}>;
|
|
26174
|
+
} | {
|
|
26175
|
+
name: string | null;
|
|
26176
|
+
email: string;
|
|
26177
|
+
}>;
|
|
26178
|
+
projects: Array<{
|
|
26179
|
+
healthData?: {
|
|
26180
|
+
durationP50?: number | null;
|
|
26181
|
+
durationP90?: number | null;
|
|
26182
|
+
crashFreeUsers?: number | null;
|
|
26183
|
+
crashFreeSessions?: number | null;
|
|
26184
|
+
totalUsers?: number | null;
|
|
26185
|
+
totalUsers24h?: number | null;
|
|
26186
|
+
totalProjectUsers24h?: number | null;
|
|
26187
|
+
totalSessions?: number | null;
|
|
26188
|
+
totalSessions24h?: number | null;
|
|
26189
|
+
totalProjectSessions24h?: number | null;
|
|
26190
|
+
adoption?: number | null;
|
|
26191
|
+
sessionsAdoption?: number | null;
|
|
26192
|
+
sessionsCrashed: number;
|
|
26193
|
+
sessionsErrored: number;
|
|
26194
|
+
hasHealthData: boolean;
|
|
26195
|
+
stats: {
|
|
26196
|
+
[key: string]: unknown;
|
|
26197
|
+
};
|
|
26198
|
+
} | null;
|
|
26199
|
+
dateReleased?: string | null;
|
|
26200
|
+
dateCreated?: string | null;
|
|
26201
|
+
dateStarted?: string | null;
|
|
26202
|
+
id: number;
|
|
26203
|
+
slug: string;
|
|
26204
|
+
name: string;
|
|
26205
|
+
platform: string | null;
|
|
26206
|
+
platforms: Array<string> | null;
|
|
26207
|
+
hasHealthData: boolean;
|
|
26208
|
+
newGroups: number;
|
|
26209
|
+
}>;
|
|
26210
|
+
}>;
|
|
26211
|
+
};
|
|
26212
|
+
export type ListAProjectSReleasesResponse = ListAProjectSReleasesResponses[keyof ListAProjectSReleasesResponses];
|
|
25755
26213
|
export type DeleteAReplayInstanceData = {
|
|
25756
26214
|
body?: never;
|
|
25757
26215
|
path: {
|