@hesed/sentry 0.1.0

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.
Files changed (47) hide show
  1. package/README.md +453 -0
  2. package/bin/dev.cmd +3 -0
  3. package/bin/dev.js +5 -0
  4. package/bin/run.cmd +3 -0
  5. package/bin/run.js +5 -0
  6. package/dist/commands/sentry/auth/add.d.ts +14 -0
  7. package/dist/commands/sentry/auth/add.js +56 -0
  8. package/dist/commands/sentry/auth/test.d.ts +10 -0
  9. package/dist/commands/sentry/auth/test.js +32 -0
  10. package/dist/commands/sentry/auth/update.d.ts +14 -0
  11. package/dist/commands/sentry/auth/update.js +68 -0
  12. package/dist/commands/sentry/event/get.d.ts +13 -0
  13. package/dist/commands/sentry/event/get.js +31 -0
  14. package/dist/commands/sentry/event/source-maps.d.ts +15 -0
  15. package/dist/commands/sentry/event/source-maps.js +40 -0
  16. package/dist/commands/sentry/issue/event.d.ts +13 -0
  17. package/dist/commands/sentry/issue/event.js +34 -0
  18. package/dist/commands/sentry/issue/events.d.ts +18 -0
  19. package/dist/commands/sentry/issue/events.js +47 -0
  20. package/dist/commands/sentry/issue/get.d.ts +12 -0
  21. package/dist/commands/sentry/issue/get.js +28 -0
  22. package/dist/commands/sentry/issue/hashes.d.ts +13 -0
  23. package/dist/commands/sentry/issue/hashes.js +32 -0
  24. package/dist/commands/sentry/issue/tag-values.d.ts +15 -0
  25. package/dist/commands/sentry/issue/tag-values.js +36 -0
  26. package/dist/commands/sentry/issue/tag.d.ts +14 -0
  27. package/dist/commands/sentry/issue/tag.js +33 -0
  28. package/dist/commands/sentry/issue/update.d.ts +18 -0
  29. package/dist/commands/sentry/issue/update.js +54 -0
  30. package/dist/commands/sentry/org/issues.d.ts +19 -0
  31. package/dist/commands/sentry/org/issues.js +57 -0
  32. package/dist/commands/sentry/project/events.d.ts +17 -0
  33. package/dist/commands/sentry/project/events.js +44 -0
  34. package/dist/commands/sentry/project/issues.d.ts +16 -0
  35. package/dist/commands/sentry/project/issues.js +44 -0
  36. package/dist/config.d.ts +10 -0
  37. package/dist/config.js +18 -0
  38. package/dist/format.d.ts +4 -0
  39. package/dist/format.js +10 -0
  40. package/dist/index.d.ts +1 -0
  41. package/dist/index.js +1 -0
  42. package/dist/sentry/sentry-api.d.ts +127 -0
  43. package/dist/sentry/sentry-api.js +176 -0
  44. package/dist/sentry/sentry-client.d.ts +61 -0
  45. package/dist/sentry/sentry-client.js +66 -0
  46. package/oclif.manifest.json +937 -0
  47. package/package.json +105 -0
