@asyncapi/cli 1.2.10 → 1.2.13

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 (34) hide show
  1. package/assets/create-glee-app/templates/default/asyncapi.yaml +14 -12
  2. package/assets/create-glee-app/templates/default/package-lock.json +57 -57
  3. package/assets/create-glee-app/templates/default/package.json +1 -1
  4. package/assets/examples/adeo-kafka-request-reply-asyncapi.yml +288 -0
  5. package/assets/examples/anyof-asyncapi.yml +36 -0
  6. package/assets/examples/{application-headers.yml → application-headers-asyncapi.yml} +29 -26
  7. package/assets/examples/{correlation-id.yml → correlation-id-asyncapi.yml} +80 -44
  8. package/assets/examples/examples.json +28 -16
  9. package/assets/examples/gitter-streaming-asyncapi.yml +178 -0
  10. package/assets/examples/kraken-websocket-request-reply-message-filter-in-reply-asyncapi.yml +388 -0
  11. package/assets/examples/kraken-websocket-request-reply-multiple-channels-asyncapi.yml +394 -0
  12. package/assets/examples/mercure-asyncapi.yml +58 -0
  13. package/assets/examples/not-asyncapi.yml +29 -0
  14. package/assets/examples/oneof-asyncapi.yml +57 -0
  15. package/assets/examples/{operation-security.yml → operation-security-asyncapi.yml} +32 -21
  16. package/assets/examples/{rpc-client.yml → rpc-client-asyncapi.yml} +41 -38
  17. package/assets/examples/{rpc-server.yml → rpc-server-asyncapi.yml} +38 -35
  18. package/assets/examples/{simple.yml → simple-asyncapi.yml} +13 -5
  19. package/assets/examples/{slack-rtm.yml → slack-rtm-asyncapi.yml} +207 -109
  20. package/assets/examples/streetlights-kafka-asyncapi.yml +199 -0
  21. package/assets/examples/streetlights-mqtt-asyncapi.yml +253 -0
  22. package/assets/examples/streetlights-operation-security-asyncapi.yml +240 -0
  23. package/assets/examples/websocket-gemini-asyncapi.yml +301 -0
  24. package/oclif.manifest.json +3 -3
  25. package/package.json +4 -4
  26. package/assets/examples/anyof.yml +0 -31
  27. package/assets/examples/gitter-streaming.yml +0 -168
  28. package/assets/examples/mercure.yml +0 -49
  29. package/assets/examples/not.yml +0 -24
  30. package/assets/examples/oneof.yml +0 -46
  31. package/assets/examples/streetlights-kafka.yml +0 -188
  32. package/assets/examples/streetlights-mqtt.yml +0 -216
  33. package/assets/examples/streetlights-operation-security.yml +0 -212
  34. package/assets/examples/websocket-gemini.yml +0 -209
@@ -1,79 +1,178 @@
1
- asyncapi: '2.6.0'
1
+ asyncapi: 3.0.0
2
2
  id: 'wss://wss-primary.slack.com/websocket'
3
3
  info:
4
4
  title: Slack Real Time Messaging API
5
- version: '1.0.0'
6
-
5
+ version: 1.0.0
7
6
  servers:
8
7
  production:
9
- url: https://slack.com/api/rtm.connect
8
+ host: slack.com
9
+ pathname: /api/rtm.connect
10
10
  protocol: https
11
11
  protocolVersion: '1.1'
12
12
  security:
13
- - token: []
14
-
13
+ - $ref: '#/components/securitySchemes/token'
15
14
  channels:
16
- /:
17
- publish:
18
- message:
15
+ root:
16
+ address: /
17
+ messages:
18
+ outgoingMessage:
19
19
  $ref: '#/components/messages/outgoingMessage'
