@itentialopensource/adapter-webex_teams 0.6.0 → 0.7.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 (44) hide show
  1. package/CALLS.md +252 -0
  2. package/CHANGELOG.md +8 -0
  3. package/CONTRIBUTING.md +1 -160
  4. package/ENHANCE.md +2 -2
  5. package/README.md +32 -23
  6. package/adapter.js +161 -333
  7. package/adapterBase.js +549 -879
  8. package/changelogs/changelog.md +91 -0
  9. package/metadata.json +60 -0
  10. package/package.json +24 -25
  11. package/pronghorn.json +981 -642
  12. package/propertiesSchema.json +431 -31
  13. package/refs?service=git-upload-pack +0 -0
  14. package/report/adapter-openapi.json +1336 -0
  15. package/report/adapter-openapi.yaml +1054 -0
  16. package/report/adapterInfo.json +8 -8
  17. package/report/updateReport1691506975130.json +120 -0
  18. package/report/updateReport1692201585506.json +120 -0
  19. package/report/updateReport1692203006473.json +120 -0
  20. package/report/updateReport1694455098258.json +120 -0
  21. package/report/updateReport1694466795632.json +120 -0
  22. package/report/updateReport1698422054637.json +120 -0
  23. package/sampleProperties.json +63 -2
  24. package/test/integration/adapterTestBasicGet.js +2 -4
  25. package/test/integration/adapterTestConnectivity.js +91 -42
  26. package/test/integration/adapterTestIntegration.js +130 -2
  27. package/test/unit/adapterBaseTestUnit.js +388 -313
  28. package/test/unit/adapterTestUnit.js +338 -112
  29. package/utils/adapterInfo.js +1 -1
  30. package/utils/addAuth.js +1 -1
  31. package/utils/artifactize.js +1 -1
  32. package/utils/checkMigrate.js +1 -1
  33. package/utils/entitiesToDB.js +2 -2
  34. package/utils/findPath.js +1 -1
  35. package/utils/methodDocumentor.js +273 -0
  36. package/utils/modify.js +13 -15
  37. package/utils/packModificationScript.js +1 -1
  38. package/utils/pre-commit.sh +2 -0
  39. package/utils/taskMover.js +309 -0
  40. package/utils/tbScript.js +89 -34
  41. package/utils/tbUtils.js +41 -21
  42. package/utils/testRunner.js +1 -1
  43. package/utils/troubleshootingAdapter.js +9 -6
  44. package/workflows/README.md +0 -3
