@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/_official/index.d.mts +1 -1
- package/dist/_official/index.mjs +1 -1
- package/dist/_runtime/index.mjs +1 -1
- package/dist/alerts.mjs +12 -12
- package/dist/connection.mjs +1 -1
- package/dist/dashboards.mjs +6 -6
- package/dist/debug-files.mjs +4 -4
- package/dist/deploys.mjs +3 -3
- package/dist/discover.mjs +6 -6
- package/dist/{endpoint-factory-BKyte5gU.mjs → endpoint-factory-Cizk4imV.mjs} +1 -1
- package/dist/environments.d.mts +2 -2
- package/dist/environments.mjs +4 -4
- package/dist/events-api.mjs +8 -8
- package/dist/feedback.mjs +3 -3
- package/dist/{integration-DQ-PSbHu.mjs → integration-Q9y2TMhZ.mjs} +1 -1
- package/dist/issues.d.mts +2 -2
- package/dist/issues.mjs +14 -14
- package/dist/members.mjs +8 -8
- package/dist/monitors.d.mts +36 -36
- package/dist/monitors.mjs +11 -11
- package/dist/notifications.mjs +6 -6
- package/dist/organizations.d.mts +2 -2
- package/dist/organizations.mjs +16 -16
- package/dist/project-keys.mjs +6 -6
- package/dist/projects.mjs +20 -20
- package/dist/releases.mjs +22 -22
- package/dist/replays.mjs +10 -10
- package/dist/schemas.d.mts +6 -6
- package/dist/scim.mjs +12 -12
- package/dist/teams.mjs +15 -15
- package/dist/user-emails.mjs +5 -5
- package/dist/webhooks.mjs +6 -6
- package/package.json +4 -4
package/dist/members.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgScopeInputSchema, sentryIdSchema, sentryListInputSchema, sentryMemberSchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
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
|
|
|
@@ -16,7 +16,7 @@ const ORG_MEMBER = [...ORG, {
|
|
|
16
16
|
placeholder: "{member_id}"
|
|
17
17
|
}];
|
|
18
18
|
const listOrganizationMembers = defineSentryEndpoint({
|
|
19
|
-
id: "
|
|
19
|
+
id: "sentry.list-organization-members",
|
|
20
20
|
name: "List Organization Members",
|
|
21
21
|
description: "List the members of an organization with pagination.",
|
|
22
22
|
method: "GET",
|
|
@@ -33,7 +33,7 @@ const listOrganizationMembers = defineSentryEndpoint({
|
|
|
33
33
|
requiredOAuthScopes: [...SENTRY_SCOPE.memberRead]
|
|
34
34
|
});
|
|
35
35
|
const retrieveOrganizationMember = defineSentryEndpoint({
|
|
36
|
-
id: "
|
|
36
|
+
id: "sentry.retrieve-organization-member",
|
|
37
37
|
name: "Retrieve Organization Member",
|
|
38
38
|
description: "Fetch a single organization member by id.",
|
|
39
39
|
method: "GET",
|
|
@@ -44,7 +44,7 @@ const retrieveOrganizationMember = defineSentryEndpoint({
|
|
|
44
44
|
requiredOAuthScopes: [...SENTRY_SCOPE.memberRead]
|
|
45
45
|
});
|
|
46
46
|
const addOrganizationMemberViaEmail = defineSentryEndpoint({
|
|
47
|
-
id: "
|
|
47
|
+
id: "sentry.add-organization-member-via-email",
|
|
48
48
|
name: "Invite Member by Email",
|
|
49
49
|
description: "Invite a new member by email address with an optional org role and team list.",
|
|
50
50
|
method: "POST",
|
|
@@ -76,7 +76,7 @@ const addOrganizationMemberViaEmail = defineSentryEndpoint({
|
|
|
76
76
|
requiredOAuthScopes: [...SENTRY_SCOPE.memberWrite]
|
|
77
77
|
});
|
|
78
78
|
const updateOrganizationMemberRole = defineSentryEndpoint({
|
|
79
|
-
id: "
|
|
79
|
+
id: "sentry.update-organization-member-role",
|
|
80
80
|
name: "Update Member Role",
|
|
81
81
|
description: "Update an organization member’s role and/or team assignments.",
|
|
82
82
|
method: "PUT",
|
|
@@ -103,7 +103,7 @@ const updateOrganizationMemberRole = defineSentryEndpoint({
|
|
|
103
103
|
requiredOAuthScopes: [...SENTRY_SCOPE.memberWrite]
|
|
104
104
|
});
|
|
105
105
|
const deleteOrganizationMember = defineSentryEndpoint({
|
|
106
|
-
id: "
|
|
106
|
+
id: "sentry.delete-organization-member",
|
|
107
107
|
name: "Delete Organization Member",
|
|
108
108
|
description: "Remove a member from the organization.",
|
|
109
109
|
method: "DELETE",
|
|
@@ -115,7 +115,7 @@ const deleteOrganizationMember = defineSentryEndpoint({
|
|
|
115
115
|
requiredOAuthScopes: [...SENTRY_SCOPE.memberAdmin]
|
|
116
116
|
});
|
|
117
117
|
const patchUserActiveStatusInOrganization = defineSentryEndpoint({
|
|
118
|
-
id: "
|
|
118
|
+
id: "sentry.patch-user-active-status-in-organization",
|
|
119
119
|
name: "Update Member Active Status",
|
|
120
120
|
description: "Toggle a member’s active flag without removing them.",
|
|
121
121
|
method: "PATCH",
|
|
@@ -131,7 +131,7 @@ const patchUserActiveStatusInOrganization = defineSentryEndpoint({
|
|
|
131
131
|
requiredOAuthScopes: [...SENTRY_SCOPE.memberWrite]
|
|
132
132
|
});
|
|
133
133
|
const deleteUserFromOrg = defineSentryEndpoint({
|
|
134
|
-
id: "
|
|
134
|
+
id: "sentry.delete-user-from-org",
|
|
135
135
|
name: "Delete User From Organization",
|
|
136
136
|
description: "Alias of `delete_organization_member`. Kept for Composio parity.",
|
|
137
137
|
method: "DELETE",
|
package/dist/monitors.d.mts
CHANGED
|
@@ -23,13 +23,13 @@ declare const createOrganizationMonitor: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
23
23
|
name: z.ZodString;
|
|
24
24
|
status: z.ZodOptional<z.ZodEnum<{
|
|
25
25
|
error: "error";
|
|
26
|
+
timeout: "timeout";
|
|
26
27
|
active: "active";
|
|
27
28
|
disabled: "disabled";
|
|
28
|
-
ok: "ok";
|
|
29
|
-
missed_checkin: "missed_checkin";
|
|
30
|
-
timeout: "timeout";
|
|
31
29
|
pending_deletion: "pending_deletion";
|
|
32
30
|
deletion_in_progress: "deletion_in_progress";
|
|
31
|
+
ok: "ok";
|
|
32
|
+
missed_checkin: "missed_checkin";
|
|
33
33
|
}>>;
|
|
34
34
|
type: z.ZodOptional<z.ZodString>;
|
|
35
35
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -56,13 +56,13 @@ declare const retrieveOrganizationMonitors: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
56
56
|
name: z.ZodString;
|
|
57
57
|
status: z.ZodOptional<z.ZodEnum<{
|
|
58
58
|
error: "error";
|
|
59
|
+
timeout: "timeout";
|
|
59
60
|
active: "active";
|
|
60
61
|
disabled: "disabled";
|
|
61
|
-
ok: "ok";
|
|
62
|
-
missed_checkin: "missed_checkin";
|
|
63
|
-
timeout: "timeout";
|
|
64
62
|
pending_deletion: "pending_deletion";
|
|
65
63
|
deletion_in_progress: "deletion_in_progress";
|
|
64
|
+
ok: "ok";
|
|
65
|
+
missed_checkin: "missed_checkin";
|
|
66
66
|
}>>;
|
|
67
67
|
type: z.ZodOptional<z.ZodString>;
|
|
68
68
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -85,13 +85,13 @@ declare const getOrganizationMonitorByIdOrSlug: _keystrokehq_core0.Operation<z.Z
|
|
|
85
85
|
name: z.ZodString;
|
|
86
86
|
status: z.ZodOptional<z.ZodEnum<{
|
|
87
87
|
error: "error";
|
|
88
|
+
timeout: "timeout";
|
|
88
89
|
active: "active";
|
|
89
90
|
disabled: "disabled";
|
|
90
|
-
ok: "ok";
|
|
91
|
-
missed_checkin: "missed_checkin";
|
|
92
|
-
timeout: "timeout";
|
|
93
91
|
pending_deletion: "pending_deletion";
|
|
94
92
|
deletion_in_progress: "deletion_in_progress";
|
|
93
|
+
ok: "ok";
|
|
94
|
+
missed_checkin: "missed_checkin";
|
|
95
95
|
}>>;
|
|
96
96
|
type: z.ZodOptional<z.ZodString>;
|
|
97
97
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -123,13 +123,13 @@ declare const modifyOrganizationMonitorData: _keystrokehq_core0.Operation<z.ZodO
|
|
|
123
123
|
name: z.ZodString;
|
|
124
124
|
status: z.ZodOptional<z.ZodEnum<{
|
|
125
125
|
error: "error";
|
|
126
|
+
timeout: "timeout";
|
|
126
127
|
active: "active";
|
|
127
128
|
disabled: "disabled";
|
|
128
|
-
ok: "ok";
|
|
129
|
-
missed_checkin: "missed_checkin";
|
|
130
|
-
timeout: "timeout";
|
|
131
129
|
pending_deletion: "pending_deletion";
|
|
132
130
|
deletion_in_progress: "deletion_in_progress";
|
|
131
|
+
ok: "ok";
|
|
132
|
+
missed_checkin: "missed_checkin";
|
|
133
133
|
}>>;
|
|
134
134
|
type: z.ZodOptional<z.ZodString>;
|
|
135
135
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -165,13 +165,13 @@ declare const getProjectMonitorById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
165
165
|
name: z.ZodString;
|
|
166
166
|
status: z.ZodOptional<z.ZodEnum<{
|
|
167
167
|
error: "error";
|
|
168
|
+
timeout: "timeout";
|
|
168
169
|
active: "active";
|
|
169
170
|
disabled: "disabled";
|
|
170
|
-
ok: "ok";
|
|
171
|
-
missed_checkin: "missed_checkin";
|
|
172
|
-
timeout: "timeout";
|
|
173
171
|
pending_deletion: "pending_deletion";
|
|
174
172
|
deletion_in_progress: "deletion_in_progress";
|
|
173
|
+
ok: "ok";
|
|
174
|
+
missed_checkin: "missed_checkin";
|
|
175
175
|
}>>;
|
|
176
176
|
type: z.ZodOptional<z.ZodString>;
|
|
177
177
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -202,13 +202,13 @@ declare const updateProjectMonitor: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
202
202
|
name: z.ZodString;
|
|
203
203
|
status: z.ZodOptional<z.ZodEnum<{
|
|
204
204
|
error: "error";
|
|
205
|
+
timeout: "timeout";
|
|
205
206
|
active: "active";
|
|
206
207
|
disabled: "disabled";
|
|
207
|
-
ok: "ok";
|
|
208
|
-
missed_checkin: "missed_checkin";
|
|
209
|
-
timeout: "timeout";
|
|
210
208
|
pending_deletion: "pending_deletion";
|
|
211
209
|
deletion_in_progress: "deletion_in_progress";
|
|
210
|
+
ok: "ok";
|
|
211
|
+
missed_checkin: "missed_checkin";
|
|
212
212
|
}>>;
|
|
213
213
|
type: z.ZodOptional<z.ZodString>;
|
|
214
214
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -289,13 +289,13 @@ declare const sentryMonitorOperations: {
|
|
|
289
289
|
name: z.ZodString;
|
|
290
290
|
status: z.ZodOptional<z.ZodEnum<{
|
|
291
291
|
error: "error";
|
|
292
|
+
timeout: "timeout";
|
|
292
293
|
active: "active";
|
|
293
294
|
disabled: "disabled";
|
|
294
|
-
ok: "ok";
|
|
295
|
-
missed_checkin: "missed_checkin";
|
|
296
|
-
timeout: "timeout";
|
|
297
295
|
pending_deletion: "pending_deletion";
|
|
298
296
|
deletion_in_progress: "deletion_in_progress";
|
|
297
|
+
ok: "ok";
|
|
298
|
+
missed_checkin: "missed_checkin";
|
|
299
299
|
}>>;
|
|
300
300
|
type: z.ZodOptional<z.ZodString>;
|
|
301
301
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -322,13 +322,13 @@ declare const sentryMonitorOperations: {
|
|
|
322
322
|
name: z.ZodString;
|
|
323
323
|
status: z.ZodOptional<z.ZodEnum<{
|
|
324
324
|
error: "error";
|
|
325
|
+
timeout: "timeout";
|
|
325
326
|
active: "active";
|
|
326
327
|
disabled: "disabled";
|
|
327
|
-
ok: "ok";
|
|
328
|
-
missed_checkin: "missed_checkin";
|
|
329
|
-
timeout: "timeout";
|
|
330
328
|
pending_deletion: "pending_deletion";
|
|
331
329
|
deletion_in_progress: "deletion_in_progress";
|
|
330
|
+
ok: "ok";
|
|
331
|
+
missed_checkin: "missed_checkin";
|
|
332
332
|
}>>;
|
|
333
333
|
type: z.ZodOptional<z.ZodString>;
|
|
334
334
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -351,13 +351,13 @@ declare const sentryMonitorOperations: {
|
|
|
351
351
|
name: z.ZodString;
|
|
352
352
|
status: z.ZodOptional<z.ZodEnum<{
|
|
353
353
|
error: "error";
|
|
354
|
+
timeout: "timeout";
|
|
354
355
|
active: "active";
|
|
355
356
|
disabled: "disabled";
|
|
356
|
-
ok: "ok";
|
|
357
|
-
missed_checkin: "missed_checkin";
|
|
358
|
-
timeout: "timeout";
|
|
359
357
|
pending_deletion: "pending_deletion";
|
|
360
358
|
deletion_in_progress: "deletion_in_progress";
|
|
359
|
+
ok: "ok";
|
|
360
|
+
missed_checkin: "missed_checkin";
|
|
361
361
|
}>>;
|
|
362
362
|
type: z.ZodOptional<z.ZodString>;
|
|
363
363
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -389,13 +389,13 @@ declare const sentryMonitorOperations: {
|
|
|
389
389
|
name: z.ZodString;
|
|
390
390
|
status: z.ZodOptional<z.ZodEnum<{
|
|
391
391
|
error: "error";
|
|
392
|
+
timeout: "timeout";
|
|
392
393
|
active: "active";
|
|
393
394
|
disabled: "disabled";
|
|
394
|
-
ok: "ok";
|
|
395
|
-
missed_checkin: "missed_checkin";
|
|
396
|
-
timeout: "timeout";
|
|
397
395
|
pending_deletion: "pending_deletion";
|
|
398
396
|
deletion_in_progress: "deletion_in_progress";
|
|
397
|
+
ok: "ok";
|
|
398
|
+
missed_checkin: "missed_checkin";
|
|
399
399
|
}>>;
|
|
400
400
|
type: z.ZodOptional<z.ZodString>;
|
|
401
401
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -431,13 +431,13 @@ declare const sentryMonitorOperations: {
|
|
|
431
431
|
name: z.ZodString;
|
|
432
432
|
status: z.ZodOptional<z.ZodEnum<{
|
|
433
433
|
error: "error";
|
|
434
|
+
timeout: "timeout";
|
|
434
435
|
active: "active";
|
|
435
436
|
disabled: "disabled";
|
|
436
|
-
ok: "ok";
|
|
437
|
-
missed_checkin: "missed_checkin";
|
|
438
|
-
timeout: "timeout";
|
|
439
437
|
pending_deletion: "pending_deletion";
|
|
440
438
|
deletion_in_progress: "deletion_in_progress";
|
|
439
|
+
ok: "ok";
|
|
440
|
+
missed_checkin: "missed_checkin";
|
|
441
441
|
}>>;
|
|
442
442
|
type: z.ZodOptional<z.ZodString>;
|
|
443
443
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -468,13 +468,13 @@ declare const sentryMonitorOperations: {
|
|
|
468
468
|
name: z.ZodString;
|
|
469
469
|
status: z.ZodOptional<z.ZodEnum<{
|
|
470
470
|
error: "error";
|
|
471
|
+
timeout: "timeout";
|
|
471
472
|
active: "active";
|
|
472
473
|
disabled: "disabled";
|
|
473
|
-
ok: "ok";
|
|
474
|
-
missed_checkin: "missed_checkin";
|
|
475
|
-
timeout: "timeout";
|
|
476
474
|
pending_deletion: "pending_deletion";
|
|
477
475
|
deletion_in_progress: "deletion_in_progress";
|
|
476
|
+
ok: "ok";
|
|
477
|
+
missed_checkin: "missed_checkin";
|
|
478
478
|
}>>;
|
|
479
479
|
type: z.ZodOptional<z.ZodString>;
|
|
480
480
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
package/dist/monitors.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgProjectScopeInputSchema, orgScopeInputSchema, sentryJsonArraySchema, sentryJsonObjectSchema, sentryListInputSchema, sentryMonitorSchema, sentrySlugSchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
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_MONITOR = [
|
|
|
27
27
|
}
|
|
28
28
|
];
|
|
29
29
|
const createOrganizationMonitor = defineSentryEndpoint({
|
|
30
|
-
id: "
|
|
30
|
+
id: "sentry.create-organization-monitor",
|
|
31
31
|
name: "Create Monitor",
|
|
32
32
|
description: "Create a new cron-monitor scoped to the organization.",
|
|
33
33
|
method: "POST",
|
|
@@ -56,7 +56,7 @@ const createOrganizationMonitor = defineSentryEndpoint({
|
|
|
56
56
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
|
|
57
57
|
});
|
|
58
58
|
const retrieveOrganizationMonitors = defineSentryEndpoint({
|
|
59
|
-
id: "
|
|
59
|
+
id: "sentry.retrieve-organization-monitors",
|
|
60
60
|
name: "List Monitors",
|
|
61
61
|
description: "List cron-monitors in an organization.",
|
|
62
62
|
method: "GET",
|
|
@@ -78,7 +78,7 @@ const retrieveOrganizationMonitors = defineSentryEndpoint({
|
|
|
78
78
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
79
79
|
});
|
|
80
80
|
const getOrganizationMonitorByIdOrSlug = defineSentryEndpoint({
|
|
81
|
-
id: "
|
|
81
|
+
id: "sentry.get-organization-monitor-by-id-or-slug",
|
|
82
82
|
name: "Get Monitor",
|
|
83
83
|
description: "Fetch a single monitor by id or slug.",
|
|
84
84
|
method: "GET",
|
|
@@ -89,7 +89,7 @@ const getOrganizationMonitorByIdOrSlug = defineSentryEndpoint({
|
|
|
89
89
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
90
90
|
});
|
|
91
91
|
const modifyOrganizationMonitorData = defineSentryEndpoint({
|
|
92
|
-
id: "
|
|
92
|
+
id: "sentry.modify-organization-monitor-data",
|
|
93
93
|
name: "Update Monitor",
|
|
94
94
|
description: "Update an existing monitor by id or slug.",
|
|
95
95
|
method: "PUT",
|
|
@@ -117,7 +117,7 @@ const modifyOrganizationMonitorData = defineSentryEndpoint({
|
|
|
117
117
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
|
|
118
118
|
});
|
|
119
119
|
const deleteOrganizationMonitor = defineSentryEndpoint({
|
|
120
|
-
id: "
|
|
120
|
+
id: "sentry.delete-organization-monitor",
|
|
121
121
|
name: "Delete Monitor",
|
|
122
122
|
description: "Delete a monitor by id or slug.",
|
|
123
123
|
method: "DELETE",
|
|
@@ -129,7 +129,7 @@ const deleteOrganizationMonitor = defineSentryEndpoint({
|
|
|
129
129
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
|
|
130
130
|
});
|
|
131
131
|
const getProjectMonitorById = defineSentryEndpoint({
|
|
132
|
-
id: "
|
|
132
|
+
id: "sentry.get-project-monitor-by-id",
|
|
133
133
|
name: "Get Project Monitor",
|
|
134
134
|
description: "Fetch a monitor scoped to a project.",
|
|
135
135
|
method: "GET",
|
|
@@ -140,7 +140,7 @@ const getProjectMonitorById = defineSentryEndpoint({
|
|
|
140
140
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
141
141
|
});
|
|
142
142
|
const updateProjectMonitor = defineSentryEndpoint({
|
|
143
|
-
id: "
|
|
143
|
+
id: "sentry.update-project-monitor",
|
|
144
144
|
name: "Update Project Monitor",
|
|
145
145
|
description: "Update a project-scoped monitor.",
|
|
146
146
|
method: "PUT",
|
|
@@ -164,7 +164,7 @@ const updateProjectMonitor = defineSentryEndpoint({
|
|
|
164
164
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
|
|
165
165
|
});
|
|
166
166
|
const deleteProjectMonitor = defineSentryEndpoint({
|
|
167
|
-
id: "
|
|
167
|
+
id: "sentry.delete-project-monitor",
|
|
168
168
|
name: "Delete Project Monitor",
|
|
169
169
|
description: "Delete a project-scoped monitor.",
|
|
170
170
|
method: "DELETE",
|
|
@@ -176,7 +176,7 @@ const deleteProjectMonitor = defineSentryEndpoint({
|
|
|
176
176
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
|
|
177
177
|
});
|
|
178
178
|
const retrieveMonitorCheckins = defineSentryEndpoint({
|
|
179
|
-
id: "
|
|
179
|
+
id: "sentry.retrieve-monitor-checkins",
|
|
180
180
|
name: "Retrieve Monitor Check-Ins",
|
|
181
181
|
description: "List check-ins for a project monitor.",
|
|
182
182
|
method: "GET",
|
|
@@ -197,7 +197,7 @@ const retrieveMonitorCheckins = defineSentryEndpoint({
|
|
|
197
197
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
198
198
|
});
|
|
199
199
|
const retrieveMonitorCheckinsByOrg = defineSentryEndpoint({
|
|
200
|
-
id: "
|
|
200
|
+
id: "sentry.retrieve-monitor-checkins-by-org",
|
|
201
201
|
name: "Retrieve Monitor Check-Ins (Org)",
|
|
202
202
|
description: "List check-ins for an organization-level monitor.",
|
|
203
203
|
method: "GET",
|
package/dist/notifications.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgScopeInputSchema, sentryIdSchema, sentryListInputSchema, sentryNotificationActionSchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
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
|
|
|
@@ -16,7 +16,7 @@ const ORG_ACTION = [...ORG, {
|
|
|
16
16
|
placeholder: "{action_id}"
|
|
17
17
|
}];
|
|
18
18
|
const viewOrganizationNotificationActions = defineSentryEndpoint({
|
|
19
|
-
id: "
|
|
19
|
+
id: "sentry.view-organization-notification-actions",
|
|
20
20
|
name: "List Notification Actions",
|
|
21
21
|
description: "List organization notification actions.",
|
|
22
22
|
method: "GET",
|
|
@@ -40,7 +40,7 @@ const viewOrganizationNotificationActions = defineSentryEndpoint({
|
|
|
40
40
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsRead]
|
|
41
41
|
});
|
|
42
42
|
const retrieveNotificationActionByOrgId = defineSentryEndpoint({
|
|
43
|
-
id: "
|
|
43
|
+
id: "sentry.retrieve-notification-action-by-org-id",
|
|
44
44
|
name: "Retrieve Notification Action",
|
|
45
45
|
description: "Fetch a single notification action by id.",
|
|
46
46
|
method: "GET",
|
|
@@ -51,7 +51,7 @@ const retrieveNotificationActionByOrgId = defineSentryEndpoint({
|
|
|
51
51
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsRead]
|
|
52
52
|
});
|
|
53
53
|
const submitNotificationActionApiData = defineSentryEndpoint({
|
|
54
|
-
id: "
|
|
54
|
+
id: "sentry.submit-notification-action-api-data",
|
|
55
55
|
name: "Create Notification Action",
|
|
56
56
|
description: "Create a new organization notification action.",
|
|
57
57
|
method: "POST",
|
|
@@ -80,7 +80,7 @@ const submitNotificationActionApiData = defineSentryEndpoint({
|
|
|
80
80
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsWrite]
|
|
81
81
|
});
|
|
82
82
|
const modifyOrganizationNotificationAction = defineSentryEndpoint({
|
|
83
|
-
id: "
|
|
83
|
+
id: "sentry.modify-organization-notification-action",
|
|
84
84
|
name: "Update Notification Action",
|
|
85
85
|
description: "Update a notification action in place.",
|
|
86
86
|
method: "PUT",
|
|
@@ -110,7 +110,7 @@ const modifyOrganizationNotificationAction = defineSentryEndpoint({
|
|
|
110
110
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsWrite]
|
|
111
111
|
});
|
|
112
112
|
const deleteOrgNotificationAction = defineSentryEndpoint({
|
|
113
|
-
id: "
|
|
113
|
+
id: "sentry.delete-org-notification-action",
|
|
114
114
|
name: "Delete Notification Action",
|
|
115
115
|
description: "Delete a notification action by id.",
|
|
116
116
|
method: "DELETE",
|
package/dist/organizations.d.mts
CHANGED
|
@@ -95,9 +95,9 @@ declare const modifyOrganizationSettings: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
95
95
|
declare const getOrganizationEnvironments: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
96
96
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
97
97
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
98
|
-
all: "all";
|
|
99
98
|
visible: "visible";
|
|
100
99
|
hidden: "hidden";
|
|
100
|
+
all: "all";
|
|
101
101
|
}>>;
|
|
102
102
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
103
103
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -373,9 +373,9 @@ declare const sentryOrganizationOperations: {
|
|
|
373
373
|
readonly getOrganizationEnvironments: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
374
374
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
375
375
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
376
|
-
all: "all";
|
|
377
376
|
visible: "visible";
|
|
378
377
|
hidden: "hidden";
|
|
378
|
+
all: "all";
|
|
379
379
|
}>>;
|
|
380
380
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
381
381
|
id: z.ZodOptional<z.ZodString>;
|
package/dist/organizations.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgScopeInputSchema, sentryEnvironmentSchema, sentryJsonArraySchema, sentryJsonObjectSchema, sentryListInputSchema, sentryOrganizationDetailsSchema, sentryProjectSummarySchema, sentrySlugSchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
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
|
|
|
@@ -13,7 +13,7 @@ const ORG_PATH_PARAMS = [{
|
|
|
13
13
|
placeholder: "{organization_slug}"
|
|
14
14
|
}];
|
|
15
15
|
const getOrganizationByIdOrSlug = defineSentryEndpoint({
|
|
16
|
-
id: "
|
|
16
|
+
id: "sentry.get-organization-by-id-or-slug",
|
|
17
17
|
name: "Get Organization By ID or Slug",
|
|
18
18
|
description: "Return metadata for a single organization identified by its slug or numeric ID.",
|
|
19
19
|
method: "GET",
|
|
@@ -24,7 +24,7 @@ const getOrganizationByIdOrSlug = defineSentryEndpoint({
|
|
|
24
24
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
25
25
|
});
|
|
26
26
|
const getOrganizationDetails = defineSentryEndpoint({
|
|
27
|
-
id: "
|
|
27
|
+
id: "sentry.get-organization-details",
|
|
28
28
|
name: "Get Organization Details",
|
|
29
29
|
description: "Alias of `get_organization_by_id_or_slug` preserved for Composio parity.",
|
|
30
30
|
method: "GET",
|
|
@@ -35,7 +35,7 @@ const getOrganizationDetails = defineSentryEndpoint({
|
|
|
35
35
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
36
36
|
});
|
|
37
37
|
const modifyOrganizationSettings = defineSentryEndpoint({
|
|
38
|
-
id: "
|
|
38
|
+
id: "sentry.modify-organization-settings",
|
|
39
39
|
name: "Modify Organization Settings",
|
|
40
40
|
description: "Update organization settings such as display name, slug, or feature flags.",
|
|
41
41
|
method: "PUT",
|
|
@@ -84,7 +84,7 @@ const modifyOrganizationSettings = defineSentryEndpoint({
|
|
|
84
84
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgWrite]
|
|
85
85
|
});
|
|
86
86
|
const getOrganizationEnvironments = defineSentryEndpoint({
|
|
87
|
-
id: "
|
|
87
|
+
id: "sentry.get-organization-environments",
|
|
88
88
|
name: "Get Organization Environments",
|
|
89
89
|
description: "List the environments visible to the organization across all projects.",
|
|
90
90
|
method: "GET",
|
|
@@ -100,7 +100,7 @@ const getOrganizationEnvironments = defineSentryEndpoint({
|
|
|
100
100
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
101
101
|
});
|
|
102
102
|
const getOrganizationSessions = defineSentryEndpoint({
|
|
103
|
-
id: "
|
|
103
|
+
id: "sentry.get-organization-sessions",
|
|
104
104
|
name: "Get Organization Sessions",
|
|
105
105
|
description: "Fetch session-health aggregates for the organization. Supports Release Health queries.",
|
|
106
106
|
method: "GET",
|
|
@@ -136,7 +136,7 @@ const getOrganizationSessions = defineSentryEndpoint({
|
|
|
136
136
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
137
137
|
});
|
|
138
138
|
const getOrganizationStatsSummary = defineSentryEndpoint({
|
|
139
|
-
id: "
|
|
139
|
+
id: "sentry.get-organization-stats-summary",
|
|
140
140
|
name: "Get Organization Stats Summary",
|
|
141
141
|
description: "Return a high-level stats summary for the organization.",
|
|
142
142
|
method: "GET",
|
|
@@ -166,7 +166,7 @@ const getOrganizationStatsSummary = defineSentryEndpoint({
|
|
|
166
166
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
167
167
|
});
|
|
168
168
|
const retrieveOrganizationStatsV2 = defineSentryEndpoint({
|
|
169
|
-
id: "
|
|
169
|
+
id: "sentry.retrieve-organization-stats-v2",
|
|
170
170
|
name: "Retrieve Organization Stats (v2)",
|
|
171
171
|
description: "Return the v2 stats endpoint for outcomes/categories.",
|
|
172
172
|
method: "GET",
|
|
@@ -200,7 +200,7 @@ const retrieveOrganizationStatsV2 = defineSentryEndpoint({
|
|
|
200
200
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
201
201
|
});
|
|
202
202
|
const retrieveOrganizationRelayUsage = defineSentryEndpoint({
|
|
203
|
-
id: "
|
|
203
|
+
id: "sentry.retrieve-organization-relay-usage",
|
|
204
204
|
name: "Retrieve Organization Relay Usage",
|
|
205
205
|
description: "Return Relay (Sentry ingest proxy) usage metrics for the organization.",
|
|
206
206
|
method: "GET",
|
|
@@ -211,7 +211,7 @@ const retrieveOrganizationRelayUsage = defineSentryEndpoint({
|
|
|
211
211
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
212
212
|
});
|
|
213
213
|
const retrieveOrganizationProjects = defineSentryEndpoint({
|
|
214
|
-
id: "
|
|
214
|
+
id: "sentry.retrieve-organization-projects",
|
|
215
215
|
name: "Retrieve Organization Projects",
|
|
216
216
|
description: "List projects in an organization with pagination.",
|
|
217
217
|
method: "GET",
|
|
@@ -228,7 +228,7 @@ const retrieveOrganizationProjects = defineSentryEndpoint({
|
|
|
228
228
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
229
229
|
});
|
|
230
230
|
const postSpikeProtectionForOrganization = defineSentryEndpoint({
|
|
231
|
-
id: "
|
|
231
|
+
id: "sentry.post-spike-protection-for-organization",
|
|
232
232
|
name: "Enable / Disable Spike Protection",
|
|
233
233
|
description: "Toggle spike-protection on or off at the organization level.",
|
|
234
234
|
method: "POST",
|
|
@@ -241,7 +241,7 @@ const postSpikeProtectionForOrganization = defineSentryEndpoint({
|
|
|
241
241
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
|
|
242
242
|
});
|
|
243
243
|
const retrieveOrgIntegrationConfig = defineSentryEndpoint({
|
|
244
|
-
id: "
|
|
244
|
+
id: "sentry.retrieve-org-integration-config",
|
|
245
245
|
name: "Retrieve Organization Integration Config",
|
|
246
246
|
description: "Fetch the configuration schema for the set of integrations the org can install.",
|
|
247
247
|
method: "GET",
|
|
@@ -253,7 +253,7 @@ const retrieveOrgIntegrationConfig = defineSentryEndpoint({
|
|
|
253
253
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
254
254
|
});
|
|
255
255
|
const retrieveOrganizationIntegrationsList = defineSentryEndpoint({
|
|
256
|
-
id: "
|
|
256
|
+
id: "sentry.retrieve-organization-integrations-list",
|
|
257
257
|
name: "List Installed Organization Integrations",
|
|
258
258
|
description: "Return every provider integration installed on the organization.",
|
|
259
259
|
method: "GET",
|
|
@@ -273,7 +273,7 @@ const retrieveOrganizationIntegrationsList = defineSentryEndpoint({
|
|
|
273
273
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
274
274
|
});
|
|
275
275
|
const getIntegrationDetailsByOrg = defineSentryEndpoint({
|
|
276
|
-
id: "
|
|
276
|
+
id: "sentry.get-integration-details-by-org",
|
|
277
277
|
name: "Get Organization Integration Details",
|
|
278
278
|
description: "Fetch one installed integration record by its integration id.",
|
|
279
279
|
method: "GET",
|
|
@@ -287,7 +287,7 @@ const getIntegrationDetailsByOrg = defineSentryEndpoint({
|
|
|
287
287
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
288
288
|
});
|
|
289
289
|
const deleteOrganizationIntegration = defineSentryEndpoint({
|
|
290
|
-
id: "
|
|
290
|
+
id: "sentry.delete-organization-integration",
|
|
291
291
|
name: "Delete Organization Integration",
|
|
292
292
|
description: "Uninstall an integration installation from the organization.",
|
|
293
293
|
method: "DELETE",
|
|
@@ -302,7 +302,7 @@ const deleteOrganizationIntegration = defineSentryEndpoint({
|
|
|
302
302
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgAdmin]
|
|
303
303
|
});
|
|
304
304
|
const getSentryAppInstallationsForOrganization = defineSentryEndpoint({
|
|
305
|
-
id: "
|
|
305
|
+
id: "sentry.get-sentry-app-installations-for-organization",
|
|
306
306
|
name: "List Sentry App Installations for Organization",
|
|
307
307
|
description: "List all Sentry-app (integration platform) installations for the organization.",
|
|
308
308
|
method: "GET",
|
package/dist/project-keys.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgProjectScopeInputSchema, sentryIdSchema, sentryListInputSchema, sentryProjectKeySchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
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
|
|
|
@@ -19,7 +19,7 @@ const ORG_PROJECT_KEY = [...ORG_PROJECT, {
|
|
|
19
19
|
placeholder: "{key_id}"
|
|
20
20
|
}];
|
|
21
21
|
const createProjectKeyWithOptionalRateLimiting = defineSentryEndpoint({
|
|
22
|
-
id: "
|
|
22
|
+
id: "sentry.create-project-key-with-optional-rate-limiting",
|
|
23
23
|
name: "Create Project Key",
|
|
24
24
|
description: "Create a new project client key (DSN) with an optional rate-limit envelope.",
|
|
25
25
|
method: "POST",
|
|
@@ -38,7 +38,7 @@ const createProjectKeyWithOptionalRateLimiting = defineSentryEndpoint({
|
|
|
38
38
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
|
|
39
39
|
});
|
|
40
40
|
const retrieveProjectKeyDetails = defineSentryEndpoint({
|
|
41
|
-
id: "
|
|
41
|
+
id: "sentry.retrieve-project-key-details",
|
|
42
42
|
name: "Retrieve Project Key",
|
|
43
43
|
description: "Fetch one project client key by id.",
|
|
44
44
|
method: "GET",
|
|
@@ -49,7 +49,7 @@ const retrieveProjectKeyDetails = defineSentryEndpoint({
|
|
|
49
49
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
|
|
50
50
|
});
|
|
51
51
|
const retrieveProjectKeysByOrgAndProject = defineSentryEndpoint({
|
|
52
|
-
id: "
|
|
52
|
+
id: "sentry.retrieve-project-keys-by-org-and-project",
|
|
53
53
|
name: "List Project Keys",
|
|
54
54
|
description: "List every project client key (DSN) for a project.",
|
|
55
55
|
method: "GET",
|
|
@@ -66,7 +66,7 @@ const retrieveProjectKeysByOrgAndProject = defineSentryEndpoint({
|
|
|
66
66
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
|
|
67
67
|
});
|
|
68
68
|
const updateProjectKeyConfiguration = defineSentryEndpoint({
|
|
69
|
-
id: "
|
|
69
|
+
id: "sentry.update-project-key-configuration",
|
|
70
70
|
name: "Update Project Key",
|
|
71
71
|
description: "Update a project client key’s name, active flag, or rate-limit.",
|
|
72
72
|
method: "PUT",
|
|
@@ -99,7 +99,7 @@ const updateProjectKeyConfiguration = defineSentryEndpoint({
|
|
|
99
99
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectAdmin]
|
|
100
100
|
});
|
|
101
101
|
const deleteProjectKey = defineSentryEndpoint({
|
|
102
|
-
id: "
|
|
102
|
+
id: "sentry.delete-project-key",
|
|
103
103
|
name: "Delete Project Key",
|
|
104
104
|
description: "Delete a project client key by id.",
|
|
105
105
|
method: "DELETE",
|