20
- subscribe:
20
+ hello:
21
+ $ref: '#/components/messages/hello'
22
+ connectionError:
23
+ $ref: '#/components/messages/connectionError'
24
+ accountsChanged:
25
+ $ref: '#/components/messages/accountsChanged'
26
+ botAdded:
27
+ $ref: '#/components/messages/botAdded'
28
+ botChanged:
29
+ $ref: '#/components/messages/botChanged'
30
+ channelArchive:
31
+ $ref: '#/components/messages/channelArchive'
32
+ channelCreated:
33
+ $ref: '#/components/messages/channelCreated'
34
+ channelDeleted:
35
+ $ref: '#/components/messages/channelDeleted'
36
+ channelHistoryChanged:
37
+ $ref: '#/components/messages/channelHistoryChanged'
38
+ channelJoined:
39
+ $ref: '#/components/messages/channelJoined'
40
+ channelLeft:
41
+ $ref: '#/components/messages/channelLeft'
42
+ channelMarked:
43
+ $ref: '#/components/messages/channelMarked'
44
+ channelRename:
45
+ $ref: '#/components/messages/channelRename'
46
+ channelUnarchive:
47
+ $ref: '#/components/messages/channelUnarchive'
48
+ commandsChanged:
49
+ $ref: '#/components/messages/commandsChanged'
50
+ dndUpdated:
51
+ $ref: '#/components/messages/dndUpdated'
52
+ dndUpdatedUser:
53
+ $ref: '#/components/messages/dndUpdatedUser'
54
+ emailDomainChanged:
55
+ $ref: '#/components/messages/emailDomainChanged'
56
+ emojiRemoved:
57
+ $ref: '#/components/messages/emojiRemoved'
58
+ emojiAdded:
59
+ $ref: '#/components/messages/emojiAdded'
60
+ fileChange:
61
+ $ref: '#/components/messages/fileChange'
62
+ fileCommentAdded:
63
+ $ref: '#/components/messages/fileCommentAdded'
64
+ fileCommentDeleted:
65
+ $ref: '#/components/messages/fileCommentDeleted'
66
+ fileCommentEdited:
67
+ $ref: '#/components/messages/fileCommentEdited'
68
+ fileCreated:
69
+ $ref: '#/components/messages/fileCreated'
70
+ fileDeleted:
71
+ $ref: '#/components/messages/fileDeleted'
72
+ filePublic:
73
+ $ref: '#/components/messages/filePublic'
74
+ fileShared:
75
+ $ref: '#/components/messages/fileShared'
76
+ fileUnshared:
77
+ $ref: '#/components/messages/fileUnshared'
78
+ goodbye:
79
+ $ref: '#/components/messages/goodbye'
80
+ groupArchive:
81
+ $ref: '#/components/messages/groupArchive'
82
+ groupClose:
83
+ $ref: '#/components/messages/groupClose'
84
+ groupHistoryChanged:
85
+ $ref: '#/components/messages/groupHistoryChanged'
86
+ groupJoined:
87
+ $ref: '#/components/messages/groupJoined'
88
+ groupLeft:
89
+ $ref: '#/components/messages/groupLeft'
90
+ groupMarked:
91
+ $ref: '#/components/messages/groupMarked'
92
+ groupOpen:
93
+ $ref: '#/components/messages/groupOpen'
94
+ groupRename:
95
+ $ref: '#/components/messages/groupRename'
96
+ groupUnarchive:
97
+ $ref: '#/components/messages/groupUnarchive'
98
+ imClose:
99
+ $ref: '#/components/messages/imClose'
100
+ imCreated:
101
+ $ref: '#/components/messages/imCreated'
102
+ imMarked:
103
+ $ref: '#/components/messages/imMarked'
104
+ imOpen:
105
+ $ref: '#/components/messages/imOpen'
106
+ manualPresenceChange:
107
+ $ref: '#/components/messages/manualPresenceChange'
108
+ memberJoinedChannel:
109
+ $ref: '#/components/messages/memberJoinedChannel'
21
110
  message:
