@sentry/api 0.225.0 → 0.226.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 +43 -43
- package/dist/pagination.gen.d.ts +28 -28
- package/dist/sdk.gen.d.ts +170 -16
- package/dist/types.gen.d.ts +60 -60
- package/dist/zod.gen.d.ts +30 -30
- package/dist/zod.js +61 -61
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -37702,7 +37702,7 @@ export declare const zListOrganizationMembersResponse: z.ZodArray<z.ZodObject<{
|
|
|
37702
37702
|
teamId?: string | undefined;
|
|
37703
37703
|
}[] | undefined;
|
|
37704
37704
|
}>, "many">;
|
|
37705
|
-
export declare const
|
|
37705
|
+
export declare const zAddOrganizationMemberData: z.ZodObject<{
|
|
37706
37706
|
body: z.ZodObject<{
|
|
37707
37707
|
email: z.ZodString;
|
|
37708
37708
|
orgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "owner", "admin"]>>;
|
|
@@ -37755,7 +37755,7 @@ export declare const zCreateOrganizationMemberData: z.ZodObject<{
|
|
|
37755
37755
|
};
|
|
37756
37756
|
query?: undefined;
|
|
37757
37757
|
}>;
|
|
37758
|
-
export declare const
|
|
37758
|
+
export declare const zAddOrganizationMemberResponse: z.ZodObject<{
|
|
37759
37759
|
externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
37760
37760
|
externalId: z.ZodOptional<z.ZodString>;
|
|
37761
37761
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -39401,7 +39401,7 @@ export declare const zDeleteOrganizationMemberTeamResponse: z.ZodObject<{
|
|
|
39401
39401
|
avatarUrl?: string | null | undefined;
|
|
39402
39402
|
};
|
|
39403
39403
|
}>;
|
|
39404
|
-
export declare const
|
|
39404
|
+
export declare const zAddOrganizationMemberTeamData: z.ZodObject<{
|
|
39405
39405
|
body: z.ZodOptional<z.ZodNever>;
|
|
39406
39406
|
path: z.ZodObject<{
|
|
39407
39407
|
organization_id_or_slug: z.ZodString;
|
|
@@ -39434,7 +39434,7 @@ export declare const zCreateOrganizationMemberTeamData: z.ZodObject<{
|
|
|
39434
39434
|
query?: undefined;
|
|
39435
39435
|
body?: undefined;
|
|
39436
39436
|
}>;
|
|
39437
|
-
export declare const
|
|
39437
|
+
export declare const zAddOrganizationMemberTeamResponse: z.ZodUnion<[z.ZodObject<{
|
|
39438
39438
|
id: z.ZodString;
|
|
39439
39439
|
slug: z.ZodString;
|
|
39440
39440
|
name: z.ZodString;
|
|
@@ -44230,7 +44230,7 @@ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
|
|
|
44230
44230
|
body?: undefined;
|
|
44231
44231
|
}>;
|
|
44232
44232
|
export declare const zListOrganizationProfilingChunksResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
44233
|
-
export declare const
|
|
44233
|
+
export declare const zGetOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
44234
44234
|
body: z.ZodOptional<z.ZodNever>;
|
|
44235
44235
|
path: z.ZodObject<{
|
|
44236
44236
|
organization_id_or_slug: z.ZodString;
|
|
@@ -44303,7 +44303,7 @@ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
44303
44303
|
} | undefined;
|
|
44304
44304
|
body?: undefined;
|
|
44305
44305
|
}>;
|
|
44306
|
-
export declare const
|
|
44306
|
+
export declare const zGetOrganizationProfilingFlamegraphResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
44307
44307
|
export declare const zListOrganizationProjectKeysData: z.ZodObject<{
|
|
44308
44308
|
body: z.ZodOptional<z.ZodNever>;
|
|
44309
44309
|
path: z.ZodObject<{
|
|
@@ -49343,7 +49343,7 @@ export declare const zListOrganizationScimV2GroupsResponse: z.ZodObject<{
|
|
|
49343
49343
|
}[] | undefined;
|
|
49344
49344
|
}[];
|
|
49345
49345
|
}>;
|
|
49346
|
-
export declare const
|
|
49346
|
+
export declare const zProvisionOrganizationScimV2GroupData: z.ZodObject<{
|
|
49347
49347
|
body: z.ZodObject<{
|
|
49348
49348
|
displayName: z.ZodString;
|
|
49349
49349
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -49376,7 +49376,7 @@ export declare const zCreateOrganizationScimV2GroupData: z.ZodObject<{
|
|
|
49376
49376
|
};
|
|
49377
49377
|
query?: undefined;
|
|
49378
49378
|
}>;
|
|
49379
|
-
export declare const
|
|
49379
|
+
export declare const zProvisionOrganizationScimV2GroupResponse: z.ZodObject<{
|
|
49380
49380
|
schemas: z.ZodArray<z.ZodString, "many">;
|
|
49381
49381
|
id: z.ZodString;
|
|
49382
49382
|
displayName: z.ZodString;
|
|
@@ -49769,7 +49769,7 @@ export declare const zListOrganizationScimV2UsersResponse: z.ZodObject<{
|
|
|
49769
49769
|
active?: boolean | undefined;
|
|
49770
49770
|
}[];
|
|
49771
49771
|
}>;
|
|
49772
|
-
export declare const
|
|
49772
|
+
export declare const zProvisionOrganizationScimV2UserData: z.ZodObject<{
|
|
49773
49773
|
body: z.ZodObject<{
|
|
49774
49774
|
userName: z.ZodString;
|
|
49775
49775
|
sentryOrgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "admin"]>>;
|
|
@@ -49811,7 +49811,7 @@ export declare const zCreateOrganizationScimV2UserData: z.ZodObject<{
|
|
|
49811
49811
|
* Conforming to the SCIM RFC, this represents a Sentry Org Member
|
|
49812
49812
|
* as a SCIM user object.
|
|
49813
49813
|
*/
|
|
49814
|
-
export declare const
|
|
49814
|
+
export declare const zProvisionOrganizationScimV2UserResponse: z.ZodObject<{
|
|
49815
49815
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
49816
49816
|
schemas: z.ZodArray<z.ZodString, "many">;
|
|
49817
49817
|
id: z.ZodString;
|
|
@@ -50232,7 +50232,7 @@ export declare const zListOrganizationSentryAppsResponse: z.ZodArray<z.ZodObject
|
|
|
50232
50232
|
datePublished?: string | undefined;
|
|
50233
50233
|
clientId?: string | undefined;
|
|
50234
50234
|
}>, "many">;
|
|
50235
|
-
export declare const
|
|
50235
|
+
export declare const zGetOrganizationSessionsData: z.ZodObject<{
|
|
50236
50236
|
body: z.ZodOptional<z.ZodNever>;
|
|
50237
50237
|
path: z.ZodObject<{
|
|
50238
50238
|
organization_id_or_slug: z.ZodString;
|
|
@@ -50325,7 +50325,7 @@ export declare const zListOrganizationSessionsData: z.ZodObject<{
|
|
|
50325
50325
|
};
|
|
50326
50326
|
body?: undefined;
|
|
50327
50327
|
}>;
|
|
50328
|
-
export declare const
|
|
50328
|
+
export declare const zGetOrganizationSessionsResponse: z.ZodObject<{
|
|
50329
50329
|
start: z.ZodString;
|
|
50330
50330
|
end: z.ZodString;
|
|
50331
50331
|
intervals: z.ZodArray<z.ZodString, "many">;
|
|
@@ -51280,7 +51280,7 @@ export declare const zGetOrganizationShortidResponse: z.ZodObject<{
|
|
|
51280
51280
|
lastSeen?: string | null | undefined;
|
|
51281
51281
|
};
|
|
51282
51282
|
}>;
|
|
51283
|
-
export declare const
|
|
51283
|
+
export declare const zGetOrganizationStatsSummaryData: z.ZodObject<{
|
|
51284
51284
|
body: z.ZodOptional<z.ZodNever>;
|
|
51285
51285
|
path: z.ZodObject<{
|
|
51286
51286
|
organization_id_or_slug: z.ZodString;
|
|
@@ -51358,7 +51358,7 @@ export declare const zListOrganizationStatsSummaryData: z.ZodObject<{
|
|
|
51358
51358
|
};
|
|
51359
51359
|
body?: undefined;
|
|
51360
51360
|
}>;
|
|
51361
|
-
export declare const
|
|
51361
|
+
export declare const zGetOrganizationStatsSummaryResponse: z.ZodObject<{
|
|
51362
51362
|
start: z.ZodString;
|
|
51363
51363
|
end: z.ZodString;
|
|
51364
51364
|
projects: z.ZodArray<z.ZodObject<{
|
|
@@ -52806,7 +52806,7 @@ export declare const zCreateOrganizationTeamResponse: z.ZodObject<{
|
|
|
52806
52806
|
teamId?: string | undefined;
|
|
52807
52807
|
}[] | undefined;
|
|
52808
52808
|
}>;
|
|
52809
|
-
export declare const
|
|
52809
|
+
export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
52810
52810
|
body: z.ZodOptional<z.ZodNever>;
|
|
52811
52811
|
path: z.ZodObject<{
|
|
52812
52812
|
organization_id_or_slug: z.ZodString;
|
|
@@ -52879,7 +52879,7 @@ export declare const zListOrganizationTraceItemsAttributesData: z.ZodObject<{
|
|
|
52879
52879
|
} | undefined;
|
|
52880
52880
|
body?: undefined;
|
|
52881
52881
|
}>;
|
|
52882
|
-
export declare const
|
|
52882
|
+
export declare const zListOrganizationTraceItemAttributesResponse: z.ZodArray<z.ZodObject<{
|
|
52883
52883
|
key: z.ZodString;
|
|
52884
52884
|
name: z.ZodString;
|
|
52885
52885
|
secondaryAliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -58446,7 +58446,7 @@ export declare const zGetProjectEventAttachmentResponse: z.ZodObject<{
|
|
|
58446
58446
|
size: number;
|
|
58447
58447
|
sha1: string | null;
|
|
58448
58448
|
}>;
|
|
58449
|
-
export declare const
|
|
58449
|
+
export declare const zGetProjectEventSourceMapDebugData: z.ZodObject<{
|
|
58450
58450
|
body: z.ZodOptional<z.ZodNever>;
|
|
58451
58451
|
path: z.ZodObject<{
|
|
58452
58452
|
organization_id_or_slug: z.ZodString;
|
|
@@ -58479,7 +58479,7 @@ export declare const zListProjectEventSourceMapDebugData: z.ZodObject<{
|
|
|
58479
58479
|
query?: undefined;
|
|
58480
58480
|
body?: undefined;
|
|
58481
58481
|
}>;
|
|
58482
|
-
export declare const
|
|
58482
|
+
export declare const zGetProjectEventSourceMapDebugResponse: z.ZodObject<{
|
|
58483
58483
|
dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
58484
58484
|
release: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
58485
58485
|
exceptions: z.ZodArray<z.ZodObject<{
|
|
@@ -58922,7 +58922,7 @@ export declare const zListProjectEventSourceMapDebugResponse: z.ZodObject<{
|
|
|
58922
58922
|
sdk_debug_id_support: "full" | "not-supported" | "unofficial-sdk" | "needs-upgrade";
|
|
58923
58923
|
has_scraping_data: boolean;
|
|
58924
58924
|
}>;
|
|
58925
|
-
export declare const
|
|
58925
|
+
export declare const zListProjectDebugFilesData: z.ZodObject<{
|
|
58926
58926
|
body: z.ZodOptional<z.ZodNever>;
|
|
58927
58927
|
path: z.ZodObject<{
|
|
58928
58928
|
organization_id_or_slug: z.ZodString;
|
|
@@ -58980,7 +58980,7 @@ export declare const zListProjectFilesDsymsData: z.ZodObject<{
|
|
|
58980
58980
|
} | undefined;
|
|
58981
58981
|
body?: undefined;
|
|
58982
58982
|
}>;
|
|
58983
|
-
export declare const
|
|
58983
|
+
export declare const zListProjectDebugFilesResponse2: z.ZodArray<z.ZodObject<{
|
|
58984
58984
|
id: z.ZodString;
|
|
58985
58985
|
uuid: z.ZodString;
|
|
58986
58986
|
debugId: z.ZodString;
|
|
@@ -64150,7 +64150,7 @@ export declare const zGetProjectReplayDeletionJobResponse: z.ZodObject<{
|
|
|
64150
64150
|
countDeleted: number;
|
|
64151
64151
|
};
|
|
64152
64152
|
}>;
|
|
64153
|
-
export declare const
|
|
64153
|
+
export declare const zLinkProjectRepositoryData: z.ZodObject<{
|
|
64154
64154
|
body: z.ZodObject<{
|
|
64155
64155
|
repositoryId: z.ZodNumber;
|
|
64156
64156
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64188,7 +64188,7 @@ export declare const zCreateProjectRepoData: z.ZodObject<{
|
|
|
64188
64188
|
};
|
|
64189
64189
|
query?: undefined;
|
|
64190
64190
|
}>;
|
|
64191
|
-
export declare const
|
|
64191
|
+
export declare const zLinkProjectRepositoryResponse: z.ZodObject<{
|
|
64192
64192
|
id: z.ZodString;
|
|
64193
64193
|
projectId: z.ZodString;
|
|
64194
64194
|
repositoryId: z.ZodString;
|
|
@@ -64261,7 +64261,7 @@ export declare const zListProjectStatsData: z.ZodObject<{
|
|
|
64261
64261
|
body?: undefined;
|
|
64262
64262
|
}>;
|
|
64263
64263
|
export declare const zListProjectStatsResponse: z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">;
|
|
64264
|
-
export declare const
|
|
64264
|
+
export declare const zDeleteProjectSymbolSourceData: z.ZodObject<{
|
|
64265
64265
|
body: z.ZodOptional<z.ZodNever>;
|
|
64266
64266
|
path: z.ZodObject<{
|
|
64267
64267
|
organization_id_or_slug: z.ZodString;
|
|
@@ -64302,7 +64302,7 @@ export declare const zDeleteProjectSymbolSourcesData: z.ZodObject<{
|
|
|
64302
64302
|
/**
|
|
64303
64303
|
* No Content
|
|
64304
64304
|
*/
|
|
64305
|
-
export declare const
|
|
64305
|
+
export declare const zDeleteProjectSymbolSourceResponse: z.ZodVoid;
|
|
64306
64306
|
export declare const zListProjectSymbolSourcesData: z.ZodObject<{
|
|
64307
64307
|
body: z.ZodOptional<z.ZodNever>;
|
|
64308
64308
|
path: z.ZodObject<{
|
|
@@ -64624,7 +64624,7 @@ export declare const zListProjectSymbolSourcesResponse: z.ZodArray<z.ZodUnion<[z
|
|
|
64624
64624
|
appName: string;
|
|
64625
64625
|
bundleId: string;
|
|
64626
64626
|
}>]>, "many">;
|
|
64627
|
-
export declare const
|
|
64627
|
+
export declare const zAddProjectSymbolSourceData: z.ZodObject<{
|
|
64628
64628
|
body: z.ZodObject<{
|
|
64629
64629
|
type: z.ZodEnum<["http", "gcs", "s3"]>;
|
|
64630
64630
|
name: z.ZodString;
|
|
@@ -64781,7 +64781,7 @@ export declare const zCreateProjectSymbolSourceData: z.ZodObject<{
|
|
|
64781
64781
|
};
|
|
64782
64782
|
query?: undefined;
|
|
64783
64783
|
}>;
|
|
64784
|
-
export declare const
|
|
64784
|
+
export declare const zAddProjectSymbolSourceResponse: z.ZodUnion<[z.ZodObject<{
|
|
64785
64785
|
type: z.ZodEnum<["http"]>;
|
|
64786
64786
|
url: z.ZodString;
|
|
64787
64787
|
username: z.ZodOptional<z.ZodString>;
|
|
@@ -65064,7 +65064,7 @@ export declare const zCreateProjectSymbolSourceResponse: z.ZodUnion<[z.ZodObject
|
|
|
65064
65064
|
appName: string;
|
|
65065
65065
|
bundleId: string;
|
|
65066
65066
|
}>]>;
|
|
65067
|
-
export declare const
|
|
65067
|
+
export declare const zUpdateProjectSymbolSourceData: z.ZodObject<{
|
|
65068
65068
|
body: z.ZodObject<{
|
|
65069
65069
|
type: z.ZodEnum<["http", "gcs", "s3"]>;
|
|
65070
65070
|
name: z.ZodString;
|
|
@@ -65231,7 +65231,7 @@ export declare const zUpdateProjectSymbolSourcesData: z.ZodObject<{
|
|
|
65231
65231
|
project_id_or_slug: string;
|
|
65232
65232
|
};
|
|
65233
65233
|
}>;
|
|
65234
|
-
export declare const
|
|
65234
|
+
export declare const zUpdateProjectSymbolSourceResponse: z.ZodUnion<[z.ZodObject<{
|
|
65235
65235
|
type: z.ZodEnum<["http"]>;
|
|
65236
65236
|
url: z.ZodString;
|
|
65237
65237
|
username: z.ZodOptional<z.ZodString>;
|
|
@@ -65835,7 +65835,7 @@ export declare const zDeleteProjectTeamResponse: z.ZodObject<{
|
|
|
65835
65835
|
transactionStats?: unknown;
|
|
65836
65836
|
sessionStats?: unknown;
|
|
65837
65837
|
}>;
|
|
65838
|
-
export declare const
|
|
65838
|
+
export declare const zAddProjectTeamData: z.ZodObject<{
|
|
65839
65839
|
body: z.ZodOptional<z.ZodNever>;
|
|
65840
65840
|
path: z.ZodObject<{
|
|
65841
65841
|
organization_id_or_slug: z.ZodString;
|
|
@@ -65868,7 +65868,7 @@ export declare const zCreateProjectTeamData: z.ZodObject<{
|
|
|
65868
65868
|
query?: undefined;
|
|
65869
65869
|
body?: undefined;
|
|
65870
65870
|
}>;
|
|
65871
|
-
export declare const
|
|
65871
|
+
export declare const zAddProjectTeamResponse: z.ZodObject<{
|
|
65872
65872
|
stats: z.ZodOptional<z.ZodUnknown>;
|
|
65873
65873
|
transactionStats: z.ZodOptional<z.ZodUnknown>;
|
|
65874
65874
|
sessionStats: z.ZodOptional<z.ZodUnknown>;
|
package/dist/zod.js
CHANGED
|
@@ -13806,7 +13806,7 @@ var zListOrganizationMembersResponse = z.array(z.object({
|
|
|
13806
13806
|
z.null()
|
|
13807
13807
|
])
|
|
13808
13808
|
}));
|
|
13809
|
-
var
|
|
13809
|
+
var zAddOrganizationMemberData = z.object({
|
|
13810
13810
|
body: z.object({
|
|
13811
13811
|
email: z.string().email().max(75),
|
|
13812
13812
|
orgRole: z.enum([
|
|
@@ -13828,7 +13828,7 @@ var zCreateOrganizationMemberData = z.object({
|
|
|
13828
13828
|
}),
|
|
13829
13829
|
query: z.never().optional()
|
|
13830
13830
|
});
|
|
13831
|
-
var
|
|
13831
|
+
var zAddOrganizationMemberResponse = z.object({
|
|
13832
13832
|
externalUsers: z.array(z.object({
|
|
13833
13833
|
externalId: z.string().optional(),
|
|
13834
13834
|
userId: z.string().optional(),
|
|
@@ -14249,7 +14249,7 @@ var zDeleteOrganizationMemberTeamResponse = z.object({
|
|
|
14249
14249
|
]).optional()
|
|
14250
14250
|
})
|
|
14251
14251
|
});
|
|
14252
|
-
var
|
|
14252
|
+
var zAddOrganizationMemberTeamData = z.object({
|
|
14253
14253
|
body: z.never().optional(),
|
|
14254
14254
|
path: z.object({
|
|
14255
14255
|
organization_id_or_slug: z.string(),
|
|
@@ -14258,7 +14258,7 @@ var zCreateOrganizationMemberTeamData = z.object({
|
|
|
14258
14258
|
}),
|
|
14259
14259
|
query: z.never().optional()
|
|
14260
14260
|
});
|
|
14261
|
-
var
|
|
14261
|
+
var zAddOrganizationMemberTeamResponse = z.union([
|
|
14262
14262
|
z.object({
|
|
14263
14263
|
id: z.string(),
|
|
14264
14264
|
slug: z.string(),
|
|
@@ -17248,7 +17248,7 @@ var zListOrganizationProfilingChunksData = z.object({
|
|
|
17248
17248
|
})
|
|
17249
17249
|
});
|
|
17250
17250
|
var zListOrganizationProfilingChunksResponse = z.record(z.unknown());
|
|
17251
|
-
var
|
|
17251
|
+
var zGetOrganizationProfilingFlamegraphData = z.object({
|
|
17252
17252
|
body: z.never().optional(),
|
|
17253
17253
|
path: z.object({
|
|
17254
17254
|
organization_id_or_slug: z.string()
|
|
@@ -17270,7 +17270,7 @@ var zListOrganizationProfilingFlamegraphData = z.object({
|
|
|
17270
17270
|
expand: z.array(z.enum(["metrics"])).optional()
|
|
17271
17271
|
}).optional()
|
|
17272
17272
|
});
|
|
17273
|
-
var
|
|
17273
|
+
var zGetOrganizationProfilingFlamegraphResponse = z.record(z.unknown());
|
|
17274
17274
|
var zListOrganizationProjectKeysData = z.object({
|
|
17275
17275
|
body: z.never().optional(),
|
|
17276
17276
|
path: z.object({
|
|
@@ -19128,7 +19128,7 @@ var zListOrganizationScimV2GroupsResponse = z.object({
|
|
|
19128
19128
|
})).optional()
|
|
19129
19129
|
}))
|
|
19130
19130
|
});
|
|
19131
|
-
var
|
|
19131
|
+
var zProvisionOrganizationScimV2GroupData = z.object({
|
|
19132
19132
|
body: z.object({
|
|
19133
19133
|
displayName: z.string()
|
|
19134
19134
|
}),
|
|
@@ -19137,7 +19137,7 @@ var zCreateOrganizationScimV2GroupData = z.object({
|
|
|
19137
19137
|
}),
|
|
19138
19138
|
query: z.never().optional()
|
|
19139
19139
|
});
|
|
19140
|
-
var
|
|
19140
|
+
var zProvisionOrganizationScimV2GroupResponse = z.object({
|
|
19141
19141
|
schemas: z.array(z.string()),
|
|
19142
19142
|
id: z.string(),
|
|
19143
19143
|
displayName: z.string(),
|
|
@@ -19230,7 +19230,7 @@ var zListOrganizationScimV2UsersResponse = z.object({
|
|
|
19230
19230
|
sentryOrgRole: z.string()
|
|
19231
19231
|
}))
|
|
19232
19232
|
});
|
|
19233
|
-
var
|
|
19233
|
+
var zProvisionOrganizationScimV2UserData = z.object({
|
|
19234
19234
|
body: z.object({
|
|
19235
19235
|
userName: z.string().email(),
|
|
19236
19236
|
sentryOrgRole: z.enum([
|
|
@@ -19245,7 +19245,7 @@ var zCreateOrganizationScimV2UserData = z.object({
|
|
|
19245
19245
|
}),
|
|
19246
19246
|
query: z.never().optional()
|
|
19247
19247
|
});
|
|
19248
|
-
var
|
|
19248
|
+
var zProvisionOrganizationScimV2UserResponse = z.object({
|
|
19249
19249
|
active: z.boolean().optional(),
|
|
19250
19250
|
schemas: z.array(z.string()),
|
|
19251
19251
|
id: z.string(),
|
|
@@ -19374,7 +19374,7 @@ var zListOrganizationSentryAppsResponse = z.array(z.object({
|
|
|
19374
19374
|
slug: z.string()
|
|
19375
19375
|
}).optional()
|
|
19376
19376
|
}));
|
|
19377
|
-
var
|
|
19377
|
+
var zGetOrganizationSessionsData = z.object({
|
|
19378
19378
|
body: z.never().optional(),
|
|
19379
19379
|
path: z.object({
|
|
19380
19380
|
organization_id_or_slug: z.string()
|
|
@@ -19395,7 +19395,7 @@ var zListOrganizationSessionsData = z.object({
|
|
|
19395
19395
|
query: z.string().optional()
|
|
19396
19396
|
})
|
|
19397
19397
|
});
|
|
19398
|
-
var
|
|
19398
|
+
var zGetOrganizationSessionsResponse = z.object({
|
|
19399
19399
|
start: z.string().datetime(),
|
|
19400
19400
|
end: z.string().datetime(),
|
|
19401
19401
|
intervals: z.array(z.string()),
|
|
@@ -19605,7 +19605,7 @@ var zGetOrganizationShortidResponse = z.object({
|
|
|
19605
19605
|
}),
|
|
19606
19606
|
shortId: z.string()
|
|
19607
19607
|
});
|
|
19608
|
-
var
|
|
19608
|
+
var zGetOrganizationStatsSummaryData = z.object({
|
|
19609
19609
|
body: z.never().optional(),
|
|
19610
19610
|
path: z.object({
|
|
19611
19611
|
organization_id_or_slug: z.string()
|
|
@@ -19637,7 +19637,7 @@ var zListOrganizationStatsSummaryData = z.object({
|
|
|
19637
19637
|
download: z.boolean().optional()
|
|
19638
19638
|
})
|
|
19639
19639
|
});
|
|
19640
|
-
var
|
|
19640
|
+
var zGetOrganizationStatsSummaryResponse = z.object({
|
|
19641
19641
|
start: z.string(),
|
|
19642
19642
|
end: z.string(),
|
|
19643
19643
|
projects: z.array(z.object({
|
|
@@ -20074,7 +20074,7 @@ var zCreateOrganizationTeamResponse = z.object({
|
|
|
20074
20074
|
status: z.string()
|
|
20075
20075
|
})).optional()
|
|
20076
20076
|
});
|
|
20077
|
-
var
|
|
20077
|
+
var zListOrganizationTraceItemAttributesData = z.object({
|
|
20078
20078
|
body: z.never().optional(),
|
|
20079
20079
|
path: z.object({
|
|
20080
20080
|
organization_id_or_slug: z.string()
|
|
@@ -20107,7 +20107,7 @@ var zListOrganizationTraceItemsAttributesData = z.object({
|
|
|
20107
20107
|
cursor: z.string().min(1).optional()
|
|
20108
20108
|
}).optional()
|
|
20109
20109
|
});
|
|
20110
|
-
var
|
|
20110
|
+
var zListOrganizationTraceItemAttributesResponse = z.array(z.object({
|
|
20111
20111
|
key: z.string(),
|
|
20112
20112
|
name: z.string(),
|
|
20113
20113
|
secondaryAliases: z.array(z.string()).optional(),
|
|
@@ -22001,7 +22001,7 @@ var zGetProjectEventAttachmentResponse = z.object({
|
|
|
22001
22001
|
z.null()
|
|
22002
22002
|
])
|
|
22003
22003
|
});
|
|
22004
|
-
var
|
|
22004
|
+
var zGetProjectEventSourceMapDebugData = z.object({
|
|
22005
22005
|
body: z.never().optional(),
|
|
22006
22006
|
path: z.object({
|
|
22007
22007
|
organization_id_or_slug: z.string(),
|
|
@@ -22010,7 +22010,7 @@ var zListProjectEventSourceMapDebugData = z.object({
|
|
|
22010
22010
|
}),
|
|
22011
22011
|
query: z.never().optional()
|
|
22012
22012
|
});
|
|
22013
|
-
var
|
|
22013
|
+
var zGetProjectEventSourceMapDebugResponse = z.object({
|
|
22014
22014
|
dist: z.union([
|
|
22015
22015
|
z.string(),
|
|
22016
22016
|
z.null()
|
|
@@ -22140,7 +22140,7 @@ var zListProjectEventSourceMapDebugResponse = z.object({
|
|
|
22140
22140
|
]),
|
|
22141
22141
|
has_scraping_data: z.boolean()
|
|
22142
22142
|
});
|
|
22143
|
-
var
|
|
22143
|
+
var zListProjectDebugFilesData = z.object({
|
|
22144
22144
|
body: z.never().optional(),
|
|
22145
22145
|
path: z.object({
|
|
22146
22146
|
organization_id_or_slug: z.string(),
|
|
@@ -22154,7 +22154,7 @@ var zListProjectFilesDsymsData = z.object({
|
|
|
22154
22154
|
cursor: z.string().min(1).optional()
|
|
22155
22155
|
}).optional()
|
|
22156
22156
|
});
|
|
22157
|
-
var
|
|
22157
|
+
var zListProjectDebugFilesResponse2 = z.array(z.object({
|
|
22158
22158
|
id: z.string(),
|
|
22159
22159
|
uuid: z.string(),
|
|
22160
22160
|
debugId: z.string(),
|
|
@@ -24419,7 +24419,7 @@ var zGetProjectReplayDeletionJobResponse = z.object({
|
|
|
24419
24419
|
countDeleted: z.number().int()
|
|
24420
24420
|
})
|
|
24421
24421
|
});
|
|
24422
|
-
var
|
|
24422
|
+
var zLinkProjectRepositoryData = z.object({
|
|
24423
24423
|
body: z.object({
|
|
24424
24424
|
repositoryId: z.number().int()
|
|
24425
24425
|
}),
|
|
@@ -24429,7 +24429,7 @@ var zCreateProjectRepoData = z.object({
|
|
|
24429
24429
|
}),
|
|
24430
24430
|
query: z.never().optional()
|
|
24431
24431
|
});
|
|
24432
|
-
var
|
|
24432
|
+
var zLinkProjectRepositoryResponse = z.object({
|
|
24433
24433
|
id: z.string(),
|
|
24434
24434
|
projectId: z.string(),
|
|
24435
24435
|
repositoryId: z.string(),
|
|
@@ -24459,7 +24459,7 @@ var zListProjectStatsData = z.object({
|
|
|
24459
24459
|
}).optional()
|
|
24460
24460
|
});
|
|
24461
24461
|
var zListProjectStatsResponse = z.array(z.array(z.number().int()));
|
|
24462
|
-
var
|
|
24462
|
+
var zDeleteProjectSymbolSourceData = z.object({
|
|
24463
24463
|
body: z.never().optional(),
|
|
24464
24464
|
path: z.object({
|
|
24465
24465
|
organization_id_or_slug: z.string(),
|
|
@@ -24469,7 +24469,7 @@ var zDeleteProjectSymbolSourcesData = z.object({
|
|
|
24469
24469
|
id: z.string()
|
|
24470
24470
|
})
|
|
24471
24471
|
});
|
|
24472
|
-
var
|
|
24472
|
+
var zDeleteProjectSymbolSourceResponse = z.void();
|
|
24473
24473
|
var zListProjectSymbolSourcesData = z.object({
|
|
24474
24474
|
body: z.never().optional(),
|
|
24475
24475
|
path: z.object({
|
|
@@ -24649,7 +24649,7 @@ var zListProjectSymbolSourcesResponse = z.array(z.union([
|
|
|
24649
24649
|
bundleId: z.string().min(1)
|
|
24650
24650
|
})
|
|
24651
24651
|
]));
|
|
24652
|
-
var
|
|
24652
|
+
var zAddProjectSymbolSourceData = z.object({
|
|
24653
24653
|
body: z.object({
|
|
24654
24654
|
type: z.enum([
|
|
24655
24655
|
"http",
|
|
@@ -24735,7 +24735,7 @@ var zCreateProjectSymbolSourceData = z.object({
|
|
|
24735
24735
|
}),
|
|
24736
24736
|
query: z.never().optional()
|
|
24737
24737
|
});
|
|
24738
|
-
var
|
|
24738
|
+
var zAddProjectSymbolSourceResponse = z.union([
|
|
24739
24739
|
z.object({
|
|
24740
24740
|
type: z.enum(["http"]),
|
|
24741
24741
|
url: z.string(),
|
|
@@ -24904,7 +24904,7 @@ var zCreateProjectSymbolSourceResponse = z.union([
|
|
|
24904
24904
|
bundleId: z.string().min(1)
|
|
24905
24905
|
})
|
|
24906
24906
|
]);
|
|
24907
|
-
var
|
|
24907
|
+
var zUpdateProjectSymbolSourceData = z.object({
|
|
24908
24908
|
body: z.object({
|
|
24909
24909
|
type: z.enum([
|
|
24910
24910
|
"http",
|
|
@@ -24992,7 +24992,7 @@ var zUpdateProjectSymbolSourcesData = z.object({
|
|
|
24992
24992
|
id: z.string()
|
|
24993
24993
|
})
|
|
24994
24994
|
});
|
|
24995
|
-
var
|
|
24995
|
+
var zUpdateProjectSymbolSourceResponse = z.union([
|
|
24996
24996
|
z.object({
|
|
24997
24997
|
type: z.enum(["http"]),
|
|
24998
24998
|
url: z.string(),
|
|
@@ -25278,7 +25278,7 @@ var zDeleteProjectTeamResponse = z.object({
|
|
|
25278
25278
|
slug: z.string()
|
|
25279
25279
|
}))
|
|
25280
25280
|
});
|
|
25281
|
-
var
|
|
25281
|
+
var zAddProjectTeamData = z.object({
|
|
25282
25282
|
body: z.never().optional(),
|
|
25283
25283
|
path: z.object({
|
|
25284
25284
|
organization_id_or_slug: z.string(),
|
|
@@ -25287,7 +25287,7 @@ var zCreateProjectTeamData = z.object({
|
|
|
25287
25287
|
}),
|
|
25288
25288
|
query: z.never().optional()
|
|
25289
25289
|
});
|
|
25290
|
-
var
|
|
25290
|
+
var zAddProjectTeamResponse = z.object({
|
|
25291
25291
|
stats: z.unknown().optional(),
|
|
25292
25292
|
transactionStats: z.unknown().optional(),
|
|
25293
25293
|
sessionStats: z.unknown().optional(),
|
|
@@ -28204,8 +28204,8 @@ export {
|
|
|
28204
28204
|
zUpdateTeamData,
|
|
28205
28205
|
zUpdateSentryAppResponse,
|
|
28206
28206
|
zUpdateSentryAppData,
|
|
28207
|
-
|
|
28208
|
-
|
|
28207
|
+
zUpdateProjectSymbolSourceResponse,
|
|
28208
|
+
zUpdateProjectSymbolSourceData,
|
|
28209
28209
|
zUpdateProjectResponse,
|
|
28210
28210
|
zUpdateProjectReleaseFileResponse,
|
|
28211
28211
|
zUpdateProjectReleaseFileData,
|
|
@@ -28298,6 +28298,10 @@ export {
|
|
|
28298
28298
|
zReleaseThresholdStatusResponse,
|
|
28299
28299
|
zReleaseHeadCommit,
|
|
28300
28300
|
zRateLimit,
|
|
28301
|
+
zProvisionOrganizationScimV2UserResponse,
|
|
28302
|
+
zProvisionOrganizationScimV2UserData,
|
|
28303
|
+
zProvisionOrganizationScimV2GroupResponse,
|
|
28304
|
+
zProvisionOrganizationScimV2GroupData,
|
|
28301
28305
|
zProjectWithTeam,
|
|
28302
28306
|
zProjectTeamsResponse,
|
|
28303
28307
|
zProjectSummary,
|
|
@@ -28411,18 +28415,16 @@ export {
|
|
|
28411
28415
|
zListProjectHooksData,
|
|
28412
28416
|
zListProjectFiltersResponse,
|
|
28413
28417
|
zListProjectFiltersData,
|
|
28414
|
-
zListProjectFilesDsymsResponse,
|
|
28415
|
-
zListProjectFilesDsymsData,
|
|
28416
28418
|
zListProjectEventsResponse,
|
|
28417
28419
|
zListProjectEventsData,
|
|
28418
|
-
zListProjectEventSourceMapDebugResponse,
|
|
28419
|
-
zListProjectEventSourceMapDebugData,
|
|
28420
28420
|
zListProjectEventAttachmentsResponse,
|
|
28421
28421
|
zListProjectEventAttachmentsData,
|
|
28422
28422
|
zListProjectEnvironmentsResponse,
|
|
28423
28423
|
zListProjectEnvironmentsData,
|
|
28424
28424
|
zListProjectEnvironments,
|
|
28425
|
+
zListProjectDebugFilesResponse2,
|
|
28425
28426
|
zListProjectDebugFilesResponse,
|
|
28427
|
+
zListProjectDebugFilesData,
|
|
28426
28428
|
zListOrganizationsResponse,
|
|
28427
28429
|
zListOrganizationsData,
|
|
28428
28430
|
zListOrganizations,
|
|
@@ -28430,8 +28432,8 @@ export {
|
|
|
28430
28432
|
zListOrganizationWorkflowsData,
|
|
28431
28433
|
zListOrganizationUserTeamsResponse,
|
|
28432
28434
|
zListOrganizationUserTeamsData,
|
|
28433
|
-
|
|
28434
|
-
|
|
28435
|
+
zListOrganizationTraceItemAttributesResponse,
|
|
28436
|
+
zListOrganizationTraceItemAttributesData,
|
|
28435
28437
|
zListOrganizationTeamsResponse,
|
|
28436
28438
|
zListOrganizationTeamsData,
|
|
28437
28439
|
zListOrganizationTagsResponse2,
|
|
@@ -28439,10 +28441,6 @@ export {
|
|
|
28439
28441
|
zListOrganizationTagsData,
|
|
28440
28442
|
zListOrganizationStatsV2Response,
|
|
28441
28443
|
zListOrganizationStatsV2Data,
|
|
28442
|
-
zListOrganizationStatsSummaryResponse,
|
|
28443
|
-
zListOrganizationStatsSummaryData,
|
|
28444
|
-
zListOrganizationSessionsResponse,
|
|
28445
|
-
zListOrganizationSessionsData,
|
|
28446
28444
|
zListOrganizationSentryAppsResponse,
|
|
28447
28445
|
zListOrganizationSentryAppsData,
|
|
28448
28446
|
zListOrganizationSentryAppInstallationsResponse,
|
|
@@ -28477,8 +28475,6 @@ export {
|
|
|
28477
28475
|
zListOrganizationProjectsData,
|
|
28478
28476
|
zListOrganizationProjectKeysResponse,
|
|
28479
28477
|
zListOrganizationProjectKeysData,
|
|
28480
|
-
zListOrganizationProfilingFlamegraphResponse,
|
|
28481
|
-
zListOrganizationProfilingFlamegraphData,
|
|
28482
28478
|
zListOrganizationProfilingChunksResponse,
|
|
28483
28479
|
zListOrganizationProfilingChunksData,
|
|
28484
28480
|
zListOrganizationPreprodartifactsSnapshotsLatestBaseResponse,
|
|
@@ -28536,6 +28532,8 @@ export {
|
|
|
28536
28532
|
zListDataForwarderResponse,
|
|
28537
28533
|
zListClientKeysResponse,
|
|
28538
28534
|
zLinkedDashboard,
|
|
28535
|
+
zLinkProjectRepositoryResponse,
|
|
28536
|
+
zLinkProjectRepositoryData,
|
|
28539
28537
|
zLegacyBrowserFilter,
|
|
28540
28538
|
zLayout,
|
|
28541
28539
|
zLatestInstallableBuildResponse,
|
|
@@ -28572,6 +28570,8 @@ export {
|
|
|
28572
28570
|
zGetProjectKeyData,
|
|
28573
28571
|
zGetProjectHookResponse,
|
|
28574
28572
|
zGetProjectHookData,
|
|
28573
|
+
zGetProjectEventSourceMapDebugResponse,
|
|
28574
|
+
zGetProjectEventSourceMapDebugData,
|
|
28575
28575
|
zGetProjectEventResponse,
|
|
28576
28576
|
zGetProjectEventData,
|
|
28577
28577
|
zGetProjectEventAttachmentResponse,
|
|
@@ -28585,8 +28585,12 @@ export {
|
|
|
28585
28585
|
zGetOrganizationTraceMetaResponse,
|
|
28586
28586
|
zGetOrganizationTraceMetaData,
|
|
28587
28587
|
zGetOrganizationTraceData,
|
|
28588
|
+
zGetOrganizationStatsSummaryResponse,
|
|
28589
|
+
zGetOrganizationStatsSummaryData,
|
|
28588
28590
|
zGetOrganizationShortidResponse,
|
|
28589
28591
|
zGetOrganizationShortidData,
|
|
28592
|
+
zGetOrganizationSessionsResponse,
|
|
28593
|
+
zGetOrganizationSessionsData,
|
|
28590
28594
|
zGetOrganizationScimV2UserResponse,
|
|
28591
28595
|
zGetOrganizationScimV2UserData,
|
|
28592
28596
|
zGetOrganizationScimV2GroupResponse,
|
|
@@ -28600,6 +28604,8 @@ export {
|
|
|
28600
28604
|
zGetOrganizationReleaseFileResponse,
|
|
28601
28605
|
zGetOrganizationReleaseFileData,
|
|
28602
28606
|
zGetOrganizationReleaseData,
|
|
28607
|
+
zGetOrganizationProfilingFlamegraphResponse,
|
|
28608
|
+
zGetOrganizationProfilingFlamegraphData,
|
|
28603
28609
|
zGetOrganizationPreprodartifactsSnapshotResponse,
|
|
28604
28610
|
zGetOrganizationPreprodartifactsSnapshotImageResponse,
|
|
28605
28611
|
zGetOrganizationPreprodartifactsSnapshotImageData,
|
|
@@ -28655,8 +28661,8 @@ export {
|
|
|
28655
28661
|
zDeleteSentryAppData,
|
|
28656
28662
|
zDeleteProjectTeamResponse,
|
|
28657
28663
|
zDeleteProjectTeamData,
|
|
28658
|
-
|
|
28659
|
-
|
|
28664
|
+
zDeleteProjectSymbolSourceResponse,
|
|
28665
|
+
zDeleteProjectSymbolSourceData,
|
|
28660
28666
|
zDeleteProjectResponse,
|
|
28661
28667
|
zDeleteProjectReplayResponse,
|
|
28662
28668
|
zDeleteProjectReplayData,
|
|
@@ -28728,12 +28734,6 @@ export {
|
|
|
28728
28734
|
zCreateReplayDeletionJob,
|
|
28729
28735
|
zCreateProjectUserFeedbackResponse,
|
|
28730
28736
|
zCreateProjectUserFeedbackData,
|
|
28731
|
-
zCreateProjectTeamResponse,
|
|
28732
|
-
zCreateProjectTeamData,
|
|
28733
|
-
zCreateProjectSymbolSourceResponse,
|
|
28734
|
-
zCreateProjectSymbolSourceData,
|
|
28735
|
-
zCreateProjectRepoResponse,
|
|
28736
|
-
zCreateProjectRepoData,
|
|
28737
28737
|
zCreateProjectReplayDeletionJobResponse,
|
|
28738
28738
|
zCreateProjectReplayDeletionJobData,
|
|
28739
28739
|
zCreateProjectReleaseFileResponse,
|
|
@@ -28749,10 +28749,6 @@ export {
|
|
|
28749
28749
|
zCreateOrganizationTeamResponse,
|
|
28750
28750
|
zCreateOrganizationTeamData,
|
|
28751
28751
|
zCreateOrganizationSpikeProtectionData,
|
|
28752
|
-
zCreateOrganizationScimV2UserResponse,
|
|
28753
|
-
zCreateOrganizationScimV2UserData,
|
|
28754
|
-
zCreateOrganizationScimV2GroupResponse,
|
|
28755
|
-
zCreateOrganizationScimV2GroupData,
|
|
28756
28752
|
zCreateOrganizationReleaseResponse,
|
|
28757
28753
|
zCreateOrganizationReleaseFileData,
|
|
28758
28754
|
zCreateOrganizationReleaseDeployResponse,
|
|
@@ -28766,10 +28762,6 @@ export {
|
|
|
28766
28762
|
zCreateOrganizationNotificationsActionData,
|
|
28767
28763
|
zCreateOrganizationMonitorResponse,
|
|
28768
28764
|
zCreateOrganizationMonitorData,
|
|
28769
|
-
zCreateOrganizationMemberTeamResponse,
|
|
28770
|
-
zCreateOrganizationMemberTeamData,
|
|
28771
|
-
zCreateOrganizationMemberResponse,
|
|
28772
|
-
zCreateOrganizationMemberData,
|
|
28773
28765
|
zCreateOrganizationIssueAutofixResponse,
|
|
28774
28766
|
zCreateOrganizationIssueAutofixData,
|
|
28775
28767
|
zCreateOrganizationForwardingResponse,
|
|
@@ -28793,5 +28785,13 @@ export {
|
|
|
28793
28785
|
zBaseDetectorTypeValidator,
|
|
28794
28786
|
zBaseDataConditionGroupValidator,
|
|
28795
28787
|
zAutofixStateResponse,
|
|
28796
|
-
zAutofixPostResponse
|
|
28788
|
+
zAutofixPostResponse,
|
|
28789
|
+
zAddProjectTeamResponse,
|
|
28790
|
+
zAddProjectTeamData,
|
|
28791
|
+
zAddProjectSymbolSourceResponse,
|
|
28792
|
+
zAddProjectSymbolSourceData,
|
|
28793
|
+
zAddOrganizationMemberTeamResponse,
|
|
28794
|
+
zAddOrganizationMemberTeamData,
|
|
28795
|
+
zAddOrganizationMemberResponse,
|
|
28796
|
+
zAddOrganizationMemberData
|
|
28797
28797
|
};
|