├── .github └── workflows │ ├── README.md │ ├── publish-image-builder.yml │ └── release_bp_image_builder.yml ├── .gitignore ├── .prettierrc ├── README.md ├── custom modules ├── README.MD ├── calendly │ ├── README.md │ ├── calendly.tgz │ └── calendly │ │ ├── README.md │ │ ├── build.extras.js │ │ ├── package.json │ │ ├── src │ │ ├── backend │ │ │ └── index.ts │ │ ├── config.ts │ │ ├── content-types │ │ │ ├── _base.js │ │ │ └── calendlyCard.js │ │ ├── translations │ │ │ └── en.json │ │ └── views │ │ │ ├── full │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ ├── CalendlyCard.jsx │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── yarn.lock ├── custom-multiselect │ ├── README.md │ ├── custom-multiselect.tgz │ ├── sendComponent.js │ └── source code │ │ ├── README.md │ │ ├── build.extras.js │ │ ├── package.json │ │ ├── src │ │ ├── backend │ │ │ └── index.ts │ │ ├── config.ts │ │ └── views │ │ │ ├── full │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ ├── components │ │ │ │ ├── MultiSelect.jsx │ │ │ │ └── style.css │ │ │ └── index.jsx │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── tsconfig.json │ │ └── yarn.lock ├── date-picker │ ├── README.md │ ├── date-picker.tgz │ └── source │ │ ├── package.json │ │ ├── src │ │ ├── actions │ │ │ ├── date-compare.js │ │ │ ├── date-extract.js │ │ │ ├── date-parser.js │ │ │ └── send-date-picker.js │ │ ├── backend │ │ │ ├── api.ts │ │ │ ├── datePicker.ts │ │ │ └── index.ts │ │ ├── config.ts │ │ ├── translations │ │ │ ├── en.json │ │ │ └── fr.json │ │ └── views │ │ │ ├── full │ │ │ ├── DatePicker.tsx │ │ │ ├── index.tsx │ │ │ └── typings.d.ts │ │ │ ├── lite │ │ │ ├── MessengerPicker.tsx │ │ │ ├── Picker.tsx │ │ │ ├── Stylesheet.tsx │ │ │ ├── WebPicker.tsx │ │ │ ├── index.tsx │ │ │ ├── style.scss │ │ │ └── style.scss.d.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── yarn.lock ├── delegate-bot-conversation │ ├── README.md │ ├── assets │ │ ├── README.md │ │ ├── index.html │ │ └── logo.png │ ├── build.extras.js │ ├── delegate-bot-conversation.tgz │ ├── package.json │ ├── src │ │ ├── actions │ │ │ ├── README.md │ │ │ ├── delegate-to-sub-bot.js │ │ │ └── end-delegation.js │ │ ├── backend │ │ │ ├── api.ts │ │ │ ├── delegate.ts │ │ │ ├── endDelegation.ts │ │ │ └── index.ts │ │ ├── config.ts │ │ ├── content-types │ │ │ └── README.md │ │ ├── hooks │ │ │ └── README.md │ │ └── views │ │ │ ├── full │ │ │ ├── delegate.jsx │ │ │ ├── endDelegation.jsx │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ ├── tsconfig.json │ └── yarn.lock ├── download-transcript-button │ ├── README.md │ ├── download-transcript-button.tgz │ └── source code │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── actions │ │ │ └── sendDownloadTranscriptButton.js │ │ ├── backend │ │ │ └── index.ts │ │ └── views │ │ │ ├── full │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ ├── components │ │ │ │ └── DownloadTranscriptButton.jsx │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ │ └── tsconfig.json ├── flow-utils │ ├── README.md │ ├── bot_demo.tgz │ ├── build.extras.js │ ├── flow-utils.tgz │ ├── package.json │ ├── src │ │ ├── actions │ │ │ ├── add_to_array.js │ │ │ ├── create_array.js │ │ │ ├── increment_variable.js │ │ │ ├── iterate_array.js │ │ │ ├── operation.js │ │ │ ├── reply.js │ │ │ └── setVariableValue.js │ │ ├── backend │ │ │ ├── AddToArray.ts │ │ │ ├── CreateArray.ts │ │ │ ├── ForEach.ts │ │ │ ├── RawReply.ts │ │ │ └── index.ts │ │ ├── translations │ │ │ └── en.json │ │ └── views │ │ │ ├── full │ │ │ ├── AddToArray.jsx │ │ │ ├── CreateArray.jsx │ │ │ ├── ForEach.jsx │ │ │ ├── RawReply.jsx │ │ │ ├── index.jsx │ │ │ ├── lib │ │ │ │ ├── ArgumentsList.tsx │ │ │ │ ├── parameters.scss │ │ │ │ └── parameters.scss.d.ts │ │ │ ├── style.scss │ │ │ └── style.scss.d.ts │ │ │ ├── lite │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ ├── tsconfig.json │ └── yarn.lock ├── form-module │ ├── README.md │ ├── form-module.tgz │ └── source │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── backend │ │ │ └── index.ts │ │ ├── config.ts │ │ ├── examples │ │ │ └── actions │ │ │ │ └── display-form.js │ │ └── views │ │ │ ├── full │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ ├── components │ │ │ │ └── FormComponent │ │ │ │ │ ├── FormComponent.scss │ │ │ │ │ ├── FormComponent.scss.d.ts │ │ │ │ │ └── FormComponent.tsx │ │ │ └── index.tsx │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── yarn.lock ├── google-spreadsheet │ ├── README.md │ ├── google-spreadsheet.tgz │ └── source code │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── backend │ │ │ ├── index.ts │ │ │ └── sheet.ts │ │ ├── config.ts │ │ └── views │ │ │ ├── full │ │ │ └── index.jsx │ │ │ └── lite │ │ │ └── index.jsx │ │ ├── tsconfig.json │ │ └── yarn.lock ├── hide-chat │ ├── README.md │ ├── hide-chat_3_0_3.tgz │ └── source code │ │ ├── build.extras.js │ │ ├── package.json │ │ ├── src │ │ ├── actions │ │ │ └── hide_chat.js │ │ ├── backend │ │ │ └── index.ts │ │ ├── bot-templates │ │ │ └── hide-chat-demo │ │ │ │ ├── bot.config.json │ │ │ │ ├── content-elements │ │ │ │ ├── builtin_single-choice.json │ │ │ │ ├── builtin_text.json │ │ │ │ └── custom_hide-chat.json │ │ │ │ └── flows │ │ │ │ ├── main.flow.json │ │ │ │ ├── main.ui.json │ │ │ │ └── skills │ │ │ │ ├── choice-14b859.flow.json │ │ │ │ ├── choice-14b859.ui.json │ │ │ │ ├── choice-a14123.flow.json │ │ │ │ └── choice-a14123.ui.json │ │ └── views │ │ │ ├── full │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ ├── components │ │ │ │ ├── HideChat.jsx │ │ │ │ └── yarn.lock │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── yarn.lock ├── number-picker │ ├── README.md │ ├── number-picker.tgz │ └── source │ │ └── number-picker │ │ ├── package.json │ │ ├── src │ │ ├── actions │ │ │ ├── number-invalid-answer.js │ │ │ ├── number-parse-answer.js │ │ │ └── send-number-picker.js │ │ ├── backend │ │ │ ├── api.ts │ │ │ ├── index.ts │ │ │ └── numberPicker.ts │ │ ├── translations │ │ │ ├── en.json │ │ │ └── fr.json │ │ └── views │ │ │ ├── full │ │ │ ├── NumberPicker.tsx │ │ │ ├── index.tsx │ │ │ └── typings.d.ts │ │ │ ├── lite │ │ │ ├── MessengerPicker.tsx │ │ │ ├── Picker.tsx │ │ │ ├── WebPicker.tsx │ │ │ ├── index.tsx │ │ │ ├── style.scss │ │ │ └── style.scss.d.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── yarn.lock ├── riva │ ├── README.md │ ├── package.json │ ├── riva.tgz │ ├── riva_protos │ │ ├── riva_asr.proto │ │ ├── riva_audio.proto │ │ ├── riva_nlp.proto │ │ └── riva_tts.proto │ ├── src │ │ ├── backend │ │ │ ├── api.ts │ │ │ ├── index.ts │ │ │ ├── middleware.ts │ │ │ ├── riva-service.ts │ │ │ ├── service.ts │ │ │ └── utils.ts │ │ ├── config.ts │ │ ├── riva_api │ │ │ ├── riva_asr_grpc_pb.d.ts │ │ │ ├── riva_asr_grpc_pb.js │ │ │ ├── riva_asr_pb.d.ts │ │ │ ├── riva_asr_pb.js │ │ │ ├── riva_audio_grpc_pb.js │ │ │ ├── riva_audio_pb.d.ts │ │ │ ├── riva_audio_pb.js │ │ │ ├── riva_nlp_grpc_pb.d.ts │ │ │ ├── riva_nlp_grpc_pb.js │ │ │ ├── riva_nlp_pb.d.ts │ │ │ ├── riva_nlp_pb.js │ │ │ ├── riva_tts_grpc_pb.d.ts │ │ │ ├── riva_tts_grpc_pb.js │ │ │ ├── riva_tts_pb.d.ts │ │ │ └── riva_tts_pb.js │ │ └── views │ │ │ ├── full │ │ │ └── index.tsx │ │ │ ├── lite │ │ │ ├── Composer.css │ │ │ ├── Composer.tsx │ │ │ ├── Player.tsx │ │ │ ├── Recorder │ │ │ │ ├── FileUploader.tsx │ │ │ │ ├── Microphone.tsx │ │ │ │ ├── Timer.tsx │ │ │ │ ├── VoiceRecorder.tsx │ │ │ │ └── webToWav.ts │ │ │ ├── index.tsx │ │ │ └── utils.tsx │ │ │ └── tsconfig.json │ ├── tsconfig.json │ └── yarn.lock ├── starter-module │ ├── .gitignore │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── README.md │ ├── build.extras.js │ ├── package.json │ ├── src │ │ ├── actions │ │ │ └── README.md │ │ ├── backend │ │ │ ├── api.ts │ │ │ └── index.ts │ │ ├── bot-templates │ │ │ └── .gitkeep │ │ ├── config.ts │ │ ├── content-types │ │ │ └── README.md │ │ ├── hooks │ │ │ ├── README.md │ │ │ ├── after_incoming_middleware │ │ │ │ └── .gitkeep │ │ │ ├── before_incoming_middleware │ │ │ │ └── .gitkeep │ │ │ └── before_suggestions_election │ │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── full │ │ │ ├── example1.jsx │ │ │ ├── example2.jsx │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ ├── tsconfig.json │ └── yarn.lock ├── upload-skill │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── README.md │ │ ├── index.html │ │ └── logo.png │ ├── build.extras.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── actions │ │ │ ├── README.md │ │ │ └── display-upload-file.js │ │ ├── backend │ │ │ ├── UploadFile.ts │ │ │ ├── api.ts │ │ │ ├── db.ts │ │ │ ├── index.ts │ │ │ ├── migrate.ts │ │ │ └── utils.ts │ │ ├── config.ts │ │ ├── constants.ts │ │ ├── content-types │ │ │ ├── README.md │ │ │ ├── _base.js │ │ │ ├── _utils.js │ │ │ └── upload-skill-file.js │ │ ├── hooks │ │ │ ├── README.md │ │ │ ├── before_conversation_end │ │ │ │ └── clearDb.js │ │ │ └── before_incoming_middleware │ │ │ │ └── handleUploadFilePayload.js │ │ └── views │ │ │ ├── full │ │ │ ├── UploadFile.jsx │ │ │ ├── example1.jsx │ │ │ ├── example2.jsx │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ ├── components │ │ │ │ ├── FileInput.tsx │ │ │ │ └── UploadFile.tsx │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── upload-skill.tgz │ └── yarn.lock └── validate-email │ ├── README.md │ ├── assets │ ├── README.md │ ├── index.html │ └── logo.png │ ├── build.extras.js │ ├── package.json │ ├── src │ ├── actions │ │ ├── README.md │ │ └── validate-email.js │ ├── backend │ │ ├── InputEmail.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── config.ts │ ├── translations │ │ ├── en.json │ │ ├── es.json │ │ └── fr.json │ └── views │ │ ├── full │ │ ├── InputEmail.jsx │ │ └── index.jsx │ │ ├── lite │ │ └── index.jsx │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── validate-email.tgz │ └── yarn.lock ├── custom solutions ├── Add New Element to Channel │ ├── README.md │ ├── before.png │ ├── block-kit-builder.png │ ├── flow.png │ ├── incoming.js │ ├── on-unmount.js │ ├── sendform.js │ └── server.js ├── Adding new Channel │ ├── README.md │ └── new-channel.svg ├── Break out of flow when matching a QNA │ ├── README.md │ ├── break-out-qna-hook.js │ └── break-out-qna-v2 ├── Build Custom Modules Using Module Builder │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── README.md ├── Build Custom Web Chat Components │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── README.md │ ├── custom-web-component-module.zip │ └── custom-web-component-module │ │ ├── .gitignore │ │ ├── package.json │ │ ├── src │ │ ├── backend │ │ │ └── index.ts │ │ ├── config.ts │ │ └── views │ │ │ ├── full │ │ │ └── index.jsx │ │ │ ├── lite │ │ │ ├── before_container.jsx │ │ │ └── index.jsx │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── yarn.lock ├── Conversation Events Webhook │ ├── conversation_events_webhook.js │ └── readme.md ├── Create Dynamic Carousel │ ├── README.md │ └── send-carousel.js ├── Create Dynamic Choices │ ├── Advanced │ │ ├── README.md │ │ ├── advanced-dynamic-choice.js │ │ └── process-dynamic-option.js │ ├── Basic │ │ ├── README.md │ │ └── basic-dynamic-choice.js │ └── readme.md ├── Create Link to Download Conversation History │ ├── actions │ │ └── sendTranscriptDownloadLink.js │ ├── hooks │ │ └── after_server_start │ │ │ └── createDownloadConversationRouter.js │ └── readme.md ├── Create URL from User Query │ ├── README.md │ └── actions │ │ ├── send-to-website.js │ │ └── utils.js ├── Create logout link │ ├── hooks │ │ └── after_server_start │ │ │ └── create_logout_router.js │ └── readme.md ├── Custom Analytics - User Path │ ├── Bot Hooks (add to bots you want to track) │ │ └── after_incoming_middleware │ │ │ └── capture-custom-analytics.js │ ├── Global Hooks │ │ ├── after_bot_mount │ │ │ └── custom-analytics.js │ │ ├── after_bot_unmount │ │ │ └── custom-analytics.js │ │ └── before_incoming_middleware │ │ │ └── generate_session_id.js │ └── README.md ├── Custom amount time typing indicator │ ├── README.md │ └── custom_typing_time.js ├── Custom oAuth with Converse Api │ ├── README.md │ └── before_incoming_middleware │ │ └── work.js ├── Customize Webchat CSS │ ├── README.md │ └── hooks │ │ └── after_server_start.js ├── Delegate conversation │ ├── README.md │ ├── delegate.js │ └── reset_conversation.js ├── Delete Conversations │ └── README.md ├── Dynamic Dropdown with Fuzzy Matching │ ├── Bot │ │ └── bot_example-movie-bot_1622830817286.tgz │ ├── README.md │ └── images │ │ └── 0.png ├── Expose public files │ ├── hooks │ │ └── after_server_start │ │ │ └── create_files_router.js │ └── readme.md ├── Extract Data Without Slots │ ├── README.md │ └── hooks │ │ └── after_incoming_middleware.js ├── Extract Dates with Microsoft Text Recognizers │ ├── README.md │ └── hooks │ │ └── after-incoming-middleware.js ├── Extract and Validate Informations │ ├── README.md │ └── actions │ │ └── data-extractor.js ├── Extract time ranges │ ├── README.md │ ├── bot_time-range-extraction_1626801742695.tgz │ └── time-extract-hook.js ├── Force Minimum Confidence │ ├── mininimum-confidence.js │ └── readme.md ├── Get user profile from Messenger │ ├── README.md │ └── actions │ │ ├── fb-extract-info.js │ │ └── utils.js ├── Get user profile from Slack │ ├── README.md │ └── actions │ │ └── get-slack-profile.js ├── Get user profile from Teams │ ├── README.md │ └── actions │ │ └── get-teams-email.js ├── HITL Details │ ├── hooks │ │ └── after_server_start │ │ │ └── HITLDetails.js │ └── readme.md ├── HITL Reject API │ └── readme.md ├── HITL Use Events Webhook │ └── readme.md ├── Increment Custom Metric │ ├── README.md │ └── increment-custom-metric.js ├── Increment Variable By N │ ├── increment-variable-by-n.js │ └── readme.md ├── Push ConverseAPI messages to messaging │ ├── README.md │ └── hooks │ │ ├── after_incoming_middleware │ │ └── insertConverseIntoMessagingIncoming.js │ │ ├── after_server_start │ │ └── createConverseMessagingMap.js │ │ └── before_outgoing_middleware │ │ └── insertConverseIntoMessagingOutgoing.js ├── Record all Misunderstood │ ├── README.MD │ └── record-all-misunderstood.js ├── Record final node │ ├── README.md │ ├── createDropoutTable.js │ └── record-final-node.js ├── Redirect All Qnas │ ├── README.md │ └── Redirect_All_Qnas.js ├── Redirect user during conversation if URL has a parameter │ ├── README.md │ ├── inject_variable_from_webchat.js │ ├── inject_variable_template_final.html │ └── inject_variable_template_v1.html ├── Redirection on exact intent │ └── redirection-hook.js ├── Redirection on session reset │ ├── README.md │ └── redirect_reset_session.js ├── Run Script 30 Minutes Before End of Day │ ├── readme.md │ └── routine.js ├── Send Specific QnA to a User │ ├── README.md │ └── actions │ │ └── send-qna.js ├── Send adaptive cards using teams │ ├── README.md │ └── actions │ │ └── sendAdaptativeCard.js ├── Send message to user using API [Intersection API] │ ├── README.md │ └── hooks │ │ └── after_server_start │ │ └── createIntersectionAPI.js ├── Set Nested Value │ ├── Readme.md │ └── set-nested-value.js ├── Standardize Words Hook │ ├── README.md │ └── standardise_word.js ├── Success Telemetry │ └── Subviews │ │ ├── README.md │ │ ├── solutions │ │ └── download_csv_button │ │ │ ├── Readme.md │ │ │ └── zz_create_download_csv_button.js │ │ └── workflow │ │ └── Separated Workflow │ │ ├── Readme.md │ │ └── zst_subview_workflow_sepated.js ├── Third party translations │ ├── Readme.md │ ├── bot.config.json │ ├── translate-bot-messages.js │ └── translate-user-messages.js ├── Timely Greeting │ ├── Timely-Greeting.js │ └── readme.md ├── UserDropout │ ├── DataInsert.js │ ├── Hooks │ │ ├── TableCreation.js │ │ └── TargetUserEntry.js │ └── NodeUpdate.js ├── Working with Dates │ ├── README.md │ └── actions │ │ ├── date-compare.js │ │ └── date-parser.js └── [HITL-Next] Jump to flow after resolving │ ├── README.md │ └── hooks │ ├── before_incoming_middleware │ └── sendTo-in.js │ └── before_outgoing_middleware │ └── sendTo-out.js └── custom_tools ├── NLU_Testing ├── .env ├── LICENSE ├── NLU-Testing.py ├── NLU_Testing.ipynb ├── README.md └── requirements.txt ├── bots └── export_flow_bot │ ├── README.md │ └── bot_helper-bot.tgz ├── bp_image_builder ├── .gitignore ├── Dockerfile ├── README.md ├── custom_buildImage_config │ ├── README.md │ └── buildImage.config.js ├── custom_dockerfile │ ├── Dockerfile │ └── README.md ├── docker_hooks │ ├── README.md │ └── examples │ │ ├── Download train data from origin │ │ ├── README.md │ │ └── after_build.sh │ │ └── README.md ├── package.json ├── src │ ├── auth │ │ ├── basic.ts │ │ └── index.ts │ ├── build │ │ ├── bppull.ts │ │ ├── fs.ts │ │ └── index.ts │ ├── index.ts │ ├── multistrategy.ts │ └── utils.ts ├── tsconfig.json └── yarn.lock ├── bp_uploader ├── .gitignore ├── README.md ├── package.json ├── src │ ├── auth │ │ ├── README.md │ │ ├── basic.ts │ │ ├── index.ts │ │ └── multistrategy.ts │ ├── index.ts │ └── uploader.ts ├── tsconfig.json └── yarn.lock ├── count messages without HITL included ├── README.md └── count user messages without HITL Messages └── readme-template.md /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/publish-image-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/.github/workflows/publish-image-builder.yml -------------------------------------------------------------------------------- /.github/workflows/release_bp_image_builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/.github/workflows/release_bp_image_builder.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/README.md -------------------------------------------------------------------------------- /custom modules/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/README.MD -------------------------------------------------------------------------------- /custom modules/calendly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/README.md -------------------------------------------------------------------------------- /custom modules/calendly/calendly.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly.tgz -------------------------------------------------------------------------------- /custom modules/calendly/calendly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/README.md -------------------------------------------------------------------------------- /custom modules/calendly/calendly/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/build.extras.js -------------------------------------------------------------------------------- /custom modules/calendly/calendly/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/package.json -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/config.ts -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/content-types/_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/content-types/_base.js -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/content-types/calendlyCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/content-types/calendlyCard.js -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/translations/en.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/views/lite/CalendlyCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/views/lite/CalendlyCard.jsx -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/calendly/calendly/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/calendly/calendly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/tsconfig.json -------------------------------------------------------------------------------- /custom modules/calendly/calendly/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/calendly/calendly/yarn.lock -------------------------------------------------------------------------------- /custom modules/custom-multiselect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/README.md -------------------------------------------------------------------------------- /custom modules/custom-multiselect/custom-multiselect.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/custom-multiselect.tgz -------------------------------------------------------------------------------- /custom modules/custom-multiselect/sendComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/sendComponent.js -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/README.md -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/build.extras.js -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/package.json -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/config.ts -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/views/lite/components/MultiSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/views/lite/components/MultiSelect.jsx -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/views/lite/components/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/views/lite/components/style.css -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/src/views/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/src/views/tslint.json -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/tsconfig.json -------------------------------------------------------------------------------- /custom modules/custom-multiselect/source code/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/custom-multiselect/source code/yarn.lock -------------------------------------------------------------------------------- /custom modules/date-picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/README.md -------------------------------------------------------------------------------- /custom modules/date-picker/date-picker.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/date-picker.tgz -------------------------------------------------------------------------------- /custom modules/date-picker/source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/package.json -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/actions/date-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/actions/date-compare.js -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/actions/date-extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/actions/date-extract.js -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/actions/date-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/actions/date-parser.js -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/actions/send-date-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/actions/send-date-picker.js -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/backend/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/backend/api.ts -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/backend/datePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/backend/datePicker.ts -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/config.ts -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/translations/en.json -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/translations/fr.json -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/full/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/full/DatePicker.tsx -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/full/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/full/index.tsx -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/full/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/full/typings.d.ts -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/lite/MessengerPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/lite/MessengerPicker.tsx -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/lite/Picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/lite/Picker.tsx -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/lite/Stylesheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/lite/Stylesheet.tsx -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/lite/WebPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/lite/WebPicker.tsx -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/lite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/lite/index.tsx -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/lite/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/lite/style.scss -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/lite/style.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/lite/style.scss.d.ts -------------------------------------------------------------------------------- /custom modules/date-picker/source/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/date-picker/source/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/tsconfig.json -------------------------------------------------------------------------------- /custom modules/date-picker/source/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/date-picker/source/yarn.lock -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/README.md -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/assets/README.md -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/assets/index.html -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/assets/logo.png -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/build.extras.js -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/delegate-bot-conversation.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/delegate-bot-conversation.tgz -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/package.json -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/actions/README.md -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/actions/delegate-to-sub-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/actions/delegate-to-sub-bot.js -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/actions/end-delegation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/actions/end-delegation.js -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/backend/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/backend/api.ts -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/backend/delegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/backend/delegate.ts -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/backend/endDelegation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/backend/endDelegation.ts -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/config.ts -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/content-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/content-types/README.md -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/hooks/README.md -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/views/full/delegate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/views/full/delegate.jsx -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/views/full/endDelegation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/views/full/endDelegation.jsx -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/tsconfig.json -------------------------------------------------------------------------------- /custom modules/delegate-bot-conversation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/delegate-bot-conversation/yarn.lock -------------------------------------------------------------------------------- /custom modules/download-transcript-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/README.md -------------------------------------------------------------------------------- /custom modules/download-transcript-button/download-transcript-button.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/download-transcript-button.tgz -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/README.md -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/package.json -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/src/actions/sendDownloadTranscriptButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/src/actions/sendDownloadTranscriptButton.js -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/src/views/lite/components/DownloadTranscriptButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/src/views/lite/components/DownloadTranscriptButton.jsx -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/download-transcript-button/source code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/download-transcript-button/source code/tsconfig.json -------------------------------------------------------------------------------- /custom modules/flow-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/README.md -------------------------------------------------------------------------------- /custom modules/flow-utils/bot_demo.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/bot_demo.tgz -------------------------------------------------------------------------------- /custom modules/flow-utils/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/build.extras.js -------------------------------------------------------------------------------- /custom modules/flow-utils/flow-utils.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/flow-utils.tgz -------------------------------------------------------------------------------- /custom modules/flow-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/package.json -------------------------------------------------------------------------------- /custom modules/flow-utils/src/actions/add_to_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/actions/add_to_array.js -------------------------------------------------------------------------------- /custom modules/flow-utils/src/actions/create_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/actions/create_array.js -------------------------------------------------------------------------------- /custom modules/flow-utils/src/actions/increment_variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/actions/increment_variable.js -------------------------------------------------------------------------------- /custom modules/flow-utils/src/actions/iterate_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/actions/iterate_array.js -------------------------------------------------------------------------------- /custom modules/flow-utils/src/actions/operation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/actions/operation.js -------------------------------------------------------------------------------- /custom modules/flow-utils/src/actions/reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/actions/reply.js -------------------------------------------------------------------------------- /custom modules/flow-utils/src/actions/setVariableValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/actions/setVariableValue.js -------------------------------------------------------------------------------- /custom modules/flow-utils/src/backend/AddToArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/backend/AddToArray.ts -------------------------------------------------------------------------------- /custom modules/flow-utils/src/backend/CreateArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/backend/CreateArray.ts -------------------------------------------------------------------------------- /custom modules/flow-utils/src/backend/ForEach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/backend/ForEach.ts -------------------------------------------------------------------------------- /custom modules/flow-utils/src/backend/RawReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/backend/RawReply.ts -------------------------------------------------------------------------------- /custom modules/flow-utils/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/flow-utils/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/translations/en.json -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/AddToArray.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/AddToArray.jsx -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/CreateArray.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/CreateArray.jsx -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/ForEach.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/ForEach.jsx -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/RawReply.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/RawReply.jsx -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/lib/ArgumentsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/lib/ArgumentsList.tsx -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/lib/parameters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/lib/parameters.scss -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/lib/parameters.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/lib/parameters.scss.d.ts -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/style.scss -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/full/style.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/full/style.scss.d.ts -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/flow-utils/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/flow-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/tsconfig.json -------------------------------------------------------------------------------- /custom modules/flow-utils/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/flow-utils/yarn.lock -------------------------------------------------------------------------------- /custom modules/form-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/README.md -------------------------------------------------------------------------------- /custom modules/form-module/form-module.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/form-module.tgz -------------------------------------------------------------------------------- /custom modules/form-module/source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/.gitignore -------------------------------------------------------------------------------- /custom modules/form-module/source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/README.md -------------------------------------------------------------------------------- /custom modules/form-module/source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/package.json -------------------------------------------------------------------------------- /custom modules/form-module/source/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/form-module/source/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/config.ts -------------------------------------------------------------------------------- /custom modules/form-module/source/src/examples/actions/display-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/examples/actions/display-form.js -------------------------------------------------------------------------------- /custom modules/form-module/source/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/form-module/source/src/views/lite/components/FormComponent/FormComponent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/views/lite/components/FormComponent/FormComponent.scss -------------------------------------------------------------------------------- /custom modules/form-module/source/src/views/lite/components/FormComponent/FormComponent.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/views/lite/components/FormComponent/FormComponent.scss.d.ts -------------------------------------------------------------------------------- /custom modules/form-module/source/src/views/lite/components/FormComponent/FormComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/views/lite/components/FormComponent/FormComponent.tsx -------------------------------------------------------------------------------- /custom modules/form-module/source/src/views/lite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/views/lite/index.tsx -------------------------------------------------------------------------------- /custom modules/form-module/source/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/form-module/source/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/tsconfig.json -------------------------------------------------------------------------------- /custom modules/form-module/source/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/form-module/source/yarn.lock -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/README.md -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/google-spreadsheet.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/google-spreadsheet.tgz -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/README.md -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/package.json -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/src/backend/sheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/src/backend/sheet.ts -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/src/config.ts -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/tsconfig.json -------------------------------------------------------------------------------- /custom modules/google-spreadsheet/source code/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/google-spreadsheet/source code/yarn.lock -------------------------------------------------------------------------------- /custom modules/hide-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/README.md -------------------------------------------------------------------------------- /custom modules/hide-chat/hide-chat_3_0_3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/hide-chat_3_0_3.tgz -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/build.extras.js -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/package.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/actions/hide_chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/actions/hide_chat.js -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/bot.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/bot.config.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/content-elements/builtin_single-choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/content-elements/builtin_single-choice.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/content-elements/builtin_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/content-elements/builtin_text.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/content-elements/custom_hide-chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/content-elements/custom_hide-chat.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/main.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/main.flow.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/main.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/main.ui.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-14b859.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-14b859.flow.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-14b859.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-14b859.ui.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-a14123.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-a14123.flow.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-a14123.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/bot-templates/hide-chat-demo/flows/skills/choice-a14123.ui.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/views/lite/components/HideChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/views/lite/components/HideChat.jsx -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/views/lite/components/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/views/lite/components/yarn.lock -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/tsconfig.json -------------------------------------------------------------------------------- /custom modules/hide-chat/source code/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/hide-chat/source code/yarn.lock -------------------------------------------------------------------------------- /custom modules/number-picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/README.md -------------------------------------------------------------------------------- /custom modules/number-picker/number-picker.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/number-picker.tgz -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/package.json -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/actions/number-invalid-answer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/actions/number-invalid-answer.js -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/actions/number-parse-answer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/actions/number-parse-answer.js -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/actions/send-number-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/actions/send-number-picker.js -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/backend/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/backend/api.ts -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/backend/numberPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/backend/numberPicker.ts -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/translations/en.json -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/translations/fr.json -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/full/NumberPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/full/NumberPicker.tsx -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/full/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/full/index.tsx -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/full/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/full/typings.d.ts -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/lite/MessengerPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/lite/MessengerPicker.tsx -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/lite/Picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/lite/Picker.tsx -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/lite/WebPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/lite/WebPicker.tsx -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/lite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/lite/index.tsx -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/lite/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/lite/style.scss -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/lite/style.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/lite/style.scss.d.ts -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/tsconfig.json -------------------------------------------------------------------------------- /custom modules/number-picker/source/number-picker/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/number-picker/source/number-picker/yarn.lock -------------------------------------------------------------------------------- /custom modules/riva/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/README.md -------------------------------------------------------------------------------- /custom modules/riva/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/package.json -------------------------------------------------------------------------------- /custom modules/riva/riva.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/riva.tgz -------------------------------------------------------------------------------- /custom modules/riva/riva_protos/riva_asr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/riva_protos/riva_asr.proto -------------------------------------------------------------------------------- /custom modules/riva/riva_protos/riva_audio.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/riva_protos/riva_audio.proto -------------------------------------------------------------------------------- /custom modules/riva/riva_protos/riva_nlp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/riva_protos/riva_nlp.proto -------------------------------------------------------------------------------- /custom modules/riva/riva_protos/riva_tts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/riva_protos/riva_tts.proto -------------------------------------------------------------------------------- /custom modules/riva/src/backend/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/backend/api.ts -------------------------------------------------------------------------------- /custom modules/riva/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/riva/src/backend/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/backend/middleware.ts -------------------------------------------------------------------------------- /custom modules/riva/src/backend/riva-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/backend/riva-service.ts -------------------------------------------------------------------------------- /custom modules/riva/src/backend/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/backend/service.ts -------------------------------------------------------------------------------- /custom modules/riva/src/backend/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/backend/utils.ts -------------------------------------------------------------------------------- /custom modules/riva/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/config.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_asr_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_asr_grpc_pb.d.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_asr_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_asr_grpc_pb.js -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_asr_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_asr_pb.d.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_asr_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_asr_pb.js -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_audio_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_audio_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_audio_pb.d.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_audio_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_audio_pb.js -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_nlp_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_nlp_grpc_pb.d.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_nlp_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_nlp_grpc_pb.js -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_nlp_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_nlp_pb.d.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_nlp_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_nlp_pb.js -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_tts_grpc_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_tts_grpc_pb.d.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_tts_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_tts_grpc_pb.js -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_tts_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_tts_pb.d.ts -------------------------------------------------------------------------------- /custom modules/riva/src/riva_api/riva_tts_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/riva_api/riva_tts_pb.js -------------------------------------------------------------------------------- /custom modules/riva/src/views/full/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/full/index.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Composer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Composer.css -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Composer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Composer.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Player.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Recorder/FileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Recorder/FileUploader.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Recorder/Microphone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Recorder/Microphone.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Recorder/Timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Recorder/Timer.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Recorder/VoiceRecorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Recorder/VoiceRecorder.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/Recorder/webToWav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/Recorder/webToWav.ts -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/index.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/lite/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/lite/utils.tsx -------------------------------------------------------------------------------- /custom modules/riva/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/riva/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/tsconfig.json -------------------------------------------------------------------------------- /custom modules/riva/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/riva/yarn.lock -------------------------------------------------------------------------------- /custom modules/starter-module/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | *.tgz -------------------------------------------------------------------------------- /custom modules/starter-module/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/1.png -------------------------------------------------------------------------------- /custom modules/starter-module/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/2.png -------------------------------------------------------------------------------- /custom modules/starter-module/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/3.png -------------------------------------------------------------------------------- /custom modules/starter-module/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/4.png -------------------------------------------------------------------------------- /custom modules/starter-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/README.md -------------------------------------------------------------------------------- /custom modules/starter-module/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/build.extras.js -------------------------------------------------------------------------------- /custom modules/starter-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/package.json -------------------------------------------------------------------------------- /custom modules/starter-module/src/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/actions/README.md -------------------------------------------------------------------------------- /custom modules/starter-module/src/backend/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/backend/api.ts -------------------------------------------------------------------------------- /custom modules/starter-module/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/starter-module/src/bot-templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom modules/starter-module/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/config.ts -------------------------------------------------------------------------------- /custom modules/starter-module/src/content-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/content-types/README.md -------------------------------------------------------------------------------- /custom modules/starter-module/src/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/hooks/README.md -------------------------------------------------------------------------------- /custom modules/starter-module/src/hooks/after_incoming_middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom modules/starter-module/src/hooks/before_incoming_middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom modules/starter-module/src/hooks/before_suggestions_election/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom modules/starter-module/src/views/full/example1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/views/full/example1.jsx -------------------------------------------------------------------------------- /custom modules/starter-module/src/views/full/example2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/views/full/example2.jsx -------------------------------------------------------------------------------- /custom modules/starter-module/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/starter-module/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/starter-module/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/starter-module/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/tsconfig.json -------------------------------------------------------------------------------- /custom modules/starter-module/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/starter-module/yarn.lock -------------------------------------------------------------------------------- /custom modules/upload-skill/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/.gitignore -------------------------------------------------------------------------------- /custom modules/upload-skill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/README.md -------------------------------------------------------------------------------- /custom modules/upload-skill/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/assets/README.md -------------------------------------------------------------------------------- /custom modules/upload-skill/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/assets/index.html -------------------------------------------------------------------------------- /custom modules/upload-skill/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/assets/logo.png -------------------------------------------------------------------------------- /custom modules/upload-skill/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/build.extras.js -------------------------------------------------------------------------------- /custom modules/upload-skill/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/package-lock.json -------------------------------------------------------------------------------- /custom modules/upload-skill/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/package.json -------------------------------------------------------------------------------- /custom modules/upload-skill/src/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/actions/README.md -------------------------------------------------------------------------------- /custom modules/upload-skill/src/actions/display-upload-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/actions/display-upload-file.js -------------------------------------------------------------------------------- /custom modules/upload-skill/src/backend/UploadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/backend/UploadFile.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/backend/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/backend/api.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/backend/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/backend/db.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/backend/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/backend/migrate.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/backend/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/backend/utils.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/config.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/constants.ts -------------------------------------------------------------------------------- /custom modules/upload-skill/src/content-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/content-types/README.md -------------------------------------------------------------------------------- /custom modules/upload-skill/src/content-types/_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/content-types/_base.js -------------------------------------------------------------------------------- /custom modules/upload-skill/src/content-types/_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/content-types/_utils.js -------------------------------------------------------------------------------- /custom modules/upload-skill/src/content-types/upload-skill-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/content-types/upload-skill-file.js -------------------------------------------------------------------------------- /custom modules/upload-skill/src/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/hooks/README.md -------------------------------------------------------------------------------- /custom modules/upload-skill/src/hooks/before_conversation_end/clearDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/hooks/before_conversation_end/clearDb.js -------------------------------------------------------------------------------- /custom modules/upload-skill/src/hooks/before_incoming_middleware/handleUploadFilePayload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/hooks/before_incoming_middleware/handleUploadFilePayload.js -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/full/UploadFile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/full/UploadFile.jsx -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/full/example1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/full/example1.jsx -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/full/example2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/full/example2.jsx -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/lite/components/FileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/lite/components/FileInput.tsx -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/lite/components/UploadFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/lite/components/UploadFile.tsx -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/upload-skill/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/upload-skill/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/tsconfig.json -------------------------------------------------------------------------------- /custom modules/upload-skill/upload-skill.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/upload-skill.tgz -------------------------------------------------------------------------------- /custom modules/upload-skill/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/upload-skill/yarn.lock -------------------------------------------------------------------------------- /custom modules/validate-email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/README.md -------------------------------------------------------------------------------- /custom modules/validate-email/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/assets/README.md -------------------------------------------------------------------------------- /custom modules/validate-email/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/assets/index.html -------------------------------------------------------------------------------- /custom modules/validate-email/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/assets/logo.png -------------------------------------------------------------------------------- /custom modules/validate-email/build.extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/build.extras.js -------------------------------------------------------------------------------- /custom modules/validate-email/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/package.json -------------------------------------------------------------------------------- /custom modules/validate-email/src/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/actions/README.md -------------------------------------------------------------------------------- /custom modules/validate-email/src/actions/validate-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/actions/validate-email.js -------------------------------------------------------------------------------- /custom modules/validate-email/src/backend/InputEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/backend/InputEmail.ts -------------------------------------------------------------------------------- /custom modules/validate-email/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/backend/index.ts -------------------------------------------------------------------------------- /custom modules/validate-email/src/backend/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/backend/utils.ts -------------------------------------------------------------------------------- /custom modules/validate-email/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/config.ts -------------------------------------------------------------------------------- /custom modules/validate-email/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/translations/en.json -------------------------------------------------------------------------------- /custom modules/validate-email/src/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/translations/es.json -------------------------------------------------------------------------------- /custom modules/validate-email/src/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/translations/fr.json -------------------------------------------------------------------------------- /custom modules/validate-email/src/views/full/InputEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/views/full/InputEmail.jsx -------------------------------------------------------------------------------- /custom modules/validate-email/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom modules/validate-email/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom modules/validate-email/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom modules/validate-email/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/tsconfig.json -------------------------------------------------------------------------------- /custom modules/validate-email/validate-email.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/validate-email.tgz -------------------------------------------------------------------------------- /custom modules/validate-email/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom modules/validate-email/yarn.lock -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/README.md -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/before.png -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/block-kit-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/block-kit-builder.png -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/flow.png -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/incoming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/incoming.js -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/on-unmount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/on-unmount.js -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/sendform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/sendform.js -------------------------------------------------------------------------------- /custom solutions/Add New Element to Channel/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Add New Element to Channel/server.js -------------------------------------------------------------------------------- /custom solutions/Adding new Channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Adding new Channel/README.md -------------------------------------------------------------------------------- /custom solutions/Adding new Channel/new-channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Adding new Channel/new-channel.svg -------------------------------------------------------------------------------- /custom solutions/Break out of flow when matching a QNA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Break out of flow when matching a QNA/README.md -------------------------------------------------------------------------------- /custom solutions/Break out of flow when matching a QNA/break-out-qna-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Break out of flow when matching a QNA/break-out-qna-hook.js -------------------------------------------------------------------------------- /custom solutions/Break out of flow when matching a QNA/break-out-qna-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Break out of flow when matching a QNA/break-out-qna-v2 -------------------------------------------------------------------------------- /custom solutions/Build Custom Modules Using Module Builder/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Modules Using Module Builder/1.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Modules Using Module Builder/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Modules Using Module Builder/2.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Modules Using Module Builder/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Modules Using Module Builder/3.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Modules Using Module Builder/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Modules Using Module Builder/4.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Modules Using Module Builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Modules Using Module Builder/README.md -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/1.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/2.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/3.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/4.png -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/README.md -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module.zip -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | *.tgz -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/package.json -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/backend/index.ts -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/config.ts -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/full/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/full/index.jsx -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/lite/before_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/lite/before_container.jsx -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/lite/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/lite/index.jsx -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/src/views/tsconfig.json -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/tsconfig.json -------------------------------------------------------------------------------- /custom solutions/Build Custom Web Chat Components/custom-web-component-module/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Build Custom Web Chat Components/custom-web-component-module/yarn.lock -------------------------------------------------------------------------------- /custom solutions/Conversation Events Webhook/conversation_events_webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Conversation Events Webhook/conversation_events_webhook.js -------------------------------------------------------------------------------- /custom solutions/Conversation Events Webhook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Conversation Events Webhook/readme.md -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Carousel/README.md -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Carousel/send-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Carousel/send-carousel.js -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Choices/Advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Choices/Advanced/README.md -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Choices/Advanced/advanced-dynamic-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Choices/Advanced/advanced-dynamic-choice.js -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Choices/Advanced/process-dynamic-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Choices/Advanced/process-dynamic-option.js -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Choices/Basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Choices/Basic/README.md -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Choices/Basic/basic-dynamic-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Choices/Basic/basic-dynamic-choice.js -------------------------------------------------------------------------------- /custom solutions/Create Dynamic Choices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Dynamic Choices/readme.md -------------------------------------------------------------------------------- /custom solutions/Create Link to Download Conversation History/actions/sendTranscriptDownloadLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Link to Download Conversation History/actions/sendTranscriptDownloadLink.js -------------------------------------------------------------------------------- /custom solutions/Create Link to Download Conversation History/hooks/after_server_start/createDownloadConversationRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Link to Download Conversation History/hooks/after_server_start/createDownloadConversationRouter.js -------------------------------------------------------------------------------- /custom solutions/Create Link to Download Conversation History/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create Link to Download Conversation History/readme.md -------------------------------------------------------------------------------- /custom solutions/Create URL from User Query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create URL from User Query/README.md -------------------------------------------------------------------------------- /custom solutions/Create URL from User Query/actions/send-to-website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create URL from User Query/actions/send-to-website.js -------------------------------------------------------------------------------- /custom solutions/Create URL from User Query/actions/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create URL from User Query/actions/utils.js -------------------------------------------------------------------------------- /custom solutions/Create logout link/hooks/after_server_start/create_logout_router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create logout link/hooks/after_server_start/create_logout_router.js -------------------------------------------------------------------------------- /custom solutions/Create logout link/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Create logout link/readme.md -------------------------------------------------------------------------------- /custom solutions/Custom Analytics - User Path/Bot Hooks (add to bots you want to track)/after_incoming_middleware/capture-custom-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom Analytics - User Path/Bot Hooks (add to bots you want to track)/after_incoming_middleware/capture-custom-analytics.js -------------------------------------------------------------------------------- /custom solutions/Custom Analytics - User Path/Global Hooks/after_bot_mount/custom-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom Analytics - User Path/Global Hooks/after_bot_mount/custom-analytics.js -------------------------------------------------------------------------------- /custom solutions/Custom Analytics - User Path/Global Hooks/after_bot_unmount/custom-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom Analytics - User Path/Global Hooks/after_bot_unmount/custom-analytics.js -------------------------------------------------------------------------------- /custom solutions/Custom Analytics - User Path/Global Hooks/before_incoming_middleware/generate_session_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom Analytics - User Path/Global Hooks/before_incoming_middleware/generate_session_id.js -------------------------------------------------------------------------------- /custom solutions/Custom Analytics - User Path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom Analytics - User Path/README.md -------------------------------------------------------------------------------- /custom solutions/Custom amount time typing indicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom amount time typing indicator/README.md -------------------------------------------------------------------------------- /custom solutions/Custom amount time typing indicator/custom_typing_time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom amount time typing indicator/custom_typing_time.js -------------------------------------------------------------------------------- /custom solutions/Custom oAuth with Converse Api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom oAuth with Converse Api/README.md -------------------------------------------------------------------------------- /custom solutions/Custom oAuth with Converse Api/before_incoming_middleware/work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Custom oAuth with Converse Api/before_incoming_middleware/work.js -------------------------------------------------------------------------------- /custom solutions/Customize Webchat CSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Customize Webchat CSS/README.md -------------------------------------------------------------------------------- /custom solutions/Customize Webchat CSS/hooks/after_server_start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Customize Webchat CSS/hooks/after_server_start.js -------------------------------------------------------------------------------- /custom solutions/Delegate conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Delegate conversation/README.md -------------------------------------------------------------------------------- /custom solutions/Delegate conversation/delegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Delegate conversation/delegate.js -------------------------------------------------------------------------------- /custom solutions/Delegate conversation/reset_conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Delegate conversation/reset_conversation.js -------------------------------------------------------------------------------- /custom solutions/Delete Conversations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Delete Conversations/README.md -------------------------------------------------------------------------------- /custom solutions/Dynamic Dropdown with Fuzzy Matching/Bot/bot_example-movie-bot_1622830817286.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Dynamic Dropdown with Fuzzy Matching/Bot/bot_example-movie-bot_1622830817286.tgz -------------------------------------------------------------------------------- /custom solutions/Dynamic Dropdown with Fuzzy Matching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Dynamic Dropdown with Fuzzy Matching/README.md -------------------------------------------------------------------------------- /custom solutions/Dynamic Dropdown with Fuzzy Matching/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Dynamic Dropdown with Fuzzy Matching/images/0.png -------------------------------------------------------------------------------- /custom solutions/Expose public files/hooks/after_server_start/create_files_router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Expose public files/hooks/after_server_start/create_files_router.js -------------------------------------------------------------------------------- /custom solutions/Expose public files/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Expose public files/readme.md -------------------------------------------------------------------------------- /custom solutions/Extract Data Without Slots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract Data Without Slots/README.md -------------------------------------------------------------------------------- /custom solutions/Extract Data Without Slots/hooks/after_incoming_middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract Data Without Slots/hooks/after_incoming_middleware.js -------------------------------------------------------------------------------- /custom solutions/Extract Dates with Microsoft Text Recognizers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract Dates with Microsoft Text Recognizers/README.md -------------------------------------------------------------------------------- /custom solutions/Extract Dates with Microsoft Text Recognizers/hooks/after-incoming-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract Dates with Microsoft Text Recognizers/hooks/after-incoming-middleware.js -------------------------------------------------------------------------------- /custom solutions/Extract and Validate Informations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract and Validate Informations/README.md -------------------------------------------------------------------------------- /custom solutions/Extract and Validate Informations/actions/data-extractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract and Validate Informations/actions/data-extractor.js -------------------------------------------------------------------------------- /custom solutions/Extract time ranges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract time ranges/README.md -------------------------------------------------------------------------------- /custom solutions/Extract time ranges/bot_time-range-extraction_1626801742695.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract time ranges/bot_time-range-extraction_1626801742695.tgz -------------------------------------------------------------------------------- /custom solutions/Extract time ranges/time-extract-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Extract time ranges/time-extract-hook.js -------------------------------------------------------------------------------- /custom solutions/Force Minimum Confidence/mininimum-confidence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Force Minimum Confidence/mininimum-confidence.js -------------------------------------------------------------------------------- /custom solutions/Force Minimum Confidence/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Force Minimum Confidence/readme.md -------------------------------------------------------------------------------- /custom solutions/Get user profile from Messenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Get user profile from Messenger/README.md -------------------------------------------------------------------------------- /custom solutions/Get user profile from Messenger/actions/fb-extract-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Get user profile from Messenger/actions/fb-extract-info.js -------------------------------------------------------------------------------- /custom solutions/Get user profile from Messenger/actions/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Get user profile from Messenger/actions/utils.js -------------------------------------------------------------------------------- /custom solutions/Get user profile from Slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Get user profile from Slack/README.md -------------------------------------------------------------------------------- /custom solutions/Get user profile from Slack/actions/get-slack-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Get user profile from Slack/actions/get-slack-profile.js -------------------------------------------------------------------------------- /custom solutions/Get user profile from Teams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Get user profile from Teams/README.md -------------------------------------------------------------------------------- /custom solutions/Get user profile from Teams/actions/get-teams-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Get user profile from Teams/actions/get-teams-email.js -------------------------------------------------------------------------------- /custom solutions/HITL Details/hooks/after_server_start/HITLDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/HITL Details/hooks/after_server_start/HITLDetails.js -------------------------------------------------------------------------------- /custom solutions/HITL Details/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/HITL Details/readme.md -------------------------------------------------------------------------------- /custom solutions/HITL Reject API/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/HITL Reject API/readme.md -------------------------------------------------------------------------------- /custom solutions/HITL Use Events Webhook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/HITL Use Events Webhook/readme.md -------------------------------------------------------------------------------- /custom solutions/Increment Custom Metric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Increment Custom Metric/README.md -------------------------------------------------------------------------------- /custom solutions/Increment Custom Metric/increment-custom-metric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Increment Custom Metric/increment-custom-metric.js -------------------------------------------------------------------------------- /custom solutions/Increment Variable By N/increment-variable-by-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Increment Variable By N/increment-variable-by-n.js -------------------------------------------------------------------------------- /custom solutions/Increment Variable By N/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Increment Variable By N/readme.md -------------------------------------------------------------------------------- /custom solutions/Push ConverseAPI messages to messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Push ConverseAPI messages to messaging/README.md -------------------------------------------------------------------------------- /custom solutions/Push ConverseAPI messages to messaging/hooks/after_incoming_middleware/insertConverseIntoMessagingIncoming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Push ConverseAPI messages to messaging/hooks/after_incoming_middleware/insertConverseIntoMessagingIncoming.js -------------------------------------------------------------------------------- /custom solutions/Push ConverseAPI messages to messaging/hooks/after_server_start/createConverseMessagingMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Push ConverseAPI messages to messaging/hooks/after_server_start/createConverseMessagingMap.js -------------------------------------------------------------------------------- /custom solutions/Push ConverseAPI messages to messaging/hooks/before_outgoing_middleware/insertConverseIntoMessagingOutgoing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Push ConverseAPI messages to messaging/hooks/before_outgoing_middleware/insertConverseIntoMessagingOutgoing.js -------------------------------------------------------------------------------- /custom solutions/Record all Misunderstood/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Record all Misunderstood/README.MD -------------------------------------------------------------------------------- /custom solutions/Record all Misunderstood/record-all-misunderstood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Record all Misunderstood/record-all-misunderstood.js -------------------------------------------------------------------------------- /custom solutions/Record final node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Record final node/README.md -------------------------------------------------------------------------------- /custom solutions/Record final node/createDropoutTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Record final node/createDropoutTable.js -------------------------------------------------------------------------------- /custom solutions/Record final node/record-final-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Record final node/record-final-node.js -------------------------------------------------------------------------------- /custom solutions/Redirect All Qnas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirect All Qnas/README.md -------------------------------------------------------------------------------- /custom solutions/Redirect All Qnas/Redirect_All_Qnas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirect All Qnas/Redirect_All_Qnas.js -------------------------------------------------------------------------------- /custom solutions/Redirect user during conversation if URL has a parameter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirect user during conversation if URL has a parameter/README.md -------------------------------------------------------------------------------- /custom solutions/Redirect user during conversation if URL has a parameter/inject_variable_from_webchat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirect user during conversation if URL has a parameter/inject_variable_from_webchat.js -------------------------------------------------------------------------------- /custom solutions/Redirect user during conversation if URL has a parameter/inject_variable_template_final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirect user during conversation if URL has a parameter/inject_variable_template_final.html -------------------------------------------------------------------------------- /custom solutions/Redirect user during conversation if URL has a parameter/inject_variable_template_v1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirect user during conversation if URL has a parameter/inject_variable_template_v1.html -------------------------------------------------------------------------------- /custom solutions/Redirection on exact intent/redirection-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirection on exact intent/redirection-hook.js -------------------------------------------------------------------------------- /custom solutions/Redirection on session reset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirection on session reset/README.md -------------------------------------------------------------------------------- /custom solutions/Redirection on session reset/redirect_reset_session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Redirection on session reset/redirect_reset_session.js -------------------------------------------------------------------------------- /custom solutions/Run Script 30 Minutes Before End of Day/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Run Script 30 Minutes Before End of Day/readme.md -------------------------------------------------------------------------------- /custom solutions/Run Script 30 Minutes Before End of Day/routine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Run Script 30 Minutes Before End of Day/routine.js -------------------------------------------------------------------------------- /custom solutions/Send Specific QnA to a User/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Send Specific QnA to a User/README.md -------------------------------------------------------------------------------- /custom solutions/Send Specific QnA to a User/actions/send-qna.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Send Specific QnA to a User/actions/send-qna.js -------------------------------------------------------------------------------- /custom solutions/Send adaptive cards using teams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Send adaptive cards using teams/README.md -------------------------------------------------------------------------------- /custom solutions/Send adaptive cards using teams/actions/sendAdaptativeCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Send adaptive cards using teams/actions/sendAdaptativeCard.js -------------------------------------------------------------------------------- /custom solutions/Send message to user using API [Intersection API]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Send message to user using API [Intersection API]/README.md -------------------------------------------------------------------------------- /custom solutions/Send message to user using API [Intersection API]/hooks/after_server_start/createIntersectionAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Send message to user using API [Intersection API]/hooks/after_server_start/createIntersectionAPI.js -------------------------------------------------------------------------------- /custom solutions/Set Nested Value/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Set Nested Value/Readme.md -------------------------------------------------------------------------------- /custom solutions/Set Nested Value/set-nested-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Set Nested Value/set-nested-value.js -------------------------------------------------------------------------------- /custom solutions/Standardize Words Hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Standardize Words Hook/README.md -------------------------------------------------------------------------------- /custom solutions/Standardize Words Hook/standardise_word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Standardize Words Hook/standardise_word.js -------------------------------------------------------------------------------- /custom solutions/Success Telemetry/Subviews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Success Telemetry/Subviews/README.md -------------------------------------------------------------------------------- /custom solutions/Success Telemetry/Subviews/solutions/download_csv_button/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Success Telemetry/Subviews/solutions/download_csv_button/Readme.md -------------------------------------------------------------------------------- /custom solutions/Success Telemetry/Subviews/solutions/download_csv_button/zz_create_download_csv_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Success Telemetry/Subviews/solutions/download_csv_button/zz_create_download_csv_button.js -------------------------------------------------------------------------------- /custom solutions/Success Telemetry/Subviews/workflow/Separated Workflow/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Success Telemetry/Subviews/workflow/Separated Workflow/Readme.md -------------------------------------------------------------------------------- /custom solutions/Success Telemetry/Subviews/workflow/Separated Workflow/zst_subview_workflow_sepated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Success Telemetry/Subviews/workflow/Separated Workflow/zst_subview_workflow_sepated.js -------------------------------------------------------------------------------- /custom solutions/Third party translations/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Third party translations/Readme.md -------------------------------------------------------------------------------- /custom solutions/Third party translations/bot.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Third party translations/bot.config.json -------------------------------------------------------------------------------- /custom solutions/Third party translations/translate-bot-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Third party translations/translate-bot-messages.js -------------------------------------------------------------------------------- /custom solutions/Third party translations/translate-user-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Third party translations/translate-user-messages.js -------------------------------------------------------------------------------- /custom solutions/Timely Greeting/Timely-Greeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Timely Greeting/Timely-Greeting.js -------------------------------------------------------------------------------- /custom solutions/Timely Greeting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Timely Greeting/readme.md -------------------------------------------------------------------------------- /custom solutions/UserDropout/DataInsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/UserDropout/DataInsert.js -------------------------------------------------------------------------------- /custom solutions/UserDropout/Hooks/TableCreation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/UserDropout/Hooks/TableCreation.js -------------------------------------------------------------------------------- /custom solutions/UserDropout/Hooks/TargetUserEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/UserDropout/Hooks/TargetUserEntry.js -------------------------------------------------------------------------------- /custom solutions/UserDropout/NodeUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/UserDropout/NodeUpdate.js -------------------------------------------------------------------------------- /custom solutions/Working with Dates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Working with Dates/README.md -------------------------------------------------------------------------------- /custom solutions/Working with Dates/actions/date-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Working with Dates/actions/date-compare.js -------------------------------------------------------------------------------- /custom solutions/Working with Dates/actions/date-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/Working with Dates/actions/date-parser.js -------------------------------------------------------------------------------- /custom solutions/[HITL-Next] Jump to flow after resolving /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/[HITL-Next] Jump to flow after resolving /README.md -------------------------------------------------------------------------------- /custom solutions/[HITL-Next] Jump to flow after resolving /hooks/before_incoming_middleware/sendTo-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/[HITL-Next] Jump to flow after resolving /hooks/before_incoming_middleware/sendTo-in.js -------------------------------------------------------------------------------- /custom solutions/[HITL-Next] Jump to flow after resolving /hooks/before_outgoing_middleware/sendTo-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom solutions/[HITL-Next] Jump to flow after resolving /hooks/before_outgoing_middleware/sendTo-out.js -------------------------------------------------------------------------------- /custom_tools/NLU_Testing/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/NLU_Testing/.env -------------------------------------------------------------------------------- /custom_tools/NLU_Testing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/NLU_Testing/LICENSE -------------------------------------------------------------------------------- /custom_tools/NLU_Testing/NLU-Testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/NLU_Testing/NLU-Testing.py -------------------------------------------------------------------------------- /custom_tools/NLU_Testing/NLU_Testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/NLU_Testing/NLU_Testing.ipynb -------------------------------------------------------------------------------- /custom_tools/NLU_Testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/NLU_Testing/README.md -------------------------------------------------------------------------------- /custom_tools/NLU_Testing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/NLU_Testing/requirements.txt -------------------------------------------------------------------------------- /custom_tools/bots/export_flow_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bots/export_flow_bot/README.md -------------------------------------------------------------------------------- /custom_tools/bots/export_flow_bot/bot_helper-bot.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bots/export_flow_bot/bot_helper-bot.tgz -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | bin/* 4 | out/ -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/Dockerfile -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/README.md -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/custom_buildImage_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/custom_buildImage_config/README.md -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/custom_buildImage_config/buildImage.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/custom_buildImage_config/buildImage.config.js -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/custom_dockerfile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/custom_dockerfile/Dockerfile -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/custom_dockerfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/custom_dockerfile/README.md -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/docker_hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/docker_hooks/README.md -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/docker_hooks/examples/Download train data from origin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/docker_hooks/examples/Download train data from origin/README.md -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/docker_hooks/examples/Download train data from origin/after_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/docker_hooks/examples/Download train data from origin/after_build.sh -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/docker_hooks/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/docker_hooks/examples/README.md -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/package.json -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/auth/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/auth/basic.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/auth/index.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/build/bppull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/build/bppull.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/build/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/build/fs.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/build/index.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/index.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/multistrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/multistrategy.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/src/utils.ts -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/tsconfig.json -------------------------------------------------------------------------------- /custom_tools/bp_image_builder/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_image_builder/yarn.lock -------------------------------------------------------------------------------- /custom_tools/bp_uploader/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | bin/* 4 | out/ -------------------------------------------------------------------------------- /custom_tools/bp_uploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/README.md -------------------------------------------------------------------------------- /custom_tools/bp_uploader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/package.json -------------------------------------------------------------------------------- /custom_tools/bp_uploader/src/auth/README.md: -------------------------------------------------------------------------------- 1 | Code copied from `bp_image_builder` -------------------------------------------------------------------------------- /custom_tools/bp_uploader/src/auth/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/src/auth/basic.ts -------------------------------------------------------------------------------- /custom_tools/bp_uploader/src/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/src/auth/index.ts -------------------------------------------------------------------------------- /custom_tools/bp_uploader/src/auth/multistrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/src/auth/multistrategy.ts -------------------------------------------------------------------------------- /custom_tools/bp_uploader/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/src/index.ts -------------------------------------------------------------------------------- /custom_tools/bp_uploader/src/uploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/src/uploader.ts -------------------------------------------------------------------------------- /custom_tools/bp_uploader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/tsconfig.json -------------------------------------------------------------------------------- /custom_tools/bp_uploader/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/bp_uploader/yarn.lock -------------------------------------------------------------------------------- /custom_tools/count messages without HITL included/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/count messages without HITL included/README.md -------------------------------------------------------------------------------- /custom_tools/count messages without HITL included/count user messages without HITL Messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/count messages without HITL included/count user messages without HITL Messages -------------------------------------------------------------------------------- /custom_tools/readme-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botpress/solutions/HEAD/custom_tools/readme-template.md --------------------------------------------------------------------------------