@sentry/api 0.287.0 → 0.288.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 +5 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +26 -0
- package/dist/pagination.gen.d.ts +16 -1
- package/dist/sdk.gen.d.ts +16 -1
- package/dist/types.gen.d.ts +471 -0
- package/dist/valibot.gen.d.ts +304 -0
- package/dist/valibot.js +369 -0
- package/dist/zod.gen.d.ts +3461 -1901
- package/dist/zod.js +525 -0
- package/package.json +1 -1
package/dist/zod.js
CHANGED
|
@@ -3739,6 +3739,58 @@ var zGroupHashesResponse = z.array(z.object({
|
|
|
3739
3739
|
z.null()
|
|
3740
3740
|
])
|
|
3741
3741
|
}));
|
|
3742
|
+
var zGroupSearchViewPostValidator = z.object({
|
|
3743
|
+
name: z.string(),
|
|
3744
|
+
query: z.string(),
|
|
3745
|
+
projects: z.array(z.number().int()),
|
|
3746
|
+
environments: z.array(z.string()),
|
|
3747
|
+
timeFilters: z.object({
|
|
3748
|
+
start: z.union([
|
|
3749
|
+
z.string(),
|
|
3750
|
+
z.null()
|
|
3751
|
+
]).optional(),
|
|
3752
|
+
end: z.union([
|
|
3753
|
+
z.string(),
|
|
3754
|
+
z.null()
|
|
3755
|
+
]).optional(),
|
|
3756
|
+
period: z.union([
|
|
3757
|
+
z.string(),
|
|
3758
|
+
z.null()
|
|
3759
|
+
]).optional(),
|
|
3760
|
+
utc: z.union([
|
|
3761
|
+
z.boolean(),
|
|
3762
|
+
z.null()
|
|
3763
|
+
]).optional()
|
|
3764
|
+
}),
|
|
3765
|
+
querySort: z.enum([
|
|
3766
|
+
"date",
|
|
3767
|
+
"new",
|
|
3768
|
+
"trends",
|
|
3769
|
+
"freq",
|
|
3770
|
+
"user",
|
|
3771
|
+
"inbox",
|
|
3772
|
+
"recommended"
|
|
3773
|
+
]).optional(),
|
|
3774
|
+
starred: z.boolean().optional()
|
|
3775
|
+
});
|
|
3776
|
+
var zGroupSearchViewTimeFilters = z.object({
|
|
3777
|
+
start: z.union([
|
|
3778
|
+
z.string(),
|
|
3779
|
+
z.null()
|
|
3780
|
+
]).optional(),
|
|
3781
|
+
end: z.union([
|
|
3782
|
+
z.string(),
|
|
3783
|
+
z.null()
|
|
3784
|
+
]).optional(),
|
|
3785
|
+
period: z.union([
|
|
3786
|
+
z.string(),
|
|
3787
|
+
z.null()
|
|
3788
|
+
]).optional(),
|
|
3789
|
+
utc: z.union([
|
|
3790
|
+
z.boolean(),
|
|
3791
|
+
z.null()
|
|
3792
|
+
]).optional()
|
|
3793
|
+
});
|
|
3742
3794
|
var zGroupUpdateResponse = z.object({
|
|
3743
3795
|
isUnhandled: z.boolean().optional(),
|
|
3744
3796
|
count: z.string().optional(),
|
|
@@ -8616,6 +8668,208 @@ var zOrganizationIntegrationResponse = z.object({
|
|
|
8616
8668
|
z.null()
|
|
8617
8669
|
])
|
|
8618
8670
|
});
|
|
8671
|
+
var zOrganizationIssueView = z.object({
|
|
8672
|
+
id: z.string(),
|
|
8673
|
+
createdBy: z.union([
|
|
8674
|
+
z.object({
|
|
8675
|
+
identities: z.array(z.object({
|
|
8676
|
+
id: z.string(),
|
|
8677
|
+
name: z.string(),
|
|
8678
|
+
organization: z.object({
|
|
8679
|
+
slug: z.string(),
|
|
8680
|
+
name: z.string()
|
|
8681
|
+
}),
|
|
8682
|
+
provider: z.object({
|
|
8683
|
+
id: z.string(),
|
|
8684
|
+
name: z.string()
|
|
8685
|
+
}),
|
|
8686
|
+
dateVerified: z.string().datetime(),
|
|
8687
|
+
dateSynced: z.string().datetime()
|
|
8688
|
+
})).optional(),
|
|
8689
|
+
avatar: z.object({
|
|
8690
|
+
avatarType: z.string().optional(),
|
|
8691
|
+
avatarUuid: z.union([
|
|
8692
|
+
z.string(),
|
|
8693
|
+
z.null()
|
|
8694
|
+
]).optional(),
|
|
8695
|
+
avatarUrl: z.union([
|
|
8696
|
+
z.string(),
|
|
8697
|
+
z.null()
|
|
8698
|
+
]).optional()
|
|
8699
|
+
}).optional(),
|
|
8700
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
8701
|
+
canReset2fa: z.boolean().optional(),
|
|
8702
|
+
id: z.string(),
|
|
8703
|
+
name: z.string(),
|
|
8704
|
+
username: z.string(),
|
|
8705
|
+
email: z.string(),
|
|
8706
|
+
avatarUrl: z.string(),
|
|
8707
|
+
isActive: z.boolean(),
|
|
8708
|
+
isSuspended: z.boolean(),
|
|
8709
|
+
hasPasswordAuth: z.boolean(),
|
|
8710
|
+
isManaged: z.boolean(),
|
|
8711
|
+
dateJoined: z.string().datetime(),
|
|
8712
|
+
lastLogin: z.union([
|
|
8713
|
+
z.string().datetime(),
|
|
8714
|
+
z.null()
|
|
8715
|
+
]),
|
|
8716
|
+
has2fa: z.boolean(),
|
|
8717
|
+
lastActive: z.union([
|
|
8718
|
+
z.string().datetime(),
|
|
8719
|
+
z.null()
|
|
8720
|
+
]),
|
|
8721
|
+
isSuperuser: z.boolean(),
|
|
8722
|
+
isStaff: z.boolean(),
|
|
8723
|
+
experiments: z.record(z.unknown()),
|
|
8724
|
+
emails: z.array(z.object({
|
|
8725
|
+
id: z.string(),
|
|
8726
|
+
email: z.string(),
|
|
8727
|
+
is_verified: z.boolean()
|
|
8728
|
+
}))
|
|
8729
|
+
}),
|
|
8730
|
+
z.null()
|
|
8731
|
+
]),
|
|
8732
|
+
name: z.string(),
|
|
8733
|
+
query: z.string(),
|
|
8734
|
+
querySort: z.enum([
|
|
8735
|
+
"date",
|
|
8736
|
+
"new",
|
|
8737
|
+
"trends",
|
|
8738
|
+
"freq",
|
|
8739
|
+
"user",
|
|
8740
|
+
"inbox",
|
|
8741
|
+
"recommended"
|
|
8742
|
+
]),
|
|
8743
|
+
projects: z.array(z.number().int()),
|
|
8744
|
+
environments: z.array(z.string()),
|
|
8745
|
+
timeFilters: z.object({
|
|
8746
|
+
start: z.union([
|
|
8747
|
+
z.string(),
|
|
8748
|
+
z.null()
|
|
8749
|
+
]).optional(),
|
|
8750
|
+
end: z.union([
|
|
8751
|
+
z.string(),
|
|
8752
|
+
z.null()
|
|
8753
|
+
]).optional(),
|
|
8754
|
+
period: z.union([
|
|
8755
|
+
z.string(),
|
|
8756
|
+
z.null()
|
|
8757
|
+
]).optional(),
|
|
8758
|
+
utc: z.union([
|
|
8759
|
+
z.boolean(),
|
|
8760
|
+
z.null()
|
|
8761
|
+
]).optional()
|
|
8762
|
+
}),
|
|
8763
|
+
lastVisited: z.union([
|
|
8764
|
+
z.string(),
|
|
8765
|
+
z.null()
|
|
8766
|
+
]),
|
|
8767
|
+
dateCreated: z.string(),
|
|
8768
|
+
dateUpdated: z.string(),
|
|
8769
|
+
starred: z.boolean(),
|
|
8770
|
+
stars: z.number().int()
|
|
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
|
+
}));
|
|
8619
8873
|
var zOrganizationMember = z.object({
|
|
8620
8874
|
externalUsers: z.array(z.object({
|
|
8621
8875
|
externalId: z.string().optional(),
|
|
@@ -15179,6 +15433,269 @@ var zUpdateOrganizationForwardingResponse = z.object({
|
|
|
15179
15433
|
dateAdded: z.string().datetime(),
|
|
15180
15434
|
dateUpdated: z.string().datetime()
|
|
15181
15435
|
});
|
|
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
|
+
var zCreateOrganizationIssueViewData = z.object({
|
|
15559
|
+
body: z.object({
|
|
15560
|
+
name: z.string(),
|
|
15561
|
+
query: z.string(),
|
|
15562
|
+
projects: z.array(z.number().int()),
|
|
15563
|
+
environments: z.array(z.string()),
|
|
15564
|
+
timeFilters: z.object({
|
|
15565
|
+
start: z.union([
|
|
15566
|
+
z.string(),
|
|
15567
|
+
z.null()
|
|
15568
|
+
]).optional(),
|
|
15569
|
+
end: z.union([
|
|
15570
|
+
z.string(),
|
|
15571
|
+
z.null()
|
|
15572
|
+
]).optional(),
|
|
15573
|
+
period: z.union([
|
|
15574
|
+
z.string(),
|
|
15575
|
+
z.null()
|
|
15576
|
+
]).optional(),
|
|
15577
|
+
utc: z.union([
|
|
15578
|
+
z.boolean(),
|
|
15579
|
+
z.null()
|
|
15580
|
+
]).optional()
|
|
15581
|
+
}),
|
|
15582
|
+
querySort: z.enum([
|
|
15583
|
+
"date",
|
|
15584
|
+
"new",
|
|
15585
|
+
"trends",
|
|
15586
|
+
"freq",
|
|
15587
|
+
"user",
|
|
15588
|
+
"inbox",
|
|
15589
|
+
"recommended"
|
|
15590
|
+
]).optional(),
|
|
15591
|
+
starred: z.boolean().optional()
|
|
15592
|
+
}),
|
|
15593
|
+
path: z.object({
|
|
15594
|
+
organization_id_or_slug: z.string()
|
|
15595
|
+
}),
|
|
15596
|
+
query: z.never().optional()
|
|
15597
|
+
});
|
|
15598
|
+
var zCreateOrganizationIssueViewResponse = z.object({
|
|
15599
|
+
id: z.string(),
|
|
15600
|
+
createdBy: z.union([
|
|
15601
|
+
z.object({
|
|
15602
|
+
identities: z.array(z.object({
|
|
15603
|
+
id: z.string(),
|
|
15604
|
+
name: z.string(),
|
|
15605
|
+
organization: z.object({
|
|
15606
|
+
slug: z.string(),
|
|
15607
|
+
name: z.string()
|
|
15608
|
+
}),
|
|
15609
|
+
provider: z.object({
|
|
15610
|
+
id: z.string(),
|
|
15611
|
+
name: z.string()
|
|
15612
|
+
}),
|
|
15613
|
+
dateVerified: z.string().datetime(),
|
|
15614
|
+
dateSynced: z.string().datetime()
|
|
15615
|
+
})).optional(),
|
|
15616
|
+
avatar: z.object({
|
|
15617
|
+
avatarType: z.string().optional(),
|
|
15618
|
+
avatarUuid: z.union([
|
|
15619
|
+
z.string(),
|
|
15620
|
+
z.null()
|
|
15621
|
+
]).optional(),
|
|
15622
|
+
avatarUrl: z.union([
|
|
15623
|
+
z.string(),
|
|
15624
|
+
z.null()
|
|
15625
|
+
]).optional()
|
|
15626
|
+
}).optional(),
|
|
15627
|
+
authenticators: z.array(z.unknown()).optional(),
|
|
15628
|
+
canReset2fa: z.boolean().optional(),
|
|
15629
|
+
id: z.string(),
|
|
15630
|
+
name: z.string(),
|
|
15631
|
+
username: z.string(),
|
|
15632
|
+
email: z.string(),
|
|
15633
|
+
avatarUrl: z.string(),
|
|
15634
|
+
isActive: z.boolean(),
|
|
15635
|
+
isSuspended: z.boolean(),
|
|
15636
|
+
hasPasswordAuth: z.boolean(),
|
|
15637
|
+
isManaged: z.boolean(),
|
|
15638
|
+
dateJoined: z.string().datetime(),
|
|
15639
|
+
lastLogin: z.union([
|
|
15640
|
+
z.string().datetime(),
|
|
15641
|
+
z.null()
|
|
15642
|
+
]),
|
|
15643
|
+
has2fa: z.boolean(),
|
|
15644
|
+
lastActive: z.union([
|
|
15645
|
+
z.string().datetime(),
|
|
15646
|
+
z.null()
|
|
15647
|
+
]),
|
|
15648
|
+
isSuperuser: z.boolean(),
|
|
15649
|
+
isStaff: z.boolean(),
|
|
15650
|
+
experiments: z.record(z.unknown()),
|
|
15651
|
+
emails: z.array(z.object({
|
|
15652
|
+
id: z.string(),
|
|
15653
|
+
email: z.string(),
|
|
15654
|
+
is_verified: z.boolean()
|
|
15655
|
+
}))
|
|
15656
|
+
}),
|
|
15657
|
+
z.null()
|
|
15658
|
+
]),
|
|
15659
|
+
name: z.string(),
|
|
15660
|
+
query: z.string(),
|
|
15661
|
+
querySort: z.enum([
|
|
15662
|
+
"date",
|
|
15663
|
+
"new",
|
|
15664
|
+
"trends",
|
|
15665
|
+
"freq",
|
|
15666
|
+
"user",
|
|
15667
|
+
"inbox",
|
|
15668
|
+
"recommended"
|
|
15669
|
+
]),
|
|
15670
|
+
projects: z.array(z.number().int()),
|
|
15671
|
+
environments: z.array(z.string()),
|
|
15672
|
+
timeFilters: z.object({
|
|
15673
|
+
start: z.union([
|
|
15674
|
+
z.string(),
|
|
15675
|
+
z.null()
|
|
15676
|
+
]).optional(),
|
|
15677
|
+
end: z.union([
|
|
15678
|
+
z.string(),
|
|
15679
|
+
z.null()
|
|
15680
|
+
]).optional(),
|
|
15681
|
+
period: z.union([
|
|
15682
|
+
z.string(),
|
|
15683
|
+
z.null()
|
|
15684
|
+
]).optional(),
|
|
15685
|
+
utc: z.union([
|
|
15686
|
+
z.boolean(),
|
|
15687
|
+
z.null()
|
|
15688
|
+
]).optional()
|
|
15689
|
+
}),
|
|
15690
|
+
lastVisited: z.union([
|
|
15691
|
+
z.string(),
|
|
15692
|
+
z.null()
|
|
15693
|
+
]),
|
|
15694
|
+
dateCreated: z.string(),
|
|
15695
|
+
dateUpdated: z.string(),
|
|
15696
|
+
starred: z.boolean(),
|
|
15697
|
+
stars: z.number().int()
|
|
15698
|
+
});
|
|
15182
15699
|
var zListOrganizationIntegrationsData = z.object({
|
|
15183
15700
|
body: z.never().optional(),
|
|
15184
15701
|
path: z.object({
|
|
@@ -31865,6 +32382,8 @@ export {
|
|
|
31865
32382
|
zOrganizationMemberRequestWritable,
|
|
31866
32383
|
zOrganizationMemberRequest,
|
|
31867
32384
|
zOrganizationMember,
|
|
32385
|
+
zOrganizationIssueViewList,
|
|
32386
|
+
zOrganizationIssueView,
|
|
31868
32387
|
zOrganizationIntegrationResponse,
|
|
31869
32388
|
zOrganizationGroupIndexPutResponse,
|
|
31870
32389
|
zOrganizationGroupIndexGetResponse,
|
|
@@ -32011,6 +32530,8 @@ export {
|
|
|
32011
32530
|
zListOrganizationMemberResponse,
|
|
32012
32531
|
zListOrganizationIssuesResponse,
|
|
32013
32532
|
zListOrganizationIssuesData,
|
|
32533
|
+
zListOrganizationIssueViewsResponse,
|
|
32534
|
+
zListOrganizationIssueViewsData,
|
|
32014
32535
|
zListOrganizationIssueTagValuesResponse,
|
|
32015
32536
|
zListOrganizationIssueTagValuesData,
|
|
32016
32537
|
zListOrganizationIssueHashesResponse,
|
|
@@ -32058,6 +32579,8 @@ export {
|
|
|
32058
32579
|
zInCommitValidator,
|
|
32059
32580
|
zGroupValidator,
|
|
32060
32581
|
zGroupUpdateResponse,
|
|
32582
|
+
zGroupSearchViewTimeFilters,
|
|
32583
|
+
zGroupSearchViewPostValidator,
|
|
32061
32584
|
zGroupHashesResponse,
|
|
32062
32585
|
zGroupExternalIssueResponse,
|
|
32063
32586
|
zGroupEventsResponseDict,
|
|
@@ -32296,6 +32819,8 @@ export {
|
|
|
32296
32819
|
zCreateOrganizationNotificationsActionData,
|
|
32297
32820
|
zCreateOrganizationMonitorResponse,
|
|
32298
32821
|
zCreateOrganizationMonitorData,
|
|
32822
|
+
zCreateOrganizationIssueViewResponse,
|
|
32823
|
+
zCreateOrganizationIssueViewData,
|
|
32299
32824
|
zCreateOrganizationIssueIntegrationResponse,
|
|
32300
32825
|
zCreateOrganizationIssueIntegrationData,
|
|
32301
32826
|
zCreateOrganizationForwardingResponse,
|