@keystrokehq/sentry 0.0.12 → 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 +44 -133
- package/dist/alerts.mjs +1 -1
- package/dist/connection.d.mts +1 -1
- package/dist/connection.mjs +1 -1
- package/dist/dashboards.d.mts +20 -61
- package/dist/dashboards.mjs +1 -1
- package/dist/debug-files.d.mts +12 -37
- package/dist/debug-files.mjs +1 -1
- package/dist/deploys.d.mts +8 -25
- package/dist/deploys.mjs +1 -1
- package/dist/discover.d.mts +20 -61
- package/dist/discover.mjs +1 -1
- package/dist/{endpoint-factory-C0WIFmtK.mjs → endpoint-factory-DcT49a8O.mjs} +2 -1
- package/dist/environments.d.mts +12 -37
- package/dist/environments.mjs +1 -1
- package/dist/events-api.d.mts +30 -87
- package/dist/events-api.mjs +1 -1
- package/dist/feedback.d.mts +8 -25
- package/dist/feedback.mjs +1 -1
- package/dist/integration-D7KCM1-p.mjs +75 -0
- package/dist/integration-veqa_7yB.d.mts +33 -0
- package/dist/issues.d.mts +60 -165
- package/dist/issues.mjs +1 -1
- package/dist/members.d.mts +28 -85
- package/dist/members.mjs +1 -1
- package/dist/monitors.d.mts +40 -121
- package/dist/monitors.mjs +1 -1
- package/dist/notifications.d.mts +20 -61
- package/dist/notifications.mjs +1 -1
- package/dist/organizations.d.mts +60 -181
- package/dist/organizations.mjs +1 -1
- package/dist/project-keys.d.mts +20 -61
- package/dist/project-keys.mjs +1 -1
- package/dist/projects.d.mts +76 -229
- package/dist/projects.mjs +1 -1
- package/dist/releases.d.mts +86 -255
- package/dist/releases.mjs +1 -1
- package/dist/replays.d.mts +36 -109
- package/dist/replays.mjs +1 -1
- package/dist/schemas.d.mts +2 -2
- package/dist/scim.d.mts +44 -133
- package/dist/scim.mjs +1 -1
- package/dist/teams.d.mts +56 -169
- package/dist/teams.mjs +1 -1
- package/dist/triggers.d.mts +3 -59
- package/dist/triggers.mjs +1 -51
- package/dist/user-emails.d.mts +16 -49
- package/dist/user-emails.mjs +1 -1
- package/dist/webhooks.d.mts +20 -61
- package/dist/webhooks.mjs +1 -1
- package/package.json +5 -6
- package/dist/integration-DCNn_9vz.mjs +0 -356
- package/dist/integration-rmp485nJ.d.mts +0 -57
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<{
|
|
@@ -24,10 +23,10 @@ declare const retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
24
23
|
id: z.ZodString;
|
|
25
24
|
shortId: z.ZodOptional<z.ZodString>;
|
|
26
25
|
status: z.ZodOptional<z.ZodEnum<{
|
|
27
|
-
archived: "archived";
|
|
28
26
|
unresolved: "unresolved";
|
|
29
27
|
resolved: "resolved";
|
|
30
28
|
ignored: "ignored";
|
|
29
|
+
archived: "archived";
|
|
31
30
|
reprocessing: "reprocessing";
|
|
32
31
|
}>>;
|
|
33
32
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -48,15 +47,11 @@ declare const retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
48
47
|
lastSeen: z.ZodOptional<z.ZodISODateTime>;
|
|
49
48
|
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
50
49
|
userCount: z.ZodOptional<z.ZodNumber>;
|
|
51
|
-
}, z.core.$loose>>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
52
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
53
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
54
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
55
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
50
|
+
}, z.core.$loose>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
56
51
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
57
52
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
58
53
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
59
|
-
}, z.core.$strip>>
|
|
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;
|
|
@@ -64,10 +59,10 @@ declare const getOrganizationIssueDetails: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
64
59
|
id: z.ZodString;
|
|
65
60
|
shortId: z.ZodOptional<z.ZodString>;
|
|
66
61
|
status: z.ZodOptional<z.ZodEnum<{
|
|
67
|
-
archived: "archived";
|
|
68
62
|
unresolved: "unresolved";
|
|
69
63
|
resolved: "resolved";
|
|
70
64
|
ignored: "ignored";
|
|
65
|
+
archived: "archived";
|
|
71
66
|
reprocessing: "reprocessing";
|
|
72
67
|
}>>;
|
|
73
68
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -88,23 +83,19 @@ declare const getOrganizationIssueDetails: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
88
83
|
lastSeen: z.ZodOptional<z.ZodISODateTime>;
|
|
89
84
|
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
90
85
|
userCount: z.ZodOptional<z.ZodNumber>;
|
|
91
|
-
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
92
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
93
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
94
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
95
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
86
|
+
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
96
87
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
97
88
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
98
89
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
99
|
-
}, z.core.$strip>>
|
|
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>>;
|
|
103
94
|
status: z.ZodOptional<z.ZodEnum<{
|
|
104
|
-
archived: "archived";
|
|
105
95
|
unresolved: "unresolved";
|
|
106
96
|
resolved: "resolved";
|
|
107
97
|
ignored: "ignored";
|
|
98
|
+
archived: "archived";
|
|
108
99
|
reprocessing: "reprocessing";
|
|
109
100
|
}>>;
|
|
110
101
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -119,24 +110,20 @@ declare const updateIssueAttributesInOrganization: _keystrokehq_core0.Operation<
|
|
|
119
110
|
ignoreUserCount: z.ZodOptional<z.ZodNumber>;
|
|
120
111
|
ignoreWindow: z.ZodOptional<z.ZodNumber>;
|
|
121
112
|
ignoreUserWindow: z.ZodOptional<z.ZodNumber>;
|
|
122
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
113
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
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;
|
|
134
121
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
135
122
|
status: z.ZodOptional<z.ZodEnum<{
|
|
136
|
-
archived: "archived";
|
|
137
123
|
unresolved: "unresolved";
|
|
138
124
|
resolved: "resolved";
|
|
139
125
|
ignored: "ignored";
|
|
126
|
+
archived: "archived";
|
|
140
127
|
reprocessing: "reprocessing";
|
|
141
128
|
}>>;
|
|
142
129
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -147,41 +134,29 @@ declare const updateProjectIssueStatusAndDetails: _keystrokehq_core0.Operation<z
|
|
|
147
134
|
merge: z.ZodOptional<z.ZodBoolean>;
|
|
148
135
|
discard: z.ZodOptional<z.ZodBoolean>;
|
|
149
136
|
ignoreDuration: z.ZodOptional<z.ZodNumber>;
|
|
150
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
151
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
152
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
153
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
154
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
137
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
155
138
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
156
139
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
157
140
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
158
|
-
}, z.core.$strip>>
|
|
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;
|
|
162
|
-
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
163
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
164
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
165
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
166
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
145
|
+
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
167
146
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
168
147
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
169
148
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
170
|
-
}, z.core.$strip>>
|
|
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;
|
|
174
153
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
175
154
|
query: z.ZodOptional<z.ZodString>;
|
|
176
|
-
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
155
|
+
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", 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>;
|
|
@@ -191,40 +166,28 @@ declare const retrieveIssueEventsById: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
191
166
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
192
167
|
environment: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
193
168
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
194
|
-
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
195
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
196
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
197
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
198
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
169
|
+
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
199
170
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
200
171
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
201
172
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
202
|
-
}, z.core.$strip>>
|
|
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;
|
|
206
|
-
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
207
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
208
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
209
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
210
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
177
|
+
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
211
178
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
212
179
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
213
180
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
214
|
-
}, z.core.$strip>>
|
|
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;
|
|
218
185
|
key: z.ZodString;
|
|
219
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
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>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
186
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
224
187
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
225
188
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
226
189
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
227
|
-
}, z.core.$strip>>
|
|
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>;
|
|
@@ -232,54 +195,38 @@ declare const fetchTagValuesForIssue: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
232
195
|
issue_id: z.ZodString;
|
|
233
196
|
key: z.ZodString;
|
|
234
197
|
query: z.ZodOptional<z.ZodString>;
|
|
235
|
-
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
198
|
+
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", 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;
|
|
247
206
|
webUrl: z.ZodString;
|
|
248
207
|
project: z.ZodOptional<z.ZodString>;
|
|
249
208
|
identifier: z.ZodOptional<z.ZodString>;
|
|
250
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
251
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
252
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
253
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
254
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
209
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
255
210
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
256
211
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
257
212
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
258
|
-
}, z.core.$strip>>
|
|
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;
|
|
262
|
-
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
217
|
+
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
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;
|
|
274
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
275
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
276
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
277
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
278
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
225
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
279
226
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
280
227
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
281
228
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
282
|
-
}, z.core.$strip>>
|
|
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>;
|
|
@@ -302,10 +249,10 @@ declare const sentryIssueOperations: {
|
|
|
302
249
|
id: z.ZodString;
|
|
303
250
|
shortId: z.ZodOptional<z.ZodString>;
|
|
304
251
|
status: z.ZodOptional<z.ZodEnum<{
|
|
305
|
-
archived: "archived";
|
|
306
252
|
unresolved: "unresolved";
|
|
307
253
|
resolved: "resolved";
|
|
308
254
|
ignored: "ignored";
|
|
255
|
+
archived: "archived";
|
|
309
256
|
reprocessing: "reprocessing";
|
|
310
257
|
}>>;
|
|
311
258
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -326,15 +273,11 @@ declare const sentryIssueOperations: {
|
|
|
326
273
|
lastSeen: z.ZodOptional<z.ZodISODateTime>;
|
|
327
274
|
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
328
275
|
userCount: z.ZodOptional<z.ZodNumber>;
|
|
329
|
-
}, z.core.$loose>>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
330
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
331
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
332
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
333
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
276
|
+
}, z.core.$loose>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
334
277
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
335
278
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
336
279
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
337
|
-
}, z.core.$strip>>
|
|
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;
|
|
@@ -342,10 +285,10 @@ declare const sentryIssueOperations: {
|
|
|
342
285
|
id: z.ZodString;
|
|
343
286
|
shortId: z.ZodOptional<z.ZodString>;
|
|
344
287
|
status: z.ZodOptional<z.ZodEnum<{
|
|
345
|
-
archived: "archived";
|
|
346
288
|
unresolved: "unresolved";
|
|
347
289
|
resolved: "resolved";
|
|
348
290
|
ignored: "ignored";
|
|
291
|
+
archived: "archived";
|
|
349
292
|
reprocessing: "reprocessing";
|
|
350
293
|
}>>;
|
|
351
294
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -366,23 +309,19 @@ declare const sentryIssueOperations: {
|
|
|
366
309
|
lastSeen: z.ZodOptional<z.ZodISODateTime>;
|
|
367
310
|
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
368
311
|
userCount: z.ZodOptional<z.ZodNumber>;
|
|
369
|
-
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
370
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
371
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
372
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
373
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
312
|
+
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
374
313
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
375
314
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
376
315
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
377
|
-
}, z.core.$strip>>
|
|
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>>;
|
|
381
320
|
status: z.ZodOptional<z.ZodEnum<{
|
|
382
|
-
archived: "archived";
|
|
383
321
|
unresolved: "unresolved";
|
|
384
322
|
resolved: "resolved";
|
|
385
323
|
ignored: "ignored";
|
|
324
|
+
archived: "archived";
|
|
386
325
|
reprocessing: "reprocessing";
|
|
387
326
|
}>>;
|
|
388
327
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -397,24 +336,20 @@ declare const sentryIssueOperations: {
|
|
|
397
336
|
ignoreUserCount: z.ZodOptional<z.ZodNumber>;
|
|
398
337
|
ignoreWindow: z.ZodOptional<z.ZodNumber>;
|
|
399
338
|
ignoreUserWindow: z.ZodOptional<z.ZodNumber>;
|
|
400
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
339
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
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;
|
|
412
347
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
413
348
|
status: z.ZodOptional<z.ZodEnum<{
|
|
414
|
-
archived: "archived";
|
|
415
349
|
unresolved: "unresolved";
|
|
416
350
|
resolved: "resolved";
|
|
417
351
|
ignored: "ignored";
|
|
352
|
+
archived: "archived";
|
|
418
353
|
reprocessing: "reprocessing";
|
|
419
354
|
}>>;
|
|
420
355
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -425,41 +360,29 @@ declare const sentryIssueOperations: {
|
|
|
425
360
|
merge: z.ZodOptional<z.ZodBoolean>;
|
|
426
361
|
discard: z.ZodOptional<z.ZodBoolean>;
|
|
427
362
|
ignoreDuration: z.ZodOptional<z.ZodNumber>;
|
|
428
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
429
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
430
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
431
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
432
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
363
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
433
364
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
434
365
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
435
366
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
436
|
-
}, z.core.$strip>>
|
|
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;
|
|
440
|
-
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
441
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
442
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
443
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
444
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
371
|
+
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
445
372
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
446
373
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
447
374
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
448
|
-
}, z.core.$strip>>
|
|
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;
|
|
452
379
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
453
380
|
query: z.ZodOptional<z.ZodString>;
|
|
454
|
-
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
381
|
+
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
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>;
|
|
@@ -469,40 +392,28 @@ declare const sentryIssueOperations: {
|
|
|
469
392
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
470
393
|
environment: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
471
394
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
472
|
-
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
473
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
474
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
475
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
476
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
395
|
+
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
477
396
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
478
397
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
479
398
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
480
|
-
}, z.core.$strip>>
|
|
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;
|
|
484
|
-
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
485
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
486
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
487
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
488
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
403
|
+
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
489
404
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
490
405
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
491
406
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
492
|
-
}, z.core.$strip>>
|
|
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;
|
|
496
411
|
key: z.ZodString;
|
|
497
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
498
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
499
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
500
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
501
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
412
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
502
413
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
503
414
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
504
415
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
505
|
-
}, z.core.$strip>>
|
|
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>;
|
|
@@ -510,54 +421,38 @@ declare const sentryIssueOperations: {
|
|
|
510
421
|
issue_id: z.ZodString;
|
|
511
422
|
key: z.ZodString;
|
|
512
423
|
query: z.ZodOptional<z.ZodString>;
|
|
513
|
-
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
424
|
+
}, z.core.$strip>, z.ZodArray<z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
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;
|
|
525
432
|
webUrl: z.ZodString;
|
|
526
433
|
project: z.ZodOptional<z.ZodString>;
|
|
527
434
|
identifier: z.ZodOptional<z.ZodString>;
|
|
528
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
529
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
530
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
531
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
532
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
435
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
533
436
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
534
437
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
535
438
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
536
|
-
}, z.core.$strip>>
|
|
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;
|
|
540
|
-
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
443
|
+
}, z.core.$strip>, z.ZodUnknown, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
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;
|
|
552
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"sentry", z.ZodObject<{
|
|
553
|
-
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
554
|
-
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
555
|
-
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
556
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
451
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sentry", z.ZodObject<{
|
|
557
452
|
SENTRY_ACCESS_TOKEN: z.ZodString;
|
|
558
453
|
SENTRY_REGION_URL: z.ZodOptional<z.ZodString>;
|
|
559
454
|
SENTRY_ORG_SLUG: z.ZodOptional<z.ZodString>;
|
|
560
|
-
}, z.core.$strip>>
|
|
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
|
|