@sentry/api 0.149.0 → 0.151.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/zod.gen.d.ts
CHANGED
|
@@ -13115,16 +13115,75 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13115
13115
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13116
13116
|
commitCount: z.ZodNumber;
|
|
13117
13117
|
deployCount: z.ZodNumber;
|
|
13118
|
-
authors: z.ZodArray<z.ZodObject<{
|
|
13119
|
-
|
|
13120
|
-
|
|
13121
|
-
|
|
13122
|
-
|
|
13123
|
-
|
|
13124
|
-
|
|
13125
|
-
|
|
13126
|
-
|
|
13127
|
-
|
|
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;
|
|
13128
13187
|
name: z.ZodString;
|
|
13129
13188
|
username: z.ZodString;
|
|
13130
13189
|
email: z.ZodString;
|
|
@@ -13134,9 +13193,28 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13134
13193
|
hasPasswordAuth: z.ZodBoolean;
|
|
13135
13194
|
isManaged: z.ZodBoolean;
|
|
13136
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">;
|
|
13137
13215
|
}, "strip", z.ZodTypeAny, {
|
|
13138
13216
|
name: string;
|
|
13139
|
-
id:
|
|
13217
|
+
id: string;
|
|
13140
13218
|
avatarUrl: string;
|
|
13141
13219
|
username: string;
|
|
13142
13220
|
email: string;
|
|
@@ -13145,17 +13223,41 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13145
13223
|
hasPasswordAuth: boolean;
|
|
13146
13224
|
isManaged: boolean;
|
|
13147
13225
|
dateJoined: string;
|
|
13148
|
-
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
|
|
13152
|
-
|
|
13153
|
-
|
|
13154
|
-
|
|
13155
|
-
|
|
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;
|
|
13156
13258
|
}, {
|
|
13157
13259
|
name: string;
|
|
13158
|
-
id:
|
|
13260
|
+
id: string;
|
|
13159
13261
|
avatarUrl: string;
|
|
13160
13262
|
username: string;
|
|
13161
13263
|
email: string;
|
|
@@ -13164,15 +13266,48 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13164
13266
|
hasPasswordAuth: boolean;
|
|
13165
13267
|
isManaged: boolean;
|
|
13166
13268
|
dateJoined: string;
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
|
|
13171
|
-
|
|
13172
|
-
|
|
13173
|
-
|
|
13174
|
-
|
|
13175
|
-
|
|
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">;
|
|
13176
13311
|
projects: z.ZodArray<z.ZodObject<{
|
|
13177
13312
|
healthData: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13178
13313
|
durationP50: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
@@ -13340,9 +13475,9 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13340
13475
|
} | null;
|
|
13341
13476
|
newGroups: number;
|
|
13342
13477
|
shortVersion: string;
|
|
13343
|
-
authors: {
|
|
13478
|
+
authors: ({
|
|
13344
13479
|
name: string;
|
|
13345
|
-
id:
|
|
13480
|
+
id: string;
|
|
13346
13481
|
avatarUrl: string;
|
|
13347
13482
|
username: string;
|
|
13348
13483
|
email: string;
|
|
@@ -13351,15 +13486,42 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13351
13486
|
hasPasswordAuth: boolean;
|
|
13352
13487
|
isManaged: boolean;
|
|
13353
13488
|
dateJoined: string;
|
|
13354
|
-
|
|
13355
|
-
|
|
13356
|
-
|
|
13357
|
-
|
|
13358
|
-
|
|
13359
|
-
|
|
13360
|
-
|
|
13361
|
-
|
|
13362
|
-
|
|
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
|
+
})[];
|
|
13363
13525
|
url?: string | null | undefined;
|
|
13364
13526
|
owner?: Record<string, unknown> | null | undefined;
|
|
13365
13527
|
adoptionStages?: Record<string, unknown> | null | undefined;
|
|
@@ -13425,9 +13587,9 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13425
13587
|
} | null;
|
|
13426
13588
|
newGroups: number;
|
|
13427
13589
|
shortVersion: string;
|
|
13428
|
-
authors: {
|
|
13590
|
+
authors: ({
|
|
13429
13591
|
name: string;
|
|
13430
|
-
id:
|
|
13592
|
+
id: string;
|
|
13431
13593
|
avatarUrl: string;
|
|
13432
13594
|
username: string;
|
|
13433
13595
|
email: string;
|
|
@@ -13436,15 +13598,42 @@ export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
|
13436
13598
|
hasPasswordAuth: boolean;
|
|
13437
13599
|
isManaged: boolean;
|
|
13438
13600
|
dateJoined: string;
|
|
13439
|
-
|
|
13440
|
-
|
|
13441
|
-
|
|
13442
|
-
|
|
13443
|
-
|
|
13444
|
-
|
|
13445
|
-
|
|
13446
|
-
|
|
13447
|
-
|
|
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
|
+
})[];
|
|
13448
13637
|
url?: string | null | undefined;
|
|
13449
13638
|
owner?: Record<string, unknown> | null | undefined;
|
|
13450
13639
|
adoptionStages?: Record<string, unknown> | null | undefined;
|
|
@@ -43712,29 +43901,107 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
43712
43901
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
43713
43902
|
commitCount: z.ZodNumber;
|
|
43714
43903
|
deployCount: z.ZodNumber;
|
|
43715
|
-
authors: z.ZodArray<z.ZodObject<{
|
|
43716
|
-
|
|
43717
|
-
|
|
43718
|
-
|
|
43719
|
-
|
|
43720
|
-
|
|
43721
|
-
|
|
43722
|
-
|
|
43723
|
-
|
|
43724
|
-
|
|
43725
|
-
|
|
43726
|
-
|
|
43727
|
-
|
|
43728
|
-
|
|
43729
|
-
|
|
43730
|
-
|
|
43731
|
-
|
|
43732
|
-
|
|
43733
|
-
|
|
43734
|
-
|
|
43735
|
-
|
|
43736
|
-
|
|
43737
|
-
|
|
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;
|
|
43973
|
+
name: z.ZodString;
|
|
43974
|
+
username: z.ZodString;
|
|
43975
|
+
email: z.ZodString;
|
|
43976
|
+
avatarUrl: z.ZodString;
|
|
43977
|
+
isActive: z.ZodBoolean;
|
|
43978
|
+
isSuspended: z.ZodBoolean;
|
|
43979
|
+
hasPasswordAuth: z.ZodBoolean;
|
|
43980
|
+
isManaged: z.ZodBoolean;
|
|
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">;
|
|
44001
|
+
}, "strip", z.ZodTypeAny, {
|
|
44002
|
+
name: string;
|
|
44003
|
+
id: string;
|
|
44004
|
+
avatarUrl: string;
|
|
43738
44005
|
username: string;
|
|
43739
44006
|
email: string;
|
|
43740
44007
|
isActive: boolean;
|
|
@@ -43742,17 +44009,41 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
43742
44009
|
hasPasswordAuth: boolean;
|
|
43743
44010
|
isManaged: boolean;
|
|
43744
44011
|
dateJoined: string;
|
|
43745
|
-
|
|
43746
|
-
|
|
43747
|
-
|
|
43748
|
-
|
|
43749
|
-
|
|
43750
|
-
|
|
43751
|
-
|
|
43752
|
-
|
|
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;
|
|
43753
44044
|
}, {
|
|
43754
44045
|
name: string;
|
|
43755
|
-
id:
|
|
44046
|
+
id: string;
|
|
43756
44047
|
avatarUrl: string;
|
|
43757
44048
|
username: string;
|
|
43758
44049
|
email: string;
|
|
@@ -43761,15 +44052,48 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
43761
44052
|
hasPasswordAuth: boolean;
|
|
43762
44053
|
isManaged: boolean;
|
|
43763
44054
|
dateJoined: string;
|
|
43764
|
-
|
|
43765
|
-
|
|
43766
|
-
|
|
43767
|
-
|
|
43768
|
-
|
|
43769
|
-
|
|
43770
|
-
|
|
43771
|
-
|
|
43772
|
-
|
|
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">;
|
|
43773
44097
|
projects: z.ZodArray<z.ZodObject<{
|
|
43774
44098
|
healthData: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
43775
44099
|
durationP50: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
@@ -43937,9 +44261,9 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
43937
44261
|
} | null;
|
|
43938
44262
|
newGroups: number;
|
|
43939
44263
|
shortVersion: string;
|
|
43940
|
-
authors: {
|
|
44264
|
+
authors: ({
|
|
43941
44265
|
name: string;
|
|
43942
|
-
id:
|
|
44266
|
+
id: string;
|
|
43943
44267
|
avatarUrl: string;
|
|
43944
44268
|
username: string;
|
|
43945
44269
|
email: string;
|
|
@@ -43948,15 +44272,42 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
43948
44272
|
hasPasswordAuth: boolean;
|
|
43949
44273
|
isManaged: boolean;
|
|
43950
44274
|
dateJoined: string;
|
|
43951
|
-
|
|
43952
|
-
|
|
43953
|
-
|
|
43954
|
-
|
|
43955
|
-
|
|
43956
|
-
|
|
43957
|
-
|
|
43958
|
-
|
|
43959
|
-
|
|
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
|
+
})[];
|
|
43960
44311
|
url?: string | null | undefined;
|
|
43961
44312
|
owner?: Record<string, unknown> | null | undefined;
|
|
43962
44313
|
adoptionStages?: Record<string, unknown> | null | undefined;
|
|
@@ -44022,9 +44373,9 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44022
44373
|
} | null;
|
|
44023
44374
|
newGroups: number;
|
|
44024
44375
|
shortVersion: string;
|
|
44025
|
-
authors: {
|
|
44376
|
+
authors: ({
|
|
44026
44377
|
name: string;
|
|
44027
|
-
id:
|
|
44378
|
+
id: string;
|
|
44028
44379
|
avatarUrl: string;
|
|
44029
44380
|
username: string;
|
|
44030
44381
|
email: string;
|
|
@@ -44033,15 +44384,42 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44033
44384
|
hasPasswordAuth: boolean;
|
|
44034
44385
|
isManaged: boolean;
|
|
44035
44386
|
dateJoined: string;
|
|
44036
|
-
|
|
44037
|
-
|
|
44038
|
-
|
|
44039
|
-
|
|
44040
|
-
|
|
44041
|
-
|
|
44042
|
-
|
|
44043
|
-
|
|
44044
|
-
|
|
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
|
+
})[];
|
|
44045
44423
|
url?: string | null | undefined;
|
|
44046
44424
|
owner?: Record<string, unknown> | null | undefined;
|
|
44047
44425
|
adoptionStages?: Record<string, unknown> | null | undefined;
|
|
@@ -44291,16 +44669,75 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44291
44669
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
44292
44670
|
commitCount: z.ZodNumber;
|
|
44293
44671
|
deployCount: z.ZodNumber;
|
|
44294
|
-
authors: z.ZodArray<z.ZodObject<{
|
|
44295
|
-
|
|
44296
|
-
|
|
44297
|
-
|
|
44298
|
-
|
|
44299
|
-
|
|
44300
|
-
|
|
44301
|
-
|
|
44302
|
-
|
|
44303
|
-
|
|
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;
|
|
44304
44741
|
name: z.ZodString;
|
|
44305
44742
|
username: z.ZodString;
|
|
44306
44743
|
email: z.ZodString;
|
|
@@ -44310,9 +44747,28 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44310
44747
|
hasPasswordAuth: z.ZodBoolean;
|
|
44311
44748
|
isManaged: z.ZodBoolean;
|
|
44312
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">;
|
|
44313
44769
|
}, "strip", z.ZodTypeAny, {
|
|
44314
44770
|
name: string;
|
|
44315
|
-
id:
|
|
44771
|
+
id: string;
|
|
44316
44772
|
avatarUrl: string;
|
|
44317
44773
|
username: string;
|
|
44318
44774
|
email: string;
|
|
@@ -44321,17 +44777,41 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44321
44777
|
hasPasswordAuth: boolean;
|
|
44322
44778
|
isManaged: boolean;
|
|
44323
44779
|
dateJoined: string;
|
|
44324
|
-
|
|
44325
|
-
|
|
44326
|
-
|
|
44327
|
-
|
|
44328
|
-
|
|
44329
|
-
|
|
44330
|
-
|
|
44331
|
-
|
|
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;
|
|
44332
44812
|
}, {
|
|
44333
44813
|
name: string;
|
|
44334
|
-
id:
|
|
44814
|
+
id: string;
|
|
44335
44815
|
avatarUrl: string;
|
|
44336
44816
|
username: string;
|
|
44337
44817
|
email: string;
|
|
@@ -44340,15 +44820,48 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44340
44820
|
hasPasswordAuth: boolean;
|
|
44341
44821
|
isManaged: boolean;
|
|
44342
44822
|
dateJoined: string;
|
|
44343
|
-
|
|
44344
|
-
|
|
44345
|
-
|
|
44346
|
-
|
|
44347
|
-
|
|
44348
|
-
|
|
44349
|
-
|
|
44350
|
-
|
|
44351
|
-
|
|
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">;
|
|
44352
44865
|
projects: z.ZodArray<z.ZodObject<{
|
|
44353
44866
|
healthData: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
44354
44867
|
durationP50: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
@@ -44516,9 +45029,9 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44516
45029
|
} | null;
|
|
44517
45030
|
newGroups: number;
|
|
44518
45031
|
shortVersion: string;
|
|
44519
|
-
authors: {
|
|
45032
|
+
authors: ({
|
|
44520
45033
|
name: string;
|
|
44521
|
-
id:
|
|
45034
|
+
id: string;
|
|
44522
45035
|
avatarUrl: string;
|
|
44523
45036
|
username: string;
|
|
44524
45037
|
email: string;
|
|
@@ -44527,15 +45040,42 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44527
45040
|
hasPasswordAuth: boolean;
|
|
44528
45041
|
isManaged: boolean;
|
|
44529
45042
|
dateJoined: string;
|
|
44530
|
-
|
|
44531
|
-
|
|
44532
|
-
|
|
44533
|
-
|
|
44534
|
-
|
|
44535
|
-
|
|
44536
|
-
|
|
44537
|
-
|
|
44538
|
-
|
|
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
|
+
})[];
|
|
44539
45079
|
url?: string | null | undefined;
|
|
44540
45080
|
owner?: Record<string, unknown> | null | undefined;
|
|
44541
45081
|
adoptionStages?: Record<string, unknown> | null | undefined;
|
|
@@ -44601,9 +45141,9 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44601
45141
|
} | null;
|
|
44602
45142
|
newGroups: number;
|
|
44603
45143
|
shortVersion: string;
|
|
44604
|
-
authors: {
|
|
45144
|
+
authors: ({
|
|
44605
45145
|
name: string;
|
|
44606
|
-
id:
|
|
45146
|
+
id: string;
|
|
44607
45147
|
avatarUrl: string;
|
|
44608
45148
|
username: string;
|
|
44609
45149
|
email: string;
|
|
@@ -44612,15 +45152,42 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
|
|
|
44612
45152
|
hasPasswordAuth: boolean;
|
|
44613
45153
|
isManaged: boolean;
|
|
44614
45154
|
dateJoined: string;
|
|
44615
|
-
|
|
44616
|
-
|
|
44617
|
-
|
|
44618
|
-
|
|
44619
|
-
|
|
44620
|
-
|
|
44621
|
-
|
|
44622
|
-
|
|
44623
|
-
|
|
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
|
+
})[];
|
|
44624
45191
|
url?: string | null | undefined;
|
|
44625
45192
|
owner?: Record<string, unknown> | null | undefined;
|
|
44626
45193
|
adoptionStages?: Record<string, unknown> | null | undefined;
|