@sentry/api 0.153.0 → 0.155.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/index.d.ts +2 -2
- package/dist/index.js +12 -0
- package/dist/pagination.gen.d.ts +16 -1
- package/dist/sdk.gen.d.ts +6 -1
- package/dist/types.gen.d.ts +94 -10
- package/dist/zod.gen.d.ts +185 -58
- package/dist/zod.js +64 -4
- package/package.json +1 -1
package/dist/zod.js
CHANGED
|
@@ -4742,6 +4742,20 @@ var zListTeamProjectResponse = z.array(z.object({
|
|
|
4742
4742
|
z.null()
|
|
4743
4743
|
])
|
|
4744
4744
|
}));
|
|
4745
|
+
var zListTraceItemAttributesResponse = z.array(z.object({
|
|
4746
|
+
key: z.string(),
|
|
4747
|
+
name: z.string(),
|
|
4748
|
+
secondaryAliases: z.array(z.string()).optional(),
|
|
4749
|
+
attributeSource: z.object({
|
|
4750
|
+
source_type: z.enum(["sentry", "user"]),
|
|
4751
|
+
is_transformed_alias: z.boolean().optional()
|
|
4752
|
+
}),
|
|
4753
|
+
attributeType: z.enum([
|
|
4754
|
+
"string",
|
|
4755
|
+
"number",
|
|
4756
|
+
"boolean"
|
|
4757
|
+
])
|
|
4758
|
+
}));
|
|
4745
4759
|
var zListWorkflow = z.array(z.object({
|
|
4746
4760
|
id: z.string(),
|
|
4747
4761
|
name: z.string(),
|
|
@@ -6000,7 +6014,6 @@ var zOrganizationDetailsPut = z.object({
|
|
|
6000
6014
|
name: z.string().max(64).optional(),
|
|
6001
6015
|
isEarlyAdopter: z.boolean().optional(),
|
|
6002
6016
|
hideAiFeatures: z.boolean().optional(),
|
|
6003
|
-
codecovAccess: z.boolean().optional(),
|
|
6004
6017
|
defaultRole: z.enum([
|
|
6005
6018
|
"member",
|
|
6006
6019
|
"admin",
|
|
@@ -7010,7 +7023,6 @@ var zOrganizationWithProjectsAndTeams = z.object({
|
|
|
7010
7023
|
lastModified: z.string().datetime().optional()
|
|
7011
7024
|
})),
|
|
7012
7025
|
pendingAccessRequests: z.number().int(),
|
|
7013
|
-
codecovAccess: z.boolean(),
|
|
7014
7026
|
hideAiFeatures: z.boolean(),
|
|
7015
7027
|
aggregatedDataConsent: z.boolean(),
|
|
7016
7028
|
isDynamicallySampled: z.boolean(),
|
|
@@ -9659,7 +9671,6 @@ var zUpdateAnOrganizationData = z.object({
|
|
|
9659
9671
|
name: z.string().max(64).optional(),
|
|
9660
9672
|
isEarlyAdopter: z.boolean().optional(),
|
|
9661
9673
|
hideAiFeatures: z.boolean().optional(),
|
|
9662
|
-
codecovAccess: z.boolean().optional(),
|
|
9663
9674
|
defaultRole: z.enum([
|
|
9664
9675
|
"member",
|
|
9665
9676
|
"admin",
|
|
@@ -9828,7 +9839,6 @@ var zUpdateAnOrganizationResponse = z.object({
|
|
|
9828
9839
|
lastModified: z.string().datetime().optional()
|
|
9829
9840
|
})),
|
|
9830
9841
|
pendingAccessRequests: z.number().int(),
|
|
9831
|
-
codecovAccess: z.boolean(),
|
|
9832
9842
|
hideAiFeatures: z.boolean(),
|
|
9833
9843
|
aggregatedDataConsent: z.boolean(),
|
|
9834
9844
|
isDynamicallySampled: z.boolean(),
|
|
@@ -18808,6 +18818,53 @@ var zCreateANewTeamResponse = z.object({
|
|
|
18808
18818
|
status: z.string()
|
|
18809
18819
|
})).optional()
|
|
18810
18820
|
});
|
|
18821
|
+
var zListTraceItemAttributesData = z.object({
|
|
18822
|
+
body: z.never().optional(),
|
|
18823
|
+
path: z.object({
|
|
18824
|
+
organization_id_or_slug: z.string()
|
|
18825
|
+
}),
|
|
18826
|
+
query: z.object({
|
|
18827
|
+
statsPeriod: z.string().optional(),
|
|
18828
|
+
start: z.string().datetime().optional(),
|
|
18829
|
+
end: z.string().datetime().optional(),
|
|
18830
|
+
dataset: z.enum([
|
|
18831
|
+
"logs",
|
|
18832
|
+
"preprod",
|
|
18833
|
+
"processing_errors",
|
|
18834
|
+
"spans",
|
|
18835
|
+
"tracemetrics"
|
|
18836
|
+
]).optional(),
|
|
18837
|
+
itemType: z.enum([
|
|
18838
|
+
"logs",
|
|
18839
|
+
"preprod",
|
|
18840
|
+
"processing_errors",
|
|
18841
|
+
"spans",
|
|
18842
|
+
"tracemetrics"
|
|
18843
|
+
]).optional(),
|
|
18844
|
+
attributeType: z.array(z.enum([
|
|
18845
|
+
"boolean",
|
|
18846
|
+
"number",
|
|
18847
|
+
"string"
|
|
18848
|
+
])).optional(),
|
|
18849
|
+
substringMatch: z.string().optional(),
|
|
18850
|
+
query: z.string().optional(),
|
|
18851
|
+
cursor: z.string().min(1).optional()
|
|
18852
|
+
}).optional()
|
|
18853
|
+
});
|
|
18854
|
+
var zListTraceItemAttributesResponse2 = z.array(z.object({
|
|
18855
|
+
key: z.string(),
|
|
18856
|
+
name: z.string(),
|
|
18857
|
+
secondaryAliases: z.array(z.string()).optional(),
|
|
18858
|
+
attributeSource: z.object({
|
|
18859
|
+
source_type: z.enum(["sentry", "user"]),
|
|
18860
|
+
is_transformed_alias: z.boolean().optional()
|
|
18861
|
+
}),
|
|
18862
|
+
attributeType: z.enum([
|
|
18863
|
+
"string",
|
|
18864
|
+
"number",
|
|
18865
|
+
"boolean"
|
|
18866
|
+
])
|
|
18867
|
+
}));
|
|
18811
18868
|
var zListAuserSTeamsForAnOrganizationData = z.object({
|
|
18812
18869
|
body: z.never().optional(),
|
|
18813
18870
|
path: z.object({
|
|
@@ -26559,6 +26616,9 @@ export {
|
|
|
26559
26616
|
zListWorkflow,
|
|
26560
26617
|
zListUsersWhoHaveViewedAReplayResponse,
|
|
26561
26618
|
zListUsersWhoHaveViewedAReplayData,
|
|
26619
|
+
zListTraceItemAttributesResponse2,
|
|
26620
|
+
zListTraceItemAttributesResponse,
|
|
26621
|
+
zListTraceItemAttributesData,
|
|
26562
26622
|
zListTeamProjectResponse,
|
|
26563
26623
|
zListSpikeProtectionNotificationsResponse,
|
|
26564
26624
|
zListSpikeProtectionNotificationsData,
|