@sentry/api 0.289.0 → 0.290.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/error-results.gen.d.ts +1 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +0 -14
- package/dist/pagination.gen.d.ts +1 -16
- package/dist/sdk.gen.d.ts +1 -10
- package/dist/types.gen.d.ts +0 -182
- package/dist/valibot.gen.d.ts +0 -138
- package/dist/valibot.js +0 -166
- package/dist/zod.gen.d.ts +392 -1114
- package/dist/zod.js +0 -226
- package/package.json +1 -1
package/dist/zod.js
CHANGED
|
@@ -8769,107 +8769,6 @@ var zOrganizationIssueView = z.object({
|
|
|
8769
8769
|
starred: z.boolean(),
|
|
8770
8770
|
stars: z.number().int()
|
|
8771
8771
|
});
|
|
8772
|
-
var zOrganizationIssueViewList = z.array(z.object({
|
|
8773
|
-
id: z.string(),
|
|
8774
|
-
createdBy: z.union([
|
|
8775
|
-
z.object({
|
|
8776
|
-
identities: z.array(z.object({
|
|
8777
|
-
id: z.string(),
|
|
8778
|
-
name: z.string(),
|
|
8779
|
-
organization: z.object({
|
|
8780
|
-
slug: z.string(),
|
|
8781
|
-
name: z.string()
|
|
8782
|
-
}),
|
|
8783
|
-
provider: z.object({
|
|
8784
|
-
id: z.string(),
|
|
8785
|
-
name: z.string()
|
|
8786
|
-
}),
|
|
8787
|
-
dateVerified: z.string().datetime(),
|
|
8788
|
-
dateSynced: z.string().datetime()
|
|
8789
|
-
})).optional(),
|
|
8790
|
-
avatar: z.object({
|
|
8791
|
-
avatarType: z.string().optional(),
|
|
8792
|
-
avatarUuid: z.union([
|
|
8793
|
-
z.string(),
|
|
8794
|
-
z.null()
|
|
8795
|
-
]).optional(),
|
|
8796
|
-
avatarUrl: z.union([
|
|
8797
|
-
z.string(),
|
|
8798
|
-
z.null()
|
|
8799
|
-
]).optional()
|
|
8800
|
-
}).optional(),
|
|
8801
|
-
authenticators: z.array(z.unknown()).optional(),
|
|
8802
|
-
canReset2fa: z.boolean().optional(),
|
|
8803
|
-
id: z.string(),
|
|
8804
|
-
name: z.string(),
|
|
8805
|
-
username: z.string(),
|
|
8806
|
-
email: z.string(),
|
|
8807
|
-
avatarUrl: z.string(),
|
|
8808
|
-
isActive: z.boolean(),
|
|
8809
|
-
isSuspended: z.boolean(),
|
|
8810
|
-
hasPasswordAuth: z.boolean(),
|
|
8811
|
-
isManaged: z.boolean(),
|
|
8812
|
-
dateJoined: z.string().datetime(),
|
|
8813
|
-
lastLogin: z.union([
|
|
8814
|
-
z.string().datetime(),
|
|
8815
|
-
z.null()
|
|
8816
|
-
]),
|
|
8817
|
-
has2fa: z.boolean(),
|
|
8818
|
-
lastActive: z.union([
|
|
8819
|
-
z.string().datetime(),
|
|
8820
|
-
z.null()
|
|
8821
|
-
]),
|
|
8822
|
-
isSuperuser: z.boolean(),
|
|
8823
|
-
isStaff: z.boolean(),
|
|
8824
|
-
experiments: z.record(z.unknown()),
|
|
8825
|
-
emails: z.array(z.object({
|
|
8826
|
-
id: z.string(),
|
|
8827
|
-
email: z.string(),
|
|
8828
|
-
is_verified: z.boolean()
|
|
8829
|
-
}))
|
|
8830
|
-
}),
|
|
8831
|
-
z.null()
|
|
8832
|
-
]),
|
|
8833
|
-
name: z.string(),
|
|
8834
|
-
query: z.string(),
|
|
8835
|
-
querySort: z.enum([
|
|
8836
|
-
"date",
|
|
8837
|
-
"new",
|
|
8838
|
-
"trends",
|
|
8839
|
-
"freq",
|
|
8840
|
-
"user",
|
|
8841
|
-
"inbox",
|
|
8842
|
-
"recommended"
|
|
8843
|
-
]),
|
|
8844
|
-
projects: z.array(z.number().int()),
|
|
8845
|
-
environments: z.array(z.string()),
|
|
8846
|
-
timeFilters: z.object({
|
|
8847
|
-
start: z.union([
|
|
8848
|
-
z.string(),
|
|
8849
|
-
z.null()
|
|
8850
|
-
]).optional(),
|
|
8851
|
-
end: z.union([
|
|
8852
|
-
z.string(),
|
|
8853
|
-
z.null()
|
|
8854
|
-
]).optional(),
|
|
8855
|
-
period: z.union([
|
|
8856
|
-
z.string(),
|
|
8857
|
-
z.null()
|
|
8858
|
-
]).optional(),
|
|
8859
|
-
utc: z.union([
|
|
8860
|
-
z.boolean(),
|
|
8861
|
-
z.null()
|
|
8862
|
-
]).optional()
|
|
8863
|
-
}),
|
|
8864
|
-
lastVisited: z.union([
|
|
8865
|
-
z.string(),
|
|
8866
|
-
z.null()
|
|
8867
|
-
]),
|
|
8868
|
-
dateCreated: z.string(),
|
|
8869
|
-
dateUpdated: z.string(),
|
|
8870
|
-
starred: z.boolean(),
|
|
8871
|
-
stars: z.number().int()
|
|
8872
|
-
}));
|
|
8873
8772
|
var zOrganizationMember = z.object({
|
|
8874
8773
|
externalUsers: z.array(z.object({
|
|
8875
8774
|
externalId: z.string().optional(),
|
|
@@ -15433,128 +15332,6 @@ var zUpdateOrganizationForwardingResponse = z.object({
|
|
|
15433
15332
|
dateAdded: z.string().datetime(),
|
|
15434
15333
|
dateUpdated: z.string().datetime()
|
|
15435
15334
|
});
|
|
15436
|
-
var zListOrganizationIssueViewsData = z.object({
|
|
15437
|
-
body: z.never().optional(),
|
|
15438
|
-
path: z.object({
|
|
15439
|
-
organization_id_or_slug: z.string()
|
|
15440
|
-
}),
|
|
15441
|
-
query: z.object({
|
|
15442
|
-
createdBy: z.enum(["me", "others"]).optional(),
|
|
15443
|
-
sort: z.array(z.enum([
|
|
15444
|
-
"popularity",
|
|
15445
|
-
"-popularity",
|
|
15446
|
-
"visited",
|
|
15447
|
-
"-visited",
|
|
15448
|
-
"name",
|
|
15449
|
-
"-name",
|
|
15450
|
-
"created",
|
|
15451
|
-
"-created"
|
|
15452
|
-
])).optional().default(["-visited"]),
|
|
15453
|
-
query: z.string().min(1).optional(),
|
|
15454
|
-
cursor: z.string().min(1).optional()
|
|
15455
|
-
}).optional()
|
|
15456
|
-
});
|
|
15457
|
-
var zListOrganizationIssueViewsResponse = z.array(z.object({
|
|
15458
|
-
id: z.string(),
|
|
15459
|
-
createdBy: z.union([
|
|
15460
|
-
z.object({
|
|
15461
|
-
identities: z.array(z.object({
|
|
15462
|
-
id: z.string(),
|
|
15463
|
-
name: z.string(),
|
|
15464
|
-
organization: z.object({
|
|
15465
|
-
slug: z.string(),
|
|
15466
|
-
name: z.string()
|
|
15467
|
-
}),
|
|
15468
|
-
provider: z.object({
|
|
15469
|
-
id: z.string(),
|
|
15470
|
-
name: z.string()
|
|
15471
|
-
}),
|
|
15472
|
-
dateVerified: z.string().datetime(),
|
|
15473
|
-
dateSynced: z.string().datetime()
|
|
15474
|
-
})).optional(),
|
|
15475
|
-
avatar: z.object({
|
|
15476
|
-
avatarType: z.string().optional(),
|
|
15477
|
-
avatarUuid: z.union([
|
|
15478
|
-
z.string(),
|
|
15479
|
-
z.null()
|
|
15480
|
-
]).optional(),
|
|
15481
|
-
avatarUrl: z.union([
|
|
15482
|
-
z.string(),
|
|
15483
|
-
z.null()
|
|
15484
|
-
]).optional()
|
|
15485
|
-
}).optional(),
|
|
15486
|
-
authenticators: z.array(z.unknown()).optional(),
|
|
15487
|
-
canReset2fa: z.boolean().optional(),
|
|
15488
|
-
id: z.string(),
|
|
15489
|
-
name: z.string(),
|
|
15490
|
-
username: z.string(),
|
|
15491
|
-
email: z.string(),
|
|
15492
|
-
avatarUrl: z.string(),
|
|
15493
|
-
isActive: z.boolean(),
|
|
15494
|
-
isSuspended: z.boolean(),
|
|
15495
|
-
hasPasswordAuth: z.boolean(),
|
|
15496
|
-
isManaged: z.boolean(),
|
|
15497
|
-
dateJoined: z.string().datetime(),
|
|
15498
|
-
lastLogin: z.union([
|
|
15499
|
-
z.string().datetime(),
|
|
15500
|
-
z.null()
|
|
15501
|
-
]),
|
|
15502
|
-
has2fa: z.boolean(),
|
|
15503
|
-
lastActive: z.union([
|
|
15504
|
-
z.string().datetime(),
|
|
15505
|
-
z.null()
|
|
15506
|
-
]),
|
|
15507
|
-
isSuperuser: z.boolean(),
|
|
15508
|
-
isStaff: z.boolean(),
|
|
15509
|
-
experiments: z.record(z.unknown()),
|
|
15510
|
-
emails: z.array(z.object({
|
|
15511
|
-
id: z.string(),
|
|
15512
|
-
email: z.string(),
|
|
15513
|
-
is_verified: z.boolean()
|
|
15514
|
-
}))
|
|
15515
|
-
}),
|
|
15516
|
-
z.null()
|
|
15517
|
-
]),
|
|
15518
|
-
name: z.string(),
|
|
15519
|
-
query: z.string(),
|
|
15520
|
-
querySort: z.enum([
|
|
15521
|
-
"date",
|
|
15522
|
-
"new",
|
|
15523
|
-
"trends",
|
|
15524
|
-
"freq",
|
|
15525
|
-
"user",
|
|
15526
|
-
"inbox",
|
|
15527
|
-
"recommended"
|
|
15528
|
-
]),
|
|
15529
|
-
projects: z.array(z.number().int()),
|
|
15530
|
-
environments: z.array(z.string()),
|
|
15531
|
-
timeFilters: z.object({
|
|
15532
|
-
start: z.union([
|
|
15533
|
-
z.string(),
|
|
15534
|
-
z.null()
|
|
15535
|
-
]).optional(),
|
|
15536
|
-
end: z.union([
|
|
15537
|
-
z.string(),
|
|
15538
|
-
z.null()
|
|
15539
|
-
]).optional(),
|
|
15540
|
-
period: z.union([
|
|
15541
|
-
z.string(),
|
|
15542
|
-
z.null()
|
|
15543
|
-
]).optional(),
|
|
15544
|
-
utc: z.union([
|
|
15545
|
-
z.boolean(),
|
|
15546
|
-
z.null()
|
|
15547
|
-
]).optional()
|
|
15548
|
-
}),
|
|
15549
|
-
lastVisited: z.union([
|
|
15550
|
-
z.string(),
|
|
15551
|
-
z.null()
|
|
15552
|
-
]),
|
|
15553
|
-
dateCreated: z.string(),
|
|
15554
|
-
dateUpdated: z.string(),
|
|
15555
|
-
starred: z.boolean(),
|
|
15556
|
-
stars: z.number().int()
|
|
15557
|
-
}));
|
|
15558
15335
|
var zCreateOrganizationIssueViewData = z.object({
|
|
15559
15336
|
body: z.object({
|
|
15560
15337
|
name: z.string(),
|
|
@@ -32382,7 +32159,6 @@ export {
|
|
|
32382
32159
|
zOrganizationMemberRequestWritable,
|
|
32383
32160
|
zOrganizationMemberRequest,
|
|
32384
32161
|
zOrganizationMember,
|
|
32385
|
-
zOrganizationIssueViewList,
|
|
32386
32162
|
zOrganizationIssueView,
|
|
32387
32163
|
zOrganizationIntegrationResponse,
|
|
32388
32164
|
zOrganizationGroupIndexPutResponse,
|
|
@@ -32530,8 +32306,6 @@ export {
|
|
|
32530
32306
|
zListOrganizationMemberResponse,
|
|
32531
32307
|
zListOrganizationIssuesResponse,
|
|
32532
32308
|
zListOrganizationIssuesData,
|
|
32533
|
-
zListOrganizationIssueViewsResponse,
|
|
32534
|
-
zListOrganizationIssueViewsData,
|
|
32535
32309
|
zListOrganizationIssueTagValuesResponse,
|
|
32536
32310
|
zListOrganizationIssueTagValuesData,
|
|
32537
32311
|
zListOrganizationIssueHashesResponse,
|