@sentry/api 0.148.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/zod.gen.d.ts CHANGED
@@ -11049,6 +11049,46 @@ export declare const zListOrganizations: z.ZodArray<z.ZodObject<{
11049
11049
  data?: unknown;
11050
11050
  }[] | undefined;
11051
11051
  }>, "many">;
11052
+ export declare const zListProjectDebugFilesResponse: z.ZodArray<z.ZodObject<{
11053
+ id: z.ZodString;
11054
+ uuid: z.ZodString;
11055
+ debugId: z.ZodString;
11056
+ codeId: z.ZodUnion<[z.ZodString, z.ZodNull]>;
11057
+ cpuName: z.ZodString;
11058
+ objectName: z.ZodString;
11059
+ symbolType: z.ZodString;
11060
+ headers: z.ZodRecord<z.ZodString, z.ZodString>;
11061
+ size: z.ZodNumber;
11062
+ sha1: z.ZodString;
11063
+ dateCreated: z.ZodString;
11064
+ data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
11065
+ }, "strip", z.ZodTypeAny, {
11066
+ headers: Record<string, string>;
11067
+ data: Record<string, unknown>;
11068
+ id: string;
11069
+ uuid: string;
11070
+ dateCreated: string;
11071
+ size: number;
11072
+ debugId: string;
11073
+ codeId: string | null;
11074
+ cpuName: string;
11075
+ objectName: string;
11076
+ symbolType: string;
11077
+ sha1: string;
11078
+ }, {
11079
+ headers: Record<string, string>;
11080
+ data: Record<string, unknown>;
11081
+ id: string;
11082
+ uuid: string;
11083
+ dateCreated: string;
11084
+ size: number;
11085
+ debugId: string;
11086
+ codeId: string | null;
11087
+ cpuName: string;
11088
+ objectName: string;
11089
+ symbolType: string;
11090
+ sha1: string;
11091
+ }>, "many">;
11052
11092
  export declare const zListProjectEnvironments: z.ZodArray<z.ZodObject<{
11053
11093
  id: z.ZodString;
11054
11094
  name: z.ZodString;
@@ -13075,16 +13115,75 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13075
13115
  data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
13076
13116
  commitCount: z.ZodNumber;
13077
13117
  deployCount: z.ZodNumber;
13078
- authors: z.ZodArray<z.ZodObject<{
13079
- lastLogin: z.ZodOptional<z.ZodString>;
13080
- has2fa: z.ZodOptional<z.ZodBoolean>;
13081
- lastActive: z.ZodOptional<z.ZodString>;
13082
- isSuperuser: z.ZodOptional<z.ZodBoolean>;
13083
- isStaff: z.ZodOptional<z.ZodBoolean>;
13084
- experiments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNumber, z.ZodBoolean, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>]>>>;
13085
- emails: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean]>>, "many">>;
13086
- avatar: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNull]>>>;
13087
- id: z.ZodNumber;
13118
+ authors: z.ZodArray<z.ZodUnion<[z.ZodObject<{
13119
+ identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
13120
+ id: z.ZodString;
13121
+ name: z.ZodString;
13122
+ organization: z.ZodObject<{
13123
+ slug: z.ZodString;
13124
+ name: z.ZodString;
13125
+ }, "strip", z.ZodTypeAny, {
13126
+ name: string;
13127
+ slug: string;
13128
+ }, {
13129
+ name: string;
13130
+ slug: string;
13131
+ }>;
13132
+ provider: z.ZodObject<{
13133
+ id: z.ZodString;
13134
+ name: z.ZodString;
13135
+ }, "strip", z.ZodTypeAny, {
13136
+ name: string;
13137
+ id: string;
13138
+ }, {
13139
+ name: string;
13140
+ id: string;
13141
+ }>;
13142
+ dateVerified: z.ZodString;
13143
+ dateSynced: z.ZodString;
13144
+ }, "strip", z.ZodTypeAny, {
13145
+ name: string;
13146
+ id: string;
13147
+ provider: {
13148
+ name: string;
13149
+ id: string;
13150
+ };
13151
+ organization: {
13152
+ name: string;
13153
+ slug: string;
13154
+ };
13155
+ dateVerified: string;
13156
+ dateSynced: string;
13157
+ }, {
13158
+ name: string;
13159
+ id: string;
13160
+ provider: {
13161
+ name: string;
13162
+ id: string;
13163
+ };
13164
+ organization: {
13165
+ name: string;
13166
+ slug: string;
13167
+ };
13168
+ dateVerified: string;
13169
+ dateSynced: string;
13170
+ }>, "many">>;
13171
+ avatar: z.ZodOptional<z.ZodObject<{
13172
+ avatarType: z.ZodOptional<z.ZodString>;
13173
+ avatarUuid: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
13174
+ avatarUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
13175
+ }, "strip", z.ZodTypeAny, {
13176
+ avatarType?: string | undefined;
13177
+ avatarUuid?: string | null | undefined;
13178
+ avatarUrl?: string | null | undefined;
13179
+ }, {
13180
+ avatarType?: string | undefined;
13181
+ avatarUuid?: string | null | undefined;
13182
+ avatarUrl?: string | null | undefined;
13183
+ }>>;
13184
+ authenticators: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
13185
+ canReset2fa: z.ZodOptional<z.ZodBoolean>;
13186
+ id: z.ZodString;
13088
13187
  name: z.ZodString;
13089
13188
  username: z.ZodString;
13090
13189
  email: z.ZodString;
@@ -13094,9 +13193,28 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13094
13193
  hasPasswordAuth: z.ZodBoolean;
13095
13194
  isManaged: z.ZodBoolean;
13096
13195
  dateJoined: z.ZodString;
13196
+ lastLogin: z.ZodUnion<[z.ZodString, z.ZodNull]>;
13197
+ has2fa: z.ZodBoolean;
13198
+ lastActive: z.ZodUnion<[z.ZodString, z.ZodNull]>;
13199
+ isSuperuser: z.ZodBoolean;
13200
+ isStaff: z.ZodBoolean;
13201
+ experiments: z.ZodRecord<z.ZodString, z.ZodUnknown>;
13202
+ emails: z.ZodArray<z.ZodObject<{
13203
+ id: z.ZodString;
13204
+ email: z.ZodString;
13205
+ is_verified: z.ZodBoolean;
13206
+ }, "strip", z.ZodTypeAny, {
13207
+ id: string;
13208
+ email: string;
13209
+ is_verified: boolean;
13210
+ }, {
13211
+ id: string;
13212
+ email: string;
13213
+ is_verified: boolean;
13214
+ }>, "many">;
13097
13215
  }, "strip", z.ZodTypeAny, {
13098
13216
  name: string;
13099
- id: number;
13217
+ id: string;
13100
13218
  avatarUrl: string;
13101
13219
  username: string;
13102
13220
  email: string;
@@ -13105,17 +13223,41 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13105
13223
  hasPasswordAuth: boolean;
13106
13224
  isManaged: boolean;
13107
13225
  dateJoined: string;
13108
- avatar?: Record<string, string | null> | undefined;
13109
- lastLogin?: string | undefined;
13110
- has2fa?: boolean | undefined;
13111
- lastActive?: string | undefined;
13112
- isSuperuser?: boolean | undefined;
13113
- isStaff?: boolean | undefined;
13114
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
13115
- emails?: Record<string, string | number | boolean>[] | undefined;
13226
+ lastLogin: string | null;
13227
+ has2fa: boolean;
13228
+ lastActive: string | null;
13229
+ isSuperuser: boolean;
13230
+ isStaff: boolean;
13231
+ experiments: Record<string, unknown>;
13232
+ emails: {
13233
+ id: string;
13234
+ email: string;
13235
+ is_verified: boolean;
13236
+ }[];
13237
+ avatar?: {
13238
+ avatarType?: string | undefined;
13239
+ avatarUuid?: string | null | undefined;
13240
+ avatarUrl?: string | null | undefined;
13241
+ } | undefined;
13242
+ identities?: {
13243
+ name: string;
13244
+ id: string;
13245
+ provider: {
13246
+ name: string;
13247
+ id: string;
13248
+ };
13249
+ organization: {
13250
+ name: string;
13251
+ slug: string;
13252
+ };
13253
+ dateVerified: string;
13254
+ dateSynced: string;
13255
+ }[] | undefined;
13256
+ authenticators?: unknown[] | undefined;
13257
+ canReset2fa?: boolean | undefined;
13116
13258
  }, {
13117
13259
  name: string;
13118
- id: number;
13260
+ id: string;
13119
13261
  avatarUrl: string;
13120
13262
  username: string;
13121
13263
  email: string;
@@ -13124,15 +13266,48 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13124
13266
  hasPasswordAuth: boolean;
13125
13267
  isManaged: boolean;
13126
13268
  dateJoined: string;
13127
- avatar?: Record<string, string | null> | undefined;
13128
- lastLogin?: string | undefined;
13129
- has2fa?: boolean | undefined;
13130
- lastActive?: string | undefined;
13131
- isSuperuser?: boolean | undefined;
13132
- isStaff?: boolean | undefined;
13133
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
13134
- emails?: Record<string, string | number | boolean>[] | undefined;
13135
- }>, "many">;
13269
+ lastLogin: string | null;
13270
+ has2fa: boolean;
13271
+ lastActive: string | null;
13272
+ isSuperuser: boolean;
13273
+ isStaff: boolean;
13274
+ experiments: Record<string, unknown>;
13275
+ emails: {
13276
+ id: string;
13277
+ email: string;
13278
+ is_verified: boolean;
13279
+ }[];
13280
+ avatar?: {
13281
+ avatarType?: string | undefined;
13282
+ avatarUuid?: string | null | undefined;
13283
+ avatarUrl?: string | null | undefined;
13284
+ } | undefined;
13285
+ identities?: {
13286
+ name: string;
13287
+ id: string;
13288
+ provider: {
13289
+ name: string;
13290
+ id: string;
13291
+ };
13292
+ organization: {
13293
+ name: string;
13294
+ slug: string;
13295
+ };
13296
+ dateVerified: string;
13297
+ dateSynced: string;
13298
+ }[] | undefined;
13299
+ authenticators?: unknown[] | undefined;
13300
+ canReset2fa?: boolean | undefined;
13301
+ }>, z.ZodObject<{
13302
+ name: z.ZodUnion<[z.ZodString, z.ZodNull]>;
13303
+ email: z.ZodString;
13304
+ }, "strip", z.ZodTypeAny, {
13305
+ name: string | null;
13306
+ email: string;
13307
+ }, {
13308
+ name: string | null;
13309
+ email: string;
13310
+ }>]>, "many">;
13136
13311
  projects: z.ZodArray<z.ZodObject<{
13137
13312
  healthData: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
13138
13313
  durationP50: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
@@ -13300,9 +13475,9 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13300
13475
  } | null;
