├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── issue_template.md ├── pull_request_template.md ├── stale.yml └── workflows │ ├── build-test.yml │ ├── deploy.yml │ └── integration-test.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── .releaserc ├── .secrets.baseline ├── .snyk ├── .travis.yml ├── BUG_BOUNTY.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── assistant ├── v1.ts └── v2.ts ├── auth └── index.ts ├── discovery └── v2.ts ├── docker ├── Dockerfile └── README.md ├── examples ├── README.md ├── assistant.v1.js ├── browserify │ ├── .env.example │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── .eslintrc │ │ ├── client.js │ │ └── index.html │ └── server.js ├── natural_language_understanding.v1.js ├── package-lock.json ├── package.json ├── resources │ ├── car.png │ ├── example.html │ ├── face.jpg │ ├── glossary.tmx │ ├── images.zip │ ├── problem.json │ ├── sample-docx.docx │ ├── speech.wav │ ├── watson-wikipedia.html │ └── weather_data_train.csv ├── speech_to_text.v1.js ├── text_to_speech.v1.js ├── text_to_speech_to_speakers.js ├── text_to_speech_websocket.js └── webpack │ ├── .env.example │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── .eslintrc │ ├── client.js │ └── index.html │ ├── server.js │ └── webpack.config.js ├── lib ├── common.ts ├── recognize-stream.ts ├── synthesize-stream.ts └── websocket-utils.ts ├── natural-language-understanding └── v1.ts ├── package.json ├── renovate.json ├── scripts ├── codemods │ ├── README.md │ └── transform.js ├── create_semver_tag.sh ├── jsdoc │ ├── config.json │ ├── generate_index_html.sh │ ├── publish.sh │ ├── publish_gha.sh │ └── template │ │ ├── README.md │ │ ├── publish.js │ │ ├── static │ │ ├── fonts │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ └── OpenSans-Regular-webfont.woff │ │ ├── scripts │ │ │ ├── linenumber.js │ │ │ └── prettify │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ ├── lang-css.js │ │ │ │ └── prettify.js │ │ └── styles │ │ │ ├── jsdoc-default.css │ │ │ ├── prettify-jsdoc.css │ │ │ └── prettify-tomorrow.css │ │ └── tmpl │ │ ├── augments.tmpl │ │ ├── container.tmpl │ │ ├── details.tmpl │ │ ├── example.tmpl │ │ ├── examples.tmpl │ │ ├── exceptions.tmpl │ │ ├── layout.tmpl │ │ ├── mainpage.tmpl │ │ ├── members.tmpl │ │ ├── method.tmpl │ │ ├── params.tmpl │ │ ├── properties.tmpl │ │ ├── returns.tmpl │ │ ├── source.tmpl │ │ ├── tutorial.tmpl │ │ └── type.tmpl ├── report_integration_test.js ├── typedoc │ ├── generate_typedoc.sh │ └── theme │ │ ├── assets │ │ ├── css │ │ │ ├── main.css │ │ │ └── main.css.map │ │ ├── images │ │ │ ├── icons.png │ │ │ ├── icons@2x.png │ │ │ ├── widgets.png │ │ │ └── widgets@2x.png │ │ └── js │ │ │ └── main.js │ │ ├── helpers │ │ ├── excluded-index-section.js │ │ └── excluded-nav-url.js │ │ ├── layouts │ │ └── default.hbs │ │ ├── partials │ │ ├── analytics.hbs │ │ ├── breadcrumb.hbs │ │ ├── comment.hbs │ │ ├── footer.hbs │ │ ├── header.hbs │ │ ├── hierarchy.hbs │ │ ├── index.hbs │ │ ├── member.declaration.hbs │ │ ├── member.getterSetter.hbs │ │ ├── member.hbs │ │ ├── member.signature.body.hbs │ │ ├── member.signature.title.hbs │ │ ├── member.signatures.hbs │ │ ├── member.sources.hbs │ │ ├── members.group.hbs │ │ ├── members.hbs │ │ ├── navigation.hbs │ │ ├── parameter.hbs │ │ ├── toc.hbs │ │ ├── toc.root.hbs │ │ ├── type.hbs │ │ ├── typeAndParent.hbs │ │ └── typeParameters.hbs │ │ └── templates │ │ ├── index.hbs │ │ └── reflection.hbs └── update-auth-file.sh ├── sdk.ts ├── secrets.tar.enc ├── speech-to-text ├── v1-generated.ts └── v1.ts ├── test ├── .eslintrc.js ├── integration │ ├── assistant.v1.test.js │ ├── assistant.v2.test.js │ ├── discovery.v2.test.js │ ├── speech-to-text.test.js │ └── text-to-speech.test.js ├── readme.md ├── resources │ ├── 183px-Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg │ ├── TestEnrichments.csv │ ├── TestTable.pdf │ ├── alchemy-text.txt │ ├── analyzeDocument.json │ ├── auth.example.js │ ├── auth.gha.js │ ├── auth_helper.js │ ├── blank.wav │ ├── car.png │ ├── confirm.abnf │ ├── contract_A.pdf │ ├── contract_B.pdf │ ├── dark.zip │ ├── discovery-sampleAddConf.json │ ├── discovery-sampleUpdateConf.json │ ├── glossary.tmx │ ├── ibm-credentials.env │ ├── light.zip │ ├── mobydick.txt │ ├── mock_solr_config_file.zip │ ├── natural_language_understanding │ │ ├── energy-policy.html │ │ └── sugary-drinks-children-cdc-study.txt │ ├── obama.jpg │ ├── obama2.jpg │ ├── potato.jpeg │ ├── ranker_test.csv │ ├── ranker_train.csv │ ├── sample1.webm │ ├── sampleHtml.htm │ ├── sampleHtml.html │ ├── sampleWord.docx │ ├── sampleWordWrongExtension.html │ ├── speech_to_text │ │ ├── corpus-full.txt │ │ ├── corpus-short-1.txt │ │ └── corpus-short-2.txt │ ├── stopwords.txt │ ├── tts_audio.wav │ ├── tweet.txt │ ├── unitTestUtils.js │ ├── watson-hi.ogg │ ├── weather.flac │ ├── weather.ogg │ ├── weather.wav │ └── weather_data_train.csv └── unit │ ├── assistant.v1.test.js │ ├── assistant.v2.test.js │ ├── discovery.v2.test.js │ ├── iam-token-manager.test.js │ ├── natural-language-understanding.v1.test.js │ ├── speech-helpers.test.js │ ├── speech-to-text.v1.test.js │ ├── text-to-speech.v1.test.js │ └── websocket-utils.test.js ├── text-to-speech ├── v1-generated.ts └── v1.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.releaserc -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.snyk -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUG_BOUNTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/BUG_BOUNTY.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/RELEASE.md -------------------------------------------------------------------------------- /assistant/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/assistant/v1.ts -------------------------------------------------------------------------------- /assistant/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/assistant/v2.ts -------------------------------------------------------------------------------- /auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/auth/index.ts -------------------------------------------------------------------------------- /discovery/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/discovery/v2.ts -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/docker/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/assistant.v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/assistant.v1.js -------------------------------------------------------------------------------- /examples/browserify/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/.env.example -------------------------------------------------------------------------------- /examples/browserify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/README.md -------------------------------------------------------------------------------- /examples/browserify/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/package-lock.json -------------------------------------------------------------------------------- /examples/browserify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/package.json -------------------------------------------------------------------------------- /examples/browserify/public/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/public/.eslintrc -------------------------------------------------------------------------------- /examples/browserify/public/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/public/client.js -------------------------------------------------------------------------------- /examples/browserify/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/public/index.html -------------------------------------------------------------------------------- /examples/browserify/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/browserify/server.js -------------------------------------------------------------------------------- /examples/natural_language_understanding.v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/natural_language_understanding.v1.js -------------------------------------------------------------------------------- /examples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/package-lock.json -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/resources/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/car.png -------------------------------------------------------------------------------- /examples/resources/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/example.html -------------------------------------------------------------------------------- /examples/resources/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/face.jpg -------------------------------------------------------------------------------- /examples/resources/glossary.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/glossary.tmx -------------------------------------------------------------------------------- /examples/resources/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/images.zip -------------------------------------------------------------------------------- /examples/resources/problem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/problem.json -------------------------------------------------------------------------------- /examples/resources/sample-docx.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/sample-docx.docx -------------------------------------------------------------------------------- /examples/resources/speech.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/speech.wav -------------------------------------------------------------------------------- /examples/resources/watson-wikipedia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/watson-wikipedia.html -------------------------------------------------------------------------------- /examples/resources/weather_data_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/resources/weather_data_train.csv -------------------------------------------------------------------------------- /examples/speech_to_text.v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/speech_to_text.v1.js -------------------------------------------------------------------------------- /examples/text_to_speech.v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/text_to_speech.v1.js -------------------------------------------------------------------------------- /examples/text_to_speech_to_speakers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/text_to_speech_to_speakers.js -------------------------------------------------------------------------------- /examples/text_to_speech_websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/text_to_speech_websocket.js -------------------------------------------------------------------------------- /examples/webpack/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/.env.example -------------------------------------------------------------------------------- /examples/webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/README.md -------------------------------------------------------------------------------- /examples/webpack/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/package-lock.json -------------------------------------------------------------------------------- /examples/webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/package.json -------------------------------------------------------------------------------- /examples/webpack/public/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/public/.eslintrc -------------------------------------------------------------------------------- /examples/webpack/public/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/public/client.js -------------------------------------------------------------------------------- /examples/webpack/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/public/index.html -------------------------------------------------------------------------------- /examples/webpack/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/server.js -------------------------------------------------------------------------------- /examples/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/examples/webpack/webpack.config.js -------------------------------------------------------------------------------- /lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/lib/common.ts -------------------------------------------------------------------------------- /lib/recognize-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/lib/recognize-stream.ts -------------------------------------------------------------------------------- /lib/synthesize-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/lib/synthesize-stream.ts -------------------------------------------------------------------------------- /lib/websocket-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/lib/websocket-utils.ts -------------------------------------------------------------------------------- /natural-language-understanding/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/natural-language-understanding/v1.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/codemods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/codemods/README.md -------------------------------------------------------------------------------- /scripts/codemods/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/codemods/transform.js -------------------------------------------------------------------------------- /scripts/create_semver_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/create_semver_tag.sh -------------------------------------------------------------------------------- /scripts/jsdoc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/config.json -------------------------------------------------------------------------------- /scripts/jsdoc/generate_index_html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/generate_index_html.sh -------------------------------------------------------------------------------- /scripts/jsdoc/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/publish.sh -------------------------------------------------------------------------------- /scripts/jsdoc/publish_gha.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/publish_gha.sh -------------------------------------------------------------------------------- /scripts/jsdoc/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/README.md -------------------------------------------------------------------------------- /scripts/jsdoc/template/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/publish.js -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/scripts/linenumber.js -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/styles/jsdoc-default.css -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /scripts/jsdoc/template/static/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/static/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/augments.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/augments.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/container.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/container.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/details.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/details.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/example.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/example.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/examples.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/examples.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/exceptions.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/exceptions.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/layout.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/mainpage.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/mainpage.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/members.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/members.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/method.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/params.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/params.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/properties.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/returns.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/returns.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/source.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/source.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/tutorial.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/tutorial.tmpl -------------------------------------------------------------------------------- /scripts/jsdoc/template/tmpl/type.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/jsdoc/template/tmpl/type.tmpl -------------------------------------------------------------------------------- /scripts/report_integration_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/report_integration_test.js -------------------------------------------------------------------------------- /scripts/typedoc/generate_typedoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/generate_typedoc.sh -------------------------------------------------------------------------------- /scripts/typedoc/theme/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/assets/css/main.css -------------------------------------------------------------------------------- /scripts/typedoc/theme/assets/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/assets/css/main.css.map -------------------------------------------------------------------------------- /scripts/typedoc/theme/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/assets/images/icons.png -------------------------------------------------------------------------------- /scripts/typedoc/theme/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/assets/images/icons@2x.png -------------------------------------------------------------------------------- /scripts/typedoc/theme/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/assets/images/widgets.png -------------------------------------------------------------------------------- /scripts/typedoc/theme/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /scripts/typedoc/theme/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/assets/js/main.js -------------------------------------------------------------------------------- /scripts/typedoc/theme/helpers/excluded-index-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/helpers/excluded-index-section.js -------------------------------------------------------------------------------- /scripts/typedoc/theme/helpers/excluded-nav-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/helpers/excluded-nav-url.js -------------------------------------------------------------------------------- /scripts/typedoc/theme/layouts/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/layouts/default.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/analytics.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/analytics.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/breadcrumb.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/breadcrumb.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/comment.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/comment.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/footer.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/header.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/hierarchy.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/hierarchy.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/index.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/member.declaration.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/member.declaration.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/member.getterSetter.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/member.getterSetter.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/member.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/member.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/member.signature.body.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/member.signature.body.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/member.signature.title.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/member.signature.title.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/member.signatures.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/member.signatures.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/member.sources.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/member.sources.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/members.group.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/members.group.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/members.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/members.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/navigation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/navigation.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/parameter.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/parameter.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/toc.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/toc.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/toc.root.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/toc.root.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/type.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/type.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/typeAndParent.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/typeAndParent.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/partials/typeParameters.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/partials/typeParameters.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/templates/index.hbs -------------------------------------------------------------------------------- /scripts/typedoc/theme/templates/reflection.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/typedoc/theme/templates/reflection.hbs -------------------------------------------------------------------------------- /scripts/update-auth-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/scripts/update-auth-file.sh -------------------------------------------------------------------------------- /sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/sdk.ts -------------------------------------------------------------------------------- /secrets.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/secrets.tar.enc -------------------------------------------------------------------------------- /speech-to-text/v1-generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/speech-to-text/v1-generated.ts -------------------------------------------------------------------------------- /speech-to-text/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/speech-to-text/v1.ts -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/integration/assistant.v1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/integration/assistant.v1.test.js -------------------------------------------------------------------------------- /test/integration/assistant.v2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/integration/assistant.v2.test.js -------------------------------------------------------------------------------- /test/integration/discovery.v2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/integration/discovery.v2.test.js -------------------------------------------------------------------------------- /test/integration/speech-to-text.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/integration/speech-to-text.test.js -------------------------------------------------------------------------------- /test/integration/text-to-speech.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/integration/text-to-speech.test.js -------------------------------------------------------------------------------- /test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/readme.md -------------------------------------------------------------------------------- /test/resources/183px-Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/183px-Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /test/resources/TestEnrichments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/TestEnrichments.csv -------------------------------------------------------------------------------- /test/resources/TestTable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/TestTable.pdf -------------------------------------------------------------------------------- /test/resources/alchemy-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/alchemy-text.txt -------------------------------------------------------------------------------- /test/resources/analyzeDocument.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/analyzeDocument.json -------------------------------------------------------------------------------- /test/resources/auth.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/auth.example.js -------------------------------------------------------------------------------- /test/resources/auth.gha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/auth.gha.js -------------------------------------------------------------------------------- /test/resources/auth_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/auth_helper.js -------------------------------------------------------------------------------- /test/resources/blank.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/blank.wav -------------------------------------------------------------------------------- /test/resources/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/car.png -------------------------------------------------------------------------------- /test/resources/confirm.abnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/confirm.abnf -------------------------------------------------------------------------------- /test/resources/contract_A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/contract_A.pdf -------------------------------------------------------------------------------- /test/resources/contract_B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/contract_B.pdf -------------------------------------------------------------------------------- /test/resources/dark.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/dark.zip -------------------------------------------------------------------------------- /test/resources/discovery-sampleAddConf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/discovery-sampleAddConf.json -------------------------------------------------------------------------------- /test/resources/discovery-sampleUpdateConf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/discovery-sampleUpdateConf.json -------------------------------------------------------------------------------- /test/resources/glossary.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/glossary.tmx -------------------------------------------------------------------------------- /test/resources/ibm-credentials.env: -------------------------------------------------------------------------------- 1 | TEST_USERNAME=123456789 2 | TEST_PASSWORD=abcd -------------------------------------------------------------------------------- /test/resources/light.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/light.zip -------------------------------------------------------------------------------- /test/resources/mobydick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/mobydick.txt -------------------------------------------------------------------------------- /test/resources/mock_solr_config_file.zip: -------------------------------------------------------------------------------- 1 | Mock Solr config file -------------------------------------------------------------------------------- /test/resources/natural_language_understanding/energy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/natural_language_understanding/energy-policy.html -------------------------------------------------------------------------------- /test/resources/natural_language_understanding/sugary-drinks-children-cdc-study.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/natural_language_understanding/sugary-drinks-children-cdc-study.txt -------------------------------------------------------------------------------- /test/resources/obama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/obama.jpg -------------------------------------------------------------------------------- /test/resources/obama2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/obama2.jpg -------------------------------------------------------------------------------- /test/resources/potato.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/potato.jpeg -------------------------------------------------------------------------------- /test/resources/ranker_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/ranker_test.csv -------------------------------------------------------------------------------- /test/resources/ranker_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/ranker_train.csv -------------------------------------------------------------------------------- /test/resources/sample1.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/sample1.webm -------------------------------------------------------------------------------- /test/resources/sampleHtml.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/sampleHtml.htm -------------------------------------------------------------------------------- /test/resources/sampleHtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/sampleHtml.html -------------------------------------------------------------------------------- /test/resources/sampleWord.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/sampleWord.docx -------------------------------------------------------------------------------- /test/resources/sampleWordWrongExtension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/sampleWordWrongExtension.html -------------------------------------------------------------------------------- /test/resources/speech_to_text/corpus-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/speech_to_text/corpus-full.txt -------------------------------------------------------------------------------- /test/resources/speech_to_text/corpus-short-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/speech_to_text/corpus-short-1.txt -------------------------------------------------------------------------------- /test/resources/speech_to_text/corpus-short-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/speech_to_text/corpus-short-2.txt -------------------------------------------------------------------------------- /test/resources/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/stopwords.txt -------------------------------------------------------------------------------- /test/resources/tts_audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/tts_audio.wav -------------------------------------------------------------------------------- /test/resources/tweet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/tweet.txt -------------------------------------------------------------------------------- /test/resources/unitTestUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/unitTestUtils.js -------------------------------------------------------------------------------- /test/resources/watson-hi.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/watson-hi.ogg -------------------------------------------------------------------------------- /test/resources/weather.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/weather.flac -------------------------------------------------------------------------------- /test/resources/weather.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/weather.ogg -------------------------------------------------------------------------------- /test/resources/weather.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/weather.wav -------------------------------------------------------------------------------- /test/resources/weather_data_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/resources/weather_data_train.csv -------------------------------------------------------------------------------- /test/unit/assistant.v1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/assistant.v1.test.js -------------------------------------------------------------------------------- /test/unit/assistant.v2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/assistant.v2.test.js -------------------------------------------------------------------------------- /test/unit/discovery.v2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/discovery.v2.test.js -------------------------------------------------------------------------------- /test/unit/iam-token-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/iam-token-manager.test.js -------------------------------------------------------------------------------- /test/unit/natural-language-understanding.v1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/natural-language-understanding.v1.test.js -------------------------------------------------------------------------------- /test/unit/speech-helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/speech-helpers.test.js -------------------------------------------------------------------------------- /test/unit/speech-to-text.v1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/speech-to-text.v1.test.js -------------------------------------------------------------------------------- /test/unit/text-to-speech.v1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/text-to-speech.v1.test.js -------------------------------------------------------------------------------- /test/unit/websocket-utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/test/unit/websocket-utils.test.js -------------------------------------------------------------------------------- /text-to-speech/v1-generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/text-to-speech/v1-generated.ts -------------------------------------------------------------------------------- /text-to-speech/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/text-to-speech/v1.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/node-sdk/HEAD/tslint.json --------------------------------------------------------------------------------