@sentry/api 0.149.0 → 0.150.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 +105 -42
- package/dist/zod.gen.d.ts +732 -165
- package/dist/zod.js +159 -81
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5277,23 +5277,28 @@ export type OrgReleaseResponse = {
|
|
|
5277
5277
|
commitCount: number;
|
|
5278
5278
|
deployCount: number;
|
|
5279
5279
|
authors: Array<{
|
|
5280
|
-
|
|
5281
|
-
|
|
5282
|
-
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
|
|
5280
|
+
identities?: Array<{
|
|
5281
|
+
id: string;
|
|
5282
|
+
name: string;
|
|
5283
|
+
organization: {
|
|
5284
|
+
slug: string;
|
|
5285
|
+
name: string;
|
|
5286
|
+
};
|
|
5287
|
+
provider: {
|
|
5288
|
+
id: string;
|
|
5289
|
+
name: string;
|
|
5290
|
+
};
|
|
5291
|
+
dateVerified: string;
|
|
5292
|
+
dateSynced: string;
|
|
5292
5293
|
}>;
|
|
5293
5294
|
avatar?: {
|
|
5294
|
-
|
|
5295
|
+
avatarType?: string;
|
|
5296
|
+
avatarUuid?: string | null;
|
|
5297
|
+
avatarUrl?: string | null;
|
|
5295
5298
|
};
|
|
5296
|
-
|
|
5299
|
+
authenticators?: Array<unknown>;
|
|
5300
|
+
canReset2fa?: boolean;
|
|
5301
|
+
id: string;
|
|
5297
5302
|
name: string;
|
|
5298
5303
|
username: string;
|
|
5299
5304
|
email: string;
|
|
@@ -5303,6 +5308,22 @@ export type OrgReleaseResponse = {
|
|
|
5303
5308
|
hasPasswordAuth: boolean;
|
|
5304
5309
|
isManaged: boolean;
|
|
5305
5310
|
dateJoined: string;
|
|
5311
|
+
lastLogin: string | null;
|
|
5312
|
+
has2fa: boolean;
|
|
5313
|
+
lastActive: string | null;
|
|
5314
|
+
isSuperuser: boolean;
|
|
5315
|
+
isStaff: boolean;
|
|
5316
|
+
experiments: {
|
|
5317
|
+
[key: string]: unknown;
|
|
5318
|
+
};
|
|
5319
|
+
emails: Array<{
|
|
5320
|
+
id: string;
|
|
5321
|
+
email: string;
|
|
5322
|
+
is_verified: boolean;
|
|
5323
|
+
}>;
|
|
5324
|
+
} | {
|
|
5325
|
+
name: string | null;
|
|
5326
|
+
email: string;
|
|
5306
5327
|
}>;
|
|
5307
5328
|
projects: Array<{
|
|
5308
5329
|
healthData?: {
|
|
@@ -18780,23 +18801,28 @@ export type RetrieveAnOrganizationSReleaseResponses = {
|
|
|
18780
18801
|
commitCount: number;
|
|
18781
18802
|
deployCount: number;
|
|
18782
18803
|
authors: Array<{
|
|
18783
|
-
|
|
18784
|
-
|
|
18785
|
-
|
|
18786
|
-
|
|
18787
|
-
|
|
18788
|
-
|
|
18789
|
-
|
|
18790
|
-
|
|
18791
|
-
|
|
18792
|
-
|
|
18793
|
-
|
|
18794
|
-
|
|
18804
|
+
identities?: Array<{
|
|
18805
|
+
id: string;
|
|
18806
|
+
name: string;
|
|
18807
|
+
organization: {
|
|
18808
|
+
slug: string;
|
|
18809
|
+
name: string;
|
|
18810
|
+
};
|
|
18811
|
+
provider: {
|
|
18812
|
+
id: string;
|
|
18813
|
+
name: string;
|
|
18814
|
+
};
|
|
18815
|
+
dateVerified: string;
|
|
18816
|
+
dateSynced: string;
|
|
18795
18817
|
}>;
|
|
18796
18818
|
avatar?: {
|
|
18797
|
-
|
|
18819
|
+
avatarType?: string;
|
|
18820
|
+
avatarUuid?: string | null;
|
|
18821
|
+
avatarUrl?: string | null;
|
|
18798
18822
|
};
|
|
18799
|
-
|
|
18823
|
+
authenticators?: Array<unknown>;
|
|
18824
|
+
canReset2fa?: boolean;
|
|
18825
|
+
id: string;
|
|
18800
18826
|
name: string;
|
|
18801
18827
|
username: string;
|
|
18802
18828
|
email: string;
|
|
@@ -18806,6 +18832,22 @@ export type RetrieveAnOrganizationSReleaseResponses = {
|
|
|
18806
18832
|
hasPasswordAuth: boolean;
|
|
18807
18833
|
isManaged: boolean;
|
|
18808
18834
|
dateJoined: string;
|
|
18835
|
+
lastLogin: string | null;
|
|
18836
|
+
has2fa: boolean;
|
|
18837
|
+
lastActive: string | null;
|
|
18838
|
+
isSuperuser: boolean;
|
|
18839
|
+
isStaff: boolean;
|
|
18840
|
+
experiments: {
|
|
18841
|
+
[key: string]: unknown;
|
|
18842
|
+
};
|
|
18843
|
+
emails: Array<{
|
|
18844
|
+
id: string;
|
|
18845
|
+
email: string;
|
|
18846
|
+
is_verified: boolean;
|
|
18847
|
+
}>;
|
|
18848
|
+
} | {
|
|
18849
|
+
name: string | null;
|
|
18850
|
+
email: string;
|
|
18809
18851
|
}>;
|
|
18810
18852
|
projects: Array<{
|
|
18811
18853
|
healthData?: {
|
|
@@ -18956,23 +18998,28 @@ export type UpdateAnOrganizationSReleaseResponses = {
|
|
|
18956
18998
|
commitCount: number;
|
|
18957
18999
|
deployCount: number;
|
|
18958
19000
|
authors: Array<{
|
|
18959
|
-
|
|
18960
|
-
|
|
18961
|
-
|
|
18962
|
-
|
|
18963
|
-
|
|
18964
|
-
|
|
18965
|
-
|
|
18966
|
-
|
|
18967
|
-
|
|
18968
|
-
|
|
18969
|
-
|
|
18970
|
-
|
|
19001
|
+
identities?: Array<{
|
|
19002
|
+
id: string;
|
|
19003
|
+
name: string;
|
|
19004
|
+
organization: {
|
|
19005
|
+
slug: string;
|
|
19006
|
+
name: string;
|
|
19007
|
+
};
|
|
19008
|
+
provider: {
|
|
19009
|
+
id: string;
|
|
19010
|
+
name: string;
|
|
19011
|
+
};
|
|
19012
|
+
dateVerified: string;
|
|
19013
|
+
dateSynced: string;
|
|
18971
19014
|
}>;
|
|
18972
19015
|
avatar?: {
|
|
18973
|
-
|
|
19016
|
+
avatarType?: string;
|
|
19017
|
+
avatarUuid?: string | null;
|
|
19018
|
+
avatarUrl?: string | null;
|
|
18974
19019
|
};
|
|
18975
|
-
|
|
19020
|
+
authenticators?: Array<unknown>;
|
|
19021
|
+
canReset2fa?: boolean;
|
|
19022
|
+
id: string;
|
|
18976
19023
|
name: string;
|
|
18977
19024
|
username: string;
|
|
18978
19025
|
email: string;
|
|
@@ -18982,6 +19029,22 @@ export type UpdateAnOrganizationSReleaseResponses = {
|
|
|
18982
19029
|
hasPasswordAuth: boolean;
|
|
18983
19030
|
isManaged: boolean;
|
|
18984
19031
|
dateJoined: string;
|
|
19032
|
+
lastLogin: string | null;
|
|
19033
|
+
has2fa: boolean;
|
|
19034
|
+
lastActive: string | null;
|
|
19035
|
+
isSuperuser: boolean;
|
|
19036
|
+
isStaff: boolean;
|
|
19037
|
+
experiments: {
|
|
19038
|
+
[key: string]: unknown;
|
|
19039
|
+
};
|
|
19040
|
+
emails: Array<{
|
|
19041
|
+
id: string;
|
|
19042
|
+
email: string;
|
|
19043
|
+
is_verified: boolean;
|
|
19044
|
+
}>;
|
|
19045
|
+
} | {
|
|
19046
|
+
name: string | null;
|
|
19047
|
+
email: string;
|
|
18985
19048
|
}>;
|
|
18986
19049
|
projects: Array<{
|
|
18987
19050
|
healthData?: {
|