22
- oneOf:
23
- - $ref: '#/components/messages/hello'
24
- - $ref: '#/components/messages/connectionError'
25
- - $ref: '#/components/messages/accountsChanged'
26
- - $ref: '#/components/messages/botAdded'
27
- - $ref: '#/components/messages/botChanged'
28
- - $ref: '#/components/messages/channelArchive'
29
- - $ref: '#/components/messages/channelCreated'
30
- - $ref: '#/components/messages/channelDeleted'
31
- - $ref: '#/components/messages/channelHistoryChanged'
32
- - $ref: '#/components/messages/channelJoined'
33
- - $ref: '#/components/messages/channelLeft'
34
- - $ref: '#/components/messages/channelMarked'
35
- - $ref: '#/components/messages/channelRename'
36
- - $ref: '#/components/messages/channelUnarchive'
37
- - $ref: '#/components/messages/commandsChanged'
38
- - $ref: '#/components/messages/dndUpdated'
39
- - $ref: '#/components/messages/dndUpdatedUser'
40
- - $ref: '#/components/messages/emailDomainChanged'
41
- - $ref: '#/components/messages/emojiRemoved'
42
- - $ref: '#/components/messages/emojiAdded'
43
- - $ref: '#/components/messages/fileChange'
44
- - $ref: '#/components/messages/fileCommentAdded'
45
- - $ref: '#/components/messages/fileCommentDeleted'
46
- - $ref: '#/components/messages/fileCommentEdited'
47
- - $ref: '#/components/messages/fileCreated'
48
- - $ref: '#/components/messages/fileDeleted'
49
- - $ref: '#/components/messages/filePublic'
50
- - $ref: '#/components/messages/fileShared'
51
- - $ref: '#/components/messages/fileUnshared'
52
- - $ref: '#/components/messages/goodbye'
53
- - $ref: '#/components/messages/groupArchive'
54
- - $ref: '#/components/messages/groupClose'
55
- - $ref: '#/components/messages/groupHistoryChanged'
56
- - $ref: '#/components/messages/groupJoined'
57
- - $ref: '#/components/messages/groupLeft'
58
- - $ref: '#/components/messages/groupMarked'
59
- - $ref: '#/components/messages/groupOpen'
60
- - $ref: '#/components/messages/groupRename'
61
- - $ref: '#/components/messages/groupUnarchive'
62
- - $ref: '#/components/messages/imClose'
63
- - $ref: '#/components/messages/imCreated'
64
- - $ref: '#/components/messages/imMarked'
65
- - $ref: '#/components/messages/imOpen'
66
- - $ref: '#/components/messages/manualPresenceChange'
67
- - $ref: '#/components/messages/memberJoinedChannel'
68
- - $ref: '#/components/messages/message'
69
-
111
+ $ref: '#/components/messages/message'
112
+ operations:
113
+ receiveOutgoingMessage:
114
+ action: receive
115
+ channel:
116
+ $ref: '#/channels/root'
117
+ messages:
118
+ - $ref: '#/channels/root/messages/outgoingMessage'
119
+ sendMessages:
120
+ action: send
121
+ channel:
122
+ $ref: '#/channels/root'
123
+ messages:
124
+ - $ref: '#/channels/root/messages/hello'
125
+ - $ref: '#/channels/root/messages/connectionError'
126
+ - $ref: '#/channels/root/messages/accountsChanged'
127
+ - $ref: '#/channels/root/messages/botAdded'
128
+ - $ref: '#/channels/root/messages/botChanged'
129
+ - $ref: '#/channels/root/messages/channelArchive'
130
+ - $ref: '#/channels/root/messages/channelCreated'
131
+ - $ref: '#/channels/root/messages/channelDeleted'
132
+ - $ref: '#/channels/root/messages/channelHistoryChanged'
133
+ - $ref: '#/channels/root/messages/channelJoined'
134
+ - $ref: '#/channels/root/messages/channelLeft'
135
+ - $ref: '#/channels/root/messages/channelMarked'
136
+ - $ref: '#/channels/root/messages/channelRename'
137
+ - $ref: '#/channels/root/messages/channelUnarchive'
138
+ - $ref: '#/channels/root/messages/commandsChanged'
139
+ - $ref: '#/channels/root/messages/dndUpdated'
140
+ - $ref: '#/channels/root/messages/dndUpdatedUser'
141
+ - $ref: '#/channels/root/messages/emailDomainChanged'
142
+ - $ref: '#/channels/root/messages/emojiRemoved'
143
+ - $ref: '#/channels/root/messages/emojiAdded'
144
+ - $ref: '#/channels/root/messages/fileChange'
145
+ - $ref: '#/channels/root/messages/fileCommentAdded'
146
+ - $ref: '#/channels/root/messages/fileCommentDeleted'
147
+ - $ref: '#/channels/root/messages/fileCommentEdited'
148
+ - $ref: '#/channels/root/messages/fileCreated'
149
+ - $ref: '#/channels/root/messages/fileDeleted'
150
+ - $ref: '#/channels/root/messages/filePublic'
151
+ - $ref: '#/channels/root/messages/fileShared'
152
+ - $ref: '#/channels/root/messages/fileUnshared'
153
+ - $ref: '#/channels/root/messages/goodbye'
154
+ - $ref: '#/channels/root/messages/groupArchive'
155
+ - $ref: '#/channels/root/messages/groupClose'
156
+ - $ref: '#/channels/root/messages/groupHistoryChanged'
157
+ - $ref: '#/channels/root/messages/groupJoined'
158
+ - $ref: '#/channels/root/messages/groupLeft'
159
+ - $ref: '#/channels/root/messages/groupMarked'
160
+ - $ref: '#/channels/root/messages/groupOpen'
161
+ - $ref: '#/channels/root/messages/groupRename'
162
+ - $ref: '#/channels/root/messages/groupUnarchive'
163
+ - $ref: '#/channels/root/messages/imClose'
164
+ - $ref: '#/channels/root/messages/imCreated'
165
+ - $ref: '#/channels/root/messages/imMarked'
166
+ - $ref: '#/channels/root/messages/imOpen'
167
+ - $ref: '#/channels/root/messages/manualPresenceChange'
168
+ - $ref: '#/channels/root/messages/memberJoinedChannel'
169
+ - $ref: '#/channels/root/messages/message'
70
170
  components:
