@keystrokehq/sentry 0.0.5 → 0.0.6-rename-t1.1
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/README.md +1 -1
- package/dist/_official/index.d.mts +7 -7
- package/dist/_official/index.mjs +2 -2
- package/dist/_runtime/index.mjs +1 -1
- package/dist/alerts.mjs +1 -1
- package/dist/connection.mjs +1 -1
- package/dist/dashboards.mjs +1 -1
- package/dist/debug-files.mjs +1 -1
- package/dist/deploys.mjs +1 -1
- package/dist/discover.mjs +1 -1
- package/dist/{endpoint-factory-haY-k3xe.mjs → endpoint-factory-BKyte5gU.mjs} +1 -1
- package/dist/environments.d.mts +2 -2
- package/dist/environments.mjs +1 -1
- package/dist/events-api.mjs +1 -1
- package/dist/feedback.mjs +1 -1
- package/dist/{integration-CsUeRf7e.mjs → integration-DQ-PSbHu.mjs} +12 -12
- package/dist/issues.d.mts +2 -2
- package/dist/issues.mjs +1 -1
- package/dist/members.mjs +1 -1
- package/dist/monitors.d.mts +18 -18
- package/dist/monitors.mjs +1 -1
- package/dist/notifications.mjs +1 -1
- package/dist/organizations.d.mts +2 -2
- package/dist/organizations.mjs +1 -1
- package/dist/project-keys.mjs +1 -1
- package/dist/projects.mjs +1 -1
- package/dist/releases.d.mts +2 -2
- package/dist/releases.mjs +1 -1
- package/dist/replays.mjs +1 -1
- package/dist/schemas.d.mts +2 -2
- package/dist/scim.mjs +1 -1
- package/dist/teams.mjs +1 -1
- package/dist/user-emails.mjs +1 -1
- package/dist/webhooks.mjs +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ import type { SentryIntegrationCredentials } from '@keystrokehq/sentry/connectio
|
|
|
47
47
|
|
|
48
48
|
Platform operators supply the Sentry app credentials (`client_id`,
|
|
49
49
|
`client_secret`, `webhook_secret`) through the environment keys
|
|
50
|
-
`
|
|
50
|
+
`KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID`, `_CLIENT_SECRET`, and `_WEBHOOK_SECRET`.
|
|
51
51
|
These are internal — they never reach authored workflow code.
|
|
52
52
|
|
|
53
53
|
### OAuth scope matrix
|
|
@@ -24,18 +24,18 @@ declare const sentryAppCredentialSet: CredentialSet<"keystroke:sentry-app", z.Zo
|
|
|
24
24
|
webhookSecret: z.ZodString;
|
|
25
25
|
}, z.core.$strip>>[] | undefined>;
|
|
26
26
|
type SentryAppCredentials = InferCredentialSetAuth<typeof sentryAppCredentialSet>;
|
|
27
|
-
declare const
|
|
27
|
+
declare const sentryOfficialProviderSeed: {
|
|
28
28
|
readonly provider: "sentry";
|
|
29
29
|
readonly appRef: "sentry-platform";
|
|
30
30
|
readonly displayName: "Sentry Platform";
|
|
31
31
|
readonly credentialSetName: "Keystroke Sentry Platform App";
|
|
32
32
|
readonly envShape: {
|
|
33
|
-
readonly
|
|
34
|
-
readonly
|
|
35
|
-
readonly
|
|
33
|
+
readonly KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID: z.ZodOptional<z.ZodString>;
|
|
34
|
+
readonly KEYSTROKE_OFFICIAL_SENTRY_CLIENT_SECRET: z.ZodOptional<z.ZodString>;
|
|
35
|
+
readonly KEYSTROKE_OFFICIAL_SENTRY_WEBHOOK_SECRET: z.ZodOptional<z.ZodString>;
|
|
36
36
|
};
|
|
37
|
-
readonly requiredEnvKeys: readonly ["
|
|
38
|
-
readonly externalAppIdEnvKey: "
|
|
37
|
+
readonly requiredEnvKeys: readonly ["KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID", "KEYSTROKE_OFFICIAL_SENTRY_CLIENT_SECRET", "KEYSTROKE_OFFICIAL_SENTRY_WEBHOOK_SECRET"];
|
|
38
|
+
readonly externalAppIdEnvKey: "KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID";
|
|
39
39
|
readonly buildCredentials: (env: Record<string, string | undefined>) => {
|
|
40
40
|
clientId: string | undefined;
|
|
41
41
|
clientSecret: string | undefined;
|
|
@@ -43,4 +43,4 @@ declare const sentryPlatformProviderSeed: {
|
|
|
43
43
|
};
|
|
44
44
|
};
|
|
45
45
|
//#endregion
|
|
46
|
-
export { SentryAppCredentials, sentryAppCredentialSet, sentryBundle, sentryOfficialIntegration,
|
|
46
|
+
export { SentryAppCredentials, sentryAppCredentialSet, sentryBundle, sentryOfficialIntegration, sentryOfficialProviderSeed };
|
package/dist/_official/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as
|
|
1
|
+
import { a as sentryOfficialProviderSeed, i as sentryAppCredentialSet, n as sentryBundle, r as sentryOfficialIntegration } from "../integration-DQ-PSbHu.mjs";
|
|
2
2
|
|
|
3
|
-
export { sentryAppCredentialSet, sentryBundle, sentryOfficialIntegration,
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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";
|
|
10
11
|
visible: "visible";
|
|
11
12
|
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";
|
|
67
68
|
visible: "visible";
|
|
68
69
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
|
@@ -24,26 +24,26 @@ const sentryAppCredentialSet = new CredentialSet({
|
|
|
24
24
|
webhookSecret: z.string()
|
|
25
25
|
})
|
|
26
26
|
});
|
|
27
|
-
const
|
|
27
|
+
const sentryOfficialProviderSeed = {
|
|
28
28
|
provider: "sentry",
|
|
29
29
|
appRef: "sentry-platform",
|
|
30
30
|
displayName: "Sentry Platform",
|
|
31
31
|
credentialSetName: "Keystroke Sentry Platform App",
|
|
32
32
|
envShape: {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID: z.string().optional(),
|
|
34
|
+
KEYSTROKE_OFFICIAL_SENTRY_CLIENT_SECRET: z.string().optional(),
|
|
35
|
+
KEYSTROKE_OFFICIAL_SENTRY_WEBHOOK_SECRET: z.string().optional()
|
|
36
36
|
},
|
|
37
37
|
requiredEnvKeys: [
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
38
|
+
"KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID",
|
|
39
|
+
"KEYSTROKE_OFFICIAL_SENTRY_CLIENT_SECRET",
|
|
40
|
+
"KEYSTROKE_OFFICIAL_SENTRY_WEBHOOK_SECRET"
|
|
41
41
|
],
|
|
42
|
-
externalAppIdEnvKey: "
|
|
42
|
+
externalAppIdEnvKey: "KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID",
|
|
43
43
|
buildCredentials: (env) => ({
|
|
44
|
-
clientId: env.
|
|
45
|
-
clientSecret: env.
|
|
46
|
-
webhookSecret: env.
|
|
44
|
+
clientId: env.KEYSTROKE_OFFICIAL_SENTRY_CLIENT_ID,
|
|
45
|
+
clientSecret: env.KEYSTROKE_OFFICIAL_SENTRY_CLIENT_SECRET,
|
|
46
|
+
webhookSecret: env.KEYSTROKE_OFFICIAL_SENTRY_WEBHOOK_SECRET
|
|
47
47
|
})
|
|
48
48
|
};
|
|
49
49
|
|
|
@@ -153,4 +153,4 @@ const sentryBundle = defineOfficialIntegration({
|
|
|
153
153
|
const sentry = sentryBundle.credentialSet;
|
|
154
154
|
|
|
155
155
|
//#endregion
|
|
156
|
-
export {
|
|
156
|
+
export { sentryOfficialProviderSeed as a, sentryAppCredentialSet as i, sentryBundle as n, sentryOfficialIntegration as r, sentry as t };
|
package/dist/issues.d.mts
CHANGED
|
@@ -12,8 +12,8 @@ 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";
|
|
16
|
+
user: "user";
|
|
17
17
|
new: "new";
|
|
18
18
|
priority: "priority";
|
|
19
19
|
freq: "freq";
|
|
@@ -290,8 +290,8 @@ 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";
|
|
294
|
+
user: "user";
|
|
295
295
|
new: "new";
|
|
296
296
|
priority: "priority";
|
|
297
297
|
freq: "freq";
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/monitors.d.mts
CHANGED
|
@@ -13,8 +13,8 @@ declare const createOrganizationMonitor: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
13
13
|
}>>;
|
|
14
14
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
15
15
|
status: z.ZodOptional<z.ZodEnum<{
|
|
16
|
-
active: "active";
|
|
17
16
|
disabled: "disabled";
|
|
17
|
+
active: "active";
|
|
18
18
|
}>>;
|
|
19
19
|
alert_rule: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20
20
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -23,8 +23,8 @@ 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
|
-
active: "active";
|
|
27
26
|
disabled: "disabled";
|
|
27
|
+
active: "active";
|
|
28
28
|
ok: "ok";
|
|
29
29
|
missed_checkin: "missed_checkin";
|
|
30
30
|
timeout: "timeout";
|
|
@@ -56,8 +56,8 @@ 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
|
-
active: "active";
|
|
60
59
|
disabled: "disabled";
|
|
60
|
+
active: "active";
|
|
61
61
|
ok: "ok";
|
|
62
62
|
missed_checkin: "missed_checkin";
|
|
63
63
|
timeout: "timeout";
|
|
@@ -85,8 +85,8 @@ 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
|
-
active: "active";
|
|
89
88
|
disabled: "disabled";
|
|
89
|
+
active: "active";
|
|
90
90
|
ok: "ok";
|
|
91
91
|
missed_checkin: "missed_checkin";
|
|
92
92
|
timeout: "timeout";
|
|
@@ -113,8 +113,8 @@ declare const modifyOrganizationMonitorData: _keystrokehq_core0.Operation<z.ZodO
|
|
|
113
113
|
project: z.ZodOptional<z.ZodString>;
|
|
114
114
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
115
115
|
status: z.ZodOptional<z.ZodEnum<{
|
|
116
|
-
active: "active";
|
|
117
116
|
disabled: "disabled";
|
|
117
|
+
active: "active";
|
|
118
118
|
}>>;
|
|
119
119
|
alert_rule: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
120
120
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -123,8 +123,8 @@ 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
|
-
active: "active";
|
|
127
126
|
disabled: "disabled";
|
|
127
|
+
active: "active";
|
|
128
128
|
ok: "ok";
|
|
129
129
|
missed_checkin: "missed_checkin";
|
|
130
130
|
timeout: "timeout";
|
|
@@ -165,8 +165,8 @@ 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
|
-
active: "active";
|
|
169
168
|
disabled: "disabled";
|
|
169
|
+
active: "active";
|
|
170
170
|
ok: "ok";
|
|
171
171
|
missed_checkin: "missed_checkin";
|
|
172
172
|
timeout: "timeout";
|
|
@@ -193,8 +193,8 @@ declare const updateProjectMonitor: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
193
193
|
slug: z.ZodOptional<z.ZodString>;
|
|
194
194
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
195
195
|
status: z.ZodOptional<z.ZodEnum<{
|
|
196
|
-
active: "active";
|
|
197
196
|
disabled: "disabled";
|
|
197
|
+
active: "active";
|
|
198
198
|
}>>;
|
|
199
199
|
}, z.core.$strip>, z.ZodObject<{
|
|
200
200
|
id: z.ZodString;
|
|
@@ -202,8 +202,8 @@ 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
|
-
active: "active";
|
|
206
205
|
disabled: "disabled";
|
|
206
|
+
active: "active";
|
|
207
207
|
ok: "ok";
|
|
208
208
|
missed_checkin: "missed_checkin";
|
|
209
209
|
timeout: "timeout";
|
|
@@ -279,8 +279,8 @@ declare const sentryMonitorOperations: {
|
|
|
279
279
|
}>>;
|
|
280
280
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
281
281
|
status: z.ZodOptional<z.ZodEnum<{
|
|
282
|
-
active: "active";
|
|
283
282
|
disabled: "disabled";
|
|
283
|
+
active: "active";
|
|
284
284
|
}>>;
|
|
285
285
|
alert_rule: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
286
286
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -289,8 +289,8 @@ declare const sentryMonitorOperations: {
|
|
|
289
289
|
name: z.ZodString;
|
|
290
290
|
status: z.ZodOptional<z.ZodEnum<{
|
|
291
291
|
error: "error";
|
|
292
|
-
active: "active";
|
|
293
292
|
disabled: "disabled";
|
|
293
|
+
active: "active";
|
|
294
294
|
ok: "ok";
|
|
295
295
|
missed_checkin: "missed_checkin";
|
|
296
296
|
timeout: "timeout";
|
|
@@ -322,8 +322,8 @@ declare const sentryMonitorOperations: {
|
|
|
322
322
|
name: z.ZodString;
|
|
323
323
|
status: z.ZodOptional<z.ZodEnum<{
|
|
324
324
|
error: "error";
|
|
325
|
-
active: "active";
|
|
326
325
|
disabled: "disabled";
|
|
326
|
+
active: "active";
|
|
327
327
|
ok: "ok";
|
|
328
328
|
missed_checkin: "missed_checkin";
|
|
329
329
|
timeout: "timeout";
|
|
@@ -351,8 +351,8 @@ declare const sentryMonitorOperations: {
|
|
|
351
351
|
name: z.ZodString;
|
|
352
352
|
status: z.ZodOptional<z.ZodEnum<{
|
|
353
353
|
error: "error";
|
|
354
|
-
active: "active";
|
|
355
354
|
disabled: "disabled";
|
|
355
|
+
active: "active";
|
|
356
356
|
ok: "ok";
|
|
357
357
|
missed_checkin: "missed_checkin";
|
|
358
358
|
timeout: "timeout";
|
|
@@ -379,8 +379,8 @@ declare const sentryMonitorOperations: {
|
|
|
379
379
|
project: z.ZodOptional<z.ZodString>;
|
|
380
380
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
381
381
|
status: z.ZodOptional<z.ZodEnum<{
|
|
382
|
-
active: "active";
|
|
383
382
|
disabled: "disabled";
|
|
383
|
+
active: "active";
|
|
384
384
|
}>>;
|
|
385
385
|
alert_rule: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
386
386
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -389,8 +389,8 @@ declare const sentryMonitorOperations: {
|
|
|
389
389
|
name: z.ZodString;
|
|
390
390
|
status: z.ZodOptional<z.ZodEnum<{
|
|
391
391
|
error: "error";
|
|
392
|
-
active: "active";
|
|
393
392
|
disabled: "disabled";
|
|
393
|
+
active: "active";
|
|
394
394
|
ok: "ok";
|
|
395
395
|
missed_checkin: "missed_checkin";
|
|
396
396
|
timeout: "timeout";
|
|
@@ -431,8 +431,8 @@ declare const sentryMonitorOperations: {
|
|
|
431
431
|
name: z.ZodString;
|
|
432
432
|
status: z.ZodOptional<z.ZodEnum<{
|
|
433
433
|
error: "error";
|
|
434
|
-
active: "active";
|
|
435
434
|
disabled: "disabled";
|
|
435
|
+
active: "active";
|
|
436
436
|
ok: "ok";
|
|
437
437
|
missed_checkin: "missed_checkin";
|
|
438
438
|
timeout: "timeout";
|
|
@@ -459,8 +459,8 @@ declare const sentryMonitorOperations: {
|
|
|
459
459
|
slug: z.ZodOptional<z.ZodString>;
|
|
460
460
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
461
461
|
status: z.ZodOptional<z.ZodEnum<{
|
|
462
|
-
active: "active";
|
|
463
462
|
disabled: "disabled";
|
|
463
|
+
active: "active";
|
|
464
464
|
}>>;
|
|
465
465
|
}, z.core.$strip>, z.ZodObject<{
|
|
466
466
|
id: z.ZodString;
|
|
@@ -468,8 +468,8 @@ declare const sentryMonitorOperations: {
|
|
|
468
468
|
name: z.ZodString;
|
|
469
469
|
status: z.ZodOptional<z.ZodEnum<{
|
|
470
470
|
error: "error";
|
|
471
|
-
active: "active";
|
|
472
471
|
disabled: "disabled";
|
|
472
|
+
active: "active";
|
|
473
473
|
ok: "ok";
|
|
474
474
|
missed_checkin: "missed_checkin";
|
|
475
475
|
timeout: "timeout";
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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";
|
|
98
99
|
visible: "visible";
|
|
99
100
|
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";
|
|
376
377
|
visible: "visible";
|
|
377
378
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-
|
|
2
|
+
import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/releases.d.mts
CHANGED
|
@@ -229,8 +229,8 @@ declare const listOrganizationRepositories: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
229
229
|
query: z.ZodOptional<z.ZodString>;
|
|
230
230
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
231
231
|
status: z.ZodOptional<z.ZodEnum<{
|
|
232
|
-
active: "active";
|
|
233
232
|
disabled: "disabled";
|
|
233
|
+
active: "active";
|
|
234
234
|
pending_deletion: "pending_deletion";
|
|
235
235
|
deletion_in_progress: "deletion_in_progress";
|
|
236
236
|
}>>;
|
|
@@ -700,8 +700,8 @@ declare const sentryReleaseOperations: {
|
|
|
700
700
|
query: z.ZodOptional<z.ZodString>;
|
|
701
701
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
702
702
|
status: z.ZodOptional<z.ZodEnum<{
|
|
703
|
-
active: "active";
|
|
704
703
|
disabled: "disabled";
|
|
704
|
+
active: "active";
|
|
705
705
|
pending_deletion: "pending_deletion";
|
|
706
706
|
deletion_in_progress: "deletion_in_progress";
|
|
707
707
|
}>>;
|
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-
|
|
2
|
+
import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
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-
|
|
2
|
+
import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/schemas.d.mts
CHANGED
|
@@ -201,8 +201,8 @@ declare const sentryIssueAlertRuleSchema: z.ZodObject<{
|
|
|
201
201
|
}, z.core.$loose>;
|
|
202
202
|
declare const sentryMonitorStatusSchema: z.ZodEnum<{
|
|
203
203
|
error: "error";
|
|
204
|
-
active: "active";
|
|
205
204
|
disabled: "disabled";
|
|
205
|
+
active: "active";
|
|
206
206
|
ok: "ok";
|
|
207
207
|
missed_checkin: "missed_checkin";
|
|
208
208
|
timeout: "timeout";
|
|
@@ -215,8 +215,8 @@ declare const sentryMonitorSchema: z.ZodObject<{
|
|
|
215
215
|
name: z.ZodString;
|
|
216
216
|
status: z.ZodOptional<z.ZodEnum<{
|
|
217
217
|
error: "error";
|
|
218
|
-
active: "active";
|
|
219
218
|
disabled: "disabled";
|
|
219
|
+
active: "active";
|
|
220
220
|
ok: "ok";
|
|
221
221
|
missed_checkin: "missed_checkin";
|
|
222
222
|
timeout: "timeout";
|
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-
|
|
2
|
+
import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/teams.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgScopeInputSchema, orgTeamScopeInputSchema, sentryIdSchema, sentryJsonObjectSchema, sentryListInputSchema, sentryMemberSchema, sentryProjectSummarySchema, sentrySlugSchema, sentryTeamSchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
2
|
+
import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/user-emails.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { sentryUserEmailSchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
2
|
+
import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
|
|
5
5
|
//#region src/user-emails.ts
|
package/dist/webhooks.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { orgProjectScopeInputSchema, sentryIdSchema, sentryListInputSchema, sentryProjectHookSchema } from "./schemas.mjs";
|
|
2
|
-
import { t as defineSentryEndpoint } from "./endpoint-factory-
|
|
2
|
+
import { t as defineSentryEndpoint } from "./endpoint-factory-BKyte5gU.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/sentry",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6-rename-t1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -136,8 +136,8 @@
|
|
|
136
136
|
"LICENSE"
|
|
137
137
|
],
|
|
138
138
|
"dependencies": {
|
|
139
|
-
"@keystrokehq/credential-connection": "^0.0.
|
|
140
|
-
"@keystrokehq/integration-authoring": "^0.0.
|
|
139
|
+
"@keystrokehq/credential-connection": "^0.0.5-rename-t1.0",
|
|
140
|
+
"@keystrokehq/integration-authoring": "^0.0.6-rename-t1.0",
|
|
141
141
|
"zod": "^4.3.6"
|
|
142
142
|
},
|
|
143
143
|
"peerDependencies": {
|