├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── scripts └── copy-build.js ├── src ├── events │ ├── event-source.ts │ ├── filters │ │ ├── characters-used.ts │ │ ├── index.ts │ │ └── pricing-tier.ts │ └── index.ts ├── firebot-extensions.d.ts ├── global.d.ts ├── google-api-error.ts ├── google-api.ts ├── google-tts-effect.ts ├── logger.ts ├── main.ts ├── types.ts ├── utils.ts ├── variables │ ├── index.ts │ └── tts-usage.ts └── voices.ts ├── tests └── main.test.ts ├── tsconfig.json └── webpack.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/copy-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/scripts/copy-build.js -------------------------------------------------------------------------------- /src/events/event-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/events/event-source.ts -------------------------------------------------------------------------------- /src/events/filters/characters-used.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/events/filters/characters-used.ts -------------------------------------------------------------------------------- /src/events/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/events/filters/index.ts -------------------------------------------------------------------------------- /src/events/filters/pricing-tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/events/filters/pricing-tier.ts -------------------------------------------------------------------------------- /src/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/events/index.ts -------------------------------------------------------------------------------- /src/firebot-extensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/firebot-extensions.d.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare const SCRIPTS_DIR: string; -------------------------------------------------------------------------------- /src/google-api-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/google-api-error.ts -------------------------------------------------------------------------------- /src/google-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/google-api.ts -------------------------------------------------------------------------------- /src/google-tts-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/google-tts-effect.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/variables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/variables/index.ts -------------------------------------------------------------------------------- /src/variables/tts-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/variables/tts-usage.ts -------------------------------------------------------------------------------- /src/voices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/src/voices.ts -------------------------------------------------------------------------------- /tests/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/tests/main.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyaapl/firebot-script-google-cloud-tts/HEAD/webpack.config.js --------------------------------------------------------------------------------