71
171
  securitySchemes:
72
172
  token:
73
173
  type: httpApiKey
74
174
  name: token
75
175
  in: query
76
-
77
176
  schemas:
78
177
  attachment:
79
178
  type: object
@@ -123,10 +222,9 @@ components:
123
222
  format: uri
124
223
  ts:
125
224
  type: number
126
-
127
225
  messages:
128
226
  hello:
129
- summary: 'First event received upon connection.'
227
+ summary: First event received upon connection.
130
228
  payload:
131
229
  type: object
132
230
  properties:
@@ -135,7 +233,7 @@ components:
135
233
  enum:
136
234
  - hello
137
235
  connectionError:
138
- summary: 'Event received when a connection error happens.'
236
+ summary: Event received when a connection error happens.
139
237
  payload:
140
238
  type: object
141
239
  properties:
@@ -151,7 +249,7 @@ components:
151
249
  msg:
152
250
  type: string
153
251
  accountsChanged:
154
- summary: 'The list of accounts a user is signed into has changed.'
252
+ summary: The list of accounts a user is signed into has changed.
155
253
  payload:
156
254
  type: object
157
255
  properties:
@@ -160,7 +258,7 @@ components:
160
258
  enum:
161
259
  - accounts_changed
162
260
  botAdded:
163
- summary: 'A bot user was added.'
261
+ summary: A bot user was added.
164
262
  payload:
165
263
  type: object
166
264
  properties:
@@ -182,7 +280,7 @@ components:
182
280
  additionalProperties:
183
281
  type: string
184
282
  botChanged:
185
- summary: 'A bot user was changed.'
283
+ summary: A bot user was changed.
186
284
  payload:
187
285
  type: object
188
286
  properties:
@@ -204,7 +302,7 @@ components:
204
302
  additionalProperties:
205
303
  type: string
206
304
  channelArchive:
207
- summary: 'A channel was archived.'
305
+ summary: A channel was archived.
208
306
  payload:
209
307
  type: object
210
308
  properties:
