├── .dockerignore ├── .github └── main.workflow ├── .gitignore ├── LICENSE.md ├── README.md ├── api ├── Dockerfile ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── controllers │ │ ├── conversation.controller │ │ │ ├── add.post.ts │ │ │ ├── add.test.ts │ │ │ ├── index.ts │ │ │ ├── list.get.ts │ │ │ ├── list.test.ts │ │ │ ├── subscribe.get.ts │ │ │ └── subscribe.test.ts │ │ ├── inbound.controller │ │ │ ├── index.post.ts │ │ │ ├── index.test.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── integration.controller │ │ │ ├── index.get.ts │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ ├── providers.get.ts │ │ │ ├── providers.test.ts │ │ │ ├── save.post.ts │ │ │ └── save.test.ts │ │ ├── team.controller │ │ │ ├── index.ts │ │ │ ├── subscription.get.ts │ │ │ ├── subscription.post.ts │ │ │ ├── url.get.ts │ │ │ └── url.post.ts │ │ └── user.controller │ │ │ ├── details.get.ts │ │ │ ├── index.ts │ │ │ └── login.get.ts │ ├── helpers.ts │ ├── lib │ │ ├── StripeService.ts │ │ └── redis-connection.ts │ ├── models │ │ ├── conversation.model.ts │ │ ├── conversation.test.ts │ │ ├── index.ts │ │ ├── integration.model.ts │ │ ├── provider.model.ts │ │ ├── team.model.ts │ │ └── user.model.ts │ ├── providers │ │ └── twilio.ts │ └── server.ts ├── tsconfig.json └── tslint.json ├── apidocs.json ├── db ├── Dockerfile ├── deploy │ ├── appschema.sql │ ├── conversations.sql │ ├── customers.sql │ ├── providers.sql │ ├── teams.sql │ └── users.sql ├── drafts │ ├── create_conversations-verify.sql │ ├── create_conversations.sql │ ├── create_users.sql │ └── teams.sql ├── migrate-up.sh ├── revert │ ├── appschema.sql │ ├── conversations.sql │ ├── customers.sql │ ├── providers.sql │ ├── teams.sql │ └── users.sql ├── sqitch.conf ├── sqitch.plan └── verify │ ├── appschema.sql │ ├── conversations.sql │ ├── customers.sql │ ├── providers.sql │ ├── teams.sql │ └── users.sql ├── docker-compose.ssl.yml ├── docker-compose.yml ├── docker-sync.yml ├── docs ├── .gitignore ├── .ruby-version ├── CNAME ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _build │ ├── gulpfile.js │ ├── package-lock.json │ ├── package.json │ └── tdconfig.json ├── _config.yml ├── _includes │ ├── footer.html │ ├── head-typedoc.html │ ├── head.html │ ├── head_common.html │ ├── header.html │ ├── page_card.html │ ├── page_highlight.html │ └── post_list_item.html ├── _layouts │ ├── default.html │ ├── page.html │ ├── post.html │ ├── swagger.html │ └── typedoc.html ├── _posts │ ├── 2019-01-26-deployment-examples.md │ ├── 2019-01-26-local_ssl.md │ └── 2019-01-28-example-help.md ├── _sass │ ├── _base.scss │ ├── _layout.scss │ ├── _post.scss │ ├── _search.scss │ └── _syntax-highlighting.scss ├── api │ ├── swagger.html │ ├── swagger.json │ └── typedoc │ │ ├── assets │ │ ├── css │ │ │ ├── main.css │ │ │ └── main.css.map │ │ ├── images │ │ │ ├── icons.png │ │ │ ├── icons@2x.png │ │ │ ├── widgets.png │ │ │ └── widgets@2x.png │ │ └── js │ │ │ ├── main.js │ │ │ └── search.js │ │ ├── classes │ │ ├── _models_conversation_model_.conversationmodel.html │ │ ├── _models_index_.modelerror.html │ │ ├── _models_integration_model_.integrationmodel.html │ │ ├── _models_provider_model_.providermodel.html │ │ ├── _models_team_model_.teammodel.html │ │ └── _models_user_model_.usermodel.html │ │ ├── globals.html │ │ ├── index.html │ │ ├── interfaces │ │ ├── _models_conversation_model_.iconversationhistory.html │ │ ├── _models_conversation_model_.iconversationrequest.html │ │ ├── _models_conversation_model_.iconversationrequestbody.html │ │ ├── _models_integration_model_.iintegrationauthentication.html │ │ ├── _models_integration_model_.iintegrationrequest.html │ │ ├── _models_integration_model_.iintegrationrequestbody.html │ │ ├── _models_team_model_.iteam.html │ │ ├── _models_team_model_.iteamrequest.html │ │ ├── _models_team_model_.iteamurlrequest.html │ │ ├── _models_team_model_.iteamurlrequestbody.html │ │ └── _models_user_model_.iuserinfo.html │ │ └── modules │ │ ├── _controllers_conversation_controller_.html │ │ ├── _controllers_inbound_controller_.html │ │ ├── _controllers_index_.html │ │ ├── _controllers_integration_controller_.html │ │ ├── _controllers_team_controller_.html │ │ ├── _controllers_user_controller_.html │ │ ├── _helpers_.html │ │ ├── _lib_redis_connection_.html │ │ ├── _lib_stripeservice_.html │ │ ├── _models_conversation_model_.html │ │ ├── _models_index_.html │ │ ├── _models_integration_model_.html │ │ ├── _models_provider_model_.html │ │ ├── _models_team_model_.html │ │ ├── _models_user_model_.html │ │ ├── _providers_twilio_.html │ │ └── _server_.html ├── css │ ├── main.scss │ ├── material.min.css │ └── material.min.css.map ├── deployment-examples │ └── docker │ │ ├── anymessage-app.service │ │ ├── docker-compose.prod-ssl.yml │ │ ├── docker-compose.prod.yml │ │ ├── nginx-ssl │ │ ├── Dockerfile │ │ ├── cert-renew.sh │ │ ├── certs │ │ │ └── .gitignore │ │ └── proxy_ssl.conf │ │ └── nginx │ │ ├── Dockerfile │ │ └── nginx.conf ├── developers.html ├── docker-compose.yml ├── entrypoint.sh ├── feed.xml ├── img │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── deployment.png │ ├── developers.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── getstarted.png │ ├── github-logo.png │ ├── mstile-150x150.png │ ├── roadmap.png │ ├── safari-pinned-tab.svg │ ├── site.webmanifest │ ├── swagger-logo.png │ └── typedoc-logo.png ├── index.html ├── js │ ├── material.min.js │ ├── material.min.js.map │ └── site.js ├── pages │ ├── deployment.html │ ├── help.html │ └── roadmap.md └── swagger-ui │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ └── swagger-ui.js.map ├── release-cloudbuild.yaml ├── test ├── README.md └── api.Dockerfile └── ui ├── .eslintrc.json ├── Dockerfile ├── customization ├── README.md └── index.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.js ├── _document.js ├── callback.js ├── index.js ├── messages.js ├── settings.js └── setup.js ├── server.js ├── src ├── components │ ├── Header.js │ ├── SnackbarMessage.js │ ├── header │ │ ├── UserMenu.js │ │ ├── UserMenuItem.js │ │ ├── UserMenuOptions.js │ │ └── UserNameGroup.js │ ├── illustrations │ │ ├── mailbox-empty.js │ │ └── waiting-conversation.js │ ├── marketing │ │ ├── Hero.js │ │ └── mobile-marketing.js │ ├── messages │ │ ├── Conversation.js │ │ ├── ConversationList.js │ │ ├── ConversationView.js │ │ └── Message.js │ ├── settings │ │ ├── Stripe │ │ │ ├── StripeCardsSection.js │ │ │ ├── StripeElementWrapper.js │ │ │ └── StripeInput.js │ │ ├── SubscriptionForm.js │ │ ├── TeamURL.js │ │ ├── TwilioSettings.js │ │ └── UnsavedBar.js │ └── setup │ │ ├── SetupIntegrations.js │ │ ├── SetupPayment.js │ │ ├── SetupTeamURL.js │ │ └── index.js ├── getPageContext.js └── util │ ├── AuthService.js │ ├── api.js │ ├── authContext.js │ ├── conversationsContext.js │ └── index.js └── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── mstile-150x150.png ├── providers └── twilio-logo.png ├── safari-pinned-tab.svg └── site.webmanifest /.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules -------------------------------------------------------------------------------- /.github/main.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/.github/main.workflow -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/README.md -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/jest.config.js -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/package.json -------------------------------------------------------------------------------- /api/src/controllers/conversation.controller/add.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/conversation.controller/add.post.ts -------------------------------------------------------------------------------- /api/src/controllers/conversation.controller/add.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/conversation.controller/add.test.ts -------------------------------------------------------------------------------- /api/src/controllers/conversation.controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/conversation.controller/index.ts -------------------------------------------------------------------------------- /api/src/controllers/conversation.controller/list.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/conversation.controller/list.get.ts -------------------------------------------------------------------------------- /api/src/controllers/conversation.controller/list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/conversation.controller/list.test.ts -------------------------------------------------------------------------------- /api/src/controllers/conversation.controller/subscribe.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/conversation.controller/subscribe.get.ts -------------------------------------------------------------------------------- /api/src/controllers/conversation.controller/subscribe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/conversation.controller/subscribe.test.ts -------------------------------------------------------------------------------- /api/src/controllers/inbound.controller/index.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/inbound.controller/index.post.ts -------------------------------------------------------------------------------- /api/src/controllers/inbound.controller/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/inbound.controller/index.test.ts -------------------------------------------------------------------------------- /api/src/controllers/inbound.controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/inbound.controller/index.ts -------------------------------------------------------------------------------- /api/src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/index.ts -------------------------------------------------------------------------------- /api/src/controllers/integration.controller/index.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/integration.controller/index.get.ts -------------------------------------------------------------------------------- /api/src/controllers/integration.controller/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/integration.controller/index.test.ts -------------------------------------------------------------------------------- /api/src/controllers/integration.controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/integration.controller/index.ts -------------------------------------------------------------------------------- /api/src/controllers/integration.controller/providers.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/integration.controller/providers.get.ts -------------------------------------------------------------------------------- /api/src/controllers/integration.controller/providers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/integration.controller/providers.test.ts -------------------------------------------------------------------------------- /api/src/controllers/integration.controller/save.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/integration.controller/save.post.ts -------------------------------------------------------------------------------- /api/src/controllers/integration.controller/save.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/integration.controller/save.test.ts -------------------------------------------------------------------------------- /api/src/controllers/team.controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/team.controller/index.ts -------------------------------------------------------------------------------- /api/src/controllers/team.controller/subscription.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/team.controller/subscription.get.ts -------------------------------------------------------------------------------- /api/src/controllers/team.controller/subscription.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/team.controller/subscription.post.ts -------------------------------------------------------------------------------- /api/src/controllers/team.controller/url.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/team.controller/url.get.ts -------------------------------------------------------------------------------- /api/src/controllers/team.controller/url.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/team.controller/url.post.ts -------------------------------------------------------------------------------- /api/src/controllers/user.controller/details.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/user.controller/details.get.ts -------------------------------------------------------------------------------- /api/src/controllers/user.controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/user.controller/index.ts -------------------------------------------------------------------------------- /api/src/controllers/user.controller/login.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/controllers/user.controller/login.get.ts -------------------------------------------------------------------------------- /api/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/helpers.ts -------------------------------------------------------------------------------- /api/src/lib/StripeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/lib/StripeService.ts -------------------------------------------------------------------------------- /api/src/lib/redis-connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/lib/redis-connection.ts -------------------------------------------------------------------------------- /api/src/models/conversation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/models/conversation.model.ts -------------------------------------------------------------------------------- /api/src/models/conversation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/models/conversation.test.ts -------------------------------------------------------------------------------- /api/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/models/index.ts -------------------------------------------------------------------------------- /api/src/models/integration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/models/integration.model.ts -------------------------------------------------------------------------------- /api/src/models/provider.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/models/provider.model.ts -------------------------------------------------------------------------------- /api/src/models/team.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/models/team.model.ts -------------------------------------------------------------------------------- /api/src/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/models/user.model.ts -------------------------------------------------------------------------------- /api/src/providers/twilio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/providers/twilio.ts -------------------------------------------------------------------------------- /api/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/src/server.ts -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /api/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/api/tslint.json -------------------------------------------------------------------------------- /apidocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/apidocs.json -------------------------------------------------------------------------------- /db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/Dockerfile -------------------------------------------------------------------------------- /db/deploy/appschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/deploy/appschema.sql -------------------------------------------------------------------------------- /db/deploy/conversations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/deploy/conversations.sql -------------------------------------------------------------------------------- /db/deploy/customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/deploy/customers.sql -------------------------------------------------------------------------------- /db/deploy/providers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/deploy/providers.sql -------------------------------------------------------------------------------- /db/deploy/teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/deploy/teams.sql -------------------------------------------------------------------------------- /db/deploy/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/deploy/users.sql -------------------------------------------------------------------------------- /db/drafts/create_conversations-verify.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/drafts/create_conversations-verify.sql -------------------------------------------------------------------------------- /db/drafts/create_conversations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/drafts/create_conversations.sql -------------------------------------------------------------------------------- /db/drafts/create_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/drafts/create_users.sql -------------------------------------------------------------------------------- /db/drafts/teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/drafts/teams.sql -------------------------------------------------------------------------------- /db/migrate-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/migrate-up.sh -------------------------------------------------------------------------------- /db/revert/appschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/revert/appschema.sql -------------------------------------------------------------------------------- /db/revert/conversations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/revert/conversations.sql -------------------------------------------------------------------------------- /db/revert/customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/revert/customers.sql -------------------------------------------------------------------------------- /db/revert/providers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/revert/providers.sql -------------------------------------------------------------------------------- /db/revert/teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/revert/teams.sql -------------------------------------------------------------------------------- /db/revert/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/revert/users.sql -------------------------------------------------------------------------------- /db/sqitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/sqitch.conf -------------------------------------------------------------------------------- /db/sqitch.plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/sqitch.plan -------------------------------------------------------------------------------- /db/verify/appschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/verify/appschema.sql -------------------------------------------------------------------------------- /db/verify/conversations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/verify/conversations.sql -------------------------------------------------------------------------------- /db/verify/customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/verify/customers.sql -------------------------------------------------------------------------------- /db/verify/providers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/verify/providers.sql -------------------------------------------------------------------------------- /db/verify/teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/verify/teams.sql -------------------------------------------------------------------------------- /db/verify/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/db/verify/users.sql -------------------------------------------------------------------------------- /docker-compose.ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docker-compose.ssl.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docker-sync.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ -------------------------------------------------------------------------------- /docs/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby 2.5.1p57 2 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.anymessage.io -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem 'github-pages' -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_build/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_build/gulpfile.js -------------------------------------------------------------------------------- /docs/_build/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_build/package-lock.json -------------------------------------------------------------------------------- /docs/_build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_build/package.json -------------------------------------------------------------------------------- /docs/_build/tdconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_build/tdconfig.json -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_includes/head-typedoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/head-typedoc.html -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_includes/head_common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/head_common.html -------------------------------------------------------------------------------- /docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/header.html -------------------------------------------------------------------------------- /docs/_includes/page_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/page_card.html -------------------------------------------------------------------------------- /docs/_includes/page_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/page_highlight.html -------------------------------------------------------------------------------- /docs/_includes/post_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_includes/post_list_item.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_layouts/page.html -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_layouts/post.html -------------------------------------------------------------------------------- /docs/_layouts/swagger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_layouts/swagger.html -------------------------------------------------------------------------------- /docs/_layouts/typedoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_layouts/typedoc.html -------------------------------------------------------------------------------- /docs/_posts/2019-01-26-deployment-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_posts/2019-01-26-deployment-examples.md -------------------------------------------------------------------------------- /docs/_posts/2019-01-26-local_ssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_posts/2019-01-26-local_ssl.md -------------------------------------------------------------------------------- /docs/_posts/2019-01-28-example-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_posts/2019-01-28-example-help.md -------------------------------------------------------------------------------- /docs/_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_sass/_base.scss -------------------------------------------------------------------------------- /docs/_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_sass/_layout.scss -------------------------------------------------------------------------------- /docs/_sass/_post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_sass/_post.scss -------------------------------------------------------------------------------- /docs/_sass/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_sass/_search.scss -------------------------------------------------------------------------------- /docs/_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /docs/api/swagger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/swagger.html -------------------------------------------------------------------------------- /docs/api/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/swagger.json -------------------------------------------------------------------------------- /docs/api/typedoc/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/css/main.css -------------------------------------------------------------------------------- /docs/api/typedoc/assets/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/css/main.css.map -------------------------------------------------------------------------------- /docs/api/typedoc/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/images/icons.png -------------------------------------------------------------------------------- /docs/api/typedoc/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/api/typedoc/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/api/typedoc/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/api/typedoc/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/js/main.js -------------------------------------------------------------------------------- /docs/api/typedoc/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/assets/js/search.js -------------------------------------------------------------------------------- /docs/api/typedoc/classes/_models_conversation_model_.conversationmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/classes/_models_conversation_model_.conversationmodel.html -------------------------------------------------------------------------------- /docs/api/typedoc/classes/_models_index_.modelerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/classes/_models_index_.modelerror.html -------------------------------------------------------------------------------- /docs/api/typedoc/classes/_models_integration_model_.integrationmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/classes/_models_integration_model_.integrationmodel.html -------------------------------------------------------------------------------- /docs/api/typedoc/classes/_models_provider_model_.providermodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/classes/_models_provider_model_.providermodel.html -------------------------------------------------------------------------------- /docs/api/typedoc/classes/_models_team_model_.teammodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/classes/_models_team_model_.teammodel.html -------------------------------------------------------------------------------- /docs/api/typedoc/classes/_models_user_model_.usermodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/classes/_models_user_model_.usermodel.html -------------------------------------------------------------------------------- /docs/api/typedoc/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/globals.html -------------------------------------------------------------------------------- /docs/api/typedoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/index.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_conversation_model_.iconversationhistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_conversation_model_.iconversationhistory.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_conversation_model_.iconversationrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_conversation_model_.iconversationrequest.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_conversation_model_.iconversationrequestbody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_conversation_model_.iconversationrequestbody.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_integration_model_.iintegrationauthentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_integration_model_.iintegrationauthentication.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_integration_model_.iintegrationrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_integration_model_.iintegrationrequest.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_integration_model_.iintegrationrequestbody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_integration_model_.iintegrationrequestbody.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_team_model_.iteam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_team_model_.iteam.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_team_model_.iteamrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_team_model_.iteamrequest.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_team_model_.iteamurlrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_team_model_.iteamurlrequest.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_team_model_.iteamurlrequestbody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_team_model_.iteamurlrequestbody.html -------------------------------------------------------------------------------- /docs/api/typedoc/interfaces/_models_user_model_.iuserinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/interfaces/_models_user_model_.iuserinfo.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_controllers_conversation_controller_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_controllers_conversation_controller_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_controllers_inbound_controller_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_controllers_inbound_controller_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_controllers_index_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_controllers_index_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_controllers_integration_controller_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_controllers_integration_controller_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_controllers_team_controller_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_controllers_team_controller_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_controllers_user_controller_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_controllers_user_controller_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_helpers_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_helpers_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_lib_redis_connection_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_lib_redis_connection_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_lib_stripeservice_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_lib_stripeservice_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_models_conversation_model_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_models_conversation_model_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_models_index_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_models_index_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_models_integration_model_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_models_integration_model_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_models_provider_model_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_models_provider_model_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_models_team_model_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_models_team_model_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_models_user_model_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_models_user_model_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_providers_twilio_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_providers_twilio_.html -------------------------------------------------------------------------------- /docs/api/typedoc/modules/_server_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/api/typedoc/modules/_server_.html -------------------------------------------------------------------------------- /docs/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/css/main.scss -------------------------------------------------------------------------------- /docs/css/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/css/material.min.css -------------------------------------------------------------------------------- /docs/css/material.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/css/material.min.css.map -------------------------------------------------------------------------------- /docs/deployment-examples/docker/anymessage-app.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/anymessage-app.service -------------------------------------------------------------------------------- /docs/deployment-examples/docker/docker-compose.prod-ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/docker-compose.prod-ssl.yml -------------------------------------------------------------------------------- /docs/deployment-examples/docker/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/docker-compose.prod.yml -------------------------------------------------------------------------------- /docs/deployment-examples/docker/nginx-ssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/nginx-ssl/Dockerfile -------------------------------------------------------------------------------- /docs/deployment-examples/docker/nginx-ssl/cert-renew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/nginx-ssl/cert-renew.sh -------------------------------------------------------------------------------- /docs/deployment-examples/docker/nginx-ssl/certs/.gitignore: -------------------------------------------------------------------------------- 1 | ./* -------------------------------------------------------------------------------- /docs/deployment-examples/docker/nginx-ssl/proxy_ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/nginx-ssl/proxy_ssl.conf -------------------------------------------------------------------------------- /docs/deployment-examples/docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /docs/deployment-examples/docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/deployment-examples/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docs/developers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/developers.html -------------------------------------------------------------------------------- /docs/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/docker-compose.yml -------------------------------------------------------------------------------- /docs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/entrypoint.sh -------------------------------------------------------------------------------- /docs/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/feed.xml -------------------------------------------------------------------------------- /docs/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/img/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/browserconfig.xml -------------------------------------------------------------------------------- /docs/img/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/deployment.png -------------------------------------------------------------------------------- /docs/img/developers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/developers.png -------------------------------------------------------------------------------- /docs/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/favicon-16x16.png -------------------------------------------------------------------------------- /docs/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/favicon-32x32.png -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/getstarted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/getstarted.png -------------------------------------------------------------------------------- /docs/img/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/github-logo.png -------------------------------------------------------------------------------- /docs/img/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/mstile-150x150.png -------------------------------------------------------------------------------- /docs/img/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/roadmap.png -------------------------------------------------------------------------------- /docs/img/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/img/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/site.webmanifest -------------------------------------------------------------------------------- /docs/img/swagger-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/swagger-logo.png -------------------------------------------------------------------------------- /docs/img/typedoc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/img/typedoc-logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/js/material.min.js -------------------------------------------------------------------------------- /docs/js/material.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/js/material.min.js.map -------------------------------------------------------------------------------- /docs/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/js/site.js -------------------------------------------------------------------------------- /docs/pages/deployment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/pages/deployment.html -------------------------------------------------------------------------------- /docs/pages/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/pages/help.html -------------------------------------------------------------------------------- /docs/pages/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/pages/roadmap.md -------------------------------------------------------------------------------- /docs/swagger-ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/favicon-16x16.png -------------------------------------------------------------------------------- /docs/swagger-ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/favicon-32x32.png -------------------------------------------------------------------------------- /docs/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/index.html -------------------------------------------------------------------------------- /docs/swagger-ui/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/oauth2-redirect.html -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui.css -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui.css.map -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /docs/swagger-ui/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/docs/swagger-ui/swagger-ui.js.map -------------------------------------------------------------------------------- /release-cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/release-cloudbuild.yaml -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/test/README.md -------------------------------------------------------------------------------- /test/api.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/test/api.Dockerfile -------------------------------------------------------------------------------- /ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/.eslintrc.json -------------------------------------------------------------------------------- /ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/Dockerfile -------------------------------------------------------------------------------- /ui/customization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/customization/README.md -------------------------------------------------------------------------------- /ui/customization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/customization/index.js -------------------------------------------------------------------------------- /ui/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/next.config.js -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/pages/_app.js -------------------------------------------------------------------------------- /ui/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/pages/_document.js -------------------------------------------------------------------------------- /ui/pages/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/pages/callback.js -------------------------------------------------------------------------------- /ui/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/pages/index.js -------------------------------------------------------------------------------- /ui/pages/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/pages/messages.js -------------------------------------------------------------------------------- /ui/pages/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/pages/settings.js -------------------------------------------------------------------------------- /ui/pages/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/pages/setup.js -------------------------------------------------------------------------------- /ui/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/server.js -------------------------------------------------------------------------------- /ui/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/Header.js -------------------------------------------------------------------------------- /ui/src/components/SnackbarMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/SnackbarMessage.js -------------------------------------------------------------------------------- /ui/src/components/header/UserMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/header/UserMenu.js -------------------------------------------------------------------------------- /ui/src/components/header/UserMenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/header/UserMenuItem.js -------------------------------------------------------------------------------- /ui/src/components/header/UserMenuOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/header/UserMenuOptions.js -------------------------------------------------------------------------------- /ui/src/components/header/UserNameGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/header/UserNameGroup.js -------------------------------------------------------------------------------- /ui/src/components/illustrations/mailbox-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/illustrations/mailbox-empty.js -------------------------------------------------------------------------------- /ui/src/components/illustrations/waiting-conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/illustrations/waiting-conversation.js -------------------------------------------------------------------------------- /ui/src/components/marketing/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/marketing/Hero.js -------------------------------------------------------------------------------- /ui/src/components/marketing/mobile-marketing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/marketing/mobile-marketing.js -------------------------------------------------------------------------------- /ui/src/components/messages/Conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/messages/Conversation.js -------------------------------------------------------------------------------- /ui/src/components/messages/ConversationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/messages/ConversationList.js -------------------------------------------------------------------------------- /ui/src/components/messages/ConversationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/messages/ConversationView.js -------------------------------------------------------------------------------- /ui/src/components/messages/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/messages/Message.js -------------------------------------------------------------------------------- /ui/src/components/settings/Stripe/StripeCardsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/settings/Stripe/StripeCardsSection.js -------------------------------------------------------------------------------- /ui/src/components/settings/Stripe/StripeElementWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/settings/Stripe/StripeElementWrapper.js -------------------------------------------------------------------------------- /ui/src/components/settings/Stripe/StripeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/settings/Stripe/StripeInput.js -------------------------------------------------------------------------------- /ui/src/components/settings/SubscriptionForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/settings/SubscriptionForm.js -------------------------------------------------------------------------------- /ui/src/components/settings/TeamURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/settings/TeamURL.js -------------------------------------------------------------------------------- /ui/src/components/settings/TwilioSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/settings/TwilioSettings.js -------------------------------------------------------------------------------- /ui/src/components/settings/UnsavedBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/settings/UnsavedBar.js -------------------------------------------------------------------------------- /ui/src/components/setup/SetupIntegrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/setup/SetupIntegrations.js -------------------------------------------------------------------------------- /ui/src/components/setup/SetupPayment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/setup/SetupPayment.js -------------------------------------------------------------------------------- /ui/src/components/setup/SetupTeamURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/setup/SetupTeamURL.js -------------------------------------------------------------------------------- /ui/src/components/setup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/components/setup/index.js -------------------------------------------------------------------------------- /ui/src/getPageContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/getPageContext.js -------------------------------------------------------------------------------- /ui/src/util/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/util/AuthService.js -------------------------------------------------------------------------------- /ui/src/util/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/util/api.js -------------------------------------------------------------------------------- /ui/src/util/authContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/util/authContext.js -------------------------------------------------------------------------------- /ui/src/util/conversationsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/util/conversationsContext.js -------------------------------------------------------------------------------- /ui/src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/src/util/index.js -------------------------------------------------------------------------------- /ui/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /ui/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /ui/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/apple-touch-icon.png -------------------------------------------------------------------------------- /ui/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/browserconfig.xml -------------------------------------------------------------------------------- /ui/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/favicon-16x16.png -------------------------------------------------------------------------------- /ui/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/favicon-32x32.png -------------------------------------------------------------------------------- /ui/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/favicon.ico -------------------------------------------------------------------------------- /ui/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/mstile-150x150.png -------------------------------------------------------------------------------- /ui/static/providers/twilio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/providers/twilio-logo.png -------------------------------------------------------------------------------- /ui/static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /ui/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreaminDani/anymessage/HEAD/ui/static/site.webmanifest --------------------------------------------------------------------------------