13301
13476
  newGroups: number;
13302
13477
  shortVersion: string;
13303
- authors: {
13478
+ authors: ({
13304
13479
  name: string;
13305
- id: number;
13480
+ id: string;
13306
13481
  avatarUrl: string;
13307
13482
  username: string;
13308
13483
  email: string;
@@ -13311,15 +13486,42 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13311
13486
  hasPasswordAuth: boolean;
13312
13487
  isManaged: boolean;
13313
13488
  dateJoined: string;
13314
- avatar?: Record<string, string | null> | undefined;
13315
- lastLogin?: string | undefined;
13316
- has2fa?: boolean | undefined;
13317
- lastActive?: string | undefined;
13318
- isSuperuser?: boolean | undefined;
13319
- isStaff?: boolean | undefined;
13320
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
13321
- emails?: Record<string, string | number | boolean>[] | undefined;
13322
- }[];
13489
+ lastLogin: string | null;
13490
+ has2fa: boolean;
13491
+ lastActive: string | null;
13492
+ isSuperuser: boolean;
13493
+ isStaff: boolean;
13494
+ experiments: Record<string, unknown>;
13495
+ emails: {
13496
+ id: string;
13497
+ email: string;
13498
+ is_verified: boolean;
13499
+ }[];
13500
+ avatar?: {
13501
+ avatarType?: string | undefined;
13502
+ avatarUuid?: string | null | undefined;
13503
+ avatarUrl?: string | null | undefined;
13504
+ } | undefined;
13505
+ identities?: {
13506
+ name: string;
13507
+ id: string;
13508
+ provider: {
13509
+ name: string;
13510
+ id: string;
13511
+ };
13512
+ organization: {
13513
+ name: string;
13514
+ slug: string;
13515
+ };
13516
+ dateVerified: string;
13517
+ dateSynced: string;
13518
+ }[] | undefined;
13519
+ authenticators?: unknown[] | undefined;
13520
+ canReset2fa?: boolean | undefined;
13521
+ } | {
13522
+ name: string | null;
13523
+ email: string;
13524
+ })[];
13323
13525
  url?: string | null | undefined;
13324
13526
  owner?: Record<string, unknown> | null | undefined;
13325
13527
  adoptionStages?: Record<string, unknown> | null | undefined;
@@ -13385,9 +13587,9 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13385
13587
  } | null;
13386
13588
  newGroups: number;
13387
13589
  shortVersion: string;