@@ -217,7 +315,7 @@ components:
217
315
  user:
218
316
  type: string
219
317
  channelCreated:
220
- summary: 'A channel was created.'
318
+ summary: A channel was created.
221
319
  payload:
222
320
  type: object
223
321
  properties:
@@ -237,7 +335,7 @@ components:
237
335
  creator:
238
336
  type: string
239
337
  channelDeleted:
240
- summary: 'A channel was deleted.'
338
+ summary: A channel was deleted.
241
339
  payload:
242
340
  type: object
243
341
  properties:
@@ -248,7 +346,7 @@ components:
248
346
  channel:
249
347
  type: string
250
348
  channelHistoryChanged:
251
- summary: 'Bulk updates were made to a channel''s history.'
349
+ summary: Bulk updates were made to a channel's history.
252
350
  payload:
253
351
  type: object
254
352
  properties:
@@ -263,7 +361,7 @@ components:
263
361
  event_ts:
264
362
  type: string
265
363
  channelJoined:
266
- summary: 'You joined a channel.'
364
+ summary: You joined a channel.
267
365
  payload:
268
366
  type: object
269
367
  properties:
@@ -283,7 +381,7 @@ components:
283
381
  creator:
284
382
  type: string
285
383
  channelLeft:
286
- summary: 'You left a channel.'
384
+ summary: You left a channel.
287
385
  payload:
288
386
  type: object
289
387
  properties:
@@ -294,7 +392,7 @@ components:
294
392
  channel:
295
393
  type: string
296
394
  channelMarked:
297
- summary: 'Your channel read marker was updated.'
395
+ summary: Your channel read marker was updated.
298
396
  payload:
299
397
  type: object
300
398
  properties:
@@ -307,7 +405,7 @@ components:
307
405
  ts:
308
406
  type: string
309
407
  channelRename:
310
- summary: 'A channel was renamed.'
408
+ summary: A channel was renamed.
311
409
  payload:
312
410
  type: object
313
411
  properties:
@@ -325,7 +423,7 @@ components:
325
423
  created:
326
424
  type: number
327
425
  channelUnarchive:
328
- summary: 'A channel was unarchived.'
426
+ summary: A channel was unarchived.
329
427
  payload:
330
428
  type: object
331
429
  properties:
@@ -338,7 +436,7 @@ components:
338
436
  user:
339
437
  type: string
340
438
  commandsChanged:
341
- summary: 'A slash command has been added or changed.'
439
+ summary: A slash command has been added or changed.
342
440
  payload:
343
441
  type: object
344
442
  properties:
@@ -349,7 +447,7 @@ components:
349
447
  event_ts:
350
448
  type: string
351
449
  dndUpdated:
352
- summary: 'Do not Disturb settings changed for the current user.'
450
+ summary: Do not Disturb settings changed for the current user.
353
451
  payload:
354
452
  type: object
355
453
  properties:
@@ -373,7 +471,7 @@ components:
373
471
  snooze_endtime:
374
472
  type: number
375
473
  dndUpdatedUser:
376
- summary: 'Do not Disturb settings changed for a member.'
474
+ summary: Do not Disturb settings changed for a member.
377
475
  payload:
378
476
  type: object
379
477
  properties:
@@ -393,7 +491,7 @@ components:
393
491
  next_dnd_end_ts:
394
492
  type: number
395
493
  emailDomainChanged:
396
- summary: 'The workspace email domain has changed.'
494
+ summary: The workspace email domain has changed.
397
495
  payload:
398
496
  type: object
399
497
  properties:
@@ -406,7 +504,7 @@ components:
406
504
  event_ts:
407
505
  type: string
408
506
  emojiRemoved:
409
- summary: 'A custom emoji has been removed.'
507
+ summary: A custom emoji has been removed.
410
508
  payload:
411
509
  type: object
412
510
  properties:
@@ -425,7 +523,7 @@ components:
425
523
  event_ts:
426
524
  type: string
427
525
  emojiAdded:
428
- summary: 'A custom emoji has been added.'
526
+ summary: A custom emoji has been added.
429
527
  payload:
430
528
  type: object
431
529
  properties:
@@ -445,7 +543,7 @@ components:
445
543
  event_ts:
446
544
  type: string
447
545
  fileChange:
448
- summary: 'A file was changed.'
546
+ summary: A file was changed.
449
547
  payload:
450
548
  type: object
451
549
  properties:
@@ -461,7 +559,7 @@ components:
461
559
  id:
462
560
  type: string
463
561
  fileCommentAdded:
464
- summary: 'A file comment was added.'
562
+ summary: A file comment was added.
465
563
  payload:
466
564
  type: object
467
565
  properties:
@@ -478,7 +576,7 @@ components:
478
576
  id:
479
577
  type: string
480
578
  fileCommentDeleted:
481
- summary: 'A file comment was deleted.'
579
+ summary: A file comment was deleted.
482
580
  payload:
483
581
  type: object
484
582
  properties:
@@ -496,7 +594,7 @@ components:
496
594
  id:
497
595
  type: string
498
596
  fileCommentEdited:
499
- summary: 'A file comment was edited.'
597
+ summary: A file comment was edited.
500
598
  payload:
501
599
  type: object
502
600
  properties:
@@ -513,7 +611,7 @@ components:
513
611
  id:
514
612
  type: string
515
613
  fileCreated:
516
- summary: 'A file was created.'
614
+ summary: A file was created.
517
615
  payload:
518
616
  type: object
519
617
  properties:
@@ -529,7 +627,7 @@ components:
529
627
  id:
530
628
  type: string
531
629
  fileDeleted:
532
- summary: 'A file was deleted.'
630
+ summary: A file was deleted.
533
631
  payload:
534
632
  type: object
535
633
  properties:
@@ -542,7 +640,7 @@ components:
542
640
  event_ts:
543
641
  type: string
544
642
  filePublic:
545
- summary: 'A file was made public.'
643
+ summary: A file was made public.
546
644
  payload:
547
645
  type: object
548
646
  properties:
@@ -558,7 +656,7 @@ components:
558
656
  id:
559
657
  type: string
560
658
  fileShared:
561
- summary: 'A file was shared.'
659
+ summary: A file was shared.
562
660
  payload:
563
661
  type: object
564
662
  properties:
@@ -574,7 +672,7 @@ components:
574
672
  id:
575
673
  type: string
576
674
  fileUnshared:
577
- summary: 'A file was unshared.'
675
+ summary: A file was unshared.
578
676
  payload:
579
677
  type: object
580
678
  properties:
@@ -590,7 +688,7 @@ components:
590
688
  id:
591
689
  type: string
592
690
  goodbye:
593
- summary: 'The server intends to close the connection soon.'
691
+ summary: The server intends to close the connection soon.
594
692
  payload:
595
693
  type: object
596
694
  properties:
@@ -599,7 +697,7 @@ components:
599
697
  enum:
600
698
  - goodbye
601
699
  groupArchive:
602
- summary: 'A private channel was archived.'
700
+ summary: A private channel was archived.
603
701
  payload:
604
702
  type: object
605
703
  properties:
@@ -610,7 +708,7 @@ components:
610
708
  channel:
611
709
  type: string
612
710
  groupClose:
613
- summary: 'You closed a private channel.'
711
+ summary: You closed a private channel.
614
712
  payload:
615
713
  type: object
616
714
  properties:
@@ -623,7 +721,7 @@ components:
623
721
  channel:
624
722
  type: string
625
723
  groupHistoryChanged:
626
- summary: 'Bulk updates were made to a private channel''s history.'
724
+ summary: Bulk updates were made to a private channel's history.
627
725
  payload:
628
726
  type: object
629
727
  properties:
@@ -638,7 +736,7 @@ components:
638
736
  event_ts:
639
737
  type: string
640
738
  groupJoined:
641
- summary: 'You joined a private channel.'
739
+ summary: You joined a private channel.
642
740
  payload:
643
741
  type: object
644
742
  properties:
@@ -658,7 +756,7 @@ components:
658
756
  creator:
