@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
|
@@ -26,7 +26,7 @@ declare const sentryAppCredentialSet: CredentialSet<"keystroke:sentry-app", z.Zo
|
|
|
26
26
|
type SentryAppCredentials = InferCredentialSetAuth<typeof sentryAppCredentialSet>;
|
|
27
27
|
declare const sentryOfficialProviderSeed: {
|
|
28
28
|
readonly provider: "sentry";
|
|
29
|
-
readonly appRef: "sentry-
|
|
29
|
+
readonly appRef: "sentry-official";
|
|
30
30
|
readonly displayName: "Sentry Platform";
|
|
31
31
|
readonly credentialSetName: "Keystroke Sentry Platform App";
|
|
32
32
|
readonly envShape: {
|
package/dist/_official/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as sentryOfficialProviderSeed, i as sentryAppCredentialSet, n as sentryBundle, r as sentryOfficialIntegration } from "../integration-
|
|
1
|
+
import { a as sentryOfficialProviderSeed, i as sentryAppCredentialSet, n as sentryBundle, r as sentryOfficialIntegration } from "../integration-Q9y2TMhZ.mjs";
|
|
2
2
|
|
|
3
3
|
export { sentryAppCredentialSet, sentryBundle, sentryOfficialIntegration, sentryOfficialProviderSeed };
|
package/dist/_runtime/index.mjs
CHANGED
package/dist/alerts.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgProjectScopeInputSchema, orgScopeInputSchema, sentryIdSchema, sentryIssueAlertRuleSchema, sentryJsonObjectSchema, sentryListInputSchema, sentryMetricAlertRuleSchema } 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
|
|
|
@@ -25,7 +25,7 @@ const ORG_PROJECT_RULE = [...ORG_PROJECT, {
|
|
|
25
25
|
placeholder: "{rule_id}"
|
|
26
26
|
}];
|
|
27
27
|
const createOrganizationAlertRule = defineSentryEndpoint({
|
|
28
|
-
id: "
|
|
28
|
+
id: "sentry.create-organization-alert-rule",
|
|
29
29
|
name: "Create Metric Alert Rule",
|
|
30
30
|
description: "Create a new organization metric alert rule.",
|
|
31
31
|
method: "POST",
|
|
@@ -64,7 +64,7 @@ const createOrganizationAlertRule = defineSentryEndpoint({
|
|
|
64
64
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsWrite]
|
|
65
65
|
});
|
|
66
66
|
const fetchOrganizationAlertRules = defineSentryEndpoint({
|
|
67
|
-
id: "
|
|
67
|
+
id: "sentry.fetch-organization-alert-rules",
|
|
68
68
|
name: "List Metric Alert Rules",
|
|
69
69
|
description: "List organization metric alert rules.",
|
|
70
70
|
method: "GET",
|
|
@@ -81,7 +81,7 @@ const fetchOrganizationAlertRules = defineSentryEndpoint({
|
|
|
81
81
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsRead]
|
|
82
82
|
});
|
|
83
83
|
const retrieveAlertRuleDetails = defineSentryEndpoint({
|
|
84
|
-
id: "
|
|
84
|
+
id: "sentry.retrieve-alert-rule-details",
|
|
85
85
|
name: "Retrieve Metric Alert Rule",
|
|
86
86
|
description: "Fetch a metric alert rule by id.",
|
|
87
87
|
method: "GET",
|
|
@@ -92,7 +92,7 @@ const retrieveAlertRuleDetails = defineSentryEndpoint({
|
|
|
92
92
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsRead]
|
|
93
93
|
});
|
|
94
94
|
const updateOrganizationAlertRules = defineSentryEndpoint({
|
|
95
|
-
id: "
|
|
95
|
+
id: "sentry.update-organization-alert-rules",
|
|
96
96
|
name: "Update Metric Alert Rule",
|
|
97
97
|
description: "Update a metric alert rule in place.",
|
|
98
98
|
method: "PUT",
|
|
@@ -132,7 +132,7 @@ const updateOrganizationAlertRules = defineSentryEndpoint({
|
|
|
132
132
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsWrite]
|
|
133
133
|
});
|
|
134
134
|
const deleteOrganizationAlertRule = defineSentryEndpoint({
|
|
135
|
-
id: "
|
|
135
|
+
id: "sentry.delete-organization-alert-rule",
|
|
136
136
|
name: "Delete Metric Alert Rule",
|
|
137
137
|
description: "Delete a metric alert rule by id.",
|
|
138
138
|
method: "DELETE",
|
|
@@ -144,7 +144,7 @@ const deleteOrganizationAlertRule = defineSentryEndpoint({
|
|
|
144
144
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsWrite]
|
|
145
145
|
});
|
|
146
146
|
const getActivationOfAlertRuleForOrganization = defineSentryEndpoint({
|
|
147
|
-
id: "
|
|
147
|
+
id: "sentry.get-activation-of-alert-rule-for-organization",
|
|
148
148
|
name: "Get Alert Rule Activation",
|
|
149
149
|
description: "Fetch the activation history for a metric alert rule.",
|
|
150
150
|
method: "GET",
|
|
@@ -160,7 +160,7 @@ const getActivationOfAlertRuleForOrganization = defineSentryEndpoint({
|
|
|
160
160
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsRead]
|
|
161
161
|
});
|
|
162
162
|
const createProjectRuleForAlerts = defineSentryEndpoint({
|
|
163
|
-
id: "
|
|
163
|
+
id: "sentry.create-project-rule-for-alerts",
|
|
164
164
|
name: "Create Issue Alert Rule",
|
|
165
165
|
description: "Create a project issue alert rule.",
|
|
166
166
|
method: "POST",
|
|
@@ -201,7 +201,7 @@ const createProjectRuleForAlerts = defineSentryEndpoint({
|
|
|
201
201
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsWrite]
|
|
202
202
|
});
|
|
203
203
|
const retrieveProjectRulesByOrgAndProjectId = defineSentryEndpoint({
|
|
204
|
-
id: "
|
|
204
|
+
id: "sentry.retrieve-project-rules-by-org-and-project-id",
|
|
205
205
|
name: "List Issue Alert Rules",
|
|
206
206
|
description: "List project issue alert rules.",
|
|
207
207
|
method: "GET",
|
|
@@ -218,7 +218,7 @@ const retrieveProjectRulesByOrgAndProjectId = defineSentryEndpoint({
|
|
|
218
218
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsRead]
|
|
219
219
|
});
|
|
220
220
|
const getProjectRuleDetails = defineSentryEndpoint({
|
|
221
|
-
id: "
|
|
221
|
+
id: "sentry.get-project-rule-details",
|
|
222
222
|
name: "Get Issue Alert Rule",
|
|
223
223
|
description: "Fetch a single issue alert rule by id.",
|
|
224
224
|
method: "GET",
|
|
@@ -229,7 +229,7 @@ const getProjectRuleDetails = defineSentryEndpoint({
|
|
|
229
229
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsRead]
|
|
230
230
|
});
|
|
231
231
|
const updateProjectRuleById = defineSentryEndpoint({
|
|
232
|
-
id: "
|
|
232
|
+
id: "sentry.update-project-rule-by-id",
|
|
233
233
|
name: "Update Issue Alert Rule",
|
|
234
234
|
description: "Update a project issue alert rule.",
|
|
235
235
|
method: "PUT",
|
|
@@ -271,7 +271,7 @@ const updateProjectRuleById = defineSentryEndpoint({
|
|
|
271
271
|
requiredOAuthScopes: [...SENTRY_SCOPE.alertsWrite]
|
|
272
272
|
});
|
|
273
273
|
const deleteProjectRule = defineSentryEndpoint({
|
|
274
|
-
id: "
|
|
274
|
+
id: "sentry.delete-project-rule",
|
|
275
275
|
name: "Delete Issue Alert Rule",
|
|
276
276
|
description: "Delete a project issue alert rule.",
|
|
277
277
|
method: "DELETE",
|
package/dist/connection.mjs
CHANGED
package/dist/dashboards.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgScopeInputSchema, sentryDashboardSchema, sentryIdSchema, sentryJsonObjectSchema, sentryListInputSchema } 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_DASHBOARD = [...ORG, {
|
|
|
16
16
|
placeholder: "{dashboard_id}"
|
|
17
17
|
}];
|
|
18
18
|
const createDashboardWithWidgets = defineSentryEndpoint({
|
|
19
|
-
id: "
|
|
19
|
+
id: "sentry.create-dashboard-with-widgets",
|
|
20
20
|
name: "Create Dashboard",
|
|
21
21
|
description: "Create a new dashboard with widgets.",
|
|
22
22
|
method: "POST",
|
|
@@ -43,7 +43,7 @@ const createDashboardWithWidgets = defineSentryEndpoint({
|
|
|
43
43
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgWrite]
|
|
44
44
|
});
|
|
45
45
|
const listOrganizationDashboards = defineSentryEndpoint({
|
|
46
|
-
id: "
|
|
46
|
+
id: "sentry.list-organization-dashboards",
|
|
47
47
|
name: "List Dashboards",
|
|
48
48
|
description: "List organization dashboards.",
|
|
49
49
|
method: "GET",
|
|
@@ -60,7 +60,7 @@ const listOrganizationDashboards = defineSentryEndpoint({
|
|
|
60
60
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
61
61
|
});
|
|
62
62
|
const retrieveOrganizationDashboard = defineSentryEndpoint({
|
|
63
|
-
id: "
|
|
63
|
+
id: "sentry.retrieve-organization-dashboard",
|
|
64
64
|
name: "Retrieve Dashboard",
|
|
65
65
|
description: "Fetch one dashboard by id.",
|
|
66
66
|
method: "GET",
|
|
@@ -71,7 +71,7 @@ const retrieveOrganizationDashboard = defineSentryEndpoint({
|
|
|
71
71
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
72
72
|
});
|
|
73
73
|
const updateOrganizationDashboard = defineSentryEndpoint({
|
|
74
|
-
id: "
|
|
74
|
+
id: "sentry.update-organization-dashboard",
|
|
75
75
|
name: "Update Dashboard",
|
|
76
76
|
description: "Update a dashboard’s title or widget layout.",
|
|
77
77
|
method: "PUT",
|
|
@@ -99,7 +99,7 @@ const updateOrganizationDashboard = defineSentryEndpoint({
|
|
|
99
99
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgWrite]
|
|
100
100
|
});
|
|
101
101
|
const deleteOrganizationDashboard = defineSentryEndpoint({
|
|
102
|
-
id: "
|
|
102
|
+
id: "sentry.delete-organization-dashboard",
|
|
103
103
|
name: "Delete Dashboard",
|
|
104
104
|
description: "Delete a dashboard by id.",
|
|
105
105
|
method: "DELETE",
|
package/dist/debug-files.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgProjectScopeInputSchema, sentryDebugFileSchema, sentryIdSchema, sentryListInputSchema } 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_PROJECT = [{
|
|
|
16
16
|
placeholder: "{project_slug}"
|
|
17
17
|
}];
|
|
18
18
|
const retrieveDsymFilesForProject = defineSentryEndpoint({
|
|
19
|
-
id: "
|
|
19
|
+
id: "sentry.retrieve-dsym-files-for-project",
|
|
20
20
|
name: "List Debug Files",
|
|
21
21
|
description: "List the uploaded debug-information files (dSYMs, etc.) for a project.",
|
|
22
22
|
method: "GET",
|
|
@@ -38,7 +38,7 @@ const retrieveDsymFilesForProject = defineSentryEndpoint({
|
|
|
38
38
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
39
39
|
});
|
|
40
40
|
const uploadDsymsFileToProject = defineSentryEndpoint({
|
|
41
|
-
id: "
|
|
41
|
+
id: "sentry.upload-dsyms-file-to-project",
|
|
42
42
|
name: "Upload Debug File",
|
|
43
43
|
description: "Record a debug-information file upload for a project. Actual multipart upload uses the `client.request` escape hatch with `rawBody`.",
|
|
44
44
|
method: "POST",
|
|
@@ -51,7 +51,7 @@ const uploadDsymsFileToProject = defineSentryEndpoint({
|
|
|
51
51
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectWrite]
|
|
52
52
|
});
|
|
53
53
|
const deleteDsymsForProject = defineSentryEndpoint({
|
|
54
|
-
id: "
|
|
54
|
+
id: "sentry.delete-dsyms-for-project",
|
|
55
55
|
name: "Delete Debug File",
|
|
56
56
|
description: "Delete a debug-information file by id.",
|
|
57
57
|
method: "DELETE",
|
package/dist/deploys.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgReleaseScopeInputSchema, sentryDeploySchema, sentryListInputSchema } 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
|
|
|
@@ -15,7 +15,7 @@ const ORG_VERSION = [{
|
|
|
15
15
|
placeholder: "{version}"
|
|
16
16
|
}];
|
|
17
17
|
const createReleaseDeployForOrg = defineSentryEndpoint({
|
|
18
|
-
id: "
|
|
18
|
+
id: "sentry.create-release-deploy-for-org",
|
|
19
19
|
name: "Create Release Deploy",
|
|
20
20
|
description: "Mark a deploy for a release in an environment.",
|
|
21
21
|
method: "POST",
|
|
@@ -42,7 +42,7 @@ const createReleaseDeployForOrg = defineSentryEndpoint({
|
|
|
42
42
|
requiredOAuthScopes: [...SENTRY_SCOPE.releaseAdmin]
|
|
43
43
|
});
|
|
44
44
|
const retrieveReleaseDeployments = defineSentryEndpoint({
|
|
45
|
-
id: "
|
|
45
|
+
id: "sentry.retrieve-release-deployments",
|
|
46
46
|
name: "Retrieve Release Deployments",
|
|
47
47
|
description: "List deploys previously recorded against a release.",
|
|
48
48
|
method: "GET",
|
package/dist/discover.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgScopeInputSchema, sentryDiscoverSavedQuerySchema, sentryIdSchema, sentryListInputSchema } 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_QUERY = [...ORG, {
|
|
|
16
16
|
placeholder: "{query_id}"
|
|
17
17
|
}];
|
|
18
18
|
const saveOrganizationDiscoverQuery = defineSentryEndpoint({
|
|
19
|
-
id: "
|
|
19
|
+
id: "sentry.save-organization-discover-query",
|
|
20
20
|
name: "Save Discover Query",
|
|
21
21
|
description: "Create a new saved Discover query.",
|
|
22
22
|
method: "POST",
|
|
@@ -51,7 +51,7 @@ const saveOrganizationDiscoverQuery = defineSentryEndpoint({
|
|
|
51
51
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgWrite]
|
|
52
52
|
});
|
|
53
53
|
const retrieveSavedDiscoverQueries = defineSentryEndpoint({
|
|
54
|
-
id: "
|
|
54
|
+
id: "sentry.retrieve-saved-discover-queries",
|
|
55
55
|
name: "List Saved Discover Queries",
|
|
56
56
|
description: "List saved Discover queries.",
|
|
57
57
|
method: "GET",
|
|
@@ -68,7 +68,7 @@ const retrieveSavedDiscoverQueries = defineSentryEndpoint({
|
|
|
68
68
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
69
69
|
});
|
|
70
70
|
const retrieveSavedDiscoverQueryForOrganization = defineSentryEndpoint({
|
|
71
|
-
id: "
|
|
71
|
+
id: "sentry.retrieve-saved-discover-query-for-organization",
|
|
72
72
|
name: "Retrieve Saved Discover Query",
|
|
73
73
|
description: "Fetch one saved Discover query by id.",
|
|
74
74
|
method: "GET",
|
|
@@ -79,7 +79,7 @@ const retrieveSavedDiscoverQueryForOrganization = defineSentryEndpoint({
|
|
|
79
79
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgRead]
|
|
80
80
|
});
|
|
81
81
|
const updateSavedQueryForOrganization = defineSentryEndpoint({
|
|
82
|
-
id: "
|
|
82
|
+
id: "sentry.update-saved-query-for-organization",
|
|
83
83
|
name: "Update Saved Discover Query",
|
|
84
84
|
description: "Update a saved Discover query.",
|
|
85
85
|
method: "PUT",
|
|
@@ -115,7 +115,7 @@ const updateSavedQueryForOrganization = defineSentryEndpoint({
|
|
|
115
115
|
requiredOAuthScopes: [...SENTRY_SCOPE.orgWrite]
|
|
116
116
|
});
|
|
117
117
|
const deleteOrganizationDiscoverQuery = defineSentryEndpoint({
|
|
118
|
-
id: "
|
|
118
|
+
id: "sentry.delete-organization-discover-query",
|
|
119
119
|
name: "Delete Saved Discover Query",
|
|
120
120
|
description: "Delete a saved Discover query by id.",
|
|
121
121
|
method: "DELETE",
|
package/dist/environments.d.mts
CHANGED
|
@@ -7,9 +7,9 @@ declare const retrieveProjectEnvironments: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
7
7
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
8
8
|
project_slug: z.ZodString;
|
|
9
9
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
10
|
-
all: "all";
|
|
11
10
|
visible: "visible";
|
|
12
11
|
hidden: "hidden";
|
|
12
|
+
all: "all";
|
|
13
13
|
}>>;
|
|
14
14
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
15
15
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -64,9 +64,9 @@ declare const sentryEnvironmentOperations: {
|
|
|
64
64
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
65
65
|
project_slug: z.ZodString;
|
|
66
66
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
67
|
-
all: "all";
|
|
68
67
|
visible: "visible";
|
|
69
68
|
hidden: "hidden";
|
|
69
|
+
all: "all";
|
|
70
70
|
}>>;
|
|
71
71
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
72
72
|
id: z.ZodOptional<z.ZodString>;
|
package/dist/environments.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgProjectScopeInputSchema, sentryEnvironmentSchema } 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_ENV = [...ORG_PROJECT, {
|
|
|
19
19
|
placeholder: "{environment}"
|
|
20
20
|
}];
|
|
21
21
|
const retrieveProjectEnvironments = defineSentryEndpoint({
|
|
22
|
-
id: "
|
|
22
|
+
id: "sentry.retrieve-project-environments",
|
|
23
23
|
name: "Retrieve Project Environments",
|
|
24
24
|
description: "List the environments associated with a project.",
|
|
25
25
|
method: "GET",
|
|
@@ -35,7 +35,7 @@ const retrieveProjectEnvironments = defineSentryEndpoint({
|
|
|
35
35
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
36
36
|
});
|
|
37
37
|
const fetchProjectEnvironmentDetails = defineSentryEndpoint({
|
|
38
|
-
id: "
|
|
38
|
+
id: "sentry.fetch-project-environment-details",
|
|
39
39
|
name: "Fetch Project Environment Details",
|
|
40
40
|
description: "Fetch details for one project environment by name.",
|
|
41
41
|
method: "GET",
|
|
@@ -46,7 +46,7 @@ const fetchProjectEnvironmentDetails = defineSentryEndpoint({
|
|
|
46
46
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
47
47
|
});
|
|
48
48
|
const updateEnvironmentVisibility = defineSentryEndpoint({
|
|
49
|
-
id: "
|
|
49
|
+
id: "sentry.update-environment-visibility",
|
|
50
50
|
name: "Update Environment Visibility",
|
|
51
51
|
description: "Toggle the `isHidden` flag for a project environment.",
|
|
52
52
|
method: "PUT",
|
package/dist/events-api.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgIssueScopeInputSchema, orgProjectScopeInputSchema, orgScopeInputSchema, sentryEventSchema, sentryIdSchema, sentryJsonArraySchema, sentryJsonObjectSchema, sentryListInputSchema } 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
|
|
|
@@ -20,7 +20,7 @@ const ORG_ISSUE = [...ORG, {
|
|
|
20
20
|
placeholder: "{issue_id}"
|
|
21
21
|
}];
|
|
22
22
|
const fetchIssueEventById = defineSentryEndpoint({
|
|
23
|
-
id: "
|
|
23
|
+
id: "sentry.fetch-issue-event-by-id",
|
|
24
24
|
name: "Fetch Issue Event",
|
|
25
25
|
description: "Fetch a single event that belongs to an issue by event id.",
|
|
26
26
|
method: "GET",
|
|
@@ -34,7 +34,7 @@ const fetchIssueEventById = defineSentryEndpoint({
|
|
|
34
34
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
35
35
|
});
|
|
36
36
|
const retrieveProjectEventById = defineSentryEndpoint({
|
|
37
|
-
id: "
|
|
37
|
+
id: "sentry.retrieve-project-event-by-id",
|
|
38
38
|
name: "Retrieve Project Event",
|
|
39
39
|
description: "Fetch a single event scoped to a project by event id.",
|
|
40
40
|
method: "GET",
|
|
@@ -48,7 +48,7 @@ const retrieveProjectEventById = defineSentryEndpoint({
|
|
|
48
48
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
49
49
|
});
|
|
50
50
|
const getProjectEvents = defineSentryEndpoint({
|
|
51
|
-
id: "
|
|
51
|
+
id: "sentry.get-project-events",
|
|
52
52
|
name: "List Project Events",
|
|
53
53
|
description: "List recent events in a project.",
|
|
54
54
|
method: "GET",
|
|
@@ -70,7 +70,7 @@ const getProjectEvents = defineSentryEndpoint({
|
|
|
70
70
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
71
71
|
});
|
|
72
72
|
const getProjectEventStats = defineSentryEndpoint({
|
|
73
|
-
id: "
|
|
73
|
+
id: "sentry.get-project-event-stats",
|
|
74
74
|
name: "Get Project Event Stats",
|
|
75
75
|
description: "Return time-series event counts for a project.",
|
|
76
76
|
method: "GET",
|
|
@@ -97,7 +97,7 @@ const getProjectEventStats = defineSentryEndpoint({
|
|
|
97
97
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
98
98
|
});
|
|
99
99
|
const retrieveOrganizationEvents = defineSentryEndpoint({
|
|
100
|
-
id: "
|
|
100
|
+
id: "sentry.retrieve-organization-events",
|
|
101
101
|
name: "Retrieve Organization Events (Discover)",
|
|
102
102
|
description: "Query the Discover event dataset across an organization with field, query, and aggregation support.",
|
|
103
103
|
method: "GET",
|
|
@@ -138,7 +138,7 @@ const retrieveOrganizationEvents = defineSentryEndpoint({
|
|
|
138
138
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
139
139
|
});
|
|
140
140
|
const retrieveEventIdForOrganization = defineSentryEndpoint({
|
|
141
|
-
id: "
|
|
141
|
+
id: "sentry.retrieve-event-id-for-organization",
|
|
142
142
|
name: "Retrieve Event By ID (Org)",
|
|
143
143
|
description: "Look up a single event across an organization by its event id.",
|
|
144
144
|
method: "GET",
|
|
@@ -152,7 +152,7 @@ const retrieveEventIdForOrganization = defineSentryEndpoint({
|
|
|
152
152
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
153
153
|
});
|
|
154
154
|
const retrieveSourceMapDebugEvent = defineSentryEndpoint({
|
|
155
|
-
id: "
|
|
155
|
+
id: "sentry.retrieve-source-map-debug-event",
|
|
156
156
|
name: "Retrieve Source Map Debug Event",
|
|
157
157
|
description: "Return source-map debug diagnostics for a single event.",
|
|
158
158
|
method: "GET",
|
package/dist/feedback.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgProjectScopeInputSchema, sentryFeedbackSchema, sentryIdSchema, sentryListInputSchema } 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
|
|
|
@@ -15,7 +15,7 @@ const ORG_PROJECT = [{
|
|
|
15
15
|
placeholder: "{project_slug}"
|
|
16
16
|
}];
|
|
17
17
|
const retrieveUserFeedbackForProject = defineSentryEndpoint({
|
|
18
|
-
id: "
|
|
18
|
+
id: "sentry.retrieve-user-feedback-for-project",
|
|
19
19
|
name: "List User Feedback",
|
|
20
20
|
description: "List user feedback submissions for a project.",
|
|
21
21
|
method: "GET",
|
|
@@ -32,7 +32,7 @@ const retrieveUserFeedbackForProject = defineSentryEndpoint({
|
|
|
32
32
|
requiredOAuthScopes: [...SENTRY_SCOPE.projectRead]
|
|
33
33
|
});
|
|
34
34
|
const submitProjectUserFeedback = defineSentryEndpoint({
|
|
35
|
-
id: "
|
|
35
|
+
id: "sentry.submit-project-user-feedback",
|
|
36
36
|
name: "Submit User Feedback",
|
|
37
37
|
description: "Submit a user-feedback record against an event.",
|
|
38
38
|
method: "POST",
|
|
@@ -26,7 +26,7 @@ const sentryAppCredentialSet = new CredentialSet({
|
|
|
26
26
|
});
|
|
27
27
|
const sentryOfficialProviderSeed = {
|
|
28
28
|
provider: "sentry",
|
|
29
|
-
appRef: "sentry-
|
|
29
|
+
appRef: "sentry-official",
|
|
30
30
|
displayName: "Sentry Platform",
|
|
31
31
|
credentialSetName: "Keystroke Sentry Platform App",
|
|
32
32
|
envShape: {
|
package/dist/issues.d.mts
CHANGED
|
@@ -12,11 +12,11 @@ declare const retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
12
12
|
query: z.ZodOptional<z.ZodString>;
|
|
13
13
|
environment: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14
14
|
sort: z.ZodOptional<z.ZodEnum<{
|
|
15
|
-
user: "user";
|
|
16
15
|
date: "date";
|
|
17
16
|
new: "new";
|
|
18
17
|
priority: "priority";
|
|
19
18
|
freq: "freq";
|
|
19
|
+
user: "user";
|
|
20
20
|
trends: "trends";
|
|
21
21
|
}>>;
|
|
22
22
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -290,11 +290,11 @@ declare const sentryIssueOperations: {
|
|
|
290
290
|
query: z.ZodOptional<z.ZodString>;
|
|
291
291
|
environment: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
292
292
|
sort: z.ZodOptional<z.ZodEnum<{
|
|
293
|
-
user: "user";
|
|
294
293
|
date: "date";
|
|
295
294
|
new: "new";
|
|
296
295
|
priority: "priority";
|
|
297
296
|
freq: "freq";
|
|
297
|
+
user: "user";
|
|
298
298
|
trends: "trends";
|
|
299
299
|
}>>;
|
|
300
300
|
limit: z.ZodOptional<z.ZodNumber>;
|
package/dist/issues.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgIssueScopeInputSchema, orgProjectScopeInputSchema, orgScopeInputSchema, sentryIdSchema, sentryIssueSchema, sentryIssueStatusSchema, sentryJsonArraySchema, sentryJsonObjectSchema, sentryListInputSchema } 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
|
|
|
@@ -20,7 +20,7 @@ const ORG_ISSUE = [...ORG, {
|
|
|
20
20
|
placeholder: "{issue_id}"
|
|
21
21
|
}];
|
|
22
22
|
const retrieveProjectIssuesList = defineSentryEndpoint({
|
|
23
|
-
id: "
|
|
23
|
+
id: "sentry.retrieve-project-issues-list",
|
|
24
24
|
name: "List Project Issues",
|
|
25
25
|
description: "List issues for a project.",
|
|
26
26
|
method: "GET",
|
|
@@ -54,7 +54,7 @@ const retrieveProjectIssuesList = defineSentryEndpoint({
|
|
|
54
54
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
55
55
|
});
|
|
56
56
|
const getOrganizationIssueDetails = defineSentryEndpoint({
|
|
57
|
-
id: "
|
|
57
|
+
id: "sentry.get-organization-issue-details",
|
|
58
58
|
name: "Get Issue Details",
|
|
59
59
|
description: "Fetch a single issue by id.",
|
|
60
60
|
method: "GET",
|
|
@@ -65,7 +65,7 @@ const getOrganizationIssueDetails = defineSentryEndpoint({
|
|
|
65
65
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
66
66
|
});
|
|
67
67
|
const updateIssueAttributesInOrganization = defineSentryEndpoint({
|
|
68
|
-
id: "
|
|
68
|
+
id: "sentry.update-issue-attributes-in-organization",
|
|
69
69
|
name: "Update Issue Attributes (Org Scope)",
|
|
70
70
|
description: "Update issue status, assignee, or tags on one or more issues identified by id list.",
|
|
71
71
|
method: "PUT",
|
|
@@ -108,7 +108,7 @@ const updateIssueAttributesInOrganization = defineSentryEndpoint({
|
|
|
108
108
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventAdmin]
|
|
109
109
|
});
|
|
110
110
|
const updateProjectIssueStatusAndDetails = defineSentryEndpoint({
|
|
111
|
-
id: "
|
|
111
|
+
id: "sentry.update-project-issue-status-and-details",
|
|
112
112
|
name: "Update Issues (Project Scope)",
|
|
113
113
|
description: "Bulk-update issues in a single project by id set or query.",
|
|
114
114
|
method: "PUT",
|
|
@@ -143,7 +143,7 @@ const updateProjectIssueStatusAndDetails = defineSentryEndpoint({
|
|
|
143
143
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventAdmin]
|
|
144
144
|
});
|
|
145
145
|
const deleteOrganizationIssue = defineSentryEndpoint({
|
|
146
|
-
id: "
|
|
146
|
+
id: "sentry.delete-organization-issue",
|
|
147
147
|
name: "Delete Issue (Org Scope)",
|
|
148
148
|
description: "Delete an issue by id.",
|
|
149
149
|
method: "DELETE",
|
|
@@ -155,7 +155,7 @@ const deleteOrganizationIssue = defineSentryEndpoint({
|
|
|
155
155
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventAdmin]
|
|
156
156
|
});
|
|
157
157
|
const deleteProjectIssues = defineSentryEndpoint({
|
|
158
|
-
id: "
|
|
158
|
+
id: "sentry.delete-project-issues",
|
|
159
159
|
name: "Delete Project Issues",
|
|
160
160
|
description: "Bulk-delete issues on a project by id list or query.",
|
|
161
161
|
method: "DELETE",
|
|
@@ -171,7 +171,7 @@ const deleteProjectIssues = defineSentryEndpoint({
|
|
|
171
171
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventAdmin]
|
|
172
172
|
});
|
|
173
173
|
const retrieveIssueEventsById = defineSentryEndpoint({
|
|
174
|
-
id: "
|
|
174
|
+
id: "sentry.retrieve-issue-events-by-id",
|
|
175
175
|
name: "Retrieve Issue Events",
|
|
176
176
|
description: "List events that have rolled up into an issue.",
|
|
177
177
|
method: "GET",
|
|
@@ -195,7 +195,7 @@ const retrieveIssueEventsById = defineSentryEndpoint({
|
|
|
195
195
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
196
196
|
});
|
|
197
197
|
const retrieveIssueHashesForOrganization = defineSentryEndpoint({
|
|
198
|
-
id: "
|
|
198
|
+
id: "sentry.retrieve-issue-hashes-for-organization",
|
|
199
199
|
name: "Retrieve Issue Hashes",
|
|
200
200
|
description: "List the grouping-hash keys associated with an issue.",
|
|
201
201
|
method: "GET",
|
|
@@ -206,7 +206,7 @@ const retrieveIssueHashesForOrganization = defineSentryEndpoint({
|
|
|
206
206
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
207
207
|
});
|
|
208
208
|
const retrieveIssueTagDetails = defineSentryEndpoint({
|
|
209
|
-
id: "
|
|
209
|
+
id: "sentry.retrieve-issue-tag-details",
|
|
210
210
|
name: "Retrieve Issue Tag Details",
|
|
211
211
|
description: "Return tag key metadata for one issue.",
|
|
212
212
|
method: "GET",
|
|
@@ -220,7 +220,7 @@ const retrieveIssueTagDetails = defineSentryEndpoint({
|
|
|
220
220
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
221
221
|
});
|
|
222
222
|
const fetchTagValuesForIssue = defineSentryEndpoint({
|
|
223
|
-
id: "
|
|
223
|
+
id: "sentry.fetch-tag-values-for-issue",
|
|
224
224
|
name: "Fetch Tag Values For Issue",
|
|
225
225
|
description: "List the distinct values for a tag key within one issue.",
|
|
226
226
|
method: "GET",
|
|
@@ -243,7 +243,7 @@ const fetchTagValuesForIssue = defineSentryEndpoint({
|
|
|
243
243
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventRead]
|
|
244
244
|
});
|
|
245
245
|
const createSentryExternalIssueLink = defineSentryEndpoint({
|
|
246
|
-
id: "
|
|
246
|
+
id: "sentry.create-sentry-external-issue-link",
|
|
247
247
|
name: "Create External Issue Link",
|
|
248
248
|
description: "Link a Sentry issue to an external tracking record (Linear, Jira, etc.) by uuid.",
|
|
249
249
|
method: "POST",
|
|
@@ -270,7 +270,7 @@ const createSentryExternalIssueLink = defineSentryEndpoint({
|
|
|
270
270
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventAdmin]
|
|
271
271
|
});
|
|
272
272
|
const deleteExternalIssueByUuid = defineSentryEndpoint({
|
|
273
|
-
id: "
|
|
273
|
+
id: "sentry.delete-external-issue-by-uuid",
|
|
274
274
|
name: "Delete External Issue",
|
|
275
275
|
description: "Unlink an external issue record from a Sentry issue by uuid.",
|
|
276
276
|
method: "DELETE",
|
|
@@ -291,7 +291,7 @@ const deleteExternalIssueByUuid = defineSentryEndpoint({
|
|
|
291
291
|
requiredOAuthScopes: [...SENTRY_SCOPE.eventAdmin]
|
|
292
292
|
});
|
|
293
293
|
const retrieveShortIdForOrganization = defineSentryEndpoint({
|
|
294
|
-
id: "
|
|
294
|
+
id: "sentry.retrieve-short-id-for-organization",
|
|
295
295
|
name: "Resolve Short ID",
|
|
296
296
|
description: "Resolve a Sentry short id (e.g. `PROJ-123`) to its issue details.",
|
|
297
297
|
method: "GET",
|