@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
package/dist/projects.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/projects.d.ts
|
|
6
5
|
declare const accessProjectInformation: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -18,11 +17,7 @@ declare const accessProjectInformation: _keystrokehq_core0.Operation<z.ZodObject
|
|
|
18
17
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
19
18
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
20
19
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
21
|
-
}, z.core.$strip
|
|
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>>[] | undefined>], undefined>;
|
|
20
|
+
}, z.core.$strip>>], undefined>;
|
|
26
21
|
declare const getProjectList: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
27
22
|
cursor: z.ZodOptional<z.ZodString>;
|
|
28
23
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -39,11 +34,7 @@ declare const getProjectList: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
39
34
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
40
35
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
41
36
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
42
|
-
}, z.core.$strip
|
|
43
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
44
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
45
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
46
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
37
|
+
}, z.core.$strip>>], undefined>;
|
|
47
38
|
declare const updateProjectDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
48
39
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
49
40
|
project_slug: z.ZodString;
|
|
@@ -74,11 +65,7 @@ declare const updateProjectDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
74
65
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
75
66
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
76
67
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
77
|
-
}, z.core.$strip
|
|
78
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
79
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
80
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
81
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
68
|
+
}, z.core.$strip>>], undefined>;
|
|
82
69
|
declare const deleteProjectById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
83
70
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
84
71
|
project_slug: z.ZodString;
|
|
@@ -86,11 +73,7 @@ declare const deleteProjectById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
86
73
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
87
74
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
88
75
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
89
|
-
}, z.core.$strip
|
|
90
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
91
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
92
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
93
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
76
|
+
}, z.core.$strip>>], undefined>;
|
|
94
77
|
declare const createTeamProjectForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
95
78
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
96
79
|
team_slug: z.ZodString;
|
|
@@ -110,11 +93,7 @@ declare const createTeamProjectForOrganization: _keystrokehq_core0.Operation<z.Z
|
|
|
110
93
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
111
94
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
112
95
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
113
|
-
}, z.core.$strip
|
|
114
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
115
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
116
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
117
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
96
|
+
}, z.core.$strip>>], undefined>;
|
|
118
97
|
declare const addTeamToProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
119
98
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
120
99
|
project_slug: z.ZodString;
|
|
@@ -131,11 +110,7 @@ declare const addTeamToProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
131
110
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
132
111
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
133
112
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
134
|
-
}, z.core.$strip
|
|
135
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
136
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
137
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
138
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
113
|
+
}, z.core.$strip>>], undefined>;
|
|
139
114
|
declare const retrieveProjectTeams: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
140
115
|
cursor: z.ZodOptional<z.ZodString>;
|
|
141
116
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -152,11 +127,7 @@ declare const retrieveProjectTeams: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
152
127
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
153
128
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
154
129
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
155
|
-
}, z.core.$strip
|
|
156
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
157
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
158
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
159
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
130
|
+
}, z.core.$strip>>], undefined>;
|
|
160
131
|
declare const deleteProjectTeamAssociation: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
161
132
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
162
133
|
project_slug: z.ZodString;
|
|
@@ -165,11 +136,7 @@ declare const deleteProjectTeamAssociation: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
165
136
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
166
137
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
167
138
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
168
|
-
}, z.core.$strip
|
|
169
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
170
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
171
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
172
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
139
|
+
}, z.core.$strip>>], undefined>;
|
|
173
140
|
declare const retrieveProjectMembersList: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
174
141
|
cursor: z.ZodOptional<z.ZodString>;
|
|
175
142
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -195,11 +162,7 @@ declare const retrieveProjectMembersList: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
195
162
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
196
163
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
197
164
|
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>;
|
|
165
|
+
}, z.core.$strip>>], undefined>;
|
|
203
166
|
declare const listProjectUsers: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
204
167
|
cursor: z.ZodOptional<z.ZodString>;
|
|
205
168
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -210,11 +173,7 @@ declare const listProjectUsers: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
210
173
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
211
174
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
212
175
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
213
|
-
}, z.core.$strip
|
|
214
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
215
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
216
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
217
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
176
|
+
}, z.core.$strip>>], undefined>;
|
|
218
177
|
declare const retrieveProjectFilterData: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
219
178
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
220
179
|
project_slug: z.ZodString;
|
|
@@ -222,11 +181,7 @@ declare const retrieveProjectFilterData: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
222
181
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
223
182
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
224
183
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
225
|
-
}, z.core.$strip
|
|
226
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
227
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
228
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
229
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
184
|
+
}, z.core.$strip>>], undefined>;
|
|
230
185
|
declare const toggleProjectFilterStatus: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
231
186
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
232
187
|
project_slug: z.ZodString;
|
|
@@ -237,11 +192,7 @@ declare const toggleProjectFilterStatus: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
237
192
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
238
193
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
239
194
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
240
|
-
}, z.core.$strip
|
|
241
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
242
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
243
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
244
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
195
|
+
}, z.core.$strip>>], undefined>;
|
|
245
196
|
declare const fetchProjectOwnershipDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
246
197
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
247
198
|
project_slug: z.ZodString;
|
|
@@ -249,11 +200,7 @@ declare const fetchProjectOwnershipDetails: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
249
200
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
250
201
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
251
202
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
252
|
-
}, z.core.$strip
|
|
253
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
254
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
255
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
256
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
203
|
+
}, z.core.$strip>>], undefined>;
|
|
257
204
|
declare const updateProjectOwnershipSettings: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
258
205
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
259
206
|
project_slug: z.ZodString;
|
|
@@ -269,11 +216,7 @@ declare const updateProjectOwnershipSettings: _keystrokehq_core0.Operation<z.Zod
|
|
|
269
216
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
270
217
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
271
218
|
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>;
|
|
219
|
+
}, z.core.$strip>>], undefined>;
|
|
277
220
|
declare const retrieveProjectTagValues: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
278
221
|
cursor: z.ZodOptional<z.ZodString>;
|
|
279
222
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -285,11 +228,7 @@ declare const retrieveProjectTagValues: _keystrokehq_core0.Operation<z.ZodObject
|
|
|
285
228
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
286
229
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
287
230
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
288
|
-
}, z.core.$strip
|
|
289
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
290
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
291
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
292
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
231
|
+
}, z.core.$strip>>], undefined>;
|
|
293
232
|
declare const postProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
294
233
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
295
234
|
project_slug: z.ZodString;
|
|
@@ -298,11 +237,7 @@ declare const postProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObject
|
|
|
298
237
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
299
238
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
300
239
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
301
|
-
}, z.core.$strip
|
|
302
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
303
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
304
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
305
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
240
|
+
}, z.core.$strip>>], undefined>;
|
|
306
241
|
declare const retrieveProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
307
242
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
308
243
|
project_slug: z.ZodString;
|
|
@@ -310,11 +245,7 @@ declare const retrieveProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
310
245
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
311
246
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
312
247
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
313
|
-
}, z.core.$strip
|
|
314
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
315
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
316
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
317
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
248
|
+
}, z.core.$strip>>], undefined>;
|
|
318
249
|
declare const updateSymbolSourceSettings: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
319
250
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
320
251
|
project_slug: z.ZodString;
|
|
@@ -324,11 +255,7 @@ declare const updateSymbolSourceSettings: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
324
255
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
325
256
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
326
257
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
327
|
-
}, z.core.$strip
|
|
328
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
329
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
330
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
331
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
258
|
+
}, z.core.$strip>>], undefined>;
|
|
332
259
|
declare const deleteProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
333
260
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
334
261
|
project_slug: z.ZodString;
|
|
@@ -337,11 +264,7 @@ declare const deleteProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
337
264
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
338
265
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
339
266
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
340
|
-
}, z.core.$strip
|
|
341
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
342
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
343
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
344
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
267
|
+
}, z.core.$strip>>], undefined>;
|
|
345
268
|
declare const sentryProjectOperations: {
|
|
346
269
|
readonly accessProjectInformation: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
347
270
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
@@ -358,11 +281,7 @@ declare const sentryProjectOperations: {
|
|
|
358
281
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
359
282
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
360
283
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
361
|
-
}, z.core.$strip
|
|
362
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
363
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
364
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
365
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
284
|
+
}, z.core.$strip>>], undefined>;
|
|
366
285
|
readonly getProjectList: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
367
286
|
cursor: z.ZodOptional<z.ZodString>;
|
|
368
287
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -379,11 +298,7 @@ declare const sentryProjectOperations: {
|
|
|
379
298
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
380
299
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
381
300
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
382
|
-
}, z.core.$strip
|
|
383
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
384
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
385
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
386
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
301
|
+
}, z.core.$strip>>], undefined>;
|
|
387
302
|
readonly updateProjectDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
388
303
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
389
304
|
project_slug: z.ZodString;
|
|
@@ -414,11 +329,7 @@ declare const sentryProjectOperations: {
|
|
|
414
329
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
415
330
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
416
331
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
417
|
-
}, z.core.$strip
|
|
418
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
419
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
420
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
421
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
332
|
+
}, z.core.$strip>>], undefined>;
|
|
422
333
|
readonly deleteProjectById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
423
334
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
424
335
|
project_slug: z.ZodString;
|
|
@@ -426,11 +337,7 @@ declare const sentryProjectOperations: {
|
|
|
426
337
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
427
338
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
428
339
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
429
|
-
}, z.core.$strip
|
|
430
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
431
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
432
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
433
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
340
|
+
}, z.core.$strip>>], undefined>;
|
|
434
341
|
readonly createTeamProjectForOrganization: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
435
342
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
436
343
|
team_slug: z.ZodString;
|
|
@@ -450,11 +357,7 @@ declare const sentryProjectOperations: {
|
|
|
450
357
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
451
358
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
452
359
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
453
|
-
}, z.core.$strip
|
|
454
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
455
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
456
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
457
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
360
|
+
}, z.core.$strip>>], undefined>;
|
|
458
361
|
readonly addTeamToProject: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
459
362
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
460
363
|
project_slug: z.ZodString;
|
|
@@ -471,11 +374,7 @@ declare const sentryProjectOperations: {
|
|
|
471
374
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
472
375
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
473
376
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
474
|
-
}, z.core.$strip
|
|
475
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
476
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
477
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
478
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
377
|
+
}, z.core.$strip>>], undefined>;
|
|
479
378
|
readonly retrieveProjectTeams: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
480
379
|
cursor: z.ZodOptional<z.ZodString>;
|
|
481
380
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -492,11 +391,7 @@ declare const sentryProjectOperations: {
|
|
|
492
391
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
493
392
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
494
393
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
495
|
-
}, z.core.$strip
|
|
496
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
497
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
498
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
499
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
394
|
+
}, z.core.$strip>>], undefined>;
|
|
500
395
|
readonly deleteProjectTeamAssociation: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
501
396
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
502
397
|
project_slug: z.ZodString;
|
|
@@ -505,11 +400,7 @@ declare const sentryProjectOperations: {
|
|
|
505
400
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
506
401
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
507
402
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
508
|
-
}, z.core.$strip
|
|
509
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
510
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
511
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
512
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
403
|
+
}, z.core.$strip>>], undefined>;
|
|
513
404
|
readonly retrieveProjectMembersList: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
514
405
|
cursor: z.ZodOptional<z.ZodString>;
|
|
515
406
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -535,11 +426,7 @@ declare const sentryProjectOperations: {
|
|
|
535
426
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
536
427
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
537
428
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
538
|
-
}, z.core.$strip
|
|
539
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
540
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
541
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
542
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
429
|
+
}, z.core.$strip>>], undefined>;
|
|
543
430
|
readonly listProjectUsers: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
544
431
|
cursor: z.ZodOptional<z.ZodString>;
|
|
545
432
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -550,11 +437,7 @@ declare const sentryProjectOperations: {
|
|
|
550
437
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
551
438
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
552
439
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
553
|
-
}, z.core.$strip
|
|
554
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
555
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
556
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
557
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
440
|
+
}, z.core.$strip>>], undefined>;
|
|
558
441
|
readonly retrieveProjectFilterData: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
559
442
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
560
443
|
project_slug: z.ZodString;
|
|
@@ -562,11 +445,7 @@ declare const sentryProjectOperations: {
|
|
|
562
445
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
563
446
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
564
447
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
565
|
-
}, z.core.$strip
|
|
566
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
567
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
568
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
569
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
448
|
+
}, z.core.$strip>>], undefined>;
|
|
570
449
|
readonly toggleProjectFilterStatus: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
571
450
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
572
451
|
project_slug: z.ZodString;
|
|
@@ -577,11 +456,7 @@ declare const sentryProjectOperations: {
|
|
|
577
456
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
578
457
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
579
458
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
580
|
-
}, z.core.$strip
|
|
581
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
582
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
583
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
584
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
459
|
+
}, z.core.$strip>>], undefined>;
|
|
585
460
|
readonly fetchProjectOwnershipDetails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
586
461
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
587
462
|
project_slug: z.ZodString;
|
|
@@ -589,11 +464,7 @@ declare const sentryProjectOperations: {
|
|
|
589
464
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
590
465
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
591
466
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
592
|
-
}, z.core.$strip
|
|
593
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
594
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
595
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
596
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
467
|
+
}, z.core.$strip>>], undefined>;
|
|
597
468
|
readonly updateProjectOwnershipSettings: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
598
469
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
599
470
|
project_slug: z.ZodString;
|
|
@@ -609,11 +480,7 @@ declare const sentryProjectOperations: {
|
|
|
609
480
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
610
481
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
611
482
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
612
|
-
}, z.core.$strip
|
|
613
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
614
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
615
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
616
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
483
|
+
}, z.core.$strip>>], undefined>;
|
|
617
484
|
readonly retrieveProjectTagValues: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
618
485
|
cursor: z.ZodOptional<z.ZodString>;
|
|
619
486
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -625,11 +492,7 @@ declare const sentryProjectOperations: {
|
|
|
625
492
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
626
493
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
627
494
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
628
|
-
}, z.core.$strip
|
|
629
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
630
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
631
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
632
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
495
|
+
}, z.core.$strip>>], undefined>;
|
|
633
496
|
readonly postProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
634
497
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
635
498
|
project_slug: z.ZodString;
|
|
@@ -638,11 +501,7 @@ declare const sentryProjectOperations: {
|
|
|
638
501
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
639
502
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
640
503
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
641
|
-
}, z.core.$strip
|
|
642
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
643
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
644
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
645
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
504
|
+
}, z.core.$strip>>], undefined>;
|
|
646
505
|
readonly retrieveProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
647
506
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
648
507
|
project_slug: z.ZodString;
|
|
@@ -650,11 +509,7 @@ declare const sentryProjectOperations: {
|
|
|
650
509
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
651
510
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
652
511
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
653
|
-
}, z.core.$strip
|
|
654
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
655
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
656
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
657
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
512
|
+
}, z.core.$strip>>], undefined>;
|
|
658
513
|
readonly updateSymbolSourceSettings: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
659
514
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
660
515
|
project_slug: z.ZodString;
|
|
@@ -664,11 +519,7 @@ declare const sentryProjectOperations: {
|
|
|
664
519
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
665
520
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
666
521
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
667
|
-
}, z.core.$strip
|
|
668
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
669
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
670
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
671
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
522
|
+
}, z.core.$strip>>], undefined>;
|
|
672
523
|
readonly deleteProjectSymbolSources: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
673
524
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
674
525
|
project_slug: z.ZodString;
|
|
@@ -677,11 +528,7 @@ declare const sentryProjectOperations: {
|
|
|
677
528
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
678
529
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
679
530
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
680
|
-
}, z.core.$strip
|
|
681
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
682
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
683
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
684
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
531
|
+
}, z.core.$strip>>], undefined>;
|
|
685
532
|
};
|
|
686
533
|
//#endregion
|
|
687
534
|
export { accessProjectInformation, addTeamToProject, createTeamProjectForOrganization, deleteProjectById, deleteProjectSymbolSources, deleteProjectTeamAssociation, fetchProjectOwnershipDetails, getProjectList, listProjectUsers, postProjectSymbolSources, retrieveProjectFilterData, retrieveProjectMembersList, retrieveProjectSymbolSources, retrieveProjectTagValues, retrieveProjectTeams, sentryProjectOperations, toggleProjectFilterStatus, updateProjectDetails, updateProjectOwnershipSettings, updateSymbolSourceSettings };
|
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-DcT49a8O.mjs";
|
|
3
3
|
import { t as SENTRY_SCOPE } from "./scopes-RRU0vt-a.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|