13388
- authors: {
13590
+ authors: ({
13389
13591
  name: string;
13390
- id: number;
13592
+ id: string;
13391
13593
  avatarUrl: string;
13392
13594
  username: string;
13393
13595
  email: string;
@@ -13396,15 +13598,42 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
13396
13598
  hasPasswordAuth: boolean;
13397
13599
  isManaged: boolean;
13398
13600
  dateJoined: string;
13399
- avatar?: Record<string, string | null> | undefined;
13400
- lastLogin?: string | undefined;
13401
- has2fa?: boolean | undefined;
13402
- lastActive?: string | undefined;
13403
- isSuperuser?: boolean | undefined;
13404
- isStaff?: boolean | undefined;
13405
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
13406
- emails?: Record<string, string | number | boolean>[] | undefined;
13407
- }[];
13601
+ lastLogin: string | null;
13602
+ has2fa: boolean;
13603
+ lastActive: string | null;
13604
+ isSuperuser: boolean;
13605
+ isStaff: boolean;
13606
+ experiments: Record<string, unknown>;
13607
+ emails: {
13608
+ id: string;
13609
+ email: string;
13610
+ is_verified: boolean;
13611
+ }[];
13612
+ avatar?: {
13613
+ avatarType?: string | undefined;
13614
+ avatarUuid?: string | null | undefined;
13615
+ avatarUrl?: string | null | undefined;
13616
+ } | undefined;
13617
+ identities?: {
13618
+ name: string;
13619
+ id: string;
13620
+ provider: {
13621
+ name: string;
13622
+ id: string;
13623
+ };
13624
+ organization: {
13625
+ name: string;
13626
+ slug: string;
13627
+ };
13628
+ dateVerified: string;
13629
+ dateSynced: string;
13630
+ }[] | undefined;
13631
+ authenticators?: unknown[] | undefined;
13632
+ canReset2fa?: boolean | undefined;
13633
+ } | {
13634
+ name: string | null;
13635
+ email: string;
13636
+ })[];
13408
13637
  url?: string | null | undefined;
13409
13638
  owner?: Record<string, unknown> | null | undefined;
13410
13639
  adoptionStages?: Record<string, unknown> | null | undefined;
@@ -43672,16 +43901,75 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43672
43901
  data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
43673
43902
  commitCount: z.ZodNumber;
43674
43903
  deployCount: z.ZodNumber;
43675
- authors: z.ZodArray<z.ZodObject<{
43676
- lastLogin: z.ZodOptional<z.ZodString>;
43677
- has2fa: z.ZodOptional<z.ZodBoolean>;
43678
- lastActive: z.ZodOptional<z.ZodString>;
43679
- isSuperuser: z.ZodOptional<z.ZodBoolean>;
43680
- isStaff: z.ZodOptional<z.ZodBoolean>;
43681
- experiments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNumber, z.ZodBoolean, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>]>>>;
43682
- emails: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean]>>, "many">>;
43683
- avatar: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNull]>>>;
43684
- id: z.ZodNumber;
43904
+ authors: z.ZodArray<z.ZodUnion<[z.ZodObject<{
43905
+ identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
43906
+ id: z.ZodString;
43907
+ name: z.ZodString;
43908
+ organization: z.ZodObject<{
43909
+ slug: z.ZodString;
43910
+ name: z.ZodString;
43911
+ }, "strip", z.ZodTypeAny, {
43912
+ name: string;
43913
+ slug: string;
43914
+ }, {
43915
+ name: string;
43916
+ slug: string;
43917
+ }>;
43918
+ provider: z.ZodObject<{
43919
+ id: z.ZodString;
43920
+ name: z.ZodString;
43921
+ }, "strip", z.ZodTypeAny, {
43922
+ name: string;
43923
+ id: string;
43924
+ }, {
43925
+ name: string;
43926
+ id: string;
43927
+ }>;
43928
+ dateVerified: z.ZodString;
43929
+ dateSynced: z.ZodString;
43930
+ }, "strip", z.ZodTypeAny, {
43931
+ name: string;
43932
+ id: string;
43933
+ provider: {
43934
+ name: string;
43935
+ id: string;
43936
+ };
43937
+ organization: {
43938
+ name: string;
43939
+ slug: string;
43940
+ };
43941
+ dateVerified: string;
43942
+ dateSynced: string;
43943
+ }, {
43944
+ name: string;
43945
+ id: string;
43946
+ provider: {
43947
+ name: string;
43948
+ id: string;
43949
+ };
43950
+ organization: {
43951
+ name: string;
43952
+ slug: string;
43953
+ };
43954
+ dateVerified: string;
43955
+ dateSynced: string;
43956
+ }>, "many">>;
43957
+ avatar: z.ZodOptional<z.ZodObject<{
43958
+ avatarType: z.ZodOptional<z.ZodString>;
43959
+ avatarUuid: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
43960
+ avatarUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
43961
+ }, "strip", z.ZodTypeAny, {
43962
+ avatarType?: string | undefined;
43963
+ avatarUuid?: string | null | undefined;
43964
+ avatarUrl?: string | null | undefined;
43965
+ }, {
43966
+ avatarType?: string | undefined;
43967
+ avatarUuid?: string | null | undefined;
43968
+ avatarUrl?: string | null | undefined;
43969
+ }>>;
43970
+ authenticators: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
43971
+ canReset2fa: z.ZodOptional<z.ZodBoolean>;
43972
+ id: z.ZodString;
43685
43973
  name: z.ZodString;
43686
43974
  username: z.ZodString;
43687
43975
  email: z.ZodString;
@@ -43691,9 +43979,28 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43691
43979
  hasPasswordAuth: z.ZodBoolean;
43692
43980
  isManaged: z.ZodBoolean;
43693
43981
  dateJoined: z.ZodString;
43982
+ lastLogin: z.ZodUnion<[z.ZodString, z.ZodNull]>;
43983
+ has2fa: z.ZodBoolean;
43984
+ lastActive: z.ZodUnion<[z.ZodString, z.ZodNull]>;
43985
+ isSuperuser: z.ZodBoolean;
43986
+ isStaff: z.ZodBoolean;
43987
+ experiments: z.ZodRecord<z.ZodString, z.ZodUnknown>;
43988
+ emails: z.ZodArray<z.ZodObject<{
43989
+ id: z.ZodString;
43990
+ email: z.ZodString;
43991
+ is_verified: z.ZodBoolean;
43992
+ }, "strip", z.ZodTypeAny, {
43993
+ id: string;
43994
+ email: string;
43995
+ is_verified: boolean;
43996
+ }, {
43997
+ id: string;
43998
+ email: string;
43999
+ is_verified: boolean;
44000
+ }>, "many">;
43694
44001
  }, "strip", z.ZodTypeAny, {
43695
44002
  name: string;
43696
- id: number;
44003
+ id: string;
43697
44004
  avatarUrl: string;
43698
44005
  username: string;
43699
44006
  email: string;
@@ -43702,17 +44009,41 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43702
44009
  hasPasswordAuth: boolean;
43703
44010
  isManaged: boolean;
43704
44011
  dateJoined: string;
43705
- avatar?: Record<string, string | null> | undefined;
43706
- lastLogin?: string | undefined;
43707
- has2fa?: boolean | undefined;
43708
- lastActive?: string | undefined;
43709
- isSuperuser?: boolean | undefined;
43710
- isStaff?: boolean | undefined;
43711
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
43712
- emails?: Record<string, string | number | boolean>[] | undefined;
44012
+ lastLogin: string | null;
44013
+ has2fa: boolean;
44014
+ lastActive: string | null;
44015
+ isSuperuser: boolean;
44016
+ isStaff: boolean;
44017
+ experiments: Record<string, unknown>;
44018
+ emails: {
44019
+ id: string;
44020
+ email: string;
44021
+ is_verified: boolean;
44022
+ }[];
44023
+ avatar?: {
44024
+ avatarType?: string | undefined;
44025
+ avatarUuid?: string | null | undefined;
44026
+ avatarUrl?: string | null | undefined;
44027
+ } | undefined;
44028
+ identities?: {
44029
+ name: string;
44030
+ id: string;
44031
+ provider: {
44032
+ name: string;
44033
+ id: string;
44034
+ };
44035
+ organization: {
44036
+ name: string;
44037
+ slug: string;
44038
+ };
44039
+ dateVerified: string;
44040
+ dateSynced: string;
44041
+ }[] | undefined;
44042
+ authenticators?: unknown[] | undefined;
44043
+ canReset2fa?: boolean | undefined;
43713
44044
  }, {
43714
44045
  name: string;
43715
- id: number;
44046
+ id: string;
43716
44047
  avatarUrl: string;
43717
44048
  username: string;
43718
44049
  email: string;
@@ -43721,15 +44052,48 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43721
44052
  hasPasswordAuth: boolean;
43722
44053
  isManaged: boolean;
43723
44054
  dateJoined: string;
43724
- avatar?: Record<string, string | null> | undefined;
43725
- lastLogin?: string | undefined;
43726
- has2fa?: boolean | undefined;
43727
- lastActive?: string | undefined;
43728
- isSuperuser?: boolean | undefined;
43729
- isStaff?: boolean | undefined;
43730
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
43731
- emails?: Record<string, string | number | boolean>[] | undefined;
43732
- }>, "many">;
44055
+ lastLogin: string | null;
44056
+ has2fa: boolean;
44057
+ lastActive: string | null;
44058
+ isSuperuser: boolean;
44059
+ isStaff: boolean;
44060
+ experiments: Record<string, unknown>;
44061
+ emails: {
44062
+ id: string;
44063
+ email: string;
44064
+ is_verified: boolean;
44065
+ }[];
44066
+ avatar?: {
44067
+ avatarType?: string | undefined;
44068
+ avatarUuid?: string | null | undefined;
44069
+ avatarUrl?: string | null | undefined;
44070
+ } | undefined;
44071
+ identities?: {
44072
+ name: string;
44073
+ id: string;
44074
+ provider: {
44075
+ name: string;
44076
+ id: string;
44077
+ };
44078
+ organization: {
44079
+ name: string;
44080
+ slug: string;
44081
+ };
44082
+ dateVerified: string;
44083
+ dateSynced: string;
44084
+ }[] | undefined;
44085
+ authenticators?: unknown[] | undefined;
44086
+ canReset2fa?: boolean | undefined;
44087
+ }>, z.ZodObject<{
44088
+ name: z.ZodUnion<[z.ZodString, z.ZodNull]>;
44089
+ email: z.ZodString;
44090
+ }, "strip", z.ZodTypeAny, {
44091
+ name: string | null;
44092
+ email: string;
44093
+ }, {
44094
+ name: string | null;
44095
+ email: string;
44096
+ }>]>, "many">;
43733
44097
  projects: z.ZodArray<z.ZodObject<{
43734
44098
  healthData: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
43735
44099
  durationP50: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
@@ -43897,9 +44261,9 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43897
44261
  } | null;
