├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── .releaserc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appscan ├── ASOC.sh ├── Configfile ├── Makefile ├── app.json └── getJson.py ├── auth.js.enc ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package.json ├── packages ├── assistant-v1 │ ├── README.md │ ├── actions │ │ ├── create-counterexample.js │ │ ├── create-dialog-node.js │ │ ├── create-entity.js │ │ ├── create-example.js │ │ ├── create-intent.js │ │ ├── create-synonym.js │ │ ├── create-value.js │ │ ├── create-workspace.js │ │ ├── delete-counterexample.js │ │ ├── delete-dialog-node.js │ │ ├── delete-entity.js │ │ ├── delete-example.js │ │ ├── delete-intent.js │ │ ├── delete-synonym.js │ │ ├── delete-user-data.js │ │ ├── delete-value.js │ │ ├── delete-workspace.js │ │ ├── get-counterexample.js │ │ ├── get-dialog-node.js │ │ ├── get-entity.js │ │ ├── get-example.js │ │ ├── get-intent.js │ │ ├── get-synonym.js │ │ ├── get-value.js │ │ ├── get-workspace.js │ │ ├── list-all-logs.js │ │ ├── list-counterexamples.js │ │ ├── list-dialog-nodes.js │ │ ├── list-entities.js │ │ ├── list-examples.js │ │ ├── list-intents.js │ │ ├── list-logs.js │ │ ├── list-mentions.js │ │ ├── list-synonyms.js │ │ ├── list-values.js │ │ ├── list-workspaces.js │ │ ├── message.js │ │ ├── update-counterexample.js │ │ ├── update-dialog-node.js │ │ ├── update-entity.js │ │ ├── update-example.js │ │ ├── update-intent.js │ │ ├── update-synonym.js │ │ ├── update-value.js │ │ └── update-workspace.js │ └── manifest.yaml ├── assistant-v2 │ ├── README.md │ ├── actions │ │ ├── create-session.js │ │ ├── delete-session.js │ │ └── message.js │ └── manifest.yaml ├── conversation-v1 │ ├── README.md │ ├── actions │ │ ├── create-counterexample.js │ │ ├── create-dialog-node.js │ │ ├── create-entity.js │ │ ├── create-example.js │ │ ├── create-intent.js │ │ ├── create-synonym.js │ │ ├── create-value.js │ │ ├── create-workspace.js │ │ ├── delete-counterexample.js │ │ ├── delete-dialog-node.js │ │ ├── delete-entity.js │ │ ├── delete-example.js │ │ ├── delete-intent.js │ │ ├── delete-synonym.js │ │ ├── delete-user-data.js │ │ ├── delete-value.js │ │ ├── delete-workspace.js │ │ ├── get-counterexample.js │ │ ├── get-dialog-node.js │ │ ├── get-entity.js │ │ ├── get-example.js │ │ ├── get-intent.js │ │ ├── get-synonym.js │ │ ├── get-value.js │ │ ├── get-workspace.js │ │ ├── list-all-logs.js │ │ ├── list-counterexamples.js │ │ ├── list-dialog-nodes.js │ │ ├── list-entities.js │ │ ├── list-examples.js │ │ ├── list-intents.js │ │ ├── list-logs.js │ │ ├── list-mentions.js │ │ ├── list-synonyms.js │ │ ├── list-values.js │ │ ├── list-workspaces.js │ │ ├── message.js │ │ ├── update-counterexample.js │ │ ├── update-dialog-node.js │ │ ├── update-entity.js │ │ ├── update-example.js │ │ ├── update-intent.js │ │ ├── update-synonym.js │ │ ├── update-value.js │ │ └── update-workspace.js │ └── manifest.yaml ├── discovery-v1 │ ├── README.md │ ├── actions │ │ ├── add-document.js │ │ ├── add-training-data.js │ │ ├── create-collection.js │ │ ├── create-configuration.js │ │ ├── create-credentials.js │ │ ├── create-environment.js │ │ ├── create-event.js │ │ ├── create-expansions.js │ │ ├── create-tokenization-dictionary.js │ │ ├── create-training-example.js │ │ ├── delete-all-training-data.js │ │ ├── delete-collection.js │ │ ├── delete-configuration.js │ │ ├── delete-credentials.js │ │ ├── delete-document.js │ │ ├── delete-environment.js │ │ ├── delete-expansions.js │ │ ├── delete-tokenization-dictionary.js │ │ ├── delete-training-data.js │ │ ├── delete-training-example.js │ │ ├── delete-user-data.js │ │ ├── federated-query-notices.js │ │ ├── federated-query.js │ │ ├── get-collection.js │ │ ├── get-configuration.js │ │ ├── get-credentials.js │ │ ├── get-document-status.js │ │ ├── get-environment.js │ │ ├── get-metrics-event-rate.js │ │ ├── get-metrics-query-event.js │ │ ├── get-metrics-query-no-results.js │ │ ├── get-metrics-query-token-event.js │ │ ├── get-metrics-query.js │ │ ├── get-tokenization-dictionary-status.js │ │ ├── get-training-data.js │ │ ├── get-training-example.js │ │ ├── list-collection-fields.js │ │ ├── list-collections.js │ │ ├── list-configurations.js │ │ ├── list-credentials.js │ │ ├── list-environments.js │ │ ├── list-expansions.js │ │ ├── list-fields.js │ │ ├── list-training-data.js │ │ ├── list-training-examples.js │ │ ├── query-entities.js │ │ ├── query-log.js │ │ ├── query-notices.js │ │ ├── query-relations.js │ │ ├── query.js │ │ ├── test-configuration-in-environment.js │ │ ├── update-collection.js │ │ ├── update-configuration.js │ │ ├── update-credentials.js │ │ ├── update-document.js │ │ ├── update-environment.js │ │ └── update-training-example.js │ └── manifest.yaml ├── language-translator-v2 │ ├── README.md │ ├── actions │ │ ├── create-model.js │ │ ├── delete-model.js │ │ ├── get-model.js │ │ ├── identify.js │ │ ├── list-identifiable-languages.js │ │ ├── list-models.js │ │ └── translate.js │ └── manifest.yaml ├── language-translator-v3 │ ├── README.md │ ├── actions │ │ ├── create-model.js │ │ ├── delete-model.js │ │ ├── get-model.js │ │ ├── identify.js │ │ ├── list-identifiable-languages.js │ │ ├── list-models.js │ │ └── translate.js │ └── manifest.yaml ├── natural-language-classifier-v1 │ ├── README.md │ ├── actions │ │ ├── classify-collection.js │ │ ├── classify.js │ │ ├── create-classifier.js │ │ ├── delete-classifier.js │ │ ├── get-classifier.js │ │ └── list-classifiers.js │ └── manifest.yaml ├── natural-language-understanding-v1 │ ├── README.md │ ├── actions │ │ ├── analyze.js │ │ ├── delete-model.js │ │ └── list-models.js │ └── manifest.yaml ├── personality-insights-v3 │ ├── README.md │ ├── actions │ │ ├── profile-as-csv.js │ │ └── profile.js │ └── manifest.yaml ├── speech-to-text-v1 │ ├── README.md │ ├── actions │ │ ├── add-audio.js │ │ ├── add-corpus.js │ │ ├── add-word.js │ │ ├── add-words.js │ │ ├── check-job.js │ │ ├── check-jobs.js │ │ ├── create-acoustic-model.js │ │ ├── create-job.js │ │ ├── create-language-model.js │ │ ├── delete-acoustic-model.js │ │ ├── delete-audio.js │ │ ├── delete-corpus.js │ │ ├── delete-job.js │ │ ├── delete-language-model.js │ │ ├── delete-user-data.js │ │ ├── delete-word.js │ │ ├── get-acoustic-model.js │ │ ├── get-audio.js │ │ ├── get-corpus.js │ │ ├── get-language-model.js │ │ ├── get-model.js │ │ ├── get-word.js │ │ ├── list-acoustic-models.js │ │ ├── list-audio.js │ │ ├── list-corpora.js │ │ ├── list-language-models.js │ │ ├── list-models.js │ │ ├── list-words.js │ │ ├── recognize.js │ │ ├── register-callback.js │ │ ├── reset-acoustic-model.js │ │ ├── reset-language-model.js │ │ ├── train-acoustic-model.js │ │ ├── train-language-model.js │ │ ├── unregister-callback.js │ │ ├── upgrade-acoustic-model.js │ │ └── upgrade-language-model.js │ └── manifest.yaml ├── text-to-speech-v1 │ ├── README.md │ ├── actions │ │ ├── add-word.js │ │ ├── add-words.js │ │ ├── create-voice-model.js │ │ ├── delete-user-data.js │ │ ├── delete-voice-model.js │ │ ├── delete-word.js │ │ ├── get-pronunciation.js │ │ ├── get-voice-model.js │ │ ├── get-voice.js │ │ ├── get-word.js │ │ ├── list-voice-models.js │ │ ├── list-voices.js │ │ ├── list-words.js │ │ ├── synthesize.js │ │ └── update-voice-model.js │ └── manifest.yaml ├── tone-analyzer-v3 │ ├── README.md │ ├── actions │ │ ├── tone-chat.js │ │ └── tone.js │ └── manifest.yaml └── visual-recognition-v3 │ ├── README.md │ ├── actions │ ├── classify.js │ ├── create-classifier.js │ ├── delete-classifier.js │ ├── delete-user-data.js │ ├── detect-faces.js │ ├── get-classifier.js │ ├── get-core-ml-model.js │ ├── list-classifiers.js │ └── update-classifier.js │ └── manifest.yaml ├── settings.gradle ├── tests ├── .eslintrc.yml ├── actions │ ├── assistant-v1 │ │ ├── create-counterexample.test.js │ │ ├── create-dialog-node.test.js │ │ ├── create-entity.test.js │ │ ├── create-example.test.js │ │ ├── create-intent.test.js │ │ ├── create-synonym.test.js │ │ ├── create-value.test.js │ │ ├── create-workspace.test.js │ │ ├── delete-counterexample.test.js │ │ ├── delete-dialog-node.test.js │ │ ├── delete-entity.test.js │ │ ├── delete-example.test.js │ │ ├── delete-intent.test.js │ │ ├── delete-synonym.test.js │ │ ├── delete-value.test.js │ │ ├── delete-workspace.test.js │ │ ├── get-counterexample.test.js │ │ ├── get-dialog-node.test.js │ │ ├── get-entity.test.js │ │ ├── get-example.test.js │ │ ├── get-intent.test.js │ │ ├── get-synonym.test.js │ │ ├── get-value.test.js │ │ ├── get-workspace.test.js │ │ ├── list-all-logs.test.js │ │ ├── list-counterexamples.test.js │ │ ├── list-dialog-nodes.test.js │ │ ├── list-entities.test.js │ │ ├── list-examples.test.js │ │ ├── list-intents.test.js │ │ ├── list-logs.test.js │ │ ├── list-synonyms.test.js │ │ ├── list-values.test.js │ │ ├── list-workspaces.test.js │ │ ├── message.test.js │ │ ├── update-counterexample.test.js │ │ ├── update-dialog-node.test.js │ │ ├── update-entity.test.js │ │ ├── update-example.test.js │ │ ├── update-intent.test.js │ │ ├── update-synonym.test.js │ │ ├── update-value.test.js │ │ └── update-workspace.test.js │ ├── assistant-v2 │ │ ├── create-session.test.js │ │ ├── delete-session.test.js │ │ └── message.test.js │ ├── conversation-v1 │ │ ├── create-counterexample.test.js │ │ ├── create-dialog-node.test.js │ │ ├── create-entity.test.js │ │ ├── create-example.test.js │ │ ├── create-intent.test.js │ │ ├── create-synonym.test.js │ │ ├── create-value.test.js │ │ ├── create-workspace.test.js │ │ ├── delete-counterexample.test.js │ │ ├── delete-dialog-node.test.js │ │ ├── delete-entity.test.js │ │ ├── delete-example.test.js │ │ ├── delete-intent.test.js │ │ ├── delete-synonym.test.js │ │ ├── delete-value.test.js │ │ ├── delete-workspace.test.js │ │ ├── get-counterexample.test.js │ │ ├── get-dialog-node.test.js │ │ ├── get-entity.test.js │ │ ├── get-example.test.js │ │ ├── get-intent.test.js │ │ ├── get-synonym.test.js │ │ ├── get-value.test.js │ │ ├── get-workspace.test.js │ │ ├── list-all-logs.test.js │ │ ├── list-counterexamples.test.js │ │ ├── list-dialog-nodes.test.js │ │ ├── list-entities.test.js │ │ ├── list-examples.test.js │ │ ├── list-intents.test.js │ │ ├── list-logs.test.js │ │ ├── list-synonyms.test.js │ │ ├── list-values.test.js │ │ ├── list-workspaces.test.js │ │ ├── message.test.js │ │ ├── update-counterexample.test.js │ │ ├── update-dialog-node.test.js │ │ ├── update-entity.test.js │ │ ├── update-example.test.js │ │ ├── update-intent.test.js │ │ ├── update-synonym.test.js │ │ ├── update-value.test.js │ │ └── update-workspace.test.js │ ├── discovery-v1 │ │ ├── add-document.test.js │ │ ├── add-training-data.test.js │ │ ├── create-collection.test.js │ │ ├── create-configuration.test.js │ │ ├── create-environment.test.js │ │ ├── create-event.test.js │ │ ├── create-tokenization-dictionary.test.js │ │ ├── create-training-example.test.js │ │ ├── delete-tokenization-dictionary.test.js │ │ ├── federated-query-notices.test.js │ │ ├── federated-query.test.js │ │ ├── get-collection.test.js │ │ ├── get-configuration.test.js │ │ ├── get-document-status.test.js │ │ ├── get-environment.test.js │ │ ├── get-metrics-event-rate.test.js │ │ ├── get-metrics-query-event.test.js │ │ ├── get-metrics-query-no-results.test.js │ │ ├── get-metrics-query-token-event.test.js │ │ ├── get-metrics-query.test.js │ │ ├── get-tokenization-dictionary-status.test.js │ │ ├── get-training-data.test.js │ │ ├── get-training-example.test.js │ │ ├── list-collection-fields.test.js │ │ ├── list-collections.test.js │ │ ├── list-configurations.test.js │ │ ├── list-environments.test.js │ │ ├── list-fields.test.js │ │ ├── list-training-data.test.js │ │ ├── list-training-examples.test.js │ │ ├── query-entities.test.js │ │ ├── query-relations.test.js │ │ ├── query.test.js │ │ ├── update-collection.test.js │ │ ├── update-configuration.test.js │ │ ├── update-document.test.js │ │ ├── update-environment.test.js │ │ └── update-training-example.test.js │ ├── language-translator-v2 │ │ ├── identify.test.js │ │ ├── list-identifiable-languages.js │ │ ├── list-models.test.js │ │ └── translate.test.js │ ├── natural-language-classifier-v1 │ │ ├── classify.test.js │ │ ├── create-classifier.test.js │ │ ├── delete-classifier.test.js │ │ ├── get-classifier.test.js │ │ └── list-classifier.test.js │ ├── natural-language-understanding-v1 │ │ ├── analyze.test.js │ │ ├── delete-model.test.js │ │ └── list-models.test.js │ ├── personality-insights-v3 │ │ └── profile.test.js │ ├── speech-to-text-v1 │ │ ├── add-word.test.js │ │ └── add-words.test.js │ ├── text-to-speech-v1 │ │ ├── add-word.test.js │ │ ├── add-words.test.js │ │ ├── create-voice-model.test.js │ │ ├── delete-voice-model.test.js │ │ ├── delete-word.test.js │ │ ├── get-pronunciation.test.js │ │ ├── get-voice-model.test.js │ │ ├── get-voice.test.js │ │ ├── get-word.test.js │ │ ├── list-voice-models.test.js │ │ ├── list-voices.test.js │ │ ├── list-words.test.js │ │ ├── synthesize.test.js │ │ └── update-voice-model.test.js │ ├── tone-analyzer-v3 │ │ ├── tone-chat.test.js │ │ └── tone.test.js │ └── visual-recognition-v3 │ │ ├── classify.test.js │ │ ├── create-classifier.test.js │ │ ├── delete-classifier.test.js │ │ ├── detect-faces.test.js │ │ ├── get-classifier.test.js │ │ ├── list-classifiers.test.js │ │ ├── service-bind.test.js │ │ └── update-classifier.test.js ├── build.gradle ├── resources │ ├── auth-helper.js │ ├── discovery_document.txt │ ├── nlc_metadata.txt │ ├── nlc_training_data.txt │ ├── personality_insights_content.txt │ ├── test-helper.js │ └── vr_images_file.txt └── src │ └── test │ └── scala │ ├── packages │ ├── AssistantV1Tests.scala │ ├── AssistantV2Tests.scala │ ├── DiscoveryV1Tests.scala │ ├── LanguageTranslatorV2Tests.scala │ ├── LanguageTranslatorV3Tests.scala │ ├── NaturalLanguageClassifierV1Tests.scala │ ├── NaturalLanguageUnderstandingV1Tests.scala │ ├── PersonalityInsightsV3Tests.scala │ ├── SpeechToTextV1Tests.scala │ ├── TextToSpeechV1Tests.scala │ ├── ToneAnalyzerV3Tests.scala │ └── VisualRecognitionV3Tests.scala │ └── utils │ └── WatsonPackages.scala └── tools └── travis ├── build.sh ├── deploy.sh ├── deploy_openwhisk_sdk.sh ├── setup.sh └── test.sh /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | tests/resources 4 | dist -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/.releaserc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/README.md -------------------------------------------------------------------------------- /appscan/ASOC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/appscan/ASOC.sh -------------------------------------------------------------------------------- /appscan/Configfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/appscan/Configfile -------------------------------------------------------------------------------- /appscan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/appscan/Makefile -------------------------------------------------------------------------------- /appscan/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/appscan/app.json -------------------------------------------------------------------------------- /appscan/getJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/appscan/getJson.py -------------------------------------------------------------------------------- /auth.js.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/auth.js.enc -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/gradlew.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/package.json -------------------------------------------------------------------------------- /packages/assistant-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/README.md -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-counterexample.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-dialog-node.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-entity.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-example.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-intent.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-synonym.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-value.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/create-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/create-workspace.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-counterexample.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-dialog-node.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-entity.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-example.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-intent.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-synonym.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-user-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-user-data.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-value.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/delete-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/delete-workspace.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-counterexample.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-dialog-node.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-entity.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-example.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-intent.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-synonym.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-value.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/get-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/get-workspace.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-all-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-all-logs.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-counterexamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-counterexamples.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-dialog-nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-dialog-nodes.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-entities.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-examples.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-intents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-intents.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-logs.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-mentions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-mentions.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-synonyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-synonyms.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-values.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/list-workspaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/list-workspaces.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/message.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-counterexample.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-dialog-node.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-entity.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-example.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-intent.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-synonym.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-value.js -------------------------------------------------------------------------------- /packages/assistant-v1/actions/update-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/actions/update-workspace.js -------------------------------------------------------------------------------- /packages/assistant-v1/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v1/manifest.yaml -------------------------------------------------------------------------------- /packages/assistant-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v2/README.md -------------------------------------------------------------------------------- /packages/assistant-v2/actions/create-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v2/actions/create-session.js -------------------------------------------------------------------------------- /packages/assistant-v2/actions/delete-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v2/actions/delete-session.js -------------------------------------------------------------------------------- /packages/assistant-v2/actions/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v2/actions/message.js -------------------------------------------------------------------------------- /packages/assistant-v2/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/assistant-v2/manifest.yaml -------------------------------------------------------------------------------- /packages/conversation-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/README.md -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-counterexample.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-dialog-node.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-entity.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-example.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-intent.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-synonym.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-value.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/create-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/create-workspace.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-counterexample.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-dialog-node.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-entity.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-example.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-intent.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-synonym.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-user-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-user-data.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-value.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/delete-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/delete-workspace.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-counterexample.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-dialog-node.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-entity.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-example.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-intent.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-synonym.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-value.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/get-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/get-workspace.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-all-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-all-logs.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-counterexamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-counterexamples.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-dialog-nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-dialog-nodes.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-entities.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-examples.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-intents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-intents.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-logs.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-mentions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-mentions.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-synonyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-synonyms.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-values.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/list-workspaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/list-workspaces.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/message.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-counterexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-counterexample.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-dialog-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-dialog-node.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-entity.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-example.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-intent.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-synonym.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-value.js -------------------------------------------------------------------------------- /packages/conversation-v1/actions/update-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/actions/update-workspace.js -------------------------------------------------------------------------------- /packages/conversation-v1/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/conversation-v1/manifest.yaml -------------------------------------------------------------------------------- /packages/discovery-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/README.md -------------------------------------------------------------------------------- /packages/discovery-v1/actions/add-document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/add-document.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/add-training-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/add-training-data.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-collection.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-configuration.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-credentials.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-environment.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-event.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-expansions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-expansions.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-tokenization-dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-tokenization-dictionary.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/create-training-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/create-training-example.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-all-training-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-all-training-data.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-collection.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-configuration.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-credentials.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-document.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-environment.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-expansions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-expansions.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-tokenization-dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-tokenization-dictionary.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-training-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-training-data.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-training-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-training-example.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/delete-user-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/delete-user-data.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/federated-query-notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/federated-query-notices.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/federated-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/federated-query.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-collection.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-configuration.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-credentials.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-document-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-document-status.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-environment.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-metrics-event-rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-metrics-event-rate.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-metrics-query-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-metrics-query-event.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-metrics-query-no-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-metrics-query-no-results.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-metrics-query-token-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-metrics-query-token-event.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-metrics-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-metrics-query.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-tokenization-dictionary-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-tokenization-dictionary-status.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-training-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-training-data.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/get-training-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/get-training-example.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-collection-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-collection-fields.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-collections.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-configurations.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-credentials.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-environments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-environments.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-expansions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-expansions.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-fields.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-training-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-training-data.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/list-training-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/list-training-examples.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/query-entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/query-entities.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/query-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/query-log.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/query-notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/query-notices.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/query-relations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/query-relations.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/query.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/test-configuration-in-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/test-configuration-in-environment.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/update-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/update-collection.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/update-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/update-configuration.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/update-credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/update-credentials.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/update-document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/update-document.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/update-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/update-environment.js -------------------------------------------------------------------------------- /packages/discovery-v1/actions/update-training-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/actions/update-training-example.js -------------------------------------------------------------------------------- /packages/discovery-v1/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/discovery-v1/manifest.yaml -------------------------------------------------------------------------------- /packages/language-translator-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/README.md -------------------------------------------------------------------------------- /packages/language-translator-v2/actions/create-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/actions/create-model.js -------------------------------------------------------------------------------- /packages/language-translator-v2/actions/delete-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/actions/delete-model.js -------------------------------------------------------------------------------- /packages/language-translator-v2/actions/get-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/actions/get-model.js -------------------------------------------------------------------------------- /packages/language-translator-v2/actions/identify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/actions/identify.js -------------------------------------------------------------------------------- /packages/language-translator-v2/actions/list-identifiable-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/actions/list-identifiable-languages.js -------------------------------------------------------------------------------- /packages/language-translator-v2/actions/list-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/actions/list-models.js -------------------------------------------------------------------------------- /packages/language-translator-v2/actions/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/actions/translate.js -------------------------------------------------------------------------------- /packages/language-translator-v2/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v2/manifest.yaml -------------------------------------------------------------------------------- /packages/language-translator-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/README.md -------------------------------------------------------------------------------- /packages/language-translator-v3/actions/create-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/actions/create-model.js -------------------------------------------------------------------------------- /packages/language-translator-v3/actions/delete-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/actions/delete-model.js -------------------------------------------------------------------------------- /packages/language-translator-v3/actions/get-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/actions/get-model.js -------------------------------------------------------------------------------- /packages/language-translator-v3/actions/identify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/actions/identify.js -------------------------------------------------------------------------------- /packages/language-translator-v3/actions/list-identifiable-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/actions/list-identifiable-languages.js -------------------------------------------------------------------------------- /packages/language-translator-v3/actions/list-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/actions/list-models.js -------------------------------------------------------------------------------- /packages/language-translator-v3/actions/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/actions/translate.js -------------------------------------------------------------------------------- /packages/language-translator-v3/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/language-translator-v3/manifest.yaml -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/README.md -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/actions/classify-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/actions/classify-collection.js -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/actions/classify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/actions/classify.js -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/actions/create-classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/actions/create-classifier.js -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/actions/delete-classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/actions/delete-classifier.js -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/actions/get-classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/actions/get-classifier.js -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/actions/list-classifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/actions/list-classifiers.js -------------------------------------------------------------------------------- /packages/natural-language-classifier-v1/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-classifier-v1/manifest.yaml -------------------------------------------------------------------------------- /packages/natural-language-understanding-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-understanding-v1/README.md -------------------------------------------------------------------------------- /packages/natural-language-understanding-v1/actions/analyze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-understanding-v1/actions/analyze.js -------------------------------------------------------------------------------- /packages/natural-language-understanding-v1/actions/delete-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-understanding-v1/actions/delete-model.js -------------------------------------------------------------------------------- /packages/natural-language-understanding-v1/actions/list-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-understanding-v1/actions/list-models.js -------------------------------------------------------------------------------- /packages/natural-language-understanding-v1/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/natural-language-understanding-v1/manifest.yaml -------------------------------------------------------------------------------- /packages/personality-insights-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/personality-insights-v3/README.md -------------------------------------------------------------------------------- /packages/personality-insights-v3/actions/profile-as-csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/personality-insights-v3/actions/profile-as-csv.js -------------------------------------------------------------------------------- /packages/personality-insights-v3/actions/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/personality-insights-v3/actions/profile.js -------------------------------------------------------------------------------- /packages/personality-insights-v3/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/personality-insights-v3/manifest.yaml -------------------------------------------------------------------------------- /packages/speech-to-text-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/README.md -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/add-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/add-audio.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/add-corpus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/add-corpus.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/add-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/add-word.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/add-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/add-words.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/check-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/check-job.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/check-jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/check-jobs.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/create-acoustic-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/create-acoustic-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/create-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/create-job.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/create-language-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/create-language-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/delete-acoustic-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/delete-acoustic-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/delete-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/delete-audio.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/delete-corpus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/delete-corpus.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/delete-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/delete-job.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/delete-language-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/delete-language-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/delete-user-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/delete-user-data.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/delete-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/delete-word.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/get-acoustic-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/get-acoustic-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/get-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/get-audio.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/get-corpus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/get-corpus.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/get-language-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/get-language-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/get-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/get-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/get-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/get-word.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/list-acoustic-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/list-acoustic-models.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/list-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/list-audio.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/list-corpora.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/list-corpora.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/list-language-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/list-language-models.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/list-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/list-models.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/list-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/list-words.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/recognize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/recognize.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/register-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/register-callback.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/reset-acoustic-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/reset-acoustic-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/reset-language-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/reset-language-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/train-acoustic-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/train-acoustic-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/train-language-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/train-language-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/unregister-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/unregister-callback.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/upgrade-acoustic-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/upgrade-acoustic-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/actions/upgrade-language-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/actions/upgrade-language-model.js -------------------------------------------------------------------------------- /packages/speech-to-text-v1/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/speech-to-text-v1/manifest.yaml -------------------------------------------------------------------------------- /packages/text-to-speech-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/README.md -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/add-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/add-word.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/add-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/add-words.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/create-voice-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/create-voice-model.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/delete-user-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/delete-user-data.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/delete-voice-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/delete-voice-model.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/delete-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/delete-word.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/get-pronunciation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/get-pronunciation.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/get-voice-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/get-voice-model.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/get-voice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/get-voice.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/get-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/get-word.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/list-voice-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/list-voice-models.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/list-voices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/list-voices.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/list-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/list-words.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/synthesize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/synthesize.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/actions/update-voice-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/actions/update-voice-model.js -------------------------------------------------------------------------------- /packages/text-to-speech-v1/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/text-to-speech-v1/manifest.yaml -------------------------------------------------------------------------------- /packages/tone-analyzer-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/tone-analyzer-v3/README.md -------------------------------------------------------------------------------- /packages/tone-analyzer-v3/actions/tone-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/tone-analyzer-v3/actions/tone-chat.js -------------------------------------------------------------------------------- /packages/tone-analyzer-v3/actions/tone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/tone-analyzer-v3/actions/tone.js -------------------------------------------------------------------------------- /packages/tone-analyzer-v3/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/tone-analyzer-v3/manifest.yaml -------------------------------------------------------------------------------- /packages/visual-recognition-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/README.md -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/classify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/classify.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/create-classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/create-classifier.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/delete-classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/delete-classifier.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/delete-user-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/delete-user-data.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/detect-faces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/detect-faces.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/get-classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/get-classifier.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/get-core-ml-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/get-core-ml-model.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/list-classifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/list-classifiers.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/actions/update-classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/actions/update-classifier.js -------------------------------------------------------------------------------- /packages/visual-recognition-v3/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/packages/visual-recognition-v3/manifest.yaml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/settings.gradle -------------------------------------------------------------------------------- /tests/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/.eslintrc.yml -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-entity.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-example.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-intent.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-value.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/create-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/create-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-entity.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-example.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-intent.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-value.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/delete-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/delete-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-entity.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-example.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-intent.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-value.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/get-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/get-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-all-logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-all-logs.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-counterexamples.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-counterexamples.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-dialog-nodes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-dialog-nodes.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-entities.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-entities.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-examples.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-examples.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-intents.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-intents.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-logs.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-synonyms.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-synonyms.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-values.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-values.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/list-workspaces.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/list-workspaces.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/message.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/message.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-entity.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-example.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-intent.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-value.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v1/update-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v1/update-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v2/create-session.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v2/create-session.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v2/delete-session.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v2/delete-session.test.js -------------------------------------------------------------------------------- /tests/actions/assistant-v2/message.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/assistant-v2/message.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-entity.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-example.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-intent.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-value.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/create-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/create-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-entity.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-example.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-intent.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-value.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/delete-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/delete-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-entity.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-example.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-intent.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-value.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/get-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/get-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-all-logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-all-logs.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-counterexamples.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-counterexamples.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-dialog-nodes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-dialog-nodes.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-entities.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-entities.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-examples.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-examples.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-intents.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-intents.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-logs.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-synonyms.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-synonyms.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-values.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-values.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/list-workspaces.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/list-workspaces.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/message.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/message.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-counterexample.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-counterexample.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-dialog-node.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-dialog-node.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-entity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-entity.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-example.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-intent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-intent.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-synonym.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-synonym.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-value.test.js -------------------------------------------------------------------------------- /tests/actions/conversation-v1/update-workspace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/conversation-v1/update-workspace.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/add-document.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/add-document.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/add-training-data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/add-training-data.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/create-collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/create-collection.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/create-configuration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/create-configuration.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/create-environment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/create-environment.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/create-event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/create-event.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/create-tokenization-dictionary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/create-tokenization-dictionary.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/create-training-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/create-training-example.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/delete-tokenization-dictionary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/delete-tokenization-dictionary.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/federated-query-notices.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/federated-query-notices.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/federated-query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/federated-query.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-collection.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-configuration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-configuration.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-document-status.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-document-status.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-environment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-environment.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-metrics-event-rate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-metrics-event-rate.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-metrics-query-event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-metrics-query-event.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-metrics-query-no-results.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-metrics-query-no-results.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-metrics-query-token-event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-metrics-query-token-event.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-metrics-query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-metrics-query.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-tokenization-dictionary-status.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-tokenization-dictionary-status.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-training-data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-training-data.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/get-training-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/get-training-example.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/list-collection-fields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/list-collection-fields.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/list-collections.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/list-collections.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/list-configurations.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/list-configurations.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/list-environments.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/list-environments.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/list-fields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/list-fields.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/list-training-data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/list-training-data.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/list-training-examples.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/list-training-examples.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/query-entities.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/query-entities.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/query-relations.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/query-relations.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/query.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/update-collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/update-collection.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/update-configuration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/update-configuration.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/update-document.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/update-document.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/update-environment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/update-environment.test.js -------------------------------------------------------------------------------- /tests/actions/discovery-v1/update-training-example.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/discovery-v1/update-training-example.test.js -------------------------------------------------------------------------------- /tests/actions/language-translator-v2/identify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/language-translator-v2/identify.test.js -------------------------------------------------------------------------------- /tests/actions/language-translator-v2/list-identifiable-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/language-translator-v2/list-identifiable-languages.js -------------------------------------------------------------------------------- /tests/actions/language-translator-v2/list-models.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/language-translator-v2/list-models.test.js -------------------------------------------------------------------------------- /tests/actions/language-translator-v2/translate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/language-translator-v2/translate.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-classifier-v1/classify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-classifier-v1/classify.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-classifier-v1/create-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-classifier-v1/create-classifier.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-classifier-v1/delete-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-classifier-v1/delete-classifier.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-classifier-v1/get-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-classifier-v1/get-classifier.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-classifier-v1/list-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-classifier-v1/list-classifier.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-understanding-v1/analyze.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-understanding-v1/analyze.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-understanding-v1/delete-model.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-understanding-v1/delete-model.test.js -------------------------------------------------------------------------------- /tests/actions/natural-language-understanding-v1/list-models.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/natural-language-understanding-v1/list-models.test.js -------------------------------------------------------------------------------- /tests/actions/personality-insights-v3/profile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/personality-insights-v3/profile.test.js -------------------------------------------------------------------------------- /tests/actions/speech-to-text-v1/add-word.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/speech-to-text-v1/add-word.test.js -------------------------------------------------------------------------------- /tests/actions/speech-to-text-v1/add-words.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/speech-to-text-v1/add-words.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/add-word.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/add-word.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/add-words.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/add-words.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/create-voice-model.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/create-voice-model.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/delete-voice-model.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/delete-voice-model.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/delete-word.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/delete-word.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/get-pronunciation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/get-pronunciation.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/get-voice-model.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/get-voice-model.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/get-voice.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/get-voice.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/get-word.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/get-word.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/list-voice-models.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/list-voice-models.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/list-voices.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/list-voices.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/list-words.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/list-words.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/synthesize.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/synthesize.test.js -------------------------------------------------------------------------------- /tests/actions/text-to-speech-v1/update-voice-model.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/text-to-speech-v1/update-voice-model.test.js -------------------------------------------------------------------------------- /tests/actions/tone-analyzer-v3/tone-chat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/tone-analyzer-v3/tone-chat.test.js -------------------------------------------------------------------------------- /tests/actions/tone-analyzer-v3/tone.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/tone-analyzer-v3/tone.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/classify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/classify.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/create-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/create-classifier.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/delete-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/delete-classifier.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/detect-faces.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/detect-faces.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/get-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/get-classifier.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/list-classifiers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/list-classifiers.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/service-bind.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/service-bind.test.js -------------------------------------------------------------------------------- /tests/actions/visual-recognition-v3/update-classifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/actions/visual-recognition-v3/update-classifier.test.js -------------------------------------------------------------------------------- /tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/build.gradle -------------------------------------------------------------------------------- /tests/resources/auth-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/resources/auth-helper.js -------------------------------------------------------------------------------- /tests/resources/discovery_document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/resources/discovery_document.txt -------------------------------------------------------------------------------- /tests/resources/nlc_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/resources/nlc_metadata.txt -------------------------------------------------------------------------------- /tests/resources/nlc_training_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/resources/nlc_training_data.txt -------------------------------------------------------------------------------- /tests/resources/personality_insights_content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/resources/personality_insights_content.txt -------------------------------------------------------------------------------- /tests/resources/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/resources/test-helper.js -------------------------------------------------------------------------------- /tests/resources/vr_images_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/resources/vr_images_file.txt -------------------------------------------------------------------------------- /tests/src/test/scala/packages/AssistantV1Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/AssistantV1Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/AssistantV2Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/AssistantV2Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/DiscoveryV1Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/DiscoveryV1Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/LanguageTranslatorV2Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/LanguageTranslatorV2Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/LanguageTranslatorV3Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/LanguageTranslatorV3Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/NaturalLanguageClassifierV1Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/NaturalLanguageClassifierV1Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/NaturalLanguageUnderstandingV1Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/NaturalLanguageUnderstandingV1Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/PersonalityInsightsV3Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/PersonalityInsightsV3Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/SpeechToTextV1Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/SpeechToTextV1Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/TextToSpeechV1Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/TextToSpeechV1Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/ToneAnalyzerV3Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/ToneAnalyzerV3Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/packages/VisualRecognitionV3Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/packages/VisualRecognitionV3Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/utils/WatsonPackages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tests/src/test/scala/utils/WatsonPackages.scala -------------------------------------------------------------------------------- /tools/travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tools/travis/build.sh -------------------------------------------------------------------------------- /tools/travis/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tools/travis/deploy.sh -------------------------------------------------------------------------------- /tools/travis/deploy_openwhisk_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tools/travis/deploy_openwhisk_sdk.sh -------------------------------------------------------------------------------- /tools/travis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tools/travis/setup.sh -------------------------------------------------------------------------------- /tools/travis/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/openwhisk-sdk/HEAD/tools/travis/test.sh --------------------------------------------------------------------------------