@keystrokehq/sentry 0.0.10 → 0.0.11

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/projects.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { orgProjectScopeInputSchema, sentryIdSchema, sentryJsonArraySchema, sentryJsonObjectSchema, sentryListInputSchema, sentryMemberSchema, sentryProjectDetailsSchema, sentryProjectSummarySchema, sentrySlugSchema, sentryTeamSchema } from "./schemas.mjs";
2
- import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
2
+ import { t as defineSentryEndpoint } from "./endpoint-factory-Cizk4imV.mjs";
3
3
  import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
4
4
  import { z } from "zod";
5
5
 
@@ -26,7 +26,7 @@ const ORG_TEAM_FOR_PROJECT = [{
26
26
  placeholder: "{team_slug}"
27
27
  }];
28
28
  const accessProjectInformation = defineSentryEndpoint({
29
- id: "access_project_information",
29
+ id: "sentry.access-project-information",
30
30
  name: "Access Project Information",
31
31
  description: "Fetch a project by its org slug + project slug.",
32
32
  method: "GET",
@@ -37,7 +37,7 @@ const accessProjectInformation = defineSentryEndpoint({
37
37
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
38
38
  });
39
39
  const getProjectList = defineSentryEndpoint({
40
- id: "get_project_list",
40
+ id: "sentry.get-project-list",
41
41
  name: "List Projects",
42
42
  description: "List projects visible to the authenticated token across all orgs.",
43
43
  method: "GET",
@@ -53,7 +53,7 @@ const getProjectList = defineSentryEndpoint({
53
53
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
54
54
  });
55
55
  const updateProjectDetails = defineSentryEndpoint({
56
- id: "update_project_details",
56
+ id: "sentry.update-project-details",
57
57
  name: "Update Project Details",
58
58
  description: "Patch project-level settings.",
59
59
  method: "PUT",
@@ -98,7 +98,7 @@ const updateProjectDetails = defineSentryEndpoint({
98
98
  requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
99
99
  });
100
100
  const deleteProjectById = defineSentryEndpoint({
101
- id: "delete_project_by_id",
101
+ id: "sentry.delete-project-by-id",
102
102
  name: "Delete Project",
103
103
  description: "Delete a project by slug.",
104
104
  method: "DELETE",
@@ -110,7 +110,7 @@ const deleteProjectById = defineSentryEndpoint({
110
110
  requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
111
111
  });
112
112
  const createTeamProjectForOrganization = defineSentryEndpoint({
113
- id: "create_team_project_for_organization",
113
+ id: "sentry.create-team-project-for-organization",
114
114
  name: "Create Team Project",
115
115
  description: "Create a new project owned by a team.",
116
116
  method: "POST",
@@ -135,7 +135,7 @@ const createTeamProjectForOrganization = defineSentryEndpoint({
135
135
  requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
136
136
  });
137
137
  const addTeamToProject = defineSentryEndpoint({
138
- id: "add_team_to_project",
138
+ id: "sentry.add-team-to-project",
139
139
  name: "Add Team To Project",
140
140
  description: "Grant a team access to an existing project.",
141
141
  method: "POST",
@@ -147,7 +147,7 @@ const addTeamToProject = defineSentryEndpoint({
147
147
  requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
148
148
  });
149
149
  const retrieveProjectTeams = defineSentryEndpoint({
150
- id: "retrieve_project_teams",
150
+ id: "sentry.retrieve-project-teams",
151
151
  name: "Retrieve Project Teams",
152
152
  description: "List the teams that own a project.",
153
153
  method: "GET",
@@ -164,7 +164,7 @@ const retrieveProjectTeams = defineSentryEndpoint({
164
164
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
165
165
  });
166
166
  const deleteProjectTeamAssociation = defineSentryEndpoint({
167
- id: "delete_project_team_association",
167
+ id: "sentry.delete-project-team-association",
168
168
  name: "Delete Project Team Association",
169
169
  description: "Revoke a team’s access to a project.",
170
170
  method: "DELETE",
@@ -176,7 +176,7 @@ const deleteProjectTeamAssociation = defineSentryEndpoint({
176
176
  requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
177
177
  });
178
178
  const retrieveProjectMembersList = defineSentryEndpoint({
179
- id: "retrieve_project_members_list",
179
+ id: "sentry.retrieve-project-members-list",
180
180
  name: "Retrieve Project Members",
181
181
  description: "List the members who have access to a project.",
182
182
  method: "GET",
@@ -193,7 +193,7 @@ const retrieveProjectMembersList = defineSentryEndpoint({
193
193
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
194
194
  });
195
195
  const listProjectUsers = defineSentryEndpoint({
196
- id: "list_project_users",
196
+ id: "sentry.list-project-users",
197
197
  name: "List Project Users",
198
198
  description: "List distinct end users who have reported events for a project.",
199
199
  method: "GET",
@@ -210,7 +210,7 @@ const listProjectUsers = defineSentryEndpoint({
210
210
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
211
211
  });
212
212
  const retrieveProjectFilterData = defineSentryEndpoint({
213
- id: "retrieve_project_filter_data",
213
+ id: "sentry.retrieve-project-filter-data",
214
214
  name: "Retrieve Project Filter Data",
215
215
  description: "Return project-level inbound filter configuration.",
216
216
  method: "GET",
@@ -221,7 +221,7 @@ const retrieveProjectFilterData = defineSentryEndpoint({
221
221
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
222
222
  });
223
223
  const toggleProjectFilterStatus = defineSentryEndpoint({
224
- id: "toggle_project_filter_status",
224
+ id: "sentry.toggle-project-filter-status",
225
225
  name: "Toggle Project Filter",
226
226
  description: "Enable or disable a single project inbound filter by id.",
227
227
  method: "PUT",
@@ -241,7 +241,7 @@ const toggleProjectFilterStatus = defineSentryEndpoint({
241
241
  requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
242
242
  });
243
243
  const fetchProjectOwnershipDetails = defineSentryEndpoint({
244
- id: "fetch_project_ownership_details",
244
+ id: "sentry.fetch-project-ownership-details",
245
245
  name: "Fetch Project Ownership",
246
246
  description: "Retrieve a project’s ownership rules configuration.",
247
247
  method: "GET",
@@ -252,7 +252,7 @@ const fetchProjectOwnershipDetails = defineSentryEndpoint({
252
252
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
253
253
  });
254
254
  const updateProjectOwnershipSettings = defineSentryEndpoint({
255
- id: "update_project_ownership_settings",
255
+ id: "sentry.update-project-ownership-settings",
256
256
  name: "Update Project Ownership",
257
257
  description: "Update a project’s ownership rule set and fallthrough.",
258
258
  method: "PUT",
@@ -279,7 +279,7 @@ const updateProjectOwnershipSettings = defineSentryEndpoint({
279
279
  requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
280
280
  });
281
281
  const retrieveProjectTagValues = defineSentryEndpoint({
282
- id: "retrieve_project_tag_values",
282
+ id: "sentry.retrieve-project-tag-values",
283
283
  name: "Retrieve Project Tag Values",
284
284
  description: "List the distinct values observed for a given tag key on a project.",
285
285
  method: "GET",
@@ -299,7 +299,7 @@ const retrieveProjectTagValues = defineSentryEndpoint({
299
299
  requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
300
300
  });
301
301
  const postProjectSymbolSources = defineSentryEndpoint({
302
- id: "post_project_symbol_sources",
302
+ id: "sentry.post-project-symbol-sources",
303
303
  name: "Create Project Symbol Source",
304
304
  description: "Register a new custom symbol source on a project.",
305
305
  method: "POST",
@@ -312,7 +312,7 @@ const postProjectSymbolSources = defineSentryEndpoint({
312
312
  requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
313
313
  });
314
314
  const retrieveProjectSymbolSources = defineSentryEndpoint({
315
- id: "retrieve_project_symbol_sources",
315
+ id: "sentry.retrieve-project-symbol-sources",
316
316
  name: "Retrieve Project Symbol Sources",
317
317
  description: "List the custom symbol sources configured on a project.",
318
318
  method: "GET",
@@ -323,7 +323,7 @@ const retrieveProjectSymbolSources = defineSentryEndpoint({
323
323
  requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
324
324
  });
325
325
  const updateSymbolSourceSettings = defineSentryEndpoint({
326
- id: "update_symbol_source_settings",
326
+ id: "sentry.update-symbol-source-settings",
327
327
  name: "Update Project Symbol Source",
328
328
  description: "Update a project symbol source by its id.",
329
329
  method: "PUT",
@@ -340,7 +340,7 @@ const updateSymbolSourceSettings = defineSentryEndpoint({
340
340
  requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
341
341
  });
342
342
  const deleteProjectSymbolSources = defineSentryEndpoint({
343
- id: "delete_project_symbol_sources",
343
+ id: "sentry.delete-project-symbol-sources",
344
344
  name: "Delete Project Symbol Source",
345
345
  description: "Delete a project symbol source by id.",
346
346
  method: "DELETE",
package/dist/releases.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { orgProjectScopeInputSchema, orgReleaseScopeInputSchema, orgScopeInputSchema, sentryCommitSchema, sentryIdSchema, sentryJsonArraySchema, sentryJsonObjectSchema, sentryListInputSchema, sentryReleaseFileSchema, sentryReleaseSchema, sentryRepositorySchema } from "./schemas.mjs";
2
- import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
2
+ import { t as defineSentryEndpoint } from "./endpoint-factory-Cizk4imV.mjs";
3
3
  import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
4
4
  import { z } from "zod";
5
5
 
@@ -32,7 +32,7 @@ const ORG_REPO = [...ORG, {
32
32
  placeholder: "{repo_id}"
33
33
  }];
34
34
  const listOrganizationReleases = defineSentryEndpoint({
35
- id: "list_organization_releases",
35
+ id: "sentry.list-organization-releases",
36
36
  name: "List Organization Releases",
37
37
  description: "List releases for an organization.",
38
38
  method: "GET",
@@ -66,7 +66,7 @@ const listOrganizationReleases = defineSentryEndpoint({
66
66
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
67
67
  });
68
68
  const createReleaseForOrganization = defineSentryEndpoint({
69
- id: "create_release_for_organization",
69
+ id: "sentry.create-release-for-organization",
70
70
  name: "Create Release",
71
71
  description: "Create a release at the organization level.",
72
72
  method: "POST",
@@ -95,7 +95,7 @@ const createReleaseForOrganization = defineSentryEndpoint({
95
95
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
96
96
  });
97
97
  const getOrganizationReleaseVersion = defineSentryEndpoint({
98
- id: "get_organization_release_version",
98
+ id: "sentry.get-organization-release-version",
99
99
  name: "Get Release",
100
100
  description: "Fetch a release by version.",
101
101
  method: "GET",
@@ -106,7 +106,7 @@ const getOrganizationReleaseVersion = defineSentryEndpoint({
106
106
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
107
107
  });
108
108
  const updateReleaseDetailsForOrganization = defineSentryEndpoint({
109
- id: "update_release_details_for_organization",
109
+ id: "sentry.update-release-details-for-organization",
110
110
  name: "Update Release",
111
111
  description: "Update release metadata (e.g. `dateReleased`, `ref`, commits).",
112
112
  method: "PUT",
@@ -133,7 +133,7 @@ const updateReleaseDetailsForOrganization = defineSentryEndpoint({
133
133
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
134
134
  });
135
135
  const deleteOrganizationRelease = defineSentryEndpoint({
136
- id: "delete_organization_release",
136
+ id: "sentry.delete-organization-release",
137
137
  name: "Delete Release",
138
138
  description: "Delete a release by version.",
139
139
  method: "DELETE",
@@ -145,7 +145,7 @@ const deleteOrganizationRelease = defineSentryEndpoint({
145
145
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
146
146
  });
147
147
  const retrieveOrganizationReleaseCommits = defineSentryEndpoint({
148
- id: "retrieve_organization_release_commits",
148
+ id: "sentry.retrieve-organization-release-commits",
149
149
  name: "Retrieve Release Commits (Org)",
150
150
  description: "List the commits associated with a release.",
151
151
  method: "GET",
@@ -162,7 +162,7 @@ const retrieveOrganizationReleaseCommits = defineSentryEndpoint({
162
162
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
163
163
  });
164
164
  const retrieveReleaseCommits = defineSentryEndpoint({
165
- id: "retrieve_release_commits",
165
+ id: "sentry.retrieve-release-commits",
166
166
  name: "Retrieve Release Commits (Project)",
167
167
  description: "List the commits associated with a release for a specific project.",
168
168
  method: "GET",
@@ -179,7 +179,7 @@ const retrieveReleaseCommits = defineSentryEndpoint({
179
179
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
180
180
  });
181
181
  const retrieveCommitFilesForRelease = defineSentryEndpoint({
182
- id: "retrieve_commit_files_for_release",
182
+ id: "sentry.retrieve-commit-files-for-release",
183
183
  name: "Retrieve Commit Files For Release",
184
184
  description: "List the file-level commit metadata attached to a release.",
185
185
  method: "GET",
@@ -196,7 +196,7 @@ const retrieveCommitFilesForRelease = defineSentryEndpoint({
196
196
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
197
197
  });
198
198
  const retrieveCommitsForOrganizationRepo = defineSentryEndpoint({
199
- id: "retrieve_commits_for_organization_repo",
199
+ id: "sentry.retrieve-commits-for-organization-repo",
200
200
  name: "Retrieve Commits For Org Repo",
201
201
  description: "List commits for a repository linked to the organization.",
202
202
  method: "GET",
@@ -213,7 +213,7 @@ const retrieveCommitsForOrganizationRepo = defineSentryEndpoint({
213
213
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
214
214
  });
215
215
  const listOrganizationRepositories = defineSentryEndpoint({
216
- id: "list_organization_repositories",
216
+ id: "sentry.list-organization-repositories",
217
217
  name: "List Organization Repositories",
218
218
  description: "List repositories linked to the organization.",
219
219
  method: "GET",
@@ -236,7 +236,7 @@ const listOrganizationRepositories = defineSentryEndpoint({
236
236
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
237
237
  });
238
238
  const retrieveFilesForRelease = defineSentryEndpoint({
239
- id: "retrieve_files_for_release",
239
+ id: "sentry.retrieve-files-for-release",
240
240
  name: "Retrieve Release Files (Org)",
241
241
  description: "List the uploaded artifact files attached to an org-level release.",
242
242
  method: "GET",
@@ -253,7 +253,7 @@ const retrieveFilesForRelease = defineSentryEndpoint({
253
253
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
254
254
  });
255
255
  const fetchProjectReleaseFiles = defineSentryEndpoint({
256
- id: "fetch_project_release_files",
256
+ id: "sentry.fetch-project-release-files",
257
257
  name: "Retrieve Project Release Files",
258
258
  description: "List the uploaded artifact files attached to a project release.",
259
259
  method: "GET",
@@ -270,7 +270,7 @@ const fetchProjectReleaseFiles = defineSentryEndpoint({
270
270
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
271
271
  });
272
272
  const retrieveProjectReleaseFileDetails = defineSentryEndpoint({
273
- id: "retrieve_project_release_file_details",
273
+ id: "sentry.retrieve-project-release-file-details",
274
274
  name: "Retrieve Project Release File",
275
275
  description: "Fetch a single release artifact file by id.",
276
276
  method: "GET",
@@ -287,7 +287,7 @@ const retrieveProjectReleaseFileDetails = defineSentryEndpoint({
287
287
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
288
288
  });
289
289
  const retrieveReleaseFileById = defineSentryEndpoint({
290
- id: "retrieve_release_file_by_id",
290
+ id: "sentry.retrieve-release-file-by-id",
291
291
  name: "Retrieve Release File (Org)",
292
292
  description: "Fetch a single release artifact file at the org level by id.",
293
293
  method: "GET",
@@ -301,7 +301,7 @@ const retrieveReleaseFileById = defineSentryEndpoint({
301
301
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
302
302
  });
303
303
  const uploadReleaseFileToOrganization = defineSentryEndpoint({
304
- id: "upload_release_file_to_organization",
304
+ id: "sentry.upload-release-file-to-organization",
305
305
  name: "Upload Release File (Org)",
306
306
  description: "Record the metadata for a release artifact file at the organization level. Actual multipart uploads use the `client.request` escape hatch with `rawBody`.",
307
307
  method: "POST",
@@ -322,7 +322,7 @@ const uploadReleaseFileToOrganization = defineSentryEndpoint({
322
322
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
323
323
  });
324
324
  const uploadFileToProjectRelease = defineSentryEndpoint({
325
- id: "upload_file_to_project_release",
325
+ id: "sentry.upload-file-to-project-release",
326
326
  name: "Upload Release File (Project)",
327
327
  description: "Record the metadata for a release artifact file on a project release. Actual multipart uploads use the `client.request` escape hatch with `rawBody`.",
328
328
  method: "POST",
@@ -344,7 +344,7 @@ const uploadFileToProjectRelease = defineSentryEndpoint({
344
344
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
345
345
  });
346
346
  const modifyReleaseFileAttributes = defineSentryEndpoint({
347
- id: "modify_release_file_attributes",
347
+ id: "sentry.modify-release-file-attributes",
348
348
  name: "Modify Release File Attributes (Org)",
349
349
  description: "Update metadata on a release artifact file at the org level.",
350
350
  method: "PUT",
@@ -369,7 +369,7 @@ const modifyReleaseFileAttributes = defineSentryEndpoint({
369
369
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
370
370
  });
371
371
  const updateProjectReleaseFileDetails = defineSentryEndpoint({
372
- id: "update_project_release_file_details",
372
+ id: "sentry.update-project-release-file-details",
373
373
  name: "Update Project Release File",
374
374
  description: "Update metadata on a release artifact file for a project release.",
375
375
  method: "PUT",
@@ -395,7 +395,7 @@ const updateProjectReleaseFileDetails = defineSentryEndpoint({
395
395
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
396
396
  });
397
397
  const deleteReleaseFile = defineSentryEndpoint({
398
- id: "delete_release_file",
398
+ id: "sentry.delete-release-file",
399
399
  name: "Delete Release File (Project)",
400
400
  description: "Delete a release artifact file for a project release.",
401
401
  method: "DELETE",
@@ -413,7 +413,7 @@ const deleteReleaseFile = defineSentryEndpoint({
413
413
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
414
414
  });
415
415
  const deleteReleaseFileById = defineSentryEndpoint({
416
- id: "delete_release_file_by_id",
416
+ id: "sentry.delete-release-file-by-id",
417
417
  name: "Delete Release File (Org)",
418
418
  description: "Delete a release artifact file at the org level by id.",
419
419
  method: "DELETE",
@@ -428,7 +428,7 @@ const deleteReleaseFileById = defineSentryEndpoint({
428
428
  requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
429
429
  });
430
430
  const fetchOrganizationReleaseThresholdStatuses = defineSentryEndpoint({
431
- id: "fetch_organization_release_threshold_statuses",
431
+ id: "sentry.fetch-organization-release-threshold-statuses",
432
432
  name: "Fetch Release Threshold Statuses",
433
433
  description: "Return the release-threshold evaluation statuses for the organization.",
434
434
  method: "GET",
package/dist/replays.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { orgProjectScopeInputSchema, orgScopeInputSchema, sentryIdSchema, sentryJsonArraySchema, sentryJsonObjectSchema, sentryListInputSchema, sentryReplaySchema } from "./schemas.mjs";
2
- import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
2
+ import { t as defineSentryEndpoint } from "./endpoint-factory-Cizk4imV.mjs";
3
3
  import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
4
4
  import { z } from "zod";
5
5
 
@@ -27,7 +27,7 @@ const ORG_PROJECT_REPLAY_SEGMENT = [...ORG_PROJECT_REPLAY, {
27
27
  placeholder: "{segment_id}"
28
28
  }];
29
29
  const fetchOrganizationReplayCount = defineSentryEndpoint({
30
- id: "fetch_organization_replay_count",
30
+ id: "sentry.fetch-organization-replay-count",
31
31
  name: "Fetch Replay Count",
32
32
  description: "Return total replay counts for an organization query.",
33
33
  method: "GET",
@@ -49,7 +49,7 @@ const fetchOrganizationReplayCount = defineSentryEndpoint({
49
49
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
50
50
  });
51
51
  const fetchOrganizationReplayDetails = defineSentryEndpoint({
52
- id: "fetch_organization_replay_details",
52
+ id: "sentry.fetch-organization-replay-details",
53
53
  name: "Fetch Replay Details",
54
54
  description: "Fetch a single replay’s details by replay id.",
55
55
  method: "GET",
@@ -60,7 +60,7 @@ const fetchOrganizationReplayDetails = defineSentryEndpoint({
60
60
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
61
61
  });
62
62
  const fetchOrganizationReplaySelectors = defineSentryEndpoint({
63
- id: "fetch_organization_replay_selectors",
63
+ id: "sentry.fetch-organization-replay-selectors",
64
64
  name: "Fetch Replay Selectors",
65
65
  description: "List the dead-click / rage-click selectors observed in replays.",
66
66
  method: "GET",
@@ -85,7 +85,7 @@ const fetchOrganizationReplaySelectors = defineSentryEndpoint({
85
85
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
86
86
  });
87
87
  const retrieveOrganizationReplays = defineSentryEndpoint({
88
- id: "retrieve_organization_replays",
88
+ id: "sentry.retrieve-organization-replays",
89
89
  name: "List Organization Replays",
90
90
  description: "List replays for an organization.",
91
91
  method: "GET",
@@ -110,7 +110,7 @@ const retrieveOrganizationReplays = defineSentryEndpoint({
110
110
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
111
111
  });
112
112
  const fetchProjectReplayClicks = defineSentryEndpoint({
113
- id: "fetch_project_replay_clicks",
113
+ id: "sentry.fetch-project-replay-clicks",
114
114
  name: "Fetch Replay Clicks",
115
115
  description: "Fetch the clickstream for a replay.",
116
116
  method: "GET",
@@ -127,7 +127,7 @@ const fetchProjectReplayClicks = defineSentryEndpoint({
127
127
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
128
128
  });
129
129
  const fetchReplayRecordingSegment = defineSentryEndpoint({
130
- id: "fetch_replay_recording_segment",
130
+ id: "sentry.fetch-replay-recording-segment",
131
131
  name: "Fetch Replay Segment",
132
132
  description: "Fetch a specific rrweb segment for a replay.",
133
133
  method: "GET",
@@ -141,7 +141,7 @@ const fetchReplayRecordingSegment = defineSentryEndpoint({
141
141
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
142
142
  });
143
143
  const retrieveReplayRecordingSegments = defineSentryEndpoint({
144
- id: "retrieve_replay_recording_segments",
144
+ id: "sentry.retrieve-replay-recording-segments",
145
145
  name: "List Replay Segments",
146
146
  description: "List the rrweb segments for a replay.",
147
147
  method: "GET",
@@ -154,7 +154,7 @@ const retrieveReplayRecordingSegments = defineSentryEndpoint({
154
154
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
155
155
  });
156
156
  const getWhoViewedReplayByProject = defineSentryEndpoint({
157
- id: "get_who_viewed_replay_by_project",
157
+ id: "sentry.get-who-viewed-replay-by-project",
158
158
  name: "Get Replay Viewers",
159
159
  description: "List users who viewed a replay.",
160
160
  method: "GET",
@@ -165,7 +165,7 @@ const getWhoViewedReplayByProject = defineSentryEndpoint({
165
165
  requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
166
166
  });
167
167
  const deleteProjectReplay = defineSentryEndpoint({
168
- id: "delete_project_replay",
168
+ id: "sentry.delete-project-replay",
169
169
  name: "Delete Project Replay",
170
170
  description: "Delete a replay by id.",
171
171
  method: "DELETE",
@@ -201,13 +201,13 @@ declare const sentryIssueAlertRuleSchema: z.ZodObject<{
201
201
  }, z.core.$loose>;
202
202
  declare const sentryMonitorStatusSchema: z.ZodEnum<{
203
203
  error: "error";
204
+ timeout: "timeout";
204
205
  active: "active";
205
206
  disabled: "disabled";
206
- ok: "ok";
207
- missed_checkin: "missed_checkin";
208
- timeout: "timeout";
209
207
  pending_deletion: "pending_deletion";
210
208
  deletion_in_progress: "deletion_in_progress";
209
+ ok: "ok";
210
+ missed_checkin: "missed_checkin";
211
211
  }>;
212
212
  declare const sentryMonitorSchema: z.ZodObject<{
213
213
  id: z.ZodString;
@@ -215,13 +215,13 @@ declare const sentryMonitorSchema: z.ZodObject<{
215
215
  name: z.ZodString;
216
216
  status: z.ZodOptional<z.ZodEnum<{
217
217
  error: "error";
218
+ timeout: "timeout";
218
219
  active: "active";
219
220
  disabled: "disabled";
220
- ok: "ok";
221
- missed_checkin: "missed_checkin";
222
- timeout: "timeout";
223
221
  pending_deletion: "pending_deletion";
224
222
  deletion_in_progress: "deletion_in_progress";
223
+ ok: "ok";
224
+ missed_checkin: "missed_checkin";
225
225
  }>>;
226
226
  type: z.ZodOptional<z.ZodString>;
227
227
  dateCreated: z.ZodOptional<z.ZodISODateTime>;
package/dist/scim.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { orgScopeInputSchema, sentryIdSchema, sentryJsonObjectSchema, sentryListInputSchema, sentryScimGroupSchema, sentryScimUserSchema } from "./schemas.mjs";
2
- import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
2
+ import { t as defineSentryEndpoint } from "./endpoint-factory-Cizk4imV.mjs";
3
3
  import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
4
4
  import { z } from "zod";
5
5
 
@@ -25,7 +25,7 @@ const ORG_EXT_USER = [...ORG, {
25
25
  placeholder: "{external_user_id}"
26
26
  }];
27
27
  const listScimV2OrganizationUsers = defineSentryEndpoint({
28
- id: "list_scim_v2_organization_users",
28
+ id: "sentry.list-scim-v2-organization-users",
29
29
  name: "List SCIM Users",
30
30
  description: "List organization SCIM v2 users.",
31
31
  method: "GET",
@@ -48,7 +48,7 @@ const listScimV2OrganizationUsers = defineSentryEndpoint({
48
48
  requiredOAuthScopes: [...SENTRY_SCOPE.memberRead]
49
49
  });
50
50
  const retrieveUserViaScimApi = defineSentryEndpoint({
51
- id: "retrieve_user_via_scim_api",
51
+ id: "sentry.retrieve-user-via-scim-api",
52
52
  name: "Retrieve SCIM User",
53
53
  description: "Fetch a SCIM user by member id.",
54
54
  method: "GET",
@@ -59,7 +59,7 @@ const retrieveUserViaScimApi = defineSentryEndpoint({
59
59
  requiredOAuthScopes: [...SENTRY_SCOPE.memberRead]
60
60
  });
61
61
  const createUserForSamlIntegration = defineSentryEndpoint({
62
- id: "create_user_for_saml_integration",
62
+ id: "sentry.create-user-for-saml-integration",
63
63
  name: "Create SAML User",
64
64
  description: "Provision a new SAML/SCIM user.",
65
65
  method: "POST",
@@ -90,7 +90,7 @@ const createUserForSamlIntegration = defineSentryEndpoint({
90
90
  requiredOAuthScopes: [...SENTRY_SCOPE.memberAdmin]
91
91
  });
92
92
  const createScimGroupForOrganization = defineSentryEndpoint({
93
- id: "create_scim_group_for_organization",
93
+ id: "sentry.create-scim-group-for-organization",
94
94
  name: "Create SCIM Group",
95
95
  description: "Create a new SCIM group.",
96
96
  method: "POST",
@@ -109,7 +109,7 @@ const createScimGroupForOrganization = defineSentryEndpoint({
109
109
  requiredOAuthScopes: [...SENTRY_SCOPE.teamAdmin]
110
110
  });
111
111
  const getScimGroupByTeamId = defineSentryEndpoint({
112
- id: "get_scim_group_by_team_id",
112
+ id: "sentry.get-scim-group-by-team-id",
113
113
  name: "Get SCIM Group",
114
114
  description: "Fetch a SCIM group by id.",
115
115
  method: "GET",
@@ -120,7 +120,7 @@ const getScimGroupByTeamId = defineSentryEndpoint({
120
120
  requiredOAuthScopes: [...SENTRY_SCOPE.teamRead]
121
121
  });
122
122
  const retrieveOrganizationScimGroups = defineSentryEndpoint({
123
- id: "retrieve_organization_scim_groups",
123
+ id: "sentry.retrieve-organization-scim-groups",
124
124
  name: "List SCIM Groups",
125
125
  description: "List SCIM groups for the organization.",
126
126
  method: "GET",
@@ -143,7 +143,7 @@ const retrieveOrganizationScimGroups = defineSentryEndpoint({
143
143
  requiredOAuthScopes: [...SENTRY_SCOPE.teamRead]
144
144
  });
145
145
  const patchScimGroupOperations = defineSentryEndpoint({
146
- id: "patch_scim_group_operations",
146
+ id: "sentry.patch-scim-group-operations",
147
147
  name: "Patch SCIM Group",
148
148
  description: "Apply PATCH operations to a SCIM group.",
149
149
  method: "PATCH",
@@ -159,7 +159,7 @@ const patchScimGroupOperations = defineSentryEndpoint({
159
159
  requiredOAuthScopes: [...SENTRY_SCOPE.teamAdmin]
160
160
  });
161
161
  const deleteTeamFromOrgScimV2 = defineSentryEndpoint({
162
- id: "delete_team_from_org_scim_v2",
162
+ id: "sentry.delete-team-from-org-scim-v2",
163
163
  name: "Delete SCIM Group",
164
164
  description: "Delete a SCIM group by id.",
165
165
  method: "DELETE",
@@ -171,7 +171,7 @@ const deleteTeamFromOrgScimV2 = defineSentryEndpoint({
171
171
  requiredOAuthScopes: [...SENTRY_SCOPE.teamAdmin]
172
172
  });
173
173
  const createExternalUserForOrganization = defineSentryEndpoint({
174
- id: "create_external_user_for_organization",
174
+ id: "sentry.create-external-user-for-organization",
175
175
  name: "Create External User",
176
176
  description: "Link a Sentry user to an external-provider user (github, slack, etc.).",
177
177
  method: "POST",
@@ -196,7 +196,7 @@ const createExternalUserForOrganization = defineSentryEndpoint({
196
196
  requiredOAuthScopes: [...SENTRY_SCOPE.memberAdmin]
197
197
  });
198
198
  const updateExternalUserForOrganization = defineSentryEndpoint({
199
- id: "update_external_user_for_organization",
199
+ id: "sentry.update-external-user-for-organization",
200
200
  name: "Update External User",
201
201
  description: "Update an external-user link.",
202
202
  method: "PUT",
@@ -220,7 +220,7 @@ const updateExternalUserForOrganization = defineSentryEndpoint({
220
220
  requiredOAuthScopes: [...SENTRY_SCOPE.memberAdmin]
221
221
  });
222
222
  const deleteExternalUserFromOrganization = defineSentryEndpoint({
223
- id: "delete_external_user_from_organization",
223
+ id: "sentry.delete-external-user-from-organization",
224
224
  name: "Delete External User",
225
225
  description: "Remove an external-user link by id.",
226
226
  method: "DELETE",