43898
44262
  newGroups: number;
43899
44263
  shortVersion: string;
43900
- authors: {
44264
+ authors: ({
43901
44265
  name: string;
43902
- id: number;
44266
+ id: string;
43903
44267
  avatarUrl: string;
43904
44268
  username: string;
43905
44269
  email: string;
@@ -43908,15 +44272,42 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43908
44272
  hasPasswordAuth: boolean;
43909
44273
  isManaged: boolean;
43910
44274
  dateJoined: string;
43911
- avatar?: Record<string, string | null> | undefined;
43912
- lastLogin?: string | undefined;
43913
- has2fa?: boolean | undefined;
43914
- lastActive?: string | undefined;
43915
- isSuperuser?: boolean | undefined;
43916
- isStaff?: boolean | undefined;
43917
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
43918
- emails?: Record<string, string | number | boolean>[] | undefined;
43919
- }[];
44275
+ lastLogin: string | null;
44276
+ has2fa: boolean;
44277
+ lastActive: string | null;
44278
+ isSuperuser: boolean;
44279
+ isStaff: boolean;
44280
+ experiments: Record<string, unknown>;
44281
+ emails: {
44282
+ id: string;
44283
+ email: string;
44284
+ is_verified: boolean;
44285
+ }[];
44286
+ avatar?: {
44287
+ avatarType?: string | undefined;
44288
+ avatarUuid?: string | null | undefined;
44289
+ avatarUrl?: string | null | undefined;
44290
+ } | undefined;
44291
+ identities?: {
44292
+ name: string;
44293
+ id: string;
44294
+ provider: {
44295
+ name: string;
44296
+ id: string;
44297
+ };
44298
+ organization: {
44299
+ name: string;
44300
+ slug: string;
44301
+ };
44302
+ dateVerified: string;
44303
+ dateSynced: string;
44304
+ }[] | undefined;
44305
+ authenticators?: unknown[] | undefined;
44306
+ canReset2fa?: boolean | undefined;
44307
+ } | {
44308
+ name: string | null;
44309
+ email: string;
44310
+ })[];
43920
44311
  url?: string | null | undefined;
43921
44312
  owner?: Record<string, unknown> | null | undefined;
43922
44313
  adoptionStages?: Record<string, unknown> | null | undefined;
@@ -43982,9 +44373,9 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43982
44373
  } | null;
43983
44374
  newGroups: number;
43984
44375
  shortVersion: string;
43985
- authors: {
44376
+ authors: ({
43986
44377
  name: string;
43987
- id: number;
44378
+ id: string;
43988
44379
  avatarUrl: string;
43989
44380
  username: string;
43990
44381
  email: string;
@@ -43993,15 +44384,42 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
43993
44384
  hasPasswordAuth: boolean;
43994
44385
  isManaged: boolean;
43995
44386
  dateJoined: string;
43996
- avatar?: Record<string, string | null> | undefined;
43997
- lastLogin?: string | undefined;
43998
- has2fa?: boolean | undefined;
43999
- lastActive?: string | undefined;
44000
- isSuperuser?: boolean | undefined;
44001
- isStaff?: boolean | undefined;
44002
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
44003
- emails?: Record<string, string | number | boolean>[] | undefined;
44004
- }[];
44387
+ lastLogin: string | null;
44388
+ has2fa: boolean;
44389
+ lastActive: string | null;
44390
+ isSuperuser: boolean;
44391
+ isStaff: boolean;
44392
+ experiments: Record<string, unknown>;
44393
+ emails: {
44394
+ id: string;
44395
+ email: string;
44396
+ is_verified: boolean;
44397
+ }[];
44398
+ avatar?: {
44399
+ avatarType?: string | undefined;
44400
+ avatarUuid?: string | null | undefined;
44401
+ avatarUrl?: string | null | undefined;
44402
+ } | undefined;
44403
+ identities?: {
44404
+ name: string;
44405
+ id: string;
44406
+ provider: {
44407
+ name: string;
44408
+ id: string;
44409
+ };
44410
+ organization: {
44411
+ name: string;
44412
+ slug: string;
44413
+ };
44414
+ dateVerified: string;
44415
+ dateSynced: string;
44416
+ }[] | undefined;
44417
+ authenticators?: unknown[] | undefined;
44418
+ canReset2fa?: boolean | undefined;
44419
+ } | {
44420
+ name: string | null;
44421
+ email: string;
44422
+ })[];
44005
44423
  url?: string | null | undefined;