@@ -0,0 +1,937 @@
1
+ {
2
+ "commands": {
3
+ "sentry:auth:add": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Add Sentry authentication",
7
+ "examples": [
8
+ "<%= config.bin %> <%= command.id %>"
9
+ ],
10
+ "flags": {
11
+ "json": {
12
+ "description": "Format output as json.",
13
+ "helpGroup": "GLOBAL",
14
+ "name": "json",
15
+ "allowNo": false,
16
+ "type": "boolean"
17
+ },
18
+ "organization": {
19
+ "char": "o",
20
+ "description": "Sentry organization slug:",
21
+ "name": "organization",
22
+ "required": false,
23
+ "hasDynamicHelp": false,
24
+ "multiple": false,
25
+ "type": "option"
26
+ },
27
+ "token": {
28
+ "char": "t",
29
+ "description": "Auth Token:",
30
+ "name": "token",
31
+ "required": false,
32
+ "hasDynamicHelp": false,
33
+ "multiple": false,
34
+ "type": "option"
35
+ },
36
+ "url": {
37
+ "char": "u",
38
+ "description": "Sentry base URL:",
39
+ "name": "url",
40
+ "required": false,
41
+ "default": "https://sentry.io/api/0",
42
+ "hasDynamicHelp": false,
43
+ "multiple": false,
44
+ "type": "option"
45
+ }
46
+ },
47
+ "hasDynamicHelp": false,
48
+ "hiddenAliases": [],
49
+ "id": "sentry:auth:add",
50
+ "pluginAlias": "@hesed/sentry",
51
+ "pluginName": "@hesed/sentry",
52
+ "pluginType": "core",
53
+ "strict": true,
54
+ "enableJsonFlag": true,
55
+ "isESM": true,
56
+ "relativePath": [
57
+ "dist",
58
+ "commands",
59
+ "sentry",
60
+ "auth",
61
+ "add.js"
62
+ ]
63
+ },
64
+ "sentry:auth:test": {
65
+ "aliases": [],
66
+ "args": {},
67
+ "description": "Test authentication and connection",
68
+ "examples": [
69
+ "<%= config.bin %> <%= command.id %>"
70
+ ],
71
+ "flags": {
72
+ "json": {
73
+ "description": "Format output as json.",
74
+ "helpGroup": "GLOBAL",
75
+ "name": "json",
76
+ "allowNo": false,
77
+ "type": "boolean"
78
+ }
79
+ },
80
+ "hasDynamicHelp": false,
81
+ "hiddenAliases": [],
82
+ "id": "sentry:auth:test",
83
+ "pluginAlias": "@hesed/sentry",
84
+ "pluginName": "@hesed/sentry",
85
+ "pluginType": "core",
86
+ "strict": true,
87
+ "enableJsonFlag": true,
88
+ "isESM": true,
89
+ "relativePath": [
90
+ "dist",
91
+ "commands",
92
+ "sentry",
93
+ "auth",
94
+ "test.js"
95
+ ]
96
+ },
97
+ "sentry:auth:update": {
98
+ "aliases": [],
99
+ "args": {},
100
+ "description": "Update existing authentication",
101
+ "examples": [
102
+ "<%= config.bin %> <%= command.id %>"
103
+ ],
104
+ "flags": {
105
+ "json": {
106
+ "description": "Format output as json.",
107
+ "helpGroup": "GLOBAL",
108
+ "name": "json",
109
+ "allowNo": false,
110
+ "type": "boolean"
111
+ },
112
+ "organization": {
113
+ "char": "o",
114
+ "description": "Sentry organization slug",
115
+ "name": "organization",
116
+ "required": false,
117
+ "hasDynamicHelp": false,
118
+ "multiple": false,
119
+ "type": "option"
120
+ },
121
+ "token": {
122
+ "char": "t",
123
+ "description": "Auth Token",
124
+ "name": "token",
125
+ "required": false,
126
+ "hasDynamicHelp": false,
127
+ "multiple": false,
128
+ "type": "option"
129
+ },
130
+ "url": {
131
+ "char": "u",
132
+ "description": "Sentry base URL",
133
+ "name": "url",
134
+ "required": false,
135
+ "hasDynamicHelp": false,
136
+ "multiple": false,
137
+ "type": "option"
138
+ }
139
+ },
140
+ "hasDynamicHelp": false,
141
+ "hiddenAliases": [],
142
+ "id": "sentry:auth:update",
143
+ "pluginAlias": "@hesed/sentry",
144
+ "pluginName": "@hesed/sentry",
145
+ "pluginType": "core",
146
+ "strict": true,
147
+ "enableJsonFlag": true,
148
+ "isESM": true,
149
+ "relativePath": [
150
+ "dist",
151
+ "commands",
152
+ "sentry",
153
+ "auth",
154
+ "update.js"
155
+ ]
156
+ },
157
+ "sentry:issue:event": {
158
+ "aliases": [],
159
+ "args": {
160
+ "issueId": {
161
+ "description": "Issue ID",
162
+ "name": "issueId",
163
+ "required": true
164
+ },
165
+ "eventId": {
166
+ "description": "Event ID (latest, oldest, recommended, or event ID)",
167
+ "name": "eventId",
168
+ "required": true
169
+ }
170
+ },
171
+ "description": "Retrieve a specific event from a Sentry issue",
172
+ "examples": [
173
+ "<%= config.bin %> <%= command.id %> 123456789 latest",
174
+ "<%= config.bin %> <%= command.id %> 123456789 abc123def456"
175
+ ],
176
+ "flags": {
177
+ "toon": {
178
+ "description": "Format output as toon",
179
+ "name": "toon",
180
+ "required": false,
181
+ "allowNo": false,
182
+ "type": "boolean"
183
+ }
184
+ },
185
+ "hasDynamicHelp": false,
186
+ "hiddenAliases": [],
187
+ "id": "sentry:issue:event",
188
+ "pluginAlias": "@hesed/sentry",
189
+ "pluginName": "@hesed/sentry",
190
+ "pluginType": "core",
191
+ "strict": true,
192
+ "enableJsonFlag": false,
193
+ "isESM": true,
194
+ "relativePath": [
195
+ "dist",
196
+ "commands",
197
+ "sentry",
198
+ "issue",
199
+ "event.js"
200
+ ]
201
+ },
202
+ "sentry:issue:events": {
203
+ "aliases": [],
204
+ "args": {
205
+ "issueId": {
206
+ "description": "Issue ID",
207
+ "name": "issueId",
208
+ "required": true
209
+ }
210
+ },
211
+ "description": "List a Sentry issue's events",
212
+ "examples": [
213
+ "<%= config.bin %> <%= command.id %> 123456789"
214
+ ],
215
+ "flags": {
216
+ "cursor": {
217
+ "description": "Pagination cursor",
218
+ "name": "cursor",
219
+ "required": false,
220
+ "hasDynamicHelp": false,
221
+ "multiple": false,
222
+ "type": "option"
223
+ },
224
+ "end": {
225
+ "description": "End date (ISO-8601)",
226
+ "name": "end",
227
+ "required": false,
228
+ "hasDynamicHelp": false,
229
+ "multiple": false,
230
+ "type": "option"
231
+ },
232
+ "environment": {
233
+ "description": "Filter by environment",
234
+ "name": "environment",
235
+ "required": false,
236
+ "hasDynamicHelp": false,
237
+ "multiple": true,
238
+ "type": "option"
239
+ },
240
+ "full": {
241
+ "description": "Include full event body",
242
+ "name": "full",
243
+ "required": false,
244
+ "allowNo": false,
245
+ "type": "boolean"
246
+ },
247
+ "start": {
248
+ "description": "Start date (ISO-8601)",
249
+ "name": "start",
250
+ "required": false,
251
+ "hasDynamicHelp": false,
252
+ "multiple": false,
253
+ "type": "option"
254
+ },
255
+ "stats-period": {
256
+ "description": "Time period (e.g. 24h, 7d)",
257
+ "name": "stats-period",
258
+ "required": false,
259
+ "hasDynamicHelp": false,
260
+ "multiple": false,
261
+ "type": "option"
262
+ },
263
+ "toon": {
264
+ "description": "Format output as toon",
265
+ "name": "toon",
266
+ "required": false,
267
+ "allowNo": false,
268
+ "type": "boolean"
269
+ }
270
+ },
271
+ "hasDynamicHelp": false,
272
+ "hiddenAliases": [],
273
+ "id": "sentry:issue:events",
274
+ "pluginAlias": "@hesed/sentry",
275
+ "pluginName": "@hesed/sentry",
276
+ "pluginType": "core",
277
+ "strict": true,
278
+ "enableJsonFlag": false,
279
+ "isESM": true,
280
+ "relativePath": [
281
+ "dist",
282
+ "commands",
283
+ "sentry",
284
+ "issue",
285
+ "events.js"
286
+ ]
287
+ },
288
+ "sentry:issue:get": {
289
+ "aliases": [],
290
+ "args": {
291
+ "issueId": {
292
+ "description": "Issue ID",
293
+ "name": "issueId",
294
+ "required": true
295
+ }
296
+ },
297
+ "description": "Retrieve a Sentry issue",
298
+ "examples": [
299
+ "<%= config.bin %> <%= command.id %> 123456789"
300
+ ],
301
+ "flags": {
302
+ "toon": {
303
+ "description": "Format output as toon",
304
+ "name": "toon",
305
+ "required": false,
306
+ "allowNo": false,
307
+ "type": "boolean"
308
+ }
309
+ },
310
+ "hasDynamicHelp": false,
311
+ "hiddenAliases": [],
312
+ "id": "sentry:issue:get",
313
+ "pluginAlias": "@hesed/sentry",
314
+ "pluginName": "@hesed/sentry",
315
+ "pluginType": "core",
316
+ "strict": true,
317
+ "enableJsonFlag": false,
318
+ "isESM": true,
319
+ "relativePath": [
320
+ "dist",
321
+ "commands",
322
+ "sentry",
323
+ "issue",
324
+ "get.js"
325
+ ]
326
+ },
327
+ "sentry:issue:hashes": {
328
+ "aliases": [],
329
+ "args": {
330
+ "issueId": {
331
+ "description": "Issue ID",
332
+ "name": "issueId",
333
+ "required": true
334
+ }
335
+ },
336
+ "description": "List a Sentry issue's hashes",
337
+ "examples": [
338
+ "<%= config.bin %> <%= command.id %> 123456789"
339
+ ],
340
+ "flags": {
341
+ "cursor": {
342
+ "description": "Pagination cursor",
343
+ "name": "cursor",
344
+ "required": false,
345
+ "hasDynamicHelp": false,
346
+ "multiple": false,
347
+ "type": "option"
348
+ },
349
+ "toon": {
350
+ "description": "Format output as toon",
351
+ "name": "toon",
352
+ "required": false,
353
+ "allowNo": false,
354
+ "type": "boolean"
355
+ }
356
+ },
357
+ "hasDynamicHelp": false,
358
+ "hiddenAliases": [],
359
+ "id": "sentry:issue:hashes",
360
+ "pluginAlias": "@hesed/sentry",
361
+ "pluginName": "@hesed/sentry",
362
+ "pluginType": "core",
363
+ "strict": true,
364
+ "enableJsonFlag": false,
365
+ "isESM": true,
366
+ "relativePath": [
367
+ "dist",
368
+ "commands",
369
+ "sentry",
370
+ "issue",
371
+ "hashes.js"
372
+ ]
373
+ },
374
+ "sentry:issue:tag-values": {
375
+ "aliases": [],
376
+ "args": {
377
+ "issueId": {
378
+ "description": "Issue ID",
379
+ "name": "issueId",
380
+ "required": true
381
+ },
382
+ "tagKey": {
383
+ "description": "Tag key (e.g. browser, url, user)",
384
+ "name": "tagKey",
385
+ "required": true
386
+ }
387
+ },
388
+ "description": "List a tag's values for a Sentry issue",
389
+ "examples": [
390
+ "<%= config.bin %> <%= command.id %> 123456789 browser"
391
+ ],
392
+ "flags": {
393
+ "cursor": {
394
+ "description": "Pagination cursor",
395
+ "name": "cursor",
396
+ "required": false,
397
+ "hasDynamicHelp": false,
398
+ "multiple": false,
399
+ "type": "option"
400
+ },
401
+ "environment": {
402
+ "description": "Filter by environment",
403
+ "name": "environment",
404
+ "required": false,
405
+ "hasDynamicHelp": false,
406
+ "multiple": true,
407
+ "type": "option"
408
+ },
409
+ "toon": {
410
+ "description": "Format output as toon",
411
+ "name": "toon",
412
+ "required": false,
413
+ "allowNo": false,
414
+ "type": "boolean"
415
+ }
416
+ },
417
+ "hasDynamicHelp": false,
418
+ "hiddenAliases": [],
419
+ "id": "sentry:issue:tag-values",
420
+ "pluginAlias": "@hesed/sentry",
421
+ "pluginName": "@hesed/sentry",
422
+ "pluginType": "core",
423
+ "strict": true,
424
+ "enableJsonFlag": false,
425
+ "isESM": true,
426
+ "relativePath": [
427
+ "dist",
428
+ "commands",
429
+ "sentry",
430
+ "issue",
431
+ "tag-values.js"
432
+ ]
433
+ },
434
+ "sentry:issue:tag": {
435
+ "aliases": [],
436
+ "args": {
437
+ "issueId": {
438
+ "description": "Issue ID",
439
+ "name": "issueId",
440
+ "required": true
441
+ },
442
+ "tagKey": {
443
+ "description": "Tag key (e.g. browser, url, user)",
444
+ "name": "tagKey",
445
+ "required": true
446
+ }
447
+ },
448
+ "description": "Retrieve tag details for a Sentry issue",
449
+ "examples": [
450
+ "<%= config.bin %> <%= command.id %> 123456789 browser"
451
+ ],
452
+ "flags": {
453
+ "environment": {
454
+ "description": "Filter by environment",
455
+ "name": "environment",
456
+ "required": false,
457
+ "hasDynamicHelp": false,
458
+ "multiple": true,
459
+ "type": "option"
460
+ },
461
+ "toon": {
462
+ "description": "Format output as toon",
463
+ "name": "toon",
464
+ "required": false,
465
+ "allowNo": false,
466
+ "type": "boolean"
467
+ }
468
+ },
469
+ "hasDynamicHelp": false,
470
+ "hiddenAliases": [],
471
+ "id": "sentry:issue:tag",
472
+ "pluginAlias": "@hesed/sentry",
473
+ "pluginName": "@hesed/sentry",
474
+ "pluginType": "core",
475
+ "strict": true,
476
+ "enableJsonFlag": false,
477
+ "isESM": true,
478
+ "relativePath": [
479
+ "dist",
480
+ "commands",
481
+ "sentry",
482
+ "issue",
483
+ "tag.js"
484
+ ]
485
+ },
486
+ "sentry:issue:update": {
487
+ "aliases": [],
488
+ "args": {
489
+ "issueId": {
490
+ "description": "Issue ID",
491
+ "name": "issueId",
492
+ "required": true
493
+ }
494
+ },
495
+ "description": "Update a Sentry issue",
496
+ "examples": [
497
+ "<%= config.bin %> <%= command.id %> 123456789 --status resolved",
498
+ "<%= config.bin %> <%= command.id %> 123456789 --assigned-to user@example.com"
499
+ ],
500
+ "flags": {
501
+ "assigned-to": {
502
+ "description": "Assign to user (actor ID or username)",
503
+ "name": "assigned-to",
504
+ "required": false,
505
+ "hasDynamicHelp": false,
506
+ "multiple": false,
507
+ "type": "option"
508
+ },
509
+ "has-seen": {
510
+ "description": "Mark issue as seen/unseen",
511
+ "name": "has-seen",
512
+ "required": false,
513
+ "allowNo": true,
514
+ "type": "boolean"
515
+ },
516
+ "is-bookmarked": {
517
+ "description": "Bookmark or unbookmark issue",
518
+ "name": "is-bookmarked",
519
+ "required": false,
520
+ "allowNo": true,
521
+ "type": "boolean"
522
+ },
523
+ "is-public": {
524
+ "description": "Make issue public or private",
525
+ "name": "is-public",
526
+ "required": false,
527
+ "allowNo": true,
528
+ "type": "boolean"
529
+ },
530
+ "is-subscribed": {
531
+ "description": "Subscribe or unsubscribe from issue",
532
+ "name": "is-subscribed",
533
+ "required": false,
534
+ "allowNo": true,
535
+ "type": "boolean"
536
+ },
537
+ "status": {
538
+ "description": "Issue status (resolved, resolvedInNextRelease, unresolved, ignored)",
539
+ "name": "status",
540
+ "required": false,
541
+ "hasDynamicHelp": false,
542
+ "multiple": false,
543
+ "options": [
544
+ "resolved",
545
+ "resolvedInNextRelease",
546
+ "unresolved",
547
+ "ignored"
548
+ ],
549
+ "type": "option"
550
+ },
551
+ "toon": {
552
+ "description": "Format output as toon",
553
+ "name": "toon",
554
+ "required": false,
555
+ "allowNo": false,
556
+ "type": "boolean"
557
+ }
558
+ },
559
+ "hasDynamicHelp": false,
560
+ "hiddenAliases": [],
561
+ "id": "sentry:issue:update",
562
+ "pluginAlias": "@hesed/sentry",
563
+ "pluginName": "@hesed/sentry",
564
+ "pluginType": "core",
565
+ "strict": true,
566
+ "enableJsonFlag": false,
567
+ "isESM": true,
568
+ "relativePath": [
569
+ "dist",
570
+ "commands",
571
+ "sentry",
572
+ "issue",
573
+ "update.js"
574
+ ]
575
+ },
576
+ "sentry:event:get": {
577
+ "aliases": [],
578
+ "args": {
579
+ "projectSlug": {
580
+ "description": "Project slug",
581
+ "name": "projectSlug",
582
+ "required": true
583
+ },
584
+ "eventId": {
585
+ "description": "Event ID",
586
+ "name": "eventId",
587
+ "required": true
588
+ }
589
+ },
590
+ "description": "Retrieve a Sentry event for a project",
591
+ "examples": [
592
+ "<%= config.bin %> <%= command.id %> my-project abc123def456"
593
+ ],
594
+ "flags": {
595
+ "toon": {
596
+ "description": "Format output as toon",
597
+ "name": "toon",
598
+ "required": false,
599
+ "allowNo": false,
600
+ "type": "boolean"
601
+ }
602
+ },
603
+ "hasDynamicHelp": false,
604
+ "hiddenAliases": [],
605
+ "id": "sentry:event:get",
606
+ "pluginAlias": "@hesed/sentry",
607
+ "pluginName": "@hesed/sentry",
608
+ "pluginType": "core",
609
+ "strict": true,
610
+ "enableJsonFlag": false,
611
+ "isESM": true,
612
+ "relativePath": [
613
+ "dist",
614
+ "commands",
615
+ "sentry",
616
+ "event",
617
+ "get.js"
618
+ ]
619
+ },
620
+ "sentry:event:source-maps": {
621
+ "aliases": [],
622
+ "args": {
623
+ "projectSlug": {
624
+ "description": "Project slug",
625
+ "name": "projectSlug",
626
+ "required": true
627
+ },
628
+ "eventId": {
629
+ "description": "Event ID",
630
+ "name": "eventId",
631
+ "required": true
632
+ }
633
+ },
634
+ "description": "Debug source maps for a Sentry event",
635
+ "examples": [
636
+ "<%= config.bin %> <%= command.id %> my-project abc123def456"
637
+ ],
638
+ "flags": {
639
+ "exception-idx": {
640
+ "description": "Exception index",
641
+ "name": "exception-idx",
642
+ "required": false,
643
+ "hasDynamicHelp": false,
644
+ "multiple": false,
645
+ "type": "option"
646
+ },
647
+ "frame-idx": {
648
+ "description": "Frame index",
649
+ "name": "frame-idx",
650
+ "required": false,
651
+ "hasDynamicHelp": false,
652
+ "multiple": false,
653
+ "type": "option"
654
+ },
655
+ "toon": {
656
+ "description": "Format output as toon",
657
+ "name": "toon",
658
+ "required": false,
659
+ "allowNo": false,
660
+ "type": "boolean"
661
+ }
662
+ },
663
+ "hasDynamicHelp": false,
664
+ "hiddenAliases": [],
665
+ "id": "sentry:event:source-maps",
666
+ "pluginAlias": "@hesed/sentry",
667
+ "pluginName": "@hesed/sentry",
668
+ "pluginType": "core",
669
+ "strict": true,
670
+ "enableJsonFlag": false,
671
+ "isESM": true,
672
+ "relativePath": [
673
+ "dist",
674
+ "commands",
675
+ "sentry",
676
+ "event",
677
+ "source-maps.js"
678
+ ]
679
+ },
680
+ "sentry:org:issues": {
681
+ "aliases": [],
682
+ "args": {},
683
+ "description": "List a Sentry organization's issues",
684
+ "examples": [
685
+ "<%= config.bin %> <%= command.id %>",
686
+ "<%= config.bin %> <%= command.id %> --query \"is:unresolved\" --limit 50"
687
+ ],
688
+ "flags": {
689
+ "cursor": {
690
+ "description": "Pagination cursor",
691
+ "name": "cursor",
692
+ "required": false,
693
+ "hasDynamicHelp": false,
694
+ "multiple": false,
695
+ "type": "option"
696
+ },
697
+ "end": {
698
+ "description": "End date (ISO-8601)",
699
+ "name": "end",
700
+ "required": false,
701
+ "hasDynamicHelp": false,
702
+ "multiple": false,
703
+ "type": "option"
704
+ },
705
+ "environment": {
706
+ "description": "Filter by environment",
707
+ "name": "environment",
708
+ "required": false,
709
+ "hasDynamicHelp": false,
710
+ "multiple": true,
711
+ "type": "option"
712
+ },
713
+ "limit": {
714
+ "description": "Maximum number of results",
715
+ "name": "limit",
716
+ "required": false,
717
+ "hasDynamicHelp": false,
718
+ "multiple": false,
719
+ "type": "option"
720
+ },
721
+ "project": {
722
+ "description": "Filter by project ID",
723
+ "name": "project",
724
+ "required": false,
725
+ "hasDynamicHelp": false,
726
+ "multiple": true,
727
+ "type": "option"
728
+ },
729
+ "query": {
730
+ "description": "Search query (e.g. \"is:unresolved\")",
731
+ "name": "query",
732
+ "required": false,
733
+ "hasDynamicHelp": false,
734
+ "multiple": false,
735
+ "type": "option"
736
+ },
737
+ "sort": {
738
+ "description": "Sort order",
739
+ "name": "sort",
740
+ "required": false,
741
+ "hasDynamicHelp": false,
742
+ "multiple": false,
743
+ "type": "option"
744
+ },
745
+ "start": {
746
+ "description": "Start date (ISO-8601)",
747
+ "name": "start",
748
+ "required": false,
749
+ "hasDynamicHelp": false,
750
+ "multiple": false,
751
+ "type": "option"
752
+ },
753
+ "stats-period": {
754
+ "description": "Time period (e.g. 24h, 7d)",
755
+ "name": "stats-period",
756
+ "required": false,
757
+ "hasDynamicHelp": false,
758
+ "multiple": false,
759
+ "type": "option"
760
+ },
761
+ "toon": {
762
+ "description": "Format output as toon",
763
+ "name": "toon",
764
+ "required": false,
765
+ "allowNo": false,
766
+ "type": "boolean"
767
+ }
768
+ },
769
+ "hasDynamicHelp": false,
770
+ "hiddenAliases": [],
771
+ "id": "sentry:org:issues",
772
+ "pluginAlias": "@hesed/sentry",
773
+ "pluginName": "@hesed/sentry",
774
+ "pluginType": "core",
775
+ "strict": true,
776
+ "enableJsonFlag": false,
777
+ "isESM": true,
778
+ "relativePath": [
779
+ "dist",
780
+ "commands",
781
+ "sentry",
782
+ "org",
783
+ "issues.js"
784
+ ]
785
+ },
786
+ "sentry:project:events": {
787
+ "aliases": [],
788
+ "args": {
789
+ "projectSlug": {
790
+ "description": "Project slug",
791
+ "name": "projectSlug",
792
+ "required": true
793
+ }
794
+ },
795
+ "description": "List a Sentry project's error events",
796
+ "examples": [
797
+ "<%= config.bin %> <%= command.id %> my-project"
798
+ ],
799
+ "flags": {
800
+ "cursor": {
801
+ "description": "Pagination cursor",
802
+ "name": "cursor",
803
+ "required": false,
804
+ "hasDynamicHelp": false,
805
+ "multiple": false,
806
+ "type": "option"
807
+ },
808
+ "end": {
809
+ "description": "End date (ISO-8601)",
810
+ "name": "end",
811
+ "required": false,
812
+ "hasDynamicHelp": false,
813
+ "multiple": false,
814
+ "type": "option"
815
+ },
816
+ "full": {
817
+ "description": "Include full event body",
818
+ "name": "full",
819
+ "required": false,
820
+ "allowNo": false,
821
+ "type": "boolean"
822
+ },
823
+ "start": {
824
+ "description": "Start date (ISO-8601)",
825
+ "name": "start",
826
+ "required": false,
827
+ "hasDynamicHelp": false,
828
+ "multiple": false,
829
+ "type": "option"
830
+ },
831
+ "stats-period": {
832
+ "description": "Time period (e.g. 24h, 7d)",
833
+ "name": "stats-period",
834
+ "required": false,
835
+ "hasDynamicHelp": false,
836
+ "multiple": false,
837
+ "type": "option"
838
+ },
839
+ "toon": {
840
+ "description": "Format output as toon",
841
+ "name": "toon",
842
+ "required": false,
843
+ "allowNo": false,
844
+ "type": "boolean"
845
+ }
846
+ },
847
+ "hasDynamicHelp": false,
848
+ "hiddenAliases": [],
849
+ "id": "sentry:project:events",
850
+ "pluginAlias": "@hesed/sentry",
851
+ "pluginName": "@hesed/sentry",
852
+ "pluginType": "core",
853
+ "strict": true,
854
+ "enableJsonFlag": false,
855
+ "isESM": true,
856
+ "relativePath": [
857
+ "dist",
858
+ "commands",
859
+ "sentry",
860
+ "project",
861
+ "events.js"
862
+ ]
863
+ },
864
+ "sentry:project:issues": {
865
+ "aliases": [],
866
+ "args": {
867
+ "projectSlug": {
868
+ "description": "Project slug",
869
+ "name": "projectSlug",
870
+ "required": true
871
+ }
872
+ },
873
+ "description": "List a Sentry project's issues",
874
+ "examples": [
875
+ "<%= config.bin %> <%= command.id %> my-project",
876
+ "<%= config.bin %> <%= command.id %> my-project --query \"is:unresolved\""
877
+ ],
878
+ "flags": {
879
+ "cursor": {
880
+ "description": "Pagination cursor",
881
+ "name": "cursor",
882
+ "required": false,
883
+ "hasDynamicHelp": false,
884
+ "multiple": false,
885
+ "type": "option"
886
+ },
887
+ "query": {
888
+ "description": "Search query (e.g. \"is:unresolved\")",
889
+ "name": "query",
890
+ "required": false,
891
+ "hasDynamicHelp": false,
892
+ "multiple": false,
893
+ "type": "option"
894
+ },
895
+ "short-id-lookup": {
896
+ "description": "Enable short ID lookup",
897
+ "name": "short-id-lookup",
898
+ "required": false,
899
+ "allowNo": false,
900
+ "type": "boolean"
901
+ },
902
+ "stats-period": {
903
+ "description": "Time period (e.g. 24h, 7d)",
904
+ "name": "stats-period",
905
+ "required": false,
906
+ "hasDynamicHelp": false,
907
+ "multiple": false,
908
+ "type": "option"
909
+ },
910
+ "toon": {
911
+ "description": "Format output as toon",
912
+ "name": "toon",
913
+ "required": false,
914
+ "allowNo": false,
915
+ "type": "boolean"
916
+ }
917
+ },
918
+ "hasDynamicHelp": false,
919
+ "hiddenAliases": [],
920
+ "id": "sentry:project:issues",
921
+ "pluginAlias": "@hesed/sentry",
922
+ "pluginName": "@hesed/sentry",
923
+ "pluginType": "core",
924
+ "strict": true,
925
+ "enableJsonFlag": false,
926
+ "isESM": true,
927
+ "relativePath": [
928
+ "dist",
929
+ "commands",
930
+ "sentry",
931
+ "project",
932
+ "issues.js"
933
+ ]
934
+ }
935
+ },
936
+ "version": "0.1.0"
937
+ }