@sentry/api 0.237.0 → 0.238.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/types.gen.d.ts +1 -128
- package/dist/zod.gen.d.ts +61 -490
- package/dist/zod.js +0 -93
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2089,41 +2089,6 @@ export type DetailedProject = {
|
|
|
2089
2089
|
allowMemberProjectCreation: boolean;
|
|
2090
2090
|
allowSuperuserAccess: boolean;
|
|
2091
2091
|
};
|
|
2092
|
-
plugins: Array<{
|
|
2093
|
-
id: string;
|
|
2094
|
-
name: string;
|
|
2095
|
-
slug: string;
|
|
2096
|
-
shortName: string;
|
|
2097
|
-
type: string;
|
|
2098
|
-
canDisable: boolean;
|
|
2099
|
-
isTestable: boolean;
|
|
2100
|
-
hasConfiguration: boolean;
|
|
2101
|
-
metadata: {
|
|
2102
|
-
[key: string]: unknown;
|
|
2103
|
-
};
|
|
2104
|
-
contexts: Array<string>;
|
|
2105
|
-
status: string;
|
|
2106
|
-
assets: Array<unknown>;
|
|
2107
|
-
doc: string;
|
|
2108
|
-
firstPartyAlternative: unknown;
|
|
2109
|
-
deprecationDate: unknown;
|
|
2110
|
-
altIsSentryApp: unknown;
|
|
2111
|
-
enabled: boolean;
|
|
2112
|
-
version: string;
|
|
2113
|
-
author: {
|
|
2114
|
-
[key: string]: string;
|
|
2115
|
-
};
|
|
2116
|
-
isDeprecated: boolean;
|
|
2117
|
-
isHidden: boolean;
|
|
2118
|
-
description: string;
|
|
2119
|
-
features: Array<string>;
|
|
2120
|
-
featureDescriptions: Array<{
|
|
2121
|
-
[key: string]: string;
|
|
2122
|
-
}>;
|
|
2123
|
-
resourceLinks: Array<{
|
|
2124
|
-
[key: string]: string;
|
|
2125
|
-
}>;
|
|
2126
|
-
}>;
|
|
2127
2092
|
platforms: Array<string>;
|
|
2128
2093
|
processingIssues: number;
|
|
2129
2094
|
defaultEnvironment: string | null;
|
|
@@ -2960,13 +2925,6 @@ export type GroupDetailsResponse = {
|
|
|
2960
2925
|
seenBy: Array<{
|
|
2961
2926
|
[key: string]: unknown;
|
|
2962
2927
|
}>;
|
|
2963
|
-
pluginActions: Array<unknown>;
|
|
2964
|
-
pluginIssues: Array<{
|
|
2965
|
-
[key: string]: unknown;
|
|
2966
|
-
}>;
|
|
2967
|
-
pluginContexts: Array<{
|
|
2968
|
-
[key: string]: unknown;
|
|
2969
|
-
}>;
|
|
2970
2928
|
userReportCount: number;
|
|
2971
2929
|
participants: Array<{
|
|
2972
2930
|
[key: string]: unknown;
|
|
@@ -6106,10 +6064,6 @@ export type OrganizationGroupIndexGetResponse = Array<{
|
|
|
6106
6064
|
owner: string;
|
|
6107
6065
|
date_added: string;
|
|
6108
6066
|
};
|
|
6109
|
-
pluginActions: Array<Array<string>>;
|
|
6110
|
-
pluginIssues: Array<{
|
|
6111
|
-
[key: string]: unknown;
|
|
6112
|
-
}>;
|
|
6113
6067
|
integrationIssues: Array<{
|
|
6114
6068
|
[key: string]: unknown;
|
|
6115
6069
|
}>;
|
|
@@ -13875,7 +13829,7 @@ export type ListOrganizationIssuesData = {
|
|
|
13875
13829
|
/**
|
|
13876
13830
|
* Additional data to include in the response.
|
|
13877
13831
|
*/
|
|
13878
|
-
expand?: Array<'inbox' | 'integrationIssues' | 'latestEventHasAttachments' | 'owners' | '
|
|
13832
|
+
expand?: Array<'inbox' | 'integrationIssues' | 'latestEventHasAttachments' | 'owners' | 'sentryAppIssues' | 'sessions'>;
|
|
13879
13833
|
/**
|
|
13880
13834
|
* Fields to remove from the response to improve query performance.
|
|
13881
13835
|
*/
|
|
@@ -14050,10 +14004,6 @@ export type ListOrganizationIssuesResponses = {
|
|
|
14050
14004
|
owner: string;
|
|
14051
14005
|
date_added: string;
|
|
14052
14006
|
};
|
|
14053
|
-
pluginActions: Array<Array<string>>;
|
|
14054
|
-
pluginIssues: Array<{
|
|
14055
|
-
[key: string]: unknown;
|
|
14056
|
-
}>;
|
|
14057
14007
|
integrationIssues: Array<{
|
|
14058
14008
|
[key: string]: unknown;
|
|
14059
14009
|
}>;
|
|
@@ -24175,41 +24125,6 @@ export type GetProjectResponses = {
|
|
|
24175
24125
|
allowMemberProjectCreation: boolean;
|
|
24176
24126
|
allowSuperuserAccess: boolean;
|
|
24177
24127
|
};
|
|
24178
|
-
plugins: Array<{
|
|
24179
|
-
id: string;
|
|
24180
|
-
name: string;
|
|
24181
|
-
slug: string;
|
|
24182
|
-
shortName: string;
|
|
24183
|
-
type: string;
|
|
24184
|
-
canDisable: boolean;
|
|
24185
|
-
isTestable: boolean;
|
|
24186
|
-
hasConfiguration: boolean;
|
|
24187
|
-
metadata: {
|
|
24188
|
-
[key: string]: unknown;
|
|
24189
|
-
};
|
|
24190
|
-
contexts: Array<string>;
|
|
24191
|
-
status: string;
|
|
24192
|
-
assets: Array<unknown>;
|
|
24193
|
-
doc: string;
|
|
24194
|
-
firstPartyAlternative: unknown;
|
|
24195
|
-
deprecationDate: unknown;
|
|
24196
|
-
altIsSentryApp: unknown;
|
|
24197
|
-
enabled: boolean;
|
|
24198
|
-
version: string;
|
|
24199
|
-
author: {
|
|
24200
|
-
[key: string]: string;
|
|
24201
|
-
};
|
|
24202
|
-
isDeprecated: boolean;
|
|
24203
|
-
isHidden: boolean;
|
|
24204
|
-
description: string;
|
|
24205
|
-
features: Array<string>;
|
|
24206
|
-
featureDescriptions: Array<{
|
|
24207
|
-
[key: string]: string;
|
|
24208
|
-
}>;
|
|
24209
|
-
resourceLinks: Array<{
|
|
24210
|
-
[key: string]: string;
|
|
24211
|
-
}>;
|
|
24212
|
-
}>;
|
|
24213
24128
|
platforms: Array<string>;
|
|
24214
24129
|
processingIssues: number;
|
|
24215
24130
|
defaultEnvironment: string | null;
|
|
@@ -24437,41 +24352,6 @@ export type UpdateProjectResponses = {
|
|
|
24437
24352
|
allowMemberProjectCreation: boolean;
|
|
24438
24353
|
allowSuperuserAccess: boolean;
|
|
24439
24354
|
};
|
|
24440
|
-
plugins: Array<{
|
|
24441
|
-
id: string;
|
|
24442
|
-
name: string;
|
|
24443
|
-
slug: string;
|
|
24444
|
-
shortName: string;
|
|
24445
|
-
type: string;
|
|
24446
|
-
canDisable: boolean;
|
|
24447
|
-
isTestable: boolean;
|
|
24448
|
-
hasConfiguration: boolean;
|
|
24449
|
-
metadata: {
|
|
24450
|
-
[key: string]: unknown;
|
|
24451
|
-
};
|
|
24452
|
-
contexts: Array<string>;
|
|
24453
|
-
status: string;
|
|
24454
|
-
assets: Array<unknown>;
|
|
24455
|
-
doc: string;
|
|
24456
|
-
firstPartyAlternative: unknown;
|
|
24457
|
-
deprecationDate: unknown;
|
|
24458
|
-
altIsSentryApp: unknown;
|
|
24459
|
-
enabled: boolean;
|
|
24460
|
-
version: string;
|
|
24461
|
-
author: {
|
|
24462
|
-
[key: string]: string;
|
|
24463
|
-
};
|
|
24464
|
-
isDeprecated: boolean;
|
|
24465
|
-
isHidden: boolean;
|
|
24466
|
-
description: string;
|
|
24467
|
-
features: Array<string>;
|
|
24468
|
-
featureDescriptions: Array<{
|
|
24469
|
-
[key: string]: string;
|
|
24470
|
-
}>;
|
|
24471
|
-
resourceLinks: Array<{
|
|
24472
|
-
[key: string]: string;
|
|
24473
|
-
}>;
|
|
24474
|
-
}>;
|
|
24475
24355
|
platforms: Array<string>;
|
|
24476
24356
|
processingIssues: number;
|
|
24477
24357
|
defaultEnvironment: string | null;
|
|
@@ -31944,13 +31824,6 @@ export type GetOrganizationIssueResponses = {
|
|
|
31944
31824
|
seenBy: Array<{
|
|
31945
31825
|
[key: string]: unknown;
|
|
31946
31826
|
}>;
|
|
31947
|
-
pluginActions: Array<unknown>;
|
|
31948
|
-
pluginIssues: Array<{
|
|
31949
|
-
[key: string]: unknown;
|
|
31950
|
-
}>;
|
|
31951
|
-
pluginContexts: Array<{
|
|
31952
|
-
[key: string]: unknown;
|
|
31953
|
-
}>;
|
|
31954
31827
|
userReportCount: number;
|
|
31955
31828
|
participants: Array<{
|
|
31956
31829
|
[key: string]: unknown;
|