44006
44424
  owner?: Record<string, unknown> | null | undefined;
44007
44425
  adoptionStages?: Record<string, unknown> | null | undefined;
@@ -44251,16 +44669,75 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
44251
44669
  data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
44252
44670
  commitCount: z.ZodNumber;
44253
44671
  deployCount: z.ZodNumber;
44254
- authors: z.ZodArray<z.ZodObject<{
44255
- lastLogin: z.ZodOptional<z.ZodString>;
44256
- has2fa: z.ZodOptional<z.ZodBoolean>;
44257
- lastActive: z.ZodOptional<z.ZodString>;
44258
- isSuperuser: z.ZodOptional<z.ZodBoolean>;
44259
- isStaff: z.ZodOptional<z.ZodBoolean>;
44260
- experiments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNumber, z.ZodBoolean, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>]>>>;
44261
- emails: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean]>>, "many">>;
44262
- avatar: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNull]>>>;
44263
- id: z.ZodNumber;
44672
+ authors: z.ZodArray<z.ZodUnion<[z.ZodObject<{
44673
+ identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
44674
+ id: z.ZodString;
44675
+ name: z.ZodString;
44676
+ organization: z.ZodObject<{
44677
+ slug: z.ZodString;
44678
+ name: z.ZodString;
44679
+ }, "strip", z.ZodTypeAny, {
44680
+ name: string;
44681
+ slug: string;
44682
+ }, {
44683
+ name: string;
44684
+ slug: string;
44685
+ }>;
44686
+ provider: z.ZodObject<{
44687
+ id: z.ZodString;
44688
+ name: z.ZodString;
44689
+ }, "strip", z.ZodTypeAny, {
44690
+ name: string;
44691
+ id: string;
44692
+ }, {
44693
+ name: string;
44694
+ id: string;
44695
+ }>;
44696
+ dateVerified: z.ZodString;
44697
+ dateSynced: z.ZodString;
44698
+ }, "strip", z.ZodTypeAny, {
44699
+ name: string;
44700
+ id: string;
44701
+ provider: {
44702
+ name: string;
44703
+ id: string;
44704
+ };
44705
+ organization: {
44706
+ name: string;
44707
+ slug: string;
44708
+ };
44709
+ dateVerified: string;
44710
+ dateSynced: string;
44711
+ }, {
44712
+ name: string;
44713
+ id: string;
44714
+ provider: {
44715
+ name: string;
44716
+ id: string;
44717
+ };
44718
+ organization: {
44719
+ name: string;
44720
+ slug: string;
44721
+ };
44722
+ dateVerified: string;
44723
+ dateSynced: string;
44724
+ }>, "many">>;
44725
+ avatar: z.ZodOptional<z.ZodObject<{
44726
+ avatarType: z.ZodOptional<z.ZodString>;
44727
+ avatarUuid: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
44728
+ avatarUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
44729
+ }, "strip", z.ZodTypeAny, {
44730
+ avatarType?: string | undefined;
44731
+ avatarUuid?: string | null | undefined;
44732
+ avatarUrl?: string | null | undefined;
44733
+ }, {
44734
+ avatarType?: string | undefined;
44735
+ avatarUuid?: string | null | undefined;
44736
+ avatarUrl?: string | null | undefined;
44737
+ }>>;
44738
+ authenticators: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
44739
+ canReset2fa: z.ZodOptional<z.ZodBoolean>;
44740
+ id: z.ZodString;
44264
44741
  name: z.ZodString;
44265
44742
  username: z.ZodString;
44266
44743
  email: z.ZodString;
@@ -44270,9 +44747,28 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
44270
44747
  hasPasswordAuth: z.ZodBoolean;
44271
44748
  isManaged: z.ZodBoolean;
44272
44749
  dateJoined: z.ZodString;
44750
+ lastLogin: z.ZodUnion<[z.ZodString, z.ZodNull]>;
44751
+ has2fa: z.ZodBoolean;
44752
+ lastActive: z.ZodUnion<[z.ZodString, z.ZodNull]>;
44753
+ isSuperuser: z.ZodBoolean;
44754
+ isStaff: z.ZodBoolean;
44755
+ experiments: z.ZodRecord<z.ZodString, z.ZodUnknown>;
44756
+ emails: z.ZodArray<z.ZodObject<{
44757
+ id: z.ZodString;
44758
+ email: z.ZodString;
44759
+ is_verified: z.ZodBoolean;
44760
+ }, "strip", z.ZodTypeAny, {
44761
+ id: string;
44762
+ email: string;
44763
+ is_verified: boolean;
44764
+ }, {
44765
+ id: string;
44766
+ email: string;
44767
+ is_verified: boolean;
44768
+ }>, "many">;
44273
44769
  }, "strip", z.ZodTypeAny, {
44274
44770
  name: string;
44275
- id: number;
44771
+ id: string;
44276
44772
  avatarUrl: string;
44277
44773
  username: string;
44278
44774
  email: string;
@@ -44281,17 +44777,41 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
44281
44777
  hasPasswordAuth: boolean;
44282
44778
  isManaged: boolean;
44283
44779
  dateJoined: string;
44284
- avatar?: Record<string, string | null> | undefined;
44285
- lastLogin?: string | undefined;
44286
- has2fa?: boolean | undefined;
44287
- lastActive?: string | undefined;
44288
- isSuperuser?: boolean | undefined;
44289
- isStaff?: boolean | undefined;
44290
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
44291
- emails?: Record<string, string | number | boolean>[] | undefined;
44780
+ lastLogin: string | null;
44781
+ has2fa: boolean;
44782
+ lastActive: string | null;
44783
+ isSuperuser: boolean;
44784
+ isStaff: boolean;
44785
+ experiments: Record<string, unknown>;
44786
+ emails: {
44787
+ id: string;
44788
+ email: string;
44789
+ is_verified: boolean;
44790
+ }[];
44791
+ avatar?: {
44792
+ avatarType?: string | undefined;
44793
+ avatarUuid?: string | null | undefined;
44794
+ avatarUrl?: string | null | undefined;
44795
+ } | undefined;
44796
+ identities?: {
44797
+ name: string;
44798
+ id: string;
44799
+ provider: {
44800
+ name: string;
44801
+ id: string;
44802
+ };
44803
+ organization: {
44804
+ name: string;
44805
+ slug: string;
44806
+ };
44807
+ dateVerified: string;
44808
+ dateSynced: string;
44809
+ }[] | undefined;
44810
+ authenticators?: unknown[] | undefined;
44811
+ canReset2fa?: boolean | undefined;
44292
44812
  }, {
44293
44813
  name: string;
44294
- id: number;
44814
+ id: string;
44295
44815
  avatarUrl: string;
44296
44816
  username: string;
44297
44817
  email: string;
@@ -44300,15 +44820,48 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
44300
44820
  hasPasswordAuth: boolean;
44301
44821
  isManaged: boolean;
44302
44822
  dateJoined: string;
44303
- avatar?: Record<string, string | null> | undefined;
44304
- lastLogin?: string | undefined;
44305
- has2fa?: boolean | undefined;
44306
- lastActive?: string | undefined;
44307
- isSuperuser?: boolean | undefined;
44308
- isStaff?: boolean | undefined;
44309
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
44310
- emails?: Record<string, string | number | boolean>[] | undefined;
44311
- }>, "many">;
44823
+ lastLogin: string | null;
44824
+ has2fa: boolean;
44825
+ lastActive: string | null;
44826
+ isSuperuser: boolean;
44827
+ isStaff: boolean;
44828
+ experiments: Record<string, unknown>;
44829
+ emails: {
44830
+ id: string;
44831
+ email: string;
44832
+ is_verified: boolean;
44833
+ }[];
44834
+ avatar?: {
44835
+ avatarType?: string | undefined;
44836
+ avatarUuid?: string | null | undefined;
44837
+ avatarUrl?: string | null | undefined;
44838
+ } | undefined;
44839
+ identities?: {
44840
+ name: string;
44841
+ id: string;
44842
+ provider: {
44843
+ name: string;
44844
+ id: string;
44845
+ };
44846
+ organization: {
44847
+ name: string;
44848
+ slug: string;
44849
+ };
44850
+ dateVerified: string;
44851
+ dateSynced: string;
44852
+ }[] | undefined;
44853
+ authenticators?: unknown[] | undefined;
44854
+ canReset2fa?: boolean | undefined;
44855
+ }>, z.ZodObject<{
44856
+ name: z.ZodUnion<[z.ZodString, z.ZodNull]>;
44857
+ email: z.ZodString;
44858
+ }, "strip", z.ZodTypeAny, {
44859
+ name: string | null;
44860
+ email: string;
44861
+ }, {
44862
+ name: string | null;
44863
+ email: string;
44864
+ }>]>, "many">;
44312
44865
  projects: z.ZodArray<z.ZodObject<{
44313
44866
  healthData: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
44314
44867
  durationP50: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
@@ -44476,94 +45029,121 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
44476
45029
  } | null;