659
757
  type: string
660
758
  groupLeft:
661
- summary: 'You left a private channel.'
759
+ summary: You left a private channel.
662
760
  payload:
663
761
  type: object
664
762
  properties:
@@ -669,7 +767,7 @@ components:
669
767
  channel:
670
768
  type: string
671
769
  groupMarked:
672
- summary: 'A private channel read marker was updated.'
770
+ summary: A private channel read marker was updated.
673
771
  payload:
674
772
  type: object
675
773
  properties:
@@ -682,7 +780,7 @@ components:
682
780
  ts:
683
781
  type: string
684
782
  groupOpen:
685
- summary: 'You opened a private channel.'
783
+ summary: You opened a private channel.
686
784
  payload:
687
785
  type: object
688
786
  properties:
@@ -695,7 +793,7 @@ components:
695
793
  channel:
696
794
  type: string
697
795
  groupRename:
698
- summary: 'A private channel was renamed.'
796
+ summary: A private channel was renamed.
699
797
  payload:
700
798
  type: object
701
799
  properties:
@@ -713,7 +811,7 @@ components:
713
811
  created:
714
812
  type: number
715
813
  groupUnarchive:
716
- summary: 'A private channel was unarchived.'
814
+ summary: A private channel was unarchived.
717
815
  payload:
718
816
  type: object
719
817
  properties:
@@ -726,7 +824,7 @@ components:
726
824
  user:
727
825
  type: string
728
826
  imClose:
729
- summary: 'You closed a DM.'
827
+ summary: You closed a DM.
730
828
  payload:
731
829
  type: object
732
830
  properties:
@@ -739,7 +837,7 @@ components:
739
837
  user:
740
838
  type: string
741
839
  imCreated:
742
- summary: 'A DM was created.'
840
+ summary: A DM was created.
743
841
  payload:
744
842
  type: object
745
843
  properties:
@@ -761,7 +859,7 @@ components:
761
859
  user:
762
860
  type: string
763
861
  imMarked:
764
- summary: 'A direct message read marker was updated.'
862
+ summary: A direct message read marker was updated.
765
863
  payload:
766
864
  type: object
767
865
  properties:
@@ -774,7 +872,7 @@ components:
774
872
  ts:
775
873
  type: string
776
874
  imOpen:
777
- summary: 'You opened a DM.'
875
+ summary: You opened a DM.
778
876
  payload:
779
877
  type: object
780
878
  properties:
@@ -787,7 +885,7 @@ components:
787
885
  user:
788
886
  type: string
789
887
  manualPresenceChange:
790
- summary: 'You manually updated your presence.'
888
+ summary: You manually updated your presence.
791
889
  payload:
792
890
  type: object
793
891
  properties:
@@ -798,7 +896,7 @@ components:
798
896
  presence:
799
897
  type: string
800
898
  memberJoinedChannel:
801
- summary: 'A user joined a public or private channel.'
899
+ summary: A user joined a public or private channel.
802
900
  payload:
803
901
  type: object
804
902
  properties:
@@ -820,7 +918,7 @@ components:
820
918
  inviter:
821
919
  type: string
822
920
  memberLeftChannel:
823
- summary: 'A user left a public or private channel.'
921
+ summary: A user left a public or private channel.
824
922
  payload:
825
923
  type: object
826
924
  properties:
@@ -840,7 +938,7 @@ components:
840
938
  team:
841
939
  type: string
842
940
  message:
843
- summary: 'A message was sent to a channel.'
941
+ summary: A message was sent to a channel.
844
942
  payload:
845
943
  type: object
846
944
  properties:
@@ -868,7 +966,7 @@ components:
868
966
  ts:
869
967
  type: string
870
968
  outgoingMessage:
871
- summary: 'A message was sent to a channel.'
969
+ summary: A message was sent to a channel.
872
970
  payload:
873
971
  type: object
874
972
  properties:
@@ -881,4 +979,4 @@ components:
881
979
  channel:
882
980
  type: string
883
981
  text:
884
- type: string
982
+ type: string