@keystrokehq/sentry 0.0.7 → 0.0.8
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/environments.d.mts +2 -2
- package/dist/issues.d.mts +16 -16
- package/dist/monitors.d.mts +24 -24
- package/dist/organizations.d.mts +2 -2
- package/dist/releases.d.mts +2 -2
- package/dist/schemas.d.mts +8 -8
- package/package.json +2 -2
package/dist/environments.d.mts
CHANGED
|
@@ -7,9 +7,9 @@ declare const retrieveProjectEnvironments: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
7
7
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
8
8
|
project_slug: z.ZodString;
|
|
9
9
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
10
|
+
all: "all";
|
|
10
11
|
visible: "visible";
|
|
11
12
|
hidden: "hidden";
|
|
12
|
-
all: "all";
|
|
13
13
|
}>>;
|
|
14
14
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
15
15
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -64,9 +64,9 @@ declare const sentryEnvironmentOperations: {
|
|
|
64
64
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
65
65
|
project_slug: z.ZodString;
|
|
66
66
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
67
|
+
all: "all";
|
|
67
68
|
visible: "visible";
|
|
68
69
|
hidden: "hidden";
|
|
69
|
-
all: "all";
|
|
70
70
|
}>>;
|
|
71
71
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
72
72
|
id: z.ZodOptional<z.ZodString>;
|
package/dist/issues.d.mts
CHANGED
|
@@ -24,10 +24,10 @@ declare const retrieveProjectIssuesList: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
24
24
|
id: z.ZodString;
|
|
25
25
|
shortId: z.ZodOptional<z.ZodString>;
|
|
26
26
|
status: z.ZodOptional<z.ZodEnum<{
|
|
27
|
-
|
|
27
|
+
archived: "archived";
|
|
28
28
|
resolved: "resolved";
|
|
29
|
+
unresolved: "unresolved";
|
|
29
30
|
ignored: "ignored";
|
|
30
|
-
archived: "archived";
|
|
31
31
|
reprocessing: "reprocessing";
|
|
32
32
|
}>>;
|
|
33
33
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -64,10 +64,10 @@ declare const getOrganizationIssueDetails: _keystrokehq_core0.Operation<z.ZodObj
|
|
|
64
64
|
id: z.ZodString;
|
|
65
65
|
shortId: z.ZodOptional<z.ZodString>;
|
|
66
66
|
status: z.ZodOptional<z.ZodEnum<{
|
|
67
|
-
|
|
67
|
+
archived: "archived";
|
|
68
68
|
resolved: "resolved";
|
|
69
|
+
unresolved: "unresolved";
|
|
69
70
|
ignored: "ignored";
|
|
70
|
-
archived: "archived";
|
|
71
71
|
reprocessing: "reprocessing";
|
|
72
72
|
}>>;
|
|
73
73
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -101,10 +101,10 @@ declare const updateIssueAttributesInOrganization: _keystrokehq_core0.Operation<
|
|
|
101
101
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
102
102
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
103
103
|
status: z.ZodOptional<z.ZodEnum<{
|
|
104
|
-
|
|
104
|
+
archived: "archived";
|
|
105
105
|
resolved: "resolved";
|
|
106
|
+
unresolved: "unresolved";
|
|
106
107
|
ignored: "ignored";
|
|
107
|
-
archived: "archived";
|
|
108
108
|
reprocessing: "reprocessing";
|
|
109
109
|
}>>;
|
|
110
110
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -133,10 +133,10 @@ declare const updateProjectIssueStatusAndDetails: _keystrokehq_core0.Operation<z
|
|
|
133
133
|
project_slug: z.ZodString;
|
|
134
134
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
135
135
|
status: z.ZodOptional<z.ZodEnum<{
|
|
136
|
-
|
|
136
|
+
archived: "archived";
|
|
137
137
|
resolved: "resolved";
|
|
138
|
+
unresolved: "unresolved";
|
|
138
139
|
ignored: "ignored";
|
|
139
|
-
archived: "archived";
|
|
140
140
|
reprocessing: "reprocessing";
|
|
141
141
|
}>>;
|
|
142
142
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -302,10 +302,10 @@ declare const sentryIssueOperations: {
|
|
|
302
302
|
id: z.ZodString;
|
|
303
303
|
shortId: z.ZodOptional<z.ZodString>;
|
|
304
304
|
status: z.ZodOptional<z.ZodEnum<{
|
|
305
|
-
|
|
305
|
+
archived: "archived";
|
|
306
306
|
resolved: "resolved";
|
|
307
|
+
unresolved: "unresolved";
|
|
307
308
|
ignored: "ignored";
|
|
308
|
-
archived: "archived";
|
|
309
309
|
reprocessing: "reprocessing";
|
|
310
310
|
}>>;
|
|
311
311
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -342,10 +342,10 @@ declare const sentryIssueOperations: {
|
|
|
342
342
|
id: z.ZodString;
|
|
343
343
|
shortId: z.ZodOptional<z.ZodString>;
|
|
344
344
|
status: z.ZodOptional<z.ZodEnum<{
|
|
345
|
-
|
|
345
|
+
archived: "archived";
|
|
346
346
|
resolved: "resolved";
|
|
347
|
+
unresolved: "unresolved";
|
|
347
348
|
ignored: "ignored";
|
|
348
|
-
archived: "archived";
|
|
349
349
|
reprocessing: "reprocessing";
|
|
350
350
|
}>>;
|
|
351
351
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -379,10 +379,10 @@ declare const sentryIssueOperations: {
|
|
|
379
379
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
380
380
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
381
381
|
status: z.ZodOptional<z.ZodEnum<{
|
|
382
|
-
|
|
382
|
+
archived: "archived";
|
|
383
383
|
resolved: "resolved";
|
|
384
|
+
unresolved: "unresolved";
|
|
384
385
|
ignored: "ignored";
|
|
385
|
-
archived: "archived";
|
|
386
386
|
reprocessing: "reprocessing";
|
|
387
387
|
}>>;
|
|
388
388
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -411,10 +411,10 @@ declare const sentryIssueOperations: {
|
|
|
411
411
|
project_slug: z.ZodString;
|
|
412
412
|
id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
413
413
|
status: z.ZodOptional<z.ZodEnum<{
|
|
414
|
-
|
|
414
|
+
archived: "archived";
|
|
415
415
|
resolved: "resolved";
|
|
416
|
+
unresolved: "unresolved";
|
|
416
417
|
ignored: "ignored";
|
|
417
|
-
archived: "archived";
|
|
418
418
|
reprocessing: "reprocessing";
|
|
419
419
|
}>>;
|
|
420
420
|
statusDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
package/dist/monitors.d.mts
CHANGED
|
@@ -25,11 +25,11 @@ declare const createOrganizationMonitor: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
25
25
|
error: "error";
|
|
26
26
|
active: "active";
|
|
27
27
|
disabled: "disabled";
|
|
28
|
+
pending_deletion: "pending_deletion";
|
|
29
|
+
deletion_in_progress: "deletion_in_progress";
|
|
28
30
|
ok: "ok";
|
|
29
31
|
missed_checkin: "missed_checkin";
|
|
30
32
|
timeout: "timeout";
|
|
31
|
-
pending_deletion: "pending_deletion";
|
|
32
|
-
deletion_in_progress: "deletion_in_progress";
|
|
33
33
|
}>>;
|
|
34
34
|
type: z.ZodOptional<z.ZodString>;
|
|
35
35
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -58,11 +58,11 @@ declare const retrieveOrganizationMonitors: _keystrokehq_core0.Operation<z.ZodOb
|
|
|
58
58
|
error: "error";
|
|
59
59
|
active: "active";
|
|
60
60
|
disabled: "disabled";
|
|
61
|
+
pending_deletion: "pending_deletion";
|
|
62
|
+
deletion_in_progress: "deletion_in_progress";
|
|
61
63
|
ok: "ok";
|
|
62
64
|
missed_checkin: "missed_checkin";
|
|
63
65
|
timeout: "timeout";
|
|
64
|
-
pending_deletion: "pending_deletion";
|
|
65
|
-
deletion_in_progress: "deletion_in_progress";
|
|
66
66
|
}>>;
|
|
67
67
|
type: z.ZodOptional<z.ZodString>;
|
|
68
68
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -87,11 +87,11 @@ declare const getOrganizationMonitorByIdOrSlug: _keystrokehq_core0.Operation<z.Z
|
|
|
87
87
|
error: "error";
|
|
88
88
|
active: "active";
|
|
89
89
|
disabled: "disabled";
|
|
90
|
+
pending_deletion: "pending_deletion";
|
|
91
|
+
deletion_in_progress: "deletion_in_progress";
|
|
90
92
|
ok: "ok";
|
|
91
93
|
missed_checkin: "missed_checkin";
|
|
92
94
|
timeout: "timeout";
|
|
93
|
-
pending_deletion: "pending_deletion";
|
|
94
|
-
deletion_in_progress: "deletion_in_progress";
|
|
95
95
|
}>>;
|
|
96
96
|
type: z.ZodOptional<z.ZodString>;
|
|
97
97
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -125,11 +125,11 @@ declare const modifyOrganizationMonitorData: _keystrokehq_core0.Operation<z.ZodO
|
|
|
125
125
|
error: "error";
|
|
126
126
|
active: "active";
|
|
127
127
|
disabled: "disabled";
|
|
128
|
+
pending_deletion: "pending_deletion";
|
|
129
|
+
deletion_in_progress: "deletion_in_progress";
|
|
128
130
|
ok: "ok";
|
|
129
131
|
missed_checkin: "missed_checkin";
|
|
130
132
|
timeout: "timeout";
|
|
131
|
-
pending_deletion: "pending_deletion";
|
|
132
|
-
deletion_in_progress: "deletion_in_progress";
|
|
133
133
|
}>>;
|
|
134
134
|
type: z.ZodOptional<z.ZodString>;
|
|
135
135
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -167,11 +167,11 @@ declare const getProjectMonitorById: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
167
167
|
error: "error";
|
|
168
168
|
active: "active";
|
|
169
169
|
disabled: "disabled";
|
|
170
|
+
pending_deletion: "pending_deletion";
|
|
171
|
+
deletion_in_progress: "deletion_in_progress";
|
|
170
172
|
ok: "ok";
|
|
171
173
|
missed_checkin: "missed_checkin";
|
|
172
174
|
timeout: "timeout";
|
|
173
|
-
pending_deletion: "pending_deletion";
|
|
174
|
-
deletion_in_progress: "deletion_in_progress";
|
|
175
175
|
}>>;
|
|
176
176
|
type: z.ZodOptional<z.ZodString>;
|
|
177
177
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -204,11 +204,11 @@ declare const updateProjectMonitor: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
204
204
|
error: "error";
|
|
205
205
|
active: "active";
|
|
206
206
|
disabled: "disabled";
|
|
207
|
+
pending_deletion: "pending_deletion";
|
|
208
|
+
deletion_in_progress: "deletion_in_progress";
|
|
207
209
|
ok: "ok";
|
|
208
210
|
missed_checkin: "missed_checkin";
|
|
209
211
|
timeout: "timeout";
|
|
210
|
-
pending_deletion: "pending_deletion";
|
|
211
|
-
deletion_in_progress: "deletion_in_progress";
|
|
212
212
|
}>>;
|
|
213
213
|
type: z.ZodOptional<z.ZodString>;
|
|
214
214
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -291,11 +291,11 @@ declare const sentryMonitorOperations: {
|
|
|
291
291
|
error: "error";
|
|
292
292
|
active: "active";
|
|
293
293
|
disabled: "disabled";
|
|
294
|
+
pending_deletion: "pending_deletion";
|
|
295
|
+
deletion_in_progress: "deletion_in_progress";
|
|
294
296
|
ok: "ok";
|
|
295
297
|
missed_checkin: "missed_checkin";
|
|
296
298
|
timeout: "timeout";
|
|
297
|
-
pending_deletion: "pending_deletion";
|
|
298
|
-
deletion_in_progress: "deletion_in_progress";
|
|
299
299
|
}>>;
|
|
300
300
|
type: z.ZodOptional<z.ZodString>;
|
|
301
301
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -324,11 +324,11 @@ declare const sentryMonitorOperations: {
|
|
|
324
324
|
error: "error";
|
|
325
325
|
active: "active";
|
|
326
326
|
disabled: "disabled";
|
|
327
|
+
pending_deletion: "pending_deletion";
|
|
328
|
+
deletion_in_progress: "deletion_in_progress";
|
|
327
329
|
ok: "ok";
|
|
328
330
|
missed_checkin: "missed_checkin";
|
|
329
331
|
timeout: "timeout";
|
|
330
|
-
pending_deletion: "pending_deletion";
|
|
331
|
-
deletion_in_progress: "deletion_in_progress";
|
|
332
332
|
}>>;
|
|
333
333
|
type: z.ZodOptional<z.ZodString>;
|
|
334
334
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -353,11 +353,11 @@ declare const sentryMonitorOperations: {
|
|
|
353
353
|
error: "error";
|
|
354
354
|
active: "active";
|
|
355
355
|
disabled: "disabled";
|
|
356
|
+
pending_deletion: "pending_deletion";
|
|
357
|
+
deletion_in_progress: "deletion_in_progress";
|
|
356
358
|
ok: "ok";
|
|
357
359
|
missed_checkin: "missed_checkin";
|
|
358
360
|
timeout: "timeout";
|
|
359
|
-
pending_deletion: "pending_deletion";
|
|
360
|
-
deletion_in_progress: "deletion_in_progress";
|
|
361
361
|
}>>;
|
|
362
362
|
type: z.ZodOptional<z.ZodString>;
|
|
363
363
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -391,11 +391,11 @@ declare const sentryMonitorOperations: {
|
|
|
391
391
|
error: "error";
|
|
392
392
|
active: "active";
|
|
393
393
|
disabled: "disabled";
|
|
394
|
+
pending_deletion: "pending_deletion";
|
|
395
|
+
deletion_in_progress: "deletion_in_progress";
|
|
394
396
|
ok: "ok";
|
|
395
397
|
missed_checkin: "missed_checkin";
|
|
396
398
|
timeout: "timeout";
|
|
397
|
-
pending_deletion: "pending_deletion";
|
|
398
|
-
deletion_in_progress: "deletion_in_progress";
|
|
399
399
|
}>>;
|
|
400
400
|
type: z.ZodOptional<z.ZodString>;
|
|
401
401
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -433,11 +433,11 @@ declare const sentryMonitorOperations: {
|
|
|
433
433
|
error: "error";
|
|
434
434
|
active: "active";
|
|
435
435
|
disabled: "disabled";
|
|
436
|
+
pending_deletion: "pending_deletion";
|
|
437
|
+
deletion_in_progress: "deletion_in_progress";
|
|
436
438
|
ok: "ok";
|
|
437
439
|
missed_checkin: "missed_checkin";
|
|
438
440
|
timeout: "timeout";
|
|
439
|
-
pending_deletion: "pending_deletion";
|
|
440
|
-
deletion_in_progress: "deletion_in_progress";
|
|
441
441
|
}>>;
|
|
442
442
|
type: z.ZodOptional<z.ZodString>;
|
|
443
443
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -470,11 +470,11 @@ declare const sentryMonitorOperations: {
|
|
|
470
470
|
error: "error";
|
|
471
471
|
active: "active";
|
|
472
472
|
disabled: "disabled";
|
|
473
|
+
pending_deletion: "pending_deletion";
|
|
474
|
+
deletion_in_progress: "deletion_in_progress";
|
|
473
475
|
ok: "ok";
|
|
474
476
|
missed_checkin: "missed_checkin";
|
|
475
477
|
timeout: "timeout";
|
|
476
|
-
pending_deletion: "pending_deletion";
|
|
477
|
-
deletion_in_progress: "deletion_in_progress";
|
|
478
478
|
}>>;
|
|
479
479
|
type: z.ZodOptional<z.ZodString>;
|
|
480
480
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
package/dist/organizations.d.mts
CHANGED
|
@@ -95,9 +95,9 @@ declare const modifyOrganizationSettings: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
95
95
|
declare const getOrganizationEnvironments: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
96
96
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
97
97
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
98
|
+
all: "all";
|
|
98
99
|
visible: "visible";
|
|
99
100
|
hidden: "hidden";
|
|
100
|
-
all: "all";
|
|
101
101
|
}>>;
|
|
102
102
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
103
103
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -373,9 +373,9 @@ declare const sentryOrganizationOperations: {
|
|
|
373
373
|
readonly getOrganizationEnvironments: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
374
374
|
organization_slug: z.ZodOptional<z.ZodString>;
|
|
375
375
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
376
|
+
all: "all";
|
|
376
377
|
visible: "visible";
|
|
377
378
|
hidden: "hidden";
|
|
378
|
-
all: "all";
|
|
379
379
|
}>>;
|
|
380
380
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
381
381
|
id: z.ZodOptional<z.ZodString>;
|
package/dist/releases.d.mts
CHANGED
|
@@ -19,8 +19,8 @@ declare const listOrganizationReleases: _keystrokehq_core0.Operation<z.ZodObject
|
|
|
19
19
|
crash_free_sessions: "crash_free_sessions";
|
|
20
20
|
}>>;
|
|
21
21
|
status: z.ZodOptional<z.ZodEnum<{
|
|
22
|
-
archived: "archived";
|
|
23
22
|
open: "open";
|
|
23
|
+
archived: "archived";
|
|
24
24
|
}>>;
|
|
25
25
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
26
26
|
version: z.ZodString;
|
|
@@ -490,8 +490,8 @@ declare const sentryReleaseOperations: {
|
|
|
490
490
|
crash_free_sessions: "crash_free_sessions";
|
|
491
491
|
}>>;
|
|
492
492
|
status: z.ZodOptional<z.ZodEnum<{
|
|
493
|
-
archived: "archived";
|
|
494
493
|
open: "open";
|
|
494
|
+
archived: "archived";
|
|
495
495
|
}>>;
|
|
496
496
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
497
497
|
version: z.ZodString;
|
package/dist/schemas.d.mts
CHANGED
|
@@ -104,20 +104,20 @@ declare const sentryMemberSchema: z.ZodObject<{
|
|
|
104
104
|
}, z.core.$loose>;
|
|
105
105
|
type SentryMember = z.output<typeof sentryMemberSchema>;
|
|
106
106
|
declare const sentryIssueStatusSchema: z.ZodEnum<{
|
|
107
|
-
|
|
107
|
+
archived: "archived";
|
|
108
108
|
resolved: "resolved";
|
|
109
|
+
unresolved: "unresolved";
|
|
109
110
|
ignored: "ignored";
|
|
110
|
-
archived: "archived";
|
|
111
111
|
reprocessing: "reprocessing";
|
|
112
112
|
}>;
|
|
113
113
|
declare const sentryIssueSchema: z.ZodObject<{
|
|
114
114
|
id: z.ZodString;
|
|
115
115
|
shortId: z.ZodOptional<z.ZodString>;
|
|
116
116
|
status: z.ZodOptional<z.ZodEnum<{
|
|
117
|
-
|
|
117
|
+
archived: "archived";
|
|
118
118
|
resolved: "resolved";
|
|
119
|
+
unresolved: "unresolved";
|
|
119
120
|
ignored: "ignored";
|
|
120
|
-
archived: "archived";
|
|
121
121
|
reprocessing: "reprocessing";
|
|
122
122
|
}>>;
|
|
123
123
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -203,11 +203,11 @@ declare const sentryMonitorStatusSchema: z.ZodEnum<{
|
|
|
203
203
|
error: "error";
|
|
204
204
|
active: "active";
|
|
205
205
|
disabled: "disabled";
|
|
206
|
+
pending_deletion: "pending_deletion";
|
|
207
|
+
deletion_in_progress: "deletion_in_progress";
|
|
206
208
|
ok: "ok";
|
|
207
209
|
missed_checkin: "missed_checkin";
|
|
208
210
|
timeout: "timeout";
|
|
209
|
-
pending_deletion: "pending_deletion";
|
|
210
|
-
deletion_in_progress: "deletion_in_progress";
|
|
211
211
|
}>;
|
|
212
212
|
declare const sentryMonitorSchema: z.ZodObject<{
|
|
213
213
|
id: z.ZodString;
|
|
@@ -217,11 +217,11 @@ declare const sentryMonitorSchema: z.ZodObject<{
|
|
|
217
217
|
error: "error";
|
|
218
218
|
active: "active";
|
|
219
219
|
disabled: "disabled";
|
|
220
|
+
pending_deletion: "pending_deletion";
|
|
221
|
+
deletion_in_progress: "deletion_in_progress";
|
|
220
222
|
ok: "ok";
|
|
221
223
|
missed_checkin: "missed_checkin";
|
|
222
224
|
timeout: "timeout";
|
|
223
|
-
pending_deletion: "pending_deletion";
|
|
224
|
-
deletion_in_progress: "deletion_in_progress";
|
|
225
225
|
}>>;
|
|
226
226
|
type: z.ZodOptional<z.ZodString>;
|
|
227
227
|
dateCreated: z.ZodOptional<z.ZodISODateTime>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/sentry",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"LICENSE"
|
|
137
137
|
],
|
|
138
138
|
"dependencies": {
|
|
139
|
-
"@keystrokehq/credential-connection": "^0.0.
|
|
139
|
+
"@keystrokehq/credential-connection": "^0.0.7",
|
|
140
140
|
"@keystrokehq/integration-authoring": "^0.0.7",
|
|
141
141
|
"zod": "^4.3.6"
|
|
142
142
|
},
|