@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
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
2
|
+
import * as _keystrokehq_integration_authoring_official0 from "@keystrokehq/integration-authoring/official";
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
import { InferCredentialSetAuth } from "@keystrokehq/core/credential-set";
|
|
5
|
+
|
|
6
|
+
//#region src/integration.d.ts
|
|
7
|
+
declare const sentryOfficialIntegration: {
|
|
8
|
+
id: "sentry";
|
|
9
|
+
name: string;
|
|
10
|
+
description: string;
|
|
11
|
+
auth: z.ZodObject<{
|
|
12
|
+
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
13
|
+
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
14
|
+
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
proxy: {
|
|
17
|
+
hosts: string[];
|
|
18
|
+
};
|
|
19
|
+
credentialType: "oauth";
|
|
20
|
+
};
|
|
21
|
+
declare const sentryBundle: _keystrokehq_integration_authoring_official0.OfficialIntegrationBundle<"sentry", z.ZodObject<{
|
|
22
|
+
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
23
|
+
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
24
|
+
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
25
|
+
}, z.core.$strip>>;
|
|
26
|
+
declare const sentry: _keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
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>>;
|
|
31
|
+
type SentryIntegrationCredentials = InferCredentialSetAuth<typeof sentry>;
|
|
32
|
+
//#endregion
|
|
33
|
+
export { sentryOfficialIntegration as i, sentry as n, sentryBundle as r, SentryIntegrationCredentials as t };
|
package/dist/issues.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/issues.d.ts
|
|
6
5
|
declare const retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -13,10 +12,10 @@ declare const retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
13
12
|
environment: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14
13
|
sort: z.ZodOptional<z.ZodEnum<{
|
|
15
14
|
date: "date";
|
|
15
|
+
user: "user";
|
|
16
16
|
new: "new";
|
|
17
17
|
priority: "priority";
|
|
18
18
|
freq: "freq";
|
|
19
|
-
user: "user";
|
|
20
19
|
trends: "trends";
|
|
21
20
|
}>>;
|
|
22
21
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -52,11 +51,7 @@ declare const retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
52
51
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
53
52
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
54
53
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
55
|
-
}, z.core.$strip
|
|
56
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
57
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
58
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
59
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
54
|
+
}, z.core.$strip>>], undefined>;
|
|
60
55
|
declare const getOrganizationIssueDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
61
56
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
62
57
|
issue_id: z.ZodString;
|
|
@@ -92,11 +87,7 @@ declare const getOrganizationIssueDetails: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
92
87
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
93
88
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
94
89
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
95
|
-
}, z.core.$strip
|
|
96
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
97
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
98
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
99
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
90
|
+
}, z.core.$strip>>], undefined>;
|
|
100
91
|
declare const updateIssueAttributesInOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
101
92
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
102
93
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -123,11 +114,7 @@ declare const updateIssueAttributesInOrganization: _keystrokehq_core0.Operation<
|
|
|
123
114
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
124
115
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
125
116
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
126
|
-
}, z.core.$strip
|
|
127
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
128
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
129
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
130
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
117
|
+
}, z.core.$strip>>], undefined>;
|
|
131
118
|
declare const updateProjectIssueStatusAndDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
132
119
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
133
120
|
project_slug: z.ZodString;
|
|
@@ -151,11 +138,7 @@ declare const updateProjectIssueStatusAndDetails: _keystrokehq_core0.Operation<z
|
|
|
151
138
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
152
139
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
153
140
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
154
|
-
}, z.core.$strip
|
|
155
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
156
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
157
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
158
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
141
|
+
}, z.core.$strip>>], undefined>;
|
|
159
142
|
declare const deleteOrganizationIssue: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
160
143
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
161
144
|
issue_id: z.ZodString;
|
|
@@ -163,11 +146,7 @@ declare const deleteOrganizationIssue: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
163
146
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
164
147
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
165
148
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
166
|
-
}, z.core.$strip
|
|
167
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
168
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
169
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
170
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
149
|
+
}, z.core.$strip>>], undefined>;
|
|
171
150
|
declare const deleteProjectIssues: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
172
151
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
173
152
|
project_slug: z.ZodString;
|
|
@@ -177,11 +156,7 @@ declare const deleteProjectIssues: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
177
156
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
178
157
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
179
158
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
180
|
-
}, z.core.$strip
|
|
181
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
182
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
183
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
184
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
159
|
+
}, z.core.$strip>>], undefined>;
|
|
185
160
|
declare const retrieveIssueEventsById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
186
161
|
cursor: z.ZodOptional<z.ZodString>;
|
|
187
162
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -195,11 +170,7 @@ declare const retrieveIssueEventsById: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
195
170
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
196
171
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
197
172
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
198
|
-
}, z.core.$strip
|
|
199
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
200
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
201
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
202
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
173
|
+
}, z.core.$strip>>], undefined>;
|
|
203
174
|
declare const retrieveIssueHashesForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
204
175
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
205
176
|
issue_id: z.ZodString;
|
|
@@ -207,11 +178,7 @@ declare const retrieveIssueHashesForOrganization: _keystrokehq_core0.Operation<z
|
|
|
207
178
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
208
179
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
209
180
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
210
|
-
}, z.core.$strip
|
|
211
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
212
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
213
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
214
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
181
|
+
}, z.core.$strip>>], undefined>;
|
|
215
182
|
declare const retrieveIssueTagDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
216
183
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
217
184
|
issue_id: z.ZodString;
|
|
@@ -220,11 +187,7 @@ declare const retrieveIssueTagDetails: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
220
187
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
221
188
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
222
189
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
223
|
-
}, z.core.$strip
|
|
224
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
225
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
226
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
227
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
190
|
+
}, z.core.$strip>>], undefined>;
|
|
228
191
|
declare const fetchTagValuesForIssue: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
229
192
|
cursor: z.ZodOptional<z.ZodString>;
|
|
230
193
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -236,11 +199,7 @@ declare const fetchTagValuesForIssue: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
236
199
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
237
200
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
238
201
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
239
|
-
}, z.core.$strip
|
|
240
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
241
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
242
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
243
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
202
|
+
}, z.core.$strip>>], undefined>;
|
|
244
203
|
declare const createSentryExternalIssueLink: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
245
204
|
install_uuid: z.ZodString;
|
|
246
205
|
issueId: z.ZodString;
|
|
@@ -251,11 +210,7 @@ declare const createSentryExternalIssueLink: _keystrokehq_core0.Operation<z.ZodO
|
|
|
251
210
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
252
211
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
253
212
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
254
|
-
}, z.core.$strip
|
|
255
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
256
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
257
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
258
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
213
|
+
}, z.core.$strip>>], undefined>;
|
|
259
214
|
declare const deleteExternalIssueByUuid: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
260
215
|
install_uuid: z.ZodString;
|
|
261
216
|
external_issue_id: z.ZodString;
|
|
@@ -263,11 +218,7 @@ declare const deleteExternalIssueByUuid: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
263
218
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
264
219
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
265
220
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
266
|
-
}, z.core.$strip
|
|
267
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
268
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
269
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
270
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
221
|
+
}, z.core.$strip>>], undefined>;
|
|
271
222
|
declare const retrieveShortIdForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
272
223
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
273
224
|
short_id: z.ZodString;
|
|
@@ -275,11 +226,7 @@ declare const retrieveShortIdForOrganization: _keystrokehq_core0.Operation<z.Zod
|
|
|
275
226
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
276
227
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
277
228
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
278
|
-
}, z.core.$strip
|
|
279
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
280
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
281
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
282
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
229
|
+
}, z.core.$strip>>], undefined>;
|
|
283
230
|
declare const sentryIssueOperations: {
|
|
284
231
|
readonly retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
285
232
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -291,10 +238,10 @@ declare const sentryIssueOperations: {
|
|
|
291
238
|
environment: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
292
239
|
sort: z.ZodOptional<z.ZodEnum<{
|
|
293
240
|
date: "date";
|
|
241
|
+
user: "user";
|
|
294
242
|
new: "new";
|
|
295
243
|
priority: "priority";
|
|
296
244
|
freq: "freq";
|
|
297
|
-
user: "user";
|
|
298
245
|
trends: "trends";
|
|
299
246
|
}>>;
|
|
300
247
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -330,11 +277,7 @@ declare const sentryIssueOperations: {
|
|
|
330
277
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
331
278
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
332
279
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
333
|
-
}, z.core.$strip
|
|
334
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
335
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
336
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
337
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
280
|
+
}, z.core.$strip>>], undefined>;
|
|
338
281
|
readonly getOrganizationIssueDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
339
282
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
340
283
|
issue_id: z.ZodString;
|
|
@@ -370,11 +313,7 @@ declare const sentryIssueOperations: {
|
|
|
370
313
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
371
314
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
372
315
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
373
|
-
}, z.core.$strip
|
|
374
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
375
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
376
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
377
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
316
|
+
}, z.core.$strip>>], undefined>;
|
|
378
317
|
readonly updateIssueAttributesInOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
379
318
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
380
319
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -401,11 +340,7 @@ declare const sentryIssueOperations: {
|
|
|
401
340
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
402
341
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
403
342
|
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>;
|
|
343
|
+
}, z.core.$strip>>], undefined>;
|
|
409
344
|
readonly updateProjectIssueStatusAndDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
410
345
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
411
346
|
project_slug: z.ZodString;
|
|
@@ -429,11 +364,7 @@ declare const sentryIssueOperations: {
|
|
|
429
364
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
430
365
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
431
366
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
432
|
-
}, z.core.$strip
|
|
433
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
434
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
435
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
436
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
367
|
+
}, z.core.$strip>>], undefined>;
|
|
437
368
|
readonly deleteOrganizationIssue: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
438
369
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
439
370
|
issue_id: z.ZodString;
|
|
@@ -441,11 +372,7 @@ declare const sentryIssueOperations: {
|
|
|
441
372
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
442
373
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
443
374
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
444
|
-
}, z.core.$strip
|
|
445
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
446
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
447
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
448
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
375
|
+
}, z.core.$strip>>], undefined>;
|
|
449
376
|
readonly deleteProjectIssues: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
450
377
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
451
378
|
project_slug: z.ZodString;
|
|
@@ -455,11 +382,7 @@ declare const sentryIssueOperations: {
|
|
|
455
382
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
456
383
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
457
384
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
458
|
-
}, z.core.$strip
|
|
459
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
460
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
461
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
462
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
385
|
+
}, z.core.$strip>>], undefined>;
|
|
463
386
|
readonly retrieveIssueEventsById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
464
387
|
cursor: z.ZodOptional<z.ZodString>;
|
|
465
388
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -473,11 +396,7 @@ declare const sentryIssueOperations: {
|
|
|
473
396
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
474
397
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
475
398
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
476
|
-
}, z.core.$strip
|
|
477
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
478
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
479
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
480
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
399
|
+
}, z.core.$strip>>], undefined>;
|
|
481
400
|
readonly retrieveIssueHashesForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
482
401
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
483
402
|
issue_id: z.ZodString;
|
|
@@ -485,11 +404,7 @@ declare const sentryIssueOperations: {
|
|
|
485
404
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
486
405
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
487
406
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
488
|
-
}, z.core.$strip
|
|
489
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
490
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
491
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
492
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
407
|
+
}, z.core.$strip>>], undefined>;
|
|
493
408
|
readonly retrieveIssueTagDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
494
409
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
495
410
|
issue_id: z.ZodString;
|
|
@@ -498,11 +413,7 @@ declare const sentryIssueOperations: {
|
|
|
498
413
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
499
414
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
500
415
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
501
|
-
}, z.core.$strip
|
|
502
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
503
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
504
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
505
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
416
|
+
}, z.core.$strip>>], undefined>;
|
|
506
417
|
readonly fetchTagValuesForIssue: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
507
418
|
cursor: z.ZodOptional<z.ZodString>;
|
|
508
419
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -514,11 +425,7 @@ declare const sentryIssueOperations: {
|
|
|
514
425
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
515
426
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
516
427
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
517
|
-
}, z.core.$strip
|
|
518
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
519
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
520
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
521
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
428
|
+
}, z.core.$strip>>], undefined>;
|
|
522
429
|
readonly createSentryExternalIssueLink: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
523
430
|
install_uuid: z.ZodString;
|
|
524
431
|
issueId: z.ZodString;
|
|
@@ -529,11 +436,7 @@ declare const sentryIssueOperations: {
|
|
|
529
436
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
530
437
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
531
438
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
532
|
-
}, z.core.$strip
|
|
533
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
534
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
535
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
536
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
439
|
+
}, z.core.$strip>>], undefined>;
|
|
537
440
|
readonly deleteExternalIssueByUuid: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
538
441
|
install_uuid: z.ZodString;
|
|
539
442
|
external_issue_id: z.ZodString;
|
|
@@ -541,11 +444,7 @@ declare const sentryIssueOperations: {
|
|
|
541
444
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
542
445
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
543
446
|
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>;
|
|
447
|
+
}, z.core.$strip>>], undefined>;
|
|
549
448
|
readonly retrieveShortIdForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
550
449
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
551
450
|
short_id: z.ZodString;
|
|
@@ -553,11 +452,7 @@ declare const sentryIssueOperations: {
|
|
|
553
452
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
554
453
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
555
454
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
556
|
-
}, z.core.$strip
|
|
557
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
558
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
559
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
560
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
455
|
+
}, z.core.$strip>>], undefined>;
|
|
561
456
|
};
|
|
562
457
|
//#endregion
|
|
563
458
|
export { createSentryExternalIssueLink, deleteExternalIssueByUuid, deleteOrganizationIssue, deleteProjectIssues, fetchTagValuesForIssue, getOrganizationIssueDetails, retrieveIssueEventsById, retrieveIssueHashesForOrganization, retrieveIssueTagDetails, retrieveProjectIssuesList, retrieveShortIdForOrganization, sentryIssueOperations, updateIssueAttributesInOrganization, updateProjectIssueStatusAndDetails };
|
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-DcT49a8O.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
package/dist/members.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/members.d.ts
|
|
6
5
|
declare const listOrganizationMembers: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -27,11 +26,7 @@ declare const listOrganizationMembers: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
27
26
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
28
27
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
29
28
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
30
|
-
}, z.core.$strip
|
|
31
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
32
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
33
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
34
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
29
|
+
}, z.core.$strip>>], undefined>;
|
|
35
30
|
declare const retrieveOrganizationMember: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
36
31
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
37
32
|
member_id: z.ZodString;
|
|
@@ -54,11 +49,7 @@ declare const retrieveOrganizationMember: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
54
49
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
55
50
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
56
51
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
57
|
-
}, z.core.$strip
|
|
58
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
59
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
60
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
61
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
52
|
+
}, z.core.$strip>>], undefined>;
|
|
62
53
|
declare const addOrganizationMemberViaEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
63
54
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
64
55
|
email: z.ZodString;
|
|
@@ -90,11 +81,7 @@ declare const addOrganizationMemberViaEmail: _keystrokehq_core0.Operation<z.ZodO
|
|
|
90
81
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
91
82
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
92
83
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
93
|
-
}, z.core.$strip
|
|
94
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
95
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
96
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
97
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
84
|
+
}, z.core.$strip>>], undefined>;
|
|
98
85
|
declare const updateOrganizationMemberRole: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
99
86
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
100
87
|
member_id: z.ZodString;
|
|
@@ -124,11 +111,7 @@ declare const updateOrganizationMemberRole: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
124
111
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
125
112
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
126
113
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
127
|
-
}, z.core.$strip
|
|
128
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
129
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
130
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
131
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
114
|
+
}, z.core.$strip>>], undefined>;
|
|
132
115
|
declare const deleteOrganizationMember: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
133
116
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
134
117
|
member_id: z.ZodString;
|
|
@@ -136,11 +119,7 @@ declare const deleteOrganizationMember: _keystrokehq_core0.Operation<z.ZodObject
|
|
|
136
119
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
137
120
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
138
121
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
139
|
-
}, z.core.$strip
|
|
140
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
141
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
142
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
143
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
122
|
+
}, z.core.$strip>>], undefined>;
|
|
144
123
|
declare const patchUserActiveStatusInOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
145
124
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
146
125
|
member_id: z.ZodString;
|
|
@@ -164,11 +143,7 @@ declare const patchUserActiveStatusInOrganization: _keystrokehq_core0.Operation<
|
|
|
164
143
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
165
144
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
166
145
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
167
|
-
}, z.core.$strip
|
|
168
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
169
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
170
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
171
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
146
|
+
}, z.core.$strip>>], undefined>;
|
|
172
147
|
declare const deleteUserFromOrg: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
173
148
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
174
149
|
member_id: z.ZodString;
|
|
@@ -176,11 +151,7 @@ declare const deleteUserFromOrg: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
176
151
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
177
152
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
178
153
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
179
|
-
}, z.core.$strip
|
|
180
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
181
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
182
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
183
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
154
|
+
}, z.core.$strip>>], undefined>;
|
|
184
155
|
declare const sentryMemberOperations: {
|
|
185
156
|
readonly listOrganizationMembers: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
186
157
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -206,11 +177,7 @@ declare const sentryMemberOperations: {
|
|
|
206
177
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
207
178
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
208
179
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
209
|
-
}, z.core.$strip
|
|
210
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
211
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
212
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
213
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
180
|
+
}, z.core.$strip>>], undefined>;
|
|
214
181
|
readonly retrieveOrganizationMember: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
215
182
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
216
183
|
member_id: z.ZodString;
|
|
@@ -233,11 +200,7 @@ declare const sentryMemberOperations: {
|
|
|
233
200
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
234
201
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
235
202
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
236
|
-
}, z.core.$strip
|
|
237
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
238
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
239
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
240
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
203
|
+
}, z.core.$strip>>], undefined>;
|
|
241
204
|
readonly addOrganizationMemberViaEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
242
205
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
243
206
|
email: z.ZodString;
|
|
@@ -269,11 +232,7 @@ declare const sentryMemberOperations: {
|
|
|
269
232
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
270
233
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
271
234
|
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>;
|
|
235
|
+
}, z.core.$strip>>], undefined>;
|
|
277
236
|
readonly updateOrganizationMemberRole: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
278
237
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
279
238
|
member_id: z.ZodString;
|
|
@@ -303,11 +262,7 @@ declare const sentryMemberOperations: {
|
|
|
303
262
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
304
263
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
305
264
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
306
|
-
}, z.core.$strip
|
|
307
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
308
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
309
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
310
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
265
|
+
}, z.core.$strip>>], undefined>;
|
|
311
266
|
readonly deleteOrganizationMember: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
312
267
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
313
268
|
member_id: z.ZodString;
|
|
@@ -315,11 +270,7 @@ declare const sentryMemberOperations: {
|
|
|
315
270
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
316
271
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
317
272
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
318
|
-
}, z.core.$strip
|
|
319
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
320
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
321
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
322
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
273
|
+
}, z.core.$strip>>], undefined>;
|
|
323
274
|
readonly patchUserActiveStatusInOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
324
275
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
325
276
|
member_id: z.ZodString;
|
|
@@ -343,11 +294,7 @@ declare const sentryMemberOperations: {
|
|
|
343
294
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
344
295
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
345
296
|
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>;
|
|
297
|
+
}, z.core.$strip>>], undefined>;
|
|
351
298
|
readonly deleteUserFromOrg: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
352
299
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
353
300
|
member_id: z.ZodString;
|
|
@@ -355,11 +302,7 @@ declare const sentryMemberOperations: {
|
|
|
355
302
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
356
303
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
357
304
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
358
|
-
}, z.core.$strip
|
|
359
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
360
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
361
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
362
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
305
|
+
}, z.core.$strip>>], undefined>;
|
|
363
306
|
};
|
|
364
307
|
//#endregion
|
|
365
308
|
export { addOrganizationMemberViaEmail, deleteOrganizationMember, deleteUserFromOrg, listOrganizationMembers, patchUserActiveStatusInOrganization, retrieveOrganizationMember, sentryMemberOperations, updateOrganizationMemberRole };
|
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-DcT49a8O.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|