@keystrokehq/sentry 0.0.8 → 0.0.9
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";
|
|
11
10
|
visible: "visible";
|
|
12
11
|
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";
|
|
68
67
|
visible: "visible";
|
|
69
68
|
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
|
-
archived: "archived";
|
|
28
|
-
resolved: "resolved";
|
|
29
27
|
unresolved: "unresolved";
|
|
28
|
+
resolved: "resolved";
|
|
30
29
|
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
|
-
archived: "archived";
|
|
68
|
-
resolved: "resolved";
|
|
69
67
|
unresolved: "unresolved";
|
|
68
|
+
resolved: "resolved";
|
|
70
69
|
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
|
-
archived: "archived";
|
|
105
|
-
resolved: "resolved";
|
|
106
104
|
unresolved: "unresolved";
|
|
105
|
+
resolved: "resolved";
|
|
107
106
|
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
|
-
archived: "archived";
|
|
137
|
-
resolved: "resolved";
|
|
138
136
|
unresolved: "unresolved";
|
|
137
|
+
resolved: "resolved";
|
|
139
138
|
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
|
-
archived: "archived";
|
|
306
|
-
resolved: "resolved";
|
|
307
305
|
unresolved: "unresolved";
|
|
306
|
+
resolved: "resolved";
|
|
308
307
|
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
|
-
archived: "archived";
|
|
346
|
-
resolved: "resolved";
|
|
347
345
|
unresolved: "unresolved";
|
|
346
|
+
resolved: "resolved";
|
|
348
347
|
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
|
-
archived: "archived";
|
|
383
|
-
resolved: "resolved";
|
|
384
382
|
unresolved: "unresolved";
|
|
383
|
+
resolved: "resolved";
|
|
385
384
|
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
|
-
archived: "archived";
|
|
415
|
-
resolved: "resolved";
|
|
416
414
|
unresolved: "unresolved";
|
|
415
|
+
resolved: "resolved";
|
|
417
416
|
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";
|
|
30
28
|
ok: "ok";
|
|
31
29
|
missed_checkin: "missed_checkin";
|
|
32
30
|
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";
|
|
63
61
|
ok: "ok";
|
|
64
62
|
missed_checkin: "missed_checkin";
|
|
65
63
|
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";
|
|
92
90
|
ok: "ok";
|
|
93
91
|
missed_checkin: "missed_checkin";
|
|
94
92
|
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";
|
|
130
128
|
ok: "ok";
|
|
131
129
|
missed_checkin: "missed_checkin";
|
|
132
130
|
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";
|
|
172
170
|
ok: "ok";
|
|
173
171
|
missed_checkin: "missed_checkin";
|
|
174
172
|
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";
|
|
209
207
|
ok: "ok";
|
|
210
208
|
missed_checkin: "missed_checkin";
|
|
211
209
|
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";
|
|
296
294
|
ok: "ok";
|
|
297
295
|
missed_checkin: "missed_checkin";
|
|
298
296
|
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";
|
|
329
327
|
ok: "ok";
|
|
330
328
|
missed_checkin: "missed_checkin";
|
|
331
329
|
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";
|
|
358
356
|
ok: "ok";
|
|
359
357
|
missed_checkin: "missed_checkin";
|
|
360
358
|
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";
|
|
396
394
|
ok: "ok";
|
|
397
395
|
missed_checkin: "missed_checkin";
|
|
398
396
|
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";
|
|
438
436
|
ok: "ok";
|
|
439
437
|
missed_checkin: "missed_checkin";
|
|
440
438
|
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";
|
|
475
473
|
ok: "ok";
|
|
476
474
|
missed_checkin: "missed_checkin";
|
|
477
475
|
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";
|
|
99
98
|
visible: "visible";
|
|
100
99
|
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";
|
|
377
376
|
visible: "visible";
|
|
378
377
|
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
|
-
open: "open";
|
|
23
22
|
archived: "archived";
|
|
23
|
+
open: "open";
|
|
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
|
-
open: "open";
|
|
494
493
|
archived: "archived";
|
|
494
|
+
open: "open";
|
|
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
|
-
archived: "archived";
|
|
108
|
-
resolved: "resolved";
|
|
109
107
|
unresolved: "unresolved";
|
|
108
|
+
resolved: "resolved";
|
|
110
109
|
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
|
-
archived: "archived";
|
|
118
|
-
resolved: "resolved";
|
|
119
117
|
unresolved: "unresolved";
|
|
118
|
+
resolved: "resolved";
|
|
120
119
|
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";
|
|
208
206
|
ok: "ok";
|
|
209
207
|
missed_checkin: "missed_checkin";
|
|
210
208
|
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";
|
|
222
220
|
ok: "ok";
|
|
223
221
|
missed_checkin: "missed_checkin";
|
|
224
222
|
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.9",
|
|
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": "^1.0.0",
|
|
140
140
|
"@keystrokehq/integration-authoring": "^0.0.7",
|
|
141
141
|
"zod": "^4.3.6"
|
|
142
142
|
},
|