@@ -0,0 +1,1054 @@
1
+ openapi: 3.0.0
2
+ info:
3
+ title: adapter-webex_teams
4
+ contact: {}
5
+ version: '1.0.0'
6
+ servers:
7
+ - url: https://{defaultHost}
8
+ variables:
9
+ defaultHost:
10
+ default: www.example.com
11
+ paths:
12
+ /people/:
13
+ get:
14
+ summary: getPeople
15
+ description: ''
16
+ operationId: getPeople
17
+ parameters:
18
+ - name: id
19
+ in: query
20
+ description: ''
21
+ style: form
22
+ explode: true
23
+ schema:
24
+ type: string
25
+ - name: email
26
+ in: query
27
+ description: ''
28
+ style: form
29
+ explode: true
30
+ schema:
31
+ type: string
32
+ - name: displayName
33
+ in: query
34
+ description: ''
35
+ style: form
36
+ explode: true
37
+ schema:
38
+ type: string
39
+ - name: max
40
+ in: query
41
+ description: ''
42
+ style: form
43
+ explode: true
44
+ schema:
45
+ type: number
46
+ format: double
47
+ responses:
48
+ '200':
49
+ description: Successful operation
50
+ headers: {}
51
+ content:
52
+ application/json:
53
+ schema:
54
+ type: object
55
+ deprecated: false
56
+ post:
57
+ summary: addPerson
58
+ description: ''
59
+ operationId: addPerson
60
+ parameters: []
61
+ requestBody:
62
+ description: ''
63
+ content:
64
+ application/json:
65
+ schema:
66
+ type: object
67
+ required: false
68
+ responses:
69
+ '200':
70
+ description: Successful operation
71
+ headers: {}
72
+ content:
73
+ application/json:
74
+ schema:
75
+ type: object
76
+ deprecated: false
77
+ /people/{personId}:
78
+ get:
79
+ summary: getPerson
80
+ description: ''
81
+ operationId: getPerson
82
+ parameters:
83
+ - name: personId
84
+ in: path
85
+ description: ''
86
+ required: true
87
+ style: simple
88
+ schema:
89
+ type: string
90
+ responses:
91
+ '200':
92
+ description: Successful operation
93
+ headers: {}
94
+ content:
95
+ application/json:
96
+ schema:
97
+ type: object
98
+ deprecated: false
99
+ put:
100
+ summary: updatePerson
101
+ description: ''
102
+ operationId: updatePerson
103
+ parameters:
104
+ - name: personId
105
+ in: path
106
+ description: ''
107
+ required: true
108
+ style: simple
109
+ schema:
110
+ type: string
111
+ requestBody:
112
+ description: ''
113
+ content:
114
+ application/json:
115
+ schema:
116
+ type: object
117
+ required: false
118
+ responses:
119
+ '200':
120
+ description: Successful operation
121
+ headers: {}
122
+ content:
123
+ application/json:
124
+ schema:
125
+ type: object
126
+ deprecated: false
127
+ delete:
128
+ summary: deletePerson
129
+ description: ''
130
+ operationId: deletePerson
131
+ parameters:
132
+ - name: personId
133
+ in: path
134
+ description: ''
135
+ required: true
136
+ style: simple
137
+ schema:
138
+ type: string
139
+ responses:
140
+ '200':
141
+ description: Successful operation
142
+ headers: {}
143
+ content:
144
+ application/json:
145
+ schema:
146
+ type: object
147
+ deprecated: false
148
+ /people/me:
149
+ get:
150
+ summary: getMe
151
+ description: ''
152
+ operationId: getMe
153
+ parameters: []
154
+ responses:
155
+ '200':
156
+ description: Successful operation
157
+ headers: {}
158
+ content:
159
+ application/json:
160
+ schema:
161
+ type: object
162
+ deprecated: false
163
+ /rooms/:
164
+ get:
165
+ summary: getRooms
166
+ description: ''
167
+ operationId: getRooms
168
+ parameters:
169
+ - name: teamId
170
+ in: query
171
+ description: ''
172
+ style: form
173
+ explode: true
174
+ schema:
175
+ type: string
176
+ - name: type
177
+ in: query
178
+ description: ''
179
+ style: form
180
+ explode: true
181
+ schema:
182
+ type: string
183
+ - name: max
184
+ in: query
185
+ description: ''
186
+ style: form
187
+ explode: true
188
+ schema:
189
+ type: number
190
+ format: double
191
+ responses:
192
+ '200':
193
+ description: Successful operation
194
+ headers: {}
195
+ content:
196
+ application/json:
197
+ schema:
198
+ type: object
199
+ deprecated: false
200
+ post:
201
+ summary: createRoom
202
+ description: ''
203
+ operationId: createRoom
204
+ parameters: []
205
+ requestBody:
206
+ description: ''
207
+ content:
208
+ application/json:
209
+ schema:
210
+ type: object
211
+ required: false
212
+ responses:
213
+ '200':
214
+ description: Successful operation
215
+ headers: {}
216
+ content:
217
+ application/json:
218
+ schema:
219
+ type: object
220
+ deprecated: false
221
+ /rooms/{roomId}:
222
+ get:
223
+ summary: getRoom
224
+ description: ''
225
+ operationId: getRoom
226
+ parameters:
227
+ - name: roomId
228
+ in: path
229
+ description: ''
230
+ required: true
231
+ style: simple
232
+ schema:
233
+ type: string
234
+ responses:
235
+ '200':
236
+ description: Successful operation
237
+ headers: {}
238
+ content:
239
+ application/json:
240
+ schema:
241
+ type: object
242
+ deprecated: false
243
+ put:
244
+ summary: updateRoom
245
+ description: ''
246
+ operationId: updateRoom
247
+ parameters:
248
+ - name: roomId
249
+ in: path
250
+ description: ''
251
+ required: true
252
+ style: simple
253
+ schema:
254
+ type: string
255
+ requestBody:
256
+ description: ''
257
+ content:
258
+ application/json:
259
+ schema:
260
+ type: object
261
+ required: false
262
+ responses:
263
+ '200':
264
+ description: Successful operation
265
+ headers: {}
266
+ content:
267
+ application/json:
268
+ schema:
269
+ type: object
270
+ deprecated: false
271
+ delete:
272
+ summary: deleteRoom
273
+ description: ''
274
+ operationId: deleteRoom
275
+ parameters:
276
+ - name: roomId
277
+ in: path
278
+ description: ''
279
+ required: true
280
+ style: simple
281
+ schema:
282
+ type: string
283
+ responses:
284
+ '200':
285
+ description: Successful operation
286
+ headers: {}
287
+ content:
288
+ application/json:
289
+ schema:
290
+ type: object
291
+ deprecated: false
292
+ /memberships/:
293
+ get:
294
+ summary: getMemberships
295
+ description: ''
296
+ operationId: getMemberships
297
+ parameters:
298
+ - name: roomId
299
+ in: query
300
+ description: ''
301
+ style: form
302
+ explode: true
303
+ schema:
304
+ type: string
305
+ - name: personId
306
+ in: query
307
+ description: ''
308
+ style: form
309
+ explode: true
310
+ schema:
311
+ type: string
312
+ - name: personEmail
313
+ in: query
314
+ description: ''
315
+ style: form
316
+ explode: true
317
+ schema:
318
+ type: string
319
+ - name: max
320
+ in: query
321
+ description: ''
322
+ style: form
323
+ explode: true
324
+ schema:
325
+ type: number
326
+ format: double
327
+ responses:
328
+ '200':
329
+ description: Successful operation
330
+ headers: {}
331
+ content:
332
+ application/json:
333
+ schema:
334
+ type: object
335
+ deprecated: false
336
+ post:
337
+ summary: createMembership
338
+ description: ''
339
+ operationId: createMembership
340
+ parameters: []
341
+ requestBody:
342
+ description: ''
343
+ content:
344
+ application/json:
345
+ schema:
346
+ type: object
347
+ required: false
348
+ responses:
349
+ '200':
350
+ description: Successful operation
351
+ headers: {}
352
+ content:
353
+ application/json:
354
+ schema:
355
+ type: object
356
+ deprecated: false
357
+ /memberships/{membershipId}:
358
+ get:
359
+ summary: getMembership
360
+ description: ''
361
+ operationId: getMembership
362
+ parameters:
363
+ - name: membershipId
364
+ in: path
365
+ description: ''
366
+ required: true
367
+ style: simple
368
+ schema:
369
+ type: string
370
+ responses:
371
+ '200':
372
+ description: Successful operation
373
+ headers: {}
374
+ content:
375
+ application/json:
376
+ schema:
377
+ type: object
378
+ deprecated: false
379
+ put:
380
+ summary: updateMembership
381
+ description: ''
382
+ operationId: updateMembership
383
+ parameters:
384
+ - name: membershipId
385
+ in: path
386
+ description: ''
387
+ required: true
388
+ style: simple
389
+ schema:
390
+ type: string
391
+ requestBody:
392
+ description: ''
393
+ content:
394
+ application/json:
395
+ schema:
396
+ type: object
397
+ required: false
398
+ responses:
399
+ '200':
400
+ description: Successful operation
401
+ headers: {}
402
+ content:
403
+ application/json:
404
+ schema:
405
+ type: object
406
+ deprecated: false
407
+ delete:
408
+ summary: deleteMembership
409
+ description: ''
410
+ operationId: deleteMembership
411
+ parameters:
412
+ - name: membershipId
413
+ in: path
414
+ description: ''
415
+ required: true
416
+ style: simple
417
+ schema:
418
+ type: string
419
+ responses:
420
+ '200':
421
+ description: Successful operation
422
+ headers: {}
423
+ content:
424
+ application/json:
425
+ schema:
426
+ type: object
427
+ deprecated: false
428
+ /messages/:
429
+ get:
430
+ summary: getMessages
431
+ description: ''
432
+ operationId: getMessages
433
+ parameters:
434
+ - name: roomId
435
+ in: query
436
+ description: ''
437
+ required: true
438
+ style: form
439
+ explode: true
440
+ schema:
441
+ type: string
442
+ - name: mentionedPeople
443
+ in: query
444
+ description: ''
445
+ style: form
446
+ explode: true
447
+ schema:
448
+ type: string
449
+ - name: before
450
+ in: query
451
+ description: ''
452
+ style: form
453
+ explode: true
454
+ schema:
455
+ type: string
456
+ - name: beforeMessage
457
+ in: query
458
+ description: ''
459
+ style: form
460
+ explode: true
461
+ schema:
462
+ type: string
463
+ - name: max
464
+ in: query
465
+ description: ''
466
+ style: form
467
+ explode: true
468
+ schema:
469
+ type: number
470
+ format: double
471
+ responses:
472
+ '200':
473
+ description: Successful operation
474
+ headers: {}
475
+ content:
476
+ application/json:
477
+ schema:
478
+ type: object
479
+ deprecated: false
480
+ post:
481
+ summary: createMessage
482
+ description: ''
483
+ operationId: createMessage
484
+ parameters: []
485
+ requestBody:
486
+ description: ''
487
+ content:
488
+ application/json:
489
+ schema:
490
+ type: object
491
+ required: false
492
+ responses:
493
+ '200':
494
+ description: Successful operation
495
+ headers: {}
496
+ content:
497
+ application/json:
498
+ schema:
499
+ type: object
500
+ deprecated: false
501
+ /messages/{messageId}:
502
+ get:
503
+ summary: getMessage
504
+ description: ''
505
+ operationId: getMessage
506
+ parameters:
507
+ - name: messageId
508
+ in: path
509
+ description: ''
510
+ required: true
511
+ style: simple
512
+ schema:
513
+ type: string
514
+ responses:
515
+ '200':
516
+ description: Successful operation
517
+ headers: {}
518
+ content:
519
+ application/json:
520
+ schema:
521
+ type: object
522
+ deprecated: false
523
+ delete:
524
+ summary: deleteMessage
525
+ description: ''
526
+ operationId: deleteMessage
527
+ parameters:
528
+ - name: messageId
529
+ in: path
530
+ description: ''
531
+ required: true
532
+ style: simple
533
+ schema:
534
+ type: string
535
+ responses:
536
+ '200':
537
+ description: Successful operation
538
+ headers: {}
539
+ content:
540
+ application/json:
541
+ schema:
542
+ type: object
543
+ deprecated: false
544
+ /teams/:
545
+ get:
546
+ summary: getTeams
547
+ description: ''
548
+ operationId: getTeams
549
+ parameters:
550
+ - name: max
551
+ in: query
552
+ description: ''
553
+ style: form
554
+ explode: true
555
+ schema:
556
+ type: number
557
+ format: double
558
+ responses:
559
+ '200':
560
+ description: Successful operation
561
+ headers: {}
562
+ content:
563
+ application/json:
564
+ schema:
565
+ type: object
566
+ deprecated: false
567
+ post:
568
+ summary: createTeam
569
+ description: ''
570
+ operationId: createTeam
571
+ parameters: []
572
+ requestBody:
573
+ description: ''
574
+ content:
575
+ application/json:
576
+ schema:
577
+ type: object
578
+ required: false
579
+ responses:
580
+ '200':
581
+ description: Successful operation
582
+ headers: {}
583
+ content:
584
+ application/json:
585
+ schema:
586
+ type: object
587
+ deprecated: false
588
+ /teams/{teamId}:
589
+ get:
590
+ summary: getTeam
591
+ description: ''
592
+ operationId: getTeam
593
+ parameters:
594
+ - name: teamId
595
+ in: path
596
+ description: ''
597
+ required: true
598
+ style: simple
599
+ schema:
600
+ type: string
601
+ responses:
602
+ '200':
603
+ description: Successful operation
604
+ headers: {}
605
+ content:
606
+ application/json:
607
+ schema:
608
+ type: object
609
+ deprecated: false
610
+ put:
611
+ summary: updateTeam
612
+ description: ''
613
+ operationId: updateTeam
614
+ parameters:
615
+ - name: teamId
616
+ in: path
617
+ description: ''
618
+ required: true
619
+ style: simple
620
+ schema:
621
+ type: string
622
+ requestBody:
623
+ description: ''
624
+ content:
625
+ application/json:
626
+ schema:
627
+ type: object
628
+ required: false
629
+ responses:
630
+ '200':
631
+ description: Successful operation
632
+ headers: {}
633
+ content:
634
+ application/json:
635
+ schema:
636
+ type: object
637
+ deprecated: false
638
+ delete:
639
+ summary: deleteTeam
640
+ description: ''
641
+ operationId: deleteTeam
642
+ parameters:
643
+ - name: teamId
644
+ in: path
645
+ description: ''
646
+ required: true
647
+ style: simple
648
+ schema:
649
+ type: string
650
+ responses:
651
+ '200':
652
+ description: Successful operation
653
+ headers: {}
654
+ content:
655
+ application/json:
656
+ schema:
657
+ type: object
658
+ deprecated: false
659
+ /team/memberships/:
660
+ get:
661
+ summary: getTeamMemberships
662
+ description: ''
663
+ operationId: getTeamMemberships
664
+ parameters:
665
+ - name: teamId
666
+ in: query
667
+ description: ''
668
+ required: true
669
+ style: form
670
+ explode: true
671
+ schema:
672
+ type: string
673
+ - name: max
674
+ in: query
675
+ description: ''
676
+ style: form
677
+ explode: true
678
+ schema:
679
+ type: number
680
+ format: double
681
+ responses:
682
+ '200':
683
+ description: Successful operation
684
+ headers: {}
685
+ content:
686
+ application/json:
687
+ schema:
688
+ type: object
689
+ deprecated: false
690
+ post:
691
+ summary: createTeamMembership
692
+ description: ''
693
+ operationId: createTeamMembership
694
+ parameters: []
695
+ requestBody:
696
+ description: ''
697
+ content:
698
+ application/json:
699
+ schema:
700
+ type: object
701
+ required: false
702
+ responses:
703
+ '200':
704
+ description: Successful operation
705
+ headers: {}
706
+ content:
707
+ application/json:
708
+ schema:
709
+ type: object
710
+ deprecated: false
711
+ /team/memberships/{membershipId}:
712
+ get:
713
+ summary: getTeamMembership
714
+ description: ''
715
+ operationId: getTeamMembership
716
+ parameters:
717
+ - name: membershipId
718
+ in: path
719
+ description: ''
720
+ required: true
721
+ style: simple
722
+ schema:
723
+ type: string
724
+ responses:
725
+ '200':
726
+ description: Successful operation
727
+ headers: {}
728
+ content:
729
+ application/json:
730
+ schema:
731
+ type: object
732
+ deprecated: false
733
+ put:
734
+ summary: updateTeamMembership
735
+ description: ''
736
+ operationId: updateTeamMembership
737
+ parameters:
738
+ - name: membershipId
739
+ in: path
740
+ description: ''
741
+ required: true
742
+ style: simple
743
+ schema:
744
+ type: string
745
+ requestBody:
746
+ description: ''
747
+ content:
748
+ application/json:
749
+ schema:
750
+ type: object
751
+ required: false
752
+ responses:
753
+ '200':
754
+ description: Successful operation
755
+ headers: {}
756
+ content:
757
+ application/json:
758
+ schema:
759
+ type: object
760
+ deprecated: false
761
+ delete:
762
+ summary: deleteTeamMembership
763
+ description: ''
764
+ operationId: deleteTeamMembership
765
+ parameters:
766
+ - name: membershipId
767
+ in: path
768
+ description: ''
769
+ required: true
770
+ style: simple
771
+ schema:
772
+ type: string
773
+ responses:
774
+ '200':
775
+ description: Successful operation
776
+ headers: {}
777
+ content:
778
+ application/json:
779
+ schema:
780
+ type: object
781
+ deprecated: false
782
+ /webhooks/:
783
+ get:
784
+ summary: getWebhooks
785
+ description: ''
786
+ operationId: getWebhooks
787
+ parameters:
788
+ - name: max
789
+ in: query
790
+ description: ''
791
+ style: form
792
+ explode: true
793
+ schema:
794
+ type: number
795
+ format: double
796
+ responses:
797
+ '200':
798
+ description: Successful operation
799
+ headers: {}
800
+ content:
801
+ application/json:
802
+ schema:
803
+ type: object
804
+ deprecated: false
805
+ post:
806
+ summary: createWebhook
807
+ description: ''
808
+ operationId: createWebhook
809
+ parameters: []
810
+ requestBody:
811
+ description: ''
812
+ content:
813
+ application/json:
814
+ schema:
815
+ type: object
816
+ required: false
817
+ responses:
818
+ '200':
819
+ description: Successful operation
820
+ headers: {}
821
+ content:
822
+ application/json:
823
+ schema:
824
+ type: object
825
+ deprecated: false
826
+ /webhooks/{webhookId}:
827
+ get:
828
+ summary: getWebhook
829
+ description: ''
830
+ operationId: getWebhook
831
+ parameters:
832
+ - name: webhookId
833
+ in: path
834
+ description: ''
835
+ required: true
836
+ style: simple
837
+ schema:
838
+ type: string
839
+ responses:
840
+ '200':
841
+ description: Successful operation
842
+ headers: {}
843
+ content:
844
+ application/json:
845
+ schema:
846
+ type: object
847
+ deprecated: false
848
+ put:
849
+ summary: updateWebhook
850
+ description: ''
851
+ operationId: updateWebhook
852
+ parameters:
853
+ - name: webhookId
854
+ in: path
855
+ description: ''
856
+ required: true
857
+ style: simple
858
+ schema:
859
+ type: string
860
+ requestBody:
861
+ description: ''
862
+ content:
863
+ application/json:
864
+ schema:
865
+ type: object
866
+ required: false
867
+ responses:
868
+ '200':
869
+ description: Successful operation
870
+ headers: {}
871
+ content:
872
+ application/json:
873
+ schema:
874
+ type: object
875
+ deprecated: false
876
+ delete:
877
+ summary: deleteWebhook
878
+ description: ''
879
+ operationId: deleteWebhook
880
+ parameters:
881
+ - name: webhookId
882
+ in: path
883
+ description: ''
884
+ required: true
885
+ style: simple
886
+ schema:
887
+ type: string
888
+ responses:
889
+ '200':
890
+ description: Successful operation
891
+ headers: {}
892
+ content:
893
+ application/json:
894
+ schema:
895
+ type: object
896
+ deprecated: false
897
+ /organizations/:
898
+ get:
899
+ summary: getOrganizations
900
+ description: ''
901
+ operationId: getOrganizations
902
+ parameters:
903
+ - name: max
904
+ in: query
905
+ description: ''
906
+ style: form
907
+ explode: true
908
+ schema:
909
+ type: number
910
+ format: double
911
+ responses:
912
+ '200':
913
+ description: Successful operation
914
+ headers: {}
915
+ content:
916
+ application/json:
917
+ schema:
918
+ type: object
919
+ deprecated: false
920
+ /organizations/{orgId}:
921
+ get:
922
+ summary: getOrganization
923
+ description: ''
924
+ operationId: getOrganization
925
+ parameters:
926
+ - name: orgId
927
+ in: path
928
+ description: ''
929
+ required: true
930
+ style: simple
931
+ schema:
932
+ type: string
933
+ responses:
934
+ '200':
935
+ description: Successful operation
936
+ headers: {}
937
+ content:
938
+ application/json:
939
+ schema:
940
+ type: object
941
+ deprecated: false
942
+ /licenses/:
943
+ get:
944
+ summary: getLicenses
945
+ description: ''
946
+ operationId: getLicenses
947
+ parameters:
948
+ - name: max
949
+ in: query
950
+ description: ''
951
+ style: form
952
+ explode: true
953
+ schema:
954
+ type: number
955
+ format: double
956
+ responses:
957
+ '200':
958
+ description: Successful operation
959
+ headers: {}
960
+ content:
961
+ application/json:
962
+ schema:
963
+ type: object
964
+ deprecated: false
965
+ /licenses/{licenseId}:
966
+ get:
967
+ summary: getLicense
968
+ description: ''
969
+ operationId: getLicense
970
+ parameters:
971
+ - name: licenseId
972
+ in: path
973
+ description: ''
974
+ required: true
975
+ style: simple
976
+ schema:
977
+ type: string
978
+ responses:
979
+ '200':
980
+ description: Successful operation
981
+ headers: {}
982
+ content:
983
+ application/json:
984
+ schema:
985
+ type: object
986
+ deprecated: false
987
+ /roles/:
988
+ get:
989
+ summary: getRoles
990
+ description: ''
991
+ operationId: getRoles
992
+ parameters:
993
+ - name: max
994
+ in: query
995
+ description: ''
996
+ style: form
997
+ explode: true
998
+ schema:
999
+ type: number
1000
+ format: double
1001
+ responses:
1002
+ '200':
1003
+ description: Successful operation
1004
+ headers: {}
1005
+ content:
1006
+ application/json:
1007
+ schema:
1008
+ type: object
1009
+ deprecated: false
1010
+ /roles/{roleId}:
1011
+ get:
1012
+ summary: getRole
1013
+ description: ''
1014
+ operationId: getRole
1015
+ parameters:
1016
+ - name: roleId
1017
+ in: path
1018
+ description: ''
1019
+ required: true
1020
+ style: simple
1021
+ schema:
1022
+ type: string
1023
+ responses:
1024
+ '200':
1025
+ description: Successful operation
1026
+ headers: {}
1027
+ content:
1028
+ application/json:
1029
+ schema:
1030
+ type: object
1031
+ deprecated: false
1032
+ /contents/{contentId}:
1033
+ get:
1034
+ summary: getContent
1035
+ description: ''
1036
+ operationId: getContent
1037
+ parameters:
1038
+ - name: contentId
1039
+ in: path
1040
+ description: ''
1041
+ required: true
1042
+ style: simple
1043
+ schema:
1044
+ type: string
1045
+ responses:
1046
+ '200':
1047
+ description: Successful operation
1048
+ headers: {}
1049
+ content:
1050
+ application/json:
1051
+ schema:
1052
+ type: object
1053
+ deprecated: false
1054
+ tags: []