44477
45030
  newGroups: number;
44478
45031
  shortVersion: string;
44479
- authors: {
45032
+ authors: ({
45033
+ name: string;
45034
+ id: string;
45035
+ avatarUrl: string;
45036
+ username: string;
45037
+ email: string;
45038
+ isActive: boolean;
45039
+ isSuspended: boolean;
45040
+ hasPasswordAuth: boolean;
45041
+ isManaged: boolean;
45042
+ dateJoined: string;
45043
+ lastLogin: string | null;
45044
+ has2fa: boolean;
45045
+ lastActive: string | null;
45046
+ isSuperuser: boolean;
45047
+ isStaff: boolean;
45048
+ experiments: Record<string, unknown>;
45049
+ emails: {
45050
+ id: string;
45051
+ email: string;
45052
+ is_verified: boolean;
45053
+ }[];
45054
+ avatar?: {
45055
+ avatarType?: string | undefined;
45056
+ avatarUuid?: string | null | undefined;
45057
+ avatarUrl?: string | null | undefined;
45058
+ } | undefined;
45059
+ identities?: {
45060
+ name: string;
45061
+ id: string;
45062
+ provider: {
45063
+ name: string;
45064
+ id: string;
45065
+ };
45066
+ organization: {
45067
+ name: string;
45068
+ slug: string;
45069
+ };
45070
+ dateVerified: string;
45071
+ dateSynced: string;
45072
+ }[] | undefined;
45073
+ authenticators?: unknown[] | undefined;
45074
+ canReset2fa?: boolean | undefined;
45075
+ } | {
45076
+ name: string | null;
45077
+ email: string;
45078
+ })[];
45079
+ url?: string | null | undefined;
45080
+ owner?: Record<string, unknown> | null | undefined;
45081
+ adoptionStages?: Record<string, unknown> | null | undefined;
45082
+ dateCreated?: string | null | undefined;
45083
+ dateStarted?: string | null | undefined;
45084
+ firstEvent?: string | null | undefined;
45085
+ dateReleased?: string | null | undefined;
45086
+ ref?: string | null | undefined;
45087
+ lastCommit?: Record<string, unknown> | null | undefined;
45088
+ lastDeploy?: {
45089
+ name: string;
45090
+ environment: string;
45091
+ id: string;
45092
+ dateFinished: string;
45093
+ url?: string | null | undefined;
45094
+ dateStarted?: string | null | undefined;
45095
+ } | null | undefined;
45096
+ userAgent?: string | null | undefined;
45097
+ lastEvent?: string | null | undefined;
45098
+ currentProjectMeta?: Record<string, unknown> | null | undefined;
45099
+ }, {
45100
+ data: Record<string, unknown>;
45101
+ id: number;
45102
+ status: string;
45103
+ version: string;
45104
+ projects: {
45105
+ name: string;
45106
+ id: number;
45107
+ platform: string | null;
45108
+ slug: string;
45109
+ platforms: string[] | null;
45110
+ newGroups: number;
45111
+ hasHealthData: boolean;
45112
+ dateCreated?: string | null | undefined;
45113
+ dateStarted?: string | null | undefined;
45114
+ dateReleased?: string | null | undefined;
45115
+ healthData?: {
45116
+ stats: Record<string, unknown>;
45117
+ sessionsCrashed: number;
45118
+ sessionsErrored: number;
45119
+ hasHealthData: boolean;
45120
+ durationP50?: number | null | undefined;
45121
+ durationP90?: number | null | undefined;
45122
+ crashFreeUsers?: number | null | undefined;
45123
+ crashFreeSessions?: number | null | undefined;
45124
+ totalUsers?: number | null | undefined;
45125
+ totalUsers24h?: number | null | undefined;
45126
+ totalProjectUsers24h?: number | null | undefined;
45127
+ totalSessions?: number | null | undefined;
45128
+ totalSessions24h?: number | null | undefined;
45129
+ totalProjectSessions24h?: number | null | undefined;
45130
+ adoption?: number | null | undefined;
45131
+ sessionsAdoption?: number | null | undefined;
45132
+ } | null | undefined;
45133
+ }[];
45134
+ commitCount: number;
45135
+ deployCount: number;
45136
+ versionInfo: {
45137
+ version: Record<string, unknown>;
45138
+ package: string | null;
45139
+ buildHash: string | null;
45140
+ description?: string | undefined;
45141
+ } | null;
45142
+ newGroups: number;
45143
+ shortVersion: string;
45144
+ authors: ({
44480
45145
  name: string;
44481
- id: number;
44482
- avatarUrl: string;
44483
- username: string;
44484
- email: string;
44485
- isActive: boolean;
44486
- isSuspended: boolean;
44487
- hasPasswordAuth: boolean;
44488
- isManaged: boolean;
44489
- dateJoined: string;
44490
- avatar?: Record<string, string | null> | undefined;
44491
- lastLogin?: string | undefined;
44492
- has2fa?: boolean | undefined;
44493
- lastActive?: string | undefined;
44494
- isSuperuser?: boolean | undefined;
44495
- isStaff?: boolean | undefined;
44496
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
44497
- emails?: Record<string, string | number | boolean>[] | undefined;
44498
- }[];
44499
- url?: string | null | undefined;
44500
- owner?: Record<string, unknown> | null | undefined;
44501
- adoptionStages?: Record<string, unknown> | null | undefined;
44502
- dateCreated?: string | null | undefined;
44503
- dateStarted?: string | null | undefined;
44504
- firstEvent?: string | null | undefined;
44505
- dateReleased?: string | null | undefined;
44506
- ref?: string | null | undefined;
44507
- lastCommit?: Record<string, unknown> | null | undefined;
44508
- lastDeploy?: {
44509
- name: string;
44510
- environment: string;
44511
45146
  id: string;
44512
- dateFinished: string;
44513
- url?: string | null | undefined;
44514
- dateStarted?: string | null | undefined;
44515
- } | null | undefined;
44516
- userAgent?: string | null | undefined;
44517
- lastEvent?: string | null | undefined;
44518
- currentProjectMeta?: Record<string, unknown> | null | undefined;
44519
- }, {
44520
- data: Record<string, unknown>;
44521
- id: number;
44522
- status: string;
44523
- version: string;
44524
- projects: {
44525
- name: string;
44526
- id: number;
44527
- platform: string | null;
44528
- slug: string;
44529
- platforms: string[] | null;
44530
- newGroups: number;
44531
- hasHealthData: boolean;
44532
- dateCreated?: string | null | undefined;
44533
- dateStarted?: string | null | undefined;
44534
- dateReleased?: string | null | undefined;
44535
- healthData?: {
44536
- stats: Record<string, unknown>;
44537
- sessionsCrashed: number;
44538
- sessionsErrored: number;
44539
- hasHealthData: boolean;
44540
- durationP50?: number | null | undefined;
44541
- durationP90?: number | null | undefined;
44542
- crashFreeUsers?: number | null | undefined;
44543
- crashFreeSessions?: number | null | undefined;
44544
- totalUsers?: number | null | undefined;
44545
- totalUsers24h?: number | null | undefined;
44546
- totalProjectUsers24h?: number | null | undefined;
44547
- totalSessions?: number | null | undefined;
44548
- totalSessions24h?: number | null | undefined;
44549
- totalProjectSessions24h?: number | null | undefined;
44550
- adoption?: number | null | undefined;
44551
- sessionsAdoption?: number | null | undefined;
44552
- } | null | undefined;
44553
- }[];
44554
- commitCount: number;
44555
- deployCount: number;
44556
- versionInfo: {
44557
- version: Record<string, unknown>;
44558
- package: string | null;
44559
- buildHash: string | null;
44560
- description?: string | undefined;
44561
- } | null;
44562
- newGroups: number;
44563
- shortVersion: string;
44564
- authors: {
44565
- name: string;
44566
- id: number;
44567
45147
  avatarUrl: string;
44568
45148
  username: string;
44569
45149
  email: string;
@@ -44572,15 +45152,42 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
44572
45152
  hasPasswordAuth: boolean;
44573
45153
  isManaged: boolean;
44574
45154
  dateJoined: string;
44575
- avatar?: Record<string, string | null> | undefined;
44576
- lastLogin?: string | undefined;
44577
- has2fa?: boolean | undefined;
44578
- lastActive?: string | undefined;
44579
- isSuperuser?: boolean | undefined;
44580
- isStaff?: boolean | undefined;
44581
- experiments?: Record<string, string | number | boolean | Record<string, unknown> | null> | undefined;
44582
- emails?: Record<string, string | number | boolean>[] | undefined;
44583
- }[];
45155
+ lastLogin: string | null;
45156
+ has2fa: boolean;
45157
+ lastActive: string | null;
45158
+ isSuperuser: boolean;
45159
+ isStaff: boolean;
45160
+ experiments: Record<string, unknown>;
45161
+ emails: {
45162
+ id: string;
45163
+ email: string;
45164
+ is_verified: boolean;
45165
+ }[];
45166
+ avatar?: {
45167
+ avatarType?: string | undefined;
45168
+ avatarUuid?: string | null | undefined;
45169
+ avatarUrl?: string | null | undefined;
45170
+ } | undefined;
45171
+ identities?: {
45172
+ name: string;
45173
+ id: string;
45174
+ provider: {
45175
+ name: string;
45176
+ id: string;
45177
+ };
45178
+ organization: {
45179
+ name: string;
45180
+ slug: string;
45181
+ };
45182
+ dateVerified: string;
45183
+ dateSynced: string;
45184
+ }[] | undefined;
45185
+ authenticators?: unknown[] | undefined;
45186
+ canReset2fa?: boolean | undefined;
45187
+ } | {
45188
+ name: string | null;
45189
+ email: string;
45190
+ })[];
44584
45191
  url?: string | null | undefined;
