├── CONTRIBUTING.md ├── Makefile ├── README.md ├── api ├── .gitignore ├── README.md ├── bin │ └── build-docs ├── channel.archive.md ├── channel.create.md ├── channel.info.md ├── channel.invite.md ├── channel.join.md ├── channel.kick.md ├── channel.kickout.md ├── channel.leave.md ├── channel.list.md ├── channel.unarchive.md ├── emoji.list.md ├── file.location.md ├── gen_doc.js ├── gen_json.js ├── index.tmpl ├── message.create.md ├── message.delete.md ├── message.forward.md ├── message.info.md ├── message.query.md ├── message.update_text.md ├── message_pin.create.md ├── message_pin.delete.md ├── message_pin.list.md ├── meta.md ├── p2p.create.md ├── p2p.info.md ├── p2p.list.md ├── package.json ├── reaction.create.md ├── reaction.delete.md ├── rtm.start.md ├── session_channel.archive.md ├── session_channel.convert_to_channel.md ├── session_channel.create.md ├── session_channel.info.md ├── session_channel.invite.md ├── session_channel.kick.md ├── session_channel.kickout.md ├── session_channel.leave.md ├── session_channel.list.md ├── sticker.list.md ├── swagger.json ├── swagger.yml ├── team.info.md ├── user.info.md ├── user.list.md ├── user.me.md ├── user.update_me.md ├── vchannel.info.md └── yarn.lock ├── deploy ├── nginx.conf └── static │ ├── swagger-ui-bundle.js │ ├── swagger-ui-standalone-preset.js │ └── swagger-ui.css ├── package.Dockerfile ├── release.Dockerfile └── rtm ├── README.md ├── api.md ├── api_message.md ├── api_start.md ├── event.md ├── event_add_message_reaction.md ├── event_channel_message.md ├── event_delete_message_reaction.md ├── event_message.md ├── event_update_channel_message.md └── event_update_message.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/README.md -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/README.md -------------------------------------------------------------------------------- /api/bin/build-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/bin/build-docs -------------------------------------------------------------------------------- /api/channel.archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.archive.md -------------------------------------------------------------------------------- /api/channel.create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.create.md -------------------------------------------------------------------------------- /api/channel.info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.info.md -------------------------------------------------------------------------------- /api/channel.invite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.invite.md -------------------------------------------------------------------------------- /api/channel.join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.join.md -------------------------------------------------------------------------------- /api/channel.kick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.kick.md -------------------------------------------------------------------------------- /api/channel.kickout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.kickout.md -------------------------------------------------------------------------------- /api/channel.leave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.leave.md -------------------------------------------------------------------------------- /api/channel.list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.list.md -------------------------------------------------------------------------------- /api/channel.unarchive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/channel.unarchive.md -------------------------------------------------------------------------------- /api/emoji.list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/emoji.list.md -------------------------------------------------------------------------------- /api/file.location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/file.location.md -------------------------------------------------------------------------------- /api/gen_doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/gen_doc.js -------------------------------------------------------------------------------- /api/gen_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/gen_json.js -------------------------------------------------------------------------------- /api/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/index.tmpl -------------------------------------------------------------------------------- /api/message.create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message.create.md -------------------------------------------------------------------------------- /api/message.delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message.delete.md -------------------------------------------------------------------------------- /api/message.forward.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message.forward.md -------------------------------------------------------------------------------- /api/message.info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message.info.md -------------------------------------------------------------------------------- /api/message.query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message.query.md -------------------------------------------------------------------------------- /api/message.update_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message.update_text.md -------------------------------------------------------------------------------- /api/message_pin.create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message_pin.create.md -------------------------------------------------------------------------------- /api/message_pin.delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message_pin.delete.md -------------------------------------------------------------------------------- /api/message_pin.list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/message_pin.list.md -------------------------------------------------------------------------------- /api/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/meta.md -------------------------------------------------------------------------------- /api/p2p.create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/p2p.create.md -------------------------------------------------------------------------------- /api/p2p.info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/p2p.info.md -------------------------------------------------------------------------------- /api/p2p.list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/p2p.list.md -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/package.json -------------------------------------------------------------------------------- /api/reaction.create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/reaction.create.md -------------------------------------------------------------------------------- /api/reaction.delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/reaction.delete.md -------------------------------------------------------------------------------- /api/rtm.start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/rtm.start.md -------------------------------------------------------------------------------- /api/session_channel.archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.archive.md -------------------------------------------------------------------------------- /api/session_channel.convert_to_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.convert_to_channel.md -------------------------------------------------------------------------------- /api/session_channel.create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.create.md -------------------------------------------------------------------------------- /api/session_channel.info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.info.md -------------------------------------------------------------------------------- /api/session_channel.invite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.invite.md -------------------------------------------------------------------------------- /api/session_channel.kick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.kick.md -------------------------------------------------------------------------------- /api/session_channel.kickout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.kickout.md -------------------------------------------------------------------------------- /api/session_channel.leave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.leave.md -------------------------------------------------------------------------------- /api/session_channel.list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/session_channel.list.md -------------------------------------------------------------------------------- /api/sticker.list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/sticker.list.md -------------------------------------------------------------------------------- /api/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/swagger.json -------------------------------------------------------------------------------- /api/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/swagger.yml -------------------------------------------------------------------------------- /api/team.info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/team.info.md -------------------------------------------------------------------------------- /api/user.info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/user.info.md -------------------------------------------------------------------------------- /api/user.list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/user.list.md -------------------------------------------------------------------------------- /api/user.me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/user.me.md -------------------------------------------------------------------------------- /api/user.update_me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/user.update_me.md -------------------------------------------------------------------------------- /api/vchannel.info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/vchannel.info.md -------------------------------------------------------------------------------- /api/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/api/yarn.lock -------------------------------------------------------------------------------- /deploy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/deploy/nginx.conf -------------------------------------------------------------------------------- /deploy/static/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/deploy/static/swagger-ui-bundle.js -------------------------------------------------------------------------------- /deploy/static/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/deploy/static/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /deploy/static/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/deploy/static/swagger-ui.css -------------------------------------------------------------------------------- /package.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/package.Dockerfile -------------------------------------------------------------------------------- /release.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/release.Dockerfile -------------------------------------------------------------------------------- /rtm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/README.md -------------------------------------------------------------------------------- /rtm/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/api.md -------------------------------------------------------------------------------- /rtm/api_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/api_message.md -------------------------------------------------------------------------------- /rtm/api_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/api_start.md -------------------------------------------------------------------------------- /rtm/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/event.md -------------------------------------------------------------------------------- /rtm/event_add_message_reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/event_add_message_reaction.md -------------------------------------------------------------------------------- /rtm/event_channel_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/event_channel_message.md -------------------------------------------------------------------------------- /rtm/event_delete_message_reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/event_delete_message_reaction.md -------------------------------------------------------------------------------- /rtm/event_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/event_message.md -------------------------------------------------------------------------------- /rtm/event_update_channel_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/event_update_channel_message.md -------------------------------------------------------------------------------- /rtm/event_update_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearyinnovative/OpenAPI/HEAD/rtm/event_update_message.md --------------------------------------------------------------------------------