@keystrokehq/sentry 0.0.11 → 0.0.15
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 +2 -7
- package/dist/_official/index.mjs +1 -1
- package/dist/_runtime/index.d.mts +1 -1
- package/dist/_runtime/index.mjs +1 -1
- package/dist/alerts.d.mts +22 -111
- package/dist/alerts.mjs +1 -1
- package/dist/connection.d.mts +1 -1
- package/dist/connection.mjs +1 -1
- package/dist/dashboards.d.mts +10 -51
- package/dist/dashboards.mjs +1 -1
- package/dist/debug-files.d.mts +6 -31
- package/dist/debug-files.mjs +1 -1
- package/dist/deploys.d.mts +4 -21
- package/dist/deploys.mjs +1 -1
- package/dist/discover.d.mts +10 -51
- package/dist/discover.mjs +1 -1
- package/dist/{endpoint-factory-Cizk4imV.mjs → endpoint-factory-DcT49a8O.mjs} +1 -1
- package/dist/environments.d.mts +6 -31
- package/dist/environments.mjs +1 -1
- package/dist/events-api.d.mts +16 -73
- package/dist/events-api.mjs +1 -1
- package/dist/feedback.d.mts +4 -21
- package/dist/feedback.mjs +1 -1
- package/dist/{integration-Q9y2TMhZ.mjs → integration-D7KCM1-p.mjs} +2 -83
- package/dist/integration-veqa_7yB.d.mts +33 -0
- package/dist/issues.d.mts +28 -133
- package/dist/issues.mjs +1 -1
- package/dist/members.d.mts +14 -71
- package/dist/members.mjs +1 -1
- package/dist/monitors.d.mts +44 -125
- package/dist/monitors.mjs +1 -1
- package/dist/notifications.d.mts +10 -51
- package/dist/notifications.mjs +1 -1
- package/dist/organizations.d.mts +30 -151
- package/dist/organizations.mjs +1 -1
- package/dist/project-keys.d.mts +10 -51
- package/dist/project-keys.mjs +1 -1
- package/dist/projects.d.mts +38 -191
- package/dist/projects.mjs +1 -1
- package/dist/releases.d.mts +42 -211
- package/dist/releases.mjs +1 -1
- package/dist/replays.d.mts +18 -91
- package/dist/replays.mjs +1 -1
- package/dist/schemas.d.mts +4 -4
- package/dist/scim.d.mts +22 -111
- package/dist/scim.mjs +1 -1
- package/dist/teams.d.mts +28 -141
- package/dist/teams.mjs +1 -1
- package/dist/user-emails.d.mts +8 -41
- package/dist/user-emails.mjs +1 -1
- package/dist/webhooks.d.mts +10 -51
- package/dist/webhooks.mjs +1 -1
- package/package.json +4 -5
- package/dist/integration-BaLZqIqf.d.mts +0 -58
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { i as sentryOfficialIntegration, r as sentryBundle } from "../integration-
|
|
1
|
+
import { i as sentryOfficialIntegration, r as sentryBundle } from "../integration-veqa_7yB.mjs";
|
|
2
2
|
import { CredentialSet } from "@keystrokehq/core";
|
|
3
3
|
import { z } from "zod";
|
|
4
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
5
4
|
import { InferCredentialSetAuth } from "@keystrokehq/core/credential-set";
|
|
6
5
|
|
|
7
6
|
//#region src/_official/provider-app.d.ts
|
|
@@ -18,11 +17,7 @@ declare const sentryAppCredentialSet: CredentialSet<"keystroke:sentry-app", z.Zo
|
|
|
18
17
|
clientId: z.ZodString;
|
|
19
18
|
clientSecret: z.ZodString;
|
|
20
19
|
webhookSecret: z.ZodString;
|
|
21
|
-
}, z.core.$strip
|
|
22
|
-
clientId: z.ZodString;
|
|
23
|
-
clientSecret: z.ZodString;
|
|
24
|
-
webhookSecret: z.ZodString;
|
|
25
|
-
}, z.core.$strip>>[] | undefined>;
|
|
20
|
+
}, z.core.$strip>>;
|
|
26
21
|
type SentryAppCredentials = InferCredentialSetAuth<typeof sentryAppCredentialSet>;
|
|
27
22
|
declare const sentryOfficialProviderSeed: {
|
|
28
23
|
readonly provider: "sentry";
|
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-D7KCM1-p.mjs";
|
|
2
2
|
|
|
3
3
|
export { sentryAppCredentialSet, sentryBundle, sentryOfficialIntegration, sentryOfficialProviderSeed };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { i as sentryOfficialIntegration, r as sentryBundle } from "../integration-
|
|
1
|
+
import { i as sentryOfficialIntegration, r as sentryBundle } from "../integration-veqa_7yB.mjs";
|
|
2
2
|
export { sentryBundle, sentryOfficialIntegration };
|
package/dist/_runtime/index.mjs
CHANGED
package/dist/alerts.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
|
|
5
4
|
//#region src/alerts.d.ts
|
|
6
5
|
declare const createOrganizationAlertRule: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -29,11 +28,7 @@ declare const createOrganizationAlertRule: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
29
28
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
30
29
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
31
30
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
32
|
-
}, z.core.$strip
|
|
33
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
34
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
35
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
36
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
31
|
+
}, z.core.$strip>>], undefined>;
|
|
37
32
|
declare const fetchOrganizationAlertRules: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
38
33
|
cursor: z.ZodOptional<z.ZodString>;
|
|
39
34
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -51,11 +46,7 @@ declare const fetchOrganizationAlertRules: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
51
46
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
52
47
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
53
48
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
54
|
-
}, z.core.$strip
|
|
55
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
56
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
57
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
58
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
49
|
+
}, z.core.$strip>>], undefined>;
|
|
59
50
|
declare const retrieveAlertRuleDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
60
51
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
61
52
|
alert_rule_id: z.ZodString;
|
|
@@ -71,11 +62,7 @@ declare const retrieveAlertRuleDetails: _keystrokehq_core0.Operation<z.ZodObject
|
|
|
71
62
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
72
63
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
73
64
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
74
|
-
}, z.core.$strip
|
|
75
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
76
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
77
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
78
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
65
|
+
}, z.core.$strip>>], undefined>;
|
|
79
66
|
declare const updateOrganizationAlertRules: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
80
67
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
81
68
|
alert_rule_id: z.ZodString;
|
|
@@ -103,11 +90,7 @@ declare const updateOrganizationAlertRules: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
103
90
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
104
91
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
105
92
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
106
|
-
}, z.core.$strip
|
|
107
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
108
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
109
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
110
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
93
|
+
}, z.core.$strip>>], undefined>;
|
|
111
94
|
declare const deleteOrganizationAlertRule: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
112
95
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
113
96
|
alert_rule_id: z.ZodString;
|
|
@@ -115,11 +98,7 @@ declare const deleteOrganizationAlertRule: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
115
98
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
116
99
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
117
100
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
118
|
-
}, z.core.$strip
|
|
119
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
120
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
121
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
122
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
101
|
+
}, z.core.$strip>>], undefined>;
|
|
123
102
|
declare const getActivationOfAlertRuleForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
124
103
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
125
104
|
alert_rule_id: z.ZodString;
|
|
@@ -129,11 +108,7 @@ declare const getActivationOfAlertRuleForOrganization: _keystrokehq_core0.Operat
|
|
|
129
108
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
130
109
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
131
110
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
132
|
-
}, z.core.$strip
|
|
133
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
134
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
135
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
136
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
111
|
+
}, z.core.$strip>>], undefined>;
|
|
137
112
|
declare const createProjectRuleForAlerts: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
138
113
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
139
114
|
project_slug: z.ZodString;
|
|
@@ -168,11 +143,7 @@ declare const createProjectRuleForAlerts: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
168
143
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
169
144
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
170
145
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
171
|
-
}, z.core.$strip
|
|
172
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
173
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
174
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
175
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
146
|
+
}, z.core.$strip>>], undefined>;
|
|
176
147
|
declare const retrieveProjectRulesByOrgAndProjectId: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
177
148
|
cursor: z.ZodOptional<z.ZodString>;
|
|
178
149
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -193,11 +164,7 @@ declare const retrieveProjectRulesByOrgAndProjectId: _keystrokehq_core0.Operatio
|
|
|
193
164
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
194
165
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
195
166
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
196
|
-
}, z.core.$strip
|
|
197
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
198
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
199
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
200
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
167
|
+
}, z.core.$strip>>], undefined>;
|
|
201
168
|
declare const getProjectRuleDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
202
169
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
203
170
|
project_slug: z.ZodString;
|
|
@@ -216,11 +183,7 @@ declare const getProjectRuleDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
216
183
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
217
184
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
218
185
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
219
|
-
}, z.core.$strip
|
|
220
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
221
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
222
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
223
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
186
|
+
}, z.core.$strip>>], undefined>;
|
|
224
187
|
declare const updateProjectRuleById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
225
188
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
226
189
|
project_slug: z.ZodString;
|
|
@@ -256,11 +219,7 @@ declare const updateProjectRuleById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
256
219
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
257
220
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
258
221
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
259
|
-
}, z.core.$strip
|
|
260
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
261
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
262
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
263
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
222
|
+
}, z.core.$strip>>], undefined>;
|
|
264
223
|
declare const deleteProjectRule: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
265
224
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
266
225
|
project_slug: z.ZodString;
|
|
@@ -269,11 +228,7 @@ declare const deleteProjectRule: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
269
228
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
270
229
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
271
230
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
272
|
-
}, z.core.$strip
|
|
273
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
274
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
275
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
276
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
231
|
+
}, z.core.$strip>>], undefined>;
|
|
277
232
|
declare const sentryAlertOperations: {
|
|
278
233
|
readonly createOrganizationAlertRule: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
279
234
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
@@ -301,11 +256,7 @@ declare const sentryAlertOperations: {
|
|
|
301
256
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
302
257
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
303
258
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
304
|
-
}, z.core.$strip
|
|
305
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
306
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
307
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
308
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
259
|
+
}, z.core.$strip>>], undefined>;
|
|
309
260
|
readonly fetchOrganizationAlertRules: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
310
261
|
cursor: z.ZodOptional<z.ZodString>;
|
|
311
262
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -323,11 +274,7 @@ declare const sentryAlertOperations: {
|
|
|
323
274
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
324
275
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
325
276
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
326
|
-
}, z.core.$strip
|
|
327
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
328
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
329
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
330
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
277
|
+
}, z.core.$strip>>], undefined>;
|
|
331
278
|
readonly retrieveAlertRuleDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
332
279
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
333
280
|
alert_rule_id: z.ZodString;
|
|
@@ -343,11 +290,7 @@ declare const sentryAlertOperations: {
|
|
|
343
290
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
344
291
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
345
292
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
346
|
-
}, z.core.$strip
|
|
347
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
348
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
349
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
350
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
293
|
+
}, z.core.$strip>>], undefined>;
|
|
351
294
|
readonly updateOrganizationAlertRules: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
352
295
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
353
296
|
alert_rule_id: z.ZodString;
|
|
@@ -375,11 +318,7 @@ declare const sentryAlertOperations: {
|
|
|
375
318
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
376
319
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
377
320
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
378
|
-
}, z.core.$strip
|
|
379
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
380
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
381
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
382
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
321
|
+
}, z.core.$strip>>], undefined>;
|
|
383
322
|
readonly deleteOrganizationAlertRule: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
384
323
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
385
324
|
alert_rule_id: z.ZodString;
|
|
@@ -387,11 +326,7 @@ declare const sentryAlertOperations: {
|
|
|
387
326
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
388
327
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
389
328
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
390
|
-
}, z.core.$strip
|
|
391
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
392
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
393
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
394
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
329
|
+
}, z.core.$strip>>], undefined>;
|
|
395
330
|
readonly getActivationOfAlertRuleForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
396
331
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
397
332
|
alert_rule_id: z.ZodString;
|
|
@@ -401,11 +336,7 @@ declare const sentryAlertOperations: {
|
|
|
401
336
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
402
337
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
403
338
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
404
|
-
}, z.core.$strip
|
|
405
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
406
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
407
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
408
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
339
|
+
}, z.core.$strip>>], undefined>;
|
|
409
340
|
readonly createProjectRuleForAlerts: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
410
341
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
411
342
|
project_slug: z.ZodString;
|
|
@@ -440,11 +371,7 @@ declare const sentryAlertOperations: {
|
|
|
440
371
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
441
372
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
442
373
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
443
|
-
}, z.core.$strip
|
|
444
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
445
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
446
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
447
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
374
|
+
}, z.core.$strip>>], undefined>;
|
|
448
375
|
readonly retrieveProjectRulesByOrgAndProjectId: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
449
376
|
cursor: z.ZodOptional<z.ZodString>;
|
|
450
377
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -465,11 +392,7 @@ declare const sentryAlertOperations: {
|
|
|
465
392
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
466
393
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
467
394
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
468
|
-
}, z.core.$strip
|
|
469
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
470
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
471
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
472
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
395
|
+
}, z.core.$strip>>], undefined>;
|
|
473
396
|
readonly getProjectRuleDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
474
397
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
475
398
|
project_slug: z.ZodString;
|
|
@@ -488,11 +411,7 @@ declare const sentryAlertOperations: {
|
|
|
488
411
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
489
412
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
490
413
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
491
|
-
}, z.core.$strip
|
|
492
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
493
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
494
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
495
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
414
|
+
}, z.core.$strip>>], undefined>;
|
|
496
415
|
readonly updateProjectRuleById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
497
416
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
498
417
|
project_slug: z.ZodString;
|
|
@@ -528,11 +447,7 @@ declare const sentryAlertOperations: {
|
|
|
528
447
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
529
448
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
530
449
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
531
|
-
}, z.core.$strip
|
|
532
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
533
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
534
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
535
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
450
|
+
}, z.core.$strip>>], undefined>;
|
|
536
451
|
readonly deleteProjectRule: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
537
452
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
538
453
|
project_slug: z.ZodString;
|
|
@@ -541,11 +456,7 @@ declare const sentryAlertOperations: {
|
|
|
541
456
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
542
457
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
543
458
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
544
|
-
}, z.core.$strip
|
|
545
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
546
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
547
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
548
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
459
|
+
}, z.core.$strip>>], undefined>;
|
|
549
460
|
};
|
|
550
461
|
//#endregion
|
|
551
462
|
export { createOrganizationAlertRule, createProjectRuleForAlerts, deleteOrganizationAlertRule, deleteProjectRule, fetchOrganizationAlertRules, getActivationOfAlertRuleForOrganization, getProjectRuleDetails, retrieveAlertRuleDetails, retrieveProjectRulesByOrgAndProjectId, sentryAlertOperations, updateOrganizationAlertRules, updateProjectRuleById };
|
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-DcT49a8O.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/connection.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { n as sentry, t as SentryIntegrationCredentials } from "./integration-
|
|
1
|
+
import { n as sentry, t as SentryIntegrationCredentials } from "./integration-veqa_7yB.mjs";
|
|
2
2
|
import { SentryCredentials } from "./client.mjs";
|
|
3
3
|
export { type SentryCredentials, type SentryIntegrationCredentials, sentry };
|
package/dist/connection.mjs
CHANGED
package/dist/dashboards.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
|
|
5
4
|
//#region src/dashboards.d.ts
|
|
6
5
|
declare const createDashboardWithWidgets: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -21,11 +20,7 @@ declare const createDashboardWithWidgets: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
21
20
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
22
21
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
23
22
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
24
|
-
}, z.core.$strip
|
|
25
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
26
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
27
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
28
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
23
|
+
}, z.core.$strip>>], undefined>;
|
|
29
24
|
declare const listOrganizationDashboards: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
30
25
|
cursor: z.ZodOptional<z.ZodString>;
|
|
31
26
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -41,11 +36,7 @@ declare const listOrganizationDashboards: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
41
36
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
42
37
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
43
38
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
44
|
-
}, z.core.$strip
|
|
45
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
46
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
47
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
48
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
39
|
+
}, z.core.$strip>>], undefined>;
|
|
49
40
|
declare const retrieveOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
50
41
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
51
42
|
dashboard_id: z.ZodString;
|
|
@@ -59,11 +50,7 @@ declare const retrieveOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodO
|
|
|
59
50
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
60
51
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
61
52
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
62
|
-
}, z.core.$strip
|
|
63
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
64
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
65
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
66
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
53
|
+
}, z.core.$strip>>], undefined>;
|
|
67
54
|
declare const updateOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
68
55
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
69
56
|
dashboard_id: z.ZodString;
|
|
@@ -83,11 +70,7 @@ declare const updateOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
83
70
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
84
71
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
85
72
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
86
|
-
}, z.core.$strip
|
|
87
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
88
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
89
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
90
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
73
|
+
}, z.core.$strip>>], undefined>;
|
|
91
74
|
declare const deleteOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
92
75
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
93
76
|
dashboard_id: z.ZodString;
|
|
@@ -95,11 +78,7 @@ declare const deleteOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
95
78
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
96
79
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
97
80
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
98
|
-
}, z.core.$strip
|
|
99
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
100
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
101
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
102
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
81
|
+
}, z.core.$strip>>], undefined>;
|
|
103
82
|
declare const sentryDashboardOperations: {
|
|
104
83
|
readonly createDashboardWithWidgets: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
105
84
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
@@ -119,11 +98,7 @@ declare const sentryDashboardOperations: {
|
|
|
119
98
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
120
99
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
121
100
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
122
|
-
}, z.core.$strip
|
|
123
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
124
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
125
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
126
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
101
|
+
}, z.core.$strip>>], undefined>;
|
|
127
102
|
readonly listOrganizationDashboards: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
128
103
|
cursor: z.ZodOptional<z.ZodString>;
|
|
129
104
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -139,11 +114,7 @@ declare const sentryDashboardOperations: {
|
|
|
139
114
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
140
115
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
141
116
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
142
|
-
}, z.core.$strip
|
|
143
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
144
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
145
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
146
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
117
|
+
}, z.core.$strip>>], undefined>;
|
|
147
118
|
readonly retrieveOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
148
119
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
149
120
|
dashboard_id: z.ZodString;
|
|
@@ -157,11 +128,7 @@ declare const sentryDashboardOperations: {
|
|
|
157
128
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
158
129
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
159
130
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
160
|
-
}, z.core.$strip
|
|
161
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
162
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
163
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
164
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
131
|
+
}, z.core.$strip>>], undefined>;
|
|
165
132
|
readonly updateOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
166
133
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
167
134
|
dashboard_id: z.ZodString;
|
|
@@ -181,11 +148,7 @@ declare const sentryDashboardOperations: {
|
|
|
181
148
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
182
149
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
183
150
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
184
|
-
}, z.core.$strip
|
|
185
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
186
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
187
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
188
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
151
|
+
}, z.core.$strip>>], undefined>;
|
|
189
152
|
readonly deleteOrganizationDashboard: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
190
153
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
191
154
|
dashboard_id: z.ZodString;
|
|
@@ -193,11 +156,7 @@ declare const sentryDashboardOperations: {
|
|
|
193
156
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
194
157
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
195
158
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
196
|
-
}, z.core.$strip
|
|
197
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
198
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
199
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
200
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
159
|
+
}, z.core.$strip>>], undefined>;
|
|
201
160
|
};
|
|
202
161
|
//#endregion
|
|
203
162
|
export { createDashboardWithWidgets, deleteOrganizationDashboard, listOrganizationDashboards, retrieveOrganizationDashboard, sentryDashboardOperations, updateOrganizationDashboard };
|
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-DcT49a8O.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.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
|
|
5
4
|
//#region src/debug-files.d.ts
|
|
6
5
|
declare const retrieveDsymFilesForProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -23,11 +22,7 @@ declare const retrieveDsymFilesForProject: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
23
22
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
24
23
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
25
24
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
26
|
-
}, z.core.$strip
|
|
27
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
28
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
29
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
30
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
25
|
+
}, z.core.$strip>>], undefined>;
|
|
31
26
|
declare const uploadDsymsFileToProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
32
27
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
33
28
|
project_slug: z.ZodString;
|
|
@@ -44,11 +39,7 @@ declare const uploadDsymsFileToProject: _keystrokehq_core0.Operation<z.ZodObject
|
|
|
44
39
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
45
40
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
46
41
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
47
|
-
}, z.core.$strip
|
|
48
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
49
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
50
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
51
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
42
|
+
}, z.core.$strip>>], undefined>;
|
|
52
43
|
declare const deleteDsymsForProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
53
44
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
54
45
|
project_slug: z.ZodString;
|
|
@@ -57,11 +48,7 @@ declare const deleteDsymsForProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
57
48
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
58
49
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
59
50
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
60
|
-
}, z.core.$strip
|
|
61
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
62
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
63
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
64
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
51
|
+
}, z.core.$strip>>], undefined>;
|
|
65
52
|
declare const sentryDebugFileOperations: {
|
|
66
53
|
readonly retrieveDsymFilesForProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
67
54
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -83,11 +70,7 @@ declare const sentryDebugFileOperations: {
|
|
|
83
70
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
84
71
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
85
72
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
86
|
-
}, z.core.$strip
|
|
87
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
88
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
89
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
90
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
73
|
+
}, z.core.$strip>>], undefined>;
|
|
91
74
|
readonly uploadDsymsFileToProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
92
75
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
93
76
|
project_slug: z.ZodString;
|
|
@@ -104,11 +87,7 @@ declare const sentryDebugFileOperations: {
|
|
|
104
87
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
105
88
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
106
89
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
107
|
-
}, z.core.$strip
|
|
108
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
109
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
110
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
111
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
90
|
+
}, z.core.$strip>>], undefined>;
|
|
112
91
|
readonly deleteDsymsForProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
113
92
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
114
93
|
project_slug: z.ZodString;
|
|
@@ -117,11 +96,7 @@ declare const sentryDebugFileOperations: {
|
|
|
117
96
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
118
97
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
119
98
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
120
|
-
}, z.core.$strip
|
|
121
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
122
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
123
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
124
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
99
|
+
}, z.core.$strip>>], undefined>;
|
|
125
100
|
};
|
|
126
101
|
//#endregion
|
|
127
102
|
export { deleteDsymsForProject, retrieveDsymFilesForProject, sentryDebugFileOperations, uploadDsymsFileToProject };
|
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-DcT49a8O.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/deploys.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
|
|
5
4
|
//#region src/deploys.d.ts
|
|
6
5
|
declare const createReleaseDeployForOrg: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -23,11 +22,7 @@ declare const createReleaseDeployForOrg: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
23
22
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
24
23
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
25
24
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
26
|
-
}, z.core.$strip
|
|
27
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
28
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
29
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
30
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
25
|
+
}, z.core.$strip>>], undefined>;
|
|
31
26
|
declare const retrieveReleaseDeployments: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
32
27
|
cursor: z.ZodOptional<z.ZodString>;
|
|
33
28
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45,11 +40,7 @@ declare const retrieveReleaseDeployments: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
45
40
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
46
41
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
47
42
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
48
|
-
}, z.core.$strip
|
|
49
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
50
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
51
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
52
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
43
|
+
}, z.core.$strip>>], undefined>;
|
|
53
44
|
declare const sentryDeployOperations: {
|
|
54
45
|
readonly createReleaseDeployForOrg: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
55
46
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
@@ -71,11 +62,7 @@ declare const sentryDeployOperations: {
|
|
|
71
62
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
72
63
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
73
64
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
74
|
-
}, z.core.$strip
|
|
75
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
76
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
77
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
78
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
65
|
+
}, z.core.$strip>>], undefined>;
|
|
79
66
|
readonly retrieveReleaseDeployments: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
80
67
|
cursor: z.ZodOptional<z.ZodString>;
|
|
81
68
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -93,11 +80,7 @@ declare const sentryDeployOperations: {
|
|
|
93
80
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
94
81
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
95
82
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
96
|
-
}, z.core.$strip
|
|
97
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
98
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
99
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
100
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
83
|
+
}, z.core.$strip>>], undefined>;
|
|
101
84
|
};
|
|
102
85
|
//#endregion
|
|
103
86
|
export { createReleaseDeployForOrg, retrieveReleaseDeployments, sentryDeployOperations };
|
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-DcT49a8O.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|