44585
45192
  owner?: Record<string, unknown> | null | undefined;
44586
45193
  adoptionStages?: Record<string, unknown> | null | undefined;
@@ -54979,6 +55586,104 @@ export declare const zDebugIssuesRelatedToSourceMapsForAGivenEventResponse: z.Zo
54979
55586
  type: string;
54980
55587
  }[];
54981
55588
  }>;
55589
+ export declare const zListAProjectSDebugInformationFilesData: z.ZodObject<{
55590
+ body: z.ZodOptional<z.ZodNever>;
55591
+ path: z.ZodObject<{
55592
+ organization_id_or_slug: z.ZodString;
55593
+ project_id_or_slug: z.ZodString;
55594
+ }, "strip", z.ZodTypeAny, {
55595
+ organization_id_or_slug: string;
55596
+ project_id_or_slug: string;
55597
+ }, {
55598
+ organization_id_or_slug: string;
55599
+ project_id_or_slug: string;
55600
+ }>;
55601
+ query: z.ZodOptional<z.ZodObject<{
55602
+ query: z.ZodOptional<z.ZodString>;
55603
+ debug_id: z.ZodOptional<z.ZodString>;
55604
+ code_id: z.ZodOptional<z.ZodString>;
55605
+ file_formats: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
55606
+ cursor: z.ZodOptional<z.ZodString>;
55607
+ }, "strip", z.ZodTypeAny, {
55608
+ query?: string | undefined;
55609
+ cursor?: string | undefined;
55610
+ debug_id?: string | undefined;
55611
+ code_id?: string | undefined;
55612
+ file_formats?: string[] | undefined;
55613
+ }, {
55614
+ query?: string | undefined;
55615
+ cursor?: string | undefined;
55616
+ debug_id?: string | undefined;
55617
+ code_id?: string | undefined;
55618
+ file_formats?: string[] | undefined;
55619
+ }>>;
55620
+ }, "strip", z.ZodTypeAny, {
55621
+ path: {
55622
+ organization_id_or_slug: string;
55623
+ project_id_or_slug: string;
55624
+ };
55625
+ query?: {
55626
+ query?: string | undefined;
55627
+ cursor?: string | undefined;
55628
+ debug_id?: string | undefined;
55629
+ code_id?: string | undefined;
55630
+ file_formats?: string[] | undefined;
55631
+ } | undefined;
55632
+ body?: undefined;
55633
+ }, {
55634
+ path: {
55635
+ organization_id_or_slug: string;
55636
+ project_id_or_slug: string;
55637
+ };
55638
+ query?: {
55639
+ query?: string | undefined;
55640
+ cursor?: string | undefined;
55641
+ debug_id?: string | undefined;
55642
+ code_id?: string | undefined;
55643
+ file_formats?: string[] | undefined;
55644
+ } | undefined;
55645
+ body?: undefined;
55646
+ }>;
55647
+ export declare const zListAProjectSDebugInformationFilesResponse: z.ZodArray<z.ZodObject<{
55648
+ id: z.ZodString;
55649
+ uuid: z.ZodString;
55650
+ debugId: z.ZodString;
55651
+ codeId: z.ZodUnion<[z.ZodString, z.ZodNull]>;
55652
+ cpuName: z.ZodString;
55653
+ objectName: z.ZodString;
55654
+ symbolType: z.ZodString;
55655
+ headers: z.ZodRecord<z.ZodString, z.ZodString>;
55656
+ size: z.ZodNumber;
55657
+ sha1: z.ZodString;
55658
+ dateCreated: z.ZodString;
55659
+ data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
55660
+ }, "strip", z.ZodTypeAny, {
55661
+ headers: Record<string, string>;
55662
+ data: Record<string, unknown>;
55663
+ id: string;
55664
+ uuid: string;
55665
+ dateCreated: string;
55666
+ size: number;
55667
+ debugId: string;
55668
+ codeId: string | null;
55669
+ cpuName: string;
55670
+ objectName: string;
55671
+ symbolType: string;
55672
+ sha1: string;
55673
+ }, {
55674
+ headers: Record<string, string>;
55675
+ data: Record<string, unknown>;
55676
+ id: string;
55677
+ uuid: string;
55678
+ dateCreated: string;
55679
+ size: number;
55680
+ debugId: string;
55681
+ codeId: string | null;
55682
+ cpuName: string;
55683
+ objectName: string;
55684
+ symbolType: string;
55685
+ sha1: string;
55686
+ }>, "many">;
54982
55687
  export declare const zListAProjectSDataFiltersData: z.ZodObject<{
54983
55688
  body: z.ZodOptional<z.ZodNever>;
54984
55689
  path: z.ZodObject<{
@@ -64006,114 +64711,6 @@ export declare const zListAnOrganizationSRepositoriesResponse: z.ZodArray<z.ZodO
64006
64711
  id: string;
64007
64712
  dateCreated: string;
64008
64713
  }>, "many">;
64009
- export declare const zDeleteASpecificProjectSDebugInformationFileData: z.ZodObject<{
64010
- body: z.ZodOptional<z.ZodNever>;
64011
- path: z.ZodObject<{
64012
- organization_id_or_slug: z.ZodString;
64013
- project_id_or_slug: z.ZodString;
64014
- }, "strip", z.ZodTypeAny, {
64015
- organization_id_or_slug: string;
64016
- project_id_or_slug: string;
64017
- }, {
64018
- organization_id_or_slug: string;
64019
- project_id_or_slug: string;
64020
- }>;
64021
- query: z.ZodObject<{
64022
- id: z.ZodString;
64023
- }, "strip", z.ZodTypeAny, {
64024
- id: string;
64025
- }, {
64026
- id: string;
64027
- }>;
64028
- }, "strip", z.ZodTypeAny, {
64029
- query: {
64030
- id: string;
64031
- };
64032
- path: {
64033
- organization_id_or_slug: string;
64034
- project_id_or_slug: string;
64035
- };
64036
- body?: undefined;
64037
- }, {
64038
- query: {
64039
- id: string;
64040
- };
64041
- path: {
64042
- organization_id_or_slug: string;
64043
- project_id_or_slug: string;
64044
- };
64045
- body?: undefined;
64046
- }>;
64047
- /**
64048
- * Success
64049
- */
64050
- export declare const zDeleteASpecificProjectSDebugInformationFileResponse: z.ZodVoid;
64051
- export declare const zListAProjectSDebugInformationFilesData: z.ZodObject<{
64052
- body: z.ZodOptional<z.ZodNever>;
64053
- path: z.ZodObject<{
64054
- organization_id_or_slug: z.ZodString;
64055
- project_id_or_slug: z.ZodString;
64056
- }, "strip", z.ZodTypeAny, {
64057
- organization_id_or_slug: string;
64058
- project_id_or_slug: string;
64059
- }, {
64060
- organization_id_or_slug: string;
64061
- project_id_or_slug: string;
64062
- }>;
64063
- query: z.ZodOptional<z.ZodNever>;
64064
- }, "strip", z.ZodTypeAny, {
64065
- path: {
64066
- organization_id_or_slug: string;
64067
- project_id_or_slug: string;
64068
- };
64069
- query?: undefined;
64070
- body?: undefined;
64071
- }, {
64072
- path: {
64073
- organization_id_or_slug: string;
64074
- project_id_or_slug: string;
64075
- };
64076
- query?: undefined;
64077
- body?: undefined;
64078
- }>;
64079
- export declare const zUploadANewFileData: z.ZodObject<{
64080
- body: z.ZodObject<{
64081
- file: z.ZodString;
64082
- }, "strip", z.ZodTypeAny, {
64083
- file: string;
64084
- }, {
64085
- file: string;
64086
- }>;
64087
- path: z.ZodObject<{
64088
- organization_id_or_slug: z.ZodString;
64089
- project_id_or_slug: z.ZodString;
64090
- }, "strip", z.ZodTypeAny, {
64091
- organization_id_or_slug: string;
64092
- project_id_or_slug: string;
64093
- }, {
64094
- organization_id_or_slug: string;
64095
- project_id_or_slug: string;
64096
- }>;
64097
- query: z.ZodOptional<z.ZodNever>;
64098
- }, "strip", z.ZodTypeAny, {
64099
- body: {
64100
- file: string;
64101
- };
64102
- path: {
64103
- organization_id_or_slug: string;
64104
- project_id_or_slug: string;
64105
- };
64106
- query?: undefined;
64107
- }, {
64108
- body: {
64109
- file: string;
64110
- };
64111
- path: {
64112
- organization_id_or_slug: string;
64113
- project_id_or_slug: string;
64114
- };
64115
- query?: undefined;
64116
- }>;
64117
64714
  export declare const zListAProjectSusersData: z.ZodObject<{
64118
64715
  body: z.ZodOptional<z.ZodNever>;
64119
64716
  path